/* STARFORGE — site-wide styles (index.html, vision.html) */

:root {
  --black: #050505;
  --off-white: #e8e2d6;
  --sand: #b89c72;
  --sand-light: #d4b98a;
  --sand-dark: #8a6f4a;
  --dim: #2a2520;
  --text-muted: #6b6155;
  --border: rgba(184,156,114,0.18);
  --border-strong: rgba(184,156,114,0.35);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px; /* fixed nav */
  background-color: var(--black);
}

body {
  color: var(--off-white);
  font-family: 'Barlow', sans-serif;
  font-weight: 300;
  overflow-x: hidden;
  cursor: crosshair;
  /* Full-viewport Mars — content scrolls over it (fixed attachment) */
  background-color: var(--black);
  background-image:
    linear-gradient(180deg, rgba(5,5,5,0.5) 0%, rgba(5,5,5,0.28) 42%, rgba(5,5,5,0.78) 100%),
    url("./assets/mars.webp");
  background-position: center, center;
  background-size: cover, cover;
  background-repeat: no-repeat, no-repeat;
  background-attachment: fixed, fixed;
}

/* ── NOISE OVERLAY ── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: 0.4;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  row-gap: 12px;
  column-gap: 16px;
  padding: 28px 48px;
  background: linear-gradient(to bottom, rgba(5,5,5,0.95) 0%, transparent 100%);
}

.nav-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: 0.25em;
  color: var(--off-white);
  text-decoration: none;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 24px 32px;
  list-style: none;
}

.nav-links a {
  font-family: 'Barlow', sans-serif;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(232,226,214,0.6);
  text-decoration: none;
  transition: color 0.3s;
}

.nav-links a:hover,
.nav-links a.active { color: var(--sand); }

.nav-links a[aria-current="page"] { color: var(--sand); }

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

.hero-bg {
  position: absolute;
  inset: 0;
  /* Extra hero scrim over global Mars backdrop */
  background: linear-gradient(180deg, rgba(5,5,5,0.25) 0%, rgba(5,5,5,0) 38%, rgba(5,5,5,0.45) 100%);
  overflow: hidden;
}

.hero-scan-lines {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 3px,
    rgba(0,0,0,0.08) 3px,
    rgba(0,0,0,0.08) 4px
  );
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 48px 80px;
  max-width: 900px;
}

.hero-tag {
  display: inline-block;
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sand);
  border: 1px solid var(--border-strong);
  padding: 6px 14px;
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 0.8s 0.3s forwards;
}

.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(52px, 8vw, 110px);
  line-height: 0.92;
  letter-spacing: 0.02em;
  color: var(--off-white);
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 0.9s 0.5s forwards;
}

.hero-title span { color: var(--sand); }

.hero-sub {
  font-size: clamp(14px, 1.6vw, 17px);
  font-weight: 300;
  line-height: 1.7;
  color: rgba(232,226,214,0.7);
  max-width: 560px;
  margin-bottom: 44px;
  opacity: 0;
  animation: fadeUp 0.9s 0.7s forwards;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.9s 0.9s forwards;
}

.btn-primary {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--black);
  background: var(--sand);
  border: none;
  padding: 14px 28px;
  cursor: crosshair;
  text-decoration: none;
  transition: background 0.3s, transform 0.2s;
  display: inline-block;
}

.btn-primary:hover { background: var(--sand-light); transform: translateY(-2px); }

.btn-ghost {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--off-white);
  background: transparent;
  border: 1px solid var(--border-strong);
  padding: 14px 28px;
  cursor: crosshair;
  text-decoration: none;
  transition: border-color 0.3s, color 0.3s, transform 0.2s;
  display: inline-block;
}

.btn-ghost:hover { border-color: var(--sand); color: var(--sand); transform: translateY(-2px); }

/* ── SCROLL INDICATOR ── */
.scroll-indicator {
  position: absolute;
  bottom: 32px;
  right: 48px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: fadeIn 1s 1.4s forwards;
}

.scroll-indicator span {
  font-family: 'Space Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.2em;
  color: var(--text-muted);
  writing-mode: vertical-rl;
  text-orientation: mixed;
}

.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--sand-dark), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { transform: scaleY(1); opacity: 0.5; }
  50% { transform: scaleY(0.6); opacity: 1; }
}

/* ── SECTION COMMONS ── */
section {
  padding: 120px 48px;
  position: relative;
}

.section-number {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.25em;
  color: var(--sand);
  margin-bottom: 16px;
  display: block;
}

.section-label {
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 20px;
  display: block;
}

.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(36px, 5vw, 72px);
  letter-spacing: 0.04em;
  line-height: 1;
  color: var(--off-white);
  margin-bottom: 32px;
}

.section-title span { color: var(--sand); }

.section-body {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(232,226,214,0.65);
  max-width: 620px;
}

.divider {
  width: 100%;
  height: 1px;
  background: var(--border);
  margin: 0 48px;
  width: calc(100% - 96px);
}

/* ── BUILT SECTION ── */
#built {
  background: var(--black);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.built-left { }

.built-right {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.built-item {
  padding: 32px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  gap: 24px;
  align-items: flex-start;
  transition: border-color 0.3s;
}

.built-item:first-child { border-top: 1px solid var(--border); }
.built-item:hover { border-bottom-color: var(--sand-dark); }

.built-icon {
  width: 42px;
  height: 42px;
  border: 1px solid var(--border-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--sand);
}

.built-icon svg { width: 20px; height: 20px; }

.built-item-title {
  font-family: 'Barlow', sans-serif;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--off-white);
  margin-bottom: 6px;
}

.built-item-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ── MISSION ── */
#mission {
  background: linear-gradient(160deg, #0a0805 0%, #120e08 100%);
  position: relative;
  overflow: hidden;
}

#mission::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(184,156,114,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  margin-top: 64px;
}

.mission-stat {
  padding: 40px;
  border: 1px solid var(--border);
  position: relative;
  transition: border-color 0.4s, transform 0.3s;
}

.mission-stat:hover { border-color: var(--sand-dark); transform: translateY(-4px); }

.mission-stat::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 40px; height: 2px;
  background: var(--sand);
}

.stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 56px;
  color: var(--sand);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.stat-desc {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(232,226,214,0.55);
}

/* ── WHY NOW ── */
#why-now {
  background: var(--black);
}

.why-now-layout {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 100px;
  align-items: start;
  margin-top: 24px;
}

.why-now-big {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(48px, 6vw, 88px);
  line-height: 0.95;
  letter-spacing: 0.02em;
  color: #ccc;
  user-select: none;
  position: relative;
}

.why-now-big span {
  display: block;
  color: var(--sand);
  opacity: 0.9;
}

.why-points {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding-top: 8px;
}

.why-point {
  padding-left: 20px;
  border-left: 2px solid var(--border);
  transition: border-color 0.3s;
}

.why-point:hover { border-left-color: var(--sand); }

.why-point-title {
  font-family: 'Barlow', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: var(--off-white);
  margin-bottom: 10px;
  letter-spacing: 0.04em;
}

.why-point p {
  font-size: 14px;
  line-height: 1.75;
  color: rgba(232,226,214,0.55);
}

/* ── LAUNCH WINDOW ── */
#launch-window {
  background: linear-gradient(160deg, #0a0805 0%, #0f0c07 100%);
  position: relative;
  overflow: hidden;
}

.window-ticker {
  display: flex;
  gap: 60px;
  margin-bottom: 80px;
  overflow: hidden;
  position: relative;
}

.window-ticker::before, .window-ticker::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 60px;
  z-index: 2;
}

.window-ticker::before { left: 0; background: linear-gradient(to right, #0a0805, transparent); }
.window-ticker::after { right: 0; background: linear-gradient(to left, #0a0805, transparent); }

.ticker-track {
  display: flex;
  gap: 60px;
  animation: ticker 20s linear infinite;
  white-space: nowrap;
}

.ticker-item {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.25em;
  color: var(--sand-dark);
  text-transform: uppercase;
  flex-shrink: 0;
}

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

.window-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.countdown-block {
  padding: 48px;
  border: 1px solid var(--border);
  position: relative;
  background: rgba(255,255,255,0.01);
}

.countdown-label {
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--sand);
  margin-bottom: 24px;
}

.countdown-display {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 24px;
}

.countdown-unit {
  text-align: center;
}

.countdown-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 48px;
  color: var(--off-white);
  line-height: 1;
  display: block;
}

.countdown-unit-label {
  font-family: 'Space Mono', monospace;
  font-size: 8px;
  letter-spacing: 0.2em;
  color: var(--text-muted);
  text-transform: uppercase;
}

.countdown-note {
  font-size: 12px;
  color: rgba(232,226,214,0.4);
  line-height: 1.6;
}

.countdown-note strong { color: var(--sand); font-weight: 400; }

/* ── MILESTONE ── */
#milestone {
  background: var(--black);
}

.milestone-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-top: 16px;
}

.milestone-visual {
  position: relative;
  aspect-ratio: 1;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.milestone-visual::before {
  content: '01';
  font-family: 'Bebas Neue', sans-serif;
  font-size: 240px;
  color: rgba(184,156,114,0.04);
  position: absolute;
  line-height: 1;
  user-select: none;
}

.milestone-rocket {
  position: relative;
  z-index: 1;
}

.milestone-rocket svg {
  width: 80px;
  height: 80px;
  color: var(--sand);
  animation: rocketFloat 3s ease-in-out infinite;
}

@keyframes rocketFloat {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
}

.milestone-badge {
  position: absolute;
  bottom: 24px; right: 24px;
  font-family: 'Space Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sand);
  border: 1px solid var(--border-strong);
  padding: 8px 12px;
  background: rgba(5,5,5,0.8);
}

.milestone-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 40px;
}

.milestone-step {
  display: flex;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
  align-items: flex-start;
}

.step-num {
  font-family: 'Space Mono', monospace;
  font-size: 11px;
  color: var(--sand);
  flex-shrink: 0;
  padding-top: 2px;
}

.step-text {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(232,226,214,0.6);
}

.step-text strong {
  display: block;
  font-size: 15px;
  font-weight: 500;
  color: var(--off-white);
  margin-bottom: 4px;
}

/* ── VISION SECTION ── */
#vision {
  background: linear-gradient(160deg, #0d0906 0%, #0a0805 100%);
  text-align: center;
  padding: 160px 48px;
  position: relative;
  overflow: hidden;
}

#vision::before {
  content: 'STARFORGE';
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28vw;
  color: rgba(184,156,114,0.025);
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  pointer-events: none;
  line-height: 1;
}

.vision-eyebrow {
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--sand);
  margin-bottom: 32px;
  display: block;
  position: relative;
  z-index: 1;
}

.vision-headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(40px, 6vw, 90px);
  letter-spacing: 0.03em;
  line-height: 1;
  color: var(--off-white);
  max-width: 900px;
  margin: 0 auto 40px;
  position: relative;
  z-index: 1;
}

.vision-headline span { color: var(--sand); }

.vision-body {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.9;
  color: rgba(232,226,214,0.55);
  max-width: 580px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.vision-full-link {
  display: inline-block;
  margin-top: 32px;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sand);
  text-decoration: none;
  border-bottom: 1px solid var(--border-strong);
  padding-bottom: 3px;
  transition: color 0.3s, border-color 0.3s;
  position: relative;
  z-index: 1;
}

.vision-full-link:hover {
  color: var(--sand-light);
  border-color: var(--sand-light);
}

/* Long-form vision page (vision.html) reuses #vision — override teaser layout */
body.page-vision #vision {
  background: linear-gradient(160deg, #0a0805 0%, #120e08 100%);
  text-align: left;
  padding: 120px 48px;
}

body.page-vision #vision::before {
  content: '';
  position: absolute;
  top: -200px;
  left: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(184,156,114,0.05) 0%, transparent 70%);
  pointer-events: none;
  transform: none;
  font-family: inherit;
  font-size: inherit;
  color: transparent;
  white-space: normal;
  line-height: normal;
}

.vision-container {
  max-width: 1100px;
  margin: 0 auto;
}

.vision-intro {
  width: 100%;
  margin-bottom: 72px;
}

.vision-intro p {
  font-size: 17px;
  font-weight: 300;
  line-height: 1.85;
  color: rgba(232,226,214,0.7);
  margin-bottom: 28px;
  max-width: 800px;
}

.vision-intro p:last-child { margin-bottom: 0; }

.vision-image-block {
  width: 100%;
  margin: 48px 0;
  border: 1px solid var(--border);
  overflow: hidden;
  position: relative;
}

.vision-image-block img {
  width: 100%;
  display: block;
  opacity: 0.9;
  transition: opacity 0.4s;
}

.vision-image-block:hover img { opacity: 1; }

.vision-image-caption {
  font-family: 'Space Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 10px 16px;
  border-top: 1px solid var(--border);
  background: rgba(5,5,5,0.6);
}

.vision-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin: 64px 0;
}

.vision-split.reverse { direction: rtl; }
.vision-split.reverse > * { direction: ltr; }

.vision-split-text p {
  font-size: 17px;
  font-weight: 300;
  line-height: 1.85;
  color: rgba(232,226,214,0.7);
  margin-bottom: 20px;
}

.vision-split-text p:last-child { margin-bottom: 0; }

.vision-pull {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.1;
  color: var(--off-white);
  margin-bottom: 24px;
  letter-spacing: 0.02em;
}

.vision-pull span { color: var(--sand); }

.vision-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin: 48px 0;
}

/* ── CLOSING CTA ── */
#closing {
  background: var(--black);
  padding: 140px 48px;
  position: relative;
  overflow: hidden;
}

#closing::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: var(--border);
}

.closing-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
}

.closing-text .section-title {
  margin-bottom: 20px;
}

.closing-manifesto {
  font-size: 16px;
  line-height: 1.9;
  color: rgba(232,226,214,0.55);
  margin-bottom: 48px;
}

.closing-manifesto strong {
  color: var(--off-white);
  font-weight: 400;
}

.closing-ctas {
  display: flex;
  gap: 16px;
}

.closing-info {
  padding: 40px;
  border: 1px solid var(--border);
  position: relative;
  align-self: start;
  margin-top: 48px;
}

.closing-info::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 40px; height: 2px;
  background: var(--sand);
}

.info-label {
  font-family: 'Space Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--sand);
  margin-bottom: 20px;
  display: block;
}

.info-address {
  font-size: 13px;
  line-height: 2;
  color: rgba(232,226,214,0.5);
}

/* ── FOOTER ── */
footer {
  background: var(--black);
  padding: 40px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--border);
}

.footer-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px;
  letter-spacing: 0.3em;
  color: rgba(232,226,214,0.4);
}

.footer-copy {
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.15em;
  color: var(--text-muted);
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── HORIZONTAL RULE ── */
.hr-line {
  height: 1px;
  background: var(--border);
  margin: 0 48px;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  html { scroll-padding-top: 80px; }
  nav {
    padding: 16px 20px;
    row-gap: 10px;
  }
  .nav-logo {
    font-size: 18px;
    letter-spacing: 0.18em;
  }
  .nav-links {
    gap: 10px 18px;
    justify-content: flex-end;
  }
  .nav-links a {
    font-size: 11px;
    letter-spacing: 0.1em;
  }
  section { padding: 80px 24px; }
  body.page-vision #vision { padding: 80px 24px; }
  .hr-line { margin: 0 24px; }
  #built, .mission-grid, .why-now-layout, .window-content, .milestone-layout, .closing-layout,
  .vision-two-col, .vision-split {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .vision-split.reverse { direction: ltr; }
  .vision-page-hero { padding: 140px 24px 80px; }
  .why-now-layout { grid-template-columns: 1fr; }
  .hero-content { padding: 0 24px 60px; }
  .scroll-indicator { display: none; }
  footer { flex-direction: column; gap: 16px; }
}

@media (max-width: 560px) {
  html { scroll-padding-top: 120px; }
  nav {
    padding: 14px 16px;
    align-items: center;
  }
  .nav-logo {
    font-size: 17px;
    letter-spacing: 0.14em;
  }
  .nav-links {
    flex-basis: 100%;
    justify-content: space-between;
    gap: 8px 6px;
    padding-top: 4px;
    border-top: 1px solid rgba(184, 156, 114, 0.12);
  }
  .nav-links a {
    font-size: 10px;
    letter-spacing: 0.06em;
    padding: 6px 2px;
  }
}

/* ═══════════════════════════════════════════════════════════════════════════
   VISION PAGE HERO (vision.html — body.page-vision)
   ═══════════════════════════════════════════════════════════════════════════ */

body.page-vision {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.vision-page-hero {
  position: relative;
  padding: 180px 48px 100px;
  background:
    linear-gradient(180deg, rgba(5,5,5,0.5) 0%, rgba(5,5,5,0.85) 100%),
    linear-gradient(135deg, #1a120a 0%, #2d1f0e 35%, #3d2a10 50%, #1a120a 100%);
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}

.vision-page-hero::before {
  content: 'VISION';
  font-family: 'Bebas Neue', sans-serif;
  font-size: 32vw;
  color: rgba(184,156,114,0.03);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  pointer-events: none;
  line-height: 1;
}

.vision-page-hero .hero-scan-lines {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 3px,
    rgba(0,0,0,0.06) 3px,
    rgba(0,0,0,0.06) 4px
  );
  pointer-events: none;
}

.vision-page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.vision-page-hero-content .hero-tag {
  animation: fadeUp 0.8s 0.3s forwards;
}

.vision-page-hero-content .hero-title {
  animation: fadeUp 0.9s 0.5s forwards;
}

.vision-page-hero-content .hero-sub {
  animation: fadeUp 0.9s 0.7s forwards;
}

body.page-vision footer {
  position: relative;
  z-index: 1;
  margin-top: auto;
}
