/* ═══════════════════════════════════════════
   AMERICAN ENERGY PIPELINE — $AEP
   Design System v2 — Image-Heavy Trump-Forward
   ═══════════════════════════════════════════ */

:root {
  --bg-deep:    #07090d;
  --bg-base:    #0a0e14;
  --bg-card:    #0f1318;
  --bg-card-2:  #141a22;

  --amber-500:  #F59E0B;
  --amber-400:  #FBBF24;
  --amber-300:  #FCD34D;
  --amber-600:  #d97706;
  --amber-700:  #b45309;

  --red-500:    #EF4444;
  --red-600:    #DC2626;

  --text-100:   #f8fafc;
  --text-200:   #e2e8f0;
  --text-300:   #94a3b8;
  --text-400:   #64748b;

  --border:     rgba(245, 158, 11, 0.12);
  --border-2:   rgba(245, 158, 11, 0.22);
  --glow:       rgba(245, 158, 11, 0.08);

  --font-display: 'Bebas Neue', 'Impact', sans-serif;
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --radius:     16px;
  --radius-sm:  10px;
  --radius-lg:  24px;
  --radius-pill: 999px;

  --shadow:     0 20px 60px rgba(0,0,0,0.4);

  --shell-max:  1140px;

  color-scheme: dark;
}

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

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text-200);
  background: var(--bg-deep);
  overflow-x: hidden;
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
ul { list-style: none; padding: 0; margin: 0; }
h1, h2, h3, h4, p { margin: 0; }

.shell {
  width: min(var(--shell-max), calc(100% - 2.5rem));
  margin: 0 auto;
  position: relative;
  z-index: 2;
}


/* ═══════════════════════════════════════════
   TICKER
   ═══════════════════════════════════════════ */

.ticker {
  position: sticky;
  top: 0;
  z-index: 100;
  overflow: hidden;
  background: linear-gradient(90deg, #d97706, #F59E0B 40%, #FBBF24 60%, #d97706);
  border-bottom: 1px solid rgba(0,0,0,0.15);
}

.ticker-track {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 0.6rem 1rem;
  min-width: max-content;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #0a0e14;
  animation: ticker-slide 30s linear infinite;
}

.ticker-dot { font-size: 0.45rem; opacity: 0.5; }

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


/* ═══════════════════════════════════════════
   HEADER
   ═══════════════════════════════════════════ */

.header {
  position: sticky;
  top: 2rem;
  z-index: 90;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem clamp(1rem, 3vw, 2.5rem);
  background: rgba(10, 14, 20, 0.5);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: background 0.3s, box-shadow 0.3s;
}

.header.scrolled {
  background: rgba(10, 14, 20, 0.92);
  border-color: var(--border);
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
}

.logo { display: flex; align-items: center; gap: 0.75rem; }
.logo-img { height: 48px; width: auto; display: block; object-fit: contain; }

.menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 8px;
  background: rgba(255,255,255,0.05);
  cursor: pointer;
}
.menu-btn span { display: block; width: 22px; height: 2px; background: white; border-radius: 2px; transition: 0.3s; }

.nav { display: flex; align-items: center; gap: 1.6rem; }
.nav a { font-size: 0.76rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-300); transition: color 0.2s; }
.nav a:hover { color: var(--text-100); }

.nav-cta {
  padding: 0.6rem 1.2rem !important;
  border-radius: var(--radius-pill) !important;
  background: linear-gradient(135deg, rgba(245,158,11,0.2), rgba(217,119,6,0.15)) !important;
  border: 1px solid var(--border-2) !important;
  color: var(--amber-400) !important;
}
.nav-cta:hover { background: linear-gradient(135deg, rgba(245,158,11,0.3), rgba(217,119,6,0.25)) !important; }


/* ═══════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.6rem;
  border: none;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn:hover { transform: translateY(-2px); }

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 0%, rgba(255,255,255,0.2) 50%, transparent 100%);
  transform: translateX(-120%);
  transition: transform 0.5s ease;
}
.btn:hover::after { transform: translateX(120%); }

.btn-primary {
  color: #0a0e14;
  background: linear-gradient(135deg, #FBBF24, #d97706);
  box-shadow: 0 12px 32px rgba(245,158,11,0.25);
}
.btn-primary:hover { box-shadow: 0 16px 40px rgba(245,158,11,0.4); }

.btn-ghost {
  color: var(--text-200);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
}
.btn-ghost:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.2); }

.btn-lg { padding: 1rem 2.2rem; font-size: 0.88rem; }


/* ═══════════════════════════════════════════
   KICKER
   ═══════════════════════════════════════════ */

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.9rem;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border);
  background: var(--glow);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--amber-400);
}


/* ═══════════════════════════════════════════
   HERO — Image-Heavy
   ═══════════════════════════════════════════ */

.hero {
  position: relative;
  padding: clamp(5rem, 12vw, 9rem) 0 0;
  overflow: hidden;
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Full-bleed background image */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(7,9,13,0.92) 0%, rgba(7,9,13,0.7) 40%, rgba(7,9,13,0.4) 100%),
    linear-gradient(180deg, rgba(7,9,13,0.3) 0%, rgba(7,9,13,0.8) 100%);
}

/* Animated grid over everything */
.hero-overlay::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(245,158,11,0.04) 1px, transparent 1px),
    linear-gradient(rgba(245,158,11,0.02) 1px, transparent 1px);
  background-size: 100px 100px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,0.5) 0%, transparent 80%);
  -webkit-mask-image: linear-gradient(180deg, rgba(0,0,0,0.5) 0%, transparent 80%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-content h1 {
  margin-top: 1.2rem;
  font-family: var(--font-display);
  font-size: clamp(3.6rem, 9vw, 7rem);
  line-height: 0.95;
  letter-spacing: 0.03em;
  color: var(--text-100);
  text-shadow: 0 4px 40px rgba(0,0,0,0.5);
}

.hero-sub {
  margin-top: 1.2rem;
  max-width: 48ch;
  font-size: 1.08rem;
  line-height: 1.7;
  color: var(--text-200);
  text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}

.hero-btns { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2rem; }

/* Trump portrait card */
.hero-visual { display: flex; justify-content: center; }

.hero-portrait {
  position: relative;
  width: clamp(280px, 30vw, 400px);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 2px solid var(--border-2);
  box-shadow: 0 0 80px rgba(245,158,11,0.1), 0 30px 80px rgba(0,0,0,0.5);
  animation: float-card 6s ease-in-out infinite;
}

.hero-portrait-img {
  width: 100%;
  height: auto;
  display: block;
}

.hero-portrait-badge {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.2rem;
  background: linear-gradient(180deg, transparent, rgba(7,9,13,0.95));
  text-align: center;
}

.hero-portrait-badge span {
  display: block;
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--amber-400);
  letter-spacing: 0.1em;
}

.hero-portrait-badge strong {
  display: block;
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-300);
  margin-top: 0.2rem;
}

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


/* ═══════════════════════════════════════════
   STATS BAR
   ═══════════════════════════════════════════ */

.stats-bar {
  margin-top: auto;
  padding: 2rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(7,9,13,0.85);
  backdrop-filter: blur(12px);
  position: relative;
  z-index: 2;
}

.stats-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

.stat { text-align: center; }

.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--amber-400);
}

.stat span {
  display: block;
  margin-top: 0.3rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-400);
}


/* ═══════════════════════════════════════════
   SECTIONS (shared)
   ═══════════════════════════════════════════ */

.section {
  position: relative;
  padding: clamp(5rem, 10vw, 8rem) 0;
  overflow: hidden;
}

/* Background image container for sections */
.section-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.section-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.15;
}

.section-crisis .section-bg img { opacity: 0.1; }

.section-crisis::after,
.section-solution::after,
.section-roadmap::after,
.section-final::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.section-crisis::after {
  background: linear-gradient(180deg, rgba(7,9,13,0.85) 0%, rgba(7,9,13,0.95) 100%);
}

.section-solution::after {
  background: linear-gradient(180deg, rgba(7,9,13,0.88) 0%, rgba(7,9,13,0.95) 100%);
}

.section-roadmap::after {
  background: linear-gradient(180deg, rgba(7,9,13,0.82) 0%, rgba(7,9,13,0.95) 100%);
}

.section-final::after {
  background: linear-gradient(180deg, rgba(7,9,13,0.85) 0%, rgba(7,9,13,0.92) 100%);
}

.section-dark {
  background:
    radial-gradient(ellipse at top right, rgba(245,158,11,0.04), transparent 50%),
    var(--bg-deep);
}

.section-head {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3.5rem;
}

.section-head h2 {
  margin-top: 1rem;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  line-height: 1;
  letter-spacing: 0.02em;
  color: var(--text-100);
}

.section-sub {
  margin-top: 1rem;
  font-size: 1.02rem;
  line-height: 1.7;
  color: var(--text-300);
}


/* ═══════════════════════════════════════════
   CRISIS
   ═══════════════════════════════════════════ */

.crisis-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }

.crisis-card {
  padding: 2rem 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: linear-gradient(160deg, rgba(20,26,34,0.9), rgba(15,19,24,0.95));
  backdrop-filter: blur(12px);
  text-align: center;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.crisis-card:hover { transform: translateY(-4px); border-color: var(--border-2); box-shadow: 0 20px 50px rgba(0,0,0,0.3); }

.crisis-icon { font-size: 2.2rem; margin-bottom: 1rem; }

.crisis-val {
  display: block;
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: var(--amber-400);
}

.crisis-card h3 {
  margin-top: 0.5rem;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-100);
}

.crisis-card p { margin-top: 0.6rem; font-size: 0.9rem; line-height: 1.6; color: var(--text-400); }


/* ═══════════════════════════════════════════
   TRUMP BANNER (full-width photo break)
   ═══════════════════════════════════════════ */

.section-banner {
  position: relative;
  padding: 0;
  min-height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.banner-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.banner-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}

.banner-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(7,9,13,0.7) 0%, rgba(7,9,13,0.3) 50%, rgba(7,9,13,0.7) 100%),
    linear-gradient(180deg, rgba(7,9,13,0.4) 0%, rgba(7,9,13,0.6) 100%);
}

.banner-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 5rem 1rem;
}

.banner-content h2 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  line-height: 1;
  color: var(--text-100);
  text-shadow: 0 4px 40px rgba(0,0,0,0.6);
}

.banner-content p {
  margin-top: 1rem;
  font-size: 1.1rem;
  color: var(--text-200);
  text-shadow: 0 2px 12px rgba(0,0,0,0.5);
  letter-spacing: 0.02em;
}


/* ═══════════════════════════════════════════
   SOLUTION + inline image
   ═══════════════════════════════════════════ */

.solution-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }

.sol-card {
  display: flex;
  gap: 1.2rem;
  padding: 1.8rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: linear-gradient(160deg, rgba(20,26,34,0.88), rgba(15,19,24,0.95));
  backdrop-filter: blur(8px);
  transition: transform 0.3s, border-color 0.3s;
}
.sol-card:hover { transform: translateY(-3px); border-color: var(--border-2); }

.sol-number {
  flex-shrink: 0;
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(245,158,11,0.15), rgba(217,119,6,0.08));
  border: 1px solid var(--border);
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--amber-400);
}

.sol-card h3 { font-size: 1.05rem; font-weight: 800; letter-spacing: 0.04em; text-transform: uppercase; color: var(--text-100); }
.sol-card p { margin-top: 0.4rem; font-size: 0.9rem; line-height: 1.6; color: var(--text-400); }

/* Inline pipeline photo */
.solution-image {
  margin-top: 2.5rem;
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-2);
  box-shadow: var(--shadow);
}

.solution-image img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.solution-image-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem 1.5rem 1.5rem;
  background: linear-gradient(180deg, transparent, rgba(7,9,13,0.95));
}

.solution-image-caption span {
  display: block;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--amber-400);
}

.solution-image-caption strong {
  display: block;
  margin-top: 0.3rem;
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--text-100);
}


/* ═══════════════════════════════════════════
   VICTORY MOSAIC (image cards like IRT)
   ═══════════════════════════════════════════ */

.section-victory {
  padding: clamp(5rem, 10vw, 8rem) 0;
  background:
    radial-gradient(ellipse at bottom, rgba(245,158,11,0.04), transparent 50%),
    var(--bg-deep);
}

.victory-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 1.25rem;
}

.v-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  min-height: 280px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.v-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.4);
}

.v-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

.v-card-big {
  grid-row: span 2;
  min-height: 560px;
}

.v-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem 1.5rem;
  background: linear-gradient(180deg, transparent 0%, rgba(7,9,13,0.92) 100%);
  z-index: 1;
}

.v-card-label {
  display: inline-block;
  padding: 0.3rem 0.65rem;
  border-radius: var(--radius-pill);
  background: rgba(245,158,11,0.15);
  border: 1px solid var(--border);
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--amber-400);
}

.v-card h3 {
  margin-top: 0.6rem;
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--text-100);
  line-height: 1.1;
}

.v-card-big h3 { font-size: 2rem; }


/* ═══════════════════════════════════════════
   DIGITAL / RWA (split)
   ═══════════════════════════════════════════ */

.split-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3rem;
  align-items: center;
}

.split-copy .kicker { margin-bottom: 1rem; }

.split-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  line-height: 1;
  color: var(--text-100);
}

.split-copy p { margin-top: 1rem; font-size: 0.98rem; line-height: 1.7; color: var(--text-300); }

.split-features { display: flex; flex-direction: column; gap: 0.75rem; margin-top: 1.5rem; }

.feature { display: flex; align-items: center; gap: 0.75rem; font-size: 0.9rem; font-weight: 600; color: var(--text-200); }

.feature-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--amber-500);
  box-shadow: 0 0 12px rgba(245,158,11,0.4);
  flex-shrink: 0;
}

.split-btns { margin-top: 2rem; }

.split-visual { display: flex; justify-content: center; }

.rwa-card {
  width: 100%;
  max-width: 360px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-2);
  background: linear-gradient(160deg, var(--bg-card-2), var(--bg-deep));
  overflow: hidden;
  box-shadow: 0 0 60px rgba(245,158,11,0.06), var(--shadow);
}

.rwa-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--border);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-400);
}

.rwa-badge {
  padding: 0.2rem 0.5rem;
  border-radius: var(--radius-pill);
  background: rgba(34, 197, 94, 0.15);
  color: #22c55e;
  font-size: 0.6rem;
  animation: badge-pulse 2s ease-in-out infinite;
}

@keyframes badge-pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.6; } }

.rwa-main { padding: 2rem 1.5rem; text-align: center; }
.rwa-label { font-size: 0.68rem; font-weight: 800; letter-spacing: 0.25em; text-transform: uppercase; color: var(--text-400); }

.rwa-value {
  margin-top: 0.5rem;
  font-family: var(--font-display);
  font-size: 3.5rem;
  color: var(--amber-400);
}

.rwa-sub { margin-top: 0.3rem; font-size: 0.82rem; color: var(--text-400); }

.rwa-footer { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid var(--border); }

.rwa-stat { padding: 1rem 1.5rem; text-align: center; }
.rwa-stat:first-child { border-right: 1px solid var(--border); }
.rwa-stat span { display: block; font-size: 0.6rem; font-weight: 800; letter-spacing: 0.25em; text-transform: uppercase; color: var(--text-400); }
.rwa-stat strong { display: block; margin-top: 0.3rem; font-family: var(--font-display); font-size: 1.3rem; color: var(--text-100); }


/* ═══════════════════════════════════════════
   BUY SECTION — with Trump image
   ═══════════════════════════════════════════ */

.section-buy {
  background:
    radial-gradient(ellipse at center, rgba(245,158,11,0.06) 0%, transparent 60%),
    linear-gradient(180deg, var(--bg-deep) 0%, #0d1117 100%);
}

.buy-panel {
  display: grid;
  grid-template-columns: 0.45fr 1fr;
  gap: 0;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-2);
  background: linear-gradient(160deg, var(--bg-card-2), var(--bg-card));
  overflow: hidden;
  box-shadow: 0 0 80px rgba(245,158,11,0.05), var(--shadow);
}

/* Trump image in buy panel */
.buy-leader {
  position: relative;
  min-height: 400px;
}

.buy-leader img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.buy-leader-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
  background: linear-gradient(180deg, transparent 40%, rgba(7,9,13,0.9) 100%);
}

.buy-leader-overlay h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--text-100);
  line-height: 1;
}

.buy-main { padding: 2rem; }

.buy-header h3 { font-family: var(--font-display); font-size: 1.8rem; color: var(--text-100); }
.buy-header p { margin-top: 0.5rem; font-size: 0.92rem; color: var(--text-400); }

.ca-box {
  margin-top: 1.5rem;
  padding: 1rem 1.2rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: rgba(0,0,0,0.3);
}

.ca-label { display: block; margin-bottom: 0.5rem; font-size: 0.62rem; font-weight: 800; letter-spacing: 0.25em; text-transform: uppercase; color: var(--amber-500); }
.ca-row { display: flex; align-items: center; gap: 0.75rem; }
.ca-row code { flex: 1; font-family: 'Consolas', monospace; font-size: 0.88rem; color: var(--text-200); overflow-wrap: anywhere; word-break: break-all; }

.btn-copy {
  flex-shrink: 0;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border-2);
  background: rgba(245,158,11,0.1);
  color: var(--amber-400);
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s;
}
.btn-copy:hover { background: rgba(245,158,11,0.2); }

.buy-btns { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 1.5rem; }

.buy-steps {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.step { display: flex; gap: 1rem; align-items: flex-start; }

.step-num {
  flex-shrink: 0;
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(245,158,11,0.2), rgba(217,119,6,0.1));
  border: 1px solid var(--border);
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--amber-400);
}

.step h4 { font-size: 0.88rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.04em; color: var(--text-100); }
.step p { margin-top: 0.15rem; font-size: 0.82rem; line-height: 1.5; color: var(--text-400); }


/* ═══════════════════════════════════════════
   ROADMAP
   ═══════════════════════════════════════════ */

.section-roadmap {
  background: var(--bg-deep);
}

.roadmap-track { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }

.rm-card {
  padding: 2rem 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: linear-gradient(160deg, rgba(20,26,34,0.9), rgba(15,19,24,0.95));
  backdrop-filter: blur(8px);
  transition: transform 0.3s, border-color 0.3s;
}
.rm-card:hover { transform: translateY(-3px); border-color: var(--border-2); }

.rm-phase {
  display: inline-block;
  padding: 0.3rem 0.7rem;
  border-radius: var(--radius-pill);
  background: linear-gradient(135deg, rgba(245,158,11,0.15), rgba(217,119,6,0.08));
  border: 1px solid var(--border);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--amber-400);
}

.rm-card h3 { margin-top: 1rem; font-family: var(--font-display); font-size: 1.6rem; color: var(--text-100); }

.rm-card ul { margin-top: 1rem; display: flex; flex-direction: column; gap: 0.5rem; }

.rm-card li {
  position: relative;
  padding-left: 1.2rem;
  font-size: 0.88rem;
  color: var(--text-300);
  line-height: 1.5;
}

.rm-card li::before {
  content: '';
  position: absolute;
  left: 0; top: 0.5em;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--amber-600);
}


/* ═══════════════════════════════════════════
   FINAL CTA — with bg image
   ═══════════════════════════════════════════ */

.section-final {
  border-top: 1px solid var(--border);
}

.section-final .section-bg img {
  opacity: 0.08;
  filter: blur(2px);
}

.final-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.final-content h2 {
  margin-top: 1rem;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  line-height: 1;
  color: var(--text-100);
}

.final-content p {
  margin-top: 1rem;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-300);
}

.final-btns { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; margin-top: 2rem; }


/* ═══════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════ */

.footer {
  padding: 3.5rem 0 2rem;
  border-top: 1px solid var(--border);
  background: var(--bg-deep);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  justify-items: center;
  text-align: center;
}

.footer-brand-area { display: flex; flex-direction: column; align-items: center; gap: 0.5rem; }
.footer-logo { height: 110px; width: auto; display: block; object-fit: contain; margin-bottom: 0.5rem; }

.footer-brand-area p { font-size: 0.88rem; color: var(--text-400); max-width: 46ch; }


/* ═══════════════════════════════════════════
   REVEAL
   ═══════════════════════════════════════════ */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(.16,1,.3,1), transform 0.7s cubic-bezier(.16,1,.3,1);
}

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


/* ═══════════════════════════════════════════
   COPY TOAST
   ═══════════════════════════════════════════ */

.copy-toast {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(120%);
  padding: 0.85rem 1.5rem;
  border-radius: var(--radius-pill);
  background: var(--amber-600);
  color: #0a0e14;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  box-shadow: 0 12px 32px rgba(245,158,11,0.3);
  opacity: 0;
  transition: transform 0.4s cubic-bezier(.16,1,.3,1), opacity 0.4s;
  z-index: 200;
  pointer-events: none;
}

.copy-toast.is-visible { opacity: 1; transform: translateX(-50%) translateY(0); }


/* ═══════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════ */

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-content h1 { margin-left: auto; margin-right: auto; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-btns { justify-content: center; }
  .hero-portrait { width: 260px; }

  .stats-row { grid-template-columns: repeat(2, 1fr); gap: 1.5rem 1rem; }
  .crisis-grid { grid-template-columns: 1fr; }
  .solution-grid { grid-template-columns: 1fr; }
  .split-layout { grid-template-columns: 1fr; }
  .buy-panel { grid-template-columns: 1fr; }
  .buy-leader { min-height: 240px; }
  .roadmap-track { grid-template-columns: 1fr; }
  .victory-grid { grid-template-columns: 1fr; }
  .v-card-big { grid-row: span 1; min-height: 320px; }
  .footer-grid { grid-template-columns: 1fr; }

  .menu-btn { display: flex; }

  .nav {
    position: fixed;
    top: 0; right: 0;
    width: min(320px, 85vw);
    height: 100vh;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 5rem 2rem 2rem;
    background: rgba(10,14,20,0.97);
    backdrop-filter: blur(24px);
    border-left: 1px solid var(--border);
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(.16,1,.3,1);
    z-index: 200;
  }

  .nav.is-open { transform: translateX(0); }

  .nav a {
    display: block;
    width: 100%;
    padding: 1rem 0;
    font-size: 0.9rem;
    border-bottom: 1px solid rgba(255,255,255,0.05);
  }

  .nav-cta {
    margin-top: 1rem !important;
    text-align: center !important;
  }
}

@media (max-width: 540px) {
  .shell { padding: 0 1.1rem; }

  .section { padding: clamp(3.5rem, 14vw, 5rem) 0; }

  .ticker-track { gap: 0.9rem; padding: 0.55rem 0.75rem; font-size: 0.58rem; letter-spacing: 0.15em; }
  .ticker-dot { font-size: 0.38rem; }

  .header { padding: 0.65rem 0.9rem; }
  .logo-img { height: 40px; }

  .hero { min-height: auto; }
  .hero-grid { gap: 1.8rem; padding-top: 2rem; }
  .hero-content h1 {
    font-size: clamp(2.6rem, 13vw, 3.6rem);
    letter-spacing: 0.01em;
    line-height: 0.95;
  }
  .hero-sub { font-size: 0.98rem; line-height: 1.6; }
  .hero-btns { gap: 0.75rem; }
  .hero-btns .btn { flex: 1 1 auto; min-width: 140px; text-align: center; }
  .hero-portrait { width: min(240px, 70vw); }
  .hero-portrait-badge { padding: 0.9rem; }
  .hero-portrait-badge span { font-size: 1.25rem; }

  .stats-bar { padding: 1.25rem 0; }
  .stats-row { grid-template-columns: 1fr 1fr; gap: 1.1rem 0.75rem; }
  .stat-num { font-size: 1.85rem; }
  .stat span { font-size: 0.6rem; letter-spacing: 0.12em; }

  .solution-image img { height: 200px; }

  .section-head h2,
  .split-copy h2,
  .buy-leader-overlay h3 { font-size: clamp(1.9rem, 8vw, 2.6rem) !important; line-height: 1.05; }
  .section-head p { font-size: 0.95rem; }

  .crisis-card,
  .sol-card,
  .v-card { padding: 1.25rem; }
  .crisis-stat { font-size: 2rem; }

  .buy-panel { border-radius: 16px; }
  .buy-leader { min-height: 200px; }
  .buy-leader-overlay { padding: 1.25rem; }
  .buy-main { padding: 1.4rem 1.1rem; }
  .buy-header h3 { font-size: 1.4rem; }
  .ca-box { padding: 0.9rem; }
  .ca-row { flex-wrap: wrap; gap: 0.5rem; }
  .ca-row code { font-size: 0.72rem; width: 100%; }
  .buy-btns { gap: 0.6rem; }
  .buy-btns .btn { flex: 1 1 auto; text-align: center; }

  .rwa-card { max-width: 100%; }
  .rwa-main { padding: 1.4rem 1rem; }
  .rwa-value { font-size: clamp(1.6rem, 7vw, 2rem); }
  .rwa-stat { padding: 0.85rem 0.5rem; }
  .rwa-stat strong { font-size: 1.05rem; }

  .v-card-big h3 { font-size: 1.5rem; }

  .footer { padding: 2.5rem 0 1.5rem; }
  .footer-grid { gap: 1.75rem; }
}

@media (max-width: 380px) {
  .shell { padding: 0 0.9rem; }

  .ticker-track { gap: 0.7rem; font-size: 0.54rem; letter-spacing: 0.12em; }

  .hero-content h1 { font-size: 2.3rem; }
  .hero-sub { font-size: 0.92rem; }
  .hero-btns .btn { width: 100%; flex: 1 1 100%; }

  .stats-row { gap: 0.9rem 0.5rem; }
  .stat-num { font-size: 1.6rem; }

  .buy-main { padding: 1.1rem 0.85rem; }
  .ca-row code { font-size: 0.66rem; }
  .buy-btns .btn { width: 100%; flex: 1 1 100%; }

  .section-head h2,
  .split-copy h2,
  .buy-leader-overlay h3 { font-size: 1.7rem !important; }
}
