@import url("https://fonts.googleapis.com/css2?family=Inter+Tight:wght@500;600;700&family=Inter:wght@400;500;600&family=Geist+Mono:wght@400;500&display=swap");

:root {
  --paper: #ffffff;
  --paper-2: #f4f4f1;
  --card: #ffffff;
  --ink: #0e0f0c;
  --ink-2: #55575c;
  --ink-3: #85878c;
  --rule: #e7e7e3;
  --human: #ff5b24;
  --human-ink: #c93c0c;
  --human-soft: #ffeae1;
  --ai: #b9bec8;
  --ai-ink: #4d535e;
  --ai-soft: #eef0f3;
  --good: #1f7a4d;
  --focus: #ff5b24;
  --radius: 12px;
  --shadow: 0 1px 2px rgba(14, 15, 12, 0.05), 0 18px 40px -22px rgba(14, 15, 12, 0.28);
  --display: "Inter Tight", "Inter", system-ui, sans-serif;
  --sans: "Inter", system-ui, -apple-system, sans-serif;
  --mono: "Geist Mono", ui-monospace, monospace;
  color-scheme: light;
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    --paper: #0e0f0c;
    --paper-2: #1a1b18;
    --card: #161714;
    --ink: #f3f3f0;
    --ink-2: #b4b5b0;
    --ink-3: #85878c;
    --rule: #2a2b27;
    --human: #ff6a3a;
    --human-ink: #ff8a62;
    --human-soft: #3a1d12;
    --ai: #5b616c;
    --ai-ink: #c3c8d1;
    --ai-soft: #23262b;
    --good: #5fd39a;
    --shadow: 0 1px 2px rgba(0, 0, 0, 0.4), 0 18px 40px -22px rgba(0, 0, 0, 0.8);
    color-scheme: dark;
  }
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font: 400 17px/1.65 var(--sans);
  letter-spacing: -0.006em;
  font-feature-settings: "ss01", "cv11";
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a { color: inherit; text-decoration-color: var(--human); text-underline-offset: 3px; }
a:hover { color: var(--human); }
:focus-visible { outline: 2px solid var(--focus); outline-offset: 2px; border-radius: 4px; }

.wrap { max-width: 1080px; margin: 0 auto; padding: 0 24px; }
.narrow { max-width: 760px; }

/* Header */
.site-head { border-bottom: 1px solid var(--rule); }
.site-head .wrap { display: flex; align-items: center; justify-content: space-between; height: 64px; gap: 16px; }
.logo { display: flex; align-items: center; gap: 9px; font: 700 21px/1 var(--display); text-decoration: none; letter-spacing: -0.035em; }
.logo i { color: var(--human); font-style: normal; }
.logo:hover { color: inherit; }
.nav { display: flex; gap: 22px; font-size: 15px; color: var(--ink-2); }
.nav a { text-decoration: none; }
.nav a[aria-current="page"] { color: var(--ink); font-weight: 500; }
@media (max-width: 640px) { .nav .hide-sm { display: none; } .nav { gap: 14px; } }

/* Type */
h1, h2, h3 { font-weight: 400; letter-spacing: -0.01em; margin: 0; }
h1 { font: 600 clamp(44px, 6.4vw, 80px)/1.0 var(--display); letter-spacing: -0.038em; text-wrap: balance; }
h2 { font: 600 clamp(32px, 4.2vw, 50px)/1.05 var(--display); letter-spacing: -0.032em; text-wrap: balance; }
h3 { font: 600 18px/1.35 var(--display); letter-spacing: -0.018em; }
h1 em, h2 em { font-style: normal; color: var(--human); }
.eyebrow { font: 500 12px/1.4 var(--mono); text-transform: uppercase; letter-spacing: 0.14em; color: var(--ink-3); }
.lede { font-size: clamp(18px, 2vw, 21px); line-height: 1.55; letter-spacing: -0.012em; color: var(--ink-2); max-width: 36em; text-wrap: pretty; }
p, li { text-wrap: pretty; }
.mono, .stat .n, .ledger td.r, .tag { font-variant-numeric: tabular-nums; }
.muted { color: var(--ink-3); }
.small { font-size: 14px; }
.mono { font-family: var(--mono); }

section { padding: 112px 0; }
section + section { border-top: 1px solid var(--rule); }
@media (max-width: 640px) { section { padding: 60px 0; } }

/* Buttons and inputs */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 22px; border-radius: 10px; border: 1px solid var(--ink);
  background: var(--ink); color: var(--paper); font: 600 16px var(--sans);
  text-decoration: none; cursor: pointer; transition: transform 0.12s ease, background 0.12s ease;
}
.btn:hover { transform: translateY(-1px); color: var(--paper); }
.btn.ghost { background: var(--paper-2); border-color: var(--paper-2); color: var(--ink); }
.btn.ghost:hover { color: var(--ink); background: var(--rule); border-color: var(--rule); }
.btn:disabled { opacity: 0.55; cursor: progress; transform: none; }
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; }

label { display: block; font-weight: 500; font-size: 15px; margin-bottom: 6px; }
.hint { font-size: 14px; color: var(--ink-3); margin-top: 6px; }
input[type="text"], input[type="email"], input[type="number"], select, textarea {
  width: 100%; padding: 12px 14px; border-radius: 10px; border: 1px solid var(--rule);
  background: var(--card); color: var(--ink); font: 400 16px/1.5 var(--sans);
}
textarea { min-height: 220px; resize: vertical; }
input:focus, select:focus, textarea:focus { outline: none; border-color: var(--human); box-shadow: 0 0 0 3px var(--human-soft); }
.field { margin-bottom: 20px; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 640px) { .grid-2 { grid-template-columns: 1fr; } }

.card { background: var(--card); border: 1px solid var(--rule); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow); }
@media (max-width: 640px) { .card { padding: 20px; } }

.notice {
  border-left: 3px solid var(--human); background: var(--human-soft);
  padding: 12px 16px; border-radius: 0 10px 10px 0; font-size: 15px;
}
.error { border-left-color: #b3261e; background: color-mix(in srgb, #b3261e 12%, var(--card)); }

/* Hero */
.hero { padding: 96px 0 72px; }
.hero .lede { margin: 24px 0 36px; }
.hero-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 56px; align-items: center; }
@media (max-width: 900px) { .hero-grid { grid-template-columns: 1fr; gap: 40px; } .hero { padding-top: 56px; } }

/* Split bar */
.split { display: flex; height: 14px; border-radius: 999px; overflow: hidden; background: var(--paper-2); }
.split .h { background: var(--human); }
.split .a { background: var(--ai); }
.legend { display: flex; gap: 18px; font-size: 14px; color: var(--ink-2); margin-top: 10px; flex-wrap: wrap; }
.dot { display: inline-block; width: 10px; height: 10px; border-radius: 50%; margin-right: 6px; vertical-align: 0; }
.dot.h { background: var(--human); }
.dot.a { background: var(--ai); }

/* Sample result card on the landing page */
.sample .row { display: flex; justify-content: space-between; gap: 12px; padding: 9px 0; border-bottom: 1px dashed var(--rule); font-size: 15px; }
.sample .row:last-child { border-bottom: 0; }
.tag { font: 600 12px var(--sans); padding: 3px 9px; border-radius: 999px; white-space: nowrap; align-self: center; }
.tag.h { background: var(--human-soft); color: var(--human-ink); }
.tag.a { background: var(--ai-soft); color: var(--ai-ink); }
.tag.m { background: var(--card); color: var(--ink-2); box-shadow: inset 0 0 0 1px var(--rule); }

/* Stats */
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin: 24px 0; }
.stat { background: var(--paper-2); border-radius: 12px; padding: 18px; }
.stat .n { font: 600 38px/1 var(--display); letter-spacing: -0.035em; }
.stat .l { font-size: 14px; color: var(--ink-2); margin-top: 8px; }
@media (max-width: 640px) { .stats { grid-template-columns: 1fr; } }

/* Feature grid */
.cols-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 48px; }
.cols-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; margin-top: 48px; }
@media (max-width: 800px) { .cols-3, .cols-2 { grid-template-columns: 1fr; } }
.cols-3 p, .cols-2 p { color: var(--ink-2); margin: 8px 0 0; }
.num { font: 400 15px var(--mono); color: var(--human-ink); }

/* Ledger table */
.ledger { width: 100%; border-collapse: collapse; font-size: 15px; }
.ledger th { text-align: left; font: 500 12px var(--mono); text-transform: uppercase; letter-spacing: 0.06em; color: var(--ink-3); padding: 8px 10px; border-bottom: 1px solid var(--rule); }
.ledger td { padding: 12px 10px; border-bottom: 1px solid var(--rule); vertical-align: top; }
.ledger td.r, .ledger th.r { text-align: right; white-space: nowrap; }
.ledger details summary { cursor: pointer; list-style: none; }
.ledger details summary::-webkit-details-marker { display: none; }
.ledger details[open] summary { margin-bottom: 8px; }
.ledger .why { font-size: 14px; color: var(--ink-2); }
.ledger .why ul { margin: 6px 0 0; padding-left: 18px; font-size: 13px; color: var(--ink-3); word-break: break-word; }
.fbar { position: relative; width: 120px; height: 8px; border-radius: 999px; background: var(--paper-2); display: inline-block; vertical-align: middle; }
.fbar .fill { position: absolute; left: 0; top: 0; bottom: 0; border-radius: 999px; }
.fbar .band { position: absolute; top: -3px; bottom: -3px; border-radius: 4px; border: 1px solid var(--ink-3); opacity: 0.5; }
.fbar .line { position: absolute; top: -5px; bottom: -5px; width: 2px; background: var(--ink); left: 55%; }
.fb { display: inline-flex; gap: 4px; }
.fb button { border: 1px solid var(--rule); background: transparent; color: var(--ink-2); border-radius: 8px; padding: 3px 8px; cursor: pointer; font-size: 13px; }
.fb button[aria-pressed="true"] { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.table-scroll { overflow-x: auto; }
@media (max-width: 700px) { .hide-sm { display: none; } .fbar { width: 70px; } }

/* Candidate result */
.edge-hero { display: grid; grid-template-columns: auto 1fr; gap: 32px; align-items: center; }
.ring { width: 170px; height: 170px; }
.ring text { font-family: var(--display); font-weight: 600; letter-spacing: -0.04em; }
@media (max-width: 640px) { .edge-hero { grid-template-columns: 1fr; justify-items: start; } }
.list-plain { list-style: none; padding: 0; margin: 12px 0 0; }
.list-plain li { padding: 10px 0; border-bottom: 1px dashed var(--rule); }

/* Share card */
.share-card {
  aspect-ratio: 1.91 / 1; max-width: 640px; border-radius: 18px; padding: 36px;
  background: radial-gradient(120% 140% at 0% 0%, var(--human-soft), transparent 55%), var(--card);
  border: 1px solid var(--rule); display: flex; flex-direction: column; justify-content: space-between;
}
.share-card .big { font: 600 clamp(40px, 7vw, 64px)/1 var(--display); letter-spacing: -0.04em; }

/* Formula */
.formula { font: 400 18px/1.7 var(--mono); background: var(--paper-2); border-radius: 12px; padding: 18px 22px; overflow-x: auto; }

.spinner { width: 16px; height: 16px; border-radius: 50%; border: 2px solid currentColor; border-right-color: transparent; animation: spin 0.8s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce) { .spinner { animation-duration: 3s; } .btn { transition: none; } }

.site-foot { border-top: 1px solid var(--rule); padding: 40px 0 56px; font-size: 14px; color: var(--ink-3); }
.site-foot .wrap { display: flex; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.site-foot a { color: var(--ink-2); }
.foot-links { display: flex; gap: 18px; flex-wrap: wrap; }
[hidden] { display: none !important; }

.nav a { white-space: nowrap; }
.ledger td.fit { white-space: nowrap; }
@media (max-width: 420px) { .logo { font-size: 19px; } .logo img { width: 24px; height: 24px; } .nav { font-size: 14px; gap: 12px; } .site-head .wrap { gap: 10px; } }

/* Upload drop zone */
.drop {
  display: flex; flex-wrap: wrap; align-items: center; gap: 10px 14px;
  border: 1.5px dashed var(--rule); border-radius: 10px; padding: 12px 14px; margin-bottom: 10px;
  background: var(--paper); transition: border-color 0.12s ease, background 0.12s ease;
}
.drop.over { border-color: var(--human); background: var(--human-soft); }
.small-btn { padding: 8px 16px; font-size: 15px; }
.drop-hint { font-size: 14px; color: var(--ink-3); }
.drop-status { flex-basis: 100%; font-size: 14px; color: var(--good); }
.drop-status:empty { display: none; }
.drop-status.err { color: #b3261e; }


/* ---------- Photography ---------- */
.photo { position: relative; overflow: hidden; border-radius: 20px; background: var(--paper-2); }
.photo img { display: block; width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s cubic-bezier(.2,.7,.2,1); }
.photo .cap { position: absolute; left: 14px; bottom: 12px; font: 500 11px/1 var(--mono); letter-spacing: 0.12em; text-transform: uppercase;
  color: #fffdf8; background: rgba(27,29,34,.42); backdrop-filter: blur(6px); padding: 7px 9px; border-radius: 999px; }
.panel { aspect-ratio: 21 / 9; }
@media (max-width: 700px) { .panel { aspect-ratio: 4 / 3; } }

/* Hero composition: photo with an overlapping product card and floating chips */
.hero-art { position: relative; padding: 0 0 150px 0; }
.hero-art .photo { aspect-ratio: 5 / 6; margin-left: 72px; }
.hero-art .photo img { object-position: 30% 50%; }
.hero-art .sample { position: absolute; left: 0; bottom: 0; width: min(360px, 84%); padding: 22px; z-index: 2; }
.chip { position: absolute; display: inline-flex; align-items: center; gap: 8px; background: var(--card); border: 1px solid var(--rule);
  border-radius: 999px; padding: 8px 14px; font: 500 13px var(--sans); box-shadow: var(--shadow); white-space: nowrap; }
.chip b { font-weight: 600; }
.chip { z-index: 3; }
.chip.c1 { top: 28px; right: -14px; }
.chip.c2 { bottom: 372px; right: -14px; }
@media (max-width: 900px) { .hero-art { padding-bottom: 0; } .hero-art .photo { margin-left: 0; aspect-ratio: 4 / 3; } .hero-art .sample { position: relative; width: auto; margin: -72px 14px 0 14px; } .chip.c1 { right: 10px; top: 14px; } .chip.c2 { display: none; } }

/* Ticker of real facts */
.ticker { border-block: 1px solid var(--rule); overflow: hidden; padding: 14px 0; background: var(--paper); }
.ticker .track { display: flex; gap: 48px; width: max-content; font: 500 12px var(--mono); letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-2); }
.ticker .track span::before { content: ""; display: inline-block; width: 6px; height: 6px; border-radius: 50%; background: var(--human); margin-right: 12px; vertical-align: 1px; }
.ticker .track span:nth-child(even)::before { background: var(--ai); }
.motion .ticker .track { animation: marquee 48s linear infinite; }
.ticker:hover .track { animation-play-state: paused; }
@keyframes marquee { to { transform: translateX(-50%); } }
section.tight { padding: 0; border: 0; }

/* FIG columns (Linear-style) */
.figs { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 56px; border-top: 1px solid var(--rule); }
.figs > div { padding: 28px 28px 0 0; }
.figs > div + div { border-left: 1px solid var(--rule); padding-left: 28px; }
.figs .fig { font: 500 12px var(--mono); letter-spacing: 0.12em; color: var(--human-ink); margin-bottom: 18px; display: block; }
.figs p { color: var(--ink-2); margin: 8px 0 0; }
@media (max-width: 800px) { .figs { grid-template-columns: 1fr; } .figs > div + div { border-left: 0; padding-left: 0; border-top: 1px solid var(--rule); } }

/* Task photo pair */
.pair { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 48px; }
.pair figure { margin: 0; }
.pair .photo { aspect-ratio: 4 / 5; }
.pair figcaption { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; margin-top: 14px; }
.pair figcaption p { margin: 4px 0 0; font-size: 15px; color: var(--ink-2); }
@media (max-width: 700px) { .pair { grid-template-columns: 1fr; } }

/* Spec cards with mono rows (Anthropic-style) */
.specs { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 48px; }
.spec { background: var(--card); border: 1px solid var(--rule); border-radius: 16px; padding: 26px; display: flex; flex-direction: column; }
.spec p { color: var(--ink-2); margin: 10px 0 18px; }
.spec dl { margin: auto 0 0; border-top: 1px solid var(--rule); font-size: 13px; }
.spec dl div { display: grid; grid-template-columns: 90px 1fr; gap: 12px; padding: 9px 0; border-bottom: 1px solid var(--rule); }
.spec dt { font: 500 11px/1.6 var(--mono); letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-3); }
.spec dd { margin: 0; color: var(--ink-2); }
.spec.with-photo { grid-row: span 2; padding: 0; overflow: hidden; }
.spec.with-photo .photo { border-radius: 0; aspect-ratio: 3 / 2; }
.spec.with-photo .body { padding: 26px; display: flex; flex-direction: column; flex: 1; }
@media (max-width: 800px) { .specs { grid-template-columns: 1fr; } .spec.with-photo { grid-row: auto; } }

/* Portrait tiles (Ramp-style) */
.tiles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 48px; }
.tile { position: relative; border-radius: 20px; overflow: hidden; aspect-ratio: 4 / 5; color: #fffdf8; }
.tile .photo { position: absolute; inset: 0; border-radius: 0; }
.tile::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(20,21,25,0) 30%, rgba(20,21,25,.55) 55%, rgba(20,21,25,.9) 100%); }
.tile .txt { text-shadow: 0 1px 12px rgba(0,0,0,.35); }
.tile .txt { position: absolute; left: 22px; right: 22px; bottom: 22px; z-index: 1; }
.tile .big { font: 600 54px/1 var(--display); letter-spacing: -0.045em; }
.tile h3 { color: #fffdf8; margin-top: 10px; }
.tile p { margin: 6px 0 0; font-size: 15px; color: rgba(255,253,248,.86); }
@media (max-width: 900px) { .tiles { grid-template-columns: 1fr; } .tile { aspect-ratio: 4 / 3; } }

/* Candidate sample card with portrait (Rippling-style) */
.person { display: flex; align-items: center; gap: 14px; padding-bottom: 16px; border-bottom: 1px solid var(--rule); margin-bottom: 16px; }
.person img { width: 56px; height: 56px; border-radius: 50%; object-fit: cover; }
.person .who { font-weight: 600; }
.feature { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; margin-top: 72px; }
@media (max-width: 900px) { .feature { grid-template-columns: 1fr; gap: 32px; } }

/* Waitlist over a photo band */
.photo-band { position: relative; border-radius: 24px; overflow: hidden; padding: 72px 24px; }
.photo-band .photo { position: absolute; inset: 0; border-radius: 0; }
.photo-band::before { content: ""; position: absolute; inset: 0; background: color-mix(in srgb, var(--paper) 80%, transparent); z-index: 1; }
.photo-band > .inner { position: relative; z-index: 2; max-width: 720px; margin: 0 auto; }

/* Page header photo on the Lens pages */
.page-head { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 48px; align-items: end; }
.page-head .photo { aspect-ratio: 5 / 4; }
@media (max-width: 800px) { .page-head { grid-template-columns: 1fr; } .page-head .photo { aspect-ratio: 16 / 9; } }

/* Hover lift */
.card, .spec, .tile, .q { transition: transform .18s ease, box-shadow .18s ease; }
.spec:hover, .tile:hover, .q:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.tile:hover .photo img { transform: scale(1.04); }

/* ---------- Motion (only when the visitor allows it) ---------- */
.motion .reveal { opacity: 0; transform: translateY(14px); transition: opacity .6s cubic-bezier(.2,.7,.2,1), transform .6s cubic-bezier(.2,.7,.2,1); }
.motion .reveal.in { opacity: 1; transform: none; }
.motion .stagger > * { opacity: 0; transform: translateY(14px); transition: opacity .6s cubic-bezier(.2,.7,.2,1), transform .6s cubic-bezier(.2,.7,.2,1); }
.motion .stagger.in > * { opacity: 1; transform: none; }
.motion .stagger.in > *:nth-child(2) { transition-delay: 70ms; }
.motion .stagger.in > *:nth-child(3) { transition-delay: 140ms; }
.motion .stagger.in > *:nth-child(4) { transition-delay: 210ms; }
.motion .stagger.in > *:nth-child(5) { transition-delay: 280ms; }
.motion .split > div { transition: width .9s cubic-bezier(.2,.7,.2,1) .15s; }
.motion .split:not(.in) > div { width: 0 !important; }
.motion .fbar .fill { transition: width .8s cubic-bezier(.2,.7,.2,1) .1s; }
.motion .fbar:not(.in) .fill { width: 0 !important; }
.motion .chip { opacity: 0; transform: scale(.94) translateY(6px); transition: opacity .35s ease, transform .35s cubic-bezier(.2,.9,.3,1.3); }
.motion .in .chip { opacity: 1; transform: none; }
.motion .in .chip.c2 { transition-delay: .5s; }
.motion .in .chip.c1 { transition-delay: .3s; }
.motion .hero-copy > * { animation: rise .8s cubic-bezier(.2,.7,.2,1) both; }
.motion .hero-copy > *:nth-child(2) { animation-delay: .08s; }
.motion .hero-copy > *:nth-child(3) { animation-delay: .16s; }
.motion .hero-copy > *:nth-child(4) { animation-delay: .24s; }
.motion .hero-copy > *:nth-child(5) { animation-delay: .32s; }
@keyframes rise { from { opacity: 0; transform: translateY(16px); } }
[data-parallax] img { transition: none; will-change: transform; }

/* Alternate band (Ramp-style section rhythm) */
section.alt { background: var(--paper-2); }
section.alt .spec, section.alt .card { background: var(--card); }
.lvs { display: flex; flex-wrap: wrap; gap: 6px 18px; font-size: 13px; }
.lv b { font-weight: 600; color: var(--ink); }
.notify-row { display: flex; gap: 10px; flex-wrap: wrap; }
.notify-row input { flex: 1 1 200px; }
.notify-row .btn { flex: 0 0 auto; }

/* Waitlist choices */
.choices { border: 0; padding: 0; margin: 0; display: grid; gap: 10px; }
.sr { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
.choice { display: flex; gap: 12px; align-items: flex-start; padding: 14px 16px; border: 1px solid var(--rule); border-radius: 10px; cursor: pointer; margin: 0; font-weight: 400; transition: border-color .15s ease, background .15s ease; }
.choice:has(input:checked) { border-color: var(--human); background: var(--human-soft); }
.choice input { margin-top: 4px; accent-color: var(--human); }
.choice b { display: block; font-weight: 600; }
.choice small { display: block; color: var(--ink-2); font-size: 14px; line-height: 1.5; margin-top: 2px; }

/* Hero example card: rotating real results */
.ex { width: min(380px, 88%); }
.ex-top { display: flex; justify-content: space-between; align-items: center; gap: 10px; margin-bottom: 10px; }
.ex-top .eyebrow { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.ex-dots { display: flex; gap: 6px; }
.ex-dots button { width: 8px; height: 8px; border-radius: 50%; border: 0; padding: 0; background: var(--rule); cursor: pointer; transition: background .2s, width .25s; }
.ex-dots button[aria-selected="true"] { background: var(--human); width: 20px; border-radius: 99px; }
.ex-big { display: flex; align-items: center; gap: 12px; }
.ex-num { font: 700 56px/1 var(--display); letter-spacing: -0.05em; color: var(--human); font-variant-numeric: tabular-nums; min-width: 2.2ch; }
.ex-cap { font: 600 16px/1.2 var(--display); letter-spacing: -0.02em; }
.ex-sub { margin: 6px 0 12px; font-size: 14px; color: var(--ink-2); }
.ex-bar .h, .ex-bar .a { transition: width .8s cubic-bezier(.2,.7,.2,1); }
.ex-legend { display: flex; gap: 14px; font-size: 12px; color: var(--ink-3); margin-top: 8px; }
.ex-rows { margin-top: 10px; min-height: 132px; }
.ex-rows .row { font-size: 14px; }
.ex-rows .row .tag { white-space: nowrap; }
.motion .ex.swap .ex-rows .row { animation: ex-in .5s cubic-bezier(.2,.7,.2,1) both; animation-delay: calc(var(--i) * 80ms); }
.motion .ex.swap #ex-role, .motion .ex.swap .ex-sub { animation: ex-fade .5s ease both; }
@keyframes ex-in { from { opacity: 0; transform: translateX(10px); } }
@keyframes ex-fade { from { opacity: 0; } }
.ex-progress { height: 2px; background: var(--rule); border-radius: 2px; overflow: hidden; margin-top: 12px; }
.ex-progress i { display: block; height: 100%; width: 0; background: var(--human); }
.motion .ex.playing.swap .ex-progress i { animation: ex-timer 5s linear both; }
@keyframes ex-timer { to { width: 100%; } }
@media (max-width: 900px) { .ex { width: auto; } }
