/* ---------- tokens ---------- */
/* Instrument Serif, self-hosted (SIL Open Font License, see assets/fonts/OFL.txt): no request leaves for a font CDN. */
@font-face { font-family: "Instrument Serif"; font-style: normal; font-weight: 400; font-display: swap; src: url("assets/fonts/InstrumentSerif-Regular.woff2") format("woff2"); }
@font-face { font-family: "Instrument Serif"; font-style: italic; font-weight: 400; font-display: swap; src: url("assets/fonts/InstrumentSerif-Italic.woff2") format("woff2"); }
:root {
  --bg: #0b0b0d; --bg2: #121216; --card: #17171c; --card2: #1c1c22; --line: rgba(255,255,255,.08); --line2: rgba(255,255,255,.14);
  --text: #f2f2f4; --dim: rgba(255,255,255,.62); --faint: rgba(255,255,255,.42);
  --green: #33c773; --accent: #4d9cff; --r: 16px; --r-lg: 22px;
  --s1: 8px; --s2: 12px; --s3: 16px; --s4: 24px; --s5: 32px; --s6: 48px; --s7: 72px; --s8: 104px;
  --maxw: 1040px; --shadow: 0 30px 80px rgba(0,0,0,.45);
  color-scheme: dark;
}
@media (prefers-color-scheme: light) {
  :root { --bg: #f5f5f7; --bg2: #ffffff; --card: #ffffff; --card2: #f7f7f9; --line: rgba(0,0,0,.08); --line2: rgba(0,0,0,.14); --text: #111114; --dim: rgba(0,0,0,.6); --faint: rgba(0,0,0,.42); --green: #1f9d55; --shadow: 0 30px 80px rgba(0,0,0,.12); color-scheme: light; }
}
* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
html, body { overflow-x: clip; }
body { margin: 0; background: var(--bg); color: var(--text);
  font: 16px/1.55 -apple-system, BlinkMacSystemFont, "SF Pro Text", "Helvetica Neue", Helvetica, Arial, sans-serif; -webkit-font-smoothing: antialiased; }
a { color: var(--accent); text-decoration: none; } a:hover { text-decoration: underline; }
h1, h2, h3, h4 { margin: 0; letter-spacing: -0.015em; }
/* Display type: an editorial serif, regular weight, with an italic for the payoff. */
h1, .section > h2, .price-left h2, .final h2, .split h2 { font-family: "Instrument Serif", "Iowan Old Style", "Times New Roman", serif; font-weight: 400; letter-spacing: -0.015em; -webkit-font-smoothing: antialiased; }
h1 em, h2 em { font-style: italic; color: var(--text); }
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--s4); }
.glow { position: fixed; inset: -20% 0 auto 0; height: 70vh; pointer-events: none; z-index: 0;
  background: radial-gradient(60% 60% at 50% 0%, rgba(120,140,190,.18), transparent 70%); animation: drift 24s ease-in-out infinite alternate; }
@media (prefers-color-scheme: light) { .glow { background: radial-gradient(60% 60% at 50% 0%, rgba(90,120,200,.14), transparent 70%); } }
@keyframes drift { from { transform: translateX(-4%) scale(1); } to { transform: translateX(4%) scale(1.06); } }
main, footer { position: relative; z-index: 1; }

/* ---------- nav ---------- */
header.nav { position: sticky; top: 0; z-index: 10; display: flex; align-items: center; justify-content: space-between; height: 60px;
  backdrop-filter: saturate(160%) blur(16px); -webkit-backdrop-filter: saturate(160%) blur(16px);
  background: color-mix(in srgb, var(--bg) 72%, transparent); border-bottom: 1px solid transparent; transition: border-color .3s; }
header.nav.scrolled { border-bottom-color: var(--line); }
.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 600; font-size: 15px; color: var(--text); } .brand:hover { text-decoration: none; }
.brand img { width: 28px; height: 28px; border-radius: 7px; display: block; }
nav { display: flex; align-items: center; gap: 22px; height: 100%; }
nav a { color: var(--dim); font-size: 14px; line-height: 1; white-space: nowrap; transition: color .2s; } nav a:hover { color: var(--text); text-decoration: none; }
nav .navcta { color: var(--text); background: var(--card); border: 1px solid var(--line2); height: 34px; padding: 0 14px; border-radius: 999px; display: inline-flex; align-items: center; font-weight: 600; transition: background .2s, transform .2s; }
nav .navcta:hover { background: var(--card2); transform: translateY(-1px); }

/* ---------- type ---------- */
.eyebrow { color: var(--faint); font-size: 12px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; margin: 0 0 var(--s2); }
h1 { font-size: clamp(56px, 9vw, 104px); line-height: 0.94; margin: 0 0 var(--s3); }
h2 { font-size: clamp(26px, 3.4vw, 36px); line-height: 1.12; font-weight: 700; margin: 0 0 var(--s2); }
.section > h2, .price-left h2, .final h2, .split h2 { font-size: clamp(36px, 4.8vw, 56px); line-height: 1.02; }
h3 { font-size: 17px; font-weight: 600; }
.lede { color: var(--dim); font-size: clamp(17px, 2vw, 20px); max-width: 600px; margin: 0 auto var(--s4); line-height: 1.5; }
.lede-left { color: var(--dim); font-size: 17px; max-width: 640px; margin: 0 0 var(--s4); }
.muted { color: var(--dim); max-width: 680px; }
.sub { color: var(--faint); font-size: 13px; margin: var(--s2) 0 0; }

/* ---------- hero ---------- */
.hero { text-align: center; min-height: min(78vh, 720px); display: flex; flex-direction: column; align-items: center; justify-content: center; padding: var(--s5) 0 var(--s3); }
.cue { display: inline-flex; align-items: center; justify-content: center; width: 36px; height: 36px; border-radius: 50%; border: 1px solid var(--line2); color: var(--dim); margin-top: 26px; transition: color .2s, border-color .2s, transform .3s; }
.cue:hover { color: var(--text); border-color: var(--text); transform: translateY(2px); text-decoration: none; }
/* The ticker in the hero: one straight band at the icon's height. Speech (bars) flows in from
   the left, the app sits in the middle, the typed sentence streams out to the right. */
.ticker { position: relative; contain: layout paint; width: 100vw; margin: 0 0 var(--s5) calc(50% - 50vw); height: 96px; pointer-events: none; }
.tk-in, .tk-out { position: absolute; top: 0; height: 100%; }
.tk-in { left: 0; width: calc(50% - 34px); -webkit-mask-image: linear-gradient(90deg, transparent, #000 22%, #000); mask-image: linear-gradient(90deg, transparent, #000 22%, #000); }
.tk-out { left: calc(50% + 34px); right: 0; overflow: hidden; display: flex; align-items: center; -webkit-mask-image: linear-gradient(90deg, #000, #000 70%, transparent); mask-image: linear-gradient(90deg, #000, #000 70%, transparent); }
.tk-icon { position: absolute; left: 50%; top: 50%; width: 64px; height: 64px; transform: translate(-50%, -50%); z-index: 2; border-radius: 15px;
  box-shadow: 0 12px 34px rgba(0,0,0,.45), 0 0 0 1px rgba(255,255,255,.08); }
@media (prefers-color-scheme: light) { .tk-icon { box-shadow: 0 10px 28px rgba(0,0,0,.22), 0 0 0 1px rgba(0,0,0,.06); } }
.track { display: flex; white-space: nowrap; animation: tape 60s linear infinite; }
/* Anything scrolled out of view stops animating: the page shouldn't tax the GPU for what nobody sees. */
.offscreen, .offscreen * { animation-play-state: paused !important; }
.track > span { padding-right: 1.6em; }
.tk-out .track { color: var(--text); font-size: 17px; font-weight: 400; letter-spacing: -0.005em; padding-left: 14px; }
@keyframes tape { from { transform: translateX(-50%); } to { transform: translateX(0); } }
@media (prefers-reduced-motion: reduce) { .track { animation: none; } }
.facts { padding: 0 0 var(--s5); }
.hero .sub { margin-top: 18px; line-height: 1.7; } .hero .sub2 { text-decoration: underline; text-decoration-color: var(--line2); text-underline-offset: 3px; }
:root { --ribbon-bg: #f4f4f6; --ribbon-fg: #111114; }
@media (prefers-color-scheme: light) { :root { --ribbon-bg: #111114; --ribbon-fg: #f4f4f6; } }
.eyebrow.tag { display: inline-block; background: var(--ribbon-bg); color: var(--ribbon-fg); border-radius: 999px; padding: 6px 12px; font-size: 11px; letter-spacing: .1em; margin-bottom: var(--s3); }
.pill { display: inline-flex; align-items: center; justify-content: center; height: 40px; padding: 0 14px; border-radius: 999px; background: #0a0a0a;
  border: 0.6px solid rgba(255,255,255,.14); box-shadow: 0 6px 16px rgba(0,0,0,.28), 0 1px 2px rgba(0,0,0,.16); transition: opacity .4s ease, transform .45s cubic-bezier(.2,.8,.2,1); }
.caret { display: inline-block; width: 1.5px; height: 17px; background: var(--accent); vertical-align: -3px; margin-left: 1px; animation: blink 1s steps(2) infinite; }
@keyframes blink { 50% { opacity: 0; } }
.cta-row { display: flex; gap: 14px; justify-content: center; align-items: center; flex-wrap: wrap; }
.cta { display: inline-flex; align-items: center; gap: 8px; background: var(--text); color: var(--bg); height: 46px; padding: 0 22px; border-radius: 999px; font-weight: 600; font-size: 15px;
  transition: transform .2s ease, box-shadow .3s ease; box-shadow: 0 8px 30px rgba(255,255,255,.08); }
.cta:hover { text-decoration: none; transform: translateY(-1px); box-shadow: 0 12px 40px rgba(255,255,255,.16); }
@media (prefers-color-scheme: light) { .cta { box-shadow: 0 8px 30px rgba(0,0,0,.12); } .cta:hover { box-shadow: 0 12px 40px rgba(0,0,0,.2); } }
.ghost { color: var(--dim); font-weight: 500; font-size: 15px; } .ghost:hover { color: var(--text); text-decoration: none; }
.strip { list-style: none; margin: var(--s6) auto 0; padding: 0; display: flex; justify-content: center; flex-wrap: wrap; gap: 6px 0; max-width: 860px; }
.strip li { display: inline-flex; align-items: baseline; gap: 6px; padding: 0 22px; border-left: 1px solid var(--line); white-space: nowrap; }
.strip li:first-child { border-left: 0; }
.strip b { font-size: 15px; font-weight: 600; color: var(--text); font-variant-numeric: tabular-nums; letter-spacing: -0.01em; } .strip span { color: var(--dim); font-size: 14px; }
/* The two numbers get colour; the rest stay quiet. */
:root { --c-blue: #5aa4ff; --c-green: #5fd68a; --c-purple: #b48fff; --c-pink: #ff85b6; --tk-bar: #7ea8ec; }
@media (prefers-color-scheme: light) { :root { --c-blue: #1f6fe0; --c-green: #1f9d55; --c-purple: #7a4fd6; --c-pink: #d8397a; --tk-bar: #94b9f6; } }
.strip li:nth-child(1) b { color: var(--c-blue); } .strip li:nth-child(2) b { color: var(--c-green); }
.netglyph { align-self: center; margin-right: 2px; width: 18px; height: 14px; fill: none; stroke: var(--c-green); stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; opacity: .9; }

/* ---------- sections ---------- */
.section { padding: var(--s7) 0 0; scroll-margin-top: 72px; }
::selection { background: color-mix(in srgb, var(--text) 18%, transparent); }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 6px; }
.section:last-of-type { padding-bottom: var(--s7); }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s2); margin-top: var(--s4); }
.step { background: var(--card); border: 1px solid var(--line); border-radius: var(--r); padding: 22px; }
.step .num { width: 28px; height: 28px; border-radius: 999px; background: var(--text); color: var(--bg); font-weight: 700; font-size: 14px; display: grid; place-items: center; margin-bottom: 12px; }
.step h3 { margin-bottom: 6px; } .step p { margin: 0; color: var(--dim); font-size: 14.5px; }

/* ---------- mock window ---------- */
/* Screenshot stage: the window sits in a lit frame and runs off the bottom edge. */
.stage { position: relative; margin-top: var(--s4); padding: 56px 56px 0; border-radius: 24px; border: 1px solid var(--line); overflow: hidden;
  background: radial-gradient(70% 80% at 50% 0%, rgba(120,140,210,.18), transparent 72%), var(--card); }
.stage::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 90px; background: linear-gradient(transparent, color-mix(in srgb, var(--card) 85%, transparent)); pointer-events: none; }
.stage .window { max-width: 960px; margin: 0 auto -36px; border-bottom-left-radius: 0; border-bottom-right-radius: 0; box-shadow: 0 40px 100px rgba(0,0,0,.5), 0 0 0 1px rgba(255,255,255,.05) inset; }
.window { border-radius: 14px; overflow: hidden; border: 1px solid var(--line); background: var(--bg2); box-shadow: var(--shadow), 0 0 0 1px rgba(255,255,255,.04) inset; font-size: 12px; }
.titlebar { display: flex; align-items: center; gap: 10px; padding: 10px 12px; border-bottom: 1px solid var(--line); }
.dots i { display: inline-block; width: 11px; height: 11px; border-radius: 50%; margin-right: 6px; background: #ff5f57; } .dots i:nth-child(2) { background: #febc2e; } .dots i:nth-child(3) { background: #28c840; }
.titlebar .title { font-weight: 600; margin-left: 150px; color: var(--text); }
.seg-range { margin-left: auto; display: inline-flex; gap: 2px; padding: 2px; border-radius: 7px; background: rgba(127,127,127,.14); font-size: 11px; } .seg-range i { font-style: normal; color: var(--dim); padding: 3px 9px; border-radius: 5px; } .seg-range i.on { background: var(--bg2); color: var(--text); font-weight: 600; box-shadow: 0 1px 2px rgba(0,0,0,.3); }
.window .body { display: grid; grid-template-columns: 180px 1fr; min-height: 420px; }
.side { border-right: 1px solid var(--line); padding: 12px 10px; }
.side-brand { display: flex; align-items: center; gap: 8px; padding: 6px 6px 14px; } .side-brand img { width: 26px; height: 26px; border-radius: 7px; }
.side-brand b { display: block; font-size: 12px; color: var(--text); } .side-brand small { color: var(--faint); font-size: 10px; }
.side .row { padding: 6px 10px; border-radius: 7px; color: var(--dim); margin: 2px 0; } .side .row.sel { background: rgba(127,127,127,.18); color: var(--text); font-weight: 600; }
.content { padding: 14px; display: flex; flex-direction: column; gap: 10px; }
.hero-card, .tile, .item { background: var(--card); border: 1px solid var(--line); border-radius: 11px; }
.hero-card { padding: 14px 16px; } .hero-card small { color: var(--dim); font-weight: 600; } .hero-card small.faint { color: var(--faint); font-weight: 400; }
.hero-card .fun { margin: 2px 0 4px; font-size: 12.5px; color: var(--dim); }
.saved { display: flex; align-items: baseline; gap: 10px; margin: 4px 0; } .saved b { font-size: 30px; color: var(--green); font-variant-numeric: tabular-nums; letter-spacing: -0.02em; } .saved span { color: var(--dim); }
.tiles { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; } .tile { padding: 12px; } .tile b { display: block; font-size: 20px; color: var(--text); font-variant-numeric: tabular-nums; } .tile span { display: block; color: var(--dim); font-weight: 600; } .tile small { color: var(--faint); }
.list { display: flex; flex-direction: column; gap: 6px; } .item { display: flex; gap: 10px; padding: 10px 12px; align-items: flex-start; transition: opacity .8s ease, transform .8s cubic-bezier(.2,.8,.2,1); }
.item.arriving { opacity: 0; transform: translateY(-8px); } .item p { margin: 0 0 3px; color: var(--text); font-size: 12.5px; } .item small { color: var(--faint); }
.app { width: 22px; height: 22px; border-radius: 6px; display: grid; place-items: center; font-size: 12px; color: #fff; flex: none; } .a1 { background: #2f80ed; } .a2 { background: #6f42c1; } .a3 { background: #f2b01e; color: #222; }

/* ---------- bento ---------- */
.bento { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--s2); }
.tile-b { background: var(--card); border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; display: flex; flex-direction: column; grid-column: span 2; min-height: 300px;
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease; }
.tile-b:hover { transform: translateY(-3px); border-color: var(--line2); box-shadow: var(--shadow); }
.tile-b { transition: transform .35s cubic-bezier(.2,.8,.2,1), border-color .35s ease; } .tile-b:hover { transform: translateY(-2px); border-color: var(--line2); }
.tile-b.span2 { grid-column: span 2; } .tile-b.small { grid-column: span 1; min-height: 0; padding: 20px; }
.tile-b.small h3 { margin: 0 0 6px; font-size: 15px; } .tile-b.small p { margin: 0; color: var(--dim); font-size: 13.5px; line-height: 1.45; }
.ic svg { width: 17px; height: 17px; fill: none; stroke: var(--text); stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.ic { width: 32px; height: 32px; border-radius: 9px; display: grid; place-items: center; background: linear-gradient(180deg, rgba(255,255,255,.12), rgba(255,255,255,.04)); border: 1px solid var(--line); font-weight: 700; font-size: 13px; margin-bottom: 12px; }
.scene-cap { padding: 14px 18px 18px; margin-top: auto; } .scene-cap h3 { margin-bottom: 4px; font-size: 15.5px; } .scene-cap p { margin: 0; color: var(--dim); font-size: 13.5px; line-height: 1.45; }
.swatches { display: flex; gap: 8px; margin-top: 12px; } .swatches span { width: 14px; height: 14px; border-radius: 50%; background: var(--c, #fff); border: 1px solid var(--line); opacity: .5; transition: opacity .4s, transform .4s; }
.swatches span.on { opacity: 1; transform: scale(1.15); box-shadow: 0 0 0 2px var(--card), 0 0 0 3.5px var(--c, #fff); }
/* scene: positions */
.mini-screen { position: relative; margin: 16px 16px 0; height: 200px; border-radius: 10px; overflow: hidden; border: 1px solid var(--line); background: radial-gradient(120% 90% at 30% 20%, #2a2f4a, #0d0f16 60%, #06070a); }
.mini-menubar { height: 7%; background: rgba(255,255,255,.08); } .mini-dock { position: absolute; left: 50%; bottom: 4%; transform: translateX(-50%); width: 40%; height: 9%; border-radius: 6px; background: rgba(255,255,255,.10); }
.mini-pill { position: absolute; display: flex; align-items: center; gap: 1.5px; height: 12%; padding: 0 4%; border-radius: 999px; background: #0a0a0a; border: 0.5px solid rgba(255,255,255,.16);
  box-shadow: 0 4px 10px rgba(0,0,0,.4); transition: left .9s cubic-bezier(.2,.8,.2,1), top .9s cubic-bezier(.2,.8,.2,1), transform .9s cubic-bezier(.2,.8,.2,1), background .6s, border-color .6s; --accent: #fff; }
.mini-pill.glass { background: rgba(60,60,70,.55); border-color: rgba(255,255,255,.28); } .mini-pill.dark { background: rgba(20,20,22,.9); }
.mini-pill i { width: 1.5px; border-radius: 1px; background: var(--accent); height: 30%; animation: minibar 1.1s ease-in-out infinite alternate; }
.mini-pill i:nth-child(2) { animation-delay: -.2s } .mini-pill i:nth-child(3) { animation-delay: -.4s } .mini-pill i:nth-child(4) { animation-delay: -.6s } .mini-pill i:nth-child(5) { animation-delay: -.8s } .mini-pill i:nth-child(6) { animation-delay: -.3s } .mini-pill i:nth-child(7) { animation-delay: -.7s } .mini-pill i:nth-child(8) { animation-delay: -.1s } .mini-pill i:nth-child(9) { animation-delay: -.5s }
@keyframes minibar { from { height: 25%; opacity: .7 } to { height: 70%; opacity: 1 } }
/* scene: drag */
.drag-stage { position: relative; margin: 16px 16px 0; height: 200px; }
.chat { position: absolute; right: 0; top: 0; width: 66%; height: 100%; border-radius: 12px; border: 1px solid var(--line); background: var(--bg2); padding: 10px; display: flex; flex-direction: column; gap: 8px; font-size: 12px; }
.bubble { max-width: 88%; padding: 7px 10px; border-radius: 12px; line-height: 1.35; } .bubble.them { background: rgba(127,127,127,.2); align-self: flex-start; color: var(--text); }
.bubble.me { background: #2f80ed; color: #fff; align-self: flex-end; display: flex; align-items: center; gap: 8px; opacity: 0; transform: translateY(6px) scale(.96); transition: opacity .5s, transform .5s; } .bubble.me.show { opacity: 1; transform: none; }
.vwave { display: flex; gap: 2px; align-items: center; height: 14px; } .vwave i { width: 2px; border-radius: 1px; background: rgba(255,255,255,.9); }
.vwave i:nth-child(odd) { height: 60% } .vwave i:nth-child(even) { height: 100% } .vwave i:nth-child(3n) { height: 40% }
.chat-input { margin-top: auto; border: 1px solid var(--line); border-radius: 999px; padding: 6px 10px; color: var(--faint); transition: border-color .3s, box-shadow .3s; } .chat-input.hot { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(77,156,255,.25); }
.dpill { position: absolute; left: 0; bottom: 6px; height: 34px; padding: 0 12px; border-radius: 999px; background: #0a0a0a; border: .6px solid rgba(255,255,255,.16); display: flex; align-items: center; box-shadow: 0 6px 16px rgba(0,0,0,.3); }
.chip { display: inline-block; background: rgba(255,255,255,.14); color: #fff; font-size: 11px; font-weight: 600; padding: 4px 9px; border-radius: 999px; transition: transform 1.4s cubic-bezier(.4,0,.2,1), opacity .4s, background .3s; will-change: transform; }
.chip.lift { background: #fff; color: #000; } .chip.gone { opacity: 0; transition: opacity .25s; }
/* scene: style */
.style-wrap { padding: 16px 16px 0; } .mini-form { border: 1px solid var(--line); border-radius: 12px; background: var(--bg2); padding: 10px 12px; font-size: 12px; }
.mrow { display: flex; align-items: center; justify-content: space-between; padding: 7px 0; border-bottom: 1px solid var(--line); color: var(--text); }
.seg { display: inline-flex; background: rgba(127,127,127,.18); border-radius: 7px; padding: 2px; } .seg b { font-weight: 500; padding: 3px 9px; border-radius: 5px; color: var(--dim); transition: background .35s, color .35s; } .seg b.sel { background: var(--accent); color: #fff; }
.mprev { padding-top: 10px; } .mprev small { color: var(--faint); } .mprev p { margin: 4px 0 0; color: var(--text); min-height: 34px; transition: opacity .3s; }
/* scene: dictionary */
.dict-stage { margin: 16px 16px 0; height: 200px; display: flex; flex-direction: column; justify-content: center; gap: 14px; }
.dict-chip { align-self: flex-start; font-size: 12px; color: var(--dim); border: 1px solid var(--line); border-radius: 999px; padding: 5px 10px; background: var(--bg2); } .dict-chip b { color: var(--text); }
.dict-chip.pulse { animation: pulse .6s ease; } @keyframes pulse { 50% { transform: scale(1.06); border-color: var(--green); } }
.dict-field { border: 1px solid var(--line); border-radius: 12px; background: var(--bg2); padding: 12px 14px; font-size: 14px; color: var(--text); min-height: 48px; }
.dict-field mark { background: color-mix(in srgb, var(--green) 25%, transparent); color: var(--text); border-radius: 4px; padding: 0 2px; }

/* ---------- you say / you get ---------- */
.pair { display: grid; grid-template-columns: 1fr auto 1fr; gap: var(--s2); align-items: stretch; margin-top: var(--s4); }
.say, .get { background: var(--card); border: 1px solid var(--line); border-radius: var(--r); padding: 18px 20px; min-height: 120px; }
.say small, .get small { display: block; color: var(--faint); font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 8px; }
.say p { color: var(--dim); margin: 0; font-style: italic; font-weight: 300; line-height: 1.7; } .get p { color: var(--text); margin: 0; font-weight: 500; white-space: pre-line; }
.get { border-color: color-mix(in srgb, var(--green) 35%, var(--line)); box-shadow: 0 0 0 1px color-mix(in srgb, var(--green) 12%, transparent) inset; }
.arrow { align-self: center; color: var(--faint); font-size: 22px; padding: 0 4px; }
.say p, .get p { transition: opacity .35s ease, transform .35s ease; } .pair.swap .say p, .pair.swap .get p { opacity: 0; transform: translateY(6px); }

/* ---------- pricing ---------- */
.price-card { display: grid; grid-template-columns: 1.4fr 1fr; gap: var(--s4); background: var(--card); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 30px; margin-top: var(--s3);
  background-image: radial-gradient(60% 80% at 100% 0%, color-mix(in srgb, var(--green) 10%, transparent), transparent 70%); }
.price-left h2 { margin-bottom: 10px; }
.ticks { list-style: none; padding: 0; margin: 16px 0 0; display: grid; gap: 8px; } .ticks li { color: var(--dim); padding-left: 24px; position: relative; }
.ticks li::before { content: "✓"; position: absolute; left: 0; color: var(--green); font-weight: 700; }
.price-left .team { margin: 18px 0 0; padding-top: 16px; border-top: 1px solid var(--line); color: var(--dim); font-size: 14px; } .price-left .team b { color: var(--text); font-weight: 600; }
.price-right { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 14px; text-align: center; border-left: 1px solid var(--line); padding-left: var(--s4); }
.price-tag span { display: block; font-size: 44px; font-weight: 700; letter-spacing: -0.02em; } .price-tag small { color: var(--dim); }
.price-right .faint { color: var(--faint); font-size: 12px; max-width: 220px; }
.price-right .ghost.small { font-size: 14px; margin-top: -6px; }

/* ---------- privacy + faq + final ---------- */
.priv-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--s2); margin-top: var(--s4); }
.priv-grid div { background: var(--card); border: 1px solid var(--line); border-radius: var(--r); padding: 20px 22px; } .priv-grid h3 { margin-bottom: 6px; font-size: 15.5px; } .priv-grid p { margin: 0; color: var(--dim); font-size: 14.5px; }
.faq { margin-top: var(--s3); border-top: 1px solid var(--line); } .faq details { border-bottom: 1px solid var(--line); padding: 16px 0; }
.faq summary { cursor: pointer; font-weight: 600; list-style: none; display: flex; justify-content: space-between; align-items: center; } .faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--faint); font-weight: 400; font-size: 20px; transition: transform .25s; } .faq details[open] summary::after { transform: rotate(45deg); }
.faq p { color: var(--dim); margin: 10px 0 0; max-width: 720px; }
#faq .muted { margin-top: var(--s3); font-size: 14px; }
.final { text-align: center; padding: var(--s8) 0 var(--s7); }
.final .pill.mini { position: relative; margin-bottom: var(--s4); height: 56px; padding: 0 18px; border: 0; background: #000;
  box-shadow: 0 14px 40px rgba(0,0,0,.5), 0 0 0 1px rgba(255,255,255,.09), 0 -2px 6px rgba(255,255,255,.14), 0 2px 6px rgba(255,255,255,.10); }
@media (prefers-color-scheme: light) { .final .pill.mini { box-shadow: 0 14px 40px rgba(0,0,0,.35), 0 0 0 1px rgba(0,0,0,.1); } } .final h2 { margin-bottom: var(--s4); }

/* ---------- footer ---------- */
footer { border-top: 1px solid var(--line); padding: var(--s6) 0 var(--s5); color: var(--faint); font-size: 13px; }
.fcols { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: var(--s4); margin-bottom: var(--s4); }
.fcols h4 { color: var(--text); font-size: 13px; margin: 0 0 10px; } .fcols a { display: block; color: var(--dim); margin: 0 0 8px; } .fcols a:hover { color: var(--text); text-decoration: none; }
.fbrand { display: flex; align-items: flex-start; gap: 10px; color: var(--text); } .fbrand img { width: 28px; height: 28px; border-radius: 7px; } .fbrand small { color: var(--faint); }

/* ---------- legal pages ---------- */
.legal { max-width: 760px; margin: 0 auto; padding: var(--s4) var(--s4) var(--s7); }
.legal h1 { font-size: 34px; margin: var(--s4) 0 6px; } .legal .meta { color: var(--faint); font-size: 14px; margin-bottom: var(--s4); }
.legal h2 { font-size: 20px; margin: 30px 0 8px; } .legal h3 { font-size: 16px; margin: 20px 0 6px; }
.legal p, .legal li { color: var(--dim); } .legal li { margin: 4px 0; }
.legal table { border-collapse: collapse; width: 100%; font-size: 14px; } .legal td, .legal th { text-align: left; padding: 8px 10px; border-bottom: 1px solid var(--line); vertical-align: top; } .legal th { color: var(--text); }
kbd { font: 13px -apple-system, BlinkMacSystemFont, sans-serif; background: var(--card); border: 1px solid var(--line); border-radius: 6px; padding: 1px 6px; }

/* ---------- motion + responsive ---------- */
.reveal { opacity: 0; transform: translateY(12px); transition: opacity .5s ease, transform .5s cubic-bezier(.2,.8,.2,1); } .reveal.in { opacity: 1; transform: none; }
.skip { position: absolute; left: 16px; top: -48px; z-index: 50; padding: 8px 14px; border-radius: 999px; background: var(--text); color: var(--bg); font-weight: 600; font-size: 14px; } .skip:focus { top: 12px; outline: none; text-decoration: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } .glow { animation: none; } .tile-b, .cta { transition: none; } }
@media (max-width: 900px) { .bento { grid-template-columns: repeat(2, 1fr); } .tile-b.small { grid-column: span 1; } .fcols { grid-template-columns: 1fr 1fr; } }
@media (max-width: 760px) {
  :root { --s7: 56px; --s8: 72px; }
  nav { gap: 14px; } nav a:not(.navcta) { display: none; }
  .ticker { height: 76px; margin-bottom: var(--s4); } .tk-icon { width: 52px; height: 52px; border-radius: 12px; }
  .tk-in { width: calc(50% - 28px); } .tk-out { left: calc(50% + 28px); } .tk-out .track { font-size: 15px; padding-left: 10px; }
  .facts { padding-bottom: var(--s4); } .cue { margin-top: 18px; }
  /* Phones: a tidy 2×2, value over label, no glyph. */
  .strip { display: grid; grid-template-columns: 1fr 1fr; gap: 16px 20px; max-width: 320px; margin-left: auto; margin-right: auto; }
  .strip li { flex-direction: column; align-items: flex-start; gap: 1px; padding: 0; border-left: 0; white-space: normal; }
  .strip b { font-size: 17px; } .strip span { font-size: 13px; } .netglyph { display: none; }
  .steps { grid-template-columns: 1fr; }
  .stage { padding: 24px 14px 0; border-radius: 16px; } .stage .window { margin-bottom: -20px; } .window .body { grid-template-columns: 1fr; } .side { display: none; } .seg-range { display: none; } .tiles { grid-template-columns: repeat(2, 1fr); } .titlebar .title { margin-left: 8px; }
  .bento { grid-template-columns: 1fr; } .tile-b, .tile-b.span2, .tile-b.small { grid-column: span 1; }
  .pair { grid-template-columns: 1fr; } .arrow { transform: rotate(90deg); justify-self: center; }
  .price-card { grid-template-columns: 1fr; } .price-right { border-left: 0; padding-left: 0; border-top: 1px solid var(--line); padding-top: 20px; }
  .priv-grid { grid-template-columns: 1fr; } .fcols { grid-template-columns: 1fr 1fr; }
  .legal h1 { font-size: 28px; }
}

/* ---------- voice-note showcase ---------- */
.split { display: grid; grid-template-columns: 1fr 1.15fr; gap: var(--s5); align-items: center; }
.split-copy .ticks { margin-top: var(--s3); }
.vstage { position: relative; height: 380px; }
.msgwin { position: absolute; right: 0; top: 0; width: 82%; height: 330px; border-radius: 16px; border: 1px solid var(--line); background: var(--bg2); box-shadow: var(--shadow); display: flex; flex-direction: column; overflow: hidden; }
.msghead { display: flex; align-items: center; gap: 10px; padding: 10px 12px; border-bottom: 1px solid var(--line); } .msgname { font-weight: 600; font-size: 13px; margin-left: 90px; }
.msgbody { padding: 14px; display: flex; flex-direction: column; gap: 10px; flex: 1; font-size: 14px; }
.msginput { margin: 0 12px 12px; border: 1px solid var(--line); border-radius: 999px; padding: 9px 14px; color: var(--faint); font-size: 14px; transition: border-color .3s, box-shadow .3s; } .msginput.hot { border-color: var(--accent); box-shadow: 0 0 0 4px rgba(77,156,255,.22); }
.bubble.me.big { gap: 10px; padding: 9px 12px; } .bubble.me.big .vwave { height: 20px; gap: 2.5px; } .bubble.me.big .vwave i { width: 2.5px; }
.bubble.me.big .play { width: 22px; height: 22px; border-radius: 50%; background: rgba(255,255,255,.9); color: #2f80ed; display: grid; place-items: center; font-size: 9px; }
.vwave i { transition: background .3s; } .vwave.playing i { background: rgba(255,255,255,.45); } .vwave.playing i.on { background: #fff; }
.vpill { position: absolute; left: 0; bottom: 6px; height: 40px; padding: 0 14px; border-radius: 999px; background: #0a0a0a; border: .6px solid rgba(255,255,255,.16); display: flex; align-items: center; gap: 12px; box-shadow: 0 8px 22px rgba(0,0,0,.35); max-width: 100%; }
.vtext { color: #fff; font-size: 13px; font-weight: 500; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; max-width: 280px; }
.chip.big { font-size: 12px; padding: 5px 11px; flex: none; }
@media (max-width: 900px) { .split { grid-template-columns: 1fr; } .vstage { height: 400px; } .msgwin { width: 100%; } .vtext { max-width: 150px; } }
/* ---------- privacy flow ---------- */
/* Privacy diagram: the pipeline lives inside the Mac; the only wire out ends at 0 bytes. */
.flow { margin: var(--s4) 0 var(--s2); display: grid; grid-template-columns: minmax(0, 1fr) auto; align-items: center; gap: 0 4px; padding: 24px; border-radius: var(--r-lg); border: 1px solid var(--line);
  background: radial-gradient(60% 70% at 50% 0%, rgba(120,140,210,.12), transparent 70%), var(--card); }
.flow .mac { position: relative; padding: 40px 22px 22px; border-radius: 22px; border: 1px solid color-mix(in srgb, var(--green) 45%, var(--line)); background: linear-gradient(rgba(255,255,255,.035), rgba(255,255,255,.01));
  box-shadow: 0 0 0 6px color-mix(in srgb, var(--green) 6%, transparent); }
.flow .mac-title { position: absolute; left: 22px; top: 14px; font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--green); }
.flow .pipe { display: flex; align-items: flex-start; }
.flow .node { display: flex; flex-direction: column; align-items: center; gap: 10px; flex: 0 0 auto; }
.flow .node small { font-size: 12px; color: var(--dim); white-space: nowrap; }
.flow .node em { font-style: normal; font-size: 11px; color: var(--faint); text-align: center; line-height: 1.4; margin-top: -4px; }
.flow .wire { position: relative; flex: 1 1 60px; min-width: 30px; height: 44px; }
.flow .wire::before { content: ""; position: absolute; left: 0; right: 0; top: 50%; border-top: 1.5px solid var(--line2); }
.flow .wire.dashed::before { border-top-style: dashed; }
.flow .mpill { height: 44px; padding: 0 14px; border-radius: 999px; background: #000; display: flex; align-items: center; gap: 2.46px; box-shadow: 0 10px 26px rgba(0,0,0,.45), inset 0 0 0 1px rgba(255,255,255,.06); }
/* The brand waveform: the icon's proportions (3 px bars, gap 0.82×, tallest 8.35× = 25 px), breathing. */
.flow .mpill i { width: 3px; height: var(--h); border-radius: 2px; background: #fff; animation: mbar 1.6s ease-in-out infinite alternate; }
.flow .mpill i:nth-child(1) { --h: 5.4px; animation-delay: -.0s } .flow .mpill i:nth-child(2) { --h: 10.1px; animation-delay: -.2s } .flow .mpill i:nth-child(3) { --h: 17.6px; animation-delay: -.4s } .flow .mpill i:nth-child(4) { --h: 25px; animation-delay: -.6s }
.flow .mpill i:nth-child(5) { --h: 15.5px; animation-delay: -.8s } .flow .mpill i:nth-child(6) { --h: 21px; animation-delay: -1s } .flow .mpill i:nth-child(7) { --h: 11.5px; animation-delay: -1.2s } .flow .mpill i:nth-child(8) { --h: 6.8px; animation-delay: -1.4s }
@keyframes mbar { from { height: calc(var(--h) * .85); } to { height: calc(var(--h) * 1.15); } }
.flow .tile-n { height: 44px; padding: 0 15px; display: flex; align-items: center; border-radius: 12px; background: var(--bg2); border: 1px solid var(--line2); box-shadow: 0 6px 18px rgba(0,0,0,.25); }
.flow .tile-n b { font-size: 13px; font-weight: 600; color: var(--text); white-space: nowrap; }
.flow .tile-n.ai { position: relative; border-color: transparent; background: var(--bg2); }
.flow .tile-n.ai::before { content: ""; position: absolute; inset: -1px; border-radius: 13px; padding: 1px; background: linear-gradient(120deg, #ff8a5b, #ff5c8a, #8a6bff, #4fb8ff, #ff8a5b); -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); -webkit-mask-composite: xor; mask-composite: exclude; opacity: .85; }
.flow .mfield { height: 44px; width: 156px; box-sizing: border-box; padding: 0 12px; display: flex; align-items: center; overflow: hidden; border-radius: 10px; background: var(--bg2); border: 1px solid var(--line2); font-size: 13px; color: var(--text); white-space: nowrap; }
.flow .mfield span { flex: 0 1 auto; min-width: 0; overflow: hidden; }
.flow .mfield .caret { width: 1.5px; height: 16px; background: var(--accent); margin-left: 1px; animation: blink 1s steps(2) infinite; }
.flow .fly { position: absolute; top: 50%; left: 0; transform: translate(-50%, -50%); opacity: 0; white-space: nowrap; }
.flow .fly.wave { display: flex; align-items: center; gap: 2px; height: 16px; animation: fly1 6s linear infinite; }
.flow .fly.wave i { width: 2px; border-radius: 1px; background: var(--green); height: 40%; animation: flybar .6s ease-in-out infinite alternate; }
@keyframes flybar { from { height: 30%; } to { height: var(--h, 80%); } }
.flow .fly.wave i:nth-child(1) { --h: 50% } .flow .fly.wave i:nth-child(2) { --h: 90%; animation-delay: -.2s } .flow .fly.wave i:nth-child(3) { --h: 100%; animation-delay: -.4s } .flow .fly.wave i:nth-child(4) { --h: 75%; animation-delay: -.1s } .flow .fly.wave i:nth-child(5) { --h: 45%; animation-delay: -.3s }
.flow .fly.rough { font-size: 11px; font-style: italic; color: var(--dim); padding: 3px 9px; border-radius: 999px; background: var(--bg2); border: 1px solid var(--line2); animation: fly2 6s linear infinite; }
.flow .fly.clean { font-size: 11px; font-weight: 600; color: var(--bg); padding: 3px 9px; border-radius: 999px; background: var(--text); animation: fly3 6s linear infinite; }
@keyframes fly1 { 0% { left: 0; opacity: 0 } 4% { opacity: 1 } 28% { left: 100%; opacity: 1 } 32% { left: 100%; opacity: 0 } 100% { left: 100%; opacity: 0 } }
@keyframes fly2 { 0%, 33% { left: 0; opacity: 0 } 37% { opacity: 1 } 61% { left: 100%; opacity: 1 } 65% { left: 100%; opacity: 0 } 100% { left: 100%; opacity: 0 } }
@keyframes fly3 { 0%, 66% { left: 0; opacity: 0 } 70% { opacity: 1 } 94% { left: 100%; opacity: 1 } 98% { left: 100%; opacity: 0 } 100% { left: 100%; opacity: 0 } }
.flow .out { display: flex; align-items: flex-start; padding-top: 40px; }
.flow .out .wire { flex: 0 0 150px; margin-right: -47px; z-index: 0; }   /* runs on under the caption's width, right up to the cloud */
.flow .out .node { min-width: 150px; position: relative; z-index: 1; }
.flow .out .barrier { left: 50%; }
.flow .node em { white-space: nowrap; }
.flow .barrier { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); white-space: nowrap; font-size: 12px; font-weight: 600; color: var(--green); padding: 5px 12px; border-radius: 999px; background: var(--card2); border: 1px solid color-mix(in srgb, var(--green) 40%, var(--line2)); }
.flow .cloud-n { width: 56px; height: 44px; border-radius: 999px; border: 1px dashed var(--line2); display: grid; place-items: center; }
.flow .cloud-n svg { fill: none; stroke: var(--faint); stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
@media (prefers-reduced-motion: reduce) { .flow .fly, .flow .mpill i, .flow .fly.wave i { animation: none; } .flow .fly { opacity: 1; left: 50%; } }
@media (max-width: 900px) { .flow { grid-template-columns: 1fr; gap: 12px; padding: 18px; } .flow .out { padding-top: 0; justify-content: center; } .flow .out .wire { flex-basis: 90px; } }
@keyframes fly1v { 0% { top: 0; opacity: 0 } 4% { opacity: 1 } 28% { top: 100%; opacity: 1 } 32% { top: 100%; opacity: 0 } 100% { top: 100%; opacity: 0 } }
@keyframes fly2v { 0%, 33% { top: 0; opacity: 0 } 37% { opacity: 1 } 61% { top: 100%; opacity: 1 } 65% { top: 100%; opacity: 0 } 100% { top: 100%; opacity: 0 } }
@keyframes fly3v { 0%, 66% { top: 0; opacity: 0 } 70% { opacity: 1 } 94% { top: 100%; opacity: 1 } 98% { top: 100%; opacity: 0 } 100% { top: 100%; opacity: 0 } }
@media (max-width: 700px) { .flow .pipe { flex-direction: column; align-items: center; gap: 6px; } .flow .mac { padding: 44px 20px 22px; }
  /* Stacked: the wires turn vertical and the chips fly down them. */
  .flow .pipe .wire { display: block; flex: 0 0 auto; width: 60px; height: 52px; min-width: 0; }
  .flow .pipe .wire::before { left: 50%; right: auto; top: 0; bottom: 0; border-top: 0; border-left: 1.5px solid var(--line2); }
  .flow .fly { left: 50%; top: 0; }
  .flow .fly.wave { animation-name: fly1v; } .flow .fly.rough { animation-name: fly2v; } .flow .fly.clean { animation-name: fly3v; }
  .flow .out { flex-direction: column; align-items: center; gap: 10px; } .flow .out .wire { flex: 0 0 auto; width: 60px; height: 64px; min-width: 0; margin-right: 0; } .flow .out .barrier { left: 50%; }
  .flow .out .wire::before { left: 50%; right: auto; top: 0; bottom: 0; border-top: 0; border-left: 1.5px dashed var(--line2); } }

/* Thank-you page (Dodo return URL). */
.thanks .key { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; margin: 14px 0 18px; }
.thanks .key code { font-size: 20px; letter-spacing: .04em; padding: 10px 14px; border: 1px solid var(--line); border-radius: 10px; background: var(--card); white-space: pre-line; }
.thanks .copy { height: 36px; padding: 0 14px; border-radius: 999px; border: 1px solid var(--line); background: transparent; color: var(--text); font: inherit; font-size: 14px; cursor: pointer; }
.thanks .copy:hover { border-color: var(--text); }
.thanks .cta-row { justify-content: flex-start; margin: 6px 0 10px; }

/* Touch: every link that is a control gets a comfortable target. */
@media (pointer: coarse) {
  .ghost, .price-right .ghost.small, .faq summary, footer .fcols a { padding-top: 10px; padding-bottom: 10px; }
  .ghost { display: inline-flex; align-items: center; min-height: 44px; }
}

/* Changelog */
.changelog article { margin: 34px 0; padding-top: 26px; border-top: 1px solid var(--line); }
.changelog article:first-of-type { border-top: 0; padding-top: 0; }
.changelog h2 { display: flex; align-items: baseline; gap: 12px; font-family: "Instrument Serif", Georgia, serif; font-weight: 400; font-size: 30px; margin: 0 0 6px; }
.changelog h2 small { font-family: inherit; font-size: 15px; color: var(--faint); font-style: italic; }
.changelog li { margin: 6px 0; }

/* Before the first release: the Download buttons wait politely. */
.soon { cursor: default; opacity: .72; } .soon:hover { transform: none; box-shadow: none; } .soon svg { display: none; }
