  /* ---------- Design system ---------- */
  :root {
    --ink:        #0A1628;     /* deep navy, primary text */
    --ink-2:      #1B2A44;
    --slate:      #4A5878;     /* secondary text */
    --slate-2:    #6B7896;
    --line:       #E3E7EE;
    --line-2:     #EEF1F6;
    --paper:      #FFFFFF;
    --paper-2:    #F7F9FC;
    --paper-3:    #EFF3F9;
    --accent:     #1547F5;     /* electric blue */
    --accent-ink: #0B2FB0;
    --accent-2:   #00C2A8;     /* clinical teal */
    --warn:       #C8423A;
    --shadow-sm:  0 1px 0 rgba(10,22,40,.04), 0 2px 6px rgba(10,22,40,.04);
    --shadow-md:  0 1px 0 rgba(10,22,40,.04), 0 8px 24px rgba(10,22,40,.06);
    --shadow-lg:  0 12px 40px rgba(10,22,40,.10), 0 2px 8px rgba(10,22,40,.04);
    --radius:     6px;
    --radius-lg:  10px;
    --maxw:       1200px;
  }

  /* ============ Dark+Editorial Variants (all use Crimson Pro) ============ */
  html[data-theme="midnight"],
  html[data-theme="forest"],
  html[data-theme="burgundy"],
  html[data-theme="slate"] {
    color-scheme: dark;
  }
  html[data-theme="midnight"] body,
  html[data-theme="forest"] body,
  html[data-theme="burgundy"] body,
  html[data-theme="slate"] body {
    font-family: 'Crimson Pro', 'Geist', serif;
    font-weight: 400;
    font-size: 18px;
  }
  html[data-theme="midnight"] h1, html[data-theme="midnight"] h2, html[data-theme="midnight"] h3,
  html[data-theme="forest"] h1, html[data-theme="forest"] h2, html[data-theme="forest"] h3,
  html[data-theme="burgundy"] h1, html[data-theme="burgundy"] h2, html[data-theme="burgundy"] h3,
  html[data-theme="slate"] h1, html[data-theme="slate"] h2, html[data-theme="slate"] h3 {
    font-family: 'Crimson Pro', serif;
    font-weight: 500;
    letter-spacing: -0.012em;
  }
  html[data-theme="midnight"] .serif,
  html[data-theme="forest"] .serif,
  html[data-theme="burgundy"] .serif,
  html[data-theme="slate"] .serif {
    font-family: 'Crimson Pro', serif;
    font-style: italic;
  }

  /* --- Theme: Midnight Gold (deep black + honey gold) --- */
  html[data-theme="midnight"] {
    --ink: #F4ECD8;
    --ink-2: #D9CFB8;
    --slate: #9C9382;
    --slate-2: #7A715F;
    --line: rgba(244,236,216,.12);
    --line-2: rgba(244,236,216,.06);
    --paper: #0B0B0D;
    --paper-2: #131316;
    --paper-3: #1B1B1F;
    --accent: #E8B948;
    --accent-ink: #C99A2C;
    --accent-2: #F2D27A;
  }

  /* --- Theme: Forest Brass (deep emerald-black + brass) --- */
  html[data-theme="forest"] {
    --ink: #ECE6D6;
    --ink-2: #C9C2B0;
    --slate: #8A9387;
    --slate-2: #6A7368;
    --line: rgba(236,230,214,.12);
    --line-2: rgba(236,230,214,.06);
    --paper: #0E1612;
    --paper-2: #142019;
    --paper-3: #1B2A22;
    --accent: #C9A24A;
    --accent-ink: #A6822F;
    --accent-2: #D9B868;
  }

  /* --- Theme: Burgundy Cream (wine + cream + soft gold) --- */
  html[data-theme="burgundy"] {
    --ink: #F0E4D0;
    --ink-2: #D4C5AC;
    --slate: #B59B82;
    --slate-2: #8E7660;
    --line: rgba(240,228,208,.14);
    --line-2: rgba(240,228,208,.07);
    --paper: #1A0C10;
    --paper-2: #261218;
    --paper-3: #341822;
    --accent: #E0B96A;
    --accent-ink: #B89446;
    --accent-2: #EFD08A;
  }

  /* --- Theme: Slate Amber (warm cream base + cool slate ink + amber accent) --- */
  html[data-theme="slate"] {
    --ink: #1A1F2A;
    --ink-2: #2D3340;
    --slate: #5C6473;
    --slate-2: #8A92A0;
    --line: #E8E2D4;
    --line-2: #F2EDE2;
    --paper: #FBF7EE;
    --paper-2: #F4EEDF;
    --paper-3: #1A1F2A;
    --accent: #C9863C;
    --accent-ink: #A56A28;
    --accent-2: #E8A85B;
  }
  /* Nav: deep slate to match the contrast band — keeps it grounded */
  html[data-theme="slate"] .nav { background: var(--paper-3); border-bottom-color: rgba(255,255,255,.06); }
  html[data-theme="slate"] .nav .btn--primary { background: var(--accent-2); border-color: var(--accent-2); color: #1A1208; }
  html[data-theme="slate"] .nav .btn--primary:hover { background: var(--accent); border-color: var(--accent); color: #fff; }
  /* Section bands: alternate cream & deeper-cream — like Clinical SaaS's white/gray */
  html[data-theme="slate"] .services-sec,
  html[data-theme="slate"] .testimonials-sec,
  html[data-theme="slate"] .faq-sec,
  html[data-theme="slate"] .ba-sec,
  html[data-theme="slate"] .method-sec { background: var(--paper-2); }
  html[data-theme="slate"] .trust,
  html[data-theme="slate"] .about-sec,
  html[data-theme="slate"] body { background: var(--paper); }
  /* Final CTA & footer: deep slate with amber accents — the dark moment */
  html[data-theme="slate"] .final-cta-sec,
  html[data-theme="slate"] footer {
    background: var(--paper-3);
    color: #F4EEDF;
  }
  html[data-theme="slate"] .final-cta-sec h2,
  html[data-theme="slate"] footer * { color: #F4EEDF; }
  html[data-theme="slate"] .final-cta-sec .lede { color: rgba(244,238,223,.75); }
  html[data-theme="slate"] footer a { color: rgba(244,238,223,.75); }
  html[data-theme="slate"] footer a:hover { color: var(--accent-2); }
  /* Cards on cream surfaces — clean, like Clinical SaaS */
  html[data-theme="slate"] .svc,
  html[data-theme="slate"] .case,
  html[data-theme="slate"] .testimonial,
  html[data-theme="slate"] .faq__item,
  html[data-theme="slate"] .quote,
  html[data-theme="slate"] .stat,
  html[data-theme="slate"] .method__card {
    background: var(--paper);
    border-color: var(--line);
  }
  /* Hero visual card: keep deep slate for product-shot moment */
  html[data-theme="slate"] .hv__card { background: var(--paper-3); border-color: rgba(255,255,255,.06); }
  html[data-theme="slate"] .hv__card .hv__hd,
  html[data-theme="slate"] .hv__card .hv__foot { color: rgba(244,238,223,.85); border-color: rgba(255,255,255,.08); }
  html[data-theme="slate"] .hv__stat .v { color: #F4EEDF; }
  html[data-theme="slate"] .hv__stat .k { color: rgba(244,238,223,.55); }
  /* Buttons */
  html[data-theme="slate"] .btn--accent,
  html[data-theme="slate"] .btn--primary {
    background: var(--accent-2);
    border-color: var(--accent-2);
    color: #1A1208;
  }
  html[data-theme="slate"] .btn--accent:hover,
  html[data-theme="slate"] .btn--primary:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
  }
  /* Pills, eyebrows: muted amber, used sparingly */
  html[data-theme="slate"] .pill {
    background: rgba(201,134,60,.1);
    color: var(--accent-ink);
    border-color: rgba(201,134,60,.18);
  }
  html[data-theme="slate"] .eyebrow { color: var(--slate); }
  html[data-theme="slate"] .eyebrow .dot { color: var(--accent); }
  /* Italic serif accent ("Fast.") gets the burnt amber — the rare moment */
  html[data-theme="slate"] .serif { color: var(--accent-ink) !important; }
  /* Subtle warm wash under hero */
  html[data-theme="slate"] .hero {
    background: radial-gradient(ellipse 70% 80% at 50% -10%, rgba(232,168,91,.12), transparent 60%);
  }

  /* Dark-theme surface adjustments (nav stays darkest, cards lift slightly) */
  html[data-theme="midnight"] .nav,
  html[data-theme="forest"] .nav,
  html[data-theme="burgundy"] .nav,
  html[data-theme="slate"] .nav {
    background: var(--paper);
    border-bottom-color: var(--line);
  }
  html[data-theme="midnight"] .nav.is-stuck,
  html[data-theme="forest"] .nav.is-stuck,
  html[data-theme="burgundy"] .nav.is-stuck,
  html[data-theme="slate"] .nav.is-stuck {
    border-bottom-color: var(--line);
  }
  /* Logo image: invert is too aggressive; keep it as-is on dark themes (logo is white+yellow already) */

  /* ============ Theme: Bone Spa (off-white + plum) ============ */
  html[data-theme="bone"] {
    --ink: #2C2128;
    --ink-2: #3D2F38;
    --slate: #6F5E6A;
    --slate-2: #8E7E89;
    --line: #E8E0E4;
    --line-2: #F1ECEE;
    --paper: #F8F4F0;
    --paper-2: #EFE8E2;
    --paper-3: #E5DCD4;
    --accent: #7A4A6A;
    --accent-ink: #5A3550;
    --accent-2: #C9A4B5;
  }

  /* ============ Theme: Sage (cream + botanical green) ============ */
  html[data-theme="sage"] {
    --ink: #1F2A24;
    --ink-2: #2E3D33;
    --slate: #5E6E63;
    --slate-2: #828F86;
    --line: #E1E5DC;
    --line-2: #ECEFE7;
    --paper: #F7F6F0;
    --paper-2: #EEEDE3;
    --paper-3: #E2E1D3;
    --accent: #4A6B4F;
    --accent-ink: #2F4D34;
    --accent-2: #8FAF92;
  }

  /* ============ Theme: Terracotta (cream + warm clay) ============ */
  html[data-theme="terracotta"] {
    --ink: #2A1F18;
    --ink-2: #3F3024;
    --slate: #6E5A48;
    --slate-2: #8E7A66;
    --line: #ECE3D6;
    --line-2: #F4ECE0;
    --paper: #FAF5EC;
    --paper-2: #F2EADC;
    --paper-3: #E7DCC8;
    --accent: #B5512A;
    --accent-ink: #8B3A19;
    --accent-2: #DBA17F;
  }

  /* ============ Theme: Indigo (cream + deep ink-blue) ============ */
  html[data-theme="indigo"] {
    --ink: #1A1F2C;
    --ink-2: #2A3142;
    --slate: #5A6478;
    --slate-2: #7E8898;
    --line: #E2E2E8;
    --line-2: #ECECF0;
    --paper: #F7F5F0;
    --paper-2: #EEEBE2;
    --paper-3: #E2DED2;
    --accent: #2D3F73;
    --accent-ink: #1A2854;
    --accent-2: #7E8FB8;
  }

  /* ============ Theme: Forest (cream + deep evergreen) ============ */
  html[data-theme="forest"] {
    --ink: #1A2620;
    --ink-2: #28382F;
    --slate: #56685D;
    --slate-2: #7B8C81;
    --line: #DCE3DD;
    --line-2: #E8EDE8;
    --paper: #F5F4EE;
    --paper-2: #EBEAE0;
    --paper-3: #DCDBCD;
    --accent: #1F4D3A;
    --accent-ink: #133327;
    --accent-2: #7AA28F;
  }

  /* Shared serif type system for all bone-family variants */
  html[data-theme="sage"] body,
  html[data-theme="terracotta"] body,
  html[data-theme="indigo"] body,
  html[data-theme="forest"] body {
    font-family: 'Crimson Pro', 'Geist', serif;
    font-weight: 400;
  }
  html[data-theme="sage"] h1, html[data-theme="sage"] h2,
  html[data-theme="terracotta"] h1, html[data-theme="terracotta"] h2,
  html[data-theme="indigo"] h1, html[data-theme="indigo"] h2,
  html[data-theme="forest"] h1, html[data-theme="forest"] h2 {
    font-family: 'Crimson Pro', serif;
    font-weight: 500;
    letter-spacing: -0.012em;
  }
  html[data-theme="sage"] .serif,
  html[data-theme="terracotta"] .serif,
  html[data-theme="indigo"] .serif,
  html[data-theme="forest"] .serif {
    font-family: 'Crimson Pro', serif;
    font-style: italic;
  }
  html[data-theme="bone"] body { font-family: 'Crimson Pro', 'Geist', serif; font-weight: 400; }
  html[data-theme="bone"] h1, html[data-theme="bone"] h2 { font-family: 'Crimson Pro', serif; font-weight: 500; letter-spacing: -0.012em; }
  html[data-theme="bone"] .serif { font-family: 'Crimson Pro', serif; font-style: italic; }

  * { box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  body {
    margin: 0;
    font-family: 'Geist', ui-sans-serif, system-ui, sans-serif;
    color: var(--ink);
    background: var(--paper);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    font-size: 16px;
    line-height: 1.55;
    font-feature-settings: "ss01", "cv11";
  }
  ::selection { background: var(--accent); color: #fff; }

  h1, h2, h3, h4 {
    font-family: 'Geist', ui-sans-serif, system-ui, sans-serif;
    font-weight: 600;
    letter-spacing: -0.022em;
    line-height: 1.08;
    margin: 0;
    color: var(--ink);
    text-wrap: balance;
  }
  h1 { font-size: clamp(44px, 6.4vw, 80px); letter-spacing: -0.032em; font-weight: 600; }
  h2 { font-size: clamp(30px, 3.8vw, 50px); letter-spacing: -0.025em; }
  h3 { font-size: clamp(20px, 1.6vw, 24px); letter-spacing: -0.015em; }
  p { margin: 0; text-wrap: pretty; }

  .serif {
    font-family: 'Instrument Serif', 'Times New Roman', serif;
    font-weight: 400;
    font-style: italic;
    letter-spacing: -0.01em;
  }
  .mono {
    font-family: 'Geist Mono', ui-monospace, monospace;
    font-feature-settings: "ss01";
  }

  a { color: inherit; text-decoration: none; }
  button { font-family: inherit; cursor: pointer; }

  /* ---------- Layout ---------- */
  .wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }
  .section { padding: 112px 0; position: relative; }
  .section--tight { padding: 80px 0; }
  @media (max-width: 720px) {
    .section { padding: 72px 0; }
    .section--tight { padding: 56px 0; }
    .wrap { padding: 0 20px; }
  }

  .eyebrow {
    font-family: 'Geist Mono', monospace;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--slate);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
  }
  .eyebrow::before {
    content: "";
    width: 24px; height: 1px;
    background: var(--slate-2);
  }
  .eyebrow.eyebrow--accent { color: var(--accent); }
  .eyebrow.eyebrow--accent::before { background: var(--accent); }
  .eyebrow.eyebrow--invert { color: rgba(255,255,255,.7); }
  .eyebrow.eyebrow--invert::before { background: rgba(255,255,255,.5); }

  .lede {
    font-size: clamp(17px, 1.3vw, 19px);
    color: var(--slate);
    line-height: 1.55;
    max-width: 60ch;
  }

  /* ---------- Buttons ---------- */
  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 22px;
    font-size: 15px;
    font-weight: 500;
    border-radius: var(--radius);
    border: 1px solid transparent;
    transition: transform .12s ease, background .15s ease, color .15s ease, border-color .15s ease;
    white-space: nowrap;
    letter-spacing: -0.005em;
  }
  .btn--primary {
    background: var(--ink);
    color: #fff;
    border-color: var(--ink);
  }
  .btn--primary:hover { background: var(--accent); border-color: var(--accent); }
  .btn--accent { background: var(--accent); color: #fff; border-color: var(--accent); }
  .btn--accent:hover { background: var(--accent-ink); border-color: var(--accent-ink); }
  .btn--ghost {
    background: transparent;
    color: var(--ink);
    border-color: var(--line);
  }
  .btn--ghost:hover { border-color: var(--ink); }
  .btn--invert {
    background: #fff; color: var(--ink); border-color: #fff;
  }
  .btn--invert:hover { background: var(--accent); color: #fff; border-color: var(--accent); }
  .btn--lg { padding: 18px 28px; font-size: 16px; }
  .btn .arrow {
    width: 14px; height: 14px;
    display: inline-block;
    transform: translateY(-1px);
  }

  /* ---------- Header ---------- */
  .nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--ink);
    border-bottom: 1px solid transparent;
    transition: border-color .2s ease, background .2s ease;
  }
  .nav.is-stuck { border-bottom-color: rgba(255,255,255,.08); }
  .nav a, .nav .logo { color: #fff; }
  .nav .nav__phone { color: rgba(255,255,255,.7); }
  .nav .nav__phone:hover { color: #fff; }
  .nav .btn--primary { background: var(--accent); border-color: var(--accent); color: #fff; }
  .nav .btn--primary:hover { background: var(--accent-ink); border-color: var(--accent-ink); }
  .nav__hamb span { background: #fff; }
  .nav__hamb { border-color: rgba(255,255,255,.18); }
  .nav__menu { background: var(--ink); border-bottom-color: rgba(255,255,255,.08); }
  .nav__menu a { color: #fff; }
  .nav__menu .nav__phone-m { color: rgba(255,255,255,.7); border-top-color: rgba(255,255,255,.1); }
  .nav__inner {
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 16px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
  }
  .logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    letter-spacing: -0.02em;
    font-size: 17px;
  }
  .nav .logo {
    height: 36px;
    gap: 0;
  }
  .nav .logo > span { display: none; }
  .nav .logo > img.logo__img {
    height: 100%;
    width: auto;
    max-width: min(60vw, 320px);
    object-fit: contain;
    border-radius: 0 !important;
  }
  @media (max-width: 720px) {
    .nav .logo { height: 30px; }
    .nav .logo > img.logo__img { max-width: 70vw; }
  }
  .logo__mark {
    width: 22px; height: 22px;
    border-radius: 4px;
    background: var(--ink);
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  .logo__mark::before, .logo__mark::after {
    content: "";
    position: absolute;
    background: var(--paper);
  }
  .logo__mark::before { width: 10px; height: 1.5px; }
  .logo__mark::after { width: 1.5px; height: 10px; }
  .logo__sub {
    color: var(--slate);
    font-weight: 400;
    font-size: 14px;
    border-left: 1px solid var(--line);
    padding-left: 10px;
    margin-left: 4px;
  }
  .nav__right {
    display: flex;
    align-items: center;
    gap: 22px;
  }
  .nav__phone {
    font-family: 'Geist Mono', monospace;
    font-size: 13.5px;
    color: var(--slate);
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }
  .nav__phone:hover { color: var(--ink); }
  .nav__phone .dot {
    width: 6px; height: 6px;
    background: var(--accent);
    border-radius: 50%;
    box-shadow: 0 0 0 3px rgba(21,71,245,.18);
    display: inline-block;
  }
  .nav__hamb {
    display: none;
    width: 38px; height: 38px;
    border: 1px solid var(--line);
    background: transparent;
    border-radius: 6px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 4px;
  }
  .nav__hamb span {
    width: 16px; height: 1.5px;
    background: var(--ink);
    display: block;
  }
  .nav__menu {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    padding: 18px 20px 22px;
    flex-direction: column;
    gap: 14px;
  }
  .nav__menu.open { display: flex; }
  .nav__menu a { font-size: 16px; padding: 8px 0; color: var(--ink); }
  .nav__menu .nav__phone-m {
    font-family: 'Geist Mono', monospace;
    color: var(--slate);
    font-size: 14px;
    padding-top: 12px;
    border-top: 1px solid var(--line);
  }
  @media (max-width: 720px) {
    .logo__sub { display: none; }
    .nav__phone { display: none; }
    .nav__inner { padding: 14px 20px; }
    .nav__right .btn { display: none; }
    .nav__hamb { display: inline-flex; }
  }

  /* ---------- Hero ---------- */
  .hero {
    padding: 32px 0 80px;
    position: relative;
    overflow: hidden;
    background:
      radial-gradient(80% 60% at 100% 0%, rgba(21,71,245,.08), transparent 60%),
      linear-gradient(180deg, var(--paper) 0%, var(--paper-2) 100%);
  }
  .hero__grid {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    column-gap: 64px;
    align-items: center;
  }
  @media (max-width: 960px) {
    .hero { padding: 0 0 32px; }
    .hero__grid {
      grid-template-columns: 1fr;
      gap: 18px;
    }
    /* Mobile: photo first, then text column */
    .hero__grid > .hero__visual { order: 1; }
    .hero__grid > div:not(.hero__visual) { order: 2; }
    /* Prevent any horizontal overflow that would push centering off-axis */
    .hero, .hero .wrap, .hero__grid { max-width: 100vw; overflow-x: hidden; }
    /* Center all text-column children consistently on mobile so eyebrow/H1/diagnoses/CTAs all line up */
    .hero h1 { text-align: center; }
    .hero__diagnoses, .hero__diagnoses-list { justify-content: center; text-align: center; }
    .hero__ctas { justify-content: center; }
    /* Hide the stat topper on mobile — too crowded above the image */
    .hero__visual .hv__foot { display: none; }
    /* Mobile hero: ONE card only — outer .hero__visual is invisible,
       inner .hv__body is the warm cream card that hugs the image tightly.
       Image is bottom-cropped to remove the body-part labels.
       html prefix bumps specificity above the desktop rules that appear later in the source. */
    html .hero__visual {
      max-width: 320px;
      margin: 0 auto;
      padding: 0;
      border: none;
      box-shadow: none;
      background: transparent;
      border-radius: 0;
      aspect-ratio: auto;
      text-align: center;
    }
    html .hero__visual::before { display: none; }
    html .hv__body {
      padding: 8px;
      position: relative;
      background:
        radial-gradient(70% 60% at 50% 45%, color-mix(in oklab, var(--accent) 8%, transparent) 0%, transparent 70%),
        var(--paper-2);
      border-radius: var(--radius-lg);
      margin: 0 auto;
      width: 100%;
      box-sizing: border-box;
      display: block;
    }
    /* Mobile mode overrides */
    html .hero__visual[data-hero-mode="bare"] .hv__body {
      background: transparent;
      padding: 0;
      border-radius: 0;
    }
    html .hero__visual[data-hero-mode="fade-card"] .hv__body {
      background:
        radial-gradient(60% 55% at 50% 50%,
          color-mix(in oklab, var(--accent) 10%, var(--paper-2)) 0%,
          color-mix(in oklab, var(--accent) 4%, var(--paper-2)) 40%,
          transparent 80%);
      padding: 16px;
      border-radius: 0;
    }
    html .hero__visual[data-hero-mode="fade-edge"] .hv__body {
      background: transparent;
      padding: 0;
      border-radius: 0;
    }
    html .hero__visual[data-hero-mode="fade-edge"] .img-crop {
      -webkit-mask-image: radial-gradient(75% 70% at 50% 50%, #000 55%, transparent 100%);
              mask-image: radial-gradient(75% 70% at 50% 50%, #000 55%, transparent 100%);
      border-radius: 0;
    }
    html .hero__visual[data-hero-mode="grid"] .hv__body {
      background:
        linear-gradient(transparent 0 calc(100% - 1px), color-mix(in oklab, var(--accent) 14%, transparent) 100%) 0 0 / 32px 32px,
        linear-gradient(90deg, transparent 0 calc(100% - 1px), color-mix(in oklab, var(--accent) 14%, transparent) 100%) 0 0 / 32px 32px,
        radial-gradient(60% 55% at 50% 50%,
          color-mix(in oklab, var(--accent) 6%, var(--paper-2)) 0%,
          transparent 90%),
        var(--paper-2);
      padding: 18px;
      border-radius: 0;
    }
    /* Crop the bottom of the source image (which contains body-part labels)
       by wrapping the img in an aspect-ratio box with overflow hidden.
       Source is 1680x1812; we keep the top ~72% by using a 1680x1305 viewport. */
    html .hv__body .img-crop {
      width: 100%;
      aspect-ratio: 1680 / 1305;
      overflow: hidden;
      border-radius: calc(var(--radius-lg) - 6px);
      display: block;
    }
    /* fade-edge mobile: kill the rounded corner so the radial mask drives the shape */
    html .hero__visual[data-hero-mode="fade-edge"] .hv__body .img-crop {
      border-radius: 0;
      -webkit-mask-image: radial-gradient(75% 70% at 50% 50%, #000 55%, transparent 100%);
              mask-image: radial-gradient(75% 70% at 50% 50%, #000 55%, transparent 100%);
    }
    html .hv__body img {
      width: 100% !important;
      height: 100% !important;
      max-height: none !important;
      display: block !important;
      object-fit: cover;
      object-position: top center;
    }
    /* Bigger, more prominent headline on mobile — sized to fit "We Fix Pain Fast." in one line */
    .hero h1 {
      font-size: clamp(44px, 14vw, 80px);
      line-height: 1;
      white-space: nowrap;
      max-width: 100%;
    }
    /* Optical centering — the trailing italic period in "Fast." leaves visible whitespace
       on the right, making the centered line appear right-shifted. Compensate via transform. */
    .hero h1 { transform: translateX(-0.08em); }
    .hero__sub { margin-top: 16px; }
    .hero__ctas { margin-top: 22px; }
    .hero__loc { margin-top: 18px; }
    /* Eyebrow now sits above the photo on mobile, full-width — readable size, must fit 360px */
    .hero .eyebrow {
      font-size: 11px;
      letter-spacing: 0.1em;
      gap: 8px;
      max-width: 100%;
    }
    .hero .eyebrow::before { width: 18px; }
    /* Symmetric line on the right for centered mobile eyebrow */
    .hero .eyebrow.eyebrow--accent::after {
      content: "";
      width: 18px;
      height: 1px;
      background: var(--accent);
      flex-shrink: 0;
    }
    .hero .eyebrow.eyebrow--accent::before { flex-shrink: 0; }

    /* The figure SVG silhouette is desktop-only */
    .hero__visual .body-fig { display: none !important; }
  }
  .hero h1 .accent { color: var(--accent); }
  .hero__diagnoses-eyebrow {
    margin-top: 22px;
    display: flex;
    justify-content: center;
    width: 100%;
    /* Distinct from the accent-colored diagnoses: dark ink, bolder, slightly larger */
    color: var(--ink) !important;
    font-size: 12px;
    letter-spacing: 0.18em;
    font-weight: 600;
  }
  /* The hr above provides the divider — drop the eyebrow's own line decorations */
  .hero__diagnoses-eyebrow.eyebrow--accent::before,
  .hero__diagnoses-eyebrow.eyebrow--accent::after {
    display: none !important;
  }
  .hero__divider {
    border: 0;
    height: 1px;
    background: var(--line);
    margin: 26px 0 0;
    width: 100%;
  }
  /* Symmetric line on the right so the diagnoses-eyebrow centers cleanly above the diagnoses */
  .hero__diagnoses-eyebrow.eyebrow--accent::after {
    content: "";
    width: 24px;
    height: 1px;
    background: var(--accent);
    flex-shrink: 0;
  }
  .hero__diagnoses-eyebrow.eyebrow--accent::before { flex-shrink: 0; }
  .hero__diagnoses {
    margin-top: 22px;
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
  }
  .hero__diagnoses-label {
    font-family: 'Geist Mono', monospace;
    font-size: 10.5px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--accent);
    font-weight: 500;
    flex-shrink: 0;
  }
  .hero__diagnoses-list {
    font-family: 'Geist Mono', monospace;
    font-size: 11.5px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--accent);
    font-weight: 500;
    line-height: 1.6;
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    justify-content: center;
    gap: 0 12px;
    row-gap: 6px;
    text-align: center;
  }
  .hero__diagnoses-list .break {
    flex-basis: 100%;
    width: 0;
    height: 0;
  }
  .hero__diagnoses-list .sep {
    color: var(--accent);
    opacity: 0.35;
    font-weight: 400;
  }
  @media (max-width: 960px) {
    .hero__diagnoses {
      margin-top: 18px;
      gap: 10px;
    }
    .hero__diagnoses-list { font-size: 13px; letter-spacing: 0.14em; gap: 0 14px; }
  }
  .hero__sub {
    margin-top: 18px;
    font-size: clamp(17px, 1.4vw, 20px);
    color: var(--slate);
    max-width: 56ch;
    line-height: 1.5;
  }
  .hero__ctas {
    margin-top: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
  }
  .hero__loc {
    margin-top: 20px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Geist Mono', monospace;
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--slate);
  }
  .hero__loc .pin {
    width: 8px; height: 8px;
    background: var(--accent);
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(21,71,245,.16);
  }

  /* Hero visual: clean treatment — no outer card frame, just the warm
     cream inner card hugging the cropped image (matches mobile). */
  .hero__visual {
    position: relative;
    aspect-ratio: auto;
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
    display: block;
  }
  .hero__visual::before { display: none; }
  .hv__head { display: none !important; }
  .hv__foot { display: none !important; }
  .hv__head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    z-index: 1;
  }
  .hv__title {
    font-family: 'Geist Mono', monospace;
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--slate);
  }
  .hv__title b { color: var(--ink); font-weight: 500; }
  .hv__title--loc {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--ink);
    text-transform: none;
    letter-spacing: -0.005em;
    font-family: 'Geist', ui-sans-serif, system-ui, sans-serif;
    font-size: 13px;
    font-weight: 500;
  }
  .hv__title--loc .pin {
    width: 8px; height: 8px;
    background: var(--accent);
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(21,71,245,.16);
  }
  .hv__tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Geist Mono', monospace;
    font-size: 11px;
    color: var(--slate);
    letter-spacing: 0.1em;
  }
  .hv__tag .swatch {
    width: 10px; height: 10px;
    border-radius: 2px;
    background: var(--accent);
    display: inline-block;
  }
  .hv__body {
    position: relative;
    z-index: 1;
    padding: 12px;
    background:
      radial-gradient(70% 60% at 50% 45%, color-mix(in oklab, var(--accent) 8%, transparent) 0%, transparent 70%),
      var(--paper-2);
    border-radius: var(--radius-lg);
    display: block;
  }
  /* ----- Hero image display modes (toggleable via Tweaks) ----- */
  /* bare: no card, no fade — just the cropped image on the page background */
  .hero__visual[data-hero-mode="bare"] .hv__body {
    background: transparent;
    padding: 0;
    border-radius: 0;
  }
  /* fade-card: a soft radial card that fades to transparent at its edges */
  .hero__visual[data-hero-mode="fade-card"] .hv__body {
    background:
      radial-gradient(60% 55% at 50% 50%,
        color-mix(in oklab, var(--accent) 10%, var(--paper-2)) 0%,
        color-mix(in oklab, var(--accent) 4%, var(--paper-2)) 40%,
        transparent 80%);
    padding: 28px;
    border-radius: 0;
  }
  /* fade-edge: the image itself fades into the page at its edges */
  .hero__visual[data-hero-mode="fade-edge"] .hv__body {
    background: transparent;
    padding: 0;
    border-radius: 0;
  }
  .hero__visual[data-hero-mode="fade-edge"] .img-crop {
    -webkit-mask-image: radial-gradient(75% 70% at 50% 50%, #000 55%, transparent 100%);
            mask-image: radial-gradient(75% 70% at 50% 50%, #000 55%, transparent 100%);
    border-radius: 0;
  }
  /* grid: subtle graph-paper background that fades out, with the image floating on top */
  .hero__visual[data-hero-mode="grid"] .hv__body {
    background:
      linear-gradient(transparent 0 calc(100% - 1px), color-mix(in oklab, var(--accent) 14%, transparent) 100%) 0 0 / 36px 36px,
      linear-gradient(90deg, transparent 0 calc(100% - 1px), color-mix(in oklab, var(--accent) 14%, transparent) 100%) 0 0 / 36px 36px,
      radial-gradient(60% 55% at 50% 50%,
        color-mix(in oklab, var(--accent) 6%, var(--paper-2)) 0%,
        transparent 90%),
      var(--paper-2);
    -webkit-mask-image: radial-gradient(80% 75% at 50% 50%, #000 50%, transparent 100%);
            mask-image: radial-gradient(80% 75% at 50% 50%, #000 50%, transparent 100%);
    padding: 28px;
    border-radius: 0;
  }
  .hero__visual[data-hero-mode="grid"] .img-crop {
    border-radius: 0;
  }
  .hv__body .img-crop {
    width: 100%;
    aspect-ratio: 1680 / 1305;
    overflow: hidden;
    border-radius: calc(var(--radius-lg) - 4px);
    display: block;
  }
  .hv__body img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
  }
  .hv__foot {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    border-bottom: 1px solid var(--line);
    margin: -28px -28px 0;
    padding: 12px 20px;
  }
  .hv__stat {
    display: flex;
    flex-direction: column;
    gap: 2px;
  }
  .hv__stat + .hv__stat { padding-left: 16px; border-left: 1px solid var(--line); }
  .hv__stat .k {
    font-family: 'Geist Mono', monospace;
    font-size: 10.5px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--slate);
  }
  .hv__stat .v {
    font-size: 16px;
    font-weight: 600;
    letter-spacing: -0.01em;
  }
  .hv__stat .v .delta { color: var(--accent); font-size: 12px; margin-left: 4px; }

  /* Pain region figure */
  .body-fig { width: 100%; height: 100%; display: block; }
  .body-fig .silhouette { fill: var(--paper-2); stroke: var(--ink); stroke-width: 1.2; }
  .body-fig .region { fill: var(--accent); opacity: 0; transform-origin: center; animation: pop 0.6s cubic-bezier(.34,1.56,.64,1) forwards; }
  .body-fig .ring { fill: none; stroke: var(--accent); stroke-width: 1.2; opacity: 0; animation: pulse 2.4s ease-in-out infinite; }
  .body-fig .lbl { font-family: 'Geist Mono', monospace; font-size: 8.2px; letter-spacing: 0.08em; fill: var(--ink); text-transform: uppercase; opacity: 0; animation: fade .5s ease forwards; }
  .body-fig .ln { stroke: var(--ink); stroke-width: 0.8; opacity: 0; animation: fade .5s ease forwards; }
  @keyframes pop { 0% { opacity: 0; transform: scale(0.4); } 100% { opacity: 0.85; transform: scale(1); } }
  @keyframes fade { to { opacity: 1; } }
  @keyframes pulse { 0%, 100% { opacity: 0; } 50% { opacity: 0.8; } }

  /* ---------- Trust strip ---------- */
  .trust {
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: var(--paper-2);
  }
  .trust__inner {
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    gap: 22px;
    align-items: center;
  }
  .trust__hd {
    font-family: 'Geist Mono', monospace;
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--slate);
    display: inline-flex;
    align-items: center;
    gap: 14px;
  }
  .trust__hd::before, .trust__hd::after {
    content: "";
    width: 28px; height: 1px;
    background: var(--slate-2);
  }
  .trust__logos {
    display: flex;
    align-items: center;
    width: 100%;
    overflow: hidden;
    /* Vertical breathing room so the spotlight scale (1.15×) doesn't get clipped */
    padding: 8px 0;
    -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
            mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
  }
  .trust__track {
    display: flex;
    align-items: center;
    gap: 56px;
    flex-shrink: 0;
    padding-right: 56px;
    will-change: transform;
  }
  .trust__rail {
    display: flex;
    align-items: center;
    width: max-content;
    flex-shrink: 0;
    flex-wrap: nowrap;
    animation: trust-marquee 14s linear infinite;
    will-change: transform;
  }
  .trust:hover .trust__rail { animation-play-state: paused; }
  @keyframes trust-marquee {
    from { transform: translate3d(0, 0, 0); }
    to   { transform: translate3d(-50%, 0, 0); }
  }
  .trust__logo {
    font-family: 'Instrument Serif', serif;
    font-size: 28px;
    line-height: 1;
    color: var(--ink-2);
    opacity: 0.55;
    letter-spacing: -0.01em;
    transition: opacity .2s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
  }
  .trust__logo:hover { opacity: 1; }
  /* Center-spotlight: --p (0..1) is set by JS each frame; 1 = dead center */
  .trust__logo {
    --p: 0;
    opacity: calc(0.3 + var(--p) * 0.7);
    transform: scale(calc(1 + var(--p) * 0.15));
    transition: filter 0.15s ease;
  }
  .trust__logo--mono {
    font-family: 'Geist Mono', monospace;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.02em;
    text-transform: uppercase;
  }
  .trust__logo--bold {
    font-family: 'Geist', sans-serif;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -0.025em;
  }
  .trust__logo--img {
    height: 36px;
    display: inline-flex;
    align-items: center;
  }
  .trust__logo--img img {
    height: 100%;
    width: auto;
    max-width: 180px;
    object-fit: contain;
    display: block;
    /* Render flat black logos in current ink color so they read on light themes */
    filter: none;
  }
  .trust__logo--img.is-mono img {
    filter: brightness(0) saturate(100%);
    opacity: calc(0.6 + var(--p) * 0.4);
  }
  /* On dark themes, invert mono logos to white so they read on dark backgrounds */
  html[data-theme="midnight"] .trust__logo--img.is-mono img,
  html[data-theme="forest"] .trust__logo--img.is-mono img,
  html[data-theme="burgundy"] .trust__logo--img.is-mono img,
  html[data-theme="slate"] .trust__logo--img.is-mono img {
    filter: brightness(0) invert(1);
  }
  .trust__logo--img img {
    opacity: calc(0.7 + var(--p) * 0.3);
  }
  .trust__logo--img:hover img { opacity: 1; }
  /* Color-preserving logos that need to invert their black text on dark themes only */
  html[data-theme="midnight"] .trust__logo--img.is-color-dark img,
  html[data-theme="forest"] .trust__logo--img.is-color-dark img,
  html[data-theme="burgundy"] .trust__logo--img.is-color-dark img,
  html[data-theme="slate"] .trust__logo--img.is-color-dark img {
    filter: invert(1) hue-rotate(180deg);
  }
  .trust__logo--patients {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    opacity: 0.85;
    padding: 0 18px;
    border-left: 1px solid var(--line);
    border-right: 1px solid var(--line);
  }
  .trust__logo--patients .n {
    font-family: 'Crimson Pro', 'Geist', serif;
    font-size: 28px;
    font-weight: 500;
    color: var(--accent);
    letter-spacing: -0.02em;
    line-height: 1;
  }
  .trust__logo--patients .plus {
    font-style: italic;
    color: var(--accent);
    font-weight: 400;
  }
  .trust__logo--patients .l {
    font-family: 'Geist Mono', monospace;
    font-size: 9px;
    letter-spacing: 0.18em;
    /* Compensate trailing letter-spacing so the label centers visually under the number */
    padding-left: 0.18em;
    text-transform: uppercase;
    color: var(--ink);
    margin-top: 2px;
  }
  .trust__logo--patients:hover { opacity: 1; }
  .trust__logo .dot {
    width: 6px; height: 6px;
    background: var(--accent);
    border-radius: 50%;
    display: inline-block;
  }
  @media (max-width: 720px) {
    .trust__inner { padding: 20px 20px; gap: 14px; }
    .trust__rail { animation-duration: 14s; }
    .trust__track { gap: 36px; padding-right: 36px; }
    .trust__logo { font-size: 22px; }
    .trust__logo--mono { font-size: 13px; }
    .trust__logo--bold { font-size: 18px; }
  }

  /* ---------- Section heading ---------- */
  .sec-head {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 64px;
    align-items: end;
    margin-bottom: 64px;
  }
  .sec-head .eyebrow { margin-bottom: 14px; }
  @media (max-width: 880px) {
    .sec-head { grid-template-columns: 1fr; gap: 18px; margin-bottom: 44px; }
  }

  /* ---------- Guarantee ---------- */
  .guarantee {
    background: var(--ink);
    color: #fff;
    position: relative;
    overflow: hidden;
  }
  .guarantee::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
      radial-gradient(50% 70% at 90% 100%, rgba(21,71,245,.22), transparent 60%),
      radial-gradient(40% 60% at 0% 0%, rgba(0,194,168,.10), transparent 60%);
    pointer-events: none;
  }
  .guarantee__inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
  }
  @media (max-width: 880px) {
    .guarantee__inner { gap: 0; }
  }
  /* Toggle button: full-width clickable surface */
  .guarantee__toggle {
    appearance: none;
    background: transparent;
    border: 1px solid rgba(255,255,255,.14);
    color: inherit;
    cursor: pointer;
    padding: 20px 28px;
    border-radius: var(--radius-lg);
    width: 100%;
    max-width: 520px;
    display: flex;
    flex-direction: row;
    align-items: center;
    text-align: left;
    gap: 20px;
    transition: background .2s ease, border-color .2s ease;
    font: inherit;
  }
  .guarantee__toggle:hover {
    background: rgba(255,255,255,.04);
    border-color: rgba(255,255,255,.28);
  }
  .guarantee__toggle h2 {
    margin: 0;
    text-align: center;
  }
  .guarantee__chev {
    margin-top: 0;
    margin-left: auto;
    flex: 0 0 auto;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.2);
    color: rgba(255,255,255,.7);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform .25s ease, color .2s ease, border-color .2s ease;
  }
  .guarantee__toggle:hover .guarantee__chev {
    color: #fff;
    border-color: rgba(255,255,255,.4);
  }
  .guarantee__toggle[aria-expanded="true"] .guarantee__chev {
    transform: rotate(180deg);
  }
  /* Collapsed copy panel — animated grid-template-rows for smooth expand */
  .guarantee__copy {
    width: 100%;
    max-width: 520px;
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows .35s ease, margin-top .35s ease;
    margin-top: 0;
  }
  .guarantee__toggle[aria-expanded="true"] + .guarantee__copy {
    grid-template-rows: 1fr;
    margin-top: 16px;
  }
  .guarantee__copy__inner {
    overflow: hidden;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.12);
    padding: 0 32px;
    border-radius: var(--radius-lg);
    transition: padding .35s ease;
  }
  .guarantee__toggle[aria-expanded="true"] + .guarantee__copy .guarantee__copy__inner {
    padding: 32px;
  }
  .guarantee h2 {
    color: #fff;
    font-size: clamp(22px, 2.4vw, 28px);
    line-height: 1.1;
  }
  .guarantee h2 .underline {
    color: var(--accent-2);
    font-style: italic;
    font-family: 'Instrument Serif', serif;
    font-weight: 400;
  }
  .guarantee__seal {
    display: none;
    align-items: center;
    gap: 14px;
    font-family: 'Geist Mono', monospace;
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--accent-2);
    margin-bottom: 0;
  }
  .guarantee__seal::before {
    content: "";
    width: 28px; height: 1px;
    background: var(--accent-2);
  }
  .guarantee__copy p {
    color: rgba(255,255,255,.85);
    font-size: 17px;
    line-height: 1.6;
  }
  .guarantee__copy p + p { margin-top: 14px; }
  .guarantee__sig {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px dashed rgba(255,255,255,.18);
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 18px;
    flex-wrap: wrap;
  }
  .guarantee__sig .who {
    font-family: 'Instrument Serif', serif;
    font-style: italic;
    font-size: 22px;
    color: #fff;
  }
  .guarantee__sig .who-meta {
    font-family: 'Geist Mono', monospace;
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,.55);
  }

  /* ---------- What we fix ---------- */
  .conds {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  @media (max-width: 880px) { .conds { grid-template-columns: 1fr; } }
  .cond {
    background: var(--paper-2);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: border-color .2s ease, transform .2s ease;
    display: flex;
    flex-direction: column;
  }
  .cond:hover { border-color: var(--ink); }
  .cond__diag {
    aspect-ratio: 1.15 / 1;
    background: var(--paper);
    position: relative;
    border-bottom: 1px solid var(--line);
    overflow: hidden;
  }
  .cond__diag svg { width: 100%; height: 100%; display: block; }
  .cond__body {
    padding: 24px 28px 28px;
  }
  .cond__num {
    font-family: 'Geist Mono', monospace;
    font-size: 11px;
    letter-spacing: 0.14em;
    color: var(--accent);
    text-transform: uppercase;
    margin-bottom: 12px;
  }
  .cond h3 { font-size: 22px; letter-spacing: -0.02em; margin-bottom: 8px; }
  .cond p {
    color: var(--slate);
    font-size: 14.5px;
    line-height: 1.5;
  }

  /* expand panel */
  .reveal {
    margin-top: 32px;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: var(--paper);
    overflow: hidden;
  }
  .reveal__head {
    width: 100%;
    border: 0;
    background: transparent;
    padding: 22px 28px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 14px;
    cursor: pointer;
    font-family: inherit;
    font-size: 15px;
    color: var(--ink);
    font-weight: 500;
    text-align: left;
  }
  .reveal__head .lbl {
    font-family: 'Geist Mono', monospace;
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--slate);
    margin-right: 14px;
  }
  .reveal__head .arrow {
    width: 26px; height: 26px;
    border: 1px solid var(--line);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform .25s ease, background .15s ease, color .15s ease, border-color .15s ease;
    color: var(--ink);
  }
  .reveal.open .reveal__head .arrow {
    background: var(--ink);
    color: #fff;
    border-color: var(--ink);
    transform: rotate(45deg);
  }
  .reveal__body {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s ease;
  }
  .reveal.open .reveal__body { max-height: 1200px; }
  .reveal__body__inner {
    padding: 4px 28px 32px;
    display: grid;
    gap: 28px;
  }
  .chip-group { display: grid; gap: 10px; }
  .chip-group__hd {
    font-family: 'Geist Mono', monospace;
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent);
  }
  .chips { display: flex; flex-wrap: wrap; gap: 8px; }
  .chip {
    font-size: 13px;
    padding: 7px 13px;
    background: var(--paper-2);
    border: 1px solid var(--line);
    border-radius: 100px;
    color: var(--ink-2);
    transition: background .15s ease, border-color .15s ease;
  }
  .chip:hover { background: var(--paper-3); border-color: var(--slate-2); }

  /* ---------- How It Works ---------- */
  .how-sec { background: var(--paper); position: relative; }
  .how__intro { max-width: 720px; margin-bottom: 56px; }
  .how__steps {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 56px;
    align-items: start;
  }
  @media (max-width: 880px) {
    .how__steps { grid-template-columns: 1fr; gap: 32px; }
  }
  /* Left rail: vertical phase index */
  .how__rail {
    position: sticky;
    top: 96px;
    display: flex;
    flex-direction: column;
    gap: 0;
    border-left: 1px solid var(--line);
    padding-left: 0;
  }
  @media (max-width: 880px) { .how__rail { display: none; } }
  .how__rail-item {
    position: relative;
    padding: 14px 0 14px 24px;
    cursor: default;
  }
  .how__rail-item::before {
    content: "";
    position: absolute;
    left: -5px; top: 22px;
    width: 9px; height: 9px;
    border-radius: 50%;
    background: var(--paper);
    border: 1.5px solid var(--slate-2);
    transition: background .2s, border-color .2s;
  }
  .how__rail-item.is-active::before {
    background: var(--accent);
    border-color: var(--accent);
  }
  .how__rail-num {
    font-family: 'Geist Mono', monospace;
    font-size: 10.5px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--slate);
    display: block;
    margin-bottom: 4px;
  }
  .how__rail-lbl {
    font-family: 'Crimson Pro', serif;
    font-size: 18px;
    color: var(--ink);
    font-weight: 500;
    line-height: 1.25;
  }

  /* Right column: step cards */
  .how__list {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }
  .how__step {
    background: var(--paper-2);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 36px 36px 32px;
    position: relative;
    overflow: hidden;
  }
  .how__step__hd {
    display: flex;
    align-items: baseline;
    gap: 16px;
    flex-wrap: wrap;
    padding-bottom: 18px;
    margin-bottom: 22px;
    border-bottom: 1px solid var(--line);
  }
  .how__step__num {
    font-family: 'Crimson Pro', serif;
    font-size: 56px;
    font-style: italic;
    font-weight: 400;
    color: var(--accent);
    line-height: 0.9;
    letter-spacing: -0.02em;
  }
  .how__step__title-wrap {
    flex: 1 1 auto;
    min-width: 200px;
  }
  .how__step__where {
    font-family: 'Geist Mono', monospace;
    font-size: 10.5px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--accent);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
  }
  .how__step__where::before {
    content: "";
    width: 14px; height: 1px; background: currentColor;
  }
  .how__step__title {
    font-family: 'Crimson Pro', serif;
    font-size: clamp(28px, 2.6vw, 34px);
    font-weight: 500;
    line-height: 1.1;
    color: var(--ink);
    letter-spacing: -0.012em;
    margin: 0;
  }
  .how__step__badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: 'Geist Mono', monospace;
    font-size: 10.5px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent);
    background: color-mix(in oklab, var(--accent) 10%, transparent);
    border: 1px solid color-mix(in oklab, var(--accent) 25%, transparent);
    padding: 5px 10px;
    border-radius: 100px;
    vertical-align: middle;
    margin-left: 12px;
    position: relative;
    top: -3px;
    white-space: nowrap;
  }
  .how__step__badge::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 0 3px color-mix(in oklab, var(--accent) 20%, transparent);
  }
  .how__step__body {
    font-size: 17px;
    line-height: 1.6;
    color: var(--ink-2);
    text-wrap: pretty;
  }
  .how__step__body p { margin: 0 0 14px; }
  .how__step__body p:last-child { margin: 0; }

  /* Substeps (used in step 2 — In-Home) */
  .how__substeps {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 6px;
  }
  @media (max-width: 720px) {
    .how__substeps { grid-template-columns: 1fr; }
  }
  .how__sub {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 22px 22px 22px;
  }
  .how__sub__lbl {
    font-family: 'Geist Mono', monospace;
    font-size: 9.5px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--slate);
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .how__sub__lbl strong {
    color: var(--accent);
    font-weight: 600;
    letter-spacing: 0.18em;
  }
  .how__sub__title {
    font-family: 'Crimson Pro', serif;
    font-size: 22px;
    font-weight: 500;
    line-height: 1.2;
    color: var(--ink);
    margin: 4px 0 10px;
  }
  .how__sub__body {
    font-size: 15.5px;
    line-height: 1.55;
    color: var(--ink-2);
    margin: 0;
  }
  .how__sub__duration {
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px dashed var(--line);
    font-family: 'Geist Mono', monospace;
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--slate);
  }

  /* Tools row inside step 3 */
  .how__tools {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 8px;
    padding-top: 18px;
    border-top: 1px dashed var(--line);
  }
  .how__tool {
    font-family: 'Geist Mono', monospace;
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--ink-2);
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 4px;
    padding: 6px 10px;
  }

  /* ---------- end How It Works ---------- */

  /* ---------- The PowerBack Method ---------- */
  .method-sec { background: var(--paper); }
  .method__lede {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .method__lede__hd {
    font-size: clamp(18px, 1.4vw, 22px);
    font-weight: 600;
    color: var(--ink);
    letter-spacing: -0.012em;
    line-height: 1.35;
  }
  .method__lede__sub {
    font-size: 16px;
    color: var(--slate);
    font-weight: 400;
    line-height: 1.55;
  }
  .method__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: start;
  }
  .method__copy p {
    color: var(--ink-2);
    font-size: 16.5px;
    line-height: 1.65;
    margin-bottom: 16px;
  }
  .method__copy p.lede { color: var(--ink); font-size: 19px; line-height: 1.5; margin-bottom: 0; }
  .method__photo {
    aspect-ratio: 16 / 5;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    position: relative;
    overflow: hidden;
  }
  .pillars-wheel {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 32px;
  }
  .pillars-wheel__hd {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--line);
    margin-bottom: 22px;
  }
  .pillars-wheel__hd .t {
    font-family: 'Geist Mono', monospace;
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent);
  }
  .pillars-wheel__hd .b {
    font-family: 'Geist Mono', monospace;
    font-size: 11px;
    color: var(--slate);
    letter-spacing: 0.1em;
  }
  .frame-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--line);
  }
  @media (max-width: 720px) { .frame-grid { grid-template-columns: repeat(2, 1fr); } }
  .frame-grid__cell {
    background: var(--paper);
    padding: 16px 18px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-height: 86px;
  }
  .frame-grid__cell .n {
    font-family: 'Geist Mono', monospace;
    font-size: 10.5px;
    letter-spacing: 0.14em;
    color: var(--accent);
    text-transform: uppercase;
  }
  .frame-grid__cell .nm {
    font-size: 16px;
    font-weight: 500;
    color: var(--ink);
    letter-spacing: -0.012em;
    line-height: 1.25;
  }
  .frame-grid__cell .ds {
    font-size: 12.5px;
    color: var(--slate);
    line-height: 1.45;
  }
  .method-outcomes {
    margin-top: 22px;
    display: grid;
    gap: 10px;
  }
  .method-outcomes li {
    list-style: none;
    display: grid;
    grid-template-columns: 18px 1fr;
    gap: 12px;
    font-size: 14px;
    color: var(--ink-2);
  }
  .method-outcomes li::before {
    content: "→";
    color: var(--accent);
    font-family: 'Geist Mono', monospace;
  }
  .method-outcomes ul { padding: 0; margin: 0; }

  /* ---------- About ---------- */
  .about-sec { background: var(--paper-2); }
  .about__grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 64px;
    align-items: center;
  }
  @media (max-width: 880px) {
    .about__grid { grid-template-columns: 1fr; gap: 32px; }
    .about__photo { justify-self: center; max-width: 360px; }
  }
  .about__photo {
    aspect-ratio: 4 / 5;
    max-width: 320px;
    width: 100%;
    justify-self: end;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    position: relative;
    overflow: hidden;
  }
  .about__copy h2 { margin-bottom: 8px; }
  .about__copy .subtitle {
    color: var(--accent);
    font-family: 'Instrument Serif', serif;
    font-style: italic;
    font-size: 24px;
    margin-bottom: 28px;
  }
  .about__copy p {
    color: var(--ink-2);
    font-size: 16.5px;
    line-height: 1.65;
    margin-bottom: 16px;
  }
  .about__creds {
    margin-top: 32px;
    padding-top: 28px;
    border-top: 1px solid var(--line);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
  }
  .about__cred {
    padding: 0 18px;
    border-left: 1px solid var(--line-2);
  }
  .about__cred:first-child { border-left: 0; padding-left: 0; }
  .about__cred .k {
    font-family: 'Geist Mono', monospace;
    font-size: 10.5px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--slate);
    margin-bottom: 6px;
  }
  .about__cred .v {
    font-size: 17px;
    font-weight: 500;
    letter-spacing: -0.015em;
    color: var(--ink);
  }
  @media (max-width: 720px) {
    .about__creds { grid-template-columns: repeat(2, 1fr); gap: 18px; }
    .about__cred { padding: 0; border-left: 0; }
  }

  /* ---------- Before/After ---------- */
  .ba { background: var(--paper-2); color: var(--ink); }
  .ba h2, .ba .sec-head .eyebrow.eyebrow--invert { color: var(--ink); }
  .ba .sec-head .lede { color: var(--slate); }
  .ba__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  @media (max-width: 880px) { .ba__grid { grid-template-columns: 1fr; } }
  .ba__card {
    background: var(--ink);
    border: 1px solid var(--ink);
    border-radius: var(--radius-lg);
    overflow: hidden;
  }
  .ba__pair {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: rgba(255,255,255,.12);
  }
  .ba__cell {
    aspect-ratio: 1 / 1.15;
    background: var(--ink-2);
    position: relative;
    overflow: hidden;
  }
  .ba__cell .lbl {
    position: absolute;
    top: 12px; left: 12px;
    font-family: 'Geist Mono', monospace;
    font-size: 10.5px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255,255,255,.7);
    background: rgba(0,0,0,.35);
    padding: 4px 8px;
    border-radius: 3px;
    z-index: 2;
  }
  .ba__cell.is-after .lbl { color: var(--accent-2); }
  .ba__meta {
    padding: 18px 22px 20px;
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 14px;
  }
  .ba__meta .nm {
    font-size: 15px;
    font-weight: 500;
    color: #fff;
  }
  .ba__meta .nm-sub {
    font-size: 12.5px;
    color: rgba(255,255,255,.55);
    margin-top: 3px;
  }
  .ba__meta .delta {
    font-family: 'Geist Mono', monospace;
    font-size: 12px;
    color: var(--accent-2);
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  /* ---------- Services ---------- */
  .services-sec { background: var(--paper); }
  .services {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    align-items: start;
    max-width: 760px;
    margin: 0 auto;
  }
  @media (max-width: 880px) { .services { grid-template-columns: 1fr; } }
  .svc {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 36px;
    display: flex;
    flex-direction: column;
    position: relative;
  }
  .svc--compact { padding: 32px; }
  .svc--compact .svc__head { padding-bottom: 18px; margin-bottom: 18px; }
  .svc--compact h3 { font-size: clamp(24px, 2.4vw, 30px); }
  .svc--compact .svc__list li { font-size: 14.5px; padding-left: 26px; padding-bottom: 8px; }
  .svc--compact .svc__list li::before { font-size: 13px; }
  .svc--compact .svc__desc { font-size: 15px; margin-bottom: 16px; line-height: 1.5; }
  .svc--featured {
    background: var(--ink);
    color: #fff;
    border-color: var(--ink);
    box-shadow: var(--shadow-lg);
  }
  .svc--featured h3, .svc--featured .svc__sub { color: #fff; }
  .svc__badge {
    position: absolute;
    top: -10px;
    left: 32px;
    background: var(--accent);
    color: #fff;
    font-family: 'Geist Mono', monospace;
    font-size: 10.5px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 5px 10px;
    border-radius: 4px;
  }
  .svc__head {
    padding-bottom: 22px;
    border-bottom: 1px solid var(--line);
    margin-bottom: 22px;
  }
  .svc--featured .svc__head { border-bottom-color: rgba(255,255,255,.15); }
  .svc__eyebrow {
    font-family: 'Geist Mono', monospace;
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 14px;
  }
  .svc--featured .svc__eyebrow { color: var(--accent-2); }
  .svc h3 { font-size: clamp(28px, 3vw, 36px); letter-spacing: -0.025em; }
  .svc__sub {
    color: var(--slate);
    font-size: 15px;
    margin-top: 6px;
  }
  .svc--featured .svc__sub { color: rgba(255,255,255,.6); }
  .svc__capacity {
    margin-top: 14px;
    font-family: 'Geist Mono', monospace;
    font-size: 11.5px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent-2);
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }
  .svc__capacity::before {
    content: "";
    width: 8px; height: 8px;
    background: var(--accent-2);
    border-radius: 50%;
  }
  .svc__desc {
    font-size: 16px;
    line-height: 1.55;
    color: var(--ink-2);
    margin-bottom: 22px;
  }
  .svc--featured .svc__desc { color: rgba(255,255,255,.85); }
  .svc__list {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
    display: grid;
    gap: 12px;
    flex-grow: 1;
  }
  .svc__list li {
    font-size: 14.5px;
    line-height: 1.5;
    display: grid;
    grid-template-columns: 18px 1fr;
    gap: 10px;
    color: var(--ink-2);
  }
  .svc--featured .svc__list li { color: rgba(255,255,255,.85); }
  .svc__list li::before {
    content: "✓";
    color: var(--accent);
    font-size: 13px;
    font-weight: 600;
    margin-top: 1px;
  }
  .svc--featured .svc__list li::before { color: var(--accent-2); }

  /* Featured ALIGN guarantee block (sits above the includes) */
  .svc__guarantee {
    border: 1px solid rgba(0,194,168,.35);
    background: rgba(0,194,168,.10);
    border-radius: 10px;
    padding: 16px 18px;
    margin-bottom: 22px;
    display: grid;
    grid-template-columns: 22px 1fr;
    gap: 14px;
    align-items: start;
  }
  .svc__guarantee__icon {
    width: 22px; height: 22px;
    border-radius: 50%;
    background: var(--accent-2);
    color: var(--ink);
    display: grid;
    place-items: center;
    font-size: 13px;
    font-weight: 700;
    line-height: 1;
    /* Vertically center icon to the cap-height of the GUARANTEE label */
    margin-top: -2px;
  }
  .svc__guarantee__text {
    flex: 1;
  }
  .svc__guarantee__lbl {
    display: block;
    font-family: 'Geist Mono', monospace;
    font-size: 10.5px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent-2);
    margin-bottom: 4px;
    font-weight: 600;
  }
  .svc__guarantee__body {
    color: rgba(255,255,255,.92);
    font-size: 14.5px;
    line-height: 1.5;
  }

  /* ALIGN includes block - 2 col compact grid */
  .svc__includes-hd {
    font-family: 'Geist Mono', monospace;
    font-size: 10.5px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255,255,255,.55);
    margin-bottom: 14px;
  }
  .svc__includes {
    list-style: none;
    padding: 0;
    margin: 0 0 26px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 20px;
    flex-grow: 1;
  }
  @media (max-width: 1080px) { .svc__includes { grid-template-columns: 1fr; } }
  .svc__includes li {
    font-size: 13.5px;
    line-height: 1.45;
    display: grid;
    grid-template-columns: 14px 1fr;
    gap: 10px;
    color: rgba(255,255,255,.85);
    align-items: start;
  }
  .svc__includes li::before {
    content: "✓";
    color: var(--accent-2);
    font-size: 12px;
    font-weight: 600;
    margin-top: 1px;
  }
  .svc__list li.is-guarantee {
    display: block;
    padding: 12px 14px 12px 36px;
    margin-bottom: 8px;
    border: 1px solid rgba(0,194,168,.35);
    background: rgba(0,194,168,.08);
    border-radius: 8px;
    font-size: 14px;
    line-height: 1.45;
  }
  .svc__list li.is-guarantee::before {
    left: 14px;
    top: 13px;
    color: var(--accent-2);
  }
  .svc__list li.is-guarantee b {
    display: block;
    font-family: 'Geist Mono', monospace;
    font-size: 10.5px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent-2);
    margin-bottom: 4px;
    font-weight: 600;
  }
  .svc__price {
    font-family: 'Geist Mono', monospace;
    font-size: 22px;
    font-weight: 500;
    letter-spacing: -0.015em;
    color: var(--ink);
    margin-bottom: 18px;
    padding-bottom: 16px;
    border-bottom: 1px dashed var(--line);
  }
  .svc--featured .svc__price { color: var(--accent-2); border-bottom-color: rgba(255,255,255,.15); }
  .svc__price .pill {
    font-size: 11px;
    letter-spacing: 0.14em;
    color: var(--slate);
    text-transform: uppercase;
    margin-left: 10px;
  }
  .svc--featured .svc__price .pill { color: rgba(255,255,255,.55); }

  /* Inline Free-Consult CTA block at bottom of ALIGN card */
  .svc__cta-wrap {
    margin-top: 26px;
    padding: 26px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 14px;
  }
  .svc__cta-eyebrow {
    font-family: 'Geist Mono', monospace;
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--accent-2);
    margin-bottom: 10px;
  }
  .svc__cta-title {
    font-family: 'Crimson Pro', serif;
    font-size: clamp(22px, 2.2vw, 26px);
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: #fff;
    margin-bottom: 16px;
  }
  .svc__cta-list {
    list-style: none;
    padding: 0;
    margin: 0 0 18px;
    display: grid;
    gap: 8px;
  }
  .svc__cta-list li {
    position: relative;
    padding-left: 22px;
    font-size: 14.5px;
    line-height: 1.5;
    color: rgba(255,255,255,.82);
  }
  .svc__cta-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--accent-2);
    font-size: 13px;
  }
  .svc__cta-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    padding: 14px 0;
    margin-bottom: 16px;
    border-top: 1px dashed rgba(255,255,255,.15);
    border-bottom: 1px dashed rgba(255,255,255,.15);
  }
  .svc__cta-price {
    font-family: 'Crimson Pro', serif;
    font-size: 22px;
    font-weight: 500;
    color: var(--accent-2);
    letter-spacing: -0.015em;
  }
  .svc__cta-pill {
    font-family: 'Geist Mono', monospace;
    font-size: 10.5px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255,255,255,.6);
    padding: 5px 9px;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 100px;
  }
  .svc__hint {
    text-align: center;
    margin-top: 28px;
    font-size: 14px;
    color: var(--slate);
  }
  .svc__hint a {
    color: var(--accent);
    border-bottom: 1px solid currentColor;
    padding-bottom: 1px;
  }

  /* ---------- Testimonials ---------- */
  .quote__thumb img.img-fit {
    /* YouTube maxresdefault is 16:9 with the portrait video centered —
       scale up so the portrait video fills the 9:14 frame, cropping the side bars. */
    width: auto;
    height: 100%;
    left: 50%;
    transform: translateX(-50%);
    object-fit: cover;
  }
  .quotes {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  @media (max-width: 960px) { .quotes { grid-template-columns: repeat(2, 1fr); } }
  @media (max-width: 640px) { .quotes { grid-template-columns: 1fr; } }
  .quote {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: border-color .2s ease;
  }
  .quote:hover { border-color: var(--ink); }
  .quote__thumb {
    aspect-ratio: 9 / 14;
    background: #000;
    border-bottom: 1px solid var(--line);
    position: relative;
    overflow: hidden;
  }
  .quote__thumb::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, transparent 55%, rgba(0,0,0,.55) 100%);
    pointer-events: none;
  }
  .quote__play {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    z-index: 2;
  }
  .quote__play .ico {
    width: 48px; height: 48px;
    background: rgba(255,255,255,.95);
    border-radius: 50%;
    display: grid;
    place-items: center;
    box-shadow: 0 4px 12px rgba(10,22,40,.18);
    transition: transform .15s ease, background .15s ease;
  }
  .quote:hover .quote__play .ico { transform: scale(1.06); background: var(--accent); color: #fff; }
  .quote__play svg { display: block; }
  .quote__thumb-meta {
    position: absolute;
    bottom: 12px; left: 12px;
    z-index: 2;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
  }
  .quote__chip {
    font-family: 'Geist Mono', monospace;
    font-size: 10px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    background: rgba(10,22,40,.85);
    color: #fff;
    padding: 4px 8px;
    border-radius: 3px;
  }
  .quote__chip.is-result {
    background: var(--accent);
  }
  .quote__body {
    padding: 24px 24px 22px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex-grow: 1;
  }
  .quote__mark {
    font-family: 'Instrument Serif', serif;
    font-size: 56px;
    line-height: 0.5;
    color: var(--accent);
    height: 14px;
  }
  .quote__body p {
    font-size: 16px;
    line-height: 1.5;
    color: var(--ink);
    letter-spacing: -0.012em;
    flex-grow: 1;
    text-wrap: pretty;
  }
  .quote__meta {
    border-top: 1px solid var(--line);
    padding-top: 14px;
    display: grid;
    gap: 4px;
  }
  .quote__name {
    font-size: 14.5px;
    font-weight: 500;
    color: var(--ink);
  }
  .quote__role {
    font-size: 13px;
    color: var(--slate);
  }
  .quote__cond {
    font-family: 'Geist Mono', monospace;
    font-size: 11px;
    color: var(--accent);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-top: 6px;
  }
  .quote.is-hidden { display: none; }
  .quote.is-hidden.show { display: flex; }

  .more-toggle {
    margin-top: 40px;
    display: flex;
    justify-content: center;
  }
  .more-toggle button {
    background: transparent;
    border: 1px solid var(--ink);
    color: var(--ink);
    padding: 14px 24px;
    font-size: 14.5px;
    border-radius: var(--radius);
    font-family: inherit;
    font-weight: 500;
    transition: background .15s ease, color .15s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
  }
  .more-toggle button:hover { background: var(--ink); color: #fff; }
  .more-toggle button .arrow { transition: transform .25s ease; }
  .more-toggle.open button .arrow { transform: rotate(180deg); }

  /* ---------- FAQ ---------- */
  .faq-sec { background: var(--paper-2); }
  .faq__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
  }
  @media (max-width: 880px) { .faq__grid { grid-template-columns: 1fr; gap: 24px; } }
  .faq__col h3 {
    font-family: 'Geist Mono', monospace;
    font-size: 12px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 8px;
    font-weight: 500;
  }
  .faq__list {
    display: grid;
    gap: 0;
    border-top: 1px solid var(--line);
  }
  .faq__item {
    border-bottom: 1px solid var(--line);
    padding: 0;
  }
  .faq__q {
    width: 100%;
    background: none;
    border: 0;
    text-align: left;
    padding: 22px 0;
    font-size: 17px;
    font-weight: 500;
    color: var(--ink);
    letter-spacing: -0.015em;
    cursor: pointer;
    display: grid;
    grid-template-columns: 1fr 24px;
    gap: 24px;
    align-items: center;
    transition: color .15s ease;
    font-family: inherit;
  }
  .faq__q:hover { color: var(--accent); }
  .faq__q .ico {
    width: 24px; height: 24px;
    border: 1px solid var(--line);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform .25s ease, background .15s ease, border-color .15s ease;
    color: var(--ink);
    flex-shrink: 0;
    position: relative;
  }
  .faq__q .ico::before, .faq__q .ico::after {
    content: "";
    background: currentColor;
    position: absolute;
  }
  .faq__q .ico::before { width: 10px; height: 1.5px; }
  .faq__q .ico::after { width: 1.5px; height: 10px; transition: transform .25s ease; }
  .faq__item.open .faq__q .ico {
    background: var(--ink);
    color: #fff;
    border-color: var(--ink);
    transform: rotate(45deg);
  }
  .faq__a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease;
  }
  .faq__a__inner {
    padding: 0 60px 22px 0;
    color: var(--slate);
    font-size: 15px;
    line-height: 1.6;
    max-width: 60ch;
  }
  .faq__item.open .faq__a { max-height: 480px; }

  /* ---------- Service Area ---------- */
  .area__grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 64px;
    align-items: center;
  }
  @media (max-width: 880px) { .area__grid { grid-template-columns: 1fr; gap: 40px; } }
  .area__copy h2 { margin-bottom: 16px; }
  .area__copy .subtitle {
    color: var(--slate);
    font-size: 17px;
    margin-bottom: 24px;
    max-width: 50ch;
  }
  .area__copy .pin-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 8px;
  }
  .area__copy .pin-row span {
    font-family: 'Geist Mono', monospace;
    font-size: 12px;
    letter-spacing: 0.06em;
    color: var(--ink-2);
    padding: 6px 12px;
    background: var(--paper-2);
    border: 1px solid var(--line);
    border-radius: 4px;
  }
  .area__map {
    aspect-ratio: 1.2 / 1;
    background: var(--paper-2);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    position: relative;
    padding: 32px;
    display: grid;
    place-items: center;
  }
  .area__map svg { width: 100%; height: 100%; display: block; }

  /* ---------- Final CTA ---------- */
  .final {
    background: var(--ink);
    color: #fff;
    position: relative;
    overflow: hidden;
  }
  .final::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
      radial-gradient(60% 80% at 90% 0%, rgba(21,71,245,.20), transparent 60%),
      radial-gradient(40% 60% at 0% 100%, rgba(0,194,168,.10), transparent 60%);
    pointer-events: none;
  }
  .final__inner { position: relative; z-index: 1; text-align: center; }
  .final h2 { color: #fff; max-width: 18ch; margin: 0 auto; }
  .final h2 .accent {
    color: var(--accent-2);
    font-family: 'Instrument Serif', serif;
    font-style: italic;
    font-weight: 400;
  }
  .final__lede { color: rgba(255,255,255,.7); margin: 22px auto 0; font-size: 18px; max-width: 50ch; line-height: 1.55; }
  .final__ctas {
    margin-top: 48px;
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
  }
  .final__contact {
    margin-top: 56px;
    padding-top: 36px;
    border-top: 1px solid rgba(255,255,255,.12);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }
  @media (max-width: 720px) { .final__contact { grid-template-columns: 1fr; } }
  .final__contact .ci {
    text-align: center;
  }
  .final__contact .ci .k {
    font-family: 'Geist Mono', monospace;
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255,255,255,.5);
    margin-bottom: 8px;
  }
  .final__contact .ci .v {
    font-size: 17px;
    font-weight: 500;
    color: #fff;
    letter-spacing: -0.01em;
  }
  .final__contact .ci .v:hover { color: var(--accent-2); }

  /* ---------- Footer ---------- */
  .foot {
    background: var(--paper);
    border-top: 1px solid var(--line);
  }
  .foot__inner {
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 56px 28px 32px;
  }
  .foot__top {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--line);
  }
  @media (max-width: 880px) {
    .foot__top { grid-template-columns: 1fr 1fr; gap: 32px; }
  }
  .foot__brand p {
    color: var(--slate);
    font-size: 13.5px;
    line-height: 1.55;
    margin-top: 14px;
    max-width: 32ch;
  }
  .foot__col h5 {
    font-family: 'Geist Mono', monospace;
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--slate);
    margin: 6px 0 18px;
    font-weight: 500;
  }
  .foot__col a, .foot__col li {
    display: block;
    color: var(--ink-2);
    font-size: 14px;
    padding: 5px 0;
  }
  .foot__col a:hover { color: var(--accent); }
  .foot__col ul { list-style: none; padding: 0; margin: 0; }
  .foot__bot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 24px;
    color: var(--slate-2);
    font-size: 13px;
    flex-wrap: wrap;
    gap: 12px;
  }

  /* ---------- Placeholder asset visuals ---------- */
  .ph {
    position: absolute;
    inset: 0;
    background:
      repeating-linear-gradient(45deg, transparent 0 8px, rgba(10,22,40,.05) 8px 9px),
      var(--paper-2);
    display: grid;
    place-items: center;
  }
  .img-fit {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
  }
  .img-contain {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
    padding: 12px;
  }
  .ph__lbl {
    font-family: 'Geist Mono', monospace;
    font-size: 10.5px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--slate);
    background: var(--paper);
    padding: 6px 10px;
    border: 1px solid var(--line);
    border-radius: 3px;
    text-align: center;
    max-width: 80%;
  }
  .ph--dark {
    background:
      repeating-linear-gradient(45deg, transparent 0 8px, rgba(255,255,255,.03) 8px 9px),
      var(--ink-2);
  }
  .ph--dark .ph__lbl {
    background: rgba(10,22,40,.85);
    color: rgba(255,255,255,.7);
    border-color: rgba(255,255,255,.12);
  }

  /* utility */
  .hidden { display: none; }
  .reveal-on-scroll { opacity: 0; transform: translateY(16px); transition: opacity .6s ease, transform .6s ease; }
  .reveal-on-scroll.visible { opacity: 1; transform: translateY(0); }
