/* Eyeline's broadcast-room identity: one dark theme, one tally-red accent.
   Display and body use self-hosted Manrope; technical labels use native mono.
   Shape rule: buttons, chips and the control dock are full pills; cards, the demo stage and dialogs use 20px;
   media inset inside a card uses 12px; the notch keeps its hardware shape.
   Layers: page content 0-2, fixed header 10, skip link 20; dialogs and the mobile menu use the top layer. */
@font-face { font-family: Manrope; font-style: normal; font-weight: 200 800; font-display: swap; src: url("assets/manrope-latin.woff2") format("woff2"); }
:root {
  color-scheme: dark;
  interpolate-size: allow-keywords;
  --canvas: #100f0e;
  --panel: #191715;
  --panel-raised: #211e1b;
  --ink: #f2ede3;
  --ink-soft: #d5d0c7;
  --muted: #aaa59d;
  --dim: #8b837a;
  --line: #38342f;
  --hairline: rgb(242 237 227 / .1);
  --accent: #ff453b;
  --accent-soft: #d89384;
  --amber: #ffb840;
  --detail: #cdb39f;
  --gutter: clamp(24px, 5.5vw, 96px);
  --header-h: 72px;
  --r-card: 20px;
  --r-inset: 12px;
  --ease: cubic-bezier(.16, 1, .3, 1);
  --mono: "SFMono-Regular", ui-monospace, Menlo, Consolas, "Liberation Mono", monospace;
  font-family: Manrope, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-synthesis: none;
  background: var(--canvas);
  color: var(--ink);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 28px); }
body { margin: 0; background: var(--canvas); }
body:has(dialog[open]) { overflow: hidden; }
button, input { font: inherit; }
button, a, input, [role="button"] { -webkit-tap-highlight-color: transparent; }
button, a, [role="button"] { touch-action: manipulation; }
button { cursor: pointer; color: inherit; }
button:disabled { cursor: default; opacity: .5; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
figure, h1, h2, h3, p, ul, dl, dd { margin: 0; }
ul { padding: 0; list-style: none; }
::selection { background: var(--accent); color: var(--canvas); }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 6px; }
section:focus { outline: none; }
[hidden] { display: none !important; }
.icon { width: 1em; height: 1em; flex: none; fill: currentColor; }
.icon-sprite { position: absolute; width: 0; height: 0; overflow: hidden; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip-path: inset(50%); white-space: nowrap; }
.skip-link { position: fixed; z-index: 20; top: 12px; left: 12px; padding: 12px 18px; border-radius: 999px; color: var(--canvas); background: var(--ink); transform: translateY(-160%); }
.skip-link:focus { transform: none; }
.section-shell { padding-inline: var(--gutter); max-width: 1600px; margin-inline: auto; }
.scroll-sentinel { position: absolute; top: 0; left: 0; width: 1px; height: 24px; pointer-events: none; }

/* Header */
.site-header { position: fixed; z-index: 10; inset: 0 0 auto; height: var(--header-h); padding-inline: var(--gutter); display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 32px; border-bottom: 1px solid transparent; transition: background-color .4s var(--ease), border-color .4s var(--ease); }
.site-header[data-scrolled="true"] { background: rgb(16 15 14 / .8); border-bottom-color: var(--hairline); -webkit-backdrop-filter: blur(18px) saturate(140%); backdrop-filter: blur(18px) saturate(140%); }
.brand { justify-self: start; display: flex; align-items: center; gap: 8px; font-size: 25px; font-weight: 550; letter-spacing: -1.3px; }
.brand img { margin-left: -5px; }
.site-nav { display: flex; align-items: center; gap: 32px; font-size: 13px; color: var(--ink-soft); }
.site-nav a { position: relative; padding-block: 14px; white-space: nowrap; transition: color .2s; }
.site-nav a::after { content: ""; position: absolute; left: 0; right: 0; bottom: 8px; height: 2px; border-radius: 2px; background: var(--accent); transform: scaleX(0); transform-origin: left; transition: transform .45s var(--ease); }
.site-nav a:hover, .site-nav a[aria-current="true"] { color: var(--ink); }
.site-nav a[aria-current="true"]::after { transform: scaleX(1); }
.header-actions { justify-self: end; display: flex; align-items: center; gap: 8px; }
.menu-button { display: none; place-items: center; width: 44px; height: 44px; padding: 0; border: 1px solid #625c54; border-radius: 50%; background: rgb(22 20 18 / .86); font-size: 20px; }
.mobile-menu { display: none; position: fixed; inset: calc(var(--header-h) - 4px) 12px auto auto; width: min(300px, calc(100% - 24px)); margin: 0; padding: 8px; border: 1px solid var(--line); border-radius: var(--r-card); background: rgb(25 23 21 / .97); color: var(--ink); box-shadow: 0 24px 60px rgb(5 4 3 / .5); }
.mobile-menu:popover-open { display: grid; }
.mobile-menu a { padding: 15px 16px; border-radius: var(--r-inset); font-size: 18px; letter-spacing: -.02em; }
.mobile-menu a:hover, .mobile-menu a:focus-visible { background: #28241f; outline-offset: -2px; }
.mobile-menu::backdrop { background: rgb(5 4 3 / .4); }

/* Buttons */
.button { display: inline-flex; justify-content: center; align-items: center; gap: 12px; min-height: 48px; padding: 0 22px; border: 1px solid transparent; border-radius: 999px; font-size: 14px; font-weight: 650; letter-spacing: -.015em; line-height: 1; white-space: nowrap; transition: transform .3s var(--ease), background-color .25s, border-color .25s, color .25s; }
.button:not(:disabled):hover { transform: translateY(-2px); }
.button:not(:disabled):active { transform: translateY(1px) scale(.98); }
.button:focus-visible { outline-color: var(--ink); outline-offset: 4px; }
.button .icon { font-size: 16px; }
.button-arrow { display: grid; place-items: center; flex: none; width: 40px; height: 40px; border-radius: 50%; font-size: 24px; transition: transform .35s var(--ease); }
.button:not(:disabled):hover .button-arrow { transform: translate(2px, -2px); }
.button-primary { min-height: 56px; padding: 7px 8px 7px 24px; gap: 22px; border-color: rgb(255 255 255 / .18); background: var(--accent); color: #170e0c; box-shadow: inset 0 1px 1px rgb(255 255 255 / .2), 0 10px 30px rgb(64 14 9 / .35); }
.button-primary:not(:disabled):hover { background: #ff5a51; }
.button-primary .button-arrow { background: #21120f; color: #ff756e; }
.button-small { min-height: 44px; padding: 4px 4px 4px 16px; gap: 12px; font-size: 12.5px; }
.button-small .button-arrow { width: 34px; height: 34px; font-size: 20px; background: rgb(255 255 255 / .08); }
.button-outline { border-color: #625c54; background: rgb(22 20 18 / .86); color: var(--ink); }
.button-outline:not(:disabled):hover { border-color: #9e9385; background: #2a2520; }
.button-outline[aria-pressed="true"]:not(:disabled) { border-color: #c79a4a; background: #33261a; color: #ffe2b3; }
.button-ghost { border-color: rgb(242 237 227 / .24); background: transparent; color: #e6e0d6; }
.button-ghost:not(:disabled):hover { border-color: rgb(242 237 227 / .5); background: rgb(242 237 227 / .05); }
.button-light { border-color: #fff8ed; background: var(--ink); color: var(--canvas); }
.button-light:not(:disabled):hover { background: #fff8ed; }
.button-compact { min-height: 40px; padding-inline: 16px; font-size: 13px; }
.icon-button { display: grid; place-items: center; width: 44px; height: 44px; padding: 0; border: 0; border-radius: 50%; background: transparent; color: var(--muted); font-size: 18px; transition: color .2s, background-color .2s; }
.icon-button:not(:disabled):hover { color: var(--ink); background: rgb(242 237 227 / .08); }
.icon-button:focus-visible { outline-offset: 2px; }
.text-link { display: inline-flex; align-items: center; gap: 10px; min-height: 44px; font-size: 14px; font-weight: 550; }
.text-link .icon { font-size: 16px; transition: transform .3s var(--ease); }
.text-link:hover .icon { transform: translateY(2px); }
.text-button { display: inline-flex; align-items: center; gap: 8px; min-height: 40px; padding: 0 4px; border: 0; background: none; color: var(--ink-soft); font-size: 13px; font-weight: 550; }
.text-button:hover { color: var(--ink); }

/* Hero */
.hero { position: relative; isolation: isolate; min-height: max(720px, 100dvh); overflow: hidden; background: radial-gradient(ellipse at 50% 12%, #2b2722 0, #191714 27%, var(--canvas) 64%); }
.hero-camera-plane { position: relative; padding-top: 120px; }
.hero-display-edge { position: absolute; top: 116px; left: -3%; width: 106%; height: 80px; border-radius: 50% 50% 0 0 / 18px 18px 0 0; border-top: 2px solid #74685a; box-shadow: 0 -2px 0 #211e1a, inset 0 2px 0 #070706; opacity: .7; }
.hero-prompter { position: relative; display: block; width: 390px; margin: 0 auto; padding: 0 8px 8px; border-radius: 0 0 28px 28px; background: #060606; box-shadow: 0 1px 0 #645c51, 0 16px 32px rgb(5 4 3 / .3); }
.hero-prompter-top { display: grid; grid-template-columns: 1fr 30px 1fr; align-items: center; padding: 15px 17px 20px; font-family: var(--mono); font-size: 9px; letter-spacing: .08em; color: #a19b94; }
.hero-prompter-state { justify-self: end; color: #e99086; }
.hero-prompter .camera-lens { width: 10px; height: 10px; background: #394b51; box-shadow: inset 0 0 0 3px #16191c; }
.hero-prompter[data-following] .camera-lens { box-shadow: inset 0 0 0 3px #16191c, 0 0 0 1.5px rgb(255 69 59 / .85), 0 0 12px rgb(255 69 59 / .45); }
.hero-script { display: block; padding: 1px 24px 18px; border-radius: 0 0 21px 21px; background: #0a0909; color: var(--ink); font-size: 30px; line-height: 1.5; letter-spacing: -.04em; font-weight: 500; }
.hero-word { display: inline-block; margin-inline: -4px; padding: 0 4px 2px; border-radius: 5px; transition: background-color .22s, color .22s; }
.hero-word.is-read { color: var(--dim); }
.hero-word.is-current { background: #77332c; }
.hero-prompter:hover .hero-word.is-current { background: #a4473b; }
.hero-content { padding: 22px var(--gutter) 35px; max-width: 1600px; margin-inline: auto; text-align: center; }
.hero h1 { font-size: clamp(136px, min(20.5vw, 28dvh), 300px); line-height: 1.1; letter-spacing: -.085em; font-weight: 500; margin-left: -.065em; }
.brand-period { color: var(--accent); }
.hero-content > p { margin: 16px auto 0; font-size: 23px; line-height: 1.5; letter-spacing: -.03em; }
.hero-content > p span { display: block; margin-top: 8px; color: var(--muted); font-size: 15px; letter-spacing: -.015em; }
.hero-actions { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 14px; margin-top: 30px; }
.hero-demo { min-height: 56px; padding-inline: 22px 24px; gap: 10px; }
.hero-demo .icon { font-size: 13px; }

/* Shared section type */
.eyebrow { font-family: var(--mono); font-size: 11px; letter-spacing: .15em; font-weight: 500; color: var(--muted); }
h2 { font-weight: 450; font-size: clamp(34px, 3.45vw, 53px); line-height: 1.12; letter-spacing: -.05em; }
.feature-detail { display: flex; align-items: center; gap: 10px; margin-top: 18px; color: var(--detail); font-size: 12px; line-height: 1.6; }
.feature-detail::before { content: ""; width: 13px; height: 1px; flex-shrink: 0; background: #d59277; }

/* Experience: the working prompter */
.experience { padding-block: 120px 150px; }
.experience-copy { text-align: center; }
.experience-copy h2 { margin-block: 24px; font-size: clamp(40px, 4.4vw, 68px); }
.experience-copy h2 span { color: var(--muted); }
.experience-copy > p:not(.eyebrow) { margin-inline: auto; max-width: 520px; font-size: 16px; line-height: 1.8; color: #c8c1b7; }
.demo-home { max-width: 1140px; margin: 56px auto 0; }
.demo { display: grid; grid-template-columns: minmax(0, 1fr); min-width: 0; }
.demo-stage { grid-area: 1 / 1; position: relative; overflow: hidden; height: clamp(460px, 48vw, 660px); background: var(--panel-raised); border-radius: var(--r-card); }
.demo-portrait { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.demo-stage::after { content: ""; position: absolute; inset: 0; pointer-events: none; background: linear-gradient(0deg, rgb(9 8 7 / .85), transparent 34%); }
.prompter { position: relative; z-index: 1; width: calc(100% - 70px); max-width: 440px; margin: 0 auto; background: #0a0909; border-radius: 0 0 24px 24px; box-shadow: 0 20px 30px rgb(5 4 3 / .22); }
.prompter::before, .prompter::after { content: ""; position: absolute; width: 18px; height: 18px; top: 0; background: radial-gradient(circle at bottom left, transparent 18px, #0a0909 18.5px); }
.prompter::before { left: -18px; }
.prompter::after { right: -18px; transform: scaleX(-1); }
.prompter-top { display: grid; grid-template-columns: 1fr 28px 1fr; align-items: center; padding: 13px 22px 15px; font-family: var(--mono); font-size: 10px; letter-spacing: .04em; color: #aba39b; }
.camera-lens { justify-self: center; width: 9px; height: 9px; border-radius: 50%; background: #212732; box-shadow: inset 0 0 0 3px #16181c; transition: box-shadow .35s var(--ease); }
/* The lens doubles as the tally light: red while following, amber while you are off-script. */
.prompter[data-state="playing"] .camera-lens { box-shadow: inset 0 0 0 3px #16181c, 0 0 0 1.5px rgb(255 69 59 / .9), 0 0 12px rgb(255 69 59 / .5); }
.prompter[data-state="holding"] .camera-lens { box-shadow: inset 0 0 0 3px #16181c, 0 0 0 1.5px rgb(255 184 64 / .9), 0 0 12px rgb(255 184 64 / .45); }
.demo-status { justify-self: end; display: flex; align-items: center; gap: 5px; text-transform: uppercase; }
.demo-status::before { content: ""; width: 5px; height: 5px; border-radius: 50%; background: currentColor; }
.prompter[data-state="playing"] .demo-status { color: var(--accent); }
.prompter[data-state="holding"] .demo-status { color: var(--amber); }
.script-window { height: 137px; overflow: hidden; padding: 0 26px; mask-image: linear-gradient(to bottom, #000 74%, transparent 100%); }
.script-text { font-size: 25px; font-weight: 550; letter-spacing: -.04em; line-height: 1.65; padding-bottom: 70px; transition: transform .5s var(--ease); }
.script-line { text-wrap: pretty; }
.script-word { display: inline-block; padding-inline: 2px; border-radius: 4px; transition: color .2s; }
.script-word.is-read { color: var(--dim); }
.script-word.is-current { color: #fff5eb; background: #7d2e28; }
.prompter-progress { height: 2px; margin: 2px 26px 0; padding-bottom: 12px; background-clip: content-box; }
.prompter-progress > span { display: block; height: 2px; border-radius: 2px; background: rgb(242 237 227 / .55); transform: scaleX(0); transform-origin: left; transition: transform .5s var(--ease); }
.demo-hint { position: absolute; z-index: 1; bottom: 100px; left: 5%; width: 90%; text-align: center; font-size: 13px; line-height: 1.5; color: var(--ink); text-shadow: 0 1px 8px rgb(9 8 7 / .8); }
/* One control dock for both the inline and full-screen demo. */
.demo-controls { grid-area: 1 / 1; z-index: 2; align-self: end; justify-self: center; display: flex; align-items: center; gap: 14px; margin-bottom: 22px; padding: 6px 6px 6px 6px; border: 1px solid rgb(242 237 227 / .14); border-radius: 999px; background: rgb(16 15 14 / .78); -webkit-backdrop-filter: blur(20px) saturate(140%); backdrop-filter: blur(20px) saturate(140%); box-shadow: inset 0 1px 0 rgb(255 255 255 / .06), 0 18px 40px rgb(5 4 3 / .35); }
.demo-buttons { display: flex; align-items: center; gap: 6px; }
.demo-buttons .button { min-height: 44px; padding-inline: 18px; font-size: 13px; gap: 9px; }
.demo-play { min-width: 138px; }
.demo-play .icon { font-size: 14px; }
.pace-control { display: flex; align-items: center; gap: 12px; padding-inline: 14px 4px; border-left: 1px solid var(--hairline); font-size: 12px; }
.pace-control label { flex-shrink: 0; color: var(--muted); }
.pace-control output { min-width: 62px; font-family: var(--mono); font-size: 12px; font-variant-numeric: tabular-nums; white-space: nowrap; }
.pace-control output span { color: var(--muted); }
.pace-control input { --fill: 44.4%; -webkit-appearance: none; appearance: none; width: 128px; height: 28px; margin: 0; background: transparent; cursor: pointer; }
.pace-control input:disabled { cursor: default; }
.pace-control input::-webkit-slider-runnable-track { height: 4px; border-radius: 4px; background: linear-gradient(to right, var(--accent) var(--fill), #4a443d var(--fill)); }
.pace-control input::-webkit-slider-thumb { -webkit-appearance: none; width: 16px; height: 16px; margin-top: -6px; border: 3px solid var(--accent); border-radius: 50%; background: var(--ink); box-shadow: 0 2px 6px rgb(5 4 3 / .5); transition: transform .2s var(--ease); }
.pace-control input:not(:disabled):hover::-webkit-slider-thumb { transform: scale(1.15); }
.pace-control input::-moz-range-track { height: 4px; border-radius: 4px; background: #4a443d; }
.pace-control input::-moz-range-progress { height: 4px; border-radius: 4px; background: var(--accent); }
.pace-control input::-moz-range-thumb { width: 10px; height: 10px; border: 3px solid var(--accent); border-radius: 50%; background: var(--ink); }
.pace-control input:focus-visible { outline-offset: 2px; border-radius: 4px; }
.demo-tools { display: flex; align-items: center; gap: 2px; padding-left: 8px; border-left: 1px solid var(--hairline); }
.demo-noscript { padding-inline: 12px; color: var(--muted); font-size: 12px; }
.demo-disclaimer { grid-area: 2 / 1; margin-top: 16px; text-align: center; color: var(--muted); font-size: 12px; line-height: 1.6; }

/* Workflow: the cuttable take */
.workflow { padding-block: 20px 150px; }
.studio-intro { max-width: 820px; margin-bottom: 56px; }
.studio-intro h2 { font-size: clamp(44px, 4.8vw, 70px); line-height: 1.08; letter-spacing: -.06em; }
.studio-intro h2 span { color: var(--muted); }
.studio-intro > p { max-width: 52ch; margin-top: 24px; color: #c5beb4; font-size: 16px; line-height: 1.75; }
.studio-example { display: grid; grid-template-columns: minmax(0, 1.55fr) minmax(0, 1fr); gap: clamp(40px, 6vw, 96px); align-items: center; }
.take-preview { display: flex; flex-direction: column; min-height: 420px; padding: 30px 36px 28px; border-radius: var(--r-card); background: #1a1714; box-shadow: inset 0 0 0 1px rgb(242 237 227 / .06), inset 0 1px 0 rgb(240 225 205 / .12); }
.take-meta { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; color: var(--muted); font-family: var(--mono); font-size: 11px; letter-spacing: .06em; }
.take-meta > :first-child { color: #e3d4c4; }
.take-duration { font-variant-numeric: tabular-nums; }
.take-transcript { flex: 1; max-width: 21ch; padding-block: 30px 26px; font-size: clamp(29px, 3vw, 43px); line-height: 1.4; letter-spacing: -.045em; text-wrap: pretty; }
.take-cut { color: var(--accent-soft); text-decoration: underline; text-decoration-color: #6d3d32; text-decoration-thickness: 2px; text-underline-offset: 6px; border-radius: 6px; transition: color .3s, text-decoration-color .3s, opacity .3s; }
.take-cut[role="button"] { cursor: pointer; }
.take-cut[role="button"]:hover { color: #f0a797; text-decoration-color: var(--accent-soft); }
.take-cut[role="button"]:focus-visible { outline-offset: 3px; }
.take-cut[aria-pressed="true"] { color: #6f675e; text-decoration-line: line-through; text-decoration-color: var(--accent); text-decoration-thickness: 3px; }
.take-pause { display: inline-flex; align-items: center; gap: 6px; padding: 7px 13px; border: 1px dashed #7b4639; border-radius: 999px; font-family: var(--mono); font-size: 12px; letter-spacing: .04em; line-height: 1; text-decoration: none; vertical-align: .35em; white-space: nowrap; }
.take-pause[role="button"]:hover { text-decoration: none; border-color: var(--accent-soft); }
.take-pause[aria-pressed="true"] { text-decoration: none; border-style: solid; border-color: #4a443d; color: var(--muted); }
.take-pause-length { font-variant-numeric: tabular-nums; }
.take-wave { --gaps: 8px; display: flex; align-items: center; height: 56px; margin-bottom: 26px; }
.wave-seg { display: flex; align-items: center; flex: none; width: calc(var(--full) * (100% - var(--gaps))); height: 100%; margin-right: 4px; overflow: hidden; transition: width .7s var(--ease), margin .7s var(--ease); }
.wave-seg:last-child { margin-right: 0; }
.wave-seg.is-cut { width: calc(var(--kept) * (100% - var(--gaps))); }
.wave-seg.is-cut[data-kind="words"] { margin-right: 0; }
.wave-bar { flex: 0 0 3px; height: 100%; margin-right: 2px; border-radius: 2px; background: #cfc7bb; transform: scaleY(var(--h)); transition: background-color .25s; }
.wave-seg[data-segment="false-start"] .wave-bar { background: #a8685b; }
.wave-seg[data-kind="pause"] .wave-bar { background: #5c554d; }
.take-wave[data-hover="false-start"] [data-segment="false-start"] .wave-bar, .take-wave[data-hover="pause"] [data-segment="pause"] .wave-bar { background: #f0a797; }
.take-footer { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.studio-cut { min-height: 50px; gap: 14px; padding: 5px 5px 5px 20px; }
.studio-cut-icon { display: grid; place-items: center; width: 38px; height: 38px; border-radius: 50%; background: #dcd5c9; font-size: 17px; transition: transform .3s var(--ease); }
.studio-cut:not(:disabled):hover .studio-cut-icon { transform: rotate(-12deg); }
.take-status { max-width: 250px; min-height: 40px; color: var(--muted); font-size: 12px; line-height: 1.65; text-align: right; }
.studio-edit-copy { max-width: 380px; }
.studio-edit-copy h3 { font-size: clamp(27px, 2.6vw, 38px); font-weight: 450; letter-spacing: -.045em; line-height: 1.15; }
.studio-edit-copy > p { margin-top: 17px; color: var(--muted); font-size: 15px; line-height: 1.75; }
.studio-edit-copy > .studio-example-note { margin-top: 12px; color: var(--detail); font-size: 13px; line-height: 1.6; }
.studio-outcome { display: grid; gap: 12px; margin-top: 32px; padding-top: 26px; border-top: 1px solid var(--line); font-size: 15px; }
.studio-outcome li { display: flex; align-items: center; gap: 12px; }
.studio-outcome .icon { color: var(--detail); font-size: 16px; }
.studio-edit-copy > .studio-original { margin-top: 18px; font-size: 13px; }

/* Features: bento */
.features { padding-block: 20px 140px; }
.features-intro h2 { font-size: clamp(48px, 5.2vw, 76px); line-height: 1.04; letter-spacing: -.06em; }
.features-intro h2 span { color: var(--muted); }
.features-intro > p { max-width: 44ch; margin-top: 22px; color: var(--muted); font-size: 16px; line-height: 1.75; }
.bento { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); gap: 16px; margin-top: 56px; }
.cell { position: relative; display: flex; flex-direction: column; gap: 28px; min-width: 0; padding: 32px; overflow: hidden; border-radius: var(--r-card); background: var(--panel); box-shadow: inset 0 0 0 1px rgb(242 237 227 / .06), inset 0 1px 0 rgb(255 246 226 / .07); }
.cell h3 { font-size: clamp(24px, 2.2vw, 32px); font-weight: 450; letter-spacing: -.045em; line-height: 1.15; text-wrap: balance; }
.cell-copy > p { max-width: 44ch; margin-top: 12px; color: var(--muted); font-size: 15px; line-height: 1.7; }
.cell-icon { display: grid; place-items: center; width: 48px; height: 48px; border-radius: 50%; background: rgb(242 237 227 / .06); box-shadow: inset 0 0 0 1px var(--hairline); color: var(--ink); font-size: 21px; }
.cell-voice { grid-column: span 5; }
.cell-capture { grid-column: span 7; padding: 32px 0 0 32px; }
.cell-capture .cell-copy { padding-right: 32px; }
.cell-edit { grid-column: span 4; background: linear-gradient(165deg, #2c1714 0%, #1c1311 62%); }
.cell-edit .cell-icon { background: rgb(255 69 59 / .14); box-shadow: inset 0 0 0 1px rgb(255 69 59 / .28); color: #ff8a80; }
.cell-edit .text-link { margin-top: auto; align-self: flex-start; }
.cell-edit .text-link:hover .icon { transform: translateY(-2px); }
.cell-sound { grid-column: span 8; flex-direction: row; align-items: stretch; gap: 40px; background: radial-gradient(120% 90% at 100% 100%, #26201b 0%, var(--panel) 60%); }
.cell-sound .cell-copy, .cell-words .cell-copy { flex: 1 1 0; min-width: 0; }
.cell-words { grid-column: span 8; flex-direction: row; align-items: stretch; gap: 40px; }
.cell-export { grid-column: span 4; }
.cell-export .format-list { margin-top: auto; }
.feature-preview { display: block; margin-top: auto; padding: 7px; border-radius: var(--r-card); background: #201b17; box-shadow: inset 0 1px 0 rgb(255 246 226 / .14), inset 0 0 0 1px rgb(255 246 226 / .035); }
.feature-preview img { width: 100%; height: auto; border-radius: var(--r-inset); transition: transform .5s var(--ease); }
.feature-preview-caption { display: flex; align-items: center; justify-content: space-between; padding: 12px 6px 4px 12px; font-size: 13px; font-weight: 550; }
.feature-preview .button-arrow { width: 34px; height: 34px; font-size: 20px; background: #342c24; color: var(--ink); }
.feature-preview:hover img { transform: translateY(-3px); }
.feature-preview:hover .button-arrow { transform: translate(2px, -2px); }
.cell-shot { position: relative; min-height: 300px; margin-top: auto; overflow: hidden; border-radius: var(--r-inset) 0 0 0; box-shadow: inset 1px 1px 0 rgb(242 237 227 / .12); background: #0e0e0e; }
.cell-shot img { position: absolute; top: 0; right: 0; width: max(100%, 1120px); max-width: none; height: auto; transition: transform .8s var(--ease); transform-origin: top right; }
.cell-capture:hover .cell-shot img { transform: scale(1.02); }
.sound-panel { flex: 1.25 1 0; min-width: 0; display: flex; flex-direction: column; gap: 20px; }
.segmented { align-self: flex-start; display: inline-flex; padding: 4px; border-radius: 999px; background: rgb(5 4 3 / .45); box-shadow: inset 0 0 0 1px var(--hairline); }
.segmented button { min-height: 38px; padding: 0 16px; border: 0; border-radius: 999px; background: transparent; color: var(--muted); font-size: 13px; font-weight: 600; transition: background-color .3s var(--ease), color .3s; }
.segmented button:hover { color: var(--ink); }
.segmented button[aria-pressed="true"] { background: var(--ink); color: var(--canvas); }
.segmented button:focus-visible { outline-offset: 2px; }
.sound-wave { flex: 1; display: flex; align-items: center; gap: 3px; min-height: 150px; }
.sound-bar { flex: 1 1 0; min-width: 2px; height: 100%; border-radius: 3px; background: var(--dim); transform: scaleY(var(--a)); transition: transform .7s var(--ease) calc(var(--d) * 6ms), background-color .5s; }
.sound-bar[data-noise] { background: #5c554d; }
.cell-sound[data-sound="studio"] .sound-bar { transform: scaleY(var(--b)); background: var(--ink); }
.cell-sound[data-sound="studio"] .sound-bar[data-noise] { background: #4a443d; }
.suggest { flex: 1.1 1 0; min-width: 0; display: flex; flex-direction: column; padding: 22px 24px; border-radius: var(--r-inset); background: rgb(5 4 3 / .35); box-shadow: inset 0 0 0 1px var(--hairline); }
.suggest-label { display: flex; align-items: center; gap: 8px; color: var(--detail); font-size: 12px; font-weight: 600; }
.suggest-line { flex: 1; margin-top: 16px; font-size: 20px; line-height: 1.45; letter-spacing: -.03em; }
.suggest-line del { color: var(--dim); text-decoration-color: rgb(255 69 59 / .75); text-decoration-thickness: 2px; }
.suggest-line ins { padding: 0 3px; border-radius: 4px; background: rgb(255 69 59 / .14); box-shadow: inset 0 -2px 0 rgb(255 69 59 / .55); text-decoration: none; }
.cell-words[data-suggestion="accepted"] .suggest-line del, .cell-words[data-suggestion="kept"] .suggest-line ins { display: none; }
.cell-words[data-suggestion="accepted"] .suggest-line ins { padding: 0; background: none; box-shadow: none; }
.cell-words[data-suggestion="kept"] .suggest-line del { color: var(--ink); text-decoration: none; }
.suggest-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; margin-top: 20px; }
.suggest-status { min-height: 1.6em; margin-top: 10px; color: var(--muted); font-size: 12px; line-height: 1.6; }
.format-list { display: flex; flex-wrap: wrap; gap: 8px; }
.format-list li { padding: 9px 14px; border-radius: 999px; background: rgb(242 237 227 / .06); box-shadow: inset 0 0 0 1px var(--hairline); font-family: var(--mono); font-size: 12px; letter-spacing: .04em; color: var(--ink-soft); }

/* Privacy */
.privacy { padding-bottom: 10px; }
.privacy-inner { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr); gap: clamp(40px, 7vw, 120px); align-items: center; padding-block: 72px; border-block: 1px solid var(--line); }
.privacy-icon { display: grid; place-items: center; width: 56px; height: 56px; margin-bottom: 28px; border-radius: 50%; background: var(--panel-raised); box-shadow: inset 0 0 0 1px var(--hairline); font-size: 24px; }
.privacy-head p { max-width: 40ch; margin-top: 16px; color: var(--muted); font-size: 16px; line-height: 1.7; }
.privacy-head .text-link { margin-top: 18px; }
.privacy-facts { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); }
.privacy-facts > div { padding: 26px 0 26px 28px; border-left: 1px solid var(--line); }
.privacy-facts > div:nth-child(n + 3) { border-top: 1px solid var(--line); }
.privacy-facts dt { font-family: var(--mono); font-size: 11px; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); }
.privacy-facts dd { display: flex; align-items: center; gap: 10px; margin-top: 10px; font-size: clamp(18px, 1.6vw, 22px); letter-spacing: -.03em; }
.privacy-facts dd .icon { color: var(--detail); font-size: 18px; }

/* Questions */
.questions { display: grid; grid-template-columns: 1fr 1.45fr; gap: 100px; padding-block: 140px 115px; }
.questions-intro { align-self: start; position: sticky; top: calc(var(--header-h) + 48px); }
.questions h2 { margin-top: 24px; }
.question-list details { border-bottom: 1px solid var(--line); }
.question-list summary { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding-block: 26px; cursor: pointer; list-style: none; font-size: 17px; letter-spacing: -.02em; color: #e6e0d6; transition: color .2s; }
.question-list summary:hover, .question-list details[open] summary { color: var(--ink); }
.question-list summary::-webkit-details-marker { display: none; }
.summary-icon { display: grid; place-items: center; flex: none; width: 34px; height: 34px; border-radius: 50%; box-shadow: inset 0 0 0 1px var(--line); color: var(--muted); font-size: 15px; transition: transform .35s var(--ease), background-color .25s, color .25s; }
.question-list summary:hover .summary-icon { color: var(--ink); background: rgb(242 237 227 / .06); }
.question-list details[open] .summary-icon { transform: rotate(45deg); color: var(--ink); }
.question-list details p { padding: 0 56px 28px 0; color: var(--muted); font-size: 15px; line-height: 1.75; }

/* Final call to action and footer */
.final-cta { padding-block: 38px 120px; text-align: center; }
.cta-icon { margin: 0 auto 28px; }
.final-cta h2 { font-size: clamp(38px, 4.75vw, 70px); }
.final-cta .button { margin-top: 34px; }
.availability-note { margin-top: 18px; color: var(--muted); font-size: 13px; }
.site-footer { padding-top: 18px; padding-bottom: 10px; border-top: 1px solid var(--line); overflow: hidden; }
.footer-meta { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.footer-brand { display: block; width: fit-content; font-size: clamp(120px, 23.5vw, 370px); line-height: 1.22; letter-spacing: -.09em; font-weight: 450; margin-left: -.075em; }
.footer-brand span { color: var(--accent); }
.site-footer p, .back-top { font-size: 13px; color: var(--muted); }
.back-top { display: inline-flex; gap: 12px; align-items: center; min-height: 44px; transition: color .2s; }
.back-top:hover { color: var(--ink); }
.back-top .icon { transition: transform .3s var(--ease); }
.back-top:hover .icon { transform: translateY(-3px); }

/* Dialogs */
dialog { position: fixed; border: 1px solid #52483f; border-radius: var(--r-card); padding: 45px; width: min(500px, calc(100% - 36px)); max-height: calc(100svh - 40px); color: var(--ink); background: #1d1a17; }
dialog::backdrop { background: rgb(5 4 3 / .8); -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px); }
.dialog-close { position: absolute; right: 18px; top: 14px; display: flex; align-items: center; gap: 10px; min-height: 44px; padding: 0 14px; border: none; border-radius: 999px; background: transparent; color: var(--muted); font-size: 13px; }
.dialog-close:hover { color: var(--ink); background: rgb(242 237 227 / .06); }
.dialog-close .icon { font-size: 16px; }
dialog > img { margin: 8px 0 28px -9px; }
dialog .eyebrow { margin-bottom: 16px; }
dialog h2 { font-size: 52px; }
dialog > p:not(.eyebrow):not(.dialog-requirement) { color: var(--muted); font-size: 15px; line-height: 1.7; margin-top: 22px; }
.availability-dialog .button { margin-top: 28px; }
.dialog-requirement { color: var(--muted); font-size: 13px; margin-top: 18px; }
.immersive-dialog { inset: 0; margin: 0; border: 0; border-radius: 0; padding: 0; width: 100%; max-width: none; height: 100dvh; max-height: none; overflow: hidden; background: var(--canvas); }
.immersive-dialog #immersive-mount, .immersive-dialog .demo { height: 100%; }
.immersive-dialog .demo { display: block; }
.immersive-dialog .demo-stage { position: absolute; inset: 0; height: 100%; min-height: 0; border-radius: 0; }
.immersive-dialog .demo-stage::after { background: linear-gradient(0deg, rgb(9 8 7 / .85), transparent 45%); }
.immersive-dialog .prompter { max-width: 520px; }
.immersive-dialog .script-window { height: 156px; padding-inline: 32px; }
.immersive-dialog .script-text { font-size: 29px; }
.immersive-dialog .demo-hint { top: 216px; bottom: auto; }
.immersive-dialog .demo-controls { position: absolute; left: 50%; bottom: max(30px, env(safe-area-inset-bottom)); margin: 0; transform: translateX(-50%); }
.immersive-dialog .demo-expand { display: none; }
.immersive-dialog .demo-disclaimer { position: absolute; z-index: 1; right: 42px; bottom: 48px; max-width: 240px; margin: 0; text-align: right; color: #d5cdc1; }
.immersive-dialog .demo-keys { display: block; margin-top: 4px; color: var(--muted); }
.immersive-close { position: absolute; z-index: 3; right: 24px; top: 20px; width: 44px; height: 44px; display: grid; place-items: center; padding: 0; border: 1px solid #776b5f; border-radius: 50%; background: rgb(16 15 14 / .8); color: var(--ink); font-size: 20px; }
.immersive-close:hover { background: var(--canvas); }
.immersive-intro { position: absolute; z-index: 1; left: 42px; bottom: 48px; max-width: 280px; }
.immersive-intro h2 { font-size: 35px; }
.immersive-intro > p { font-size: 13px; line-height: 1.8; color: #d5cdc1; margin-top: 14px; }

/* Motion. Everything below is off when the visitor asks for reduced motion. */
@media (prefers-reduced-motion: no-preference) {
  .hero-content > * { animation: enter .9s var(--ease) both; }
  .hero-content > :nth-child(2) { animation-delay: .08s; }
  .hero-content > :nth-child(3) { animation-delay: .16s; }
  .js .reveal { opacity: 0; transform: translateY(28px); transition: opacity .9s var(--ease), transform .9s var(--ease); transition-delay: calc(var(--i, 0) * 90ms); }
  .js .reveal.is-visible { opacity: 1; transform: none; }
  .hero-prompter { animation: notch-enter .9s var(--ease) both; }
  .suggest-line, .suggest-status:not(:empty) { animation: enter .45s var(--ease) both; }
  dialog[open] { animation: enter .35s var(--ease) both; }
  .immersive-dialog[open] { animation: none; }
  .immersive-dialog[open] .prompter { animation: notch-enter .7s var(--ease) both; }
  .immersive-dialog[open] .demo-portrait { animation: camera-enter .8s var(--ease) both; }
  .mobile-menu:popover-open { animation: menu-enter .35s var(--ease) both; }
  @supports selector(::details-content) {
    .question-list details::details-content { block-size: 0; overflow: clip; transition: block-size .45s var(--ease), content-visibility .45s allow-discrete; }
    .question-list details[open]::details-content { block-size: auto; }
  }
  /* Scroll-linked: the demo settles into place as it arrives, and the footer wordmark rises. */
  @supports (animation-timeline: view()) {
    .demo-home > .demo { animation: stage-settle linear both; animation-timeline: view(); animation-range: entry 0% cover 30%; }
    .footer-brand { animation: brand-rise linear both; animation-timeline: view(); animation-range: entry 0% cover 55%; }
  }
}
@keyframes enter { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: none; } }
@keyframes notch-enter { from { transform: translateY(-105%); } to { transform: none; } }
@keyframes camera-enter { from { opacity: 0; transform: scale(1.035); } to { opacity: 1; transform: none; } }
@keyframes menu-enter { from { opacity: 0; transform: translateY(-8px) scale(.98); } to { opacity: 1; transform: none; } }
@keyframes stage-settle { from { transform: scale(.94); } to { transform: none; } }
@keyframes brand-rise { from { opacity: .25; transform: translateY(22%); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .button:not(:disabled):hover, .button:not(:disabled):active, .button:not(:disabled):hover .button-arrow { transform: none; }
  .feature-preview:hover img, .feature-preview:hover .button-arrow, .cell-capture:hover .cell-shot img { transform: none; }
}
@media (prefers-reduced-transparency: reduce) {
  dialog::backdrop { background: var(--canvas); backdrop-filter: none; }
  .site-header[data-scrolled="true"], .demo-controls { background: var(--canvas); backdrop-filter: none; }
}
@media (hover: none) { .demo-keys { display: none !important; } }
@media (min-width: 1600px) { .hero-content { padding-inline: 96px; } }
@media (min-width: 768px) and (max-height: 700px) { .questions-intro { position: static; } }

@media (max-width: 1099px) {
  .cell-voice { grid-column: span 6; }
  .cell-capture { grid-column: span 6; }
  .cell-edit { grid-column: span 5; }
  .cell-sound { grid-column: span 7; }
  .cell-words { grid-column: span 7; }
  .cell-export { grid-column: span 5; }
  .cell-sound, .cell-words { flex-direction: column; gap: 28px; }
  .sound-wave { min-height: 120px; }
}
@media (max-width: 1023px) {
  .site-header { gap: 20px; }
  .site-nav { gap: 18px; font-size: 12px; }
  .experience { padding-block: 100px; }
  .experience-copy h2 { font-size: 48px; }
  .prompter { width: calc(100% - 40px); max-width: 410px; }
  .script-window { padding-inline: 18px; height: 138px; }
  .script-text { font-size: 23px; }
  .studio-example { grid-template-columns: minmax(0, 1fr); gap: 40px; }
  .studio-edit-copy { max-width: 560px; }
  .questions { gap: 50px; padding-block: 100px; }
  .privacy-inner { grid-template-columns: minmax(0, 1fr); gap: 40px; }
  .privacy-head p { max-width: 52ch; }
  .immersive-intro, .immersive-dialog .demo-disclaimer { display: none; }
}
/* Below this width the dock no longer fits over the portrait, so it sits under the stage. */
@media (max-width: 899px) {
  .demo-controls { grid-area: 2 / 1; justify-self: stretch; display: grid; grid-template-columns: minmax(0, 1fr) auto; row-gap: 10px; margin: 12px 0 0; padding: 10px; border-radius: var(--r-card); background: var(--panel); -webkit-backdrop-filter: none; backdrop-filter: none; box-shadow: inset 0 1px 0 rgb(255 255 255 / .05); }
  .demo-disclaimer { grid-area: 3 / 1; }
  .demo-hint { bottom: 22px; }
  .pace-control { grid-column: 1 / -1; grid-row: 2; padding: 10px 8px 2px; border-left: 0; border-top: 1px solid var(--hairline); }
  .pace-control input { flex: 1; width: auto; }
  .demo-tools { grid-column: 2; grid-row: 1; padding-left: 0; border-left: 0; }
  .immersive-dialog .demo-controls { left: 12px; right: 12px; bottom: max(14px, env(safe-area-inset-bottom)); transform: none; background: rgb(16 15 14 / .92); }
}
@media (max-width: 767px) {
  :root { --gutter: 20px; --header-h: 64px; }
  .site-nav { display: none; }
  .site-header { grid-template-columns: 1fr auto; }
  .menu-button { display: grid; }
  .brand { font-size: 24px; }
  .hero { min-height: max(660px, 100dvh); }
  .hero-camera-plane { padding-top: 110px; }
  .hero-display-edge { top: 106px; }
  .hero-prompter { width: min(310px, calc(100% - 60px)); }
  .hero-prompter-top { padding: 12px 14px 17px; font-size: 8px; }
  .hero-script { padding: 0 16px 16px; font-size: clamp(20px, 5.8vw, 26px); }
  .hero-content { padding: 44px var(--gutter) 60px; }
  .hero h1 { font-size: clamp(90px, 26vw, 190px); }
  .hero-content > p { margin-top: 22px; font-size: 22px; }
  .hero-content > p span { margin-top: 10px; font-size: 14px; }
  .hero-actions { gap: 10px; margin-top: 26px; }
  .hero-actions .button-primary, .hero-demo { min-height: 52px; font-size: 13px; }
  .hero-actions .button-primary { padding: 6px 6px 6px 20px; gap: 16px; }
  .hero-actions .button-arrow { width: 38px; height: 38px; }
  .experience { padding-block: 72px 88px; }
  .experience-copy h2 { font-size: clamp(34px, 9vw, 51px); }
  .experience-copy > p:not(.eyebrow) { font-size: 15px; }
  .experience-copy > p br { display: none; }
  .demo-home { margin-top: 32px; }
  .demo-stage { height: 420px; }
  .demo-portrait { object-position: 56% center; }
  .prompter { width: calc(100% - 30px); max-width: 440px; border-radius: 0 0 18px 18px; }
  .script-text { font-size: clamp(18px, 5.2vw, 25px); }
  .script-window { height: 114px; }
  .demo-play { min-width: 0; }
  .demo-buttons .button-outline { flex: 1; }
  .workflow { padding-bottom: 88px; }
  .studio-intro { margin-bottom: 32px; }
  .studio-intro h2 { font-size: clamp(38px, 9.8vw, 60px); }
  .studio-intro > p { margin-top: 20px; font-size: 15px; }
  .take-preview { min-height: 0; padding: 24px 22px 22px; }
  .take-transcript { max-width: none; font-size: clamp(27px, 7.4vw, 38px); padding-block: 24px 22px; }
  .take-footer { flex-direction: column; align-items: stretch; gap: 14px; }
  .studio-cut { justify-content: space-between; }
  .take-status { max-width: none; min-height: 0; text-align: left; }
  .studio-edit-copy h3 { font-size: 32px; }
  .features { padding-block: 10px 80px; }
  .features-intro h2 { font-size: clamp(44px, 12vw, 76px); }
  .features-intro h2 span { display: block; }
  .bento { margin-top: 36px; gap: 12px; }
  .cell-voice, .cell-capture, .cell-edit, .cell-sound, .cell-words, .cell-export { grid-column: 1 / -1; }
  .cell { padding: 26px 22px; gap: 24px; }
  .cell-capture { padding: 26px 0 0 22px; }
  .cell-capture .cell-copy { padding-right: 22px; }
  .cell-shot { min-height: 0; }
  .cell-shot img { position: static; width: 100%; }
  .sound-wave { gap: 2px; min-height: 110px; }
  .sound-bar { min-width: 0; }
  .cell h3 { font-size: 28px; }
  .suggest { padding: 20px; }
  .suggest-line { font-size: 18px; }
  .privacy-inner { grid-template-columns: minmax(0, 1fr); gap: 36px; padding-block: 56px; }
  .privacy-icon { width: 48px; height: 48px; margin-bottom: 22px; font-size: 21px; }
  .privacy-facts > div { padding: 20px 0 20px 18px; }
  .privacy-facts dd { font-size: 17px; }
  .questions { grid-template-columns: 1fr; gap: 25px; padding-block: 80px 70px; }
  .questions-intro { position: static; }
  .questions h2 { font-size: 39px; margin-top: 20px; }
  .questions h2 br { display: none; }
  .question-list summary { font-size: 16px; padding-block: 22px; }
  .question-list details p { font-size: 14px; padding-right: 12px; }
  .final-cta { padding-block: 24px 80px; }
  .cta-icon { width: 90px; height: 90px; margin-bottom: 22px; }
  .final-cta h2 { font-size: clamp(33px, 8.5vw, 52px); }
  .site-footer { padding-block: 18px 8px; }
  .footer-brand { font-size: 24vw; line-height: 1.35; }
  .site-footer p { max-width: 170px; font-size: 12px; }
  .availability-dialog { padding: 34px 27px; }
  .availability-dialog h2 { font-size: 44px; }
  .immersive-dialog .prompter { width: calc(100% - 128px); margin-inline: auto; }
  .immersive-dialog .prompter-top { padding-inline: 18px; font-size: 9px; }
  .immersive-dialog .script-window { height: 110px; padding-inline: 16px; }
  .immersive-dialog .script-text { font-size: clamp(17px, 4.8vw, 24px); }
  .immersive-dialog .demo-hint { top: 176px; }
  .immersive-close { top: 14px; right: 12px; }
}
@media (max-width: 374px) {
  :root { --gutter: 16px; }
  .hero-content > p { font-size: 20px; }
  .hero-actions .button-primary { gap: 10px; }
  .script-text { font-size: 17px; }
  .script-window { padding-inline: 13px; }
  .demo-buttons .button { font-size: 12px; padding-inline: 12px; }
  .privacy-facts { grid-template-columns: minmax(0, 1fr); }
  .privacy-facts > div:nth-child(n + 2) { border-top: 1px solid var(--line); }
}
@media (max-height: 600px) {
  .immersive-dialog .script-window { height: 68px; }
  .immersive-dialog .script-text { font-size: 21px; }
  .immersive-dialog .demo-hint { top: 117px; }
  .immersive-dialog .demo-controls { bottom: 12px; }
}
