/* ============================================================
   VELOCE — initialfrontpage.css
   Cinema-grade front page styles
   ============================================================ */

/* ── Cinema Nav ──────────────────────────────────────────────── */
.cinema-nav .nav-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0;
  align-items: center;
}
.cinema-nav .nav-links    { display: none; }
.cinema-nav .nav-logo     { justify-self: center; }
.cinema-nav .nav-menu-btn { justify-self: start; }

.nav-right {
  display: flex;
  align-items: center;
  gap: 4px;
  justify-self: end;
}

/* Auth slot — sits inline next to menu toggle */
.cinema-nav .nav-controls  { display: flex; align-items: center; }
.cinema-nav .nav-auth-slot { display: flex; align-items: center; }

/* Logged-in avatar from auth.js */
.cinema-nav .nav-user-btn {
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 4px 8px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-2);
  font-size: 12px;
  position: relative;
}
.cinema-nav .nav-user-avatar {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(54, 63, 89, 0.5);
  border: 1px solid rgba(196, 221, 242, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
  color: var(--text-1);
  letter-spacing: 0.5px;
  flex-shrink: 0;
}
.cinema-nav .nav-user-btn > span:not(.nav-user-avatar) { display: none; }

/* Two-line menu toggle */
.nav-menu-btn {
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 10px 8px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  align-items: flex-end;
}
.menu-line {
  display: block;
  height: 1px;
  background: rgba(196,221,242,0.58);
  transition:
    transform 0.38s cubic-bezier(0.16, 1, 0.3, 1),
    width     0.28s ease,
    opacity   0.2s ease;
}
.menu-line:first-child { width: 22px; }
.menu-line:last-child  { width: 14px; }
.nav-menu-btn:hover .menu-line            { background: rgba(196,221,242,0.95); }
.nav-menu-btn:hover .menu-line:last-child { width: 22px; }

/* Toggle → X when open */
.nav-menu-btn.is-open .menu-line:first-child {
  transform: rotate(45deg) translate(4.5px, 4.5px);
  width: 20px;
}
.nav-menu-btn.is-open .menu-line:last-child {
  transform: rotate(-45deg) translate(3.5px, -3.5px);
  width: 20px;
}

/* ── Full-screen Overlay Menu ─────────────────────────────────── */
.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(13, 13, 13, 0.97);
  display: flex;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.42s ease;
}
.nav-overlay.is-open {
  opacity: 1;
  pointer-events: all;
}

.overlay-inner {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 64px;
}

/* Large editorial serif links */
.overlay-nav {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.overlay-link {
  font-family: var(--font-serif);
  font-size: clamp(30px, 5.2vw, 66px);
  font-weight: 700;
  color: rgba(196, 221, 242, 0.16);
  text-decoration: none;
  line-height: 1.22;
  letter-spacing: -0.3px;
  display: block;
  opacity: 0;
  transform: translateY(16px);
  transition: color 0.22s ease, opacity 0.48s ease, transform 0.48s ease;
}
.nav-overlay.is-open .overlay-link              { opacity: 1; transform: translateY(0); }
.nav-overlay.is-open .overlay-link:nth-child(1) { transition-delay: 0.06s; }
.nav-overlay.is-open .overlay-link:nth-child(2) { transition-delay: 0.12s; }
.nav-overlay.is-open .overlay-link:nth-child(3) { transition-delay: 0.18s; }
.nav-overlay.is-open .overlay-link:nth-child(4) { transition-delay: 0.24s; }
.nav-overlay.is-open .overlay-link:nth-child(5) { transition-delay: 0.30s; }
.overlay-link:hover { color: rgba(196, 221, 242, 0.88); }

.overlay-foot {
  margin-top: 40px;
  padding-top: 18px;
  border-top: 1px solid rgba(196, 221, 242, 0.07);
  opacity: 0;
  transition: opacity 0.5s ease 0.34s;
}
.nav-overlay.is-open .overlay-foot { opacity: 1; }
.overlay-foot-nav {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 0.75rem;
}
.overlay-foot-nav a {
  font-family: var(--font-data);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(196, 221, 242, 0.35);
  text-decoration: none;
  transition: color 0.2s;
}
.overlay-foot-nav a:hover { color: rgba(196, 221, 242, 0.75); }
.overlay-copy {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(196, 221, 242, 0.16);
}

/* ── Hero ─────────────────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 680px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
}

.hero-visual {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 38%;
  opacity: 0;
  transform: scale(1.06);
  will-change: transform, opacity;
  transition: opacity 1.4s ease;
}
.hero-img--active { opacity: 1; }

/* Cinematic grade: heavy bottom vignette + left shadow */
.hero-film {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to top,
      rgba(13,13,13,0.98) 0%,
      rgba(13,13,13,0.72) 22%,
      rgba(13,13,13,0.22) 52%,
      rgba(13,13,13,0.04) 78%,
      transparent 100%
    ),
    linear-gradient(
      to right,
      rgba(13,13,13,0.65) 0%,
      rgba(13,13,13,0.18) 42%,
      transparent 68%
    );
}

/* Content anchored to bottom-left — bottom third of screen */
.hero-stage {
  position: relative;
  z-index: 2;
  padding: 0 64px 80px;
  width: 100%;
}

.hero-editorial { max-width: 720px; }

/* Massive serif headline */
.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(36px, 5.2vw, 78px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.5px;
  color: #C4DDF2;
  margin-bottom: 40px;
}
.hero-title em {
  font-style: italic;
  font-weight: 600;
  color: var(--gold-light);
}

/* Single outlined CTA — precision, no filled background */
.btn-cinema {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 40px;
  border: 1px solid rgba(196, 221, 242, 0.40);
  color: rgba(196, 221, 242, 0.80);
  background: transparent;
  font-family: var(--font-data);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  text-decoration: none;
  transition: border-color 0.3s ease, color 0.3s ease, background 0.3s ease;
  position: relative;
}
.btn-cinema::after {
  content: '→';
  transition: transform 0.25s ease;
}
.btn-cinema:hover {
  border-color: rgba(196, 221, 242, 0.75);
  color: #C4DDF2;
  background: rgba(196, 221, 242, 0.04);
}
.btn-cinema:hover::after { transform: translateX(4px); }
.btn-cinema:active { transform: scale(0.97); transition: transform 0.08s; }

/* Button press feedback — all buttons */
.btn:active,
.btn-outline:active,
.btn-gold:active,
.btn-ghost:active {
  transform: scale(0.97);
  transition: transform 0.08s;
}

/* Car label eyebrow above headline */
.hero-slide-label {
  font-family: var(--font-data);
  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(196, 221, 242, 0.45);
  margin: 0 0 20px;
  min-height: 14px;
  transition: opacity 0.5s ease;
}

/* Slide dot indicators — bottom right */
.hero-dots {
  position: absolute;
  bottom: 38px;
  right: 64px;
  z-index: 3;
  display: flex;
  gap: 10px;
  align-items: center;
}
.hero-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(196, 221, 242, 0.22);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background 0.4s ease, transform 0.4s ease;
}
.hero-dot--active {
  background: rgba(196, 221, 242, 0.78);
  transform: scale(1.5);
}

/* Scroll cue */
.hero-scroll-cue {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(196, 221, 242, 0.28);
  font-size: 8px;
  letter-spacing: 3px;
  text-transform: uppercase;
  animation: scrollCueBounce 2.4s ease-in-out infinite;
  pointer-events: none;
}
.hero-scroll-cue::after {
  content: '';
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(196,221,242,0.45), transparent);
}
@keyframes scrollCueBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(9px); }
}

/* ── Model Grid — Porsche-style 2-column ─────────────────────── */
.model-grid-section {
  border-top: 1px solid var(--border);
  background: var(--bg-0);
  padding: 32px 48px;
}

.model-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 200px;
  max-width: 1400px;
  margin: 0 auto;
}

/* Card container — clips the image, no border/shadow */
.model-card {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  background: #0a0a0a;
}

/* Featured card spans full width, same 16:9 ratio */
.model-card.model-card--hero {
  grid-column: 1 / -1;
  aspect-ratio: 16 / 7;
}

/* Image fills the card absolutely */
.model-card-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.72) saturate(0.80);
  transform: scale(1.0);
  transition: transform 0.4s ease-out, filter 0.4s ease-out;
}
.model-card:hover .model-card-img {
  transform: scale(1.02);
  filter: brightness(0.58) saturate(0.85);
}

/* Always-on gradient for text legibility */
.model-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(13,13,13,0.92) 0%,
    rgba(13,13,13,0.30) 38%,
    transparent 65%
  );
}

/* Hover vignette — darkens edges on hover */
.model-card-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 25%, rgba(13,13,13,0.50) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}
.model-card:hover .model-card-vignette { opacity: 1; }

.model-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px 32px;
}

/* Car name in italic serif — editorial feel */
.model-card-name {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(22px, 2.6vw, 44px);
  font-weight: 600;
  color: #C4DDF2;
  line-height: 1.05;
  margin-bottom: 8px;
  letter-spacing: -0.3px;
}
.model-card--hero .model-card-name { font-size: clamp(28px, 3.8vw, 56px); }

.model-card-make {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}

/* Stat line — fades in on hover */
.model-card-stat {
  font-family: var(--font-data);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--green-l);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.3s ease 0.05s, transform 0.3s ease 0.05s;
}
.model-card:hover .model-card-stat {
  opacity: 1;
  transform: translateY(0);
}
.model-card-stat--up   { color: var(--green-l); }
.model-card-stat--down { color: #e05252; }
.model-card-stat--loading { color: var(--text-muted); font-weight: 400; letter-spacing: 0.5px; }

/* ── Data Section — Bloomberg Terminal Feel ──────────────────── */
.data-section {
  padding: 120px 60px;
  background: var(--bg-1);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Ghost watermark */
.data-section::before {
  content: 'DATA';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(120px, 22vw, 320px);
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 1px rgba(196, 221, 242, 0.025);
  letter-spacing: 12px;
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
  line-height: 1;
}

.data-inner {
  position: relative;
  z-index: 1;
  max-width: 860px;
  margin: 0 auto;
}

.data-eyebrow {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.data-eyebrow::before,
.data-eyebrow::after {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold-dim);
}

/* The centrepiece number */
.data-number {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(88px, 16vw, 200px);
  font-weight: 700;
  color: var(--text-1);
  letter-spacing: -5px;
  line-height: 0.88;
  margin-bottom: 20px;
  font-variant-numeric: tabular-nums;
}

.data-label {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(14px, 2vw, 22px);
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-2);
  margin-bottom: 20px;
}

.data-sub {
  font-size: 15px;
  color: var(--text-3);
  line-height: 1.85;
  margin-bottom: 56px;
}

/* Three secondary metrics */
.data-metrics {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}
.data-metric {
  padding: 0 44px;
}
.data-metric-val {
  font-family: 'Rajdhani', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 6px;
  font-variant-numeric: tabular-nums;
}
.data-metric-key {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-3);
}
.data-metric-sep {
  width: 1px;
  height: 40px;
  background: var(--border);
  flex-shrink: 0;
}

/* ── Scroll Reveal System (cinematic parameters) ─────────────── */
.reveal,
.v-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity  0.6s ease,
    transform 0.6s ease;
}
.reveal.is-visible,
.v-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left  { transform: translateX(-30px); }
.reveal-right { transform: translateX(30px); }
.reveal-left.is-visible,
.reveal-right.is-visible { transform: translateX(0); }

/* Stagger delays — 80ms increments */
.reveal-d1, .v-reveal-d1 { transition-delay: 0.08s; }
.reveal-d2, .v-reveal-d2 { transition-delay: 0.16s; }
.reveal-d3, .v-reveal-d3 { transition-delay: 0.24s; }
.reveal-d4, .v-reveal-d4 { transition-delay: 0.32s; }
.reveal-d5, .v-reveal-d5 { transition-delay: 0.40s; }

/* ── Mission Section ─────────────────────────────────────────── */
.mission-section {
  padding: 120px 40px;
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.mission-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.mission-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  filter: brightness(0.28) saturate(0.55);
}
.mission-bg-film {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right,
      rgba(13,13,13,0.97) 0%,
      rgba(13,13,13,0.86) 42%,
      rgba(13,13,13,0.62) 68%,
      rgba(13,13,13,0.30) 100%
    ),
    linear-gradient(to bottom,
      rgba(13,13,13,0.45) 0%,
      transparent 25%,
      transparent 75%,
      rgba(13,13,13,0.45) 100%
    );
}
.mission-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 96px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.mission-text h2 {
  font-family: var(--font-serif);
  font-size: clamp(42px, 4.4vw, 64px);
  font-weight: 700;
  letter-spacing: -0.5px;
  line-height: 1.07;
  margin-bottom: 32px;
  color: #C4DDF2;
}
.mission-text h2 em { font-style: italic; color: var(--gold); }
.mission-text p {
  font-size: 16px;
  color: rgba(196,221,242,0.68);
  line-height: 1.88;
  max-width: 440px;
}
.mission-pillars { display: flex; flex-direction: column; gap: 0; }
.pillar {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(196,221,242,0.14);
  padding: 28px 0;
  display: flex;
  gap: 24px;
  align-items: flex-start;
}
.pillar:first-child { border-top: 1px solid rgba(196,221,242,0.14); }
.pillar-num {
  font-family: 'Rajdhani', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--gold);
  flex-shrink: 0;
  padding-top: 3px;
  min-width: 22px;
}
.pillar-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #C4DDF2;
  margin-bottom: 6px;
}
.pillar-desc {
  font-size: 13px;
  color: rgba(196,221,242,0.52);
  line-height: 1.72;
}

/* ── How It Works ────────────────────────────────────────────── */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--border);
  overflow: hidden;
}
.step {
  background: var(--bg-2);
  padding: 48px 36px;
  position: relative;
  border-right: 1px solid var(--border);
}
.step:last-child { border-right: none; }
.step::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-dim), transparent);
}
.step-num {
  font-family: 'Orbitron', sans-serif;
  font-size: 80px;
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 1px rgba(104,137,166,0.50);
  line-height: 1;
  margin-bottom: 24px;
  letter-spacing: -3px;
  user-select: none;
}
.step-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 14px;
}
.step-desc { font-size: 14px; color: var(--text-2); line-height: 1.75; }
.step-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  transition: gap 0.15s;
  position: relative;
}
/* Draw-from-left underline */
.step-link::after { content: '→'; }
.step-link::before {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.25s ease;
}
.step-link:hover { gap: 10px; color: var(--gold-light); }
.step-link:hover::before { width: 100%; }

/* ── Market Movers ───────────────────────────────────────────── */
.mover-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  transition: border-color 0.2s, transform 0.4s ease-out, box-shadow 0.2s;
  cursor: pointer;
  position: relative;
}
.mover-card::before {
  content: '';
  position: absolute;
  top: -1px; left: -1px;
  width: 12px; height: 12px;
  border-top: 2px solid var(--gold-dim);
  border-left: 2px solid var(--gold-dim);
  border-radius: var(--radius) 0 0 0;
  transition: border-color 0.2s, width 0.2s, height 0.2s;
  pointer-events: none;
}
.mover-card::after {
  content: '';
  position: absolute;
  bottom: -1px; right: -1px;
  width: 12px; height: 12px;
  border-bottom: 2px solid var(--gold-dim);
  border-right: 2px solid var(--gold-dim);
  border-radius: 0 0 var(--radius) 0;
  transition: border-color 0.2s, width 0.2s, height 0.2s;
  pointer-events: none;
}
.mover-card:hover {
  border-color: var(--border-hover);
  transform: scale(1.02);
  box-shadow: var(--shadow-gold);
}
.mover-card:hover::before,
.mover-card:hover::after { border-color: var(--gold); width: 18px; height: 18px; }
.mover-card:active { transform: scale(0.97); }
.mover-make {
  font-size: 9px; font-weight: 700; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--text-3); margin-bottom: 4px;
}
.mover-model {
  font-family: 'Rajdhani', sans-serif; font-size: 20px; font-weight: 700;
  letter-spacing: .3px; color: var(--text-1); margin-bottom: 10px;
}
.mover-price {
  font-family: 'Rajdhani', sans-serif; font-size: 28px; font-weight: 700;
  color: var(--gold-light); margin-bottom: 6px; font-variant-numeric: tabular-nums;
}
.mover-footer {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--border);
}
.mini-chart-bar { display: flex; align-items: flex-end; gap: 2px; height: 28px; }
.mini-bar { width: 4px; border-radius: 1px 1px 0 0; background: var(--bg-4); }
.mini-bar.up   { background: var(--green); }
.mini-bar.down { background: var(--red); }

/* ── Platform Stats ──────────────────────────────────────────── */
.pstats-section {
  padding: 60px 40px;
  background: var(--bg-1);
  border-top: 1px solid var(--border);
}
.pstats-inner { max-width: 1400px; margin: 0 auto; }
.pstats-label {
  font-size: 9px; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--text-3); margin-bottom: 28px;
}
.pstats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  gap: 1px;
}
.pstats-card {
  background: var(--bg-2);
  padding: 36px 40px;
  position: relative;
}
.pstats-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
}
.pstats-num {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(38px, 4vw, 56px);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 10px;
  letter-spacing: -1px;
}
.pstats-name {
  font-size: 11px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--text-1);
  margin-bottom: 6px;
}
.pstats-desc {
  font-size: 12px; color: var(--text-3); line-height: 1.6;
}
@media (max-width: 640px) {
  .pstats-grid { grid-template-columns: 1fr; }
  .pstats-card { padding: 28px 24px; }
}

/* ── CTA Banner ──────────────────────────────────────────────── */
.cta-banner {
  padding: 88px 40px;
  background: #031226;
  border-top: 1px solid rgba(196,221,242,0.20);
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: 0; left: 40px; right: 40px; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(196,221,242,0.35) 30%, rgba(196,221,242,0.35) 70%, transparent);
  pointer-events: none;
}
.cta-banner::after {
  content: 'INVEST';
  position: absolute;
  right: -10px; bottom: -24px;
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(80px, 12vw, 180px);
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 1px rgba(196,221,242,0.06);
  letter-spacing: 10px;
  user-select: none; pointer-events: none; line-height: 1;
}
.cta-inner {
  max-width: 1400px; margin: 0 auto;
  display: flex; justify-content: space-between;
  align-items: center; gap: 40px; flex-wrap: wrap;
  position: relative; z-index: 1;
}
.cta-text h3 {
  font-family: var(--font-serif) !important;
  font-size: clamp(32px, 3.5vw, 52px) !important;
  font-weight: 700 !important;
  letter-spacing: -0.3px !important;
  text-transform: none !important;
  line-height: 1.12 !important;
  color: #C4DDF2 !important;
  margin-bottom: 10px;
}
.cta-text p { font-size: 15px; color: rgba(196,221,242,0.65); line-height: 1.7; }
.cta-actions { display: flex; gap: 14px; flex-shrink: 0; }

/* ── Footer — Sparse ─────────────────────────────────────────── */
footer.footer-sparse,
.footer-sparse {
  padding: 52px 60px;
  background: var(--bg-0);
  border-top: 1px solid var(--border);
}
.footer-sparse-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}
.footer-sparse-logo {
  font-family: 'Orbitron', sans-serif;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 4px;
  color: var(--text-2);
  margin-right: auto;
}
.footer-sparse-nav {
  display: flex;
  gap: 36px;
}
.footer-sparse-nav a {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-3);
  text-decoration: none;
  position: relative;
  transition: color 0.2s ease;
}
/* Draw-from-left underline on footer links */
.footer-sparse-nav a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.25s ease;
}
.footer-sparse-nav a:hover { color: var(--text-1); }
.footer-sparse-nav a:hover::after { width: 100%; }
.footer-sparse-legal {
  width: 100%;
  font-size: 11px;
  color: rgba(104, 137, 166, 0.45);
  line-height: 1.65;
  padding-top: 28px;
  border-top: 1px solid rgba(54, 63, 89, 0.35);
  margin-top: 4px;
}

/* Override global footer on this page */
.page-wrapper ~ footer { display: none; }

/* ── Link hover: draw underline from left ─────────────────────── */
a.nav-links-cinema,
.nav-links a {
  position: relative;
}

/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .hero-stage { padding: 0 48px 72px; }
}

@media (max-width: 900px) {
  .hero-stage { padding: 0 32px 56px; }
  .hero-title { font-size: clamp(48px, 10vw, 80px); letter-spacing: -1px; }
  .model-grid-section { padding: 20px; }
  .model-grid { grid-template-columns: 1fr; gap: 12px; }
  .model-card--hero { aspect-ratio: 16 / 9; }
  .mission-inner { grid-template-columns: 1fr; gap: 52px; }
  .mission-text p { max-width: 100%; }
  .mission-bg-img { object-position: 70% center; }
  .steps { grid-template-columns: 1fr; }
  .step { border-right: none; border-bottom: 1px solid var(--border); }
  .step:last-child { border-bottom: none; }
  .cta-inner { flex-direction: column; }
  .data-metrics { flex-direction: column; gap: 24px; }
  .data-metric-sep { width: 40px; height: 1px; }
  .footer-sparse-inner { flex-direction: column; align-items: flex-start; gap: 24px; }
  .footer-sparse-logo { margin-right: 0; }
}

@media (max-width: 640px) {
  .hero-stage { padding: 0 24px 44px; }
  .hero-title { font-size: clamp(42px, 12vw, 64px); }
  .btn-cinema { width: 100%; justify-content: center; }
  .model-card-content { padding: 24px 28px; }
  .data-section { padding: 80px 32px; }
  .footer-sparse { padding: 40px 24px; }
  .footer-sparse-nav { flex-wrap: wrap; gap: 20px; }
}
