/* UNDERSTAIRS TV — understairs.tv
   No external requests: fonts are self-hosted, no third-party scripts, no analytics. */

/* ── Fonts (subset of Inter, same-origin) ───────────────────────── */

@font-face {
  font-family: "Inter var"; font-style: normal; font-weight: 400; font-display: swap;
  src: url("/fonts/inter-400.woff2") format("woff2");
}
@font-face {
  font-family: "Inter var"; font-style: normal; font-weight: 600; font-display: swap;
  src: url("/fonts/inter-600.woff2") format("woff2");
}
@font-face {
  font-family: "Inter Disp"; font-style: normal; font-weight: 700; font-display: swap;
  src: url("/fonts/interdisplay-700.woff2") format("woff2");
}
@font-face {
  font-family: "Inter Disp"; font-style: normal; font-weight: 800; font-display: swap;
  src: url("/fonts/interdisplay-800.woff2") format("woff2");
}

:root {
  --bg: #04070e;
  --bg-soft: #070d18;
  --panel: rgba(255, 255, 255, .04);
  --panel-strong: rgba(255, 255, 255, .07);
  --edge: rgba(255, 255, 255, .08);
  --edge-bright: rgba(255, 255, 255, .17);
  --text: #f0f4fa;
  --muted: #9aabc3;
  --muted-dim: #6d7f9a;
  --accent: #34c6ff;
  --accent-2: #6f7dff;
  --accent-3: #21e0c4;
  --radius: 20px;
  --shadow: 0 30px 70px -32px rgba(0, 0, 0, .96);
  --body: "Inter var", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --display: "Inter Disp", "Inter var", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --gutter: 1.5rem;
  color-scheme: dark;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font: 400 16px/1.65 var(--body);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3 { font-family: var(--display); font-weight: 800; }

/* ── Ambient background ─────────────────────────────────────────── */

.aurora {
  position: fixed; inset: 0; z-index: -2;
  background:
    radial-gradient(1200px 760px at 14% -12%, rgba(52, 198, 255, .17), transparent 60%),
    radial-gradient(1000px 680px at 86% 2%, rgba(111, 125, 255, .16), transparent 62%),
    radial-gradient(900px 640px at 50% 108%, rgba(33, 224, 196, .09), transparent 60%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-soft) 52%, var(--bg) 100%);
}
.aurora::after {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(circle at 50% 16%, #000 0%, transparent 68%);
  -webkit-mask-image: radial-gradient(circle at 50% 16%, #000 0%, transparent 68%);
}
.orb { position: fixed; z-index: -1; border-radius: 50%; filter: blur(100px); opacity: .45; pointer-events: none; }
.orb-1 { width: 44vw; height: 44vw; left: -10vw; top: -8vw; background: radial-gradient(circle, rgba(52,198,255,.55), transparent 70%); animation: drift1 28s ease-in-out infinite; }
.orb-2 { width: 40vw; height: 40vw; right: -8vw; top: 6vh; background: radial-gradient(circle, rgba(111,125,255,.5), transparent 70%); animation: drift2 34s ease-in-out infinite; }
@keyframes drift1 { 0%,100% { transform: translate3d(0,0,0) scale(1); } 50% { transform: translate3d(4vw,5vh,0) scale(1.08); } }
@keyframes drift2 { 0%,100% { transform: translate3d(0,0,0) scale(1); } 50% { transform: translate3d(-5vw,4vh,0) scale(1.1); } }

/* ── Shell ──────────────────────────────────────────────────────── */

.wrap { max-width: 70rem; margin: 0 auto; padding: 0 var(--gutter); }
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

header.site {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: saturate(160%) blur(16px);
  -webkit-backdrop-filter: saturate(160%) blur(16px);
  background: rgba(4, 7, 14, .7);
  border-bottom: 1px solid transparent;
  transition: border-color .3s ease, background .3s ease;
}
header.site.scrolled { border-bottom-color: var(--edge); background: rgba(4, 7, 14, .88); }
header.site .bar { display: flex; align-items: center; gap: .8rem; padding: .9rem 0; }
header.site .brand {
  display: flex; align-items: center; gap: .65rem;
  font-family: var(--display); font-weight: 700; font-size: .9rem; letter-spacing: .14em;
  color: var(--text);
}
header.site .brand:hover { text-decoration: none; }
header.site .brand img { width: 30px; height: 30px; display: block; }
header.site nav { margin-left: auto; display: flex; align-items: center; gap: 1.6rem; }
header.site nav a { color: var(--muted); font-size: .92rem; font-weight: 600; }
header.site nav a:hover { color: var(--text); text-decoration: none; }
/* Mark the page you are on, so one shared nav still tells you where you are. */
header.site nav a[aria-current="page"] { color: var(--text); }
header.site nav a[aria-current="page"]::after {
  content: ""; display: block; height: 2px; margin-top: 3px; border-radius: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent-3));
}
header.site nav a.nav-cta {
  padding: .48rem 1rem; border-radius: 999px;
  background: var(--panel); border: 1px solid var(--edge); color: var(--text);
}
header.site nav a.nav-cta:hover { border-color: var(--edge-bright); background: var(--panel-strong); }

/* ── Buttons ────────────────────────────────────────────────────── */

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  padding: .85rem 1.5rem; border-radius: 999px; min-height: 48px;
  font-family: var(--body); font-size: .97rem; font-weight: 600;
  border: 1px solid transparent; cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
}
.btn:hover { text-decoration: none; transform: translateY(-2px); }
.btn-primary {
  color: #03121b;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-3) 100%);
  box-shadow: 0 14px 36px -14px rgba(52, 198, 255, .75);
}
.btn-primary:hover { box-shadow: 0 20px 48px -14px rgba(52, 198, 255, .9); }
.btn-ghost { color: var(--text); background: var(--panel); border-color: var(--edge); }
.btn-ghost:hover { background: var(--panel-strong); border-color: var(--edge-bright); }
.btn svg { width: 17px; height: 17px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

/* ── Hero ───────────────────────────────────────────────────────── */

.hero { padding: 4.5rem 0 2.5rem; text-align: center; }
/* BLOCK, not inline-block. As an inline-block it shared a line with the
   eyebrow pill, so the two centred as a pair and the mark sat ~200px left of
   centre on any viewport wide enough to fit both. */
.hero .mark-glow { position: relative; display: block; width: fit-content; margin: 0 auto 1.6rem; }
.hero .mark-glow img { width: 88px; height: 88px; display: block; position: relative; z-index: 1; }
.hero .mark-glow::after {
  content: ""; position: absolute; left: 50%; top: 54%; transform: translate(-50%, -50%);
  width: 190px; height: 190px; border-radius: 50%;
  background: radial-gradient(circle, rgba(52, 198, 255, .4), transparent 68%);
  filter: blur(28px); z-index: 0;
}
.eyebrow {
  display: inline-flex; align-items: center; gap: .55rem;
  padding: .4rem 1rem; margin-bottom: 1.4rem;
  border-radius: 999px; border: 1px solid var(--edge); background: var(--panel);
  color: var(--muted); font-size: .82rem; font-weight: 600; letter-spacing: .02em;
}
.eyebrow .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent-3); box-shadow: 0 0 0 4px rgba(33,224,196,.16); }

.hero h1 {
  font-size: clamp(2.5rem, 6.4vw, 4.4rem);
  line-height: 1.03; letter-spacing: -.035em; margin: 0 0 1.15rem;
}
.grad {
  background: linear-gradient(112deg, var(--accent) 6%, var(--accent-2) 50%, var(--accent-3) 96%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero p.lead {
  max-width: 38rem; margin: 0 auto 2rem;
  color: var(--muted); font-size: clamp(1.05rem, 1.9vw, 1.2rem); line-height: 1.62;
}
.cta-row { display: flex; gap: .8rem; justify-content: center; flex-wrap: wrap; }
.cta-note { margin-top: 1.1rem; color: var(--muted-dim); font-size: .88rem; }

/* ── Hero screenshot ────────────────────────────────────────────── */

.stage { padding: 1rem 0 2rem; }
.screen {
  position: relative; max-width: 64rem; margin: 0 auto; padding: 0;
  border-radius: 16px; overflow: hidden;
  border: 1px solid var(--edge-bright);
  box-shadow: var(--shadow), 0 0 90px -30px rgba(52, 198, 255, .45);
  background: #060b14;
}
.screen img { display: block; width: 100%; height: auto; }
.screen::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(180deg, rgba(52,198,255,.06), transparent 40%);
}
.shot-note { margin: 1rem auto 0; color: var(--muted-dim); font-size: .82rem; text-align: center; }

/* ── Sections ───────────────────────────────────────────────────── */

section { padding: 4.5rem 0; }
.section-head { max-width: 44rem; margin-bottom: 2.6rem; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.kicker {
  display: block; margin-bottom: .65rem;
  color: var(--accent); font-size: .78rem; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase;
}
h2 { font-size: clamp(1.8rem, 3.6vw, 2.6rem); line-height: 1.14; letter-spacing: -.028em; margin: 0 0 .8rem; }
.section-head p { color: var(--muted); margin: 0; font-size: 1.05rem; }

/* ── Bento feature grid ─────────────────────────────────────────── */

.grid { display: grid; gap: 1rem; grid-template-columns: repeat(3, 1fr); grid-auto-rows: 1fr; }
.card {
  position: relative; padding: 1.7rem 1.55rem 1.5rem;
  border-radius: var(--radius); border: 1px solid var(--edge);
  background: var(--panel);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  transition: transform .25s ease, border-color .25s ease, background .25s ease;
  overflow: hidden;
}
.card::before {
  content: ""; position: absolute; inset: 0; border-radius: inherit; padding: 1px;
  background: linear-gradient(140deg, rgba(52,198,255,.55), transparent 40%, transparent 62%, rgba(111,125,255,.4));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  opacity: 0; transition: opacity .25s ease; pointer-events: none;
}
.card:hover { transform: translateY(-4px); background: var(--panel-strong); border-color: var(--edge-bright); }
.card:hover::before { opacity: 1; }
/* Lead card carries a tint so the grid has a focal point. It deliberately does
   NOT span two columns: with six cards that leaves an orphan on the last row. */
.card.wide {
  background:
    radial-gradient(500px 220px at 15% 0%, rgba(52,198,255,.13), transparent 62%),
    var(--panel);
  border-color: rgba(52, 198, 255, .22);
}
.card .ico {
  width: 44px; height: 44px; border-radius: 13px; margin-bottom: 1rem;
  display: grid; place-items: center;
  background: linear-gradient(135deg, rgba(52,198,255,.22), rgba(111,125,255,.17));
  border: 1px solid rgba(52,198,255,.28);
}
.card .ico svg { width: 22px; height: 22px; stroke: var(--accent); fill: none; stroke-width: 1.75; stroke-linecap: round; stroke-linejoin: round; }
.card h3 { margin: 0 0 .42rem; font-size: 1.08rem; font-weight: 700; letter-spacing: -.01em; }
.card p { margin: 0; color: var(--muted); font-size: .95rem; }

/* ── Screenshot gallery ─────────────────────────────────────────── */

.shots { display: grid; gap: 1.5rem; grid-template-columns: repeat(2, 1fr); }
.shot { margin: 0; }
.shot img {
  display: block; width: 100%; height: auto;
  border-radius: 14px; border: 1px solid var(--edge);
  background: #060b14;
  box-shadow: 0 20px 48px -28px rgba(0,0,0,.95);
  transition: transform .28s ease, border-color .28s ease, box-shadow .28s ease;
}
.shot:hover img {
  transform: translateY(-4px);
  border-color: var(--edge-bright);
  box-shadow: 0 26px 60px -28px rgba(0,0,0,.98), 0 0 60px -30px rgba(52,198,255,.5);
}
.shot figcaption { margin-top: .85rem; color: var(--muted); font-size: .94rem; line-height: 1.5; }

/* ── Price ──────────────────────────────────────────────────────── */

.price-wrap { display: flex; justify-content: center; }
.price {
  position: relative; width: min(31rem, 100%);
  padding: 2.5rem 2.1rem 2.1rem; text-align: center;
  border-radius: 26px; border: 1px solid var(--edge-bright);
  background: linear-gradient(165deg, rgba(255,255,255,.08), rgba(255,255,255,.02));
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  box-shadow: var(--shadow), 0 0 100px -40px rgba(52,198,255,.55);
  overflow: hidden;
}
.price::before {
  content: ""; position: absolute; left: 50%; top: -58%; transform: translateX(-50%);
  width: 130%; height: 112%; pointer-events: none;
  background: radial-gradient(circle, rgba(52,198,255,.24), transparent 62%);
}
.price .tag { position: relative; color: var(--muted); font-size: .8rem; letter-spacing: .18em; text-transform: uppercase; font-weight: 700; }
.price .amount { position: relative; margin: .55rem 0 .1rem; font-family: var(--display); font-size: clamp(3.4rem, 9vw, 4.6rem); font-weight: 800; letter-spacing: -.04em; line-height: 1; }
.price .once { position: relative; color: var(--muted); margin: 0 0 1.6rem; font-size: .97rem; }
.price ul { position: relative; list-style: none; margin: 0 0 1.8rem; padding: 0; text-align: left; }
.price li { display: flex; align-items: flex-start; gap: .7rem; padding: .5rem 0; font-size: .96rem; }
.price li svg { width: 18px; height: 18px; flex-shrink: 0; margin-top: .2rem; stroke: var(--accent-3); fill: none; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }
.price .btn { position: relative; width: 100%; }
.price .fine { position: relative; margin: 1rem 0 0; color: var(--muted-dim); font-size: .83rem; }

/* ── Privacy strip ──────────────────────────────────────────────── */

.strip {
  display: grid; gap: 1.8rem; align-items: center;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  padding: 2.5rem 2.2rem; border-radius: 24px;
  border: 1px solid var(--edge); background: var(--panel);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
}
.strip h2 { margin-bottom: .7rem; }
.strip p { color: var(--muted); margin: 0 0 1.2rem; }
.strip .facts { display: grid; gap: .6rem; }
.strip .fact {
  display: flex; align-items: center; gap: .75rem;
  padding: .85rem 1rem; border-radius: 13px;
  border: 1px solid var(--edge); background: rgba(255,255,255,.025);
  font-size: .94rem;
}
.strip .fact svg { width: 18px; height: 18px; flex-shrink: 0; stroke: var(--accent-3); fill: none; stroke-width: 2.1; stroke-linecap: round; stroke-linejoin: round; }

/* ── FAQ ────────────────────────────────────────────────────────── */

.faq { max-width: 47rem; margin: 0 auto; }
.faq details {
  border: 1px solid var(--edge); border-radius: 16px;
  background: var(--panel); margin-bottom: .7rem; overflow: hidden;
  transition: border-color .2s ease, background .2s ease;
}
.faq details[open] { border-color: var(--edge-bright); background: var(--panel-strong); }
.faq summary {
  list-style: none; cursor: pointer; padding: 1.15rem 1.35rem;
  font-weight: 600; font-size: 1rem;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ""; width: 10px; height: 10px; flex-shrink: 0;
  border-right: 2px solid var(--muted); border-bottom: 2px solid var(--muted);
  transform: rotate(45deg) translate(-2px,-2px); transition: transform .22s ease;
}
.faq details[open] summary::after { transform: rotate(-135deg) translate(-3px,-3px); }
.faq .answer { padding: 0 1.35rem 1.25rem; color: var(--muted); font-size: .96rem; }
.faq .answer p { margin: 0 0 .6rem; }
.faq .answer p:last-child { margin-bottom: 0; }

/* ── Notice + footer ────────────────────────────────────────────── */

.notice {
  border-radius: 16px; padding: 1.1rem 1.35rem;
  border: 1px solid var(--edge); border-left: 3px solid var(--accent);
  background: rgba(255,255,255,.025);
  color: var(--muted); font-size: .93rem;
}

footer.site {
  margin-top: 3.5rem; padding: 2.5rem 0 3.5rem;
  border-top: 1px solid var(--edge); color: var(--muted-dim); font-size: .88rem;
}
footer.site .top { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; margin-bottom: 1.4rem; }
footer.site .top .brand { display: flex; align-items: center; gap: .6rem; color: var(--muted); font-family: var(--display); font-weight: 700; letter-spacing: .13em; font-size: .84rem; }
footer.site .top img { width: 24px; height: 24px; }
footer.site .links { margin-left: auto; display: flex; gap: 1.4rem; flex-wrap: wrap; }
footer.site .links a { color: var(--muted); font-weight: 600; }
footer.site .links a:hover { color: var(--text); }
footer.site p { max-width: 54rem; margin: .45rem 0; line-height: 1.6; }

/* ── Reveal on scroll ───────────────────────────────────────────── */

.js .reveal {
  opacity: 0;
  transform: translateY(26px) scale(.985);
  filter: blur(5px);
  transition:
    opacity .75s cubic-bezier(.22,.61,.36,1),
    transform .75s cubic-bezier(.22,.61,.36,1),
    filter .75s cubic-bezier(.22,.61,.36,1);
  transition-delay: var(--rd, 0ms);
  will-change: opacity, transform;
}
.js .reveal.in { opacity: 1; transform: none; filter: none; }

/* Hero screenshot drifts a little slower than the page. Transform only, driven
   from a rAF-throttled scroll handler, so it never touches layout. */
.stage .screen { will-change: transform; }

/* Scroll progress across the top of the sticky header. */
.scroll-progress {
  position: absolute; left: 0; right: 0; bottom: -1px; height: 2px;
  transform: scaleX(var(--sp, 0)); transform-origin: 0 50%;
  background: linear-gradient(90deg, var(--accent), var(--accent-2) 55%, var(--accent-3));
  opacity: .9; pointer-events: none;
}

/* The answer fades in as the item opens; the chevron already rotates. */
.faq details[open] .answer { animation: faqIn .3s cubic-bezier(.22,.61,.36,1) both; }
@keyframes faqIn { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: none; } }
.faq summary { transition: color .2s ease; }
.faq summary:hover { color: var(--accent); }

/* Cards and shots lift a touch more decisively. */
.card, .shot img { will-change: transform; }


/* Carousel controls. Touch swipe alone is not an affordance on a desktop
   browser at a narrow width: a mouse drag does not scroll an overflow
   container, and the scrollbar is hidden. Arrows make it operable for
   everyone, and the container is focusable so arrow keys work too. */
.shots-wrap { position: relative; }
.shots-nav { display: none; align-items: center; justify-content: center; gap: 1rem; margin-top: 1rem; }
.rail-btn {
  display: grid; place-items: center;
  width: 44px; height: 44px; flex: 0 0 44px;
  border-radius: 999px; cursor: pointer;
  background: var(--panel); border: 1px solid var(--edge); color: var(--text);
  transition: background .2s ease, border-color .2s ease, opacity .2s ease;
}
.rail-btn:hover:not(:disabled) { background: var(--panel-strong); border-color: var(--edge-bright); }
.rail-btn:disabled { opacity: .35; cursor: default; }
.rail-btn svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }
.shots:focus-visible { outline: 2px solid var(--accent); outline-offset: 4px; border-radius: 14px; }
.shots.dragging { cursor: grabbing; scroll-snap-type: none; }
.shots.dragging img { pointer-events: none; }

.swipe-hint { display: none; margin: .8rem 0 0; color: var(--muted-dim); font-size: .82rem; text-align: center; }

/* ── Tablet ─────────────────────────────────────────────────────── */

@media (max-width: 900px) {
  .grid { grid-template-columns: repeat(2, 1fr); }
  .strip { grid-template-columns: 1fr; }
}

/* ── Mobile ─────────────────────────────────────────────────────── */

@media (max-width: 640px) {
  :root { --gutter: 1.15rem; }

  header.site nav { gap: .9rem; }
  header.site nav a.hide-sm { display: none; }

  .hero { padding: 2.8rem 0 1.8rem; }
  .hero .mark-glow img { width: 72px; height: 72px; }
  .hero .mark-glow::after { width: 150px; height: 150px; }
  .hero h1 { font-size: clamp(2.1rem, 9.5vw, 2.9rem); letter-spacing: -.03em; }
  .hero p.lead { font-size: 1.02rem; margin-bottom: 1.6rem; }
  .eyebrow { font-size: .76rem; padding: .36rem .85rem; }

  /* Full-width, thumb-friendly buttons rather than two cramped pills. */
  .cta-row { flex-direction: column; align-items: stretch; gap: .6rem; }
  .cta-row .btn { width: 100%; }

  section { padding: 3rem 0; }
  .section-head { margin-bottom: 1.8rem; }
  .section-head p { font-size: .99rem; }

  .grid { grid-template-columns: 1fr; gap: .8rem; grid-auto-rows: auto; }
  .card { padding: 1.3rem 1.25rem 1.2rem; border-radius: 16px; }
  .card .ico { width: 38px; height: 38px; border-radius: 11px; margin-bottom: .8rem; }
  .card .ico svg { width: 19px; height: 19px; }

  /* Screens become a swipeable rail: four stacked images made the page
     enormous on a phone, and a carousel is how this content is read anyway. */
  .shots {
    display: flex; gap: .9rem;
    overflow-x: auto; scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    margin: 0 calc(var(--gutter) * -1); padding: 0 var(--gutter) .5rem;
  }
  .shots::-webkit-scrollbar { display: none; }
  .shot { flex: 0 0 82%; scroll-snap-align: center; }
  .shot img { border-radius: 12px; }
  .shot figcaption { margin-top: .7rem; font-size: .89rem; }
  .swipe-hint { display: block; margin: 0; }
  .shots-nav { display: flex; }

  .screen { border-radius: 12px; }
  .stage { padding: .5rem 0 1.5rem; }

  .price { padding: 2rem 1.4rem 1.7rem; border-radius: 22px; }
  .strip { padding: 1.7rem 1.3rem; border-radius: 20px; }
  .faq summary { padding: 1.05rem 1.1rem; font-size: .97rem; }
  .faq .answer { padding: 0 1.1rem 1.15rem; }

  footer.site .links { margin-left: 0; gap: 1.1rem; }
}


/* ── Reduced motion ─────────────────────────────────────────────── */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .orb { animation: none; }
  .js .reveal { opacity: 1; transform: none; filter: none; transition: none; }
  .btn:hover, .card:hover, .shot:hover img { transform: none; }
  .faq details[open] .answer { animation: none; }
  .scroll-progress { display: none; }
}

/* ── Long-form pages (privacy) ──────────────────────────────────── */

.doc { max-width: 46rem; margin: 0 auto; padding: 2.5rem 0 4rem; }
.doc h1 { font-size: clamp(2rem, 4.6vw, 2.7rem); line-height: 1.12; letter-spacing: -.03em; margin: 0 0 .3rem; }
.doc h2 { font-size: 1.22rem; margin-top: 2.5rem; letter-spacing: -.012em; }
.doc h3 { font-size: 1.04rem; margin-top: 1.7rem; font-weight: 700; }
.doc .sub { color: var(--muted-dim); margin-top: 0; font-size: .94rem; }
.doc p { color: #dde5f0; }
.doc table { border-collapse: collapse; width: 100%; margin: 1.2rem 0; font-size: .95rem; }
.doc th, .doc td { text-align: left; padding: .75rem .75rem; border-bottom: 1px solid var(--edge); vertical-align: top; color: #dde5f0; }
.doc th { font-weight: 600; color: var(--text); }
.doc code { font-size: .88em; background: rgba(255,255,255,.07); padding: .13em .4em; border-radius: 6px; }
.doc .doc-footer { margin-top: 3rem; padding-top: 1.2rem; border-top: 1px solid var(--edge); color: var(--muted-dim); font-size: .9rem; }

@media (max-width: 640px) {
  .doc { padding: 1.8rem 0 3rem; }
  .doc table, .doc th, .doc td { font-size: .9rem; }
  .doc th, .doc td { padding: .6rem .5rem; }
}
