/* ============================================================
   TALC AI — global site stylesheet
   Editorial, restrained. Built on top of tokens.css.
   ============================================================ */

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; }
body {
  font-family: 'Poppins', system-ui, sans-serif;
  color: var(--talc-black);
  background: var(--talc-white);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
img { max-width: 100%; display: block; }
::selection { background: var(--talc-blue); color: #fff; }

/* Reduced motion: kill transitions/animations */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .hero-reels__track { animation: none !important; }
  .hero-reels {
    mask-image: none !important;
    -webkit-mask-image: none !important;
  }
  /* §5 parallax disabled */
  [data-parallax],
  .section::before,
  .hero-edit::before { transform: none !important; }
}

/* ─────────────────────────────────────────────────────────────
   §1.1.b — Color safety nets.
   No surface should ever be dark text on a dark background or
   vice versa, regardless of class mistakes, inline-style
   accidents or runtime JS injection.
   ───────────────────────────────────────────────────────────── */
.section--dark,
.section--dark *:not(.btn):not(.seat-badge):not(.callout):not(.timeline__when):not(.price-card):not(.price-card *) {
  color: inherit;
}
.section--dark { color: #fff; }

.section--blue,
.section--blue *:not(.btn):not(.seat-badge):not(.callout):not(.price-card):not(.price-card *) {
  color: inherit;
}
.section--blue { color: #fff; }

.hero-edit--dark,
.hero-edit--dark *:not(.btn):not(.seat-badge) {
  color: inherit;
}
.hero-edit--dark { color: #fff; }

/* Belt-and-braces: any element with a dark background inline-style
   inherits white text. */
[style*="var(--talc-black)"],
[style*="background:#0F0F12"],
[style*="background: #0F0F12"] { color: #fff; }

/* ============================================================
   Skip link
   ============================================================ */
.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  background: var(--talc-blue);
  color: #fff;
  padding: 12px 18px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 13px;
  z-index: 1000;
  transition: top 160ms ease;
}
.skip-link:focus { top: 12px; outline: 2px solid #fff; outline-offset: 2px; }

/* ============================================================
   Layout shell
   ============================================================ */
.shell {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}
.shell--narrow { max-width: 1080px; }
.shell--reading { max-width: 740px; }
@media (max-width: 768px) {
  .shell { padding: 0 20px; }
}

/* ============================================================
   Typography helpers
   ============================================================ */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: 'Poppins';
  font-weight: 700;
  /* §2.2 — 11px floor on uppercase eyebrow caps. */
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--talc-blue);
  margin: 0 0 32px;
  line-height: 1;
}
.eyebrow::before {
  content: "";
  width: 24px;
  height: 1px;
  background: currentColor;
  flex: none;
}
.eyebrow--plain::before { display: none; }
.section--dark .eyebrow { color: var(--talc-blue-light); }
.section--blue .eyebrow { color: #fff; }

.display {
  font-family: 'Poppins';
  font-weight: 800;
  font-style: italic;
  font-size: clamp(40px, 5.4vw, 72px);
  /* Bumped 1.05 → 1.08 to match .hero-edit__headline so multi-line
     section headlines have the same breathing room as the hero. */
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin: 0 0 24px;
  color: var(--talc-black);
  max-width: 22ch;
  text-wrap: balance;
}
.display .accent { color: var(--talc-blue); }
.display--hero {
  font-size: clamp(40px, 8vw, 88px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  max-width: 16ch;
}
.section--dark .display { color: #fff; }
.section--dark .display .accent { color: var(--talc-blue-light); }
.section--blue .display { color: #fff; }
/* §2.1 — the accent on a blue background was rgba(255,255,255,0.7) which
   only hit 3.08:1. Solid Blue Pale lifts it well above AA. */
.section--blue .display .accent { color: var(--talc-blue-pale); }

.lede {
  font-size: 19px;
  /* 1.55 → 1.6 across the board so the lede paragraphs read as
     a single calm block, not stacked tight lines. */
  line-height: 1.6;
  color: var(--gray);
  max-width: 60ch;
  margin: 0 0 32px;
  font-weight: 400;
}
.section--dark .lede { color: rgba(255,255,255,0.8); }
.section--blue .lede { color: #fff; opacity: 0.95; }

.label-caps {
  font-family: 'Poppins';
  font-weight: 700;
  /* §2.2 — 11px floor. */
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--talc-black);
  line-height: 1.3;
}
.section--dark .label-caps { color: #fff; }

.italic-num {
  font-family: 'Poppins';
  font-weight: 800;
  font-style: italic;
  letter-spacing: -0.025em;
  color: var(--talc-blue);
  line-height: 0.95;
}

/* ============================================================
   Sections — full-page parallax background layer (§5.1).
   The ::before owns the section background tint; JS sets
   --parallax-y to a small ±60px range driven by scroll.
   ============================================================ */
.section {
  padding: 120px 0;
  position: relative;
  /* `clip` instead of `hidden` — clips both axes the same way but
     doesn't open a scroll context, so the parallax pseudo (which
     extends inset:-10% 0) is contained without making the section
     scrollable on resize-recalc oddities. */
  overflow: clip;
  isolation: isolate;
}
.section::before {
  content: "";
  position: absolute;
  inset: -10% 0;
  background: inherit;
  z-index: 0;
  pointer-events: none;
  will-change: transform;
  transform: translate3d(0, var(--parallax-y, 0), 0);
}
.section > * { position: relative; z-index: 1; }
.section--tight { padding: 80px 0; }
.section--xtra  { padding: 160px 0; }
.section--dark { background: var(--talc-black); color: #fff; }
.section--blue { background: var(--talc-blue); color: #fff; }
.section--pale { background: var(--talc-blue-pale); }
.section--alt  { background: var(--gray-light); }

/* Force text inheritance on dark/blue (tokens.css declares per-element colors) */
.section--dark, .section--dark p, .section--dark li, .section--dark h1, .section--dark h2, .section--dark h3, .section--dark h4, .section--dark h5 { color: inherit; }
.section--blue, .section--blue p, .section--blue li, .section--blue h1, .section--blue h2, .section--blue h3, .section--blue h4, .section--blue h5 { color: inherit; }
.section--dark { color: #fff; }
.section--blue { color: #fff; }

@media (max-width: 1023px) {
  .section { padding: 96px 0; }
  .section--xtra { padding: 120px 0; }
}
@media (max-width: 767px) {
  .section { padding: 80px 0; }
  .section--xtra { padding: 80px 0; }
}

/* ============================================================
   Buttons — WCAG-compliant focus rings everywhere
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Poppins';
  font-weight: 700;
  font-size: 14px;
  line-height: 1;
  padding: 14px 22px;
  border-radius: 6px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: background 200ms ease, color 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
  min-height: 44px;
  text-decoration: none;
  white-space: nowrap;
  position: relative;
}
.btn:focus-visible {
  outline: 2px solid var(--talc-blue);
  outline-offset: 2px;
  box-shadow: 0 0 0 6px rgba(74,103,245,0.18);
}

.btn--primary { background: var(--talc-blue); color: #fff; border-color: var(--talc-blue); }
.btn--primary:hover { background: var(--talc-blue-dark); border-color: var(--talc-blue-dark); }

.btn--secondary {
  background: #fff;
  color: var(--talc-blue);
  border-color: var(--talc-blue);
}
.btn--secondary:hover { background: var(--talc-blue-pale); }

.btn--ghost {
  background: transparent;
  color: var(--talc-black);
  border-color: var(--gray-mid);
}
.btn--ghost:hover { background: var(--gray-light); border-color: var(--talc-black); }

.btn--ghost-dark {
  background: rgba(255,255,255,0.05);
  color: #fff;
  border-color: rgba(255,255,255,0.28);
}
.btn--ghost-dark:hover { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.5); }

.btn--white {
  background: #fff;
  color: var(--talc-blue);
  border-color: #fff;
}
.btn--white:hover { background: var(--talc-blue-pale); border-color: var(--talc-blue-pale); }

.btn--on-blue-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.6);
}
.btn--on-blue-outline:hover { background: rgba(255,255,255,0.1); border-color: #fff; }
.btn--on-blue-outline:focus-visible { outline-color: #fff; box-shadow: 0 0 0 6px rgba(255,255,255,0.2); }

.btn--lg { font-size: 15px; padding: 16px 26px; min-height: 52px; }
.btn--block { width: 100%; justify-content: center; }
/* §2.1 — disabled buttons should still be visible enough to scan;
   40% opacity dropped them below 2:1 on white. */
.btn[disabled] { opacity: 0.6; cursor: not-allowed; border-color: var(--gray-mid); }

.text-link {
  font-weight: 700;
  color: var(--talc-blue);
  display: inline-flex;
  gap: 6px;
  align-items: center;
  font-size: 14px;
  border-bottom: 1.5px solid transparent;
  padding-bottom: 2px;
  transition: border-color 200ms ease, color 200ms ease;
}
.text-link:hover { border-bottom-color: var(--talc-blue); }
.text-link:focus-visible {
  outline: 2px solid var(--talc-blue);
  outline-offset: 4px;
  border-radius: 2px;
}
.section--dark .text-link { color: var(--talc-blue-light); }
.section--dark .text-link:hover { border-bottom-color: var(--talc-blue-light); }
.hero-edit--dark .text-link { color: var(--talc-blue-light); }
.hero-edit--dark .text-link:hover { border-bottom-color: var(--talc-blue-light); }
.section--blue .text-link { color: #fff; }
.section--blue .text-link:hover { border-bottom-color: #fff; }

/* ============================================================
   Stat strip
   ============================================================ */
.stat-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 56px;
  padding: 24px 0;
}
.stat-strip--bordered {
  border-top: 0.5px solid var(--gray-mid);
  border-bottom: 0.5px solid var(--gray-mid);
  padding: 48px 0;
}
.section--dark .stat-strip--bordered { border-color: rgba(255,255,255,0.18); }
.section--blue .stat-strip--bordered { border-color: rgba(255,255,255,0.35); }

@media (max-width: 768px) {
  .stat-strip { grid-template-columns: 1fr; gap: 32px; }
}

.stat-num {
  font-family: 'Poppins';
  font-weight: 800;
  font-style: italic;
  font-size: clamp(48px, 6vw, 80px);
  line-height: 0.95;
  letter-spacing: -0.025em;
  color: var(--talc-blue);
  margin: 0 0 12px;
}
.section--dark .stat-num, .section--blue .stat-num { color: #fff; }
.stat-lbl {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--talc-black);
  line-height: 1.4;
  max-width: 240px;
}
.section--dark .stat-lbl, .section--blue .stat-lbl { color: #fff; opacity: 0.9; }

/* Eyebrow-sized mini strip */
.mini-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 24px 48px;
  padding: 28px 0;
  border-top: 0.5px solid var(--gray-mid);
  border-bottom: 0.5px solid var(--gray-mid);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--talc-black);
}
.mini-strip > * { display: flex; align-items: center; gap: 12px; }
.mini-strip > *::before {
  content: "";
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--talc-blue);
  flex: none;
}
.section--dark .mini-strip { border-color: rgba(255,255,255,0.18); color: #fff; }
.section--blue .mini-strip { border-color: rgba(255,255,255,0.35); color: #fff; }
.section--blue .mini-strip > *::before { background: #fff; }

/* ============================================================
   Navigation
   ============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0);
  backdrop-filter: none;
  border-bottom: 0.5px solid transparent;
  transition: background 200ms ease, border-color 200ms ease, box-shadow 200ms ease, backdrop-filter 200ms ease;
}
.nav.is-scrolled {
  background: rgba(255,255,255,0.92);
  backdrop-filter: saturate(150%) blur(12px);
  -webkit-backdrop-filter: saturate(150%) blur(12px);
  border-bottom-color: var(--gray-mid);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  gap: 40px;
}
.nav__brand {
  font-family: 'Poppins';
  font-weight: 800;
  font-style: italic;
  font-size: 24px;
  letter-spacing: -0.02em;
  color: var(--talc-blue);
  text-decoration: none;
}
.nav__brand:focus-visible { outline: 2px solid var(--talc-blue); outline-offset: 4px; border-radius: 2px; }

.nav__links {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav__link {
  position: relative;
  font-family: 'Poppins';
  font-size: 13.5px;
  font-weight: 600;
  color: var(--talc-black);
  padding: 10px 14px;
  border-radius: 6px;
  background: none;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  line-height: 1;
  min-height: 44px;
  transition: color 160ms ease, background 160ms ease;
}
.nav__link:hover { color: var(--talc-blue); }
.nav__link:focus-visible { outline: 2px solid var(--talc-blue); outline-offset: 2px; }
.nav__link.is-active { color: var(--talc-blue); }
.nav__link.is-active::after {
  content: "";
  position: absolute;
  left: 14px; right: 14px;
  bottom: 4px;
  height: 2px;
  background: var(--talc-blue);
  border-radius: 2px;
}
.nav__caret { transition: transform 200ms ease; opacity: 0.65; }
.nav__dropdown.is-open .nav__caret { transform: rotate(180deg); }

.nav__dropdown { position: relative; }
.nav__bridge {
  position: absolute;
  top: 100%;
  left: 0; right: 0;
  height: 16px;
  display: none;
}
.nav__dropdown.is-open .nav__bridge { display: block; }
.nav__menu {
  position: absolute;
  top: calc(100% + 14px);
  left: -16px;
  background: #fff;
  border: 0.5px solid var(--gray-mid);
  border-radius: 12px;
  box-shadow: 0 20px 50px -20px rgba(15,15,18,0.18);
  padding: 12px;
  min-width: 320px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 200ms ease, transform 200ms ease, visibility 200ms ease;
  z-index: 200;
}
.nav__dropdown.is-open .nav__menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav__menu-item {
  display: block;
  padding: 12px 14px;
  border-radius: 8px;
  text-decoration: none;
  color: var(--talc-black);
  transition: background 160ms ease;
  min-height: 44px;
}
.nav__menu-item:hover { background: var(--talc-blue-pale); }
.nav__menu-item:focus-visible {
  outline: 2px solid var(--talc-blue);
  outline-offset: -2px;
  background: var(--talc-blue-pale);
}
.nav__menu-label {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--talc-black);
  line-height: 1.3;
}
.nav__menu-item:hover .nav__menu-label { color: var(--talc-blue-dark); }
.nav__menu-sub {
  display: block;
  font-size: 12px;
  font-weight: 500;
  color: var(--gray);
  margin-top: 2px;
}

.nav__cta {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav__burger {
  display: none;
  width: 44px; height: 44px;
  background: transparent;
  border: 0.5px solid var(--gray-mid);
  border-radius: 8px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 0;
}
.nav__burger span {
  display: block;
  width: 18px; height: 1.5px;
  background: var(--talc-black);
  border-radius: 1px;
}
.nav__burger:focus-visible { outline: 2px solid var(--talc-blue); outline-offset: 2px; }

@media (max-width: 1023px) {
  .nav__links { display: none; }
  .nav__cta > .btn { display: none; }
  .nav__burger { display: flex; }
}

/* Mobile overlay */
.nav__overlay {
  position: fixed;
  inset: 0;
  background: #fff;
  z-index: 200;
  padding: 24px 24px 32px;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 280ms ease;
  visibility: hidden;
}
.nav__overlay.is-open {
  transform: translateX(0);
  visibility: visible;
}
.nav__overlay-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
}
.nav__overlay-close {
  width: 44px; height: 44px;
  background: transparent;
  border: 0.5px solid var(--gray-mid);
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.nav__overlay-close:focus-visible { outline: 2px solid var(--talc-blue); outline-offset: 2px; }
.nav__overlay-links {
  flex: 1;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.nav__overlay-links > a {
  font-family: 'Poppins';
  font-weight: 700;
  font-style: italic;
  font-size: 28px;
  letter-spacing: -0.02em;
  color: var(--talc-black);
  padding: 16px 0;
  border-bottom: 0.5px solid var(--gray-mid);
  min-height: 56px;
}
.nav__overlay-sub {
  display: flex;
  flex-direction: column;
  padding: 8px 0 16px;
}
.nav__overlay-sub a {
  font-size: 15px;
  font-weight: 500;
  color: var(--gray);
  padding: 12px 0 12px 20px;
  min-height: 44px;
  border-left: 2px solid var(--gray-mid);
  margin-left: 4px;
}
.nav__overlay-sub a:hover { color: var(--talc-blue); border-left-color: var(--talc-blue); }
.nav__overlay-cta { margin-top: 24px; min-height: 56px; }

/* ============================================================
   Footer
   ============================================================ */
.footer {
  background: var(--talc-black);
  color: rgba(255,255,255,0.75);
  padding: 96px 0 32px;
  position: relative;
  overflow: hidden;
}
.footer__top {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1fr 1fr;
  gap: 56px;
  padding-bottom: 64px;
  border-bottom: 0.5px solid rgba(255,255,255,0.14);
  position: relative;
  z-index: 2;
}
.footer__brand {
  font-family: 'Poppins';
  font-weight: 800;
  font-style: italic;
  font-size: 56px;
  letter-spacing: -0.025em;
  color: #fff;
  margin: 0 0 16px;
  line-height: 1;
}
.footer__tag {
  font-size: 14px;
  line-height: 1.55;
  color: rgba(255,255,255,0.7);
  max-width: 340px;
  margin: 0 0 24px;
}
.footer__location {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}
.footer__location a { color: rgba(255,255,255,0.85); }
.footer__location a:hover { color: #fff; text-decoration: underline; }
.footer__col h5 {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 16px;
}
.footer__col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer__col a {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  transition: color 160ms ease;
}
.footer__col a:hover { color: #fff; }
.footer__col a:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
  border-radius: 2px;
}
.footer__link-btn {
  background: none;
  border: none;
  color: rgba(255,255,255,0.7);
  font-size: 14px;
  font-family: inherit;
  padding: 0;
  text-align: left;
  cursor: pointer;
  transition: color 160ms ease;
}
.footer__link-btn:hover { color: #fff; }
.footer__link-btn:focus-visible { outline: 2px solid #fff; outline-offset: 2px; border-radius: 2px; }

.footer__ai-disclosure {
  position: relative;
  z-index: 2;
  margin: 32px 0 0;
  padding: 24px 0;
  font-size: 12px;
  line-height: 1.6;
  color: rgba(255,255,255,0.55);
  border-bottom: 0.5px solid rgba(255,255,255,0.1);
  max-width: 760px;
}
.footer__ai-disclosure a {
  color: rgba(255,255,255,0.85);
  border-bottom: 1px solid rgba(255,255,255,0.3);
}
.footer__ai-disclosure a:hover { color: #fff; border-bottom-color: #fff; }

.footer__watermark {
  position: absolute;
  bottom: -32px;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Poppins';
  font-weight: 900;
  font-style: italic;
  font-size: clamp(120px, 22vw, 320px);
  letter-spacing: -0.04em;
  color: rgba(255,255,255,0.035);
  pointer-events: none;
  white-space: nowrap;
  line-height: 0.9;
  z-index: 1;
}
.footer__bot {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding-top: 24px;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  flex-wrap: wrap;
  gap: 16px;
}
.footer__bot-stack {
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-transform: none;
  letter-spacing: 0;
}
.footer__bot-brand {
  font-size: 12px;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.04em;
}
.footer__bot-entity {
  font-size: 10px;
  opacity: 0.65;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
@media (max-width: 1023px) {
  .footer__top { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 600px) {
  .footer__top { grid-template-columns: 1fr; gap: 32px; padding-bottom: 40px; }
  .footer__brand { font-size: 40px; }
}

/* ============================================================
   Cards
   ============================================================ */
.card {
  background: #fff;
  border: 0.5px solid var(--gray-mid);
  border-radius: 14px;
  padding: 32px;
  transition: border-color 200ms ease, box-shadow 200ms ease, transform 200ms ease;
  position: relative;
  /* §3.2 — card flex so footers (CTA rows) align across uneven titles. */
  display: flex;
  flex-direction: column;
}
.card .card__body { flex: 1; }
.card .card__footer { margin-top: auto; }
.card--dark {
  background: rgba(255,255,255,0.03);
  border-color: rgba(255,255,255,0.14);
}
.card--pale { background: var(--talc-blue-pale); border-color: transparent; }
.card--blue { background: var(--talc-blue); border-color: transparent; color: #fff; }
.card--solid-dark { background: var(--talc-black); border-color: transparent; color: #fff; }

a.card, button.card { display: block; text-align: left; cursor: pointer; }
a.card:hover, button.card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lift);
  border-color: var(--talc-blue);
}
a.card:focus-visible, button.card:focus-visible {
  outline: 2px solid var(--talc-blue);
  outline-offset: 4px;
}
.section--dark a.card:hover { border-color: var(--talc-blue-light); }

.card__n {
  font-family: 'Poppins';
  font-weight: 800;
  font-style: italic;
  font-size: 28px;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--talc-blue);
  margin: 0 0 24px;
}
.card--dark .card__n, .card--solid-dark .card__n { color: var(--talc-blue-light); }
.card__title {
  font-family: 'Poppins';
  font-weight: 700;
  font-size: 20px;
  line-height: 1.3;
  margin: 0 0 12px;
  color: inherit;
}
.card__body {
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--gray);
  margin: 0;
}
.card--dark .card__body, .card--solid-dark .card__body { color: rgba(255,255,255,0.78); }
.card--blue .card__body { color: rgba(255,255,255,0.92); }
.card__footer {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 0.5px solid var(--gray-mid);
}
.card--dark .card__footer, .card--solid-dark .card__footer { border-top-color: rgba(255,255,255,0.14); }

/* ============================================================
   Grids
   ============================================================ */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; align-items: start; }
.grid-2 > p, .grid-2 > .lede { max-width: 520px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
@media (max-width: 1023px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px)  { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

/* §3.4 — at 768–1023px, .grid-3 with three children would orphan the
   third card alone on row 2. Center it across both columns instead. */
@media (max-width: 1023px) and (min-width: 768px) {
  .grid-3 > :nth-child(3):last-child {
    grid-column: span 2;
    max-width: 50%;
    margin-left: auto;
    margin-right: auto;
  }
}

/* ============================================================
   Two-column header (display + lede)
   §3.1 — baseline alignment removes the empty band under the
   lede on inner pages where the headline runs to 2+ lines.
   ============================================================ */
.header-split {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  /* §2.2 — was align-items: baseline; the lede orphaned itself when the
     headline ran to >2 lines. End-aligning sits the lede on the baseline
     of the headline's last line. */
  align-items: end;
  margin-bottom: 80px;
}
.header-split > .lede,
.header-split > p:not(:first-child) {
  max-width: 460px;
  align-self: end;
  margin-bottom: 6px;
}
.header-split .lede { margin-bottom: 6px; }
@media (max-width: 1023px) {
  .header-split { grid-template-columns: 1fr; gap: 24px; margin-bottom: 56px; align-items: start; }
  .header-split > .lede { margin-bottom: 0; max-width: none; }
}

/* ============================================================
   Seat-counter badge
   ============================================================ */
.seat-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 18px 10px 14px;
  background: var(--talc-blue-pale);
  color: var(--talc-blue-dark);
  border-radius: 999px;
  font-family: 'Poppins';
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.04em;
  margin-bottom: 24px;
}
.seat-badge__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--talc-blue);
  flex: none;
}
.section--dark .seat-badge {
  background: rgba(74,103,245,0.18);
  color: #fff;
  border: 1px solid rgba(74,103,245,0.5);
}
.section--blue .seat-badge {
  background: rgba(255,255,255,0.15);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.3);
}

/* ============================================================
   Pricing cards
   ============================================================ */
.pricing-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr 1fr;
  gap: 16px;
  align-items: stretch;
}
@media (max-width: 1023px) { .pricing-grid { grid-template-columns: 1fr; } }

.price-card {
  background: #fff;
  border: 0.5px solid var(--gray-mid);
  border-radius: 14px;
  padding: 40px 32px 32px;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: transform 200ms ease, box-shadow 200ms ease;
}
.price-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); }
.price-card--featured {
  background: var(--talc-black);
  color: #fff;
  border-color: transparent;
  /* §3.5 — blue top-edge accent + ambient drop for the featured plan. */
  box-shadow:
    inset 0 3px 0 0 var(--talc-blue),
    0 30px 60px -30px rgba(74,103,245,0.45);
}
/* §3.5 — push non-featured price cards into a tinted blue border to balance the row. */
.pricing-grid .price-card:not(.price-card--featured) {
  border-color: rgba(74,103,245,0.25);
}
/* §1.7 — badge sits INSIDE the card, top-left, with the card padding
   adjusted so it doesn't crash into the .price-card__label below. */
.price-card__tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--talc-blue);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 7px 12px;
  border-radius: 4px;
}
.price-card { padding-top: 64px; }
.price-card__label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--talc-blue);
  margin: 0 0 24px;
}
.price-card--featured .price-card__label { color: var(--talc-blue-light); }
.price-card__price {
  font-family: 'Poppins';
  font-weight: 800;
  font-style: italic;
  font-size: 56px;
  line-height: 1;
  letter-spacing: -0.025em;
  margin: 0 0 8px;
}
.price-card__price small {
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  color: var(--gray);
  margin-right: 6px;
}
.price-card--featured .price-card__price small { color: rgba(255,255,255,0.6); }
.price-card__cad {
  font-size: 14px;
  color: var(--gray);
  margin: 0 0 4px;
}
.price-card--featured .price-card__cad { color: rgba(255,255,255,0.75); }
.price-card__save {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--talc-blue);
  margin: 0 0 28px;
}
.price-card--featured .price-card__save { color: var(--talc-blue-light); }
.price-card__list {
  list-style: none;
  padding: 0; margin: 0 0 32px;
  display: flex; flex-direction: column; gap: 12px;
  font-size: 14px;
  color: var(--talc-black);
  border-top: 0.5px solid var(--gray-mid);
  padding-top: 20px;
  flex: 1;
}
.price-card--featured .price-card__list { color: rgba(255,255,255,0.92); border-top-color: rgba(255,255,255,0.16); }
.price-card__list li { display: flex; gap: 10px; align-items: baseline; }
.price-card__list li::before {
  content: "✓";
  color: var(--talc-blue);
  font-weight: 700;
  font-size: 14px;
}
.price-card--featured .price-card__list li::before { color: var(--talc-blue-light); }

/* ============================================================
   §1.1 — Featured pricing card text colour safety net.
   The §1.1.b colour safety net deliberately excludes .price-card
   descendants so each card can manage its own palette. That means
   .price-card--featured (TALC Black background) has to explicitly
   declare every text element WHITE — otherwise .price-card__price
   falls to the document default (--talc-black) and renders as
   black-on-black (literal 1.0:1 contrast).
   ============================================================ */
.price-card--featured,
.price-card--featured .price-card__price,
.price-card--featured .price-card__price small,
.price-card--featured .price-card__cad,
.price-card--featured .price-card__save,
.price-card--featured .price-card__label,
.price-card--featured .price-card__list,
.price-card--featured .price-card__list li,
.price-card--featured .price-card__list li::before {
  color: #fff;
}
/* Then tone-down the secondary text inside the featured card so
   the AED amount stays the loudest element on the card. */
.price-card--featured .price-card__price small { color: rgba(255,255,255,0.7); }
.price-card--featured .price-card__cad         { color: rgba(255,255,255,0.78); }
.price-card--featured .price-card__save        { color: var(--talc-blue-light); }
.price-card--featured .price-card__label       { color: var(--talc-blue-light); }
.price-card--featured .price-card__list li::before { color: var(--talc-blue-light); }

.price-anchor {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 24px;
}
.price-anchor strong {
  font-family: 'Poppins';
  font-weight: 800;
  font-style: italic;
  font-size: 32px;
  line-height: 1;
  letter-spacing: -0.025em;
  color: var(--talc-black);
  text-decoration: line-through;
  text-decoration-color: var(--talc-blue);
  text-decoration-thickness: 2px;
}

/* ============================================================
   Feature list (✓ / —)
   ============================================================ */
.feature-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 14px; }
.feature-list li { display: flex; gap: 14px; align-items: baseline; font-size: 15px; line-height: 1.55; }
.feature-list li::before { content: "✓"; color: var(--talc-blue); font-weight: 700; font-size: 16px; flex: none; }
.feature-list--exclude li::before { content: "—"; color: var(--gray); font-weight: 700; }
.feature-list--exclude li { color: var(--gray); }
.section--dark .feature-list li::before { color: var(--talc-blue-light); }
.section--dark .feature-list--exclude li { color: rgba(255,255,255,0.55); }
.section--dark .feature-list--exclude li::before { color: rgba(255,255,255,0.4); }

/* ============================================================
   Accordion / FAQ
   ============================================================ */
.faq { border-top: 0.5px solid var(--gray-mid); }
.faq__item { border-bottom: 0.5px solid var(--gray-mid); }
.faq__btn {
  width: 100%;
  background: transparent;
  border: none;
  padding: 28px 0;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  font-family: 'Poppins';
  font-weight: 700;
  font-size: 19px;
  color: var(--talc-black);
  cursor: pointer;
  line-height: 1.35;
  min-height: 56px;
  list-style: none;
}
.faq__btn::-webkit-details-marker { display: none; }
.faq__btn:hover { color: var(--talc-blue); }
.faq__btn:focus-visible { outline: 2px solid var(--talc-blue); outline-offset: 4px; }
.faq__chev {
  /* §2.3 — 40×40 affordance (whole row is the hit target, but the chev now visually matches). */
  width: 40px; height: 40px;
  border: 0.5px solid var(--gray-mid);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: none;
  transition: transform 200ms ease, background 200ms ease;
}
.faq__chev::before {
  content: "";
  width: 7px; height: 7px;
  border-right: 1.5px solid var(--talc-black);
  border-bottom: 1.5px solid var(--talc-black);
  transform: rotate(45deg) translate(-2px,-2px);
  transition: transform 200ms ease, border-color 200ms ease;
}
.faq__item[open] .faq__chev { background: var(--talc-blue); border-color: var(--talc-blue); }
.faq__item[open] .faq__chev::before { transform: rotate(-135deg) translate(-2px,-2px); border-color: #fff; }
.faq__body {
  padding: 0 64px 32px 0;
  font-size: 16px;
  line-height: 1.7;
  color: var(--gray);
  max-width: 75ch;
}
@media (max-width: 600px) {
  .faq__btn { font-size: 17px; padding: 22px 0; }
  .faq__body { padding: 0 0 24px; font-size: 15px; }
}

/* ============================================================
   Forms (Apply + Newsletter)
   ============================================================ */
.field { display: flex; flex-direction: column; gap: 8px; }
/* §2.2 — 11px floor on the mobile body / footer. Field help stays 13px (AA). */
.field__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--talc-black);
}
.field__label small {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--gray);
  margin-left: 8px;
  text-transform: uppercase;
}
.field__help { font-size: 13px; color: var(--gray); margin: 4px 0 0; }
.field__input, .field__select, .field__textarea {
  width: 100%;
  background: #fff;
  border: 1.5px solid var(--gray-mid);
  border-radius: 12px;
  padding: 16px 20px;
  font-family: 'Poppins';
  font-size: 15px;
  color: var(--talc-black);
  transition: border-color 200ms ease, box-shadow 200ms ease;
  min-height: 56px;
}
.field__input::placeholder, .field__textarea::placeholder { color: rgba(15,15,18,0.35); }
.field__input:focus, .field__select:focus, .field__textarea:focus {
  outline: none;
  border-color: var(--talc-blue);
  box-shadow: 0 0 0 3px rgba(74,103,245,0.3);
}
.field__textarea { min-height: 96px; resize: vertical; }
.field__select {
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path fill='none' stroke='%230F0F12' stroke-width='1.5' d='M1 1l5 5 5-5'/></svg>");
  background-repeat: no-repeat;
  background-position: right 20px center;
  padding-right: 48px;
}
.field--error .field__input,
.field--error .field__select,
.field--error .field__textarea {
  border-color: #D8324B;
  box-shadow: 0 0 0 3px rgba(216,50,75,0.15);
}
.field__error {
  font-size: 13px;
  color: #D8324B;
  margin: 4px 0 0;
}
.field__counter {
  font-size: 12px;
  color: var(--gray);
  text-align: right;
  margin: 4px 0 0;
}

.field--reveal {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 220ms ease, opacity 200ms ease, margin 200ms ease;
  margin: 0;
}
.field--reveal.is-shown {
  max-height: 200px;
  opacity: 1;
}

.checkbox {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  line-height: 1.55;
  color: var(--talc-black);
  cursor: pointer;
}
.checkbox input {
  appearance: none;
  width: 22px; height: 22px;
  border: 1.5px solid var(--gray-mid);
  border-radius: 4px;
  background: #fff;
  flex: none;
  margin-top: 1px;
  cursor: pointer;
  transition: background 160ms ease, border-color 160ms ease;
  position: relative;
}
.checkbox input:checked {
  background: var(--talc-blue);
  border-color: var(--talc-blue);
}
.checkbox input:checked::after {
  content: "";
  position: absolute;
  left: 6px; top: 2px;
  width: 6px; height: 11px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(45deg);
}
.checkbox input:focus-visible {
  outline: 2px solid var(--talc-blue);
  outline-offset: 2px;
}
.checkbox a { color: var(--talc-blue); border-bottom: 1px solid var(--talc-blue); }

/* Loading spinner */
.spinner {
  display: inline-block;
  width: 14px; height: 14px;
  border: 2px solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
  animation: spin 800ms linear infinite;
  vertical-align: -2px;
  margin-right: 6px;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ============================================================
   Modal (Apply, generic)
   ============================================================ */
.modal {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: none;
  align-items: flex-start;
  justify-content: center;
  padding: 40px 16px;
  overflow-y: auto;
}
.modal.is-open { display: flex; }
.modal__backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15,15,18,0.72);
  backdrop-filter: blur(4px);
}
.modal__panel {
  position: relative;
  background: #fff;
  border-radius: 16px;
  max-width: 640px;
  width: 100%;
  padding: 40px;
  box-shadow: 0 30px 80px -30px rgba(0,0,0,0.4);
  margin: auto;
}
.modal__close {
  position: absolute;
  top: 16px; right: 16px;
  width: 44px; height: 44px;
  background: transparent;
  border: 0.5px solid var(--gray-mid);
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.modal__close:focus-visible { outline: 2px solid var(--talc-blue); outline-offset: 2px; }

/* ============================================================
   Aside / callout
   ============================================================ */
.callout {
  border: 0.5px solid var(--gray-mid);
  border-left: 3px solid var(--talc-blue);
  padding: 24px 28px;
  border-radius: 10px;
  background: var(--talc-blue-pale);
}
.section--dark .callout {
  background: rgba(74,103,245,0.1);
  border-color: rgba(255,255,255,0.18);
  border-left-color: var(--talc-blue-light);
}
.callout__title {
  font-family: 'Poppins';
  font-weight: 700;
  font-style: italic;
  font-size: 19px;
  margin: 0 0 8px;
  color: var(--talc-blue-dark);
}
.section--dark .callout__title { color: var(--talc-blue-light); }
.callout p {
  font-size: 14.5px;
  line-height: 1.65;
  margin: 0;
  color: var(--talc-black);
}
.section--dark .callout p { color: rgba(255,255,255,0.82); }

/* ============================================================
   Pull quote
   ============================================================ */
.pull-quote {
  font-family: 'Poppins';
  font-weight: 700;
  font-style: italic;
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--talc-black);
  max-width: 22ch;
  margin: 0 0 24px;
  text-wrap: balance;
}
.pull-quote__source {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--talc-blue);
}

/* ============================================================
   Timeline
   ============================================================ */
.timeline { display: flex; flex-direction: column; }
.timeline__row {
  display: grid;
  grid-template-columns: 80px 1fr 200px;
  gap: 32px;
  align-items: baseline;
  padding: 32px 0;
  border-bottom: 0.5px solid var(--gray-mid);
}
.timeline__row:last-child { border-bottom: none; }
.section--dark .timeline__row { border-color: rgba(255,255,255,0.14); }
.timeline__n {
  font-family: 'Poppins';
  font-weight: 800;
  font-style: italic;
  font-size: 48px;
  line-height: 1;
  letter-spacing: -0.025em;
  color: var(--talc-blue);
}
.section--dark .timeline__n { color: var(--talc-blue-light); }
.timeline__body h3 {
  font-family: 'Poppins';
  font-weight: 700;
  font-size: 20px;
  margin: 0 0 8px;
  color: var(--talc-black);
}
.section--dark .timeline__body h3 { color: #fff; }
.timeline__body p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--gray);
  margin: 0;
  max-width: 60ch;
}
.section--dark .timeline__body p { color: rgba(255,255,255,0.78); }
.timeline__when {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--talc-blue-dark);
  padding: 8px 14px;
  background: var(--talc-blue-pale);
  border-radius: 4px;
  display: inline-block;
  justify-self: end;
  white-space: nowrap;
}
.section--dark .timeline__when { background: rgba(74,103,245,0.18); color: #fff; }
@media (max-width: 800px) {
  .timeline__row { grid-template-columns: 56px 1fr; }
  .timeline__when { grid-column: 1 / -1; justify-self: start; margin-top: 4px; }
  .timeline__n { font-size: 32px; }
}

/* ============================================================
   Cookie banner + preferences modal
   ============================================================ */
.cookie-banner {
  position: fixed;
  left: 24px;
  right: 24px;
  bottom: 24px;
  max-width: 640px;
  background: var(--talc-black);
  color: #fff;
  border-radius: 14px;
  padding: 24px 24px 20px;
  z-index: 300;
  box-shadow: 0 24px 60px -20px rgba(0,0,0,0.5);
  transform: translateY(20px);
  opacity: 0;
  pointer-events: none;
  transition: transform 240ms ease, opacity 240ms ease;
}
.cookie-banner.is-visible { transform: translateY(0); opacity: 1; pointer-events: auto; }
.cookie-banner h6 {
  font-family: 'Poppins';
  font-weight: 700;
  font-style: italic;
  font-size: 18px;
  margin: 0 0 6px;
  color: #fff;
}
.cookie-banner p { margin: 0 0 16px; color: rgba(255,255,255,0.78); font-size: 13.5px; line-height: 1.55; }
.cookie-banner__btns { display: flex; gap: 8px; flex-wrap: wrap; }
/* §2.3 — PDPL/GDPR tap target floor: 44px. */
.cookie-banner .btn { font-size: 12px; padding: 11px 16px; min-height: 44px; }
.cookie-banner .btn--secondary { background: transparent; color: #fff; border-color: rgba(255,255,255,0.35); }
.cookie-banner .btn--secondary:hover { background: rgba(255,255,255,0.08); }
.cookie-banner .btn--ghost { background: transparent; color: rgba(255,255,255,0.7); border-color: transparent; }
.cookie-banner .btn--ghost:hover { color: #fff; }

/* §1.7 — when the banner is visible the footer can sit under it.
   Push <main> up so the final CTA never overlaps the banner. */
body.has-cookie-banner main { padding-bottom: 220px; }
@media (max-width: 600px) { body.has-cookie-banner main { padding-bottom: 280px; } }

@media (max-width: 600px) {
  .cookie-banner { left: 12px; right: 12px; bottom: 12px; padding: 20px; }
}

.cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: none;
  align-items: flex-start;
  justify-content: center;
  padding: 40px 16px;
  overflow-y: auto;
}
.cookie-modal.is-open { display: flex; }
.cookie-modal__backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15,15,18,0.6);
  backdrop-filter: blur(4px);
}
.cookie-modal__panel {
  position: relative;
  background: #fff;
  border-radius: 16px;
  max-width: 560px;
  width: 100%;
  padding: 32px;
  box-shadow: 0 30px 80px -30px rgba(0,0,0,0.4);
  margin: auto;
}
.cookie-modal__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; gap: 16px; }
.cookie-modal__close {
  width: 40px; height: 40px;
  background: transparent;
  border: 0.5px solid var(--gray-mid);
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: none;
}
.cookie-modal__close:focus-visible { outline: 2px solid var(--talc-blue); outline-offset: 2px; }
.cookie-modal__lede { color: var(--gray); margin: 0 0 24px; font-size: 14.5px; }
.cookie-categories { list-style: none; padding: 0; margin: 0 0 24px; }
.cookie-categories li {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 0.5px solid var(--gray-mid);
}
.cookie-categories li:last-child { border-bottom: none; }
.cookie-categories strong { display: block; font-size: 15px; font-weight: 700; color: var(--talc-black); margin-bottom: 2px; }
.cookie-categories p { font-size: 13px; color: var(--gray); margin: 0; line-height: 1.5; }
.cookie-modal__actions {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  flex-wrap: wrap;
}
.switch { position: relative; flex: none; cursor: pointer; }
.switch input {
  appearance: none;
  position: absolute;
  inset: 0;
  margin: 0;
  cursor: pointer;
}
.switch__track {
  display: block;
  width: 44px;
  height: 26px;
  background: var(--gray-mid);
  border-radius: 999px;
  position: relative;
  transition: background 200ms ease;
}
.switch__track::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  background: #fff;
  border-radius: 50%;
  transition: transform 200ms ease;
  box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}
.switch input:checked + .switch__track { background: var(--talc-blue); }
.switch input:checked + .switch__track::after { transform: translateX(18px); }
.switch input:focus-visible + .switch__track { box-shadow: 0 0 0 3px rgba(74,103,245,0.3); }
.switch.is-disabled { cursor: not-allowed; }
.switch.is-disabled .switch__track { opacity: 0.6; }

/* ============================================================
   Reel embed — used on Proof, Work
   ============================================================ */
.reel-card {
  display: block;
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 16;
  border-radius: 18px;
  overflow: hidden;
  background: linear-gradient(160deg, #1a1d28 0%, #0F0F12 100%);
  border: 0.5px solid rgba(255,255,255,0.1);
  transition: transform 200ms ease, box-shadow 200ms ease;
  text-decoration: none;
  color: #fff;
}
.reel-card:hover { transform: translateY(-3px); box-shadow: 0 30px 60px -20px rgba(0,0,0,0.5); }
.reel-card:focus-visible { outline: 2px solid var(--talc-blue-light); outline-offset: 4px; }
.reel-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 25%, rgba(74,103,245,0.35), transparent 55%),
              radial-gradient(circle at 70% 75%, rgba(46,75,219,0.2), transparent 55%);
}
.reel-card__play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 64px; height: 64px;
  border-radius: 50%;
  background: rgba(255,255,255,0.95);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 12px 30px -8px rgba(0,0,0,0.4);
}
.reel-card__play::before {
  content: "";
  width: 0; height: 0;
  border-left: 18px solid var(--talc-blue);
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
  margin-left: 4px;
}
.reel-card__meta {
  position: absolute;
  bottom: 20px; left: 20px; right: 20px;
}
.reel-card__handle {
  font-family: 'Poppins';
  font-weight: 800;
  font-style: italic;
  font-size: 18px;
  margin: 0 0 4px;
  color: #fff;
}
.reel-card__caption {
  font-size: 12px;
  font-weight: 500;
  opacity: 0.85;
  margin: 0;
  line-height: 1.4;
}
.reel-card__badge {
  position: absolute;
  top: 16px; left: 16px;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(74,103,245,0.5);
  border: 1px solid rgba(255,255,255,0.3);
  padding: 5px 9px;
  border-radius: 4px;
  backdrop-filter: blur(4px);
}

/* ============================================================
   Editorial hero (typographic only — Part D)
   ============================================================ */
.hero-edit {
  background: #fff;
  padding: 200px 0 160px;
  position: relative;
  /* §2.5 — unified hero height across pages with/without rails so the
     site reads as one rhythm instead of a stack of one-off heros. */
  min-height: clamp(560px, 75vh, 760px);
  display: flex;
  align-items: center;
}
@media (max-width: 1023px) { .hero-edit { padding: 120px 0 96px; min-height: clamp(520px, 72vh, 700px); } }
@media (max-width: 767px)  { .hero-edit { padding: 80px 0 64px; min-height: clamp(480px, 70vh, 640px); } }
.hero-edit > .shell { width: 100%; }

.hero-edit__inner { max-width: 880px; }
/* §2.1 / §2.2 — small accent type on the dark hero needs Blue Light
   to clear AA on TALC Black; §2.2 also lifts the hero eyebrow to 11px. */
.hero-edit__eyebrow {
  font-family: 'Poppins';
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--talc-blue);
  margin: 0 0 44px;
}
.hero-edit--dark .hero-edit__eyebrow { color: var(--talc-blue-light); }
.hero-edit__headline {
  font-family: 'Poppins';
  font-weight: 800;
  font-style: italic;
  /* §2.1 — reduced ~15% from the previous clamp(40px, 8vw, 88px) so the
     hero headline + lede + CTA fit within ~70vh on desktop. */
  font-size: clamp(36px, 6.4vw, 76px);
  /* line-height bumped from 1.04 — italic 800 at this scale was clipping
     ascenders/descenders on the wrapped lines. 1.08 gives the type
     room to breathe without losing the tight display feel. */
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin: 0 0 36px;
  color: var(--talc-black);
  text-wrap: balance;
}
@media (min-width: 1024px) {
  .hero-edit__headline { font-size: clamp(52px, 5.5vw, 84px); }
}
.hero-edit__headline .accent { color: var(--talc-blue); display: block; }
.hero-edit__sub {
  font-size: 20px;
  /* 1.55 → 1.6 — the sub copy is the longest run of body on the page;
     a slightly looser line-height keeps each thought legible. */
  line-height: 1.6;
  color: var(--gray);
  max-width: 60ch;
  margin: 0 0 64px;
}
@media (max-width: 767px) {
  .hero-edit__sub { font-size: 17px; line-height: 1.55; margin-bottom: 48px; }
  .hero-edit__headline { margin-bottom: 28px; }
  .hero-edit__eyebrow { margin-bottom: 32px; }
}
.hero-edit__cta {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
@media (max-width: 600px) {
  .hero-edit__cta { flex-direction: column; align-items: stretch; gap: 12px; }
  .hero-edit__cta .btn { width: 100%; justify-content: center; min-height: 56px; }
  .hero-edit__cta .text-link { justify-content: center; padding: 12px 0; min-height: 44px; }
}

/* Dark variant of editorial hero (used for inner pages) */
.hero-edit--dark { background: var(--talc-black); color: #fff; }
.hero-edit--dark .hero-edit__headline { color: #fff; }
/* §2.1 — small accent on dark needs Blue Light for AA. */
.hero-edit--dark .hero-edit__headline .accent { color: var(--talc-blue-light); }
.hero-edit--dark .hero-edit__sub { color: rgba(255,255,255,0.82); }

/* ============================================================
   Hero — parallax reels rail
   Desktop (>=1024px): vertical two-column rail right of the copy
   Mobile  (<1024px) : horizontal two-row marquee below the copy
   ============================================================ */

/* -------- Mobile / tablet: horizontal marquee -------- */
@media (max-width: 1023px) {
  .hero-edit { padding-bottom: 0; }

  .hero-reels {
    margin-top: 56px;
    /* Break out of the .shell horizontal padding so the marquee runs edge-to-edge */
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    width: 100vw;
    padding-bottom: 80px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(to right,
      transparent 0%, #000 8%, #000 92%, transparent 100%);
    mask-image: linear-gradient(to right,
      transparent 0%, #000 8%, #000 92%, transparent 100%);
  }
  .hero-reels__col {
    overflow: hidden;
  }
  .hero-reels__track {
    display: flex;
    flex-direction: row;
    gap: 14px;
    width: max-content;
    animation: hero-reels-left 38s linear infinite;
    will-change: transform;
  }
  .hero-reels__col--down .hero-reels__track {
    animation-name: hero-reels-right;
    animation-duration: 46s;
  }
  .hero-reels .reel-card,
  .hero-reels .reel {
    width: 168px;
    flex: 0 0 168px;
    border-radius: 14px;
    transition: none;
  }
  .hero-reels .reel-card:hover,
  .hero-reels .reel:hover { transform: none; }
  .hero-reels .reel-card__play { width: 48px; height: 48px; }
  .hero-reels .reel-card__play::before {
    border-left-width: 13px;
    border-top-width: 8px;
    border-bottom-width: 8px;
  }
  .hero-reels .reel-card__handle { font-size: 14px; }
  .hero-reels .reel-card__caption { font-size: 11px; }

  @keyframes hero-reels-left {
    from { transform: translate3d(0, 0, 0); }
    to   { transform: translate3d(-50%, 0, 0); }
  }
  @keyframes hero-reels-right {
    from { transform: translate3d(-50%, 0, 0); }
    to   { transform: translate3d(0, 0, 0); }
  }
}

/* -------- Desktop: vertical rail -------- */
@media (min-width: 1024px) {
  .hero-edit .shell {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 460px);
    gap: 72px;
    align-items: center;
  }
  .hero-edit__inner { max-width: none; }

  .hero-reels {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    height: 680px;
    position: relative;
    overflow: hidden;
    /* Fade top + bottom so loops blend into any hero background */
    -webkit-mask-image: linear-gradient(to bottom,
      transparent 0%, #000 6%, #000 94%, transparent 100%);
    mask-image: linear-gradient(to bottom,
      transparent 0%, #000 6%, #000 94%, transparent 100%);
  }
  .hero-reels__col {
    position: relative;
    overflow: hidden;
  }
  /* Second column offset so the two tracks aren't lockstep */
  .hero-reels__col:nth-child(2) { transform: translateY(40px); }

  .hero-reels__track {
    display: flex;
    flex-direction: column;
    gap: 18px;
    animation: hero-reels-up 38s linear infinite;
    will-change: transform;
  }
  .hero-reels__col--down .hero-reels__track {
    animation-name: hero-reels-down;
    animation-duration: 44s;
  }

  @keyframes hero-reels-up {
    from { transform: translate3d(0, 0, 0); }
    to   { transform: translate3d(0, -50%, 0); }
  }
  @keyframes hero-reels-down {
    from { transform: translate3d(0, -50%, 0); }
    to   { transform: translate3d(0, 0, 0); }
  }

  /* Lock card size so animations are smooth — bypass reel transitions.
     Both .reel-card (legacy) and .reel (current iframe-embed class) get
     the same lock so the marquee renders identically regardless of which
     pattern fills it. */
  .hero-reels .reel-card,
  .hero-reels .reel {
    border-radius: 14px;
    transition: none;
  }
  .hero-reels .reel-card:hover,
  .hero-reels .reel:hover {
    transform: none;
    box-shadow: 0 20px 40px -16px rgba(0,0,0,0.45);
  }
  /* Pause on hover so reels are readable */
  .hero-reels:hover .hero-reels__track {
    animation-play-state: paused;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-reels__track { animation: none !important; }
}

/* ============================================================
   Compact legal page styles
   ============================================================ */
.legal-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 64px;
  align-items: start;
}
@media (max-width: 900px) { .legal-layout { grid-template-columns: 1fr; gap: 32px; } }
.legal-toc {
  position: sticky;
  top: 120px;
  font-size: 13px;
  border-left: 0.5px solid var(--gray-mid);
  padding: 4px 0 4px 20px;
}
@media (max-width: 900px) { .legal-toc { position: relative; top: auto; padding: 16px; border: 0.5px solid var(--gray-mid); border-radius: 12px; } }
.legal-toc h5 {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--talc-blue);
  margin: 0 0 12px;
}
.legal-toc ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.legal-toc a { color: var(--gray); font-size: 13px; line-height: 1.4; display: block; padding: 2px 0; }
.legal-toc a:hover { color: var(--talc-blue); }
.legal-body { max-width: 70ch; font-size: 16px; line-height: 1.7; color: var(--talc-black); }
.legal-body h2 { font-family: 'Poppins'; font-weight: 700; font-style: normal; font-size: 24px; margin: 48px 0 16px; color: var(--talc-black); }
.legal-body h3 { font-family: 'Poppins'; font-weight: 700; font-style: normal; font-size: 18px; margin: 32px 0 12px; }
.legal-body p, .legal-body li { color: var(--talc-black); }
.legal-body ul { padding-left: 24px; margin: 16px 0; }
.legal-body li { margin-bottom: 8px; }
.legal-body a { color: var(--talc-blue); border-bottom: 1px solid var(--talc-blue); }

/* ============================================================
   §4 — Reel component (real IG iframe embeds).
   Replaces the old .reel-card placeholder pattern.
   Markup:
     <a class="reel" href="…/reel/{shortcode}/">
       <div class="reel__frame">
         <iframe data-src="…/reel/{shortcode}/embed/captioned/" loading="lazy" …></iframe>
       </div>
       <div class="reel__meta"><span class="reel__handle">@handle</span></div>
     </a>
   ============================================================ */
.reel {
  display: block;
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 16;
  border-radius: 18px;
  overflow: hidden;
  background: #0F0F12;
  text-decoration: none;
  color: #fff;
  transition: transform 240ms cubic-bezier(0.2,0.7,0.2,1),
              box-shadow 240ms cubic-bezier(0.2,0.7,0.2,1);
}
.reel__frame {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, #1a1d28 0%, #0F0F12 100%);
}
.reel__frame::before {
  /* Visible while the iframe lazy-loads. */
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 25%, rgba(74,103,245,0.25), transparent 55%),
    radial-gradient(circle at 70% 75%, rgba(46,75,219,0.18), transparent 55%);
  z-index: 0;
}
.reel__frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  background: #0F0F12;
  z-index: 1;
}
.reel__meta {
  position: absolute;
  bottom: 12px;
  left: 12px;
  right: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  pointer-events: none;
  z-index: 2;
}
.reel__handle {
  font-family: 'Poppins';
  font-style: italic;
  font-weight: 700;
  font-size: 13px;
  color: #fff;
  background: rgba(15,15,18,0.62);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  padding: 4px 10px;
  border-radius: 4px;
}
.reel:hover { transform: translateY(-3px); box-shadow: 0 30px 60px -20px rgba(0,0,0,0.5); }
.reel:focus-visible { outline: 2px solid var(--talc-blue-light); outline-offset: 4px; }

/* ============================================================
   Handle label on individual reels — hidden by request.
   The reel anchor still opens Instagram on click; the visible
   handle pill was duplicating the embed's own caption strip
   and breaking the clean grid look. We keep .reel__meta in the
   DOM (so screen readers still hit the aria-label on the anchor)
   but visually hide it.
   ============================================================ */
.reel__meta {
  display: none;
}

/* ============================================================
   Instagram embed: ship natively.
   Earlier attempts to fade-in the iframe to mask IG's internal
   resize ("expand → snap") added noticeable load delay without
   reliably hiding the flash — IG's embed script runs inside a
   third-party iframe we don't control. We now let the embed
   render natively. The .reel__frame gradient placeholder still
   covers the iframe's blank period during lazy-load.
   ============================================================ */

/* ============================================================
   §5.3 — Sticky proof reveal on /personal-brand and niche pages.
   Grids tagged .proof-grid stagger their reels in as you scroll.
   ============================================================ */
.proof-pin-container { /* optional desktop pin wrapper (currently unused — kept for future) */ }
.proof-grid .reel {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 600ms ease, transform 600ms ease;
}
.proof-grid .reel.is-revealed {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .proof-grid .reel { opacity: 1; transform: none; }
}

/* ============================================================
   §3.3 — Inner-page hero right rail (single reel, big stat or empty).
   The hero grid is set up by .hero-edit .shell on desktop; the
   right column hosts one of these treatments.
   ============================================================ */
.hero-edit__rail {
  display: none; /* hidden on mobile/tablet; shown on >=1024px below */
  position: relative;
}
@media (min-width: 1024px) {
  /* When a hero has a .hero-edit__rail (instead of .hero-reels) the layout
     is the same two-column shell, but the rail renders one big visual. */
  .hero-edit:has(.hero-edit__rail) .shell {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
    gap: 72px;
    align-items: center;
  }
  .hero-edit:has(.hero-edit__rail) .hero-edit__inner { max-width: none; }
  .hero-edit__rail { display: block; }
}

/* Right-rail: single reel */
.hero-edit__rail .reel {
  max-width: 380px;
  margin-left: auto;
  box-shadow: 0 30px 80px -30px rgba(74,103,245,0.5);
}
.hero-edit:not(.hero-edit--dark) .hero-edit__rail .reel { box-shadow: 0 30px 80px -30px rgba(15,15,18,0.35); }

/* Right-rail: italic stat block */
.hero-stat {
  text-align: left;
  padding-left: 24px;
  border-left: 1px solid rgba(255,255,255,0.18);
}
.hero-edit:not(.hero-edit--dark) .hero-stat { border-left-color: var(--gray-mid); }
.hero-stat__num {
  font-family: 'Poppins';
  font-weight: 800;
  font-style: italic;
  font-size: clamp(120px, 14vw, 200px);
  line-height: 0.95;
  letter-spacing: -0.04em;
  color: var(--talc-blue-light);
  margin: 0 0 16px;
}
.hero-edit:not(.hero-edit--dark) .hero-stat__num { color: var(--talc-blue); }
.hero-stat__lbl {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  max-width: 220px;
  line-height: 1.45;
}
.hero-edit:not(.hero-edit--dark) .hero-stat__lbl { color: var(--talc-black); }

/* ============================================================
   §3.8 — Problem statements (replaces vague percentage strip).
   Three short lines, two-tone italic Bold.
   ============================================================ */
.problem-statements {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  border-top: 0.5px solid var(--gray-mid);
  border-bottom: 0.5px solid var(--gray-mid);
  padding: 48px 0;
}
.section--dark .problem-statements { border-color: rgba(255,255,255,0.18); }
.problem-statements p {
  font-family: 'Poppins';
  font-weight: 700;
  font-style: italic;
  font-size: clamp(20px, 1.7vw, 26px);
  line-height: 1.25;
  letter-spacing: -0.01em;
  margin: 0;
  color: var(--talc-black);
  text-wrap: balance;
}
.section--dark .problem-statements p { color: #fff; }
.problem-statements .accent { color: var(--talc-blue); }
.section--dark .problem-statements .accent { color: var(--talc-blue-light); }
@media (max-width: 768px) {
  .problem-statements { grid-template-columns: 1fr; gap: 24px; padding: 32px 0; }
}

/* ============================================================
   §3.9 — ROI math under the stat strip on /personal-brand.
   ============================================================ */
.roi-math {
  margin-top: 32px;
  padding: 24px 28px;
  background: rgba(15,15,18,0.04);
  border-left: 2px solid var(--talc-blue);
  border-radius: 6px;
  max-width: 560px;
}
.roi-math p {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: var(--talc-black);
  font-feature-settings: "tnum" 1;
}
.section--pale .roi-math { background: rgba(15,15,18,0.05); }
.section--dark .roi-math { background: rgba(255,255,255,0.04); border-left-color: var(--talc-blue-light); }
.section--dark .roi-math p { color: rgba(255,255,255,0.88); }

/* ============================================================
   §6.2 — Niche callout (single-sentence section between The System
   and Proof on each /personal-brand/* page).
   ============================================================ */
.niche-callout .pull-quote {
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.2;
  max-width: 28ch;
}
.niche-callout .pull-quote .accent { color: var(--talc-blue); }

/* ============================================================
   §3.7 \u2014 Operating Principle contextualisation.
   Tiny intro + larger source line so the line earns its space.
   ============================================================ */
.op-principle__intro {
  font-size: 17px;
  line-height: 1.6;
  color: var(--gray);
  max-width: 56ch;
  margin: 0 0 28px;
}
.op-principle__source {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--talc-blue);
  margin: 0;
}

/* ============================================================
   IG link style — used everywhere a handle appears
   ============================================================ */
.ig-link {
  color: inherit;
  border-bottom: 1px solid transparent;
  transition: color 160ms ease, border-color 160ms ease;
  font-style: italic;
  font-weight: 700;
}
.ig-link:hover { color: var(--talc-blue); border-bottom-color: var(--talc-blue); }
.section--dark .ig-link:hover { color: var(--talc-blue-light); border-bottom-color: var(--talc-blue-light); }


/* ============================================================
   Apply form layout
   ============================================================ */
.apply-form { max-width: 560px; margin: 0 auto; }
.apply-form__group { margin-bottom: 48px; }
.apply-form__group:last-of-type { margin-bottom: 32px; }
.apply-form__group-title {
  font-family: 'Poppins';
  font-weight: 700;
  font-style: italic;
  font-size: 24px;
  color: var(--talc-black);
  margin: 0 0 24px;
  letter-spacing: -0.01em;
}
.apply-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}
.apply-form .field { margin-bottom: 20px; }
.apply-form__row .field { margin-bottom: 0; }
@media (max-width: 600px) {
  .apply-form__row { grid-template-columns: 1fr; gap: 0; }
  .apply-form__row .field { margin-bottom: 20px; }
}
.apply-form__honeypot {
  position: absolute;
  left: -9999px;
  width: 1px; height: 1px;
  opacity: 0;
  pointer-events: none;
}
.apply-form__consent {
  background: var(--gray-light);
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 32px;
}
.apply-form__submit-row {
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 600px) {
  .apply-form__submit-row { justify-content: stretch; }
  .apply-form__submit { width: 100%; justify-content: center; min-height: 56px; }
}
.apply-form__error {
  background: rgba(216,50,75,0.08);
  border-left: 3px solid #D8324B;
  border-radius: 6px;
  padding: 12px 16px;
  font-size: 14px;
  color: #D8324B;
  margin-top: 16px;
}
.apply-form__error a { color: #D8324B; border-bottom: 1px solid currentColor; }

/* Modal-specific tightening */
.apply-panel { padding: 32px 28px; }
.apply-panel .apply-form { max-width: none; }
.apply-panel .apply-form__group { margin-bottom: 32px; }
@media (max-width: 600px) { .apply-panel { padding: 24px 20px; } }


/* Legal table */
.legal-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  margin: 8px 0;
}
.legal-table th {
  text-align: left;
  font-family: 'Poppins';
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--talc-blue);
  padding: 12px 16px 12px 0;
  border-bottom: 1px solid var(--gray-mid);
}
.legal-table td {
  padding: 14px 16px 14px 0;
  border-bottom: 0.5px solid var(--gray-mid);
  vertical-align: top;
  color: var(--talc-black);
}
.legal-body h3 { margin-top: 28px; }

/* ============================================================
   §2.4 (revised) — Mobile reels.
   The hero marquee KEEPS its endless auto-scroll animation on
   mobile (the original behaviour). Only the .proof-grid gets a
   mobile-specific single-column treatment so IG embeds stack
   cleanly on phones, and the staggered reveal is skipped on
   mobile so the proof never sits in opacity:0 limbo if the
   IntersectionObserver hasn't fired yet.
   ============================================================ */
@media (max-width: 767px) {
  /* Proof grid — single column of reels, centred, capped width */
  .proof-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .proof-grid .reel,
  .proof-grid > * {
    max-width: 340px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
  }
  /* On mobile, skip the staggered-fade reveal — the moment a user
     hits a niche page from the burger menu, the proof iframes need
     to be visible. The opacity:0 default on .proof-grid .reel was
     leaving "huge white space" when the IntersectionObserver fired
     late or not at all (some mobile browsers re-evaluate intersections
     only on next paint after a layout change). Static opacity is the
     reliable fix; the desktop stagger is preserved. */
  .proof-grid .reel,
  .proof-grid > * {
    opacity: 1 !important;
    transform: none !important;
  }
}
