:root {
    --cream:     #E9D5C5;
    --paper:     #F2E6D8;
    --sand:      #DCC6B4;
    --ink:       #2A201A;
    --ink-soft:  #6B5A4E;
    --ink-muted: #A28E7E;
    --sage:      #B0745F;
    --sage-deep: #8C5847;
    --sage-soft: #DCC0AE;
    --clay:      #B0745F;
    --clay-deep: #8C5847;
    --gold:      #D9B17C;
    --gold-soft: #ECD2A6;
    --espresso:  #241C16;
    --hairline:  rgba(42,32,24,0.13);
    --hairline-2:rgba(42,32,24,0.07);

    --serif: 'Instrument Serif', Georgia, serif;
    --read:  'Newsreader', Georgia, serif;
    --sans:  'Geist', -apple-system, system-ui, sans-serif;
    --mono:  'JetBrains Mono', ui-monospace, monospace;

    --edge: clamp(22px, 6vw, 96px);
    --maxw: 1240px;
  }

  * { box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  body {
    margin: 0;
    font-family: var(--sans);
    color: var(--ink);
    background: var(--cream);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: 1.5;
  }
  h1, h2, h3 { margin: 0; font-weight: 400; }
  p { margin: 0; }
  a { color: inherit; text-decoration: none; }
  img { display: block; max-width: 100%; }

  .wrap { max-width: var(--maxw); margin: 0 auto; padding-inline: var(--edge); }

  .eyebrow {
    font-family: var(--mono);
    font-size: 12px; letter-spacing: 2.4px; text-transform: uppercase;
    color: var(--ink-muted); font-weight: 500;
    display: inline-flex; align-items: center; gap: 12px;
  }
  .eyebrow::before {
    content: ''; width: 22px; height: 1px; background: var(--ink-muted); opacity: 0.6;
  }
  .eyebrow.center::before { display: none; }

  /* ── Whisper Tick mark ─────────────────────────────── */
  .mark { display: inline-flex; flex-direction: column; align-items: center; }
  .mark .dot {
    border-radius: 50%;
    background: radial-gradient(circle at 35% 30%, var(--gold-soft) 0%, var(--gold) 60%, var(--clay-deep) 110%);
  }
  .mark .tick { border-radius: 999px; background: var(--sage-deep); opacity: 0.7; }
  /* mark sizes: dot d, tick w≈1.11d h≈0.067d gap≈0.72d */
  .mark.m28 .dot { width: 28px; height: 28px; }
  .mark.m28 .tick { width: 31px; height: 2px; margin-top: 8px; }
  .mark.m60 .dot { width: 60px; height: 60px; box-shadow: 0 6px 16px rgba(120,80,40,0.22); }
  .mark.m60 .tick { width: 67px; height: 4px; margin-top: 14px; }
  .mark.m96 .dot { width: 96px; height: 96px; box-shadow: 0 10px 26px rgba(120,80,40,0.24); }
  .mark.m96 .tick { width: 107px; height: 6px; margin-top: 22px; }

  /* ── Buttons ───────────────────────────────────────── */
  .btn {
    font-family: var(--sans); font-size: 15px; font-weight: 500;
    border: none; cursor: pointer; border-radius: 999px; text-decoration: none;
    padding: 14px 26px; display: inline-flex; align-items: center; gap: 10px;
    transition: transform .25s ease, background .25s ease, box-shadow .25s ease, color .25s ease;
  }
  .btn-primary { background: var(--ink); color: var(--cream); box-shadow: 0 1px 2px rgba(42,37,32,.2), 0 10px 24px -12px rgba(42,37,32,.5); }
  .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 1px 2px rgba(42,37,32,.2), 0 16px 30px -12px rgba(42,37,32,.55); }
  .btn-ghost { background: transparent; color: var(--ink); box-shadow: inset 0 0 0 1px var(--hairline); }
  .btn-ghost:hover { box-shadow: inset 0 0 0 1px rgba(42,37,32,.32); transform: translateY(-2px); }
  .text-link { font-weight: 500; color: var(--ink); display: inline-flex; align-items: center; gap: 7px; }
  .text-link .arr { transition: transform .25s ease; }
  .text-link:hover .arr { transform: translateX(4px); }

  /* ── Nav ───────────────────────────────────────────── */
  .nav {
    position: sticky; top: 0; z-index: 100;
    backdrop-filter: blur(14px) saturate(150%);
    -webkit-backdrop-filter: blur(14px) saturate(150%);
    background: color-mix(in srgb, var(--cream) 78%, transparent);
    border-bottom: 1px solid transparent;
    transition: border-color .3s ease, background .3s ease;
  }
  .nav.scrolled { border-bottom-color: var(--hairline); }
  .nav-inner {
    max-width: var(--maxw); margin: 0 auto; padding: 16px var(--edge);
    display: flex; align-items: center; justify-content: space-between; gap: 24px;
  }
  .brand { display: flex; align-items: center; gap: 12px; }
  .brand .wordmark { font-family: var(--serif); font-size: 24px; letter-spacing: -.3px; line-height: 1; }
  .brand .wordmark em { font-style: normal; opacity: .5; }
  .nav-links { display: flex; align-items: center; gap: 34px; }
  .nav-links a { font-size: 14.5px; color: var(--ink-soft); transition: color .2s ease; }
  .nav-links a:hover { color: var(--ink); }
  .nav-cta { display: flex; align-items: center; gap: 18px; }
  .nav-cta .btn { padding: 11px 20px; font-size: 14px; }
  @media (max-width: 860px) { .nav-links { display: none; } }

  /* ── Hero ──────────────────────────────────────────── */
  .hero { position: relative; overflow: hidden; }
  .hero::before {
    content: ''; position: absolute; inset: 0; z-index: 0; pointer-events: none;
    background:
      radial-gradient(60% 50% at 78% 8%, rgba(220,185,127,.28) 0%, transparent 60%),
      radial-gradient(50% 45% at 12% 80%, rgba(176,116,95,.22) 0%, transparent 60%);
  }
  .hero-inner {
    position: relative; z-index: 1;
    max-width: var(--maxw); margin: 0 auto; padding: clamp(48px,7vw,96px) var(--edge) clamp(56px,7vw,104px);
    display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(32px,5vw,72px); align-items: center;
  }
  .hero h1 {
    font-family: var(--serif);
    font-size: clamp(46px, 6vw, 82px); line-height: 1.03; letter-spacing: -1.5px;
    margin-top: 26px;
  }
  .hero h1 em { font-style: italic; color: var(--sage-deep); }
  .hero .lead {
    font-family: var(--read); font-size: clamp(17px, 1.5vw, 21px); line-height: 1.5;
    color: var(--ink-soft); max-width: 30ch; margin-top: 24px; font-weight: 380;
  }
  .hero-actions { display: flex; align-items: center; gap: 22px; margin-top: 34px; flex-wrap: wrap; }
  .hero-trust { margin-top: 26px; display: flex; align-items: center; gap: 10px; font-size: 13.5px; color: var(--ink-muted); }
  .hero-trust .dots { display: flex; }
  .hero-trust .dots span { width: 22px; height: 22px; border-radius: 50%; margin-left: -6px; border: 2px solid var(--cream); }

  .hero-visual { display: flex; justify-content: center; align-items: center; }

  /* ── Device ────────────────────────────────────────── */
  .device-stage { position: relative; }
  .device-stage::after {
    content: ''; position: absolute; left: 50%; bottom: -26px; transform: translateX(-50%);
    width: 78%; height: 60px; border-radius: 50%;
    background: radial-gradient(ellipse, rgba(42,37,32,.22) 0%, transparent 70%); filter: blur(8px); z-index: -1;
  }
  .device {
    width: 326px; height: 680px; border-radius: 52px; padding: 11px;
    background: linear-gradient(160deg, #34302A 0%, #1C1915 100%);
    box-shadow:
      0 50px 90px -30px rgba(42,37,32,.55),
      0 18px 40px -20px rgba(42,37,32,.4),
      inset 0 0 0 1.5px rgba(255,255,255,.06);
    position: relative;
  }
  .screen {
    position: relative; width: 100%; height: 100%; border-radius: 42px; overflow: hidden;
    background: var(--cream);
  }
  .island {
    position: absolute; top: 11px; left: 50%; transform: translateX(-50%);
    width: 104px; height: 30px; border-radius: 20px; background: #000; z-index: 30;
  }
  .statusbar {
    position: absolute; top: 0; left: 0; right: 0; height: 50px; z-index: 20;
    display: flex; align-items: center; justify-content: space-between; padding: 17px 26px 0;
    pointer-events: none;
  }
  .statusbar .time { font-family: -apple-system, "SF Pro", var(--sans); font-weight: 600; font-size: 15px; letter-spacing: -.2px; color: var(--ink); }
  .statusbar svg { display: block; }
  .screen-scroll { position: absolute; inset: 0; overflow: hidden; }

  .greet { padding: 64px 26px 16px; }
  .greet .label { font-family: var(--mono); font-size: 10.5px; letter-spacing: 1.6px; text-transform: uppercase; color: var(--ink-muted); font-weight: 500; }
  .greet h2 { font-family: var(--serif); font-size: 40px; line-height: 1.04; letter-spacing: -.5px; margin-top: 13px; }
  .greet p { font-family: var(--read); font-size: 14.5px; line-height: 1.5; color: var(--ink-soft); margin-top: 12px; max-width: 240px; }

  .compose { margin: 8px 18px 18px; display: flex; align-items: center; gap: 13px;
    background: var(--paper); border-radius: 22px; padding: 16px 18px;
    box-shadow: 0 1px 0 var(--hairline); }
  .compose .spark { width: 36px; height: 36px; border-radius: 50%; background: var(--ink);
    display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
  .compose .ct-title { font-family: var(--serif); font-size: 18px; line-height: 1.1; }
  .compose .ct-sub { font-family: var(--read); font-size: 12.5px; color: var(--ink-soft); margin-top: 2px; }

  .recent-head { padding: 6px 26px 2px; display: flex; justify-content: space-between; align-items: center;
    font-family: var(--mono); font-size: 10.5px; letter-spacing: 1.6px; text-transform: uppercase; color: var(--ink-muted); font-weight: 500; }
  .recent-head .n { font-family: var(--sans); text-transform: none; letter-spacing: 0; font-size: 12px; color: var(--ink-soft); font-weight: 400; }
  .threads { padding: 0 18px; }
  .thread { display: flex; gap: 13px; align-items: flex-start; padding: 14px 8px; border-bottom: .5px solid var(--hairline); }
  .thread:last-child { border-bottom: none; }
  .thread .pin { width: 6px; height: 6px; border-radius: 50%; margin-top: 8px; flex-shrink: 0; background: transparent; }
  .thread.pinned .pin { background: var(--sage); }
  .thread .t-title { font-family: var(--serif); font-size: 17px; line-height: 1.25; letter-spacing: -.1px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .thread .t-prev { font-family: var(--read); font-size: 12.5px; color: var(--ink-soft); margin-top: 3px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .thread .t-when { font-family: var(--mono); font-size: 10px; color: var(--ink-muted); flex-shrink: 0; margin-top: 4px; }
  .screen-fade { position: absolute; left: 0; right: 0; bottom: 0; height: 90px; z-index: 12;
    background: linear-gradient(to top, var(--cream) 12%, transparent); pointer-events: none; }
  .homebar { position: absolute; bottom: 9px; left: 50%; transform: translateX(-50%); width: 120px; height: 4.5px; border-radius: 100px; background: rgba(42,37,32,.3); z-index: 25; }

  /* ── App screens showcase ──────────────────────────── */
  .showcase .wrap { max-width: 1200px; }
  .show-head { max-width: 640px; margin-inline: auto; text-align: center; }
  .show-row { margin-top: clamp(44px,5vw,72px); display: flex; gap: clamp(14px,2vw,26px);
    justify-content: center; align-items: flex-start; flex-wrap: wrap; }
  .phone { width: 224px; flex: none; display: flex; flex-direction: column; align-items: center; gap: 15px; }
  .pscreen { position: relative; width: 100%; height: 485px; border-radius: 32px; overflow: hidden;
    box-shadow: 0 44px 80px -42px rgba(42,32,24,.6), inset 0 0 0 1px var(--hairline-2); }
  .pscreen, .pscreen * { box-sizing: border-box; }
  .pscreen svg { display: block; }
  .pfade { position: absolute; left: 0; right: 0; bottom: 0; height: 76px; z-index: 6; pointer-events: none; }
  .pcap { font-family: var(--mono); font-size: 11px; letter-spacing: 1.6px; text-transform: uppercase; color: var(--ink-muted); text-align: center; }
  @media (max-width: 1040px) {
    .show-row { flex-wrap: nowrap; overflow-x: auto; justify-content: flex-start;
      scroll-snap-type: x mandatory; padding-inline: var(--edge); margin-inline: calc(var(--edge) * -1);
      -webkit-overflow-scrolling: touch; scrollbar-width: none; }
    .show-row::-webkit-scrollbar { display: none; }
    .phone { scroll-snap-align: center; }
  }

  /* Voice (white + gold) */
  .scr-voice { background: #fff; color: #2A2520; display: flex; flex-direction: column; padding: 15px 15px 0; }
  .scr-voice .v-top { display: flex; align-items: flex-start; gap: 6px; }
  .scr-voice .v-back { font-size: 21px; line-height: .8; color: #2A2520; width: 14px; }
  .scr-voice .v-ttl { flex: 1; text-align: center; font-family: var(--serif); font-size: 18px; color: #2A2520; line-height: 1.05; }
  .scr-voice .v-sub { display: flex; align-items: center; justify-content: center; gap: 5px; font-family: var(--sans); font-size: 10px; color: #8A857E; margin-top: 1px; }
  .scr-voice .v-sub i { width: 5px; height: 5px; border-radius: 50%; background: var(--gold); }
  .scr-voice .v-acts { display: flex; gap: 11px; color: #3A3631; padding-top: 2px; }
  .scr-voice .v-acts svg { width: 17px; height: 17px; }
  .scr-voice .v-center { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; }
  .scr-voice .v-mic { position: relative; width: 152px; height: 152px; display: grid; place-items: center; margin-bottom: 30px; }
  .scr-voice .v-mic .ring { position: absolute; border-radius: 50%; border: 1px solid rgba(217,177,124,.4); }
  .scr-voice .v-mic .r2 { inset: 28px; border-color: rgba(217,177,124,.62); }
  .scr-voice .v-orb { width: 86px; height: 86px; border-radius: 50%; background: #D9B17C; display: grid; place-items: center; color: #fff; box-shadow: 0 8px 26px -6px rgba(217,177,124,.55); }
  .scr-voice .v-orb svg { width: 28px; height: 28px; }
  .scr-voice .v-state { font-family: var(--sans); font-weight: 600; font-size: 21px; color: #2A2520; }
  .scr-voice .v-hint { font-family: var(--sans); font-size: 13px; color: #8A857E; margin-top: 7px; white-space: nowrap; }
  .scr-voice .v-cancel { margin-top: 22px; background: #ECEAE6; color: #2A2520; border: none; font-family: var(--sans); font-weight: 600; font-size: 14px; padding: 11px 30px; border-radius: 100px; }
  .scr-voice .v-bar { margin: 0 0 14px; display: flex; align-items: center; gap: 9px; }
  .scr-voice .v-plus { width: 32px; height: 32px; border-radius: 50%; border: 1px solid #E4E1DC; color: #9A958E; display: grid; place-items: center; font-size: 17px; flex: none; }
  .scr-voice .v-rec { flex: 1; height: 40px; border-radius: 100px; background: rgba(217,177,124,.14); display: flex; align-items: center; gap: 8px; padding: 0 14px; color: #B0904E; font-family: var(--sans); font-size: 12px; white-space: nowrap; }
  .scr-voice .v-rec .sq { width: 10px; height: 10px; border-radius: 2px; background: #D9B17C; flex: none; }
  .scr-voice .v-rec .wave { margin-left: auto; display: flex; align-items: flex-end; gap: 1.5px; height: 13px; }
  .scr-voice .v-rec .wave i { width: 2px; background: #CBA968; border-radius: 2px; }

  /* Note editor (white) */
  .scr-note { background: #fff; color: #3A3631; display: flex; flex-direction: column; }
  .scr-note .n-top { display: flex; align-items: center; gap: 10px; padding: 13px 13px 9px; }
  .scr-note .n-cancel { font-family: var(--sans); font-size: 13px; color: #8A857E; }
  .scr-note .n-icons { margin-left: auto; display: flex; gap: 11px; color: #5E5A54; }
  .scr-note .n-icons svg { width: 15px; height: 15px; }
  .scr-note .n-body { flex: 1; padding: 9px 15px; font-family: var(--serif); font-size: 21px; color: #9A958E; display: flex; align-items: flex-start; gap: 1px; }
  .scr-note .n-caret { width: 2px; height: 22px; background: #2A2520; margin-top: 3px; }
  .scr-note .n-toolbar { display: flex; align-items: center; gap: 11px; padding: 9px 13px; border-top: 1px solid #ECEAE7; font-family: var(--sans); font-weight: 700; font-size: 12px; color: #4A4640; }
  .scr-note .n-toolbar .bar { width: 1px; height: 14px; background: #E0DDD9; }
  .scr-note .n-toolbar svg { width: 15px; height: 15px; }
  .scr-note .n-toolbar .it { font-style: italic; font-weight: 500; }
  .scr-note .n-toolbar .pushr { margin-left: auto; }
  .scr-note .n-mic { text-align: center; padding: 7px 0 9px; color: #5E5A54; }
  .scr-note .n-mic svg { width: 17px; height: 17px; margin: 0 auto; }
  .scr-note .n-kb { background: #D2D5DA; padding: 5px 3px 7px; }
  .scr-note .kb-sug { display: flex; align-items: center; height: 28px; font-family: var(--sans); font-size: 13px; color: #1A1714; }
  .scr-note .kb-sug span { flex: 1; text-align: center; }
  .scr-note .kb-sug span + span { border-left: 1px solid rgba(0,0,0,.14); }
  .scr-note .kb-row { display: flex; justify-content: center; gap: 3px; padding: 2.5px 2px; }
  .scr-note .kb-row.r2 { padding-inline: 13px; }
  .scr-note .kb-row span { flex: 1; height: 27px; background: #FFFFFF; border-radius: 4.5px; display: grid; place-items: center; font-family: var(--sans); font-weight: 500; font-size: 12px; color: #1A1714; box-shadow: 0 1px 0 rgba(0,0,0,.3); }
  .scr-note .kb-row .wide { flex: 1.5; background: #ADB3BC; }
  .scr-note .kb-bottom .k123 { flex: 1.7; background: #ADB3BC; font-size: 11px; }
  .scr-note .kb-bottom .emo { flex: 1.2; background: #ADB3BC; }
  .scr-note .kb-bottom .space { flex: 5; }
  .scr-note .kb-bottom .ret { flex: 1.8; background: #ADB3BC; }
  .scr-note .kb-foot { display: flex; justify-content: space-between; align-items: center; padding: 5px 11px 0; color: #1A1714; }
  .scr-note .kb-foot svg { width: 16px; height: 16px; }

  /* Fitness (white + gold) */
  .scr-fit { background: #fff; color: #2A2520; padding: 14px 11px 0; }
  .scr-fit .ft-top { display: flex; align-items: center; gap: 10px; margin-bottom: 11px; }
  .scr-fit .ft-x { width: 29px; height: 29px; border-radius: 50%; background: #F0EFEC; display: grid; place-items: center; color: #6E6A64; flex: none; }
  .scr-fit .ft-x svg { width: 13px; height: 13px; }
  .scr-fit .ft-seg { margin-left: auto; display: flex; gap: 2px; background: #F0EFEC; border-radius: 100px; padding: 3px; font-family: var(--sans); font-size: 11px; font-weight: 600; }
  .scr-fit .ft-seg span { padding: 5px 12px; border-radius: 100px; color: #8A857E; }
  .scr-fit .ft-seg span.on { background: #fff; color: #2A2520; box-shadow: 0 1px 3px rgba(0,0,0,.12); }
  .scr-fit .ft-stat { background: #F7F6F4; border-radius: 13px; box-shadow: inset 0 0 0 1px #ECEAE7; overflow: hidden; }
  .scr-fit .ft-row3 { display: flex; }
  .scr-fit .ft-row3 > div { flex: 1; text-align: center; padding: 12px 4px; }
  .scr-fit .ft-row3 > div + div { border-left: 1px solid #ECEAE7; }
  .scr-fit .ft-stat b { display: block; font-family: var(--serif); font-size: 21px; font-weight: 400; line-height: 1; }
  .scr-fit .ft-stat span { font-family: var(--sans); font-size: 8.5px; letter-spacing: 1px; color: #8A857E; }
  .scr-fit .ft-run { text-align: center; padding: 9px; border-top: 1px solid #ECEAE7; }
  .scr-fit .ft-card { margin-top: 11px; background: #F7F6F4; border-radius: 13px; box-shadow: inset 0 0 0 1px #ECEAE7; padding: 0 13px; }
  .scr-fit .ft-h { display: flex; align-items: center; gap: 7px; font-family: var(--sans); font-size: 9.5px; font-weight: 600; letter-spacing: 1.2px; color: #8A857E; padding: 12px 0 9px; }
  .scr-fit .ft-h svg { width: 13px; height: 13px; color: var(--gold); }
  .scr-fit .ft-h .ref { margin-left: auto; color: #9A958E; }
  .scr-fit .ft-rec { display: flex; align-items: center; padding: 8px 0; border-top: 1px solid #ECEAE7; }
  .scr-fit .ft-rec .nm { flex: 1; font-family: var(--sans); font-size: 12.5px; }
  .scr-fit .ft-rec .dl { display: flex; align-items: center; gap: 2px; font-family: var(--sans); font-size: 11px; font-weight: 600; margin-right: 8px; }
  .scr-fit .ft-rec .dl svg { width: 10px; height: 10px; }
  .scr-fit .ft-rec .dl.up { color: #4E8C5A; }
  .scr-fit .ft-rec .dl.dn { color: #C2553F; }
  .scr-fit .ft-rec .val { text-align: right; flex: none; }
  .scr-fit .ft-rec .val b { font-family: var(--sans); font-size: 14px; font-weight: 700; white-space: nowrap; }
  .scr-fit .ft-rec .val span { display: block; font-family: var(--sans); font-size: 8px; letter-spacing: .7px; color: #9A958E; margin-top: 1px; }
  .scr-fit .ft-ai p { font-family: var(--read); font-size: 12.5px; line-height: 1.42; padding: 4px 0 16px; }
  .scr-fit .pfade { background: linear-gradient(to top, #fff 22%, transparent); }

  /* Model picker (white) */
  .scr-pick { background: #fff; color: #2A2520; padding: 15px 15px 0; }
  .scr-pick .pk-x { position: absolute; top: 13px; right: 13px; width: 30px; height: 30px; border-radius: 50%; background: #F0EEEB; display: grid; place-items: center; color: #3A3631; z-index: 7; }
  .scr-pick .pk-x svg { width: 13px; height: 13px; }
  .scr-pick .pk-ey { font-family: var(--sans); font-size: 10px; letter-spacing: 2px; color: #A29C93; padding-top: 4px; }
  .scr-pick .pk-h { font-family: var(--serif); font-size: 27px; line-height: 1.04; color: var(--gold); margin-top: 7px; }
  .scr-pick .pk-sub { font-family: var(--sans); font-size: 12.5px; color: #6E6A64; margin-top: 12px; }
  .scr-pick .pk-cards { margin-top: 13px; display: flex; flex-direction: column; gap: 9px; }
  .scr-pick .pk-card { border: 1px solid #ECEAE7; border-radius: 13px; overflow: hidden; }
  .scr-pick .pk-t { font-family: var(--serif); font-size: 17px; padding: 11px 13px 9px; }
  .scr-pick .pk-prov { display: flex; align-items: center; gap: 7px; padding: 8px 13px; border-top: 1px solid #F2F0ED; font-family: var(--sans); font-size: 11.5px; color: #8A857E; }
  .scr-pick .pk-bdg { width: 16px; height: 16px; border-radius: 4.5px; display: grid; place-items: center; color: #fff; font-family: var(--sans); font-weight: 700; font-size: 9px; flex: none; }
  .scr-pick .b-pp { background: #20808D; }
  .scr-pick .b-an { background: #C8693F; }
  .scr-pick .b-oa { background: #10A37F; }
  .scr-pick .pk-foot { position: absolute; left: 0; right: 0; bottom: 0; padding: 22px 14px 14px; z-index: 6;
    background: linear-gradient(to top, #fff 62%, rgba(255,255,255,0)); }
  .scr-pick .pk-msg { display: flex; align-items: center; gap: 8px; border: 1px solid #E6E4E1; border-radius: 100px; padding: 11px 15px; font-family: var(--sans); font-size: 13px; color: #A29C93; }
  .scr-pick .pk-msg svg { width: 15px; height: 15px; margin-left: auto; color: #6E6A64; }
  .scr-pick .pk-model { display: flex; align-items: center; gap: 7px; padding: 10px 4px 2px; font-family: var(--sans); font-size: 11.5px; color: #8A857E; }
  .scr-pick .pk-model .chev { margin-left: auto; }
  .scr-pick .pk-model .chev svg { width: 13px; height: 13px; }

  /* ── Section scaffolding ───────────────────────────── */
  section { position: relative; }
  .band { padding: clamp(72px, 9vw, 128px) 0; }
  .band-paper { background: var(--paper); }
  .sec-head { max-width: 720px; }
  .sec-head h2 {
    font-family: var(--serif); font-size: clamp(34px, 4.4vw, 60px); line-height: 1.02;
    letter-spacing: -1px; margin-top: 20px; text-wrap: balance;
  }
  .sec-head h2 em { font-style: italic; color: var(--clay-deep); }
  .sec-head .sub { font-family: var(--read); font-size: clamp(16px,1.4vw,19px); color: var(--ink-soft); margin-top: 20px; max-width: 52ch; line-height: 1.55; font-weight: 380; }

  /* ── Memory cards ──────────────────────────────────── */
  .mem-grid {
    margin-top: clamp(40px, 5vw, 64px);
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
  }
  .mem-card {
    background: var(--paper); border-radius: 22px; padding: 26px 24px;
    box-shadow: inset 0 0 0 1px var(--hairline-2); position: relative;
    display: flex; flex-direction: column; min-height: 172px;
    transition: transform .3s ease, box-shadow .3s ease;
  }
  .band-paper .mem-card { background: var(--cream); }
  .mem-card:hover { transform: translateY(-4px); box-shadow: inset 0 0 0 1px var(--hairline), 0 18px 36px -22px rgba(42,37,32,.4); }
  .mem-card .when { font-family: var(--mono); font-size: 10.5px; letter-spacing: 1.4px; text-transform: uppercase; color: var(--ink-muted); display: flex; align-items: center; gap: 8px; }
  .mem-card .when .dot-pin { width: 6px; height: 6px; border-radius: 50%; background: var(--sage); }
  .mem-card h3 { font-family: var(--serif); font-size: 24px; line-height: 1.12; letter-spacing: -.3px; margin-top: 16px; }
  .mem-card p { font-family: var(--read); font-size: 14.5px; color: var(--ink-soft); margin-top: auto; padding-top: 16px; line-height: 1.5; }
  .mem-card .reply { color: var(--ink); }
  @media (max-width: 900px) { .mem-grid { grid-template-columns: repeat(2,1fr); } .mem-card.hide-sm { display: none; } }
  @media (max-width: 560px) { .mem-grid { grid-template-columns: 1fr; } }

  /* ── Pillars ───────────────────────────────────────── */
  .pillars { margin-top: clamp(40px,5vw,64px); display: grid; grid-template-columns: repeat(3,1fr); gap: clamp(20px,2.5vw,34px); }
  .pillar { display: flex; flex-direction: column; }
  .pillar .figure {
    height: 200px; border-radius: 24px; margin-bottom: 26px;
    display: flex; align-items: center; justify-content: center; overflow: hidden; position: relative;
    background: var(--paper); box-shadow: inset 0 0 0 1px var(--hairline-2);
  }
  .band-paper .pillar .figure { background: var(--cream); }
  .pillar h3 { font-family: var(--serif); font-size: 27px; letter-spacing: -.3px; }
  .pillar p { font-family: var(--read); font-size: 15px; color: var(--ink-soft); margin-top: 12px; line-height: 1.55; font-weight: 380; max-width: 34ch; }
  @media (max-width: 820px) { .pillars { grid-template-columns: 1fr; max-width: 460px; } }

  /* figure: greeting mini */
  .fig-greet { flex-direction: column; align-items: flex-start; padding: 30px; gap: 0; }
  .fig-greet .lbl { font-family: var(--mono); font-size: 9.5px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--ink-muted); }
  .fig-greet .big { font-family: var(--serif); font-size: 34px; line-height: 1; margin-top: 10px; }
  .fig-greet .sm { font-family: var(--read); font-size: 13px; color: var(--ink-soft); margin-top: 10px; }
  .fig-greet .cursor { display: inline-block; width: 2px; height: 26px; background: var(--clay); margin-left: 3px; vertical-align: -4px; animation: blink 1.1s steps(1) infinite; }
  @keyframes blink { 50% { opacity: 0; } }

  /* figure: voice orb */
  .orb-wrap { position: relative; width: 150px; height: 150px; display: flex; align-items: center; justify-content: center; }
  .orb-ring { position: absolute; border-radius: 50%; border: 1px solid var(--sage-soft); }
  .orb-ring.r1 { width: 104px; height: 104px; animation: ring 3.2s ease-in-out 0s infinite; }
  .orb-ring.r2 { width: 134px; height: 134px; animation: ring 3.2s ease-in-out .5s infinite; }
  .orb-ring.r3 { width: 162px; height: 162px; animation: ring 3.2s ease-in-out 1s infinite; }
  .orb-core { width: 86px; height: 86px; border-radius: 50%;
    background: radial-gradient(circle at 32% 30%, var(--gold-soft) 0%, var(--gold) 46%, var(--clay-deep) 100%);
    box-shadow: 0 0 50px rgba(220,185,127,.5), inset 0 -8px 22px rgba(0,0,0,.16), inset 0 10px 22px rgba(255,255,255,.2);
    animation: breath 2.6s ease-in-out infinite; }
  @keyframes ring { 0%{transform:scale(.9);opacity:.12} 50%{transform:scale(1.06);opacity:.5} 100%{transform:scale(.9);opacity:.12} }
  @keyframes breath { 0%,100%{transform:scale(1)} 50%{transform:scale(1.05)} }

  /* figure: palette */
  .pal { display: flex; flex-direction: column; gap: 12px; }
  .pal-row { display: flex; gap: 12px; }
  .sw { width: 54px; height: 54px; border-radius: 14px; box-shadow: inset 0 0 0 1px rgba(0,0,0,.08); position: relative; overflow: hidden; }
  .sw.split { background: linear-gradient(135deg, var(--a) 0 50%, var(--b) 50% 100%); }

  /* figure: chat bubbles */
  .fig-chat { flex-direction: column; gap: 12px; padding: 30px; align-items: stretch; justify-content: center; }
  .bub { font-family: var(--read); font-size: 14px; line-height: 1.4; padding: 11px 15px; border-radius: 16px; max-width: 82%; }
  .bub.ai { background: var(--paper); color: var(--ink); align-self: flex-start; border-bottom-left-radius: 5px; box-shadow: inset 0 0 0 1px var(--hairline-2); }
  .band-paper .bub.ai { background: var(--cream); }
  .bub.me { background: var(--ink); color: var(--cream); align-self: flex-end; border-bottom-right-radius: 5px; }

  /* figure: note card */
  .fig-note { padding: 28px; }
  .note-card { width: 100%; background: var(--paper); border-radius: 16px; padding: 18px 18px 16px;
    box-shadow: 0 12px 26px -16px rgba(42,37,32,.4), inset 0 0 0 1px var(--hairline-2); }
  .band-paper .note-card { background: #FCF8F0; }
  .note-card .nt { font-family: var(--serif); font-size: 19px; line-height: 1.1; }
  .note-card .nl { height: 7px; border-radius: 4px; background: var(--sand); margin-top: 11px; }
  .note-card .nl.w2 { width: 72%; }
  .note-card .nck { display: flex; align-items: center; gap: 10px; margin-top: 15px; font-family: var(--read); font-size: 13.5px; color: var(--ink-soft); }
  .note-card .nck .box { width: 17px; height: 17px; border-radius: 5px; background: var(--sage); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }

  /* figure: fitness rings */
  .fig-rings .ring-track { fill: none; stroke: rgba(42,37,32,.08); }
  .fig-rings .ring-val { fill: none; stroke-linecap: round; transform: rotate(-90deg); transform-origin: 60px 60px; }

  /* figure: daily briefing */
  .fig-brief { padding: 26px; }
  .brief-card { width: 100%; background: var(--paper); border-radius: 16px; padding: 18px 18px 16px;
    box-shadow: 0 12px 26px -16px rgba(42,37,32,.4), inset 0 0 0 1px var(--hairline-2); }
  .band-paper .brief-card { background: #FCF8F0; }
  .brief-card .bc-ey { font-family: var(--mono); font-size: 9.5px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--ink-muted); }
  .brief-card .bc-row { display: flex; align-items: center; gap: 11px; margin-top: 12px; font-family: var(--read); font-size: 13.5px; color: var(--ink); line-height: 1.2; }
  .brief-card .bc-row:first-of-type { margin-top: 15px; }
  .brief-card .bc-dot { width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; }

  /* figure: insights chart */
  .fig-ins { flex-direction: column; gap: 16px; padding: 26px; }
  .ins-chart { width: 100%; display: block; }
  .ins-chart .line { fill: none; stroke: var(--sage-deep); stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }
  .ins-chart .pt { fill: var(--sage-deep); }
  .ins-chart .base { stroke: rgba(42,37,32,.12); stroke-width: 1; }
  .ins-cap { display: flex; align-items: center; gap: 9px; font-family: var(--sans); font-size: 12.5px; color: var(--ink-soft); }
  .ins-cap .up { color: var(--sage-deep); font-weight: 600; display: inline-flex; align-items: center; gap: 4px; }

  /* figure: recommendation */
  .fig-rec { padding: 26px; }
  .rec-card { width: 100%; background: var(--paper); border-radius: 16px; padding: 20px;
    box-shadow: 0 12px 26px -16px rgba(42,37,32,.4), inset 0 0 0 1px var(--hairline-2); }
  .band-paper .rec-card { background: #FCF8F0; }
  .rec-card .rec-ey { font-family: var(--mono); font-size: 9.5px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--sage-deep); display: flex; align-items: center; gap: 9px; }
  .rec-card .rec-ey .ic { width: 19px; height: 19px; border-radius: 50%; background: var(--sage); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
  .rec-card .rec-t { font-family: var(--serif); font-size: 21px; line-height: 1.08; margin-top: 13px; }
  .rec-card .rec-s { font-family: var(--read); font-size: 13px; color: var(--ink-soft); margin-top: 9px; line-height: 1.45; }

  /* feature views gallery */
  .views { margin-top: clamp(44px,5vw,64px); display: grid; grid-template-columns: repeat(3,1fr); gap: clamp(18px,2.2vw,28px); align-items: start; }
  .view { display: flex; flex-direction: column; gap: 15px; margin: 0; }
  .view-frame { position: relative; border-radius: 18px; overflow: hidden; background: #FFFFFF;
    height: 280px;
    box-shadow: inset 0 0 0 1px var(--hairline-2), 0 24px 46px -30px rgba(42,37,32,.55); }
  .view-frame::after { content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 90px; z-index: 2;
    background: linear-gradient(to top, #FFFFFF 18%, rgba(255,255,255,0)); pointer-events: none; }

  /* simulated app screen */
  .sim { height: 100%; display: flex; flex-direction: column; color: #2A2622; }
  .sim-bar { display: flex; align-items: center; gap: 9px; padding: 15px 15px 13px; flex: none;
    border-bottom: 1px solid rgba(42,32,24,.08); }
  .sim-actions { display: flex; gap: 8px; }
  .sim-ic { width: 30px; height: 30px; border-radius: 50%; background: #EFEDE9; flex: none;
    display: flex; align-items: center; justify-content: center; color: #6E6963; }
  .sim-ic svg { width: 15px; height: 15px; }
  .sim-dl { background: rgba(217,177,124,.16); color: var(--gold); }
  .sim-title { flex: 1; text-align: center; font-family: var(--read); font-weight: 420; font-size: 18px; letter-spacing: .1px; }
  .sim-body { padding: 17px 18px 0; overflow: hidden; }
  .sim-rec { font-family: var(--read); font-weight: 600; font-size: 16px; line-height: 1.34; color: var(--ink);
    text-indent: -13px; padding-left: 13px; }
  .sim-dot { display: inline-block; width: 5px; height: 5px; border-radius: 50%; background: var(--ink-muted);
    vertical-align: middle; margin-right: 9px; }
  .sim-h { font-family: var(--sans); font-weight: 600; font-size: 19px; line-height: 1.18; letter-spacing: -.3px; color: var(--ink); margin: 0; }
  .sim-p { font-family: var(--read); font-weight: 400; font-size: 15.5px; line-height: 1.4; color: var(--ink); margin: 13px 0 0; }
  .sim-list { font-family: var(--read); font-size: 15px; line-height: 1.4; color: var(--ink); margin: 11px 0 0; padding-left: 18px; }
  .sim-list li { margin-top: 8px; }
  .view-cap { display: flex; align-items: baseline; gap: 11px; white-space: nowrap; }
  .view-cap .vix { font-family: var(--mono); font-size: 11px; letter-spacing: 1.6px; color: var(--clay-deep); }
  .view-cap .vt { font-family: var(--sans); font-size: 14.5px; color: var(--ink); font-weight: 500; }
  @media (max-width: 760px) { .views { grid-template-columns: 1fr; max-width: 380px; margin-inline: auto; } }

  /* feature strip */
  .feature-strip { margin-top: clamp(34px, 4vw, 52px); display: flex; flex-wrap: wrap; gap: 12px; }
  .fchip { display: flex; align-items: center; gap: 10px; padding: 12px 18px; border-radius: 999px;
    background: var(--cream); box-shadow: inset 0 0 0 1px var(--hairline-2);
    font-family: var(--sans); font-size: 14px; color: var(--ink-soft); }
  .band-paper .fchip { background: var(--paper); }
  .fchip .d { width: 9px; height: 9px; border-radius: 50%; flex-shrink: 0; }

  /* Concise capability index */
  .caps { margin-top: clamp(44px,5vw,68px); display: grid; grid-template-columns: repeat(3,1fr); column-gap: clamp(28px,4vw,56px); row-gap: 0; }
  .cap { padding: 30px 0 32px; border-top: 1px solid var(--hairline); }
  .cap .ix { font-family: var(--mono); font-size: 11px; letter-spacing: 1.6px; color: var(--clay-deep); }
  .cap h3 { font-family: var(--serif); font-size: clamp(24px,2.6vw,33px); letter-spacing: -.3px; margin-top: 12px; }
  .cap p { font-family: var(--read); font-size: 15.5px; color: var(--ink-soft); margin-top: 9px; line-height: 1.4; font-weight: 380; }
  @media (max-width: 820px) { .caps { grid-template-columns: 1fr 1fr; } }
  @media (max-width: 520px) { .caps { grid-template-columns: 1fr; } }

  /* Thoughtful customization */
  .cust-inner { max-width: var(--maxw); margin: clamp(48px,6vw,84px) auto 0; padding: 0 var(--edge);
    display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px,6vw,84px); align-items: center; }
  .cust-copy h3 { font-family: var(--serif); font-size: clamp(28px,3.4vw,44px); line-height: 1.05; letter-spacing: -.6px; margin-top: 18px; }
  .cust-copy .sub { font-family: var(--read); font-size: clamp(15px,1.3vw,18px); color: var(--ink-soft); margin-top: 16px; max-width: 44ch; line-height: 1.55; font-weight: 380; }
  .cust-card { background: var(--paper); border-radius: 24px; padding: 24px; display: flex; flex-direction: column; gap: 22px;
    box-shadow: 0 30px 60px -30px rgba(42,32,24,.5), inset 0 0 0 1px var(--hairline-2); }
  .cust-grp .lbl { font-family: var(--mono); font-size: 10px; letter-spacing: 1.6px; text-transform: uppercase; color: var(--ink-muted); margin-bottom: 12px; }
  .theme-sw { display: flex; gap: 12px; }
  .tsw { width: 48px; }
  .tsw .chip { height: 44px; border-radius: 12px; overflow: hidden; display: flex; box-shadow: inset 0 0 0 1px var(--hairline-2); }
  .tsw .chip span { flex: 1; }
  .tsw.active .chip { box-shadow: 0 0 0 2px var(--ink); }
  .tsw .nm { font-family: var(--sans); font-size: 11px; color: var(--ink-soft); text-align: center; margin-top: 7px; }
  .tsw.active .nm { color: var(--ink); }
  .type-pills { display: flex; gap: 6px; background: var(--cream); border-radius: 13px; padding: 5px; box-shadow: inset 0 0 0 1px var(--hairline-2); }
  .type-pills .tp { flex: 1; text-align: center; font-family: var(--sans); font-size: 12.5px; color: var(--ink-soft); padding: 9px 6px; border-radius: 9px; white-space: nowrap; }
  .type-pills .tp.active { background: var(--ink); color: var(--cream); }
  .hc-row { display: flex; gap: 12px; }
  .hc { width: 30px; height: 30px; border-radius: 50%; box-shadow: inset 0 0 0 1px var(--hairline-2); display: flex; align-items: center; justify-content: center; }
  .hc.active { box-shadow: 0 0 0 2px var(--ink); }
  @media (max-width: 940px) { .cust-inner { grid-template-columns: 1fr; } .cust-copy { text-align: center; } .cust-copy .sub { margin-inline: auto; } .cust-card { max-width: 420px; margin: 4px auto 0; } }

  /* Customization showcase */
  .cust-lead { font-family: var(--read); font-size: clamp(16px,1.4vw,19px); color: var(--ink-soft); line-height: 1.55; font-weight: 380; margin-top: 18px; }
  .cust-gallery { margin-top: clamp(44px,5.5vw,78px); display: flex; gap: clamp(26px,4.5vw,60px); align-items: center; justify-content: center; flex-wrap: wrap; }
  .cust-phones { display: flex; gap: clamp(16px,2vw,28px); align-items: center; }
  .cust-phones figure { display: flex; flex-direction: column; align-items: center; gap: 14px; }
  .cust-phones img { width: clamp(186px,19vw,250px); border-radius: 30px; display: block;
    box-shadow: 0 44px 80px -42px rgba(42,32,24,.6), inset 0 0 0 1px var(--hairline-2); }
  .cust-voice { max-width: 340px; display: flex; flex-direction: column; gap: 16px; }
  .cust-voice img { width: 100%; border-radius: 22px; display: block;
    box-shadow: 0 34px 66px -38px rgba(42,32,24,.55), inset 0 0 0 1px var(--hairline-2); }
  .cust-cap { font-family: var(--mono); font-size: 11px; letter-spacing: 1.6px; text-transform: uppercase; color: var(--ink-muted); text-align: center; }
  @media (max-width: 860px) {
    .cust-voice { max-width: 340px; }
  }

  /* Bring your own API */
  .byo-inner { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--edge);
    display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px,6vw,84px); align-items: center; }
  .byo-copy h2 { font-family: var(--serif); font-size: clamp(34px,4.2vw,58px); line-height: 1.03; letter-spacing: -1px; margin-top: 20px; }
  .byo-copy h2 em { font-style: italic; color: var(--clay-deep); }
  .byo-copy .sub { font-family: var(--read); font-size: clamp(16px,1.4vw,19px); color: var(--ink-soft); margin-top: 22px; max-width: 46ch; line-height: 1.55; font-weight: 380; }
  .byo-points { margin: 26px 0 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
  .byo-points li { list-style: none; display: flex; align-items: center; gap: 12px; font-family: var(--sans); font-size: 14.5px; color: var(--ink); }
  .byo-points .tick { width: 20px; height: 20px; border-radius: 50%; background: var(--ink); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }

  .byo-card { background: var(--paper); border-radius: 26px; padding: 0; overflow: hidden;
    box-shadow: 0 30px 60px -30px rgba(42,32,24,.5), inset 0 0 0 1px var(--hairline-2); }
  .byo-head { display: flex; align-items: center; justify-content: space-between; padding: 20px 22px 18px; }
  .byo-head .ttl { font-family: var(--serif); font-size: 22px; letter-spacing: -.2px; }
  .byo-head .nic { color: var(--ink); display: flex; align-items: center; }
  .byo-list { padding: 0 22px 8px; }
  .byo-row { display: flex; align-items: center; gap: 15px; padding: 15px 0; border-top: 1px solid var(--hairline); }
  .byo-row:first-child { border-top: none; }
  .byo-row .prov { width: 44px; height: 44px; border-radius: 12px; flex-shrink: 0; display: flex; align-items: center; justify-content: center;
    font-family: var(--sans); font-weight: 600; font-size: 19px; color: #fff; box-shadow: 0 2px 6px rgba(0,0,0,.14), inset 0 1px 0 rgba(255,255,255,.18); }
  .byo-row .m-name { font-family: var(--serif); font-size: 21px; line-height: 1.1; letter-spacing: -.2px; }
  .byo-row .m-sub { font-family: var(--read); font-size: 14px; color: var(--ink-soft); margin-top: 2px; }
  .byo-row .m-spacer { flex: 1; }
  .byo-row .chev { color: var(--ink-muted); flex-shrink: 0; display: flex; }
  @media (max-width: 940px) { .byo-inner { grid-template-columns: 1fr; } .byo-copy { text-align: center; } .byo-copy .sub { margin-inline: auto; } .byo-points { max-width: 320px; margin-inline: auto; } .byo-card { max-width: 420px; margin: 4px auto 0; } }

  /* ── Philosophy band ───────────────────────────────── */
  .philosophy { background: var(--espresso); color: var(--cream); position: relative; overflow: hidden; }
  .philosophy::before {
    content: ''; position: absolute; inset: 0; pointer-events: none;
    background: radial-gradient(50% 60% at 80% 18%, rgba(220,185,127,.16) 0%, transparent 60%),
                radial-gradient(46% 50% at 8% 92%, rgba(176,116,95,.18) 0%, transparent 60%);
  }
  .philosophy .wrap { position: relative; z-index: 1; text-align: center; display: flex; flex-direction: column; align-items: center; }
  .philosophy .eyebrow { color: rgba(242,235,219,.6); }
  .philosophy .eyebrow::before { background: rgba(242,235,219,.5); }
  .kimbap { width: 162px; height: 162px; border-radius: 50%; position: relative;
    display: flex; align-items: center; justify-content: center;
    background: radial-gradient(circle at 38% 32%, #36422B, #232C1B 72%);
    box-shadow: 0 0 70px rgba(220,185,127,.20), 0 20px 44px -16px rgba(0,0,0,.6),
      inset 0 0 0 1.5px rgba(196,205,179,.20); }
  .kimbap .rice { width: 134px; height: 134px; border-radius: 50%;
    background: radial-gradient(circle at 40% 34%, #FBF6EA, #EFE7D3 78%);
    box-shadow: inset 0 0 0 1px rgba(42,37,32,.05), inset 0 2px 7px rgba(255,255,255,.55);
    display: flex; align-items: center; justify-content: center; }
  .kimbap .fillings { width: 74px; height: 74px; position: relative; }
  .kimbap .fl { position: absolute; border-radius: 50%;
    box-shadow: inset 0 -2px 4px rgba(0,0,0,.14), inset 0 2px 3px rgba(255,255,255,.28); }
  .philosophy blockquote {
    margin: 30px 0 0; max-width: 18ch; font-family: var(--serif);
    font-size: clamp(34px, 5.2vw, 72px); line-height: 1.05; letter-spacing: -.8px; text-wrap: balance;
  }
  .philosophy blockquote em { font-style: italic; color: var(--gold); }
  .philosophy .attrib { margin-top: 34px; font-family: var(--read); font-size: 17px; color: rgba(242,235,219,.7); max-width: 46ch; line-height: 1.6; font-weight: 360; }

  /* ── Final CTA ─────────────────────────────────────── */
  .cta { text-align: center; }
  .cta .wrap { display: flex; flex-direction: column; align-items: center; }
  .cta h2 { font-family: var(--serif); font-size: clamp(38px,5vw,66px); line-height: 1; letter-spacing: -1px; margin-top: 26px; }
  .cta h2 em { font-style: italic; color: var(--clay-deep); }
  .cta .sub { font-family: var(--read); font-size: 18px; color: var(--ink-soft); margin-top: 18px; max-width: 44ch; line-height: 1.55; }
  /* ── Invite form (Web3Forms) ───────────────────────── */
  .invite-form { width: min(480px, 100%); margin-top: 38px; display: flex; flex-direction: column; gap: 10px; text-align: left; }
  .if-row { display: flex; gap: 10px; }
  .if-input { width: 100%; font-family: var(--sans); font-size: 15px; color: var(--ink);
    background: var(--paper); border: none; border-radius: 16px; padding: 15px 18px; outline: none;
    box-shadow: inset 0 0 0 1px var(--hairline); transition: box-shadow .2s ease; }
  .if-row .if-input { flex: 1; min-width: 0; }
  .if-input::placeholder { color: var(--ink-muted); }
  .if-input:focus { box-shadow: inset 0 0 0 1.5px var(--sage); }
  .if-area { resize: vertical; min-height: 88px; line-height: 1.5; }
  .if-submit { width: 100%; justify-content: center; margin-top: 2px; }
  .if-submit:disabled { opacity: .55; cursor: progress; }
  .if-hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }
  .if-status { font-family: var(--read); font-size: 14.5px; line-height: 1.5; margin: 4px 2px 0; }
  .if-status:empty { display: none; }
  .if-status.ok { color: var(--sage-deep); }
  .if-status.err { color: #B5462F; }
  .invite-form.sent .if-row,
  .invite-form.sent .if-area,
  .invite-form.sent .if-submit { display: none; }
  @media (max-width: 560px) { .if-row { flex-direction: column; } }

  .cta .micro { margin-top: 16px; font-size: 13px; color: var(--ink-muted); }

  /* ── Footer ────────────────────────────────────────── */
  footer { background: var(--paper); border-top: 1px solid var(--hairline); padding: clamp(48px,6vw,72px) 0 36px; }
  .foot-top { display: flex; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
  .foot-brand { max-width: 300px; }
  .foot-brand .row { display: flex; align-items: center; gap: 11px; }
  .foot-brand .wordmark { font-family: var(--serif); font-size: 22px; }
  .foot-brand .wordmark em { font-style: normal; opacity: .5; }
  .foot-brand p { font-family: var(--read); font-size: 14.5px; color: var(--ink-soft); margin-top: 14px; line-height: 1.5; }
  .foot-cols { display: flex; gap: clamp(40px, 7vw, 96px); }
  .foot-col h4 { font-family: var(--mono); font-size: 11px; letter-spacing: 1.6px; text-transform: uppercase; color: var(--ink-muted); font-weight: 500; margin-bottom: 16px; }
  .foot-col a { display: block; font-size: 14.5px; color: var(--ink-soft); margin-bottom: 11px; transition: color .2s; }
  .foot-col a:hover { color: var(--ink); }
  .foot-bottom { margin-top: clamp(40px,5vw,60px); padding-top: 24px; border-top: 1px solid var(--hairline);
    display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 12.5px; color: var(--ink-muted); }

  /* ── Reveal ────────────────────────────────────────── */
  @media (prefers-reduced-motion: no-preference) {
    .js .reveal { opacity: 0; transform: translateY(22px); transition: opacity .8s cubic-bezier(.2,.7,.2,1), transform .8s cubic-bezier(.2,.7,.2,1); }
    .js .reveal.in { opacity: 1; transform: none; }
    .js .reveal.d1 { transition-delay: .08s; }
    .js .reveal.d2 { transition-delay: .16s; }
    .js .reveal.d3 { transition-delay: .24s; }
  }

  @media (max-width: 940px) {
    .hero-inner { grid-template-columns: 1fr; text-align: center; }
    .hero .lead { margin-inline: auto; }
    .hero-actions, .hero-trust, .eyebrow { justify-content: center; }
    .eyebrow.left::before { display: none; }
    .hero-visual { margin-top: 12px; }
    .sec-head { margin-inline: auto; text-align: center; }
    .sec-head .sub { margin-inline: auto; }
  }
