/* ============================================================
   Sorin.tv — Cinematic design system
   Palette: near-black ground, sky-blue accent (from SM logo),
   warm brass for accents, elegant serif + clean sans + mono labels.
   ============================================================ */

/* ---------- Design tokens ---------- */
:root {
  --ink:        #09090B;
  --ink-1:      #0E0F12;
  --ink-2:      #14161B;
  --ink-3:      #1C1F26;
  --paper:      #F5F8FB;
  --muted:      rgba(233, 240, 247, 0.62);
  --muted-2:    rgba(233, 240, 247, 0.42);
  --line:       rgba(255, 255, 255, 0.10);
  --line-2:     rgba(255, 255, 255, 0.06);

  --blue:       #8ACDEA;
  --blue-bright:#A9DEF3;
  --blue-deep:  #4E9FC6;
  --brass:      #C9A96A;
  --brass-soft: #E0C99A;

  --font-serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-sans:  "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-mono:  "JetBrains Mono", ui-monospace, "SFMono-Regular", Menlo, monospace;

  --maxw: 1200px;
  --gutter: clamp(1.25rem, 5vw, 4rem);
  --radius: 14px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --nav-h: 74px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--font-sans);
  background: var(--ink);
  color: var(--paper);
  line-height: 1.65;
  font-size: clamp(1rem, 0.96rem + 0.2vw, 1.08rem);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, picture, svg, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; background: none; border: none; }
:focus-visible {
  outline: 2px solid var(--blue-bright);
  outline-offset: 3px;
  border-radius: 3px;
}

/* Ambient film grain over the whole ground */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}

/* ---------- Typography ---------- */
h1, h2, h3, h4 { font-family: var(--font-serif); font-weight: 500; line-height: 1.04; letter-spacing: -0.01em; }
.display {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(2.6rem, 1.2rem + 6vw, 6rem);
  line-height: 0.98;
  letter-spacing: -0.02em;
}
.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 1px;
  background: linear-gradient(90deg, var(--blue), transparent);
}
.section-title { font-size: clamp(2rem, 1.2rem + 3vw, 3.4rem); }
.lede { font-size: clamp(1.14rem, 1.05rem + 0.5vw, 1.42rem); color: rgba(233,240,247,0.86); font-weight: 300; }

.prose { max-width: 68ch; }
.prose p { margin-bottom: 1.35em; color: rgba(233,240,247,0.80); }
.prose p:last-child { margin-bottom: 0; }
.prose strong { color: var(--paper); font-weight: 600; }
.prose a { color: var(--blue-bright); text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1px; }
.prose a:hover { color: var(--paper); }

.text-accent { color: var(--blue); }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); position: relative; z-index: 2; }
.container--wide { max-width: 1440px; }
.section { padding-block: clamp(4.5rem, 3rem + 9vw, 9rem); position: relative; z-index: 2; }
.section--tight { padding-block: clamp(3rem, 2rem + 5vw, 5.5rem); }
.section-head { margin-bottom: clamp(2rem, 1rem + 3vw, 3.5rem); }
.section-head .eyebrow { margin-bottom: 1.1rem; }
.divider { height: 1px; background: linear-gradient(90deg, transparent, var(--line), transparent); border: 0; }

/* ---------- Buttons & links ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 0.6rem;
  padding: 0.9rem 1.6rem; border-radius: 100px;
  font-family: var(--font-sans); font-weight: 500; font-size: 0.95rem;
  letter-spacing: 0.01em; transition: all 0.4s var(--ease);
  border: 1px solid transparent; will-change: transform;
}
.btn svg { width: 16px; height: 16px; transition: transform 0.4s var(--ease); }
.btn--primary { background: var(--blue); color: #06222E; }
.btn--primary:hover { background: var(--blue-bright); transform: translateY(-2px); box-shadow: 0 12px 34px -12px rgba(138,205,234,0.6); }
.btn--primary:hover svg { transform: translateX(4px); }
.btn--ghost { border-color: var(--line); color: var(--paper); background: rgba(255,255,255,0.02); backdrop-filter: blur(6px); }
.btn--ghost:hover { border-color: rgba(138,205,234,0.55); background: rgba(138,205,234,0.08); transform: translateY(-2px); }
.btn--ghost:hover svg { transform: translateX(4px); }

.link-arrow {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-weight: 500; color: var(--blue-bright); border-bottom: 1px solid rgba(138,205,234,0.3);
  padding-bottom: 2px; transition: all 0.3s var(--ease);
}
.link-arrow svg { width: 15px; height: 15px; transition: transform 0.3s var(--ease); }
.link-arrow:hover { color: var(--paper); border-color: var(--paper); }
.link-arrow:hover svg { transform: translateX(4px); }

/* ---------- Navigation ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--nav-h);
  display: flex; align-items: center;
  transition: background 0.5s var(--ease), border-color 0.5s var(--ease), backdrop-filter 0.5s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(9,9,11,0.7) 0%, rgba(9,9,11,0) 100%);
  opacity: 1; transition: opacity 0.5s var(--ease); pointer-events: none;
}
.nav.scrolled {
  background: rgba(9,9,11,0.82);
  backdrop-filter: blur(16px) saturate(140%);
  border-bottom-color: var(--line-2);
}
.nav.scrolled::before { opacity: 0; }
.nav__inner { width: 100%; max-width: 1440px; margin-inline: auto; padding-inline: var(--gutter); display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.brand { display: inline-flex; align-items: center; }
.brand__logo { height: 44px; width: auto; display: block; transition: opacity 0.3s var(--ease); }
.brand:hover .brand__logo { opacity: 0.82; }

.nav__links { display: flex; align-items: center; gap: 0.15rem; }
.nav__link {
  position: relative; padding: 0.5rem 0.82rem; font-size: 0.9rem; font-weight: 500;
  color: rgba(233,240,247,0.80); border-radius: 8px; transition: color 0.3s var(--ease);
  white-space: nowrap; text-transform: uppercase; letter-spacing: 0.07em;
}
.nav__link::after {
  content: ""; position: absolute; left: 0.82rem; right: 0.82rem; bottom: 0.28rem; height: 1px;
  background: var(--blue); transform: scaleX(0); transform-origin: left; transition: transform 0.35s var(--ease);
}
.nav__link:hover { color: var(--paper); }
.nav__link:hover::after, .nav__link[aria-current="page"]::after { transform: scaleX(1); }
.nav__link[aria-current="page"] { color: var(--paper); }
.nav__cta { margin-left: 0.6rem; padding: 0.52rem 1.1rem; font-size: 0.86rem; }
.nav__cta::after { display: none; }

.nav__toggle { display: none; width: 44px; height: 44px; position: relative; z-index: 120; }
.nav__toggle span { position: absolute; left: 11px; right: 11px; height: 1.5px; background: var(--paper); transition: transform 0.4s var(--ease), opacity 0.3s var(--ease); }
.nav__toggle span:nth-child(1) { top: 16px; }
.nav__toggle span:nth-child(2) { top: 22px; }
.nav__toggle span:nth-child(3) { top: 28px; }
body.menu-open .nav__toggle span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
body.menu-open .nav__toggle span:nth-child(2) { opacity: 0; }
body.menu-open .nav__toggle span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Mobile menu */
.nav__mobile {
  position: fixed; inset: 0; z-index: 110;
  background: #070809;
  background-image: radial-gradient(90% 60% at 80% 10%, rgba(78,159,198,0.10), transparent 60%), radial-gradient(70% 50% at 0% 100%, rgba(201,169,106,0.06), transparent 60%);
  display: flex; flex-direction: column; justify-content: center; align-items: flex-start;
  padding: var(--gutter); gap: 0.3rem; overflow-y: auto;
  opacity: 0; visibility: hidden; transform: translateY(-8px);
  transition: opacity 0.45s var(--ease), transform 0.45s var(--ease), visibility 0.45s;
}
body.menu-open .nav__mobile { opacity: 1; visibility: visible; transform: translateY(0); }
.nav__mobile a {
  font-family: var(--font-serif); font-size: clamp(1.7rem, 1.2rem + 3vw, 2.5rem);
  color: rgba(233,240,247,0.85); padding: 0.24rem 0; transition: color 0.3s var(--ease);
  display: flex; align-items: baseline; gap: 0.9rem; text-transform: uppercase; letter-spacing: 0.03em;
}
.nav__mobile a .idx { font-family: var(--font-mono); font-size: 0.8rem; color: var(--blue); opacity: 0.7; }
.nav__mobile a:hover, .nav__mobile a[aria-current="page"] { color: var(--paper); }
.nav__mobile-social { margin-top: 2.2rem; display: flex; gap: 1.4rem; }
.nav__mobile-social a { font-size: 0.9rem; font-family: var(--font-mono); letter-spacing: 0.1em; color: var(--muted); }

/* ---------- Hero ---------- */
.hero { position: relative; min-height: 100svh; display: flex; align-items: flex-end; overflow: hidden; isolation: isolate; }
.hero--tall { min-height: 100svh; }
.hero__media { position: absolute; inset: 0; z-index: -2; }
.hero__media img {
  width: 100%; height: 100%; object-fit: cover; object-position: var(--focus, center);
  animation: kenburns 26s ease-out both;
}
@keyframes kenburns { from { transform: scale(1.08); } to { transform: scale(1); } }
@media (prefers-reduced-motion: reduce) { .hero__media img { animation: none; } }
.hero__scrim {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(180deg, rgba(9,9,11,0.55) 0%, rgba(9,9,11,0.15) 26%, rgba(9,9,11,0.35) 62%, rgba(9,9,11,0.92) 100%),
    linear-gradient(90deg, rgba(9,9,11,0.75) 0%, rgba(9,9,11,0.25) 45%, rgba(9,9,11,0) 75%);
}
.hero__vignette { position: absolute; inset: 0; z-index: -1; background: radial-gradient(120% 100% at 50% 40%, transparent 55%, rgba(9,9,11,0.6) 100%); pointer-events: none; }
.hero__inner { padding-block: clamp(6rem, 5rem + 8vw, 10rem) clamp(3.5rem, 2rem + 5vw, 6rem); width: 100%; }
.hero__eyebrow { margin-bottom: 1.4rem; }
.hero__title { max-width: 16ch; }
.hero__sub { margin-top: 1.5rem; max-width: 46ch; color: rgba(233,240,247,0.82); font-weight: 300; font-size: clamp(1.05rem, 0.98rem + 0.5vw, 1.35rem); }
.hero__actions { margin-top: 2.4rem; display: flex; flex-wrap: wrap; gap: 0.9rem; }

.hero__cue {
  position: absolute; left: 50%; bottom: 1.7rem; transform: translateX(-50%); z-index: 3;
  display: flex; flex-direction: column; align-items: center; gap: 0.6rem;
  font-family: var(--font-mono); font-size: 0.64rem; letter-spacing: 0.28em; text-transform: uppercase; color: var(--muted-2);
}
.hero__cue span { width: 1px; height: 40px; background: linear-gradient(180deg, var(--blue), transparent); animation: cue 2.4s var(--ease) infinite; transform-origin: top; }
@keyframes cue { 0%,100% { transform: scaleY(0.4); opacity: 0.4; } 50% { transform: scaleY(1); opacity: 1; } }
@media (prefers-reduced-motion: reduce) { .hero__cue span { animation: none; } }

/* Home hero: title lowest & smaller per brief */
.hero--home .hero__inner { display: flex; flex-direction: column; justify-content: flex-end; }
.hero-home__tagline {
  font-family: var(--font-serif); font-weight: 500; letter-spacing: -0.01em;
  font-size: clamp(1.7rem, 0.9rem + 3vw, 3.1rem); line-height: 1.1;
}
.hero-home__tagline b { color: var(--paper); font-weight: 600; }
.hero-home__role { display: block; margin-top: 0.9rem; font-family: var(--font-mono); font-size: clamp(0.6rem, 0.5rem + 0.55vw, 0.85rem); letter-spacing: 0.16em; text-transform: uppercase; color: var(--blue); font-weight: 400; white-space: nowrap; }

/* ---------- Featured On strip ---------- */
.featured { padding-block: clamp(2.2rem, 1.5rem + 2.5vw, 3.4rem); border-block: 1px solid var(--line-2); background: linear-gradient(180deg, rgba(255,255,255,0.015), transparent); }
.featured__inner { display: flex; flex-direction: column; align-items: center; gap: 1.4rem; }
.featured__label { font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--muted-2); }
.featured__panel {
  width: 100%;
  display: flex; align-items: center; justify-content: center;
  gap: clamp(1.6rem, 1rem + 3.4vw, 3.6rem); flex-wrap: wrap;
}
.featured__panel .net { height: 26px; width: auto; opacity: 0.78; transition: opacity 0.35s var(--ease), transform 0.35s var(--ease); }
.featured__panel .net--tall { height: 34px; }
.featured__panel .net:hover { opacity: 1; transform: translateY(-2px); }

/* ---------- Video (lite facade) ---------- */
.video {
  position: relative; width: 100%; aspect-ratio: 16 / 9; border-radius: var(--radius); overflow: hidden;
  background: #000; border: 1px solid var(--line); cursor: pointer; isolation: isolate;
  box-shadow: 0 30px 70px -30px rgba(0,0,0,0.8);
}
.video img.video__thumb { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease), opacity 0.4s; }
.video::after { content: ""; position: absolute; inset: 0; background: radial-gradient(60% 60% at 50% 50%, rgba(0,0,0,0.1), rgba(0,0,0,0.55)); z-index: 1; transition: opacity 0.4s; }
.video:hover img.video__thumb { transform: scale(1.04); }
.video__play {
  position: absolute; inset: 0; z-index: 2; display: flex; align-items: center; justify-content: center;
}
.video__play i {
  width: 78px; height: 78px; border-radius: 50%;
  background: rgba(138,205,234,0.16); border: 1.5px solid rgba(138,205,234,0.7);
  backdrop-filter: blur(6px); display: grid; place-items: center;
  transition: transform 0.4s var(--ease), background 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.video:hover .video__play i { transform: scale(1.08); background: rgba(138,205,234,0.28); box-shadow: 0 0 0 10px rgba(138,205,234,0.08); }
.video__play i::before { content: ""; margin-left: 4px; border-style: solid; border-width: 12px 0 12px 20px; border-color: transparent transparent transparent var(--paper); }
.video__label { position: absolute; left: 1.1rem; bottom: 1rem; z-index: 2; font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.9); text-shadow: 0 2px 8px rgba(0,0,0,0.6); }
.video iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; z-index: 3; }
.video-caption { margin-top: 0.9rem; font-family: var(--font-mono); font-size: 0.78rem; letter-spacing: 0.04em; color: var(--muted); }

/* ---------- Media + text split ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 1rem + 5vw, 5rem); align-items: center; }
.split--reverse .split__media { order: 2; }
.split__media { position: relative; }
.frame { position: relative; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); box-shadow: 0 40px 90px -40px rgba(0,0,0,0.85); }
.frame img { width: 100%; height: 100%; object-fit: cover; }
.frame--portrait { aspect-ratio: 3 / 4; }

/* ---------- Stat row ---------- */
.stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 1px; background: var(--line-2); border: 1px solid var(--line-2); border-radius: var(--radius); overflow: hidden; }
.stat { background: var(--ink-1); padding: clamp(1.4rem, 1rem + 2vw, 2.2rem); }
.stat__num { font-family: var(--font-serif); font-size: clamp(2.2rem, 1.4rem + 3vw, 3.4rem); line-height: 1; color: var(--blue); }
.stat__label { margin-top: 0.6rem; font-size: 0.82rem; color: var(--muted); letter-spacing: 0.02em; }

/* ---------- Cards grid ---------- */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(1.5rem, 1rem + 3vw, 3rem); }
.grid-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr)); gap: 1.5rem; }
.card {
  background: linear-gradient(180deg, var(--ink-2), var(--ink-1));
  border: 1px solid var(--line-2); border-radius: var(--radius); padding: clamp(1.5rem, 1rem + 2vw, 2.2rem);
  transition: transform 0.5s var(--ease), border-color 0.5s var(--ease);
}
.card:hover { transform: translateY(-4px); border-color: var(--line); }
.card h3 { font-size: 1.5rem; margin-bottom: 0.6rem; }
.card p { color: var(--muted); font-size: 0.96rem; }
.card__eyebrow { font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--blue); margin-bottom: 0.9rem; }

/* ---------- Pull quote ---------- */
.pullquote { font-family: var(--font-serif); font-weight: 500; font-size: clamp(1.6rem, 1.1rem + 2.4vw, 2.8rem); line-height: 1.22; letter-spacing: -0.01em; max-width: 22ch; }
.pullquote .mark { color: var(--blue); }

/* ---------- Social row ---------- */
.socials { display: flex; flex-wrap: wrap; gap: 0.8rem; }
.social {
  display: inline-flex; align-items: center; gap: 0.6rem; padding: 0.6rem 1.1rem; border-radius: 100px;
  border: 1px solid var(--line); font-size: 0.86rem; color: rgba(233,240,247,0.82);
  transition: all 0.35s var(--ease); background: rgba(255,255,255,0.02);
}
.social svg { width: 17px; height: 17px; }
.social:hover { border-color: rgba(138,205,234,0.5); color: var(--paper); background: rgba(138,205,234,0.08); transform: translateY(-2px); }

/* ---------- Contact form ---------- */
.form { display: grid; gap: 1.3rem; }
.field { display: grid; gap: 0.5rem; }
.field label { font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); }
.field input, .field textarea, .field select {
  font: inherit; font-size: 0.98rem; color: var(--paper);
  background: var(--ink-2); border: 1px solid var(--line); border-radius: 10px;
  padding: 0.9rem 1.1rem; width: 100%; transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}
.field textarea { resize: vertical; min-height: 150px; }
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: rgba(138,205,234,0.6); background: var(--ink-3); }
.field input::placeholder, .field textarea::placeholder { color: var(--muted-2); }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.3rem; }
.form__note { font-size: 0.82rem; color: var(--muted); }
.form__status { font-size: 0.9rem; padding: 0.6rem 0; min-height: 1.4rem; }
.form__status.ok { color: var(--blue-bright); }
.form__status.err { color: #F0A0A0; }

/* ---------- Footer ---------- */
.footer { background: var(--ink-1); border-top: 1px solid var(--line-2); padding-block: clamp(3.5rem, 2rem + 5vw, 5.5rem) 2.5rem; position: relative; z-index: 2; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: clamp(2rem, 1rem + 4vw, 4rem); }
.footer__brand .brand { margin-bottom: 1.2rem; }
.footer__tag { color: var(--muted); max-width: 34ch; font-size: 0.96rem; }
.footer__col h4 { font-family: var(--font-mono); font-weight: 500; font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted-2); margin-bottom: 1.1rem; }
.footer__col ul { list-style: none; padding: 0; display: grid; gap: 0.6rem; }
.footer__col a { color: rgba(233,240,247,0.74); font-size: 0.95rem; transition: color 0.3s var(--ease); }
.footer__col a:hover { color: var(--blue-bright); }
.footer__bottom { margin-top: clamp(2.5rem, 1.5rem + 3vw, 4rem); padding-top: 1.8rem; border-top: 1px solid var(--line-2); display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between; align-items: center; }
.footer__bottom p { font-size: 0.82rem; color: var(--muted-2); }
.footer__legal { display: flex; gap: 1.4rem; }
.footer__legal a { font-size: 0.82rem; color: var(--muted); }
.footer__legal a:hover { color: var(--blue-bright); }

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: 0.08s; }
.reveal[data-delay="2"] { transition-delay: 0.16s; }
.reveal[data-delay="3"] { transition-delay: 0.24s; }
.reveal[data-delay="4"] { transition-delay: 0.32s; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* ---------- Legal pages ---------- */
.legal { padding-top: calc(var(--nav-h) + clamp(3rem, 2rem + 4vw, 5rem)); }
.legal h1 { font-size: clamp(2.4rem, 1.6rem + 3vw, 3.6rem); margin-bottom: 0.6rem; }
.legal .updated { font-family: var(--font-mono); font-size: 0.78rem; color: var(--muted-2); letter-spacing: 0.1em; margin-bottom: 3rem; }
.legal h2 { font-size: 1.5rem; margin-top: 2.6rem; margin-bottom: 0.8rem; color: var(--paper); }
.legal p, .legal li { color: rgba(233,240,247,0.78); max-width: 72ch; }
.legal ul { padding-left: 1.2rem; display: grid; gap: 0.4rem; margin-top: 0.6rem; }
.legal a { color: var(--blue-bright); text-decoration: underline; text-underline-offset: 3px; }

/* subtle page-top spacer for interior pages that don't start with a full hero */
.page-pad { padding-top: var(--nav-h); }

/* ---------- Responsive ---------- */
@media (max-width: 1240px) {
  .nav__links { display: none; }
  .nav__toggle { display: block; }
}
@media (max-width: 900px) {
  .split { grid-template-columns: 1fr; }
  .split--reverse .split__media { order: 0; }
  .grid-2 { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}
@media (max-width: 640px) {
  .hero__cue { display: none; }
}
@media (max-width: 560px) {
  .form__row { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .hero__actions { flex-direction: column; align-items: stretch; }
  .btn { justify-content: center; }
  .featured__panel { gap: 1.4rem 1.8rem; }
  .featured__panel .net { height: 21px; }
  .featured__panel .net--tall { height: 28px; }
}
