/* ─── OrderFlow · Bloomberg Editorial Light Theme ─────────────────────── */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@500;600;700;800&family=DM+Sans:wght@300;400;500;600;700&display=swap');

:root {
  --navy:        #1E3A5F;
  --navy-deep:   #070F1C;
  --navy-mid:    #0D2340;
  --gold:        #D4A72C;
  --gold-light:  #E8C96A;
  --gold-subtle: rgba(212,167,44,0.10);
  --white:       #FFFFFF;
  --off-white:   #F8FAFC;
  --gray-light:  #F0F4F8;
  --gray-border: #E1E8F0;
  --text-dark:   #0A1628;
  --text-body:   #334155;
  --text-muted:  #64748B;
  --radius:      14px;
  --max-width:   1160px;
  --serif:       'Playfair Display', Georgia, serif;
  --sans:        'DM Sans', -apple-system, Helvetica, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--text-body);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; }

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section       { padding: 88px 0; }
.section--alt  { background: var(--gray-light); }
.section--navy { background: var(--navy-deep); color: var(--white); }

/* ── Typography ─────────────────────────────────────────────────────────── */

h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 700;
  margin: 0 0 16px;
  color: var(--text-dark);
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(2.2rem, 5.5vw, 3.8rem); line-height: 1.06; }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.7rem); line-height: 1.12; }
h3 { font-size: 1.12rem; font-family: var(--sans); font-weight: 700; letter-spacing: -0.01em; }

p { margin: 0 0 16px; color: var(--text-muted); }
.section--navy p { color: rgba(200,215,235,0.85); }
.section--navy h2 { color: var(--white); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: '';
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--gold);
}

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

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 26px;
  border-radius: 999px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.92rem;
  text-decoration: none;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  letter-spacing: 0.01em;
}
.btn:hover { transform: translateY(-2px); }

.btn--primary {
  background: var(--navy-deep);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(7,15,28,0.28), 0 1px 3px rgba(0,0,0,0.15);
}
.btn--primary:hover {
  background: var(--navy-mid);
  box-shadow: 0 8px 24px rgba(7,15,28,0.36), 0 2px 6px rgba(0,0,0,0.18);
}

.btn--gold {
  background: var(--gold);
  color: var(--navy-deep);
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(212,167,44,0.38);
}
.btn--gold:hover {
  background: var(--gold-light);
  box-shadow: 0 8px 28px rgba(212,167,44,0.52);
}

.btn--secondary {
  background: transparent;
  border-color: var(--gray-border);
  color: var(--text-body);
}
.btn--secondary:hover {
  border-color: var(--navy);
  color: var(--navy);
  background: rgba(30,58,95,0.04);
}

/* On dark backgrounds */
.section--navy .btn--secondary,
.pilot-banner .btn--secondary {
  border-color: rgba(255,255,255,0.25);
  color: rgba(255,255,255,0.85);
}
.section--navy .btn--secondary:hover {
  border-color: rgba(255,255,255,0.5);
  background: rgba(255,255,255,0.08);
  color: var(--white);
}

/* ── Header ──────────────────────────────────────────────────────────────── */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--gray-border);
  transition: box-shadow 0.3s ease;
}
.site-header.scrolled {
  box-shadow: 0 2px 20px rgba(10,22,40,0.09);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  max-width: var(--max-width);
  margin: 0 auto;
}
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.brand svg { width: 34px; height: 34px; border-radius: 9px; }
.brand-name { font-family: var(--sans); font-weight: 700; font-size: 1rem; color: var(--text-dark); letter-spacing: -0.01em; }
.brand-name span { color: var(--gold); }

.nav-links {
  display: none;
  gap: 28px;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 0.9rem;
}
.nav-links a { text-decoration: none; color: var(--text-muted); transition: color 0.15s; }
.nav-links a:hover { color: var(--navy); }

@media (min-width: 768px) { .nav-links { display: flex; align-items: center; } }

.nav-links--open {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 62px; left: 0; right: 0;
  background: rgba(255,255,255,0.98);
  padding: 16px 24px;
  gap: 14px;
  border-bottom: 1px solid var(--gray-border);
  box-shadow: 0 20px 40px rgba(10,22,40,0.12);
}

.nav-toggle {
  display: inline-flex;
  background: none;
  border: none;
  font-size: 1.3rem;
  cursor: pointer;
  color: var(--text-muted);
}
@media (min-width: 768px) { .nav-toggle { display: none; } }

.nav-cta { display: none; }
@media (min-width: 768px) { .nav-cta { display: inline-flex; } }

/* ── Ticker Strip ────────────────────────────────────────────────────────── */

.ticker-wrap {
  background: var(--navy-deep);
  overflow: hidden;
  height: 38px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(212,167,44,0.2);
}

.ticker-track {
  display: flex;
  align-items: center;
  gap: 0;
  white-space: nowrap;
  animation: ticker-scroll 40s linear infinite;
}

.ticker-track:hover { animation-play-state: paused; }

@keyframes ticker-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 500;
  padding: 0 28px;
  letter-spacing: 0.04em;
}

.ticker-num {
  color: var(--gold);
  font-weight: 700;
}

.ticker-label {
  color: rgba(200,215,235,0.65);
}

.ticker-sep {
  color: rgba(212,167,44,0.35);
  font-size: 1.1rem;
  padding: 0 4px;
}

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

.hero {
  position: relative;
  padding: 88px 0 72px;
  background: var(--white);
  overflow: hidden;
  isolation: isolate;
}

/* Subtle dot grid texture */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(30,58,95,0.06) 1px, transparent 1px);
  background-size: 30px 30px;
  pointer-events: none;
  z-index: 0;
}

/* Gold radial accent — top right */
.hero::after {
  content: '';
  position: absolute;
  top: -100px; right: -80px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(212,167,44,0.08) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}

.hero .container { position: relative; z-index: 1; }

.hero__grid {
  display: grid;
  gap: 56px;
}
@media (min-width: 900px) {
  .hero__grid { grid-template-columns: 1fr 1.05fr; align-items: center; }
}

.hero .eyebrow { color: var(--gold); }
.hero h1 { color: var(--text-dark); }
.hero p { color: var(--text-muted); font-size: 1.08rem; max-width: 480px; }

.hero__cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 36px;
}

/* 3D perspective art container */
.hero__art {
  perspective: 1200px;
  transform-style: preserve-3d;
}

.hero__art-inner {
  border-radius: 16px;
  overflow: hidden;
  transform: rotateY(-8deg) rotateX(4deg) scale(0.97);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.6s ease;
  box-shadow:
    0 0 0 1px rgba(30,58,95,0.12),
    4px 8px 24px rgba(10,22,40,0.08),
    12px 24px 64px rgba(10,22,40,0.16),
    24px 48px 100px rgba(10,22,40,0.18);
  position: relative;
}

.hero__art:hover .hero__art-inner {
  transform: rotateY(-3deg) rotateX(1.5deg) scale(1);
  box-shadow:
    0 0 0 1px rgba(30,58,95,0.08),
    2px 4px 16px rgba(10,22,40,0.06),
    8px 16px 48px rgba(10,22,40,0.12),
    16px 32px 80px rgba(10,22,40,0.14);
}

/* Gold bottom border accent on 3D art */
.hero__art-inner::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

.hero__art img {
  width: 100%;
  display: block;
}

/* ── Stats Band ──────────────────────────────────────────────────────────── */

.stats-band {
  padding: 64px 0;
  background: var(--white);
  border-bottom: 1px solid var(--gray-border);
  position: relative;
}

/* Subtle diagonal line */
.stats-band::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.4;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
}
@media (min-width: 768px) {
  .stats-grid { grid-template-columns: repeat(4, 1fr); }
}

.stat-item {
  padding: 24px 28px;
  border-right: 1px solid var(--gray-border);
  position: relative;
}
.stat-item:last-child { border-right: none; }

@media (max-width: 767px) {
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3) { border-top: 1px solid var(--gray-border); }
  .stat-item:nth-child(4) { border-top: 1px solid var(--gray-border); border-right: none; }
}

.stat-number {
  display: block;
  font-family: var(--serif);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
  letter-spacing: -0.03em;
  transition: color 0.3s;
}

.stat-suffix {
  color: var(--navy);
  font-size: 0.7em;
  font-family: var(--sans);
  font-weight: 700;
}

.stat-label {
  display: block;
  font-family: var(--sans);
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 500;
  letter-spacing: 0.01em;
  margin-top: 2px;
}

.stat-sublabel {
  display: block;
  font-family: var(--sans);
  font-size: 0.72rem;
  color: rgba(100,116,139,0.6);
  margin-top: 4px;
}

/* Animated SVG chart in stats */
.stats-chart {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 36px;
  margin-top: 12px;
}
.stats-chart-bar {
  width: 7px;
  border-radius: 3px 3px 0 0;
  background: var(--gold);
  opacity: 0.6;
  transform-origin: bottom;
  transform: scaleY(0);
  transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.stats-chart-bar.animated {
  transform: scaleY(1);
}
.stats-chart-bar:nth-child(1) { height: 40%; transition-delay: 0.05s; }
.stats-chart-bar:nth-child(2) { height: 65%; transition-delay: 0.1s; }
.stats-chart-bar:nth-child(3) { height: 50%; transition-delay: 0.15s; }
.stats-chart-bar:nth-child(4) { height: 80%; transition-delay: 0.2s; }
.stats-chart-bar:nth-child(5) { height: 60%; transition-delay: 0.25s; }
.stats-chart-bar:nth-child(6) { height: 90%; transition-delay: 0.3s; background: var(--navy); opacity: 0.7; }

/* ── Problem section ─────────────────────────────────────────────────────── */

.problem-grid {
  display: grid;
  gap: 20px;
  margin-top: 36px;
}
@media (min-width: 768px) { .problem-grid { grid-template-columns: repeat(3, 1fr); } }

.problem-card {
  background: var(--white);
  border: 1px solid var(--gray-border);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: box-shadow 0.25s, transform 0.25s;
  position: relative;
}
.problem-card:hover {
  box-shadow: 0 12px 40px rgba(10,22,40,0.1);
  transform: translateY(-4px);
}
.problem-card .icon {
  font-size: 1.6rem;
  margin-bottom: 14px;
  display: block;
}
.problem-card h3 { color: var(--text-dark); font-size: 1rem; }
.problem-card p { font-size: 0.9rem; line-height: 1.65; }

/* ── Product / Demo section ──────────────────────────────────────────────── */

.demo-cta-block {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 32px;
  aspect-ratio: 16/9;
  background: var(--navy-deep);
  border: 1px solid var(--gray-border);
  box-shadow: 0 24px 64px -16px rgba(10,22,40,0.18);
}
.demo-cta-thumb {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.38) saturate(0.7);
  transition: filter 0.3s ease;
}
.demo-cta-block:hover .demo-cta-thumb {
  filter: brightness(0.28) saturate(0.6);
}
.demo-cta-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.btn-play-demo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--gold);
  color: var(--navy-deep);
  border: none;
  border-radius: 999px;
  padding: 14px 28px;
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  cursor: pointer;
  box-shadow: 0 4px 24px rgba(212,167,44,0.5);
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}
.btn-play-demo:hover {
  background: var(--gold-light);
  transform: scale(1.04);
  box-shadow: 0 8px 32px rgba(212,167,44,0.6);
}
.play-icon {
  width: 34px; height: 34px;
  background: rgba(7,15,28,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  padding-left: 2px;
}
.demo-cta-hint { color: rgba(255,255,255,0.45); font-size: 0.82rem; margin: 0; }

/* Product shots */
.product-shots { display: grid; gap: 20px; margin-top: 32px; }
@media (min-width: 768px) { .product-shots { grid-template-columns: 1fr 1fr; } }
.product-shots figure {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--gray-border);
  box-shadow: 0 12px 40px rgba(10,22,40,0.1);
  transition: transform 0.25s, box-shadow 0.25s;
}
.product-shots figure:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 56px rgba(10,22,40,0.16);
}
.product-shots figcaption {
  padding: 12px 16px;
  font-size: 0.82rem;
  color: var(--text-muted);
  background: var(--white);
  border-top: 1px solid var(--gray-border);
}

/* ── Features ────────────────────────────────────────────────────────────── */

.features-grid {
  display: grid;
  gap: 18px;
  margin-top: 40px;
}
@media (min-width: 640px)  { .features-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .features-grid { grid-template-columns: repeat(3, 1fr); } }

.feature-card {
  background: var(--white);
  border: 1px solid var(--gray-border);
  border-left: 3px solid transparent;
  border-radius: var(--radius);
  padding: 28px 24px;
  position: relative;
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.3s cubic-bezier(0.16,1,0.3,1);
  perspective: 600px;
}
.feature-card:hover {
  border-left-color: var(--gold);
  box-shadow: 0 16px 48px rgba(10,22,40,0.1);
  transform: translateY(-6px);
}

.feature-card .icon {
  width: 42px; height: 42px;
  border-radius: 10px;
  background: var(--gold-subtle);
  border: 1px solid rgba(212,167,44,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  margin-bottom: 16px;
  transition: background 0.25s;
  color: var(--navy);
}
.feature-card:hover .icon {
  background: rgba(212,167,44,0.15);
}

.feature-card .subtitle {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}
.feature-card h3 { color: var(--text-dark); margin-bottom: 8px; }
.feature-card p { margin: 0; font-size: 0.9rem; line-height: 1.65; }

/* ── Audience (Who It's For) ─────────────────────────────────────────────── */

.audience {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}
.audience-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 28px;
}
.pill {
  background: var(--white);
  border: 1.5px solid var(--gray-border);
  border-radius: 999px;
  padding: 9px 18px;
  font-family: var(--sans);
  font-size: 0.86rem;
  font-weight: 500;
  color: var(--text-body);
  transition: border-color 0.2s, color 0.2s;
}
.pill:hover { border-color: var(--gold); color: var(--navy); }

/* ── Inline sparkline ────────────────────────────────────────────────────── */
.sparkline-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 32px;
  padding: 20px 24px;
  background: var(--gray-light);
  border-radius: var(--radius);
  border: 1px solid var(--gray-border);
}
.sparkline-label {
  font-family: var(--sans);
  font-size: 0.8rem;
  color: var(--text-muted);
  white-space: nowrap;
}
.sparkline-label strong { display: block; font-size: 1.3rem; color: var(--gold); font-family: var(--serif); }

svg.sparkline {
  flex: 1;
  height: 52px;
  overflow: visible;
}
.spark-path {
  fill: none;
  stroke: var(--gold);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-dasharray: 600;
  stroke-dashoffset: 600;
  transition: stroke-dashoffset 1.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.spark-path.drawn { stroke-dashoffset: 0; }
.spark-fill {
  fill: url(#sparkGradient);
  opacity: 0;
  transition: opacity 0.8s ease 0.5s;
}
.spark-fill.drawn { opacity: 1; }

/* ── Pilot / CTA section ─────────────────────────────────────────────────── */

.pilot-banner {
  border-radius: 20px;
  padding: 64px 48px;
  background: linear-gradient(150deg, var(--navy-mid) 0%, var(--navy-deep) 100%);
  border: 1px solid rgba(255,255,255,0.07);
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Dot grid inside banner */
.pilot-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}

/* Gold glow top */
.pilot-banner::after {
  content: '';
  position: absolute;
  top: -80px; left: 50%;
  transform: translateX(-50%);
  width: 500px; height: 300px;
  background: radial-gradient(ellipse, rgba(212,167,44,0.12) 0%, transparent 65%);
  pointer-events: none;
}

.pilot-banner > * { position: relative; z-index: 1; }
.pilot-banner h2 { color: var(--white) !important; }
.pilot-banner .gold { color: var(--gold); }
.pilot-banner .eyebrow { color: var(--gold); }

/* ── Final CTA ───────────────────────────────────────────────────────────── */

.cta-final { text-align: center; }
.cta-final .hero__cta-row { justify-content: center; }
.whatsapp-note { font-size: 0.84rem; color: var(--text-muted); margin-top: 16px; }

/* ── Demo modal ──────────────────────────────────────────────────────────── */

.demo-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(7,15,28,0.88);
  backdrop-filter: blur(8px);
  z-index: 9000;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.demo-modal.is-open { display: flex; }
.demo-modal__inner {
  position: relative;
  width: 100%;
  max-width: 960px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(0,0,0,0.7), 0 0 0 1px rgba(212,167,44,0.2);
  background: #050d18;
}
.demo-modal__close {
  position: absolute;
  top: 12px; right: 12px;
  z-index: 10;
  width: 36px; height: 36px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.1);
  color: #fff;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.demo-modal__close:hover { background: rgba(255,255,255,0.2); }

/* ── Footer ──────────────────────────────────────────────────────────────── */

.footer {
  background: var(--navy-deep);
  color: rgba(200,215,235,0.5);
  padding: 72px 0 36px;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.footer__top {
  display: grid;
  gap: 40px;
  margin-bottom: 56px;
}
@media (min-width: 768px) { .footer__top { grid-template-columns: 1.3fr 1fr 1fr; } }
.footer__brand { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer__brand svg { width: 30px; height: 30px; border-radius: 8px; }
.footer__brand span { font-weight: 700; color: var(--white); font-size: 0.95rem; font-family: var(--sans); }
.footer p { color: rgba(200,215,235,0.45); font-size: 0.88rem; line-height: 1.7; }
.footer h4 {
  font-family: var(--sans);
  color: rgba(255,255,255,0.7);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer li { margin-bottom: 10px; font-size: 0.88rem; }
.footer a { text-decoration: none; color: rgba(200,215,235,0.45); transition: color 0.15s; }
.footer a:hover { color: var(--gold); }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 24px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.22);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
}

/* ── Scroll reveal ───────────────────────────────────────────────────────── */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }
.reveal-delay-5 { transition-delay: 0.40s; }
.reveal-delay-6 { transition-delay: 0.48s; }

/* ── Utilities ───────────────────────────────────────────────────────────── */

.text-center { text-align: center; }
.muted { color: var(--text-muted); }

.section h2  { color: var(--text-dark); }
.section--alt h2  { color: var(--text-dark); }
.pilot-banner h2  { color: var(--white) !important; }

.gold { color: var(--gold); }
