  :root {
    --paper:      #FBFBFD;
    --paper-2:    #F3F3F7;
    --surface:    #FFFFFF;
    --ink:        #14141A;
    --muted:      #6A6976;
    --faint:      #9A99A6;
    --line:       rgba(20,20,30,.09);
    --line-soft:  rgba(20,20,30,.05);

    --work:  #7F77DD;
    --sleep: #378ADD;
    --life:  #5DCAA5;

    --btn-bg: #14141A;
    --btn-fg: #FBFBFD;

    --glow: radial-gradient(60% 50% at 50% 0%, rgba(127,119,221,.18), transparent 70%),
            radial-gradient(50% 45% at 80% 30%, rgba(93,202,165,.14), transparent 70%);
    --lift: 0 1px 2px rgba(20,20,40,.05), 0 30px 70px -34px rgba(30,26,70,.35);

    --display: ui-rounded, "SF Pro Rounded", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
    --body: -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, Roboto, sans-serif;

    --gap: clamp(4.5rem, 11vh, 8rem);
    --radius: 20px;
  }
  @media (prefers-color-scheme: dark) {
    :root {
      --paper: #0A0A0E; --paper-2: #101016; --surface: #16161D;
      --ink: #F2F2F7; --muted: #9695A4; --faint: #6E6D7C;
      --line: rgba(255,255,255,.11); --line-soft: rgba(255,255,255,.055);
      --btn-bg: #F2F2F7; --btn-fg: #0A0A0E;
      --glow: radial-gradient(60% 50% at 50% 0%, rgba(127,119,221,.24), transparent 70%),
              radial-gradient(50% 45% at 80% 30%, rgba(93,202,165,.16), transparent 70%);
      --lift: 0 1px 2px rgba(0,0,0,.4), 0 40px 90px -40px rgba(0,0,0,.85);
    }
  }
  :root[data-theme="light"] {
    --paper:#FBFBFD; --paper-2:#F3F3F7; --surface:#FFF; --ink:#14141A; --muted:#6A6976; --faint:#9A99A6;
    --line:rgba(20,20,30,.09); --line-soft:rgba(20,20,30,.05);
    --btn-bg:#14141A; --btn-fg:#FBFBFD;
    --glow: radial-gradient(60% 50% at 50% 0%, rgba(127,119,221,.18), transparent 70%),
            radial-gradient(50% 45% at 80% 30%, rgba(93,202,165,.14), transparent 70%);
    --lift: 0 1px 2px rgba(20,20,40,.05), 0 30px 70px -34px rgba(30,26,70,.35);
  }
  :root[data-theme="dark"] {
    --paper:#0A0A0E; --paper-2:#101016; --surface:#16161D; --ink:#F2F2F7; --muted:#9695A4; --faint:#6E6D7C;
    --line:rgba(255,255,255,.11); --line-soft:rgba(255,255,255,.055);
    --btn-bg:#F2F2F7; --btn-fg:#0A0A0E;
    --glow: radial-gradient(60% 50% at 50% 0%, rgba(127,119,221,.24), transparent 70%),
            radial-gradient(50% 45% at 80% 30%, rgba(93,202,165,.16), transparent 70%);
    --lift: 0 1px 2px rgba(0,0,0,.4), 0 40px 90px -40px rgba(0,0,0,.85);
  }

  * { box-sizing: border-box; }
  html { scroll-behavior: smooth; scroll-padding-top: 80px; }
  body {
    margin: 0; background: var(--paper); color: var(--ink);
    font-family: var(--body); font-size: 17px; line-height: 1.6;
    -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
  }
  .wrap { max-width: 1080px; margin: 0 auto; padding: 0 24px; }
  .wrap-narrow { max-width: 820px; margin: 0 auto; padding: 0 24px; }
  a { color: inherit; }
  ::selection { background: color-mix(in srgb, var(--work) 30%, transparent); }
  a:focus-visible, button:focus-visible, summary:focus-visible {
    outline: 2px solid var(--work); outline-offset: 3px; border-radius: 8px;
  }

  /* ── shared type ─────────────────────────────── */
  .hours {                       /* the structural device: an hour range, not a number */
    font-family: var(--display); font-weight: 700; font-size: .78rem;
    letter-spacing: .18em; font-variant-numeric: tabular-nums;
    text-transform: uppercase; color: var(--faint);
    display: inline-flex; align-items: center; gap: 10px;
  }
  .hours i { width: 8px; height: 8px; border-radius: 3px; display: block; }
  h2.title {
    font-family: var(--display); font-weight: 700;
    font-size: clamp(1.75rem, 3.8vw, 2.5rem); line-height: 1.08;
    letter-spacing: -.028em; margin: 0; text-wrap: balance;
  }
  .sub { color: var(--muted); font-size: 1.08rem; margin: .9rem 0 0; text-wrap: pretty; }

  /* ── nav ─────────────────────────────────────── */
  nav {
    position: sticky; top: 0; z-index: 30;
    background: color-mix(in srgb, var(--paper) 78%, transparent);
    backdrop-filter: saturate(1.6) blur(16px);
    -webkit-backdrop-filter: saturate(1.6) blur(16px);
    border-bottom: 1px solid var(--line-soft);
  }
  .nav-in { display: flex; align-items: center; gap: 28px; height: 62px; }
  .brand { display: flex; align-items: center; gap: 10px; font-family: var(--display); font-weight: 700; font-size: 1.12rem; letter-spacing: -.01em; text-decoration: none; }
  .brand svg { width: 20px; height: 26px; display: block; }
  .nav-links { display: flex; gap: 24px; margin-left: auto; font-size: .93rem; }
  .nav-links a { color: var(--muted); text-decoration: none; transition: color .15s; }
  .nav-links a:hover { color: var(--ink); }
  .nav-pill {
    display: inline-flex; align-items: center; gap: 8px; text-decoration: none;
    font-size: .85rem; font-weight: 600; padding: 7px 13px; border-radius: 999px;
    border: 1px solid var(--line); color: var(--muted); white-space: nowrap;
  }
  .nav-pill:hover { color: var(--ink); border-color: var(--ink); }
  .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--life); box-shadow: 0 0 0 3px color-mix(in srgb, var(--life) 22%, transparent); }
  /* the day passing as you scroll */
  .progress { position: absolute; left: 0; bottom: -1px; height: 2px; width: 0; background: linear-gradient(90deg, var(--work), var(--sleep) 55%, var(--life)); }

  /* ── hero ────────────────────────────────────── */
  header { position: relative; padding: clamp(3.5rem, 9vh, 6rem) 0 0; text-align: center; overflow: hidden; }
  header::before { content: ""; position: absolute; inset: -20% 0 40%; background: var(--glow); pointer-events: none; }
  header > .wrap { position: relative; }
  .eyebrow { font-family: var(--display); font-weight: 700; font-size: .82rem; letter-spacing: .3em; text-transform: uppercase; color: var(--faint); margin: 0; }
  h1 {
    font-family: var(--display); font-weight: 700;
    font-size: clamp(2.4rem, 6.2vw, 4.3rem); line-height: 1.0;
    letter-spacing: -.038em; margin: 1.4rem auto 0; max-width: 14ch; text-wrap: balance;
  }
  h1 .em { color: transparent; background: linear-gradient(100deg, var(--work), var(--sleep) 45%, var(--life)); -webkit-background-clip: text; background-clip: text; }
  .lede { margin: 1.4rem auto 0; max-width: 50ch; font-size: 1.16rem; color: var(--muted); line-height: 1.6; text-wrap: pretty; }

  .cta-row { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; align-items: center; margin-top: 2.1rem; }
  .btn {
    display: inline-flex; align-items: center; gap: 11px;
    background: var(--btn-bg); color: var(--btn-fg);
    font-family: var(--display); font-weight: 600;
    padding: 13px 22px; border-radius: 14px; text-decoration: none;
    transition: transform .18s ease, box-shadow .18s ease;
    box-shadow: 0 10px 24px -14px rgba(0,0,0,.5);
  }
  .btn:hover { transform: translateY(-2px); box-shadow: 0 18px 34px -16px rgba(0,0,0,.55); }
  .btn svg { width: 20px; height: 20px; }
  .btn small { display: block; font-size: .6rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; opacity: .6; line-height: 1; margin-bottom: 4px; }
  .btn .lbl { font-size: 1.05rem; line-height: 1; }
  .btn-note { font-size: .85rem; color: var(--faint); }

  /* ── waitlist ────────────────────────────────── */
  .sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
  .wait { max-width: 470px; margin: 2.1rem auto 0; }
  /* honeypot: off-screen for bots, unreachable for people and screen readers */
  .wait-trap { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }
  .wait-field {
    display: flex; gap: 8px; align-items: center;
    background: var(--surface); border: 1px solid var(--line);
    border-radius: 16px; padding: 6px 6px 6px 8px;
    box-shadow: 0 1px 2px rgba(20,20,40,.04), 0 18px 40px -28px rgba(30,26,70,.5);
    transition: border-color .16s ease, box-shadow .16s ease;
  }
  .wait-field:focus-within { border-color: var(--work); box-shadow: 0 0 0 4px color-mix(in srgb, var(--work) 16%, transparent); }
  .wait-field input {
    flex: 1; min-width: 0; border: 0; outline: none; background: transparent;
    color: var(--ink); font: inherit; font-size: 1rem; padding: 11px 10px; text-align: left;
  }
  .wait-field input::placeholder { color: var(--faint); }
  .wait-field button {
    flex: none; border: 0; cursor: pointer; white-space: nowrap;
    background: var(--btn-bg); color: var(--btn-fg);
    font-family: var(--display); font-weight: 600; font-size: 1rem;
    padding: 12px 20px; border-radius: 11px;
    transition: transform .16s ease, opacity .16s ease;
  }
  .wait-field button:hover { transform: translateY(-1px); }
  .wait-note { font-size: .85rem; color: var(--faint); margin: 1rem 0 0; line-height: 1.5; }
  .wait-note svg { width: 13px; height: 13px; display: inline-block; vertical-align: -1px; margin-right: 6px; }
  .wait-note a { color: var(--faint); text-underline-offset: 3px; }
  .wait-status { font-size: .93rem; margin: .8rem 0 0; min-height: 1.4em; color: var(--muted); }
  .wait.is-loading button { opacity: .55; pointer-events: none; }
  .wait.is-error .wait-field { border-color: #E5675C; }
  .wait.is-error .wait-status { color: #E5675C; }
  .wait.is-done .wait-field, .wait.is-done .wait-note { display: none; }
  .wait.is-done .wait-status {
    color: var(--life); font-family: var(--display); font-weight: 600; font-size: 1.05rem;
    background: color-mix(in srgb, var(--life) 12%, transparent);
    border-radius: 14px; padding: 18px 20px; margin: 0;
  }

  /* the day, as a 24h stage the phone sits on */
  .stage { position: relative; margin-top: clamp(3rem, 7vh, 4.5rem); padding-bottom: clamp(3rem, 8vh, 5rem); }
  .stage-devices { display: flex; align-items: flex-end; justify-content: center; gap: 28px; }

  /* ── devices ─────────────────────────────────── */
  .iphone {
    width: 300px; flex: none; border-radius: 44px; padding: 10px;
    background: linear-gradient(160deg, #3A3A44, #17171C 40%, #2A2A33);
    box-shadow: var(--lift);
    position: relative; z-index: 2;
  }
  .iphone-screen {
    background: #0B0B10; border-radius: 35px; padding: 30px 18px 20px;
    position: relative; overflow: hidden; color: #F2F2F7; text-align: left;
  }
  .island { position: absolute; top: 10px; left: 50%; transform: translateX(-50%); width: 82px; height: 22px; background: #000; border-radius: 12px; }
  .scr-top { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 14px; }
  .scr-title { font-family: var(--display); font-weight: 700; font-size: 1.18rem; }
  .scr-date { font-size: .76rem; color: #7C7B8A; }

  .ring-wrap { position: relative; width: 176px; height: 176px; margin: 6px auto 4px; }
  .ring { width: 100%; height: 100%; transform: rotate(-90deg); }
  .ring .track { stroke: rgba(255,255,255,.07); }
  .ring .seg { stroke-linecap: round; }
  .ring-center { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; }
  .ring-score { font-family: var(--display); font-weight: 700; font-size: 2.7rem; line-height: 1; letter-spacing: -.03em; font-variant-numeric: tabular-nums; }
  .ring-of { font-size: .68rem; color: #7C7B8A; letter-spacing: .1em; text-transform: uppercase; margin-top: 5px; }
  .badge { display: block; width: fit-content; margin: 10px auto 0; font-size: .72rem; font-weight: 600; color: var(--life); background: color-mix(in srgb, var(--life) 15%, transparent); padding: 5px 12px; border-radius: 999px; }

  .blocks { margin-top: 18px; display: grid; gap: 9px; }
  .blk { display: grid; grid-template-columns: 8px 1fr auto; align-items: center; gap: 11px; font-size: .84rem; }
  .blk i { width: 8px; height: 8px; border-radius: 3px; }
  .blk .nm { color: #A5A4B2; }
  .blk .hh { font-family: var(--display); font-weight: 700; font-variant-numeric: tabular-nums; }
  .blk .meter { grid-column: 1 / -1; height: 5px; border-radius: 3px; background: rgba(255,255,255,.07); overflow: hidden; }
  .blk .meter span { display: block; height: 100%; border-radius: 3px; transform-origin: left; }
  .b-work i, .b-work .hh { color: var(--work); } .b-work i { background: var(--work); } .b-work .meter span { background: var(--work); }
  .b-sleep i, .b-sleep .hh { color: var(--sleep); } .b-sleep i { background: var(--sleep); } .b-sleep .meter span { background: var(--sleep); }
  .b-life i, .b-life .hh { color: var(--life); } .b-life i { background: var(--life); } .b-life .meter span { background: var(--life); }

  .week { margin-top: 20px; padding-top: 14px; border-top: 1px solid rgba(255,255,255,.08); }
  .week-lbl { font-size: .64rem; letter-spacing: .16em; text-transform: uppercase; color: #7C7B8A; margin-bottom: 10px; }
  .week-bars { display: flex; align-items: flex-end; gap: 6px; height: 42px; }
  .week-bars span { flex: 1; border-radius: 4px; background: rgba(255,255,255,.16); }
  .week-bars span.on { background: linear-gradient(180deg, var(--sleep), var(--life)); }

  .watch {
    width: 138px; flex: none; margin: 0 0 40px; z-index: 3; position: relative;
    border-radius: 36px; padding: 7px;
    background: linear-gradient(160deg, #4A4A55, #1B1B21 45%, #33333D);
    box-shadow: var(--lift);
  }
  .watch::after { content:""; position:absolute; right:-4px; top: 34%; width: 4px; height: 26px; border-radius: 3px; background: linear-gradient(180deg,#5A5A66,#2C2C35); }
  .watch-screen { background: #000; border-radius: 30px; padding: 16px 12px; text-align: center; color: #F2F2F7; }
  .watch-screen .wdate { font-size: .55rem; letter-spacing: .1em; text-transform: uppercase; color: #6E6D7C; }
  .watch-ring { position: relative; width: 84px; height: 84px; margin: 6px auto 4px; }
  .watch-ring svg { width: 100%; height: 100%; transform: rotate(-90deg); }
  .watch-ring .wc { position: absolute; inset: 0; display: grid; place-items: center; font-family: var(--display); font-weight: 700; font-size: 1.5rem; letter-spacing: -.02em; }
  .watch-screen .wtag { font-size: .58rem; color: var(--life); font-weight: 600; }

  /* trust strip */
  .trust { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 28px; margin-top: 2.4rem; font-size: .88rem; color: var(--faint); }
  .trust span { display: inline-flex; align-items: center; gap: 8px; }
  .trust svg { width: 14px; height: 14px; color: var(--life); }

  /* ── the idea: a 24h ruler ───────────────────── */
  section { padding: var(--gap) 0; }
  .rule-head { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 20px; margin-bottom: 2.5rem; }
  .rule-head .sub { max-width: 42ch; margin: 0; }

  .ruler { position: relative; height: 14px; display: flex; gap: 4px; }
  .ruler span { flex: 1; border-radius: 7px; transform-origin: left; }
  .ruler .r-sleep { background: var(--sleep); }
  .ruler .r-work { background: var(--work); }
  .ruler .r-life { background: var(--life); }
  .ticks { display: flex; margin-top: 10px; font-family: var(--display); font-weight: 700; font-size: .72rem; letter-spacing: .12em; color: var(--faint); font-variant-numeric: tabular-nums; }
  .ticks b { flex: 1; font-weight: 700; }
  .ticks b:last-child { flex: 0; }

  .thirds { display: grid; grid-template-columns: repeat(3, 1fr); gap: 4px; margin-top: 2.6rem; }
  .third { padding: 26px 22px 26px 0; }
  .third + .third { padding-left: 26px; border-left: 1px solid var(--line-soft); }
  .third h3 { font-family: var(--display); font-weight: 700; font-size: 1.15rem; margin: 14px 0 8px; letter-spacing: -.015em; }
  .third p { margin: 0; color: var(--muted); font-size: .98rem; line-height: 1.55; }
  .t-sleep i { background: var(--sleep); } .t-work i { background: var(--work); } .t-life i { background: var(--life); }

  /* ── feature rows ────────────────────────────── */
  .rows { display: grid; gap: clamp(4rem, 9vh, 6.5rem); }
  .row { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 6vw, 5rem); align-items: center; }
  .row.flip .row-art { order: -1; }
  .row-copy h3 { font-family: var(--display); font-weight: 700; font-size: clamp(1.5rem, 3vw, 2rem); letter-spacing: -.025em; line-height: 1.12; margin: 14px 0 0; text-wrap: balance; }
  .row-copy p { color: var(--muted); margin: .85rem 0 0; font-size: 1.04rem; }
  .row-list { list-style: none; padding: 0; margin: 1.4rem 0 0; display: grid; gap: 10px; }
  .row-list li { display: flex; gap: 10px; align-items: flex-start; font-size: .96rem; color: var(--muted); }
  .row-list svg { width: 16px; height: 16px; flex: none; margin-top: 4px; color: var(--life); }

  .card {
    background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
    padding: 26px; box-shadow: var(--lift);
  }

  /* check-in mock */
  .ci-row { display: flex; align-items: center; justify-content: space-between; padding: 15px 0; }
  .ci-row + .ci-row { border-top: 1px solid var(--line-soft); }
  .ci-name { display: flex; align-items: center; gap: 11px; font-weight: 600; font-size: .98rem; }
  .ci-name i { width: 9px; height: 9px; border-radius: 3px; display: block; }
  .ci-step { display: flex; align-items: center; gap: 4px; background: var(--paper-2); border-radius: 10px; padding: 4px; }
  .ci-step b { font-family: var(--display); font-variant-numeric: tabular-nums; font-size: .95rem; min-width: 62px; text-align: center; }
  .ci-step u { width: 30px; height: 30px; border-radius: 8px; background: var(--surface); border: 1px solid var(--line-soft); display: grid; place-items: center; text-decoration: none; color: var(--muted); font-size: .95rem; }
  .ci-auto { font-size: .72rem; font-weight: 600; color: var(--sleep); background: color-mix(in srgb, var(--sleep) 12%, transparent); padding: 4px 9px; border-radius: 999px; }
  .ci-foot { margin-top: 18px; padding-top: 16px; border-top: 1px solid var(--line-soft); display: flex; align-items: center; justify-content: space-between; }
  .ci-foot .save { background: var(--btn-bg); color: var(--btn-fg); font-family: var(--display); font-weight: 600; font-size: .9rem; padding: 9px 18px; border-radius: 10px; }
  .ci-foot .secs { font-size: .82rem; color: var(--faint); font-variant-numeric: tabular-nums; }

  /* heatmap */
  .hm-top { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 16px; }
  .hm-top b { font-family: var(--display); font-size: 1.05rem; }
  .hm-top span { font-size: .8rem; color: var(--faint); }
  .heat { display: grid; grid-template-columns: repeat(7, 1fr); gap: 6px; }
  .heat i { aspect-ratio: 1; border-radius: 7px; display: block; background: var(--paper-2); }
  .heat i.l1 { background: color-mix(in srgb, var(--life) 22%, var(--paper-2)); }
  .heat i.l2 { background: color-mix(in srgb, var(--life) 45%, var(--paper-2)); }
  .heat i.l3 { background: color-mix(in srgb, var(--life) 70%, var(--paper-2)); }
  .heat i.l4 { background: var(--life); }
  .heat i.lw { background: color-mix(in srgb, var(--work) 55%, var(--paper-2)); }
  .heat-legend { display: flex; align-items: center; gap: 7px; margin-top: 16px; font-size: .75rem; color: var(--faint); }
  .heat-legend i { width: 11px; height: 11px; border-radius: 3px; display: block; }
  .insight { margin-top: 18px; padding-top: 16px; border-top: 1px solid var(--line-soft); font-size: .92rem; color: var(--muted); }
  .insight b { color: var(--ink); font-weight: 600; }

  /* widgets */
  .wgrid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
  .wg { background: #0B0B10; border-radius: 18px; padding: 16px; color: #F2F2F7; aspect-ratio: 1; display: flex; flex-direction: column; justify-content: space-between; }
  .wg .wt { font-size: .62rem; letter-spacing: .12em; text-transform: uppercase; color: #6E6D7C; }
  .wg .wv { font-family: var(--display); font-weight: 700; font-size: 2rem; letter-spacing: -.03em; font-variant-numeric: tabular-nums; }
  .wg .wbars { display: flex; gap: 8px; align-items: flex-end; height: 70px; }
  .wg .wbars span { flex: 1; border-radius: 5px; }
  .wg-lock { grid-column: 1 / -1; aspect-ratio: auto; flex-direction: row; align-items: center; gap: 14px; padding: 14px 18px; }
  .wg-lock .lk-ring { width: 40px; height: 40px; flex: none; }
  .wg-lock .lk-txt { font-size: .82rem; color: #A5A4B2; }
  .wg-lock .lk-txt b { display: block; font-family: var(--display); color: #F2F2F7; font-size: .95rem; }

  /* ── score explainer ─────────────────────────── */
  .score-card { display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; padding: clamp(28px, 4vw, 44px); }
  .formula { font-family: ui-monospace, SFMono-Regular, "SF Mono", Menlo, monospace; font-size: .92rem; background: var(--paper-2); border: 1px solid var(--line-soft); border-radius: 12px; padding: 16px 18px; line-height: 1.7; color: var(--muted); }
  .formula b { color: var(--ink); font-weight: 600; }
  .scale { margin-top: 22px; display: grid; gap: 12px; }
  .scale-row { display: grid; grid-template-columns: 54px 1fr; align-items: center; gap: 14px; font-size: .9rem; color: var(--muted); }
  .scale-row b { font-family: var(--display); font-variant-numeric: tabular-nums; color: var(--ink); }
  .scale-bar { height: 8px; border-radius: 4px; background: var(--paper-2); overflow: hidden; }
  .scale-bar span { display: block; height: 100%; border-radius: 4px; }

  /* ── pricing ─────────────────────────────────── */
  .plans { display: grid; grid-template-columns: 1fr 1.15fr; gap: 20px; align-items: start; }
  .plan { border: 1px solid var(--line); border-radius: var(--radius); padding: 30px 28px; background: var(--surface); }
  .plan.pro { border-color: transparent; box-shadow: var(--lift); position: relative; background:
      linear-gradient(var(--surface), var(--surface)) padding-box,
      linear-gradient(140deg, var(--work), var(--sleep) 50%, var(--life)) border-box;
      border: 1px solid transparent; }
  .plan-name { font-family: var(--display); font-weight: 700; font-size: 1.25rem; letter-spacing: -.01em; }
  .plan-price { font-family: var(--display); font-weight: 700; font-size: 2.4rem; letter-spacing: -.03em; margin: 10px 0 2px; font-variant-numeric: tabular-nums; }
  .plan-price small { font-size: .95rem; font-weight: 500; color: var(--faint); letter-spacing: 0; }
  .plan-note { color: var(--faint); font-size: .86rem; margin: 0 0 20px; }
  .plan ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 11px; }
  .plan li { display: flex; gap: 10px; font-size: .95rem; color: var(--muted); }
  .plan li svg { width: 16px; height: 16px; flex: none; margin-top: 4px; }
  .plan.free li svg { color: var(--faint); }
  .plan.pro li svg { color: var(--work); }
  .tiers { display: flex; gap: 8px; margin: 20px 0 4px; }
  .tier { flex: 1; text-align: center; border: 1px solid var(--line); border-radius: 12px; padding: 10px 6px; font-size: .8rem; color: var(--muted); }
  .tier b { display: block; font-family: var(--display); color: var(--ink); font-size: .98rem; font-variant-numeric: tabular-nums; margin-bottom: 2px; }
  .tier.best { border-color: var(--work); background: color-mix(in srgb, var(--work) 8%, transparent); }
  .tier.best em { display: block; font-style: normal; font-size: .62rem; letter-spacing: .1em; text-transform: uppercase; color: var(--work); font-weight: 700; margin-top: 4px; }
  .plan-fine { font-size: .78rem; color: var(--faint); margin: 14px 0 0; }

  /* ── faq ─────────────────────────────────────── */
  .faq { border-top: 1px solid var(--line-soft); }
  details { border-bottom: 1px solid var(--line-soft); }
  summary { cursor: pointer; list-style: none; padding: 22px 0; display: flex; align-items: center; justify-content: space-between; gap: 20px; font-family: var(--display); font-weight: 600; font-size: 1.05rem; }
  summary::-webkit-details-marker { display: none; }
  summary::after { content: "+"; color: var(--faint); font-size: 1.4rem; line-height: 1; transition: transform .2s ease; }
  details[open] summary::after { transform: rotate(45deg); }
  details p { margin: 0 0 22px; color: var(--muted); max-width: 62ch; font-size: .98rem; }

  /* ── closing + footer ────────────────────────── */
  .closing { text-align: center; position: relative; overflow: hidden; }
  .closing::before { content:""; position: absolute; inset: 0 0 -30%; background: var(--glow); pointer-events: none; }
  .closing > .wrap { position: relative; }
  .closing .mark-sm { width: 46px; height: 60px; margin: 0 auto 1.6rem; display: block; }
  .closing h2 { font-family: var(--display); font-weight: 700; font-size: clamp(2rem, 5vw, 3.2rem); letter-spacing: -.035em; margin: 0 auto; max-width: 14ch; line-height: 1.05; text-wrap: balance; }
  .closing p { color: var(--muted); margin: 1rem auto 0; max-width: 44ch; }

  footer { border-top: 1px solid var(--line-soft); padding: 44px 0 56px; }
  .foot-in { display: flex; flex-wrap: wrap; gap: 24px 40px; align-items: center; justify-content: space-between; }
  .foot-brand { display: flex; align-items: center; gap: 10px; font-family: var(--display); font-weight: 700; }
  .foot-brand svg { width: 18px; height: 23px; }
  .foot-links { display: flex; flex-wrap: wrap; gap: 26px; font-size: .92rem; }
  .foot-links a { color: var(--muted); text-decoration: none; }
  .foot-links a:hover { color: var(--ink); }
  .foot-fine { width: 100%; margin-top: 26px; color: var(--faint); font-size: .82rem; display: flex; align-items: center; gap: 10px; }
  .foot-dots { display: inline-flex; gap: 5px; }
  .foot-dots i { width: 7px; height: 7px; border-radius: 50%; display: block; }

  /* ── motion ──────────────────────────────────── */
  .rise { opacity: 0; transform: translateY(16px); }
  .anim .rise { animation: rise .75s cubic-bezier(.2,.7,.2,1) forwards; }
  .anim .d1 { animation-delay: .05s; } .anim .d2 { animation-delay: .16s; }
  .anim .d3 { animation-delay: .27s; } .anim .d4 { animation-delay: .38s; }
  .anim .d5 { animation-delay: .5s; }
  @keyframes rise { to { opacity: 1; transform: none; } }

  .ring .seg { stroke-dasharray: 0 400; }
  .anim .ring .seg { animation: arc 1.1s cubic-bezier(.3,.8,.3,1) forwards; }
  .anim .ring .s1 { animation-delay: .6s; }
  .anim .ring .s2 { animation-delay: .78s; }
  .anim .ring .s3 { animation-delay: .96s; }
  @keyframes arc { to { stroke-dasharray: var(--len) 400; } }

  /* gradient ring — conic blend that matches the app (colors melt, no hard segments) */
  .gring {
    position: absolute; inset: 0; border-radius: 50%; --rw: 18px;
    background:
      conic-gradient(from 30deg,
        var(--work) 0deg, var(--sleep) 150deg, var(--life) 300deg,
        transparent 300deg 360deg),
      rgba(255,255,255,.07);
    -webkit-mask: radial-gradient(farthest-side, #0000 calc(100% - var(--rw)), #000 calc(100% - var(--rw)));
            mask: radial-gradient(farthest-side, #0000 calc(100% - var(--rw)), #000 calc(100% - var(--rw)));
  }
  .gring-main  { --rw: 18px; }
  .gring-watch { --rw: 10px; }
  .anim .gring { animation: gringIn .85s cubic-bezier(.2,.7,.2,1); }
  .anim .gring-main  { animation-delay: .5s; }
  .anim .gring-watch { animation-delay: .62s; }
  @keyframes gringIn { from { opacity: 0; transform: scale(.9); } to { opacity: 1; transform: scale(1); } }

  .blk .meter span { transform: scaleX(0); }
  .anim .blk .meter span { animation: grow .8s cubic-bezier(.2,.8,.2,1) forwards; }
  .anim .b-work .meter span { animation-delay: .9s; }
  .anim .b-sleep .meter span { animation-delay: 1s; }
  .anim .b-life .meter span { animation-delay: 1.1s; }
  @keyframes grow { to { transform: scaleX(1); } }

  .ruler span { transform: scaleX(0); }
  .seen .ruler span { animation: grow .7s cubic-bezier(.2,.8,.2,1) forwards; }
  .seen .ruler .r-sleep { animation-delay: 0s; }
  .seen .ruler .r-work  { animation-delay: .12s; }
  .seen .ruler .r-life  { animation-delay: .24s; }

  .reveal { opacity: 0; transform: translateY(20px); transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1); }
  .reveal.seen { opacity: 1; transform: none; }

  @media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    .rise, .reveal, .ruler span, .blk .meter span { opacity: 1 !important; transform: none !important; animation: none !important; transition: none !important; }
    .ring .seg { stroke-dasharray: var(--len) 400 !important; animation: none !important; }
    .gring { animation: none !important; }
  }

  /* ── responsive ──────────────────────────────── */
  @media (max-width: 880px) {
    .row, .row.flip { grid-template-columns: 1fr; }
    .row.flip .row-art { order: 0; }
    .score-card { grid-template-columns: 1fr; }
    .plans { grid-template-columns: 1fr; }
    .thirds { grid-template-columns: 1fr; }
    .third { padding: 22px 0; }
    .third + .third { padding-left: 0; border-left: 0; border-top: 1px solid var(--line-soft); }
    .nav-links { display: none; }
  }
  @media (max-width: 620px) {
    body { font-size: 16px; }
    .stage-devices { flex-direction: column; align-items: center; gap: 24px; }
    .watch { margin: 0; }
    .iphone { width: min(300px, 88vw); }
    .foot-in { flex-direction: column; align-items: flex-start; }
    .ticks { font-size: .62rem; }
  }

/* ── prose pages (privacy, support) ──────────── */
.wrap.narrow { max-width: 760px; }
.nav-cta { font-size: .93rem; font-weight: 600; color: var(--muted); text-decoration: none; margin-left: auto; }
.nav-cta:hover { color: var(--ink); }

.prose { padding: clamp(3.5rem, 9vh, 6rem) 0 clamp(3.5rem, 7vh, 5rem); }
.prose .kicker {
  font-family: var(--display); font-weight: 700; font-size: .78rem;
  letter-spacing: .18em; text-transform: uppercase; color: var(--faint); margin: 0;
}
.prose h1 {
  font-family: var(--display); font-weight: 700;
  font-size: clamp(2rem, 5vw, 3rem); line-height: 1.05; letter-spacing: -.035em;
  margin: 1rem 0 0; max-width: none; text-align: left;
}
.prose .updated { color: var(--faint); font-size: .9rem; margin: .7rem 0 0; }
.prose h2 {
  font-family: var(--display); font-weight: 700; font-size: 1.4rem;
  letter-spacing: -.02em; margin: 2.8rem 0 .6rem; text-wrap: balance;
}
.prose h3 {
  font-family: var(--display); font-weight: 600; font-size: 1.08rem;
  letter-spacing: -.01em; margin: 2rem 0 .4rem;
}
.prose p, .prose li { color: var(--ink); font-size: 1.04rem; line-height: 1.68; max-width: 68ch; }
.prose p { margin: .7rem 0; }
.prose ul { padding-left: 1.2rem; margin: .7rem 0; }
.prose li { margin: .4rem 0; }
.prose a { color: var(--sleep); text-decoration: underline; text-underline-offset: 3px; }
.prose strong { font-weight: 650; }

.callout {
  border: 1px solid var(--line); background: var(--surface);
  border-radius: var(--radius); padding: 22px 24px; margin: 1.8rem 0;
  box-shadow: var(--lift);
}
.callout p { margin: 0; }

.foot-brand { text-decoration: none; }
