:root {
  --ink: #071019;
  --ink-2: #0b1722;
  --ink-3: #102231;
  --surface: #f5f7f8;
  --surface-2: #e7ecef;
  --paper: #ffffff;
  --text: #eaf2f6;
  --text-muted: #a9bac4;
  --body: #273843;
  --line: rgba(207, 224, 232, 0.16);
  --line-dark: #d4dde2;
  --accent: #4bd3ff;
  --accent-2: #7e93ff;
  --accent-soft: rgba(75, 211, 255, 0.12);
  --silver: #b8bec3;
  --success: #71d6b0;
  --danger: #ff8d8d;
  --warning: #ffd47b;
  --shadow: 0 28px 80px rgba(0, 10, 18, 0.18);
  --radius: 1.4rem;
  --radius-sm: 0.85rem;
  --container: min(1180px, calc(100% - 2rem));
  --header-height: 5.25rem;
}

*,
*::before,
*::after { box-sizing: border-box; }

html {
  color-scheme: dark;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 1rem);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--ink);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

body.nav-open { overflow: hidden; }

img,
svg,
video { display: block; max-width: 100%; }

a { color: inherit; text-underline-offset: 0.2em; }
a:hover { color: var(--accent); }

button,
input,
select,
textarea { font: inherit; }

button,
a { -webkit-tap-highlight-color: transparent; }

:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 0.75rem;
  left: 0.75rem;
  transform: translateY(-150%);
  border-radius: 0.5rem;
  background: var(--paper);
  color: var(--ink);
  padding: 0.75rem 1rem;
  font-weight: 800;
}

.skip-link:focus { transform: translateY(0); }

.container { width: var(--container); min-width: 0; margin-inline: auto; }
.narrow { width: min(780px, 100%); margin-inline: auto; }
.flow > * + * { margin-top: 1.2rem; }
.cluster { display: flex; flex-wrap: wrap; align-items: center; gap: 0.8rem; }
.text-accent { color: var(--accent); }
.muted { color: var(--text-muted); }
.small { font-size: 0.88rem; }
.center { text-align: center; }
.centered-cluster { justify-content: center; }
.margin-top-lg { margin-top: 2.5rem; }
.margin-inline-auto { margin-inline: auto; }
.section-flush-top { padding-top: 0; }

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  min-height: var(--header-height);
  border-bottom: 1px solid transparent;
  transition: background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled,
.site-header.solid {
  border-color: var(--line);
  background: rgba(7, 16, 25, 0.94);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(18px);
}

.header-inner {
  min-height: var(--header-height);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 2rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  min-width: max-content;
  color: var(--text);
  text-decoration: none;
}

.brand:hover { color: var(--text); }
.brand img {
  width: 3.1rem;
  height: 3.1rem;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  background: var(--paper);
  object-fit: cover;
}

.brand-copy { line-height: 1; }
.brand-name {
  display: block;
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}
.brand-tag {
  display: block;
  margin-top: 0.35rem;
  color: var(--text-muted);
  font-size: 0.64rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-nav { justify-self: end; }
.nav-list {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.nav-link {
  display: inline-flex;
  min-height: 2.75rem;
  align-items: center;
  border-radius: 999px;
  padding: 0.5rem 0.85rem;
  color: var(--text-muted);
  font-weight: 700;
  text-decoration: none;
}
.nav-link:hover,
.nav-link[aria-current="page"] {
  background: rgba(255,255,255,0.06);
  color: var(--text);
}
.nav-link[aria-current="page"]::after {
  width: 0.35rem;
  height: 0.35rem;
  margin-left: 0.45rem;
  border-radius: 50%;
  background: var(--accent);
  content: "";
}
.header-cta { margin-left: 0.65rem; }
.menu-toggle {
  display: none;
  width: 3rem;
  height: 3rem;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  color: var(--text);
  cursor: pointer;
}
.menu-toggle svg { width: 1.25rem; }

.button {
  display: inline-flex;
  min-height: 3.2rem;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  border: 1px solid transparent;
  border-radius: 0.75rem;
  padding: 0.7rem 1.15rem;
  background: var(--accent);
  color: #04121a;
  font-weight: 850;
  line-height: 1.1;
  text-align: center;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}
.button:hover {
  transform: translateY(-2px);
  color: #04121a;
  box-shadow: 0 14px 34px rgba(75, 211, 255, 0.22);
}
.button-secondary {
  border-color: rgba(255,255,255,0.28);
  background: rgba(255,255,255,0.07);
  color: var(--text);
  backdrop-filter: blur(10px);
}
.button-secondary:hover { background: rgba(255,255,255,0.14); color: var(--text); }
.button-small { min-height: 2.75rem; border-radius: 999px; padding-inline: 1rem; font-size: 0.88rem; }

.hero {
  position: relative;
  min-height: 92svh;
  display: grid;
  align-items: end;
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(circle at 76% 24%, rgba(75,211,255,0.18), transparent 28%),
    radial-gradient(circle at 20% 75%, rgba(126,147,255,0.13), transparent 34%),
    var(--ink);
}
.hero-media,
.hero-media::after,
.hero-video,
.hero-poster { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-media { z-index: -2; }
.hero-video,
.hero-poster { object-fit: cover; }
.hero-video { z-index: 1; opacity: 0; transition: opacity 400ms ease; }
.hero-video.is-ready { opacity: 0.45; }
.hero-poster { z-index: 0; opacity: 0.78; }
.hero-media::after {
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(7,16,25,0.97) 0%, rgba(7,16,25,0.78) 45%, rgba(7,16,25,0.4) 100%),
    linear-gradient(0deg, var(--ink) 0%, transparent 44%);
  content: "";
}
.hero-content { padding: clamp(9.5rem, 16vh, 13rem) 0 clamp(4.5rem, 8vh, 7rem); }
.hero-copy { width: min(800px, 100%); min-width: 0; }
.eyebrow {
  margin: 0 0 1rem;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
h1, h2, h3 { margin: 0; line-height: 1.05; text-wrap: balance; }
h1 { font-size: clamp(3rem, 8vw, 7rem); letter-spacing: -0.055em; }
h2 { font-size: clamp(2.2rem, 5vw, 4.7rem); letter-spacing: -0.045em; }
h3 { font-size: clamp(1.2rem, 2vw, 1.55rem); letter-spacing: -0.02em; }
p { margin: 0; }
.lede { max-width: 760px; color: #d5e1e7; font-size: clamp(1.08rem, 2vw, 1.35rem); }
.hero-secondary { color: var(--text-muted); font-size: 1rem; }
.status-badge,
.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  width: fit-content;
  border: 1px solid rgba(75,211,255,0.3);
  border-radius: 999px;
  background: rgba(75,211,255,0.08);
  color: #bceeff;
  padding: 0.42rem 0.72rem;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.05em;
}
.status-badge::before {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 5px rgba(75,211,255,0.1);
  content: "";
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.8rem; }
.hero-disclosure { color: var(--text-muted); font-size: 0.82rem; }
.video-control {
  position: absolute;
  z-index: 5;
  right: max(1rem, calc((100vw - 1180px) / 2));
  bottom: 2rem;
  display: inline-flex;
  min-height: 2.75rem;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(7,16,25,0.76);
  color: var(--text);
  padding: 0.55rem 0.85rem;
  cursor: pointer;
  backdrop-filter: blur(12px);
}
.video-control[hidden] { display: none; }

.page-hero {
  position: relative;
  overflow: hidden;
  padding: calc(var(--header-height) + clamp(4rem, 10vw, 8rem)) 0 clamp(4rem, 8vw, 7rem);
  background:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px),
    radial-gradient(circle at 80% 10%, rgba(75,211,255,0.17), transparent 30%),
    var(--ink);
  background-size: 56px 56px, 56px 56px, auto, auto;
}
.page-hero h1 { max-width: 1000px; font-size: clamp(2.8rem, 7vw, 6.2rem); }
.page-hero .lede { margin-top: 1.5rem; }

.section { position: relative; padding: clamp(4.5rem, 9vw, 8rem) 0; }
.section-tight { padding: clamp(3rem, 6vw, 5rem) 0; }
.section-light { background: var(--surface); color: var(--body); }
.section-light .muted,
.section-light .section-intro { color: #5a6c77; }
.section-light .eyebrow { color: #087da5; }
.section-ink-2 { background: var(--ink-2); }
.section-header {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.65fr);
  gap: 2.5rem;
  align-items: end;
  margin-bottom: clamp(2.5rem, 5vw, 4.5rem);
}
.section-intro { color: var(--text-muted); font-size: 1.08rem; }
.relationship {
  border-block: 1px solid var(--line);
  background: linear-gradient(90deg, rgba(75,211,255,0.06), transparent 65%);
}
.relationship-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(280px, 0.65fr);
  gap: 3rem;
  align-items: center;
}
.relationship h2 { font-size: clamp(2rem, 4vw, 3.7rem); }

.split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(2rem, 6vw, 6rem);
  align-items: center;
}
.split > *,
.section-header > *,
.relationship-inner > *,
.form-shell > * { min-width: 0; }
.split-start { align-items: start; }
.visual-frame {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02));
  box-shadow: var(--shadow);
}
.visual-frame.light { border-color: var(--line-dark); background: var(--paper); }
.visual-frame img { width: 100%; height: auto; }
.visual-caption {
  border-top: 1px solid var(--line);
  padding: 0.75rem 1rem;
  color: var(--text-muted);
  font-size: 0.8rem;
}

.grid { display: grid; gap: 1rem; }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.045);
  padding: clamp(1.4rem, 3vw, 2rem);
}
.section-light .card {
  border-color: var(--line-dark);
  background: var(--paper);
  box-shadow: 0 20px 50px rgba(12, 30, 42, 0.07);
}
.card-number {
  color: var(--accent);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.16em;
}
.card-icon {
  display: grid;
  width: 3rem;
  height: 3rem;
  place-items: center;
  border: 1px solid rgba(75,211,255,0.26);
  border-radius: 0.9rem;
  background: var(--accent-soft);
  color: var(--accent);
}
.card-icon svg { width: 1.45rem; height: 1.45rem; }
.card p { color: var(--text-muted); }
.section-light .card p { color: #5a6c77; }
.card .pill { margin-top: auto; }
.market-card { min-height: 245px; display: flex; flex-direction: column; }
.market-card::after {
  position: absolute;
  right: -3rem;
  bottom: -4rem;
  width: 10rem;
  height: 10rem;
  border: 1px solid rgba(75,211,255,0.2);
  border-radius: 50%;
  content: "";
}
.feature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
  padding: 0;
  list-style: none;
}
.feature-list li {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.035);
  padding: 1rem 1rem 1rem 2.5rem;
}
.feature-list li::before {
  position: absolute;
  top: 1.22rem;
  left: 1rem;
  width: 0.75rem;
  height: 0.75rem;
  border: 2px solid var(--accent);
  border-radius: 50%;
  content: "";
}
.plain-list { margin: 0; padding-left: 1.2rem; }
.plain-list li + li { margin-top: 0.55rem; }
.check-list { margin: 0; padding: 0; list-style: none; }
.check-list li { position: relative; padding-left: 1.75rem; }
.check-list li + li { margin-top: 0.65rem; }
.check-list li::before { position: absolute; left: 0; color: var(--accent); content: "✓"; font-weight: 900; }
.x-list li::before { color: var(--danger); content: "—"; }

.principles {
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 50%, rgba(75,211,255,0.18), transparent 30%),
    var(--ink-3);
}
.principles blockquote {
  margin: 0;
  max-width: 1040px;
  font-size: clamp(2.3rem, 6vw, 5.8rem);
  font-weight: 850;
  letter-spacing: -0.055em;
  line-height: 1;
}
.principles blockquote span { display: block; }
.principles blockquote span:last-child { margin-top: 1.2rem; color: var(--accent); font-size: 0.48em; line-height: 1.18; letter-spacing: -0.025em; }

.form-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.68fr) minmax(360px, 0.8fr);
  gap: clamp(2rem, 7vw, 7rem);
  align-items: start;
}
.form-shell a:not(.button) { overflow-wrap: anywhere; }
.form-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.05);
  padding: clamp(1.4rem, 4vw, 2.5rem);
}
.section-light .form-card { border-color: var(--line-dark); background: var(--paper); box-shadow: var(--shadow); }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; }
.form-field { display: grid; gap: 0.42rem; }
.form-field-full { grid-column: 1 / -1; }
label,
legend { font-size: 0.88rem; font-weight: 800; }
input,
select,
textarea {
  width: 100%;
  min-height: 3.25rem;
  border: 1px solid #b8c6ce;
  border-radius: 0.7rem;
  background: var(--paper);
  color: #12222c;
  padding: 0.7rem 0.8rem;
}
textarea { min-height: 9rem; resize: vertical; }
input:focus,
select:focus,
textarea:focus { border-color: #068bb8; outline: 3px solid rgba(75,211,255,0.22); }
.checkbox-field { display: grid; grid-template-columns: auto 1fr; gap: 0.75rem; align-items: start; }
.checkbox-field input { width: 1.25rem; min-height: 1.25rem; margin-top: 0.15rem; }
.checkbox-field label { font-weight: 600; }
.honeypot { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.form-note { color: #5f727e; font-size: 0.8rem; }
.form-status {
  display: none;
  margin-bottom: 1rem;
  border: 1px solid;
  border-radius: 0.7rem;
  padding: 0.85rem 1rem;
  font-weight: 750;
}
.form-status.is-visible { display: block; }
.form-status.success { border-color: #2c9270; background: #e5f8f1; color: #15563f; }
.form-status.error { border-color: #c46666; background: #fff0f0; color: #7b2929; }

.pricing-card {
  max-width: 760px;
  margin-inline: auto;
  border: 1px solid rgba(75,211,255,0.3);
  border-radius: calc(var(--radius) + 0.4rem);
  background: linear-gradient(145deg, rgba(75,211,255,0.11), rgba(255,255,255,0.035));
  padding: clamp(1.5rem, 5vw, 3.5rem);
  box-shadow: var(--shadow);
}
.price { font-size: clamp(2.1rem, 5vw, 4rem); font-weight: 850; letter-spacing: -0.045em; line-height: 1; }
.price-note { color: var(--warning); font-weight: 750; }

.faq { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  display: flex;
  min-height: 4.5rem;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
  font-size: 1.08rem;
  font-weight: 800;
  list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { color: var(--accent); content: "+"; font-size: 1.5rem; }
.faq details[open] summary::after { content: "−"; }
.faq details p { max-width: 800px; padding: 0 0 1.5rem; color: var(--text-muted); }

.toc {
  position: sticky;
  top: calc(var(--header-height) + 1.5rem);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  background: var(--paper);
  padding: 1.25rem;
}
.toc ol { margin: 0.8rem 0 0; padding-left: 1.25rem; }
.toc li + li { margin-top: 0.35rem; }
.toc a { color: #415763; font-size: 0.86rem; }
.legal-layout {
  display: grid;
  grid-template-columns: minmax(220px, 0.35fr) minmax(0, 1fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}
.legal-content section { scroll-margin-top: calc(var(--header-height) + 1rem); }
.legal-content section + section { margin-top: 2.5rem; padding-top: 2.5rem; border-top: 1px solid var(--line-dark); }
.legal-content h2 { font-size: clamp(1.45rem, 3vw, 2rem); letter-spacing: -0.025em; }
.legal-content h3 { margin-top: 1.4rem; font-size: 1.05rem; }
.legal-content p,
.legal-content li { color: #455b67; }
.legal-content ul { padding-left: 1.25rem; }
.risk-banner {
  border-left: 5px solid var(--danger);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  background: #fff1f1;
  color: #5e1f1f;
  padding: 1.3rem 1.5rem;
  font-size: 1.1rem;
  font-weight: 800;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #040b11;
  padding: 4.5rem 0 2rem;
}
.footer-top {
  display: grid;
  grid-template-columns: minmax(250px, 1.1fr) repeat(3, minmax(130px, 0.45fr));
  gap: 2.5rem;
}
.footer-brand { align-items: flex-start; flex-direction: column; }
.footer-brand .brand img { width: 4.5rem; height: 4.5rem; }
.footer-brand > p { max-width: 360px; color: var(--text-muted); }
.footer-location { color: var(--silver); font-weight: 700; }
.footer-title { margin: 0 0 1rem; font-size: 0.78rem; letter-spacing: 0.16em; text-transform: uppercase; }
.footer-links { display: grid; gap: 0.6rem; margin: 0; padding: 0; list-style: none; }
.footer-links a { color: var(--text-muted); text-decoration: none; }
.footer-links a:hover { color: var(--accent); }
.footer-disclosure {
  margin-top: 3rem;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 1.5rem 0;
  color: var(--text-muted);
  font-size: 0.88rem;
}
.footer-disclosure a { display: inline-block; margin-top: 0.8rem; color: var(--accent); font-weight: 800; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.5rem;
  color: var(--text-muted);
  font-size: 0.82rem;
}

.not-found { min-height: 100svh; display: grid; place-items: center; padding: 7rem 0 4rem; text-align: center; }
.not-found-mark { color: rgba(75,211,255,0.18); font-size: clamp(8rem, 28vw, 20rem); font-weight: 900; line-height: 0.72; }

@media (max-width: 960px) {
  .menu-toggle { display: inline-flex; justify-self: end; }
  .site-nav {
    position: fixed;
    inset: var(--header-height) 0 auto;
    max-height: calc(100svh - var(--header-height));
    overflow-y: auto;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: rgba(7,16,25,0.99);
    padding: 1rem;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-0.75rem);
    transition: opacity 160ms ease, transform 160ms ease;
  }
  .site-nav.is-open { opacity: 1; pointer-events: auto; transform: translateY(0); }
  .nav-list { width: var(--container); margin-inline: auto; align-items: stretch; flex-direction: column; }
  .nav-link { width: 100%; min-height: 3.25rem; justify-content: space-between; border-radius: 0.55rem; padding-inline: 1rem; }
  .header-cta { margin: 0.6rem 0 0; border-radius: 0.55rem; }
  .header-inner { grid-template-columns: 1fr auto; }
  .section-header,
  .relationship-inner,
  .form-shell { grid-template-columns: minmax(0, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-top { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 720px) {
  :root { --header-height: 4.6rem; --container: min(1180px, calc(100% - 1.25rem)); }
  .brand img { width: 2.75rem; height: 2.75rem; }
  .brand-tag { display: none; }
  .hero { min-height: 100svh; }
  .hero-content { padding-bottom: 6rem; }
  .video-control { right: 0.75rem; bottom: 1rem; }
  .split,
  .grid-3,
  .grid-2,
  .feature-list,
  .form-grid,
  .legal-layout { grid-template-columns: 1fr; }
  .visual-frame { order: -1; }
  .form-field-full { grid-column: auto; }
  .toc { position: static; }
  .footer-top { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; }
}

@media (max-width: 440px) {
  .brand-name { font-size: 0.78rem; letter-spacing: 0.07em; }
  .grid-4,
  .footer-top { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
  .hero-actions .button { width: 100%; }
  .page-hero h1 { font-size: clamp(2.55rem, 15vw, 4rem); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .hero-video { display: none; }
}

@media print {
  .site-header,
  .site-footer,
  .toc,
  .video-control { display: none !important; }
  body,
  .section-light { background: #fff; color: #000; }
  .page-hero { padding: 2rem 0; background: #fff; color: #000; }
  .legal-layout { display: block; }
}
