/* ============================================================
   VIZSLA COPPER — Premium Investor Site
   Skill: soft-skill (Vanguard_UI_Architect) + taste-skill
   Vibe: Editorial Luxury
   Layout: Z-Axis Cascade (Hero) + Asymmetric 4-col Bento (Stats)
   DESIGN_VARIANCE: 8 | MOTION_INTENSITY: 6 | VISUAL_DENSITY: 4
   ============================================================ */

/* ─── DESIGN TOKENS ─── */
:root {
  --navy:           #1B3A5C;
  --navy-deep:      #0f2239;
  --navy-dark:      #080f1a;
  /* Vizsla brand orange — extracted from vizsla-copper-corp-2024.png chevron mark */
  --brand-orange:       #E07820;
  --brand-orange-light: #f0933a;
  --brand-orange-muted: #b85f14;
  /* Forest green from wordmark — used as secondary brand accent */
  --brand-green:        #2D5741;

  /* Gold retained for financial/premium data elements */
  --gold:           #C9A84C;
  --gold-light:     #dfc075;
  --gold-muted:     #a88835;
  --white:          #ffffff;
  --off-white:      #f7f5f1;
  --cream:          #faf8f4;

  --text-ink:       #0a1929;
  --text-body:      #3d4f63;
  --text-muted:     #7a8fa3;
  --text-light:     rgba(255,255,255,0.82);
  --text-dim:       rgba(255,255,255,0.38);

  /* Premium cubic-beziers only — no linear, no ease-in-out */
  --ease-out-expo:  cubic-bezier(0.16, 1, 0.3, 1);
  --ease-cinematic: cubic-bezier(0.32, 0.72, 0, 1);
  --ease-spring:    cubic-bezier(0.34, 1.56, 0.64, 1);

  --font-display:   'Montserrat', system-ui, sans-serif;
  --font-body:      'Plus Jakarta Sans', system-ui, sans-serif;

  --section-pad:    clamp(80px, 10vw, 140px);
  --container:      1320px;
  --gutter:         clamp(20px, 4vw, 48px);

  /* Double-Bezel radii — mathematically nested */
  --radius-outer:   1.75rem;
  --radius-inner:   calc(1.75rem - 6px);
}

/* ─── RESET ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text-ink);
  background: var(--navy-dark);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
strong { font-weight: 700; }
blockquote, cite { font-style: normal; }
em { font-style: italic; }

/* ─── PROGRESS BAR ─── */
/* ─── TRADINGVIEW TICKER STRIP ─── */
.tv-strip {
  position: sticky;
  top: 0;
  z-index: 950;
  width: 100%;
  background: #0d1117;
  border-bottom: 3px solid rgba(224,120,32,0.5);
  overflow: hidden;
  line-height: 0;
}
.tv-strip .tradingview-widget-container {
  width: 100%;
}
.tv-strip .tradingview-widget-container__widget {
  height: 46px;
}

.progress-bar {
  position: fixed;
  top: 46px; left: 0;
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-muted), var(--gold), var(--gold-light));
  z-index: 1000;
  pointer-events: none;
  transition: width 0.1s linear;
}

/* ─── CONTAINER ─── */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ─── DOUBLE-BEZEL CARD SYSTEM ─── */
/* Outer shell */
.card-shell {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 5px;
  border-radius: var(--radius-outer);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.06) inset,
    0 40px 80px -20px rgba(0,0,0,0.4);
}
/* Inner core */
.card-core {
  background: rgba(255,255,255,0.06);
  border-radius: var(--radius-inner);
  padding: 2rem;
  box-shadow: inset 0 1px 1px rgba(255,255,255,0.1);
}

/* ─── TYPOGRAPHY ─── */
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.section-eyebrow.light { color: var(--gold-light); }

.section-h2 {
  font-family: var(--font-display);
  font-size: clamp(1.875rem, 3.8vw, 3.125rem);
  font-weight: 800;
  line-height: 1.07;
  letter-spacing: -0.035em;
  color: var(--text-ink);
  margin-bottom: 1.25rem;
}
.section-h2.light { color: var(--white); }

.section-p {
  font-size: 1.0625rem;
  color: var(--text-body);
  max-width: 62ch;
  margin-bottom: 3.5rem;
  line-height: 1.75;
}

.gold-text  { color: var(--gold); }
.gold-italic { font-style: italic; color: var(--gold); }

/* ─── BUTTON SYSTEM (Button-in-Button architecture) ─── */
.btn-primary-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.8125rem 0.75rem 0.8125rem 1.625rem;
  background: var(--gold);
  color: var(--navy-dark);
  font-family: var(--font-display);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  border-radius: 999px;
  transition:
    transform 0.5s var(--ease-out-expo),
    box-shadow 0.5s var(--ease-out-expo);
  will-change: transform;
}
.btn-primary-pill:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px -8px rgba(201,168,76,0.55);
}
.btn-primary-pill:active { transform: scale(0.98); }
.btn-primary-pill.btn-large {
  padding: 1rem 0.875rem 1rem 2rem;
  font-size: 0.875rem;
}

/* Trailing icon circle — never naked next to text */
.btn-icon-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.875rem;
  height: 1.875rem;
  border-radius: 50%;
  background: rgba(0,0,0,0.12);
  flex-shrink: 0;
  transition:
    transform 0.5s var(--ease-spring),
    background 0.3s var(--ease-out-expo);
}
.btn-primary-pill:hover .btn-icon-circle {
  transform: translate(2px, -1px) scale(1.08);
  background: rgba(0,0,0,0.18);
}

.btn-ghost-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.8125rem 1.625rem;
  border: 1px solid rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.75);
  font-family: var(--font-display);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  border-radius: 999px;
  transition:
    border-color 0.4s var(--ease-out-expo),
    color 0.4s var(--ease-out-expo),
    transform 0.5s var(--ease-out-expo);
}
.btn-ghost-pill:hover {
  border-color: rgba(255,255,255,0.45);
  color: var(--white);
  transform: translateY(-1px);
}
.btn-ghost-pill:active { transform: scale(0.98); }

/* ─── SCROLL ANIMATION BASE ─── */
/* Exclusive use of transform + opacity for GPU performance */
.animate-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.85s var(--ease-out-expo),
    transform 0.85s var(--ease-out-expo);
}
.animate-reveal.is-visible { opacity: 1; transform: translateY(0); }

.animate-reveal.slide-from-left  { transform: translateX(-30px); }
.animate-reveal.slide-from-right { transform: translateX(30px); }
.animate-reveal.slide-from-left.is-visible,
.animate-reveal.slide-from-right.is-visible { transform: translateX(0); }

.stagger-1 { transition-delay: 0.08s; }
.stagger-2 { transition-delay: 0.17s; }
.stagger-3 { transition-delay: 0.26s; }
.stagger-4 { transition-delay: 0.35s; }

/* ─── NAV ISLAND (Floating pill, not sticky-glued-to-top) ─── */
.nav-wrapper {
  position: fixed;
  top: 46px; left: 0; right: 0;
  z-index: 900;
  display: flex;
  justify-content: center;
  padding: 1.125rem var(--gutter) 0;
  pointer-events: none;
}

.nav-island {
  pointer-events: all;
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 900px;
  padding: 0.5625rem 0.5rem 0.5625rem 1.125rem;
  /* backdrop-blur only on fixed elements — never on scrolling containers */
  background: rgba(10, 25, 41, 0.72);
  backdrop-filter: blur(20px) saturate(1.5);
  -webkit-backdrop-filter: blur(20px) saturate(1.5);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 999px;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.06) inset,
    0 20px 48px -12px rgba(0,0,0,0.6);
  transition:
    background 0.5s var(--ease-out-expo),
    border-color 0.5s var(--ease-out-expo);
}
.nav-island.scrolled {
  background: rgba(8, 15, 26, 0.88);
  border-color: rgba(255,255,255,0.07);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  flex-shrink: 0;
}
.logo-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.875rem;
  height: 1.875rem;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy-dark);
  font-family: var(--font-display);
  font-size: 0.5rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  flex-shrink: 0;
}
.logo-text {
  display: flex;
  flex-direction: column;
  gap: 0;
  line-height: 1;
}
.logo-name {
  font-family: var(--font-display);
  font-size: 0.625rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: var(--white);
}
.logo-ticker {
  font-size: 0.5rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--gold);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.125rem;
  margin-left: auto;
  padding: 0 0.625rem;
}
.nav-link {
  display: block;
  padding: 0.4375rem 0.6875rem;
  font-size: 0.7rem;
  font-weight: 500;
  color: rgba(255,255,255,0.55);
  border-radius: 999px;
  letter-spacing: 0.02em;
  transition: color 0.3s var(--ease-out-expo), background 0.3s var(--ease-out-expo);
}
.nav-link:hover { color: var(--white); background: rgba(255,255,255,0.07); }
.nav-link.active { color: rgba(255,255,255,0.9); }

.nav-cta-pill {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.625rem 0.5rem 1rem;
  background: var(--gold);
  color: var(--navy-dark);
  font-family: var(--font-display);
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  border-radius: 999px;
  flex-shrink: 0;
  transition:
    transform 0.4s var(--ease-out-expo),
    box-shadow 0.4s var(--ease-out-expo);
}
.nav-cta-pill:hover {
  transform: scale(1.03);
  box-shadow: 0 6px 20px -4px rgba(201,168,76,0.5);
}
.nav-cta-pill:active { transform: scale(0.97); }
.nav-cta-pill .btn-icon-circle {
  width: 1.5rem;
  height: 1.5rem;
}

/* Hamburger — morph 2-line to X */
.hamburger {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 2.125rem;
  height: 2.125rem;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  flex-shrink: 0;
  margin-left: 0.5rem;
  position: relative;
  transition: background 0.3s var(--ease-out-expo);
}
.hamburger:hover { background: rgba(255,255,255,0.12); }

.ham-line {
  display: block;
  position: absolute;
  width: 13px;
  height: 1.5px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.4s var(--ease-cinematic);
}
.ham-top { transform: translateY(-3px); }
.ham-bot { transform: translateY(3px); }
.hamburger.is-open .ham-top { transform: rotate(45deg); }
.hamburger.is-open .ham-bot { transform: rotate(-45deg); }

/* ─── MOBILE OVERLAY ─── */
.mobile-overlay {
  position: fixed;
  inset: 0;
  z-index: 800;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  /* backdrop-blur only on fixed overlay — GPU safe */
  background: rgba(8, 15, 26, 0.94);
  backdrop-filter: blur(28px) saturate(1.4);
  -webkit-backdrop-filter: blur(28px) saturate(1.4);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease-out-expo);
}
.mobile-overlay.is-open { opacity: 1; pointer-events: all; }

.overlay-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.375rem;
}
.overlay-link {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 5vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  color: rgba(255,255,255,0.6);
  padding: 0.25rem 1rem;
  opacity: 0;
  transform: translateY(18px);
  transition:
    color 0.3s var(--ease-out-expo),
    opacity 0.5s var(--ease-out-expo),
    transform 0.5s var(--ease-out-expo);
}
.overlay-link:hover { color: var(--white); }
.mobile-overlay.is-open .overlay-link { opacity: 1; transform: translateY(0); }
.mobile-overlay.is-open .overlay-link:nth-child(1) { transition-delay: 0.06s; }
.mobile-overlay.is-open .overlay-link:nth-child(2) { transition-delay: 0.10s; }
.mobile-overlay.is-open .overlay-link:nth-child(3) { transition-delay: 0.14s; }
.mobile-overlay.is-open .overlay-link:nth-child(4) { transition-delay: 0.18s; }
.mobile-overlay.is-open .overlay-link:nth-child(5) { transition-delay: 0.22s; }

.overlay-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.875rem 0.875rem 0.875rem 1.875rem;
  background: var(--gold);
  color: var(--navy-dark);
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  border-radius: 999px;
  opacity: 0;
  transform: translateY(14px);
  transition:
    opacity 0.5s var(--ease-out-expo),
    transform 0.5s var(--ease-out-expo);
  transition-delay: 0.3s;
}
.mobile-overlay.is-open .overlay-cta { opacity: 1; transform: translateY(0); }

.overlay-ticker {
  font-size: 0.625rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  color: var(--gold);
  opacity: 0;
  transition: opacity 0.5s var(--ease-out-expo) 0.36s;
}
.mobile-overlay.is-open .overlay-ticker { opacity: 1; }

/* ─── HERO ─── */
.hero {
  position: relative;
  min-height: 100dvh; /* NEVER h-screen — prevents iOS Safari jump */
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

/* Layered background — dark navy fallback behind YouTube embed */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 75% 65% at 62% 48%, rgba(27,58,92,0.55) 0%, transparent 72%),
    linear-gradient(170deg, #0f2239 0%, #080f1a 55%, #06090f 100%);
}

/* Noise texture on pseudo-fixed element — never on scrolling container */
.hero-noise {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  background-size: 180px 180px;
  pointer-events: none;
  opacity: 0.35;
}

.hero-gradient-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(8,15,26,0.1) 0%,
    transparent 35%,
    rgba(8,15,26,0.55) 100%
  );
  pointer-events: none;
}

/* Hero inner — left content, right floating card (Z-Axis split) */
.hero-inner {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr 360px;
  align-items: center;
  gap: 3rem;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: calc(var(--section-pad) + 5.5rem) var(--gutter) var(--section-pad);
  flex: 1;
}

/* Eyebrow tag */
.eyebrow-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.375rem 0.875rem;
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.22);
  border-radius: 999px;
  font-size: 0.5625rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.875rem;
}

.eyebrow-pulse {
  display: block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  animation: pulse-glow 2.2s var(--ease-out-expo) infinite;
}
@keyframes pulse-glow {
  0%, 100% { opacity: 1; transform: scale(1); box-shadow: 0 0 0 0 rgba(201,168,76,0.35); }
  50%       { opacity: 0.75; transform: scale(1.1); box-shadow: 0 0 0 5px rgba(201,168,76,0); }
}

/* Hero headline — LEFT aligned, not centered */
.hero-h1 {
  font-family: var(--font-display);
  font-size: clamp(2.625rem, 5.25vw, 4.75rem);
  font-weight: 900;
  line-height: 0.97;
  letter-spacing: -0.045em;
  color: var(--white);
  margin-bottom: 1.75rem;
}

.hero-sub {
  font-size: 1.0625rem;
  font-weight: 400;
  line-height: 1.7;
  color: rgba(255,255,255,0.52);
  max-width: 50ch;
  margin-bottom: 2.5rem;
}
.hero-br { display: block; }

.hero-actions {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  flex-wrap: wrap;
}

/* Hero staggered entrance */
.hero-content .eyebrow-tag { animation: hero-up 0.9s var(--ease-out-expo) 0.3s both; }
.hero-content .hero-h1      { animation: hero-up 1s   var(--ease-out-expo) 0.45s both; }
.hero-content .hero-sub     { animation: hero-up 0.9s var(--ease-out-expo) 0.58s both; }
.hero-content .hero-actions { animation: hero-up 0.9s var(--ease-out-expo) 0.7s  both; }

@keyframes hero-up {
  from { opacity: 0; transform: translateY(26px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Floating Credential Card — Double-Bezel */
.hero-card-wrap { animation: card-in 1.1s var(--ease-out-expo) 0.55s both; }

@keyframes card-in {
  from { opacity: 0; transform: translateY(22px) rotate(0.8deg); }
  to   { opacity: 1; transform: translateY(0) rotate(0deg); }
}

.hero-card {
  background: rgba(255,255,255,0.045);
  border: 1px solid rgba(255,255,255,0.11);
  padding: 5px;
  border-radius: var(--radius-outer);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.09) inset,
    0 60px 100px -24px rgba(0,0,0,0.75),
    0 0 0 1px rgba(201,168,76,0.05);
}

.hero-card-core {
  background: rgba(15, 34, 57, 0.78);
  border-radius: var(--radius-inner);
  padding: 1.625rem;
  box-shadow: inset 0 1px 1px rgba(255,255,255,0.07);
}

.cred-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 0.875rem 0;
}
.cred-value {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 800;
  letter-spacing: -0.035em;
  color: var(--white);
}
.cred-label {
  font-size: 0.5625rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.cred-rule { height: 1px; background: rgba(255,255,255,0.06); }

.cred-badges { display: flex; flex-direction: column; gap: 0.5rem; padding-top: 1rem; }
.cred-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.6875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.5);
}
.badge-dot {
  display: block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

/* Scroll indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: 2.25rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  animation: scroll-appear 1s var(--ease-out-expo) 1.3s both;
}
@keyframes scroll-appear {
  from { opacity: 0; transform: translateX(-50%) translateY(10px); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}
.scroll-track {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.12);
  position: relative;
  overflow: hidden;
  border-radius: 1px;
}
.scroll-thumb {
  position: absolute;
  left: 0;
  width: 100%;
  height: 40%;
  background: linear-gradient(to bottom, transparent, var(--gold));
  border-radius: 1px;
  animation: scroll-run 1.8s var(--ease-out-expo) infinite 1.6s;
}
@keyframes scroll-run {
  0%   { top: -40%; opacity: 0; }
  20%  { opacity: 1; }
  80%  { opacity: 1; }
  100% { top: 100%; opacity: 0; }
}
.scroll-label {
  font-size: 0.5rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
}

/* ─── OPPORTUNITY (4-col Asymmetric Bento) ─── */
.opportunity {
  background: var(--navy-deep);
  padding: var(--section-pad) 0;
}

/* Row 1: [span-2] [1] [1] | Row 2: [1] [1] [span-2] */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

/* Dark-surface Double-Bezel card for Opportunity section */
.bento-card .card-shell {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 5px;
  border-radius: var(--radius-outer);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.06) inset,
    0 40px 80px -20px rgba(0,0,0,0.4);
  height: 100%;
  transition:
    transform 0.5s var(--ease-out-expo),
    box-shadow 0.5s var(--ease-out-expo);
}
.bento-card:hover .card-shell {
  transform: translateY(-3px);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.06) inset,
    0 50px 100px -24px rgba(0,0,0,0.5);
}

.bento-card .card-core {
  background: rgba(255,255,255,0.06);
  box-shadow: inset 0 1px 1px rgba(255,255,255,0.1);
  padding: 1.5rem 1.625rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.bento-span-2 { grid-column: span 2; }

.bento-tag {
  font-size: 0.5rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.bento-tag-gold { color: var(--gold); }

.bento-value {
  font-family: var(--font-display);
  font-size: clamp(2.125rem, 3.25vw, 2.875rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--white);
  line-height: 1;
}
.bento-value-md {
  font-size: clamp(1.5rem, 2.25vw, 1.875rem);
  letter-spacing: -0.03em;
}

.bento-desc {
  font-size: 0.8125rem;
  line-height: 1.55;
  color: rgba(255,255,255,0.5);
  margin-top: auto;
}

/* ─── GOVERNMENT BACKING ─── */
/* ─── GOVERNMENT SECTION — White House Briefing Style ─── */
/* Inspired by whitehouse.gov: dark institutional header + clean white content area */
.wh-section {
  background: var(--off-white);
  padding: 0; /* children control their own padding */
}

/* ── Dark header bar — mimics whitehouse.gov top banner ── */
.wh-header {
  position: relative;
  overflow: hidden;
  background: #1b2838 url('WHHO_Grounds-and-Staff_20250624_KGraczyk_130_1.jpg') center 40% / cover no-repeat;
  text-align: center;
}
.wh-header-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.375rem;
  padding: 2.25rem 0 1.5rem;
}
.wh-emblem {
  display: none; /* replaced by .wh-logo-img */
}
.wh-title-block {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.wh-title {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(0.875rem, 1.6vw, 1.125rem);
  font-weight: 400;
  letter-spacing: 0.38em;
  color: var(--white);
  text-transform: uppercase;
}
.wh-subtitle {
  font-family: var(--font-body);
  font-size: 0.5rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-top: 0.25rem;
}

/* ── Decorative nav row — mirrors whitehouse.gov horizontal links ── */
.wh-nav {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  gap: clamp(1rem, 3vw, 2.5rem);
  padding: 0.875rem 1rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.wh-nav-item {
  font-family: var(--font-body);
  font-size: 0.5625rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.42);
  cursor: default;
}

/* Gold accent rule */
.wh-accent-rule {
  height: 3px;
  background: linear-gradient(90deg, transparent 5%, var(--gold) 50%, transparent 95%);
}

/* ── Briefing body — clean white ── */
.wh-body {
  padding: clamp(3rem, 6vw, 5rem) 0 var(--section-pad);
}
.wh-container {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 var(--gutter);
  text-align: center;
}

.wh-eyebrow {
  font-family: var(--font-body);
  font-size: 0.5625rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.wh-heading {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 400;
  line-height: 1.22;
  color: var(--text-ink);
  margin-bottom: 0.875rem;
}

.wh-meta {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
}

.wh-divider {
  height: 1px;
  background: rgba(0,0,0,0.08);
  margin: 0 auto 2.5rem;
  max-width: 100%;
}

/* ── Governor Letter ── */
.wh-letter {
  text-align: left;
  margin-bottom: 2.5rem;
  position: relative;
  padding-left: 2.5rem;
}
.wh-quote-mark {
  position: absolute;
  left: 0;
  top: -0.25rem;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 3.5rem;
  line-height: 1;
  color: var(--gold);
  opacity: 0.55;
}
.wh-blockquote p {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 400;
  line-height: 1.7;
  color: var(--text-ink);
  font-style: italic;
}
.wh-cite {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
  margin-top: 1.5rem;
}
.wh-cite-name {
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--text-ink);
}
.wh-cite-title {
  font-size: 0.6875rem;
  font-weight: 400;
  color: var(--text-muted);
}

/* ── Federal Context ── */
.wh-federal {
  text-align: left;
}
.wh-fed-eyebrow {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.5625rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.wh-fed-star {
  font-size: 0.625rem;
  color: var(--gold);
}
.wh-fed-heading {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  font-weight: 400;
  line-height: 1.35;
  color: var(--text-ink);
  margin-bottom: 1rem;
}
.wh-fed-body {
  font-size: 0.9375rem;
  line-height: 1.75;
  color: var(--text-body);
  margin-bottom: 1.75rem;
}
.wh-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.wh-badge {
  display: inline-block;
  padding: 0.3125rem 0.875rem;
  border: 1px solid rgba(0,0,0,0.12);
  border-radius: 999px;
  font-size: 0.5625rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-body);
  background: transparent;
  transition: border-color 0.3s var(--ease-out-expo);
}
.wh-badge:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ─── WH SCREENSHOT CARDS ─── */
.wh-screenshots-label {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted, #888);
  margin-bottom: 1.25rem;
  margin-top: 0.5rem;
}
.wh-screenshots-track {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  padding-bottom: 1rem;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: rgba(0,0,0,0.15) transparent;
}
.wh-screenshots-track::-webkit-scrollbar {
  height: 4px;
}
.wh-screenshots-track::-webkit-scrollbar-track {
  background: transparent;
}
.wh-screenshots-track::-webkit-scrollbar-thumb {
  background: rgba(0,0,0,0.15);
  border-radius: 2px;
}
.wh-screenshot-card {
  flex: 0 0 260px;
  scroll-snap-align: start;
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 6px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}
.wh-screenshot-card:hover {
  box-shadow: 0 6px 24px rgba(0,0,0,0.13);
  transform: translateY(-2px);
}
.wh-screenshot-card img {
  width: 100%;
  display: block;
  object-fit: contain;
  object-position: top center;
  height: 160px;
  background: #0d1b30;
  border-bottom: 1px solid rgba(0,0,0,0.07);
}
.wh-screenshot-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0.75rem;
  gap: 0.5rem;
}
.wh-screenshot-type {
  font-size: 0.5rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy, #1a2744);
}
.wh-screenshot-date {
  font-size: 0.5625rem;
  color: var(--text-muted, #888);
  white-space: nowrap;
}

/* ─── THE PROJECT (Editorial Split) ─── */
.project-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 80vh;
}

.project-left {
  position: relative; /* anchor for .proj-canvas absolute positioning */
  background: var(--navy-deep);
  display: flex;
  align-items: center;
  padding: var(--section-pad) var(--gutter);
}
.project-left-inner {
  position: relative; /* sit above canvas + overlay */
  z-index: 1;
  max-width: 520px;
  width: 100%;
  margin: 0 auto;
}

.project-right {
  background:
    linear-gradient(to bottom, rgba(245,246,248,0.88) 0%, rgba(245,246,248,0.82) 100%),
    url('WHHO_Grounds-and-Staff_20250624_KGraczyk_130_1.jpg') center 20% / cover no-repeat;
  display: flex;
  align-items: center;
  padding: var(--section-pad) var(--gutter);
}
.project-right-inner {
  max-width: 520px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.location-list { display: flex; flex-direction: column; gap: 0.625rem; margin-top: 2rem; }
.location-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.55);
}
.loc-dot {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

.map-placeholder {
  margin-top: 2.5rem;
  height: 175px;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.02);
  transition: border-color 0.4s var(--ease-out-expo);
}
.map-placeholder:hover { border-color: rgba(201,168,76,0.2); }
.map-ph-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.625rem;
  color: rgba(255,255,255,0.2);
}
.map-ph-icon { color: rgba(255,255,255,0.18); }
.map-ph-inner span {
  font-size: 0.5625rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* Resource cards — light Double-Bezel */
.resource-card .card-shell {
  background: rgba(27,58,92,0.04);
  border: 1px solid rgba(27,58,92,0.08);
  padding: 5px;
  border-radius: var(--radius-outer);
  box-shadow:
    0 4px 24px -8px rgba(0,0,0,0.07),
    0 1px 0 rgba(255,255,255,0.9) inset;
  transition: transform 0.5s var(--ease-out-expo), box-shadow 0.5s var(--ease-out-expo);
}
.resource-card:hover .card-shell {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px -8px rgba(0,0,0,0.12), 0 1px 0 rgba(255,255,255,0.9) inset;
}

.resource-card .card-core {
  background: rgba(255,255,255,0.92);
  border-radius: var(--radius-inner);
  padding: 1.375rem 1.625rem;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
  box-shadow: inset 0 1px 0 rgba(255,255,255,1);
}

.resource-category {
  font-size: 0.5625rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  flex-basis: 100%;
}
.resource-number {
  font-family: var(--font-display);
  font-size: clamp(1.875rem, 2.8vw, 2.625rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--navy-deep);
  line-height: 1;
}
.resource-grade {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-body);
}

/* Minerals */
.minerals-block { padding: 0.25rem 0; }
.minerals-heading {
  font-size: 0.5625rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.875rem;
}
.mineral-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.625rem 0;
  border-bottom: 1px solid rgba(27,58,92,0.05);
}
.mineral-row:last-child { border-bottom: none; }
.min-dot {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--navy);
  flex-shrink: 0;
}
.min-name {
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--text-ink);
  flex: 1;
}
.min-tag {
  font-size: 0.5rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* Barite callout — light Double-Bezel, gold accent */
.barite-callout .card-shell {
  background: rgba(201,168,76,0.05);
  border: 1px solid rgba(201,168,76,0.18);
  padding: 5px;
  border-radius: var(--radius-outer);
  box-shadow: 0 4px 24px -8px rgba(201,168,76,0.08), 0 1px 0 rgba(255,255,255,0.8) inset;
}
.barite-callout .card-core {
  background: rgba(255,250,238,0.92);
  border-radius: var(--radius-inner);
  padding: 1.125rem 1.375rem;
  font-size: 0.875rem;
  line-height: 1.65;
  color: var(--text-body);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.9);
}
.barite-callout strong { color: var(--navy-deep); }

/* ─── TEAM ─── */
.team {
  background:
    url('assets/alaska_mine.png') center 40% / cover no-repeat;
  padding: var(--section-pad) 0;
}

.team-statement {
  font-size: clamp(1rem, 1.75vw, 1.175rem);
  line-height: 1.8;
  color: rgba(255,255,255,0.45);
  max-width: 66ch;
  margin-bottom: 2.5rem;
}
.team-statement strong { color: rgba(255,255,255,0.82); font-weight: 600; }

/* CEO Card — Double-Bezel */
.ceo-card .card-shell {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  padding: 5px;
  border-radius: var(--radius-outer);
  box-shadow: 0 40px 80px -20px rgba(0,0,0,0.5), 0 1px 0 rgba(255,255,255,0.06) inset;
  margin-bottom: 2.5rem;
  transition: transform 0.5s var(--ease-out-expo);
}
.ceo-card:hover .card-shell { transform: translateY(-2px); }

.ceo-card .card-core {
  background: rgba(255,255,255,0.04);
  border-radius: var(--radius-inner);
  padding: 2.25rem;
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 2.25rem;
  align-items: start;
  box-shadow: inset 0 1px 1px rgba(255,255,255,0.06);
}

.ceo-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  padding: 1.5rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 0.75rem;
}
.ceo-logo-img {
  width: 120px;
  height: auto;
  filter: brightness(0) invert(1);
  opacity: 0.85;
}
.ceo-role {
  font-family: var(--font-display);
  font-size: 0.5rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

.ceo-quote-wrap { display: flex; flex-direction: column; gap: 0.875rem; }
.quote-mark {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 0.8;
  color: var(--gold);
  opacity: 0.35;
}
.ceo-blockquote p {
  font-family: var(--font-display);
  font-size: clamp(0.9375rem, 1.5vw, 1.125rem);
  font-weight: 600;
  line-height: 1.55;
  letter-spacing: -0.02em;
  color: rgba(255,255,255,0.82);
}
.ceo-cite { display: flex; flex-direction: column; gap: 0.125rem; padding-top: 0.25rem; }
.cite-name {
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--white);
}
.cite-title {
  font-size: 0.6875rem;
  font-weight: 400;
  color: rgba(255,255,255,0.45);
}

/* Track record */
.track-record {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  padding: 1.875rem 2rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 1rem;
}
.track-sep { width: 1px; height: 44px; background: rgba(255,255,255,0.07); margin: 0 1.75rem; }
.track-company {
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 0.375rem;
}
.track-desc { font-size: 0.75rem; line-height: 1.55; color: rgba(255,255,255,0.38); }

/* ─── PATRIOTIC ELEMENTS ─── */

/* ─── MEDIA / VIDEO EMBEDS ─── */
.media-section {
  background: var(--navy-deep);
  padding: var(--section-pad) 0;
}
.media-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-top: 2.5rem;
}
.media-embed {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
  overflow: hidden;
  border-radius: var(--radius-outer);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 40px 80px -20px rgba(0,0,0,0.5);
}
.media-embed iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  border-radius: var(--radius-inner);
}
@media (max-width: 768px) {
  .media-grid { grid-template-columns: 1fr; }
}

/* Section patriotic accent images — positioned absolutely, blended subtly */
.section-patriot-img {
  position: absolute;
  pointer-events: none;
  object-fit: cover;
  z-index: 0;
}

/* Eagle in opportunity section — faded into top-right */
.patriot-eagle {
  top: 0; right: 0;
  width: 45%;
  height: 100%;
  opacity: 0.08;
  object-position: center top;
  mask-image: linear-gradient(to left, rgba(0,0,0,0.6) 0%, transparent 80%);
  -webkit-mask-image: linear-gradient(to left, rgba(0,0,0,0.6) 0%, transparent 80%);
}

/* F-35 jets in team section — bottom right accent */
.patriot-jets {
  bottom: 0; right: 0;
  width: 50%;
  height: 70%;
  opacity: 0.1;
  object-position: center bottom;
  mask-image: linear-gradient(to top left, rgba(0,0,0,0.5) 0%, transparent 70%);
  -webkit-mask-image: linear-gradient(to top left, rgba(0,0,0,0.5) 0%, transparent 70%);
}

/* Flag in why-now section — large, blended behind text */
.patriot-flag {
  top: 0; right: 0;
  width: 60%;
  height: 100%;
  opacity: 0.12;
  object-position: center center;
  mask-image: linear-gradient(to left, rgba(0,0,0,0.5) 0%, transparent 70%);
  -webkit-mask-image: linear-gradient(to left, rgba(0,0,0,0.5) 0%, transparent 70%);
}

/* Timeline watermark — covers full section, clearly visible */
.timeline-watermark {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.85;
  pointer-events: none;
}

/* Eagle seal in government header */
.wh-seal-img {
  width: clamp(60px, 10vw, 90px);
  height: auto;
  opacity: 0.7;
  margin-bottom: 0.5rem;
}

/* Red-white-blue accent stripe — patriotic divider */
.patriot-stripe {
  height: 4px;
  background: linear-gradient(90deg,
    #B31942 0%, #B31942 33%,
    #FFFFFF 33%, #FFFFFF 66%,
    #0A3161 66%, #0A3161 100%
  );
}

/* ─── TIMELINE ─── */
.timeline-section {
  position: relative;
  overflow: hidden;
  background: var(--off-white);
  padding: var(--section-pad) 0;
}
.timeline-section .section-h2 { color: var(--text-ink); }
.timeline-section > .container { position: relative; z-index: 1; }

.timeline {
  position: relative;
  margin-top: 3rem;
  padding-left: 2.5rem;
}
/* Vertical line */
.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--gold-muted), var(--gold), var(--brand-orange));
  border-radius: 2px;
}

.tl-item {
  position: relative;
  padding-bottom: 2.25rem;
}
.tl-item:last-child { padding-bottom: 0; }

/* Dot on the line */
.tl-item::before {
  content: '';
  position: absolute;
  left: -2.5rem;
  top: 0.25rem;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
  border: 2px solid var(--off-white);
  transform: translateX(-4px);
}
.tl-item-highlight::before {
  background: var(--brand-orange);
  width: 14px;
  height: 14px;
  transform: translateX(-6px);
  box-shadow: 0 0 0 4px rgba(224,120,32,0.2);
}

.tl-year {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--gold-muted);
  margin-bottom: 0.25rem;
}
.tl-item-highlight .tl-year { color: var(--brand-orange); }

.tl-title {
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--text-ink);
  margin-bottom: 0.25rem;
}
.tl-desc {
  font-size: 0.875rem;
  line-height: 1.6;
  color: var(--text-body);
  max-width: 50ch;
}

/* ─── COPPER DEFICIT CARD (in Why Now) ─── */
.why-deficit {
  margin: 3rem 0;
}
.why-deficit-core {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
}
.deficit-stat {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 5rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--brand-orange);
  line-height: 1;
}
.deficit-label {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
}
.deficit-desc {
  font-size: 0.875rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.45);
  max-width: 55ch;
}

/* ─── SOURCE REFERENCES (superscript in text) ─── */
.src-ref {
  font-size: 0.5em;
  font-weight: 600;
  color: rgba(255,255,255,0.3);
  vertical-align: super;
  margin-left: 0.15em;
}

/* Why Now — side-by-side deficit cards */
.why-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 3rem 0;
}
@media (max-width: 768px) {
  .why-cards { grid-template-columns: 1fr; }
}

/* Footer sources */
.footer-sources {
  padding-top: 2rem;
  margin-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.sources-list {
  list-style: none;
  counter-reset: src;
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  margin-top: 0.75rem;
}
.sources-list li {
  counter-increment: src;
  font-size: 0.625rem;
  line-height: 1.5;
  color: rgba(255,255,255,0.25);
}
.sources-list li::before {
  content: "[" counter(src) "] ";
  font-weight: 600;
  color: rgba(255,255,255,0.35);
}
.sources-list li a {
  color: rgba(255,255,255,0.35);
  text-decoration: underline;
  text-decoration-color: rgba(255,255,255,0.1);
  transition: color 0.3s var(--ease-out-expo);
}
.sources-list li a:hover { color: var(--brand-orange); }

/* ─── WHY NOW ─── */
.why-now {
  background: #04070d; /* fallback if video fails to load */
  padding: var(--section-pad) 0;
}

.why-statements {
  display: flex;
  flex-direction: column;
  margin: 3rem 0 4rem;
}

.why-statement {
  display: flex;
  align-items: baseline;
  gap: 1.75rem;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255,255,255,0.055);
  /* Slide from left on reveal */
  opacity: 0;
  transform: translateX(-22px);
  transition:
    opacity 0.85s var(--ease-out-expo),
    transform 0.85s var(--ease-out-expo);
}
.why-statement:last-child { border-bottom: 1px solid rgba(255,255,255,0.055); }
.why-statement.is-visible { opacity: 1; transform: translateX(0); }

.why-num {
  font-family: var(--font-display);
  font-size: 0.5625rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.18);
  flex-shrink: 0;
  min-width: 1.75rem;
}
.why-text {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.5vw, 2.125rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--white);
  line-height: 1.1;
}

.why-cta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.375rem;
}
.why-cta-p {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.4);
  max-width: 50ch;
  line-height: 1.75;
}

/* ─── FOOTER ─── */
/* ─── CEO QUOTE ─── */
.ceo-quote-section {
  background: var(--navy-deep);
  padding: clamp(3.5rem, 7vw, 6rem) var(--gutter);
  display: flex;
  justify-content: center;
}
.ceo-quote-inner {
  max-width: 640px;
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}
.ceo-quote-mark {
  font-family: Georgia, serif;
  font-size: 5rem;
  line-height: 0.6;
  color: rgba(255,255,255,0.25);
  user-select: none;
}
.ceo-quote-text {
  font-family: Georgia, 'Times New Roman', serif;
  font-style: italic;
  font-size: clamp(1.125rem, 2.5vw, 1.4rem);
  line-height: 1.65;
  color: #fff;
  margin: 0;
}
.ceo-quote-cite {
  font-family: var(--font-body);
  font-style: normal;
  font-size: 0.9375rem;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.02em;
}
.ceo-quote-title {
  font-weight: 600;
  color: #fff;
}
.ceo-quote-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
  max-width: 280px;
  margin-top: 0.5rem;
}
.ceo-quote-btn-primary {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0.75rem 1.5rem;
  border: 1.5px solid rgba(255,255,255,0.6);
  border-radius: 6px;
  background: transparent;
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.ceo-quote-btn-primary:hover {
  background: rgba(255,255,255,0.12);
  border-color: #fff;
}
.ceo-quote-btn-ghost {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0.625rem 1.5rem;
  background: transparent;
  color: rgba(255,255,255,0.8);
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: color 0.2s ease;
}
.ceo-quote-btn-ghost:hover {
  color: #fff;
}

.footer { background: var(--navy-dark); }
.footer-rule {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,0.28), transparent);
}
.footer-inner { padding-top: 3.5rem; padding-bottom: 2rem; }

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1.75fr;
  gap: 3rem;
  margin-bottom: 2.75rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.footer-logo {
  display: flex;
  align-items: baseline;
  gap: 0.375rem;
  margin-bottom: 1.375rem;
}
.footer-logo-name {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  color: var(--white);
}
.footer-logo-corp {
  font-size: 0.6875rem;
  font-weight: 300;
  color: rgba(255,255,255,0.3);
}

.ticker-block { display: flex; flex-direction: column; gap: 0.5rem; }
.ticker-row { display: flex; align-items: baseline; gap: 0.5rem; list-style: none; }
.ticker-ex {
  font-size: 0.5625rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.28);
  min-width: 44px;
}
.ticker-sym {
  font-family: var(--font-display);
  font-size: 0.9375rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  color: var(--gold);
}

.footer-col-heading {
  font-size: 0.5625rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.28);
  margin-bottom: 1rem;
}
.footer-link-list { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-link-list a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.45);
  transition: color 0.3s var(--ease-out-expo);
}
.footer-link-list a:hover { color: var(--white); }

.footer-disclaimer {
  font-size: 0.6875rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.28);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-copy, .footer-tagline {
  font-size: 0.6875rem;
  color: rgba(255,255,255,0.18);
  letter-spacing: 0.03em;
}

/* ─── HERO VIDEO BACKGROUND ─── */
/* Mobile hero video fallback */
.hero-mobile-video { display: none; }

/* Mobile YouTube Shorts background — hidden on desktop */
.hero-yt-mobile {
  display: none;
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.hero-yt-iframe-mobile {
  position: absolute;
  top: 50%;
  left: 50%;
  /* Shorts are 9:16 — scale to cover full viewport height */
  height: 100vh;
  width: calc(100vh * 9 / 16);
  min-width: 100vw;
  min-height: calc(100vw * 16 / 9);
  transform: translate(-50%, -50%);
  border: none;
  opacity: 0.55;
  pointer-events: none;
}

/* Hero YouTube background embed */
.hero-yt-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.hero-yt-iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  /* Scale to always cover — 16:9 ratio */
  width: 100vw;
  height: 56.25vw; /* 100 / (16/9) */
  min-height: 100vh;
  min-width: 177.78vh; /* 100 * (16/9) */
  transform: translate(-50%, -50%);
  border: none;
  opacity: 0.55;
  pointer-events: none;
}

/* Inward edge vignette — all 4 edges bleed into navy-dark (#080f1a) */
/* Uses two perpendicular linear-gradients via a pseudo-transparent layering trick */
.hero-edge-vignette {
  position: absolute;
  inset: 0;
  pointer-events: none;
  /* Top+bottom fade */
  background:
    linear-gradient(to bottom,
      var(--navy-dark) 0%,
      transparent 18%,
      transparent 82%,
      var(--navy-dark) 100%
    );
}
/* Left+right fade via ::after since we can't stack two backgrounds that both use transparency reliably without a second element */
.hero-edge-vignette::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right,
      var(--navy-dark) 0%,
      transparent 14%,
      transparent 86%,
      var(--navy-dark) 100%
    );
}

/* ─── SECTION VIDEO BACKGROUNDS ─── */
/* Reusable video bg + overlay for Opportunity, Team, Why Now sections */
.opportunity,
.team,
.why-now {
  position: relative;
  overflow: hidden;
}

.section-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  opacity: 0.6;
  pointer-events: none;
}

.section-video-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom,
      rgba(8, 15, 26, 0.85) 0%,
      rgba(8, 15, 26, 0.5) 40%,
      rgba(8, 15, 26, 0.5) 60%,
      rgba(8, 15, 26, 0.85) 100%
    );
  pointer-events: none;
}

/* Ensure all text content sits above video layers */
.opportunity > .container,
.team > .container,
.why-now > .container {
  position: relative;
  z-index: 1;
}

/* Opportunity section — needs dark text override since it was light bg before */
.opportunity {
  background: var(--navy-deep); /* fallback */
}
.opportunity .section-eyebrow { color: var(--gold-light); }
.opportunity .section-h2 { color: var(--white); }
.opportunity .section-p { color: rgba(255,255,255,0.55); }

.wh-header-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  opacity: 0.12;
  pointer-events: none;
}
.wh-header-overlay {
  position: absolute;
  inset: 0;
  background: rgba(27, 40, 56, 0.75);
  pointer-events: none;
}
.wh-header-inner {
  position: relative;
  z-index: 1;
}
.wh-logo-img {
  width: clamp(180px, 28vw, 320px);
  height: auto;
  margin-bottom: 0.75rem;
  opacity: 0.6;
}

/* ─── PROJECT FRAME ANIMATION ─── */
/* Animation is now driven by virtual progress, not scroll position */
.proj-scroll-outer {
  position: relative;
}

.project {
  /* No sticky — scroll is locked via JS while animation plays */
}

/* Canvas fills the entire left panel — frames drawn by JS */
.proj-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}

/* Dark overlay — keeps white text readable over the geological animation */
.proj-canvas-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right,
      rgba(8, 15, 26, 0.72) 0%,
      rgba(8, 15, 26, 0.45) 60%,
      rgba(8, 15, 26, 0.28) 100%
    );
  pointer-events: none;
}

/* Project link */
.proj-link {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  margin-top: 1.75rem;
  padding: 0.625rem 0.625rem 0.625rem 1.25rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 999px;
  transition: transform 0.5s var(--ease-out-expo), background 0.3s var(--ease-out-expo);
  will-change: transform;
}
.proj-link:hover {
  transform: translateY(-2px);
  background: rgba(255,255,255,0.1);
}
.proj-link-label {
  font-family: var(--font-display);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--white);
}
.proj-link .btn-icon-circle {
  background: rgba(255,255,255,0.1);
  color: var(--white);
}

/* Frame progress indicator — shows auto-loop progress */
.proj-frame-indicator {
  margin-top: 2rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.proj-frame-label {
  font-size: 0.5rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  white-space: nowrap;
}
.proj-frame-track {
  flex: 1;
  height: 1px;
  background: rgba(255,255,255,0.1);
  border-radius: 1px;
  overflow: hidden;
}
.proj-frame-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--gold-muted), var(--gold));
  border-radius: 1px;
  transition: width 0.06s linear;
}
.proj-frame-num {
  font-family: var(--font-display);
  font-size: 0.5625rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--gold);
  white-space: nowrap;
}


/* ─── RESPONSIVE ─── */

/* Tablet — mid-range collapse */
@media (max-width: 1100px) {
  .hero-inner { grid-template-columns: 1fr 300px; gap: 2rem; }
  .bento-grid { grid-template-columns: repeat(2, 1fr); }
  .bento-span-2 { grid-column: span 2; }
  .track-record { grid-template-columns: 1fr; gap: 1.25rem; }
  .track-sep { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-col-legal { grid-column: span 2; }
  .wh-nav { gap: 1rem; }
  .wh-logo-img { width: clamp(140px, 22vw, 240px); }
}

/* Mobile — strict single-column collapse */
@media (max-width: 768px) {
  /* ── TradingView strip — show on mobile, nav sits below it ── */
  .tv-strip .tradingview-widget-container__widget { height: 46px; }
  .nav-wrapper { top: 58px; }
  .progress-bar { top: 58px; }
  /* Hide desktop YT on mobile, show local video instead */
  .hero-yt-wrap { display: none; }
  .hero-mobile-video { display: block; }

  /* ── Nav ── */
  .nav-links, .nav-cta-pill { display: none; }
  .hamburger { display: flex; margin-left: auto; flex-shrink: 0; }
  .nav-island {
    max-width: calc(100% - 2 * var(--gutter));
    padding: 0.5rem 0.625rem 0.5rem 0.875rem;
  }
  .nav-logo-img { width: 90px; }
  .logo-ticker-badge { display: none; } /* hide long ticker on mobile — it's in eyebrow tag */

  /* ── Hero ── */
  .hero-inner { grid-template-columns: 1fr; padding-top: calc(var(--section-pad) + 6rem); gap: 0; }
  .hero-h1 { font-size: clamp(2.25rem, 9vw, 3.5rem); }
  .hero-sub { font-size: 0.9375rem; }
  .hero-card-wrap { display: none; }
  .hero-scroll-indicator { display: none; }
  .hero-br { display: none; } /* remove forced line breaks on mobile */

  /* ── Opportunity / Bento ── */
  .bento-grid { grid-template-columns: 1fr 1fr; gap: 0.75rem; }
  .bento-span-2 { grid-column: span 2; }
  .bento-value { font-size: clamp(1.625rem, 7vw, 2.25rem); }
  .bento-desc { font-size: 0.75rem; }

  /* ── White House / Government ── */
  .wh-nav { display: none; }
  .wh-logo-img { width: clamp(120px, 50vw, 220px); }
  .wh-title { font-size: 0.8125rem; letter-spacing: 0.25em; }
  .wh-subtitle { font-size: 0.4375rem; }
  .wh-heading { font-size: clamp(1.375rem, 6vw, 2rem); }
  .wh-blockquote p { font-size: 1.0625rem; }
  .wh-letter { padding-left: 1.75rem; }
  .wh-quote-mark { font-size: 2.5rem; }
  .wh-fed-heading { font-size: 1.125rem; }
  .wh-badges { gap: 0.375rem; }
  .wh-badge { font-size: 0.5rem; padding: 0.25rem 0.625rem; }
  .wh-container { padding: 0 var(--gutter); }

  /* ── Project ── */
  .project-split { grid-template-columns: 1fr; }
  .project-left { min-height: 60vw; }
  .project-left, .project-right { padding: var(--section-pad) var(--gutter); }
  .project-left-inner, .project-right-inner { max-width: 100%; }
  .proj-frame-indicator { display: none; }

  /* ── Team ── */
  .ceo-card .card-core { grid-template-columns: 1fr; gap: 1.375rem; }
  .ceo-brand { padding: 1rem; }
  .ceo-logo-img { width: 90px; }
  .quote-mark { font-size: 2.5rem; }
  .team-statement { font-size: 0.9375rem; }

  /* ── Why Now ── */
  .why-text { font-size: clamp(1.125rem, 5.5vw, 1.625rem); }
  .why-statement { gap: 1rem; padding: 1rem 0; }
  .why-num { min-width: 1.25rem; }
  .deficit-stat { font-size: clamp(2.5rem, 12vw, 4rem); }
  .deficit-label { font-size: 0.9375rem; }
  .deficit-desc { font-size: 0.8125rem; }

  /* Timeline mobile */
  .timeline { padding-left: 1.75rem; }
  .tl-item::before { left: -1.75rem; }
  .tl-title { font-size: 0.9375rem; }
  .tl-desc { font-size: 0.8125rem; }

  /* ── Footer ── */
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-col-legal { grid-column: span 1; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }

  /* ── Section videos — slightly lighter overlay so video is more visible ── */
  .section-video-overlay {
    background:
      linear-gradient(to bottom,
        rgba(8, 15, 26, 0.78) 0%,
        rgba(8, 15, 26, 0.45) 40%,
        rgba(8, 15, 26, 0.45) 60%,
        rgba(8, 15, 26, 0.78) 100%
      );
  }
  /* Keep videos prominent on mobile */
  .section-video { opacity: 0.7; }
  /* Hide YT iframe on mobile — WH photo CSS bg shows instead */
  /* Hide YT iframe on mobile — dark navy gradient shows instead */
  .hero-yt-wrap { display: none; }

  /* WH header overlay — slightly stronger on mobile */
  .wh-header-overlay {
    background: rgba(15, 25, 40, 0.72);
  }

  /* ── Section padding reduction on mobile ── */
  :root { --section-pad: clamp(48px, 8vw, 80px); }
}

/* Small phones — full single column */
@media (max-width: 480px) {
  .bento-grid { grid-template-columns: 1fr; }
  .bento-span-2 { grid-column: span 1; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .btn-ghost-pill, .btn-primary-pill { width: 100%; justify-content: center; }
  .wh-logo-img { width: 60vw; }
  .wh-heading { font-size: clamp(1.25rem, 5.5vw, 1.625rem); }
  .why-cta .btn-primary-pill.btn-large { padding: 0.875rem 0.75rem 0.875rem 1.25rem; font-size: 0.75rem; }
  .resource-number { font-size: clamp(1.5rem, 8vw, 2rem); }
  .resource-grade { font-size: 0.8125rem; }
}

/* ─── VIZSLA BRAND IDENTITY — Apply real brand orange to key UI elements ─── */
/* Orange (#E07820) = V-chevron mark from vizsla-copper-corp-2024.png logo */
/* Gold retained for financial/premium data highlights only */

/* Progress bar */
.progress-bar {
  background: linear-gradient(90deg, var(--brand-orange-muted), var(--brand-orange), var(--brand-orange-light));
}

/* Section eyebrows */
.section-eyebrow,
.section-eyebrow.light { color: var(--brand-orange); }

/* Hero eyebrow tag — strong backdrop for visibility over video */
.eyebrow-tag {
  color: var(--brand-orange);
  background: rgba(8, 15, 26, 0.65);
  border-color: rgba(224,120,32,0.35);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.eyebrow-pulse {
  background: var(--brand-orange);
  animation: pulse-glow-orange 2.2s var(--ease-out-expo) infinite;
}
@keyframes pulse-glow-orange {
  0%, 100% { opacity: 1; transform: scale(1); box-shadow: 0 0 0 0 rgba(224,120,32,0.4); }
  50%       { opacity: 0.75; transform: scale(1.1); box-shadow: 0 0 0 5px rgba(224,120,32,0); }
}

/* Hero h1 italic accent word — the brand's primary color moment */
.gold-italic { color: var(--brand-orange); }

/* Primary CTA buttons */
.btn-primary-pill { background: var(--brand-orange); color: var(--white); }
.btn-primary-pill:hover { box-shadow: 0 12px 36px -8px rgba(224,120,32,0.55); }

/* Nav logo pill (actual PNG shown on subtle white bg for colour fidelity) */
.nav-logo-img {
  height: 28px;
  width: auto;
  background: rgba(255,255,255,0.96);
  border-radius: 5px;
  padding: 3px 9px;
  display: block;
}
.logo-ticker-badge {
  font-family: var(--font-display);
  font-size: 0.5rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--brand-orange);
  padding: 0.2rem 0.6rem;
  border: 1px solid rgba(224,120,32,0.32);
  border-radius: 999px;
  background: rgba(224,120,32,0.07);
  flex-shrink: 0;
  white-space: nowrap;
}

/* Nav CTA pill */
.nav-cta-pill { background: var(--brand-orange); color: var(--white); }
.nav-cta-pill:hover { box-shadow: 0 6px 20px -4px rgba(224,120,32,0.5); }

/* Mobile overlay CTA */
.overlay-cta { background: var(--brand-orange); }
.overlay-ticker { color: var(--brand-orange); }

/* Hero credential card dots */
.badge-dot { background: var(--brand-orange); }

/* Scroll indicator thumb */
.scroll-thumb { background: linear-gradient(to bottom, transparent, var(--brand-orange)); }

/* Why Now gold-text spans → orange in that section */
.why-now .gold-text { color: var(--brand-orange); }
.why-now .section-eyebrow { color: var(--brand-orange); }

/* Project frame indicator */
.proj-frame-fill { background: linear-gradient(90deg, var(--brand-orange-muted), var(--brand-orange)); }
.proj-frame-num  { color: var(--brand-orange); }

/* Footer logo */
.footer-logo-img {
  height: 42px;
  width: auto;
  /* Invert for dark footer — clean white silhouette preserving logo shape */
  filter: brightness(0) invert(1);
  opacity: 0.85;
}

/* White House section — accent overrides */
.wh-emblem, .wh-fed-star { color: var(--brand-orange); }
.wh-eyebrow, .wh-fed-eyebrow { color: var(--brand-orange); }
.wh-quote-mark { color: var(--brand-orange); }
.wh-accent-rule { background: linear-gradient(90deg, transparent 5%, var(--brand-orange) 50%, transparent 95%); }

/* Location list dots */
.loc-dot { background: var(--brand-orange); }

/* Mineral list dots */
.min-dot { background: var(--brand-green); }

/* ─── END BRAND IDENTITY ─── */

/* Reduced motion — animate.css only transforms and opacity */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .animate-reveal,
  .why-statement { opacity: 1 !important; transform: none !important; }

  /* Project: show first frame statically */
}
