  :root {
    --bg: #0f0c11;
    --bg-raised: #16121a;
    --card: #1a1520;
    --ink: #f4eff2;
    --muted: #a99fab;
    --line: rgba(255,255,255,.09);
    --accent: #e5323e;
    --accent-deep: #a4133c;
    --accent-soft: rgba(229,50,62,.14);
    --ember: linear-gradient(120deg, #ff7a45, #e5323e 45%, #a4133c);
    --radius: 16px;
    --sans: ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --serif: "Fraunces", Georgia, serif;
  }
  * { box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  body {
    margin: 0; background: var(--bg); color: var(--ink);
    font: 16.5px/1.6 var(--sans);
    -webkit-font-smoothing: antialiased;
  }
  .wrap { max-width: 68rem; margin: 0 auto; padding: 0 1.4rem; }

  /* ---------- nav ---------- */
  nav {
    position: sticky; top: 0; z-index: 40;
    background: color-mix(in srgb, var(--bg) 82%, transparent);
    backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--line);
  }
  .nav-in { display: flex; align-items: center; gap: 1.6rem; height: 3.9rem; }
  .mark {
    font-family: var(--serif); font-weight: 650; font-size: 1.25rem;
    letter-spacing: -.01em; text-decoration: none; color: var(--ink);
  }
  .mark b { background: var(--ember); -webkit-background-clip: text; background-clip: text; color: transparent; font-weight: 650; }
  .nav-links { display: flex; gap: 1.4rem; margin-left: auto; align-items: center; }
  .nav-links a { color: var(--muted); text-decoration: none; font-size: .92rem; font-weight: 500; }
  .nav-links a:hover { color: var(--ink); }
  .btn {
    display: inline-block; font: inherit; font-weight: 600; text-decoration: none; text-align: center;
    color: #fff; background: var(--accent);
    border: 0; border-radius: 999px; padding: .62rem 1.35rem; cursor: pointer;
    transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  }
  .btn:hover { transform: translateY(-1px); box-shadow: 0 6px 24px rgba(229,50,62,.35); }
  .btn.big { padding: .85rem 1.9rem; font-size: 1.05rem; }
  .btn.ghost { background: transparent; border: 1px solid var(--line); color: var(--ink); }
  .btn.ghost:hover { border-color: rgba(255,255,255,.25); box-shadow: none; }
  @media (max-width: 640px) { .nav-links a:not(.btn) { display: none; } }

  /* ---------- hero ---------- */
  .hero { position: relative; overflow: hidden; padding: 6.5rem 0 4.5rem; text-align: center; }
  .hero::before {
    content: ""; position: absolute; inset: -40% -20% auto;  height: 130%;
    background:
      radial-gradient(38rem 22rem at 22% 18%, rgba(229,50,62,.16), transparent 60%),
      radial-gradient(30rem 20rem at 78% 8%, rgba(255,122,69,.10), transparent 60%),
      radial-gradient(46rem 26rem at 55% 95%, rgba(164,19,60,.12), transparent 65%);
    pointer-events: none;
  }
  .hero > * { position: relative; }
  .eyebrow {
    display: inline-block; font-size: .8rem; font-weight: 600; letter-spacing: .05em;
    color: var(--ink); background: var(--accent-soft); border: 1px solid rgba(229,50,62,.3);
    padding: .3rem .9rem; border-radius: 999px; margin-bottom: 1.6rem;
  }
  h1 {
    font-family: var(--serif); font-weight: 620;
    font-size: clamp(2.5rem, 7vw, 4.4rem); line-height: 1.04; letter-spacing: -.02em;
    margin: 0 auto .5rem; max-width: 17ch;
  }
  h1 em { font-style: italic; background: var(--ember); -webkit-background-clip: text; background-clip: text; color: transparent; }
  .lede {
    font-size: clamp(1.05rem, 2.4vw, 1.25rem); color: var(--muted);
    max-width: 38rem; margin: 1.2rem auto 2.2rem;
  }
  .lede strong { color: var(--ink); font-weight: 600; }
  .hero-cta { display: flex; gap: .8rem; justify-content: center; flex-wrap: wrap; }
  .assurances {
    display: flex; flex-wrap: wrap; gap: .5rem .6rem; justify-content: center;
    margin: 2.6rem auto 0; padding: 0; list-style: none; max-width: 44rem;
  }
  .assurances li {
    font-size: .82rem; color: var(--muted);
    border: 1px solid var(--line); border-radius: 999px; padding: .32rem .85rem;
    background: var(--bg-raised);
  }
  .assurances b { color: var(--ink); font-weight: 600; }

  /* ---------- sections ---------- */
  section { padding: 4.5rem 0; }
  .kicker { font-size: .8rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--accent); margin: 0 0 .6rem; }
  h2 { font-family: var(--serif); font-weight: 600; font-size: clamp(1.7rem, 4vw, 2.5rem); letter-spacing: -.015em; margin: 0 0 .5rem; }
  .sub { color: var(--muted); max-width: 40rem; margin: 0 0 2.4rem; }

  /* ---------- team ---------- */
  .grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
  @media (max-width: 900px) { .grid { grid-template-columns: repeat(2, 1fr); } }
  @media (max-width: 600px) { .grid { grid-template-columns: 1fr; } }
  .person {
    background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
    padding: 1.5rem; display: flex; flex-direction: column; gap: .9rem;
    transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
  }
  .person:hover { transform: translateY(-3px); border-color: rgba(229,50,62,.45); box-shadow: 0 14px 40px rgba(0,0,0,.35); }
  .person-top { display: flex; align-items: center; gap: .9rem; }
  .avatar {
    width: 72px; height: 72px; border-radius: 50%; flex-shrink: 0;
    display: grid; place-items: center; overflow: hidden;
    font-family: var(--serif); font-size: 1.45rem; font-weight: 600; color: #fff;
  }
  .avatar img { width: 100%; height: 100%; object-fit: cover; display: block; }
  .modal-head .avatar { width: 54px; height: 54px; }
  .person h3 { margin: 0; font-family: var(--serif); font-weight: 600; font-size: 1.35rem; letter-spacing: -.01em; }
  .voice {
    display: inline-block; font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
    color: var(--accent); background: var(--accent-soft); border-radius: 999px; padding: .18rem .6rem; margin-top: .25rem;
  }
  .person p { margin: 0; color: var(--muted); font-size: .95rem; flex: 1; }
  .addr { font-size: .82rem; color: var(--muted); opacity: .85; font-variant-ligatures: none; }
  .addr b { color: var(--ink); font-weight: 500; }
  .person .btn { width: 100%; margin-top: .2rem; }
  .person.custom { border-style: dashed; background: transparent; }
  .person.custom .avatar { background: var(--bg-raised); border: 1px dashed var(--line); color: var(--muted); }
  .team-note { margin-top: 1.6rem; font-size: .85rem; color: var(--muted); max-width: 44rem; }

  /* ---------- how she works ---------- */
  #how { background: var(--bg-raised); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
  .how-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem 2rem; }
  @media (max-width: 900px) { .how-grid { grid-template-columns: repeat(2, 1fr); } }
  @media (max-width: 600px) { .how-grid { grid-template-columns: 1fr; } }
  .how h3 { margin: 0 0 .35rem; font-size: 1.02rem; font-weight: 650; letter-spacing: -.01em; }
  .how p { margin: 0; color: var(--muted); font-size: .93rem; }
  .how .glyph {
    width: 38px; height: 38px; border-radius: 10px; margin-bottom: .8rem;
    display: grid; place-items: center; font-size: 1.05rem;
    background: var(--accent-soft); border: 1px solid rgba(229,50,62,.25);
  }

  /* ---------- pricing teaser ---------- */
  .price-band {
    display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap;
    background: var(--card); border: 1px solid var(--line); border-radius: 20px; padding: 2.2rem 2.4rem;
    position: relative; overflow: hidden;
  }
  .price-band::before {
    content: ""; position: absolute; inset: auto -10% -60% auto; width: 26rem; height: 16rem;
    background: radial-gradient(closest-side, rgba(229,50,62,.18), transparent);
    pointer-events: none;
  }
  .price-band > * { position: relative; }
  .price-num { font-family: var(--serif); font-size: 3rem; font-weight: 620; letter-spacing: -.02em; }
  .price-num span { font-family: var(--sans); font-size: 1rem; color: var(--muted); font-weight: 500; }
  .price-copy { color: var(--muted); max-width: 26rem; }

  /* ---------- footer ---------- */
  footer { color: var(--muted); font-size: .84rem; padding: 3rem 0 4rem; border-top: 1px solid var(--line); }
  footer a { color: inherit; }
  footer .mark { font-size: 1.1rem; display: inline-block; margin-bottom: .6rem; }

  /* ---------- modal ---------- */
  dialog {
    border: 1px solid var(--line); border-radius: 20px; padding: 0;
    background: var(--bg-raised); color: var(--ink);
    width: min(30rem, calc(100vw - 2rem)); max-height: calc(100dvh - 2rem);
  }
  dialog::backdrop { background: rgba(8,6,10,.7); backdrop-filter: blur(3px); }
  .modal-in { padding: 1.8rem; }
  .modal-head { display: flex; align-items: center; gap: .9rem; margin-bottom: 1.2rem; }
  .modal-head h3 { margin: 0; font-family: var(--serif); font-size: 1.4rem; font-weight: 600; }
  .modal-head p { margin: .1rem 0 0; font-size: .85rem; color: var(--muted); }
  .modal-close {
    margin-left: auto; align-self: flex-start; background: none; border: 0; color: var(--muted);
    font-size: 1.5rem; line-height: 1; cursor: pointer; padding: .2rem;
  }
  .modal-close:hover { color: var(--ink); }
  label { display: block; font-size: .8rem; font-weight: 600; margin: .95rem 0 .3rem; letter-spacing: .01em; }
  input, textarea {
    width: 100%; padding: .65rem .8rem; font: inherit; font-size: .93rem;
    color: var(--ink); background: var(--bg);
    border: 1px solid var(--line); border-radius: 10px;
  }
  input:focus, textarea:focus { outline: 2px solid var(--accent); outline-offset: 1px; border-color: transparent; }
  textarea { min-height: 5rem; resize: vertical; }
  .hint { font-size: .76rem; color: var(--muted); margin: .3rem 0 0; }
  dialog .btn { width: 100%; margin-top: 1.3rem; }
  #result { margin-top: .9rem; font-size: .9rem; }
  #result.err { color: #ff8f8f; }

  /* ---------- reveal ---------- */
  .reveal { opacity: 0; transform: translateY(14px); transition: opacity .55s ease, transform .55s ease; }
  .reveal.in { opacity: 1; transform: none; }
  @media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    .reveal { opacity: 1; transform: none; transition: none; }
    .btn, .person { transition: none; }
  }
