:root {
  --paper: #f4f0e7;
  --paper-bright: #fffdf7;
  --ink: #111214;
  --muted: #5d5d59;
  --line: #b9b5ac;
  --blue: #2d78ae;
  --blue-bright: #237dc0;
  --blue-pale: #dcecf6;
  --red: #e8412e;
  --red-dark: #ba2b1c;
  --white: #ffffff;
  --serif: Georgia, "Times New Roman", Times, serif;
  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI Variable Text", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --mono: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace;
  --max: 1360px;
  --gutter: clamp(20px, 4vw, 64px);
  --rule: 2px solid var(--ink);
}

*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  min-width: 320px;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg, video { display: block; max-width: 100%; }
button, input, textarea, select { font: inherit; }
a { color: inherit; text-decoration: none; }
a:hover { text-decoration: none; }
ul, ol { padding: 0; }
:focus-visible { outline: 3px solid var(--red); outline-offset: 4px; }
::selection { background: var(--blue); color: var(--white); }

h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: .96;
  letter-spacing: -.045em;
}
h1 { font-size: clamp(3.7rem, 7.2vw, 7.8rem); }
h2 { font-size: clamp(3rem, 6.2vw, 6.6rem); }
h3 { font-size: clamp(1.8rem, 3.2vw, 3.5rem); }
p { max-width: 68ch; }
strong { font-weight: 750; }

.page-grid,
.nav-shell,
.site-header > .wrap,
.wrap {
  width: min(calc(100% - (2 * var(--gutter))), var(--max));
  margin-inline: auto;
}
.page-grid { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); column-gap: clamp(16px, 2vw, 30px); }
.section { padding-block: clamp(88px, 11vw, 170px); }
.section--tight { padding-block: clamp(56px, 7vw, 96px); }
.overline {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  line-height: 1.2;
  text-transform: uppercase;
}
.overline span {
  display: inline-grid;
  width: 30px;
  height: 30px;
  border: 1.5px solid currentColor;
  place-items: center;
}
.overline--light { color: rgba(255,255,255,.68); }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.eyebrow::before { content: "■"; color: var(--red); font-size: 9px; }
.eyebrow--dark { color: rgba(255,255,255,.72); }
.lede { font-size: clamp(1.15rem, 2vw, 1.45rem); color: var(--muted); }
.skip {
  position: fixed;
  top: 10px;
  left: -999px;
  z-index: 1000;
  background: var(--ink);
  color: var(--white);
  padding: 12px 18px;
  font-weight: 750;
}
.skip:focus { left: 10px; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(244,240,231,.96);
  border-bottom: var(--rule);
}
.nav-shell,
.site-header > .wrap {
  min-height: 74px;
  display: flex;
  align-items: center;
  gap: 28px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-size: 16px;
  font-weight: 850;
  letter-spacing: -.02em;
  white-space: nowrap;
}
.brand-icon,
.brand .mark {
  width: 40px;
  height: 40px;
  flex: none;
}
.nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.4vw, 36px);
}
.nav > a {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.nav > a:not(.nav-cta):not(.btn) { border-bottom: 1px solid transparent; }
.nav > a:not(.nav-cta):not(.btn):hover { border-color: var(--ink); }
.nav .nav-cta,
.nav .btn {
  background: var(--red);
  border: 1.5px solid var(--ink);
  color: var(--white);
  padding: 12px 16px;
  box-shadow: 4px 4px 0 var(--ink);
}
.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  margin-left: auto;
  border: 1.5px solid var(--ink);
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  place-items: center;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 3px auto;
  background: currentColor;
}

/* Buttons and links */
.action-row, .hero-cta { display: flex; flex-wrap: wrap; gap: 12px; }
.button, .btn {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1.5px solid var(--ink);
  padding: 13px 20px;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  transition: transform .15s ease, box-shadow .15s ease;
}
.button:hover, .btn:hover { transform: translate(-2px,-2px); box-shadow: 5px 5px 0 var(--ink); }
.button--ink { background: var(--ink); color: var(--white); }
.button--paper, .btn--ghost-dark { background: var(--paper); color: var(--ink); }
.button--blue, .btn--emerald { background: var(--blue); color: var(--white); }
.btn--ghost { background: transparent; color: var(--ink); }
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  border-bottom: 1.5px solid currentColor;
  padding-bottom: 5px;
  font-weight: 750;
}
.text-link span { font-size: 1.2em; }
.text-link--light { color: var(--white); }

/* Hero */
.hero { position: relative; border-bottom: var(--rule); }
.hero-rule {
  width: 100%;
  height: 24px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--ink);
}
.hero-rule::before {
  content: "";
  width: 18px;
  height: 18px;
  margin-left: var(--gutter);
  background: var(--blue);
}
.hero-rule span { height: 1px; flex: 1; margin-left: 12px; background: var(--blue); }
.hero-grid {
  min-height: calc(100vh - 98px);
  align-items: center;
  padding-block: clamp(62px, 8vw, 112px);
}
.hero-copy { grid-column: 1 / span 7; position: relative; z-index: 2; }
.hero-copy h1 { margin-top: 34px; }
.hero-copy h1 em { color: var(--blue); font-style: italic; }
.hero-deck {
  max-width: 650px;
  margin-top: 34px;
  font-size: clamp(1.15rem, 1.8vw, 1.5rem);
  line-height: 1.45;
}
.hero-copy .action-row { margin-top: 34px; }
.proof-line {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin-top: 42px;
  list-style: none;
  border-block: 1px solid var(--line);
}
.proof-line li {
  padding: 10px 18px 10px 0;
  margin-right: 18px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.proof-line li + li::before { content: "×"; margin-right: 18px; color: var(--red); }
.hero-visual {
  grid-column: 8 / -1;
  min-height: 680px;
  position: relative;
  display: grid;
  place-items: center;
  background: var(--red);
  border: var(--rule);
}
.hero-visual::before {
  content: "";
  position: absolute;
  inset: 34px -18px -18px 34px;
  z-index: -1;
  background: var(--blue);
  border: var(--rule);
}
.visual-index {
  position: absolute;
  top: 18px;
  left: 20px;
  color: var(--white);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
}
.device {
  overflow: hidden;
  background: var(--ink);
  border: var(--rule);
  padding: 8px;
}
.device img { width: 100%; height: auto; background: #eef4fb; }
.device--hero { width: min(360px, 72%); transform: rotate(2.5deg); box-shadow: 18px 18px 0 var(--ink); }
.cue-tag {
  position: absolute;
  right: -18px;
  bottom: 50px;
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 230px;
  background: var(--paper-bright);
  border: var(--rule);
  padding: 15px 18px;
  box-shadow: 7px 7px 0 var(--ink);
}
.cue-tag__dot { width: 12px; height: 12px; background: var(--red); border-radius: 50%; }
.cue-tag strong { display: block; font-size: 14px; }
.cue-tag small { display: block; color: var(--muted); font-family: var(--mono); font-size: 10px; text-transform: uppercase; }

.word-rail {
  overflow: hidden;
  background: var(--ink);
  border-bottom: var(--rule);
  color: var(--white);
  white-space: nowrap;
}
.word-rail div {
  width: max-content;
  padding-block: 14px;
  color: var(--paper);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .18em;
}

/* Modes */
.modes-section { background: var(--paper); }
.section-intro { grid-column: 1 / span 9; }
.section-intro h2 { margin-top: 34px; }
.section-intro > p:last-child { margin-top: 28px; font-size: 1.2rem; color: var(--muted); }
.mode-ledger { grid-column: 1 / -1; margin-top: clamp(60px, 8vw, 110px); border-bottom: var(--rule); }
.mode-row {
  display: grid;
  grid-template-columns: 80px minmax(260px, 1.2fr) minmax(260px, .8fr);
  gap: 30px;
  align-items: start;
  padding: 34px 26px;
  border-top: var(--rule);
}
.mode-row--featured { background: var(--blue); color: var(--white); }
.mode-number { font-family: var(--mono); font-size: 12px; font-weight: 700; }
.mode-label {
  margin-bottom: 12px;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.mode-title h3 { font-size: clamp(2rem, 3.5vw, 3.8rem); }
.mode-row > p:last-child { color: var(--muted); font-size: 16px; }
.mode-row--featured > p:last-child { color: rgba(255,255,255,.82); }
.options-spread {
  grid-column: 1 / -1;
  min-height: 680px;
  margin-top: clamp(70px, 9vw, 130px);
  display: grid;
  grid-template-columns: 1fr .85fr;
  align-items: center;
  background: var(--red);
  border: var(--rule);
  overflow: hidden;
}
.options-spread figcaption {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 18px;
  padding: clamp(32px, 6vw, 86px);
  color: var(--white);
  font-family: var(--serif);
  font-size: clamp(2rem, 4.4vw, 4.8rem);
  letter-spacing: -.04em;
  line-height: 1.02;
}
.options-spread figcaption span {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.device--options { width: min(360px, 76%); margin: 60px auto; transform: rotate(-2deg); box-shadow: 18px 18px 0 var(--ink); }

/* Cue */
.cue-section { background: var(--ink); color: var(--white); }
.cue-grid { align-items: center; }
.cue-copy { grid-column: 1 / span 5; }
.cue-copy h2 { margin-top: 34px; color: var(--paper); }
.cue-copy > p:not(.overline) { margin-top: 28px; color: rgba(255,255,255,.72); font-size: 1.12rem; }
.cue-facts { margin-top: 44px; list-style: none; border-top: 1px solid rgba(255,255,255,.28); }
.cue-facts li {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 16px;
  padding-block: 14px;
  border-bottom: 1px solid rgba(255,255,255,.28);
  font-size: 14px;
}
.cue-facts span { color: rgba(255,255,255,.58); }
.prompt-board {
  grid-column: 7 / -1;
  min-height: 650px;
  display: flex;
  flex-direction: column;
  background: var(--paper-bright);
  border: 2px solid var(--white);
  color: var(--ink);
  box-shadow: 20px 20px 0 var(--blue);
}
.prompt-status,
.prompt-controls {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 58px;
  padding-inline: 24px;
  border-bottom: 1.5px solid var(--ink);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.prompt-status span { width: 10px; height: 10px; border-radius: 50%; background: var(--blue); }
.prompt-copy {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 22px;
  padding: clamp(30px, 6vw, 76px);
  font-family: var(--serif);
  font-size: clamp(1.9rem, 3.2vw, 3.4rem);
  line-height: 1.12;
}
.prompt-copy p { max-width: 18ch; }
.prompt-copy .spoken { color: #9e9d98; }
.prompt-cue { display: flex; align-items: center; width: 100%; }
.prompt-cue::before { content: ""; width: 12px; height: 12px; background: var(--blue); }
.prompt-cue i { height: 2px; flex: 1; margin-left: 10px; background: var(--blue); }
.prompt-controls { justify-content: space-between; border-top: 1.5px solid var(--ink); border-bottom: 0; }

/* Workflow */
.workflow-section { background: var(--paper-bright); }
.section-intro--workflow { grid-column: 1 / span 8; }
.workflow-grid {
  grid-column: 1 / -1;
  margin-top: clamp(64px, 9vw, 130px);
  display: grid;
  grid-template-columns: repeat(12, minmax(0,1fr));
  gap: clamp(18px, 2.4vw, 34px);
  align-items: start;
}
.workflow-card {
  border: var(--rule);
  padding: clamp(18px, 2vw, 28px);
}
.workflow-card--library { grid-column: 1 / span 5; background: var(--blue-pale); }
.workflow-card--voice { grid-column: 7 / span 5; margin-top: 120px; background: var(--paper); }
.workflow-card--record { grid-column: 2 / span 5; margin-top: -10px; background: var(--red); color: var(--white); }
.workflow-card--edit { grid-column: 8 / span 5; margin-top: 110px; background: var(--blue); color: var(--white); }
.workflow-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.workflow-meta span { border: 1px solid currentColor; padding: 6px 9px; }
.workflow-card .device { width: min(310px, 80%); margin-inline: auto; box-shadow: 12px 12px 0 var(--ink); }
.workflow-card figcaption {
  max-width: 28ch;
  margin-top: 28px;
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2.6vw, 2.5rem);
  line-height: 1.06;
}

/* Script */
.script-section { background: var(--blue); color: var(--white); border-block: var(--rule); }
.script-grid { align-items: center; }
.script-copy { grid-column: 1 / span 6; }
.script-copy h2 { margin-top: 34px; }
.script-copy > p:not(.overline) { margin-top: 30px; color: rgba(255,255,255,.78); font-size: 1.12rem; }
.format-list { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 38px; }
.format-list span {
  border: 1px solid var(--white);
  padding: 8px 12px;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
}
.script-sheet {
  grid-column: 8 / -1;
  background: var(--paper-bright);
  border: var(--rule);
  color: var(--ink);
  padding: clamp(30px, 5vw, 68px);
  box-shadow: 18px 18px 0 var(--ink);
  transform: rotate(1.5deg);
}
.sheet-header {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 18px;
  border-bottom: 1.5px solid var(--ink);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
}
.script-sheet p { margin-top: 46px; font-family: var(--serif); font-size: clamp(1.8rem, 3vw, 3.2rem); line-height: 1.15; }
.sheet-progress { height: 7px; margin-top: 48px; background: var(--line); }
.sheet-progress span { display: block; width: 72%; height: 100%; background: var(--blue); }
.script-sheet small { display: block; margin-top: 14px; color: var(--muted); font-family: var(--mono); font-size: 9px; letter-spacing: .06em; }

/* Rig */
.rig-section { background: var(--red); color: var(--white); }
.section-intro--compact { grid-column: 1 / span 8; }
.rig-ledger { grid-column: 1 / -1; margin-top: 70px; border-block: 1.5px solid var(--white); }
.rig-ledger article {
  display: grid;
  grid-template-columns: 70px minmax(210px,.8fr) 1.4fr;
  gap: 24px;
  align-items: baseline;
  padding: 24px 0;
  border-bottom: 1px solid rgba(255,255,255,.45);
}
.rig-ledger article:last-child { border-bottom: 0; }
.rig-ledger article > span { font-family: var(--mono); font-size: 11px; }
.rig-ledger h3 { font-family: var(--sans); font-size: 1.2rem; font-weight: 800; letter-spacing: -.02em; }
.rig-ledger p { color: rgba(255,255,255,.78); }

/* Privacy */
.privacy-section { background: var(--ink); color: var(--white); overflow: hidden; }
.privacy-grid { align-items: center; }
.privacy-word {
  grid-column: 1 / span 7;
  color: var(--blue);
  font-family: var(--sans);
  font-size: clamp(7rem, 16vw, 15rem);
  font-weight: 950;
  letter-spacing: -.1em;
  line-height: .7;
  transform: rotate(-90deg) translateY(-10%);
}
.privacy-copy { grid-column: 8 / -1; position: relative; z-index: 2; }
.privacy-copy h2 { margin-top: 34px; }
.privacy-copy > p:not(.overline) { margin-top: 28px; color: rgba(255,255,255,.75); }
.privacy-note { padding: 22px; border: 1px solid rgba(255,255,255,.4); font-size: 14px; }
.privacy-copy .text-link { margin-top: 34px; }

/* FAQ and CTA */
.faq-section { background: var(--paper); }
.faq-grid > div:first-child { grid-column: 1 / span 5; }
.faq-grid h2 { margin-top: 34px; }
.faq { grid-column: 7 / -1; border-top: var(--rule); }
.faq details { border-bottom: var(--rule); }
.faq summary {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  cursor: pointer;
  list-style: none;
  font-weight: 800;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--red); font-family: var(--mono); font-size: 22px; }
.faq details[open] summary::after { content: "−"; }
.faq details p { padding: 0 42px 24px 0; color: var(--muted); font-size: 15px; }

.get-section { background: var(--paper-bright); border-top: var(--rule); }
.get-grid > div:first-child { grid-column: 1 / span 7; }
.get-grid h2 { margin-top: 34px; }
.get-action { grid-column: 9 / -1; align-self: end; }
.get-action > p { margin-bottom: 28px; font-family: var(--serif); font-size: 1.5rem; line-height: 1.25; }
.get-action .text-link { margin-top: 28px; }
[aria-disabled="true"] { cursor: default; }

/* Footer */
.site-footer { background: var(--ink); color: var(--white); }
.footer-main {
  width: min(calc(100% - (2 * var(--gutter))), var(--max));
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  padding-block: clamp(60px, 8vw, 110px);
}
.brand--footer { color: var(--white); }
.footer-main > p { grid-column: 1; color: rgba(255,255,255,.58); }
.footer-main nav { grid-column: 2; grid-row: 1 / span 2; display: grid; align-content: start; gap: 12px; justify-items: end; }
.footer-main nav a { border-bottom: 1px solid rgba(255,255,255,.35); font-family: var(--mono); font-size: 11px; text-transform: uppercase; }
.footer-base {
  width: min(calc(100% - (2 * var(--gutter))), var(--max));
  margin-inline: auto;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-block: 20px;
  border-top: 1px solid rgba(255,255,255,.32);
  color: rgba(255,255,255,.52);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .04em;
  text-transform: uppercase;
}

/* Support, privacy and document pages */
.page-hero {
  background: var(--blue);
  border-bottom: var(--rule);
  color: var(--white);
  padding-block: clamp(70px, 9vw, 130px);
}
.page-hero .wrap { position: relative; }
.page-hero .wrap::before {
  content: "REFERENCE / EVER TELEPROMPTER";
  display: block;
  margin-bottom: 34px;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
}
.page-hero h1 { font-size: clamp(4.5rem, 10vw, 9rem); }
.page-hero .lede { max-width: 780px; margin-top: 28px; color: rgba(255,255,255,.78); }
.updated { margin-top: 24px; color: rgba(255,255,255,.58); font-family: var(--mono); font-size: 11px; }

.grid { display: grid; gap: 20px; }
.grid--3 { grid-template-columns: repeat(3,minmax(0,1fr)); }
.grid--2 { grid-template-columns: repeat(2,minmax(0,1fr)); }
.tile, .card {
  background: var(--paper-bright);
  border: var(--rule);
  padding: 26px;
}
.tile .ico, .card .ico {
  width: 42px;
  height: 42px;
  display: grid;
  margin-bottom: 28px;
  background: var(--red);
  color: var(--white);
  place-items: center;
}
.tile h3, .card h3 { font-family: var(--sans); font-size: 1.15rem; font-weight: 850; letter-spacing: -.02em; }
.tile p, .card p { margin-top: 12px; color: var(--muted); font-size: 15px; }
.tile a { display: inline-block; margin-top: 18px; border-bottom: 1px solid currentColor; color: var(--blue); font-weight: 750; }

.doc-layout { display: grid; grid-template-columns: 240px minmax(0,820px); gap: clamp(50px,8vw,120px); justify-content: center; }
.toc { position: sticky; top: 100px; align-self: start; border-top: var(--rule); }
.toc h4 {
  padding-block: 16px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.toc ul { list-style: none; border-top: 1px solid var(--line); }
.toc li { border-bottom: 1px solid var(--line); }
.toc a { display: block; padding: 9px 0; color: var(--muted); font-size: 13px; }
.toc a:hover { color: var(--red); }
.doc { min-width: 0; }
.doc > h2 {
  margin-top: 68px;
  padding-top: 28px;
  border-top: var(--rule);
  font-size: clamp(2.4rem,4.5vw,4.4rem);
  scroll-margin-top: 110px;
}
.doc > h2:first-child { margin-top: 0; }
.doc h3 { margin-top: 38px; font-family: var(--sans); font-size: 1.2rem; font-weight: 850; letter-spacing: -.02em; }
.doc p { margin-top: 18px; color: #343432; }
.doc ul, .doc ol { margin: 18px 0 0 22px; }
.doc li + li { margin-top: 8px; }
.doc a { color: var(--blue); border-bottom: 1px solid currentColor; }
.callout {
  margin-top: 26px;
  background: var(--blue-pale);
  border: var(--rule);
  border-left: 12px solid var(--blue);
  padding: 22px 26px;
}
.callout p { margin: 0; }
.tbl-scroll { margin-top: 26px; overflow-x: auto; border: var(--rule); }
.tbl { width: 100%; min-width: 620px; border-collapse: collapse; background: var(--paper-bright); font-size: 14px; }
.tbl th, .tbl td { padding: 15px; border: 1px solid var(--line); text-align: left; vertical-align: top; }
.tbl th { background: var(--ink); color: var(--white); font-family: var(--mono); font-size: 10px; letter-spacing: .06em; text-transform: uppercase; }
.tbl td:first-child { font-weight: 750; }

/* Legacy footer structure retained on reference pages */
.site-footer > .wrap { padding-block: 60px 24px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; }
.footer-grid .brand { color: var(--white); }
.footer-grid .brand-col p { max-width: 470px; margin-top: 18px; color: rgba(255,255,255,.55); font-size: 14px; }
.footer-grid h4 { margin-bottom: 14px; font-family: var(--mono); font-size: 10px; letter-spacing: .1em; text-transform: uppercase; }
.footer-grid ul { display: grid; gap: 8px; list-style: none; }
.footer-grid a { color: rgba(255,255,255,.62); font-size: 14px; }
.site-footer > .wrap > .footer-base { width: 100%; margin-top: 52px; }

/* 404 */
.error-page { min-height: 100vh; display: flex; flex-direction: column; }
.error-home { margin-left: auto; min-height: 42px; padding-block: 9px; }
.not-found {
  position: relative;
  flex: 1;
  min-height: 760px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  align-items: center;
  overflow: hidden;
  border-bottom: var(--rule);
}
.not-found__number {
  color: var(--blue);
  font-size: clamp(12rem,34vw,34rem);
  font-weight: 950;
  letter-spacing: -.12em;
  line-height: .7;
  transform: translateX(-7%);
}
.not-found__cue {
  position: absolute;
  left: var(--gutter);
  right: 0;
  top: 48%;
  display: flex;
  align-items: center;
}
.not-found__cue::before { content: ""; width: 18px; height: 18px; background: var(--red); }
.not-found__cue span { height: 2px; flex: 1; margin-left: 12px; background: var(--red); }
.not-found__copy { position: relative; z-index: 2; padding: 60px var(--gutter) 60px 20px; }
.not-found__copy h1 { margin-top: 28px; font-size: clamp(3.5rem,7vw,7rem); }
.not-found__copy > p:not(.overline) { margin-top: 24px; color: var(--muted); }
.not-found__copy .action-row { margin-top: 30px; }

/* Responsive */
@media (max-width: 1050px) {
  .hero-copy { grid-column: 1 / span 7; }
  .hero-visual { grid-column: 8 / -1; min-height: 570px; }
  .cue-copy { grid-column: 1 / span 5; }
  .prompt-board { grid-column: 6 / -1; }
  .privacy-word { grid-column: 1 / span 6; }
  .privacy-copy { grid-column: 7 / -1; }
}

@media (max-width: 900px) {
  .nav-toggle { display: grid; }
  .nav {
    position: absolute;
    top: 74px;
    left: 0;
    right: 0;
    display: none;
    margin: 0;
    padding: 18px var(--gutter) 24px;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--paper);
    border-bottom: var(--rule);
  }
  .nav.open { display: flex; }
  .nav > a { min-height: 48px; display: flex; align-items: center; border-bottom: 1px solid var(--line); }
  .nav .nav-cta, .nav .btn { margin-top: 12px; justify-content: center; }
  .page-grid { grid-template-columns: repeat(4,minmax(0,1fr)); }
  .hero-grid { min-height: 0; }
  .hero-copy { grid-column: 1 / -1; }
  .hero-visual { grid-column: 1 / -1; min-height: 620px; margin-top: 70px; }
  .section-intro,
  .section-intro--workflow,
  .section-intro--compact { grid-column: 1 / -1; }
  .mode-ledger, .options-spread { grid-column: 1 / -1; }
  .mode-row { grid-template-columns: 54px 1fr; }
  .mode-row > p:last-child { grid-column: 2; }
  .cue-copy, .prompt-board { grid-column: 1 / -1; }
  .prompt-board { margin-top: 64px; }
  .workflow-grid { grid-column: 1 / -1; grid-template-columns: repeat(4,1fr); }
  .workflow-card--library, .workflow-card--voice, .workflow-card--record, .workflow-card--edit {
    grid-column: span 2;
    margin-top: 0;
  }
  .script-copy, .script-sheet { grid-column: 1 / -1; }
  .script-sheet { margin-top: 64px; }
  .rig-ledger { grid-column: 1 / -1; }
  .privacy-word { grid-column: 1 / -1; transform: none; margin-bottom: 60px; }
  .privacy-copy { grid-column: 1 / -1; }
  .faq-grid > div:first-child, .faq { grid-column: 1 / -1; }
  .faq { margin-top: 60px; }
  .get-grid > div:first-child, .get-action { grid-column: 1 / -1; }
  .get-action { margin-top: 50px; }
  .grid--3 { grid-template-columns: 1fr 1fr; }
  .doc-layout { grid-template-columns: 1fr; }
  .toc { display: none; }
}

@media (max-width: 640px) {
  :root { --gutter: 18px; }
  body { font-size: 16px; }
  h1 { font-size: clamp(3.35rem,17vw,5.4rem); }
  h2 { font-size: clamp(2.8rem,14vw,4.5rem); }
  .brand span { max-width: 150px; white-space: normal; line-height: 1; }
  .hero-copy h1, .section-intro h2, .cue-copy h2, .script-copy h2, .faq-grid h2, .get-grid h2 { margin-top: 26px; }
  .hero-deck { font-size: 1.08rem; }
  .action-row, .hero-cta { flex-direction: column; align-items: stretch; }
  .button, .btn { width: 100%; }
  .proof-line { display: grid; }
  .proof-line li { margin: 0; padding: 9px 0; }
  .proof-line li + li::before { content: ""; margin: 0; }
  .hero-visual { min-height: 510px; }
  .hero-visual::before { inset: 18px -9px -9px 18px; }
  .device--hero { width: 72%; box-shadow: 10px 10px 0 var(--ink); }
  .cue-tag { right: -8px; bottom: 28px; min-width: 190px; padding: 12px; }
  .mode-row { padding: 26px 10px; gap: 18px; }
  .mode-row > p:last-child { grid-column: 1 / -1; }
  .options-spread { grid-template-columns: 1fr; }
  .options-spread figcaption { min-height: 360px; padding: 34px 24px; }
  .device--options { margin-block: 46px; }
  .cue-facts li { grid-template-columns: 105px 1fr; }
  .prompt-board { min-height: 560px; box-shadow: 10px 10px 0 var(--blue); }
  .prompt-copy { font-size: 1.8rem; padding: 28px; }
  .workflow-card--library, .workflow-card--voice, .workflow-card--record, .workflow-card--edit { grid-column: 1 / -1; }
  .workflow-card .device { width: min(280px,82%); }
  .script-sheet { padding: 28px; box-shadow: 10px 10px 0 var(--ink); }
  .rig-ledger article { grid-template-columns: 42px 1fr; }
  .rig-ledger article p { grid-column: 2; }
  .privacy-word { font-size: 28vw; }
  .footer-main { grid-template-columns: 1fr; }
  .footer-main nav { grid-column: 1; grid-row: auto; justify-items: start; }
  .footer-base { flex-direction: column; }
  .grid--3, .grid--2 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .page-hero h1 { font-size: 18vw; }
  .doc > h2 { font-size: 2.7rem; }
  .not-found { grid-template-columns: 1fr; align-content: center; }
  .not-found__number { position: absolute; top: 80px; opacity: .18; }
  .not-found__copy { padding: 120px var(--gutter) 70px; }
  .not-found__cue { top: 33%; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .001ms !important; animation-duration: .001ms !important; }
}
