/* ==========================================================================
   LaunchPush — "The Countdown" design system
   Dark cinematic launch war-room. Void / Graphite / Porcelain / Ignition.
   ========================================================================== */

:root {
  --void: #0B0D10;
  --graphite: #171A21;
  --porcelain: #ECEFF3;
  --ignition: #FF3B2F;
  --champagne: #C9A27A;
  --slate: #8B93A7;

  --font-display: 'Syne', 'IBM Plex Sans', sans-serif;
  --font-body: 'IBM Plex Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'IBM Plex Mono', 'Courier New', monospace;

  --radius: 8px;
  --radius-lg: 14px;
  --gutter: clamp(1.25rem, 4vw, 3rem);
  --maxw: 1220px;

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
}
body, h1, h2, h3, h4, p, ul, ol, figure, blockquote { margin: 0; }
ul, ol { padding: 0; list-style: none; }
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
input, textarea, select { font: inherit; }

body {
  background: #000;
  color: #fff;
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.01em;
}
h4, h5 { font-family: var(--font-display); font-weight: 700; line-height: 1.2; }

.eyebrow, .mono, .t-minus {
  font-family: var(--font-mono);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--ignition);
  color: var(--void);
  padding: 0.6rem 1rem;
  z-index: 200;
  border-radius: 0 0 var(--radius) 0;
}
.skip-link:focus { left: 0; }

/* ---------- Surfaces (paired bg + color, never independent) ---------- */
.surface-void,
.surface-porcelain,
.surface-graphite,
.surface-ignition,
.page-hero,
.capability-rail,
.site-footer {
  background: #000;
  color: #fff;
}

.surface-void .slate,
.surface-porcelain .slate,
.surface-graphite .slate {
  color: rgba(255, 255, 255, 0.82);
}

.surface-void a.link,
.surface-porcelain a.link,
.surface-graphite a.link {
  color: #fff;
}
a.link { text-underline-offset: 3px; text-decoration: underline; }

/* ---------- Layout helpers ---------- */
.wrap {
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
section { padding-block: clamp(3.5rem, 8vw, 6.5rem); }
.section-head { max-width: 640px; margin-bottom: clamp(2rem, 5vw, 3.25rem); }
.section-head h2 { font-size: clamp(1.9rem, 4vw, 2.75rem); }
.section-head p { margin-top: 0.9rem; font-size: 1.08rem; }

.grid { display: grid; gap: clamp(1.25rem, 3vw, 2rem); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

hr.hairline { border: none; border-top: 1px solid rgba(255, 255, 255, 0.18); margin: 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.6rem;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.98rem;
  border: 1.5px solid transparent;
  transition: transform 0.18s var(--ease), background-color 0.18s var(--ease), border-color 0.18s var(--ease), color .18s var(--ease);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:focus-visible { outline: 2px solid var(--champagne); outline-offset: 3px; }

.btn-primary {
  background: transparent;
  color: #fff;
  border-color: #fff;
}
.btn-primary:hover { background: rgba(255, 255, 255, 0.1); }

.btn-secondary {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.55);
  color: #fff;
}
.btn-secondary:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.btn-row { display: flex; gap: 0.9rem; flex-wrap: wrap; }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: #000;
  transition: background-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.site-header .header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 1.15rem;
  color: #fff;
}
.site-header.is-stuck {
  background: #000;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.45);
}
.site-header.is-stuck .header-bar,
.site-header.is-stuck .logo-mark,
.site-header.is-stuck .nav-menu a {
  color: #fff;
}
.site-header.is-stuck .nav-toggle-bar,
.site-header.is-stuck .nav-toggle-bar::before,
.site-header.is-stuck .nav-toggle-bar::after {
  background: #fff;
}

body.no-hero .site-header {
  background: #000;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.35);
}
body.no-hero .site-header .header-bar,
body.no-hero .nav-menu a,
body.no-hero .logo-mark {
  color: #fff;
}
body.no-hero .nav-toggle-bar,
body.no-hero .nav-toggle-bar::before,
body.no-hero .nav-toggle-bar::after {
  background: #fff;
}

.logo-mark {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: -0.01em;
  color: #fff;
}
.logo-mark span { color: #fff; }

.main-nav { display: flex; align-items: center; gap: 1.75rem; }
.nav-menu { display: flex; gap: 1.6rem; align-items: center; }
.nav-menu a {
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff;
  position: relative;
  padding-bottom: 4px;
}
.nav-menu a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  background: #fff;
  transition: width 0.2s var(--ease);
}
.nav-menu a:hover::after, .nav-menu a[aria-current="page"]::after { width: 100%; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  padding: 0.5rem;
}
.nav-toggle-bar, .nav-toggle-bar::before, .nav-toggle-bar::after {
  content: '';
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  transition: transform 0.2s var(--ease), opacity 0.2s var(--ease);
}
.nav-toggle-bar::before { transform: translateY(-7px); }
.nav-toggle-bar::after { transform: translateY(5px); }

@media (max-width: 820px) {
  .nav-toggle { display: flex; }
  .main-nav { gap: 0.75rem; }
  .nav-menu {
    position: fixed;
    inset: 0 0 0 auto;
    top: 0;
    height: 100vh;
    width: min(78vw, 320px);
    background: #000;
    color: #fff;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 1.6rem;
    padding: 2rem var(--gutter);
    transform: translateX(100%);
    transition: transform 0.3s var(--ease);
  }
  .nav-menu a { color: #fff !important; font-size: 1.15rem; }
  .nav-menu.is-open { transform: translateX(0); }
  .nav-cta { display: none; }
  .site-header.is-stuck .nav-toggle-bar,
  body.no-hero .nav-toggle-bar { background: #fff; }
}

/* ---------- Hero: The Launch Gate ---------- */
.hero-gate {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  color: var(--porcelain);
  background: var(--void);
}
@media (max-width: 640px) {
  .hero-gate { min-height: 84vh; }
}
.hero-gate .hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-gate .hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  filter: saturate(0.85) contrast(1.05);
}
.hero-gate .hero-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11,13,16,0.94) 0%, rgba(11,13,16,0.6) 32%, rgba(11,13,16,0.25) 55%, rgba(11,13,16,0.88) 100%);
}
.hero-gate .hero-sheen {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 38%;
  background: linear-gradient(180deg, transparent 0%, rgba(255,59,47,0.16) 100%);
  z-index: 1;
  pointer-events: none;
}

.hero-topbar {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5.25rem var(--gutter) 0;
  max-width: var(--maxw);
  margin-inline: auto;
  width: 100%;
}
.hero-topbar .eyebrow-right { color: #fff; }
.hero-hairline {
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(255, 255, 255, 0.28);
  margin: 1.1rem var(--gutter) 0;
}

.hero-body {
  position: relative;
  z-index: 2;
  max-width: var(--maxw);
  margin-inline: auto;
  width: 100%;
  padding: 0 var(--gutter) clamp(3rem, 8vw, 5rem);
}
.hero-content { max-width: 560px; }
.hero-content .eyebrow { color: rgba(255, 255, 255, 0.85); margin-bottom: 1.1rem; display: block; }
.hero-content h1 {
  font-size: clamp(48px, 7vw, 88px);
  color: #fff;
}
.hero-content h1 .ignite { color: #fff; }
.hero-content .sub {
  margin-top: 1.4rem;
  font-size: 1.15rem;
  max-width: 500px;
  color: rgba(255, 255, 255, 0.88);
}
.hero-content .btn-row { margin-top: 2.1rem; }

.hero-trust {
  margin-top: 2.75rem;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.72);
  text-transform: uppercase;
}

.hero-arc {
  position: absolute;
  right: clamp(1rem, 6vw, 6rem);
  bottom: clamp(1rem, 6vw, 4.5rem);
  z-index: 2;
  width: clamp(140px, 22vw, 260px);
  opacity: 0.9;
}
@media (max-width: 720px) { .hero-arc { display: none; } }
.hero-arc svg { width: 100%; height: auto; }
.hero-arc .arc-track { fill: none; stroke: rgba(236,239,243,0.22); stroke-width: 2; }
.hero-arc .arc-progress {
  fill: none;
  stroke: var(--ignition);
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-dasharray: 402;
  stroke-dashoffset: 402;
  transition: stroke-dashoffset 1.4s var(--ease);
}
.hero-arc.is-drawn .arc-progress { stroke-dashoffset: 60; }
.hero-arc .arc-label {
  fill: var(--porcelain);
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ---------- Page hero (non-home) ---------- */

/* ---------- Reveal animation (progressive enhancement) ---------- */
.js .reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.6s var(--ease), transform 0.6s var(--ease); }
.js .reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ---------- Countdown statement ---------- */
.statement { text-align: left; }
.statement .eyebrow { color: rgba(255, 255, 255, 0.72); }
.statement h2 { font-size: clamp(1.9rem, 4.4vw, 3.1rem); max-width: 900px; margin-top: 1rem; }
.statement .lede { max-width: 680px; margin-top: 1.25rem; font-size: 1.12rem; }

/* ---------- Metric trio ---------- */
.metric-trio { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
@media (max-width: 700px) { .metric-trio { grid-template-columns: 1fr; } }
.metric-card {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-lg);
  padding: 1.8rem;
}
.metric-card .metric-num {
  font-family: var(--font-mono);
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(2.1rem, 4vw, 2.9rem);
  font-weight: 500;
}
.metric-card p { margin-top: 0.6rem; color: rgba(255, 255, 255, 0.82); font-size: 0.95rem; }
.metric-note { margin-top: 1.4rem; font-size: 0.85rem; color: rgba(255, 255, 255, 0.82); }

/* ---------- Stage / timeline ---------- */
.stage-list { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
@media (max-width: 900px) { .stage-list { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .stage-list { grid-template-columns: 1fr; } }
.stage-card {
  border-radius: var(--radius-lg);
  padding: 1.9rem 1.6rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.04);
}
.stage-card .t-minus { color: rgba(255, 255, 255, 0.72); }
.stage-card h3 { font-size: 1.25rem; margin-top: 0.75rem; }
.stage-card p { margin-top: 0.6rem; font-size: 0.96rem; }

/* ---------- Method rows ---------- */
.method-row {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 1.5rem;
  padding-block: 1.6rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}
.method-row:first-of-type { border-top: none; }
.method-row .t-minus { color: rgba(255, 255, 255, 0.72); font-size: 1rem; }
.method-row h3 { font-size: 1.3rem; color: #fff; }
.method-row p { margin-top: 0.5rem; max-width: 640px; color: rgba(255, 255, 255, 0.82); }
@media (max-width: 620px) { .method-row { grid-template-columns: 1fr; gap: 0.5rem; } }

/* ---------- Capability rail (ignition) ---------- */
.capability-rail { background: #000; color: #fff; }
.capability-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: rgba(255, 255, 255, 0.12); border-radius: var(--radius-lg); overflow: hidden; }
@media (max-width: 900px) { .capability-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .capability-grid { grid-template-columns: 1fr; } }
.capability-item { background: #000; color: #fff; padding: 1.9rem 1.7rem; }
.capability-item .t-minus { opacity: 0.72; color: rgba(255, 255, 255, 0.72); }
.capability-item h3 { font-size: 1.2rem; margin-top: 0.6rem; color: #fff; }
.capability-item p { margin-top: 0.55rem; font-size: 0.94rem; color: rgba(255, 255, 255, 0.82); opacity: 1; }

/* ---------- Cards (work teasers, services, faq) ---------- */
.card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  display: flex;
  flex-direction: column;
}
.card .card-media { aspect-ratio: 4/3; overflow: hidden; }
.card .card-media img { width: 100%; height: 100%; object-fit: cover; }
.card .card-body { padding: 1.6rem; flex: 1; display: flex; flex-direction: column; }
.card .card-body .t-minus { color: rgba(255, 255, 255, 0.72); }
.card h3 { font-size: 1.25rem; margin-top: 0.65rem; color: #fff; }
.card p { margin-top: 0.6rem; font-size: 0.96rem; color: rgba(255, 255, 255, 0.82); flex: 1; }
.card .card-link { margin-top: 1.1rem; font-weight: 600; font-size: 0.92rem; color: #fff; }

.service-card {
  border-radius: var(--radius-lg);
  padding: 1.9rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
}
.service-card .t-minus { color: rgba(255, 255, 255, 0.72); }
.service-card h3 { font-size: 1.3rem; margin-top: 0.7rem; color: #fff; }
.service-card p { margin-top: 0.65rem; color: rgba(255, 255, 255, 0.82); }
.service-card .price-tag { margin-top: 1rem; font-family: var(--font-mono); font-size: 0.85rem; color: rgba(255, 255, 255, 0.72); }

/* ---------- FAQ accordion ---------- */
.faq-item { border-top: 1px solid rgba(255, 255, 255, 0.16); }
.faq-item:first-child { border-top: none; }
.faq-q {
  width: 100%;
  text-align: left;
  background: transparent;
  border: none;
  color: #fff;
  padding: 1.35rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.08rem;
}
.faq-q .plus { font-family: var(--font-mono); font-size: 1.3rem; color: #fff; transition: transform 0.2s var(--ease); flex-shrink: 0; }
.faq-q[aria-expanded="true"] .plus { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.3s var(--ease); }
.faq-a[data-open="true"] { max-height: 800px; }
.faq-a .faq-a-inner { padding-bottom: 1.4rem; color: rgba(255, 255, 255, 0.82); max-width: 760px; }
.faq-a .faq-a-inner p + p { margin-top: 0.8rem; }

/* ---------- CTA band ---------- */
.cta-band { text-align: center; }
.cta-band h2 { font-size: clamp(1.9rem, 4vw, 2.9rem); max-width: 760px; margin-inline: auto; color: #fff; }
.cta-band p { margin-top: 1rem; max-width: 560px; margin-inline: auto; color: rgba(255, 255, 255, 0.82); }
.cta-band .btn-row { justify-content: center; margin-top: 2rem; }

/* ---------- Forms ---------- */
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.2rem; }
@media (max-width: 620px) { .form-grid { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; gap: 0.5rem; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: 0.9rem; font-weight: 600; color: #fff; }
.field input, .field select, .field textarea {
  background: #000;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius);
  padding: 0.8rem 1rem;
  font-size: 0.98rem;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: #fff;
}
.field textarea { min-height: 130px; resize: vertical; }
.field-hint { font-size: 0.82rem; color: rgba(255, 255, 255, 0.82); }
.consent-row { display: flex; align-items: flex-start; gap: 0.7rem; }
.consent-row input { margin-top: 4px; width: 18px; height: 18px; flex-shrink: 0; }
.consent-row label { font-size: 0.9rem; font-weight: 400; color: #fff; }
.honey-field { position: absolute; left: -9999px; top: -9999px; opacity: 0; height: 0; width: 0; overflow: hidden; }
.form-note { margin-top: 1rem; font-size: 0.85rem; color: rgba(255, 255, 255, 0.82); }

/* ---------- Contact info blocks ---------- */
.contact-info-list { display: flex; flex-direction: column; gap: 1.4rem; }
.contact-info-item .t-minus { color: rgba(255, 255, 255, 0.72); display: block; margin-bottom: 0.4rem; }
.contact-info-item p { margin-top: 0.2rem; color: rgba(255, 255, 255, 0.82); }

/* ---------- Legal content ---------- */
.legal-content { max-width: 780px; }
.legal-content h2 { font-size: 1.5rem; margin-top: 2.4rem; color: #fff; }
.legal-content h2:first-of-type { margin-top: 0; }
.legal-content h3 { font-size: 1.15rem; margin-top: 1.6rem; color: #fff; }
.legal-content p { margin-top: 0.9rem; color: rgba(255, 255, 255, 0.9); }
.legal-content ul { margin-top: 0.9rem; padding-left: 1.4rem; list-style: disc; color: rgba(255, 255, 255, 0.9); }
.legal-content ul li { margin-top: 0.5rem; }
.legal-content .updated { color: rgba(255, 255, 255, 0.72); font-family: var(--font-mono); font-size: 0.85rem; }

/* ---------- Footer ---------- */
.site-footer { padding-block: clamp(2.8rem, 6vw, 4rem) 2rem; }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 2.5rem; }
@media (max-width: 760px) { .footer-grid { grid-template-columns: 1fr; gap: 1.8rem; } }
.footer-logo { font-family: var(--font-display); font-weight: 800; font-size: 1.2rem; margin-bottom: 0.7rem; color: #fff; }
.footer-grid p { font-size: 0.92rem; color: rgba(255, 255, 255, 0.82); margin-top: 0.5rem; }
.footer-grid a:hover { color: #fff; }
.footer-nav-list { display: flex; flex-direction: column; gap: 0.55rem; }
.footer-nav-list a { font-size: 0.92rem; color: #fff; }
.footer-bottom { margin-top: 2.6rem; padding-top: 1.6rem; border-top: 1px solid rgba(255, 255, 255, 0.14); }
.footer-bottom p { font-size: 0.82rem; color: rgba(255, 255, 255, 0.82); }
.footer-disclaimer { margin-top: 0.6rem; max-width: 900px; line-height: 1.55; }

/* ---------- Cookie banner ---------- */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 300;
  background: #000;
  color: #fff;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding: 1.4rem var(--gutter);
  transform: translateY(110%);
  transition: transform 0.35s var(--ease);
}
.cookie-banner.is-visible { transform: translateY(0); }
.cookie-banner .cookie-wrap {
  max-width: var(--maxw);
  margin-inline: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.6rem;
  flex-wrap: wrap;
}
.cookie-banner p { font-size: 0.92rem; max-width: 620px; color: rgba(255, 255, 255, 0.88); }
.cookie-actions { display: flex; gap: 0.7rem; flex-wrap: wrap; }
.cookie-actions .btn { padding: 0.65rem 1.2rem; font-size: 0.88rem; }

.cookie-panel {
  display: none;
  max-width: var(--maxw);
  margin: 1rem auto 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  padding-top: 1rem;
}
.cookie-panel.is-open { display: block; }
.cookie-option { display: flex; justify-content: space-between; align-items: center; gap: 1rem; padding-block: 0.6rem; }
.cookie-option:not(:last-child) { border-bottom: 1px solid rgba(255, 255, 255, 0.1); }
.cookie-option strong { font-size: 0.92rem; color: #fff; }
.cookie-option span { font-size: 0.82rem; color: rgba(255, 255, 255, 0.82); display: block; margin-top: 0.15rem; }

/* ---------- 404 ---------- */
.error-page {
  min-height: 80vh;
  display: flex;
  align-items: center;
  padding: 8rem var(--gutter) 4rem;
}
.error-page .t-minus { color: rgba(255, 255, 255, 0.72); font-size: 1rem; }
.error-page h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); margin-top: 1rem; color: #fff; }
.error-page p { margin-top: 1rem; max-width: 540px; color: rgba(255, 255, 255, 0.82); }
.error-page .btn-row { margin-top: 2rem; }

/* ---------- Utility ---------- */
.mt-lg { margin-top: 2.5rem; }
.text-center { text-align: center; }
.center-head { margin-inline: auto; text-align: center; }
.center-head p { margin-inline: auto; }
figure.photo { margin: 0; border-radius: var(--radius-lg); overflow: hidden; }
figure.photo img { width: 100%; }
figure.photo figcaption { font-size: 0.78rem; color: rgba(255, 255, 255, 0.82); margin-top: 0.6rem; }

.section-head .eyebrow,
.page-hero .eyebrow {
  color: rgba(255, 255, 255, 0.72);
}

.page-hero {
  padding: clamp(7.5rem, 14vw, 10rem) var(--gutter) clamp(3rem, 6vw, 4.5rem);
  background: #000;
  color: #fff;
}
.page-hero .eyebrow { display: block; margin-bottom: 1rem; }
.page-hero h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); max-width: 780px; color: #fff; }
.page-hero .lede { margin-top: 1.1rem; max-width: 640px; font-size: 1.1rem; color: rgba(255, 255, 255, 0.85); }

h1, h2, h3, h4, p, li, label, span, a {
  color: inherit;
}

.section-head h2,
.section-head p,
.statement h2,
.statement .lede {
  color: #fff;
}

.section-head p,
.statement .lede {
  color: rgba(255, 255, 255, 0.85);
}
