/* ═══════════════════════════════════════════════════
   MONEY LEAGUE — Landing Page Styles
   Cypherpunk aesthetic. Ethereum-aligned.
   ═══════════════════════════════════════════════════ */

/* ─── RESET & BASE ─────────────────────────────── */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Core palette */
  --black: #060608;
  --bg: #0a0a0c;
  --bg-elevated: #111113;
  --bg-card: #151517;
  --bg-card-hover: #1a1a1d;

  /* Surfaces */
  --surface-1: #141416;
  --surface-2: #1c1c1f;
  --surface-3: #252528;

  /* Text */
  --text-primary: #e8e8f0;
  --text-secondary: #8888a0;
  --text-muted: #555568;

  /* Accent — Bluish green */
  --accent: #2dd4a8;
  --accent-bright: #5eecc6;
  --accent-glow: rgba(45, 212, 168, 0.3);
  --accent-dim: rgba(45, 212, 168, 0.08);

  /* Secondary accent */
  --neon: #00ffa3;
  --neon-glow: rgba(0, 255, 163, 0.15);
  --neon-dim: rgba(0, 255, 163, 0.06);

  /* Danger */
  --red: #ff3b3b;
  --red-glow: rgba(255, 59, 59, 0.15);

  /* Gradients */
  --gradient-text: linear-gradient(135deg, #2dd4a8 0%, #00ffa3 50%, #2dd4a8 100%);
  --gradient-bg: linear-gradient(180deg, var(--bg) 0%, #0c0c0e 100%);
  --gradient-card: linear-gradient(145deg, var(--bg-card) 0%, rgba(45, 212, 168, 0.04) 100%);

  /* Borders */
  --border: rgba(255, 255, 255, 0.06);
  --border-accent: rgba(45, 212, 168, 0.2);

  /* Sizing */
  --container: 1200px;
  --container-wide: 1400px;

  /* Type scale */
  --fs-hero: clamp(3.5rem, 8vw, 8rem);
  --fs-h2: clamp(2.5rem, 5vw, 5rem);
  --fs-h3: clamp(1.5rem, 2.5vw, 2rem);
  --fs-h4: clamp(1.125rem, 1.5vw, 1.375rem);
  --fs-body: clamp(1rem, 1.2vw, 1.125rem);
  --fs-small: clamp(0.8rem, 1vw, 0.875rem);
  --fs-xs: 0.75rem;

  /* Spacing */
  --section-pad: clamp(5rem, 10vh, 10rem);

  /* Transitions */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);

  /* Border radius */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
}

/* ─── LIGHT MODE ──────────────────────────────── */
[data-theme="light"] {
  --black: #ffffff;
  --bg: #f5f5f8;
  --bg-elevated: #eeeef2;
  --bg-card: #ffffff;
  --bg-card-hover: #f0f0f5;

  --surface-1: #e8e8ee;
  --surface-2: #dddde5;
  --surface-3: #d0d0dc;

  --text-primary: #111118;
  --text-secondary: #555566;
  --text-muted: #888899;

  --accent: #1a9e80;
  --accent-bright: #2dd4a8;
  --accent-glow: rgba(26, 158, 128, 0.2);
  --accent-dim: rgba(26, 158, 128, 0.06);

  --neon: #00995f;
  --neon-glow: rgba(0, 153, 95, 0.1);
  --neon-dim: rgba(0, 153, 95, 0.05);

  --red: #dc2626;
  --red-glow: rgba(220, 38, 38, 0.1);

  --gradient-text: linear-gradient(135deg, #1a9e80 0%, #00995f 50%, #1a9e80 100%);
  --gradient-bg: linear-gradient(180deg, var(--bg) 0%, #eaeaf0 100%);
  --gradient-card: linear-gradient(145deg, var(--bg-card) 0%, rgba(26, 158, 128, 0.03) 100%);

  --border: rgba(0, 0, 0, 0.08);
  --border-accent: rgba(26, 158, 128, 0.2);
}

[data-theme="light"] .hero__bg-grid {
  background-image:
    linear-gradient(rgba(26, 158, 128, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26, 158, 128, 0.06) 1px, transparent 1px);
}

[data-theme="light"] .hero__noise,
[data-theme="light"] .agents__noise,
[data-theme="light"] .cta__bg-noise {
  opacity: 0.01;
}

[data-theme="light"] .hero__radial {
  background: radial-gradient(ellipse at center, rgba(26, 158, 128, 0.06) 0%, transparent 60%);
}

[data-theme="light"] .nav--scrolled {
  background: rgba(245, 245, 248, 0.9);
}

[data-theme="light"] .ticker {
  background: var(--bg-elevated);
}

[data-theme="light"] ::selection {
  background: var(--accent);
  color: #ffffff;
}

[data-theme="light"] .league__bg-element {
  background: radial-gradient(circle, rgba(26, 158, 128, 0.04) 0%, transparent 70%);
}

[data-theme="light"] .merit__bg {
  background: radial-gradient(circle, rgba(0, 153, 95, 0.03) 0%, transparent 70%);
}

[data-theme="light"] .agents__bg {
  background: radial-gradient(circle, rgba(0, 153, 95, 0.04) 0%, transparent 60%);
}

[data-theme="light"] .cta__bg-gradient {
  background: radial-gradient(ellipse 60% 50% at 50% 30%, rgba(26, 158, 128, 0.06) 0%, transparent 70%);
}

[data-theme="light"] .league-diagram__center {
  box-shadow: 0 0 40px rgba(26, 158, 128, 0.15);
}

[data-theme="light"] .manifesto-quote {
  background: rgba(26, 158, 128, 0.04);
}

[data-theme="light"] .agents__statement-inner {
  background: rgba(0, 153, 95, 0.04);
}

[data-theme="light"] .vision-statement__inner {
  background: linear-gradient(135deg, rgba(26, 158, 128, 0.05) 0%, rgba(0, 153, 95, 0.03) 100%);
}

[data-theme="light"] .agents__vision-inner {
  background: linear-gradient(135deg, rgba(0, 153, 95, 0.04) 0%, rgba(26, 158, 128, 0.04) 100%);
  border-color: rgba(0, 153, 95, 0.12);
}

[data-theme="light"] .cta__text--highlight {
  background: rgba(26, 158, 128, 0.04);
}

[data-theme="light"] .index-section__formula {
  background: var(--bg-elevated);
}

[data-theme="light"] .mobile-menu {
  background: rgba(245, 245, 248, 0.97);
}

[data-theme="light"] .mobile-menu__link {
  color: var(--text-secondary);
}

[data-theme="light"] .mobile-menu__link:hover {
  color: var(--text-primary);
}

[data-theme="light"] .mobile-menu__link--cta {
  background: var(--text-primary);
  color: var(--bg) !important;
}

/* Theme Toggle Button */
.theme-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all 0.3s var(--ease-smooth);
  flex-shrink: 0;
}

.theme-toggle:hover {
  color: var(--text-primary);
  border-color: var(--accent);
  background: var(--accent-dim);
}

.theme-toggle__icon {
  display: none;
}

/* Dark mode: show sun icon (to switch to light) */
.theme-toggle__icon--dark {
  display: block;
}

.theme-toggle__icon--light {
  display: none;
}

/* Light mode: show moon icon (to switch to dark) */
[data-theme="light"] .theme-toggle__icon--dark {
  display: none;
}

[data-theme="light"] .theme-toggle__icon--light {
  display: block;
}

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text-primary);
  font-size: var(--fs-body);
  line-height: 1.6;
  overflow-x: hidden;
  transition: background-color 0.3s var(--ease-smooth), color 0.3s var(--ease-smooth);
}

::selection {
  background: var(--accent);
  color: var(--black);
}

a {
  color: inherit;
  text-decoration: none;
}

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

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 2rem;
}

/* ─── UTILITY ──────────────────────────────────── */
.text-gradient {
  background: var(--gradient-text);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientShift 6s ease-in-out infinite;
}

.text-gradient--moloch {
  background: linear-gradient(135deg, #2dd4a8 0%, #ff3b3b 40%, #ff6b6b 60%, #00ffa3 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientShift 6s ease-in-out infinite;
}

.text-gradient-inline {
  background: linear-gradient(135deg, var(--accent-bright) 0%, var(--neon) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
}

@keyframes gradientShift {
  0%, 100% { background-position: 0% center; }
  50% { background-position: 200% center; }
}

/* Section Labels */
.section-label {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.section-label__number {
  font-family: 'Space Mono', monospace;
  font-size: var(--fs-xs);
  color: var(--accent);
  letter-spacing: 0.1em;
}

.section-label__text {
  font-family: 'Space Mono', monospace;
  font-size: var(--fs-xs);
  color: var(--text-muted);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

/* ─── REVEAL ANIMATIONS ───────────────────────── */
.reveal-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal-up.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ─── NAVIGATION ───────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.25rem 0;
  transition: all 0.4s var(--ease-smooth);
  backdrop-filter: blur(0px);
  background: transparent;
}

.nav--scrolled {
  padding: 0.75rem 0;
  backdrop-filter: blur(20px);
  background: rgba(10, 10, 12, 0.85);
  border-bottom: 1px solid var(--border);
}

.nav__inner {
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.15em;
}

.nav__logo-icon {
  color: var(--accent);
  flex-shrink: 0;
}

.nav__links {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav__link {
  font-family: 'Space Grotesk', sans-serif;
  font-size: var(--fs-small);
  font-weight: 500;
  color: var(--text-secondary);
  letter-spacing: 0.02em;
  transition: color 0.3s;
  position: relative;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width 0.3s var(--ease-out);
}

.nav__link:hover {
  color: var(--text-primary);
}

.nav__link:hover::after {
  width: 100%;
}

.nav__link--cta {
  background: var(--text-primary);
  color: var(--bg) !important;
  padding: 0.5rem 1.25rem;
  border-radius: 100px;
  font-weight: 600;
  transition: all 0.3s;
}

.nav__link--cta::after { display: none; }

.nav__link--cta:hover {
  background: var(--accent);
  color: var(--bg) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 20px var(--accent-glow);
}

.nav__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav__mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav__mobile-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  transition: all 0.3s;
  border-radius: 1px;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999;
  background: rgba(8, 8, 15, 0.97);
  backdrop-filter: blur(20px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
}

.mobile-menu.active {
  opacity: 1;
  pointer-events: all;
}

.mobile-menu__link {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text-secondary);
  transition: color 0.3s;
}

.mobile-menu__link:hover {
  color: var(--text-primary);
}

.mobile-menu__link--cta {
  margin-top: 1rem;
  background: var(--text-primary);
  color: var(--bg) !important;
  padding: 0.75rem 2rem;
  border-radius: 100px;
}

/* ─── HERO ─────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 6rem 2rem 4rem;
}

.hero__bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(45, 212, 168, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(45, 212, 168, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 70% 70% at 50% 40%, black 20%, transparent 70%);
}

.hero__noise {
  position: absolute;
  inset: 0;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px 256px;
  pointer-events: none;
}

.hero__radial {
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 120%;
  height: 80%;
  background: radial-gradient(ellipse at center, rgba(45, 212, 168, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

/* Hero Watermark */
.hero__watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: clamp(400px, 50vw, 600px);
  height: clamp(400px, 50vw, 600px);
  color: var(--accent);
  opacity: 0.04;
  pointer-events: none;
  z-index: 1;
}

.hero__watermark svg {
  width: 100%;
  height: 100%;
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
}

.hero__eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.hero__eyebrow-text {
  font-family: 'Space Mono', monospace;
  font-size: var(--fs-xs);
  color: var(--accent);
  letter-spacing: 0.25em;
}

.hero__eyebrow-line {
  width: 40px;
  height: 1px;
  background: var(--accent);
  opacity: 0.4;
}

.hero__title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: var(--fs-hero);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}

.hero__title-line {
  display: block;
}

.hero__title-line--accent {
  background: var(--gradient-text);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientShift 6s ease-in-out infinite;
}

.hero__subtitle {
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 640px;
  margin: 0 auto 2.5rem;
}

.hero__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 4rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: var(--fs-small);
  padding: 0.875rem 1.75rem;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: all 0.3s var(--ease-out);
  letter-spacing: 0.02em;
}

.btn--primary {
  background: var(--text-primary);
  color: var(--bg);
  border: 1px solid var(--text-primary);
}

.btn--primary:hover {
  background: var(--accent);
  color: var(--bg);
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px var(--accent-glow);
}

.btn--ghost {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border);
}

.btn--ghost:hover {
  border-color: var(--text-secondary);
  color: var(--text-primary);
  background: var(--accent-dim);
}

.btn--large {
  padding: 1rem 2.25rem;
  font-size: 1rem;
}

/* Hero Stats */
.hero__stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
}

.hero__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}

.hero__stat-row {
  display: flex;
  align-items: baseline;
  gap: 0.1em;
}

.hero__stat-value {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1;
}

.hero__stat-suffix {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}

.hero__stat-label {
  font-family: 'Space Mono', monospace;
  font-size: var(--fs-xs);
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero__stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* Scroll Indicator — hidden to avoid overlaying hero stats */

/* ─── TICKER ───────────────────────────────────── */
.ticker {
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1.25rem 0;
  background: var(--bg-elevated);
}

.ticker__track {
  display: flex;
  align-items: center;
  gap: 2rem;
  white-space: nowrap;
  animation: tickerScroll 30s linear infinite;
  width: max-content;
}

.ticker__track--reverse {
  animation: tickerScrollReverse 35s linear infinite;
}

.ticker__item {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(0.875rem, 1.2vw, 1.125rem);
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  text-transform: uppercase;
}

.ticker__separator {
  color: var(--accent);
  font-size: 0.625rem;
  opacity: 0.5;
}

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

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

/* ─── PROBLEM SECTION ──────────────────────────── */
.problem {
  padding: var(--section-pad) 0;
  position: relative;
}

.problem__title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: var(--fs-h2);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}

.problem__intro {
  font-size: clamp(1.05rem, 1.3vw, 1.2rem);
  color: var(--text-secondary);
  line-height: 1.8;
  max-width: 720px;
  margin-bottom: 4rem;
}

/* Threat Cards */
.threat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 4rem;
}

.threat-card {
  background: var(--gradient-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  transition: all 0.4s var(--ease-out);
  position: relative;
  overflow: hidden;
}

.threat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--red), transparent);
  opacity: 0;
  transition: opacity 0.4s;
}

.threat-card:hover {
  border-color: rgba(255, 59, 59, 0.2);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.threat-card:hover::before {
  opacity: 1;
}

.threat-card__icon {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  transition: color 0.4s;
}

.threat-card:hover .threat-card__icon {
  color: var(--red);
}

.threat-card__title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: var(--fs-h4);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.threat-card__text {
  color: var(--text-secondary);
  font-size: var(--fs-small);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.threat-card__tag {
  font-family: 'Space Mono', monospace;
  font-size: 0.625rem;
  letter-spacing: 0.2em;
  color: var(--red);
  padding: 0.375rem 0.75rem;
  border: 1px solid rgba(255, 59, 59, 0.2);
  border-radius: 100px;
  display: inline-block;
  background: var(--red-glow);
}

/* Manifesto Quote */
.manifesto-quote {
  position: relative;
  max-width: 800px;
  margin: 0 auto 4rem;
  padding: 3rem;
  border-left: 3px solid var(--accent);
  background: var(--accent-dim);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
}

.manifesto-quote__mark {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 5rem;
  line-height: 1;
  color: var(--accent);
  opacity: 0.3;
  position: absolute;
  top: 0.5rem;
  left: 1.5rem;
}

.manifesto-quote__text {
  font-size: clamp(1.05rem, 1.3vw, 1.2rem);
  color: var(--text-secondary);
  line-height: 1.8;
  position: relative;
  z-index: 1;
}

.manifesto-quote__text strong {
  color: var(--text-primary);
}

/* Cold Start */
.cold-start {
  background: var(--surface-1);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.cold-start__header {
  padding: 2.5rem 3rem 2rem;
  border-bottom: 1px solid var(--border);
}

.cold-start__title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: var(--fs-h3);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.cold-start__subtitle {
  color: var(--text-muted);
  font-size: var(--fs-small);
}

.cold-start__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.cold-start__step {
  padding: 2rem;
  border-right: 1px solid var(--border);
  position: relative;
  transition: background 0.3s;
}

.cold-start__step:last-child {
  border-right: none;
}

.cold-start__step:hover {
  background: var(--surface-2);
}

.cold-start__step-num {
  font-family: 'Space Mono', monospace;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--surface-3);
  margin-bottom: 1rem;
  line-height: 1;
}

.cold-start__step h4 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.cold-start__step p {
  color: var(--text-secondary);
  font-size: var(--fs-small);
  line-height: 1.6;
}

/* ─── LEAGUE SECTION ───────────────────────────── */
.league {
  padding: var(--section-pad) 0;
  position: relative;
  overflow: hidden;
}

.league__bg-element {
  position: absolute;
  top: 10%;
  right: -10%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(45, 212, 168, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

.league__title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: var(--fs-h2);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 3rem;
}

.league__intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 5rem;
}

.league__lead {
  font-size: clamp(1.1rem, 1.4vw, 1.25rem);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  color: var(--text-secondary);
}

.league__lead strong {
  color: var(--text-primary);
}

.league__intro-text p:last-child {
  color: var(--text-secondary);
  line-height: 1.8;
}

.league__intro-text p:last-child strong {
  color: var(--text-primary);
}

/* League Diagram */
.league-diagram {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  max-width: 400px;
  margin: 0 auto;
}

.league-diagram__center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: var(--gradient-card);
  border: 2px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  box-shadow: 0 0 60px var(--accent-glow);
  z-index: 2;
}

.league-diagram__orbit {
  position: absolute;
  inset: 0;
  animation: orbitSpin 30s linear infinite;
}

.league-diagram__node {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 90px;
  height: 90px;
  margin: -45px 0 0 -45px;
  transform: rotate(var(--angle)) translateX(160px) rotate(calc(var(--angle) * -1));
}

.league-diagram__node span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background: var(--surface-1);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  font-family: 'Space Mono', monospace;
  font-size: 0.625rem;
  letter-spacing: 0.05em;
  text-align: center;
  padding: 0.5rem;
  color: var(--text-secondary);
  animation: counterSpin 30s linear infinite;
  transition: all 0.3s;
}

.league-diagram__node span:hover {
  border-color: var(--accent);
  color: var(--text-primary);
  background: var(--bg-card);
}

@keyframes orbitSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes counterSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(-360deg); }
}

/* Pillars */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 4rem;
}

.pillar {
  background: var(--gradient-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  transition: all 0.4s var(--ease-out);
  position: relative;
  overflow: hidden;
}

.pillar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--neon));
  opacity: 0;
  transition: opacity 0.4s;
}

.pillar:hover {
  border-color: var(--border-accent);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.pillar:hover::before {
  opacity: 1;
}

.pillar__number {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--surface-3);
  line-height: 1;
  margin-bottom: 1.5rem;
  transition: color 0.4s;
}

.pillar:hover .pillar__number {
  color: var(--accent-dim);
}

.pillar__title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: var(--fs-h4);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.pillar__text {
  color: var(--text-secondary);
  font-size: var(--fs-small);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.pillar__features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.pillar__features span {
  font-family: 'Space Mono', monospace;
  font-size: 0.625rem;
  letter-spacing: 0.1em;
  color: var(--accent);
  padding: 0.375rem 0.75rem;
  border: 1px solid var(--border-accent);
  border-radius: 100px;
  background: var(--accent-dim);
  text-transform: uppercase;
}

/* Vision Statement */
.vision-statement {
  position: relative;
}

.vision-statement__inner {
  background: linear-gradient(135deg, rgba(45, 212, 168, 0.08) 0%, rgba(0, 255, 163, 0.04) 100%);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius-xl);
  padding: 3.5rem 4rem;
  position: relative;
  overflow: hidden;
}

.vision-statement__inner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--neon), var(--accent));
}

.vision-statement__text {
  font-size: clamp(1.1rem, 1.5vw, 1.35rem);
  line-height: 1.8;
  color: var(--text-secondary);
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.vision-statement__text strong {
  color: var(--text-primary);
}

/* ─── PLATFORM SECTION ─────────────────────────── */
.platform {
  padding: var(--section-pad) 0;
  background: var(--bg-elevated);
  position: relative;
}

.platform__title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: var(--fs-h2);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}

.platform__intro {
  font-size: clamp(1.05rem, 1.3vw, 1.2rem);
  color: var(--text-secondary);
  line-height: 1.8;
  max-width: 700px;
  margin-bottom: 4rem;
}

/* Architecture Grid */
.arch-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-bottom: 4rem;
}

.arch-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all 0.4s var(--ease-out);
}

.arch-card:hover {
  border-color: var(--border-accent);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.arch-card--wide {
  grid-column: 1 / -1;
  padding: 2.5rem;
}

.arch-card__header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.arch-card__icon {
  color: var(--accent);
  flex-shrink: 0;
}

.arch-card__title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: var(--fs-h4);
  font-weight: 600;
}

.arch-card__text {
  color: var(--text-secondary);
  font-size: var(--fs-small);
  line-height: 1.7;
}

.arch-card__specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.arch-card__spec-label {
  display: block;
  font-family: 'Space Mono', monospace;
  font-size: 0.625rem;
  letter-spacing: 0.1em;
  color: var(--neon);
  text-transform: uppercase;
  margin-bottom: 0.375rem;
}

.arch-card__spec-value {
  font-size: var(--fs-small);
  color: var(--text-secondary);
  line-height: 1.5;
}

/* For Who */
.for-who {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 3rem;
}

.for-who__title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: var(--fs-h3);
  font-weight: 700;
  margin-bottom: 2rem;
}

.for-who__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.for-who__item {
  display: flex;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--surface-1);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: all 0.3s var(--ease-out);
}

.for-who__item:hover {
  border-color: var(--border-accent);
  background: var(--surface-2);
}

.for-who__icon {
  font-family: 'Space Mono', monospace;
  color: var(--accent);
  font-size: 1.25rem;
  flex-shrink: 0;
  padding-top: 0.125rem;
}

.for-who__item h4 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.375rem;
}

.for-who__item p {
  color: var(--text-secondary);
  font-size: var(--fs-small);
  line-height: 1.6;
}

/* ─── MERIT SECTION ────────────────────────────── */
.merit {
  padding: var(--section-pad) 0;
  position: relative;
  overflow: hidden;
}

.merit__bg {
  position: absolute;
  bottom: -20%;
  left: -10%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 255, 163, 0.03) 0%, transparent 70%);
  pointer-events: none;
}

.merit__title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: var(--fs-h2);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}

.merit__intro {
  font-size: clamp(1.05rem, 1.3vw, 1.2rem);
  color: var(--text-secondary);
  line-height: 1.8;
  max-width: 700px;
  margin-bottom: 4rem;
}

/* Merit Flow */
.merit-flow {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 4rem;
  flex-wrap: wrap;
}

.merit-flow__step {
  flex: 1;
  min-width: 240px;
  max-width: 320px;
  text-align: center;
}

.merit-flow__icon {
  margin-bottom: 1.5rem;
  display: flex;
  justify-content: center;
}

.merit-flow__icon-inner {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--accent-dim);
  border: 1px solid var(--border-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  transition: all 0.4s;
}

.merit-flow__step:hover .merit-flow__icon-inner {
  box-shadow: 0 0 40px var(--accent-glow);
  border-color: var(--accent);
}

.merit-flow__title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: var(--fs-h4);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.merit-flow__text {
  color: var(--text-secondary);
  font-size: var(--fs-small);
  line-height: 1.7;
}

.merit-flow__connector {
  display: flex;
  align-items: center;
  padding-top: 2.5rem;
  color: var(--text-muted);
  flex-shrink: 0;
}

/* Index Section */
.index-section {
  margin-bottom: 3rem;
}

.index-section__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 3rem;
  align-items: center;
  background: var(--gradient-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 3rem;
  overflow: hidden;
}

.index-section__title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: var(--fs-h3);
  font-weight: 700;
  margin-bottom: 1rem;
}

.index-section__text {
  color: var(--text-secondary);
  font-size: var(--fs-small);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.index-section__formula {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1rem 1.5rem;
  overflow-x: auto;
}

.index-section__formula code {
  font-family: 'Space Mono', monospace;
  font-size: var(--fs-small);
  color: var(--neon);
  white-space: nowrap;
}

/* Index Visual */
.index-visual {
  position: relative;
  width: 200px;
  height: 200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.5rem;
}

.index-visual__ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid;
}

.index-visual__ring--1 {
  inset: 0;
  border-color: rgba(45, 212, 168, 0.15);
  animation: ringPulse 4s ease-in-out infinite;
}

.index-visual__ring--2 {
  inset: 20px;
  border-color: rgba(0, 255, 163, 0.1);
  animation: ringPulse 4s ease-in-out infinite 1.5s;
}

.index-visual__icon {
  color: var(--accent);
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 0 30px var(--accent-glow));
}

.index-visual__label {
  font-family: 'Space Mono', monospace;
  font-size: 0.625rem;
  letter-spacing: 0.25em;
  color: var(--accent);
  font-weight: 700;
  position: relative;
  z-index: 1;
}

@keyframes ringPulse {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.05); }
}

/* Merit Props */
.merit-props {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.merit-prop {
  background: var(--gradient-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  transition: all 0.3s var(--ease-out);
}

.merit-prop:hover {
  border-color: var(--border-accent);
  transform: translateY(-2px);
}

.merit-prop__header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.merit-prop__num {
  font-family: 'Space Mono', monospace;
  font-size: 0.625rem;
  color: var(--accent);
  letter-spacing: 0.1em;
}

.merit-prop__title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
}

.merit-prop__text {
  color: var(--text-secondary);
  font-size: var(--fs-small);
  line-height: 1.6;
}

/* ─── AGENTS SECTION ───────────────────────────── */
.agents {
  padding: var(--section-pad) 0;
  position: relative;
  overflow: hidden;
  background: var(--bg-elevated);
}

.agents__bg {
  position: absolute;
  top: -10%;
  right: -15%;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 255, 163, 0.04) 0%, transparent 60%);
  pointer-events: none;
}

.agents__noise {
  position: absolute;
  inset: 0;
  opacity: 0.02;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px 256px;
  pointer-events: none;
}

.agents__title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: var(--fs-h2);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}

.agents__intro {
  font-size: clamp(1.05rem, 1.3vw, 1.2rem);
  color: var(--text-secondary);
  line-height: 1.8;
  max-width: 720px;
  margin-bottom: 3rem;
}

/* Agents Statement */
.agents__statement {
  margin-bottom: 3rem;
}

.agents__statement-inner {
  border-left: 3px solid var(--neon);
  background: var(--neon-dim);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  padding: 2rem 2.5rem;
}

.agents__statement-text {
  font-size: clamp(1.05rem, 1.3vw, 1.2rem);
  color: var(--text-secondary);
  line-height: 1.8;
}

.agents__statement-text strong {
  color: var(--neon);
}

/* Agents Grid */
.agents__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-bottom: 3rem;
}

.agents__card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all 0.4s var(--ease-out);
  position: relative;
  overflow: hidden;
}

.agents__card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--neon), var(--accent));
  opacity: 0;
  transition: opacity 0.4s;
}

.agents__card:hover {
  border-color: rgba(0, 255, 163, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.agents__card:hover::before {
  opacity: 1;
}

.agents__card--wide {
  grid-column: 1 / -1;
  padding: 2.5rem;
}

.agents__card-eyebrow {
  font-family: 'Space Mono', monospace;
  font-size: 0.625rem;
  letter-spacing: 0.2em;
  color: var(--neon);
  margin-bottom: 0.75rem;
  text-transform: uppercase;
}

.agents__card-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: var(--fs-h4);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.agents__card-text {
  color: var(--text-secondary);
  font-size: var(--fs-small);
  line-height: 1.7;
}

.agents__card-specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.agents__card-spec-label {
  display: block;
  font-family: 'Space Mono', monospace;
  font-size: 0.625rem;
  letter-spacing: 0.1em;
  color: var(--neon);
  text-transform: uppercase;
  margin-bottom: 0.375rem;
}

.agents__card-spec-value {
  font-size: var(--fs-small);
  color: var(--text-secondary);
  line-height: 1.5;
}

.agents__card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.agents__card-tags span {
  font-family: 'Space Mono', monospace;
  font-size: 0.625rem;
  letter-spacing: 0.1em;
  color: var(--neon);
  padding: 0.375rem 0.75rem;
  border: 1px solid rgba(0, 255, 163, 0.2);
  border-radius: 100px;
  background: var(--neon-dim);
  text-transform: uppercase;
}

/* Agents Vision */
.agents__vision {
  position: relative;
}

.agents__vision-inner {
  background: linear-gradient(135deg, rgba(0, 255, 163, 0.06) 0%, rgba(45, 212, 168, 0.06) 100%);
  border: 1px solid rgba(0, 255, 163, 0.15);
  border-radius: var(--radius-xl);
  padding: 3.5rem 4rem;
  position: relative;
  overflow: hidden;
}

.agents__vision-inner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--neon), var(--accent), var(--neon));
}

.agents__vision-label {
  font-family: 'Space Mono', monospace;
  font-size: 0.625rem;
  letter-spacing: 0.3em;
  color: var(--neon);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

.agents__vision-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: var(--fs-h3);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1.5rem;
}

.agents__vision-text {
  color: var(--text-secondary);
  font-size: clamp(1rem, 1.2vw, 1.1rem);
  line-height: 1.8;
  max-width: 750px;
  margin-bottom: 1rem;
}

.agents__vision-closing {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(0, 255, 163, 0.1);
}

.agents__vision-closing p {
  color: var(--text-muted);
  font-size: var(--fs-small);
  margin-bottom: 0.5rem;
}

.agents__vision-accent {
  font-family: 'Space Grotesk', sans-serif;
  font-size: var(--fs-h4) !important;
  font-weight: 600;
  color: var(--text-primary) !important;
  letter-spacing: -0.01em;
}

@media (max-width: 1024px) {
  .agents__grid {
    grid-template-columns: 1fr;
  }

  .agents__card--wide {
    grid-column: 1;
  }

  .agents__card-specs {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .agents__vision-inner {
    padding: 2rem;
  }

  .agents__statement-inner {
    padding: 1.5rem;
  }
}

/* ─── CTA SECTION ──────────────────────────────── */
.cta {
  padding: var(--section-pad) 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.cta__bg-noise {
  position: absolute;
  inset: 0;
  opacity: 0.015;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px 256px;
  pointer-events: none;
}

.cta__bg-gradient {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse 60% 50% at 50% 30%, rgba(45, 212, 168, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.cta__content {
  position: relative;
  z-index: 2;
  max-width: 750px;
  margin: 0 auto;
}

.cta__icon {
  color: var(--accent);
  margin-bottom: 2rem;
  opacity: 0.6;
  filter: drop-shadow(0 0 40px var(--accent-glow));
}

.cta__title {
  margin-bottom: 2rem;
}

.cta__title-small {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 0.25rem;
}

.cta__title-big {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(3rem, 7vw, 7rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.03em;
}

.cta__text {
  color: var(--text-secondary);
  font-size: clamp(1rem, 1.2vw, 1.125rem);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.cta__text strong {
  color: var(--text-primary);
}

.cta__text--highlight {
  color: var(--text-primary);
  font-size: clamp(1.05rem, 1.3vw, 1.2rem);
  padding: 2rem 2.5rem;
  background: var(--accent-dim);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius-lg);
  margin-bottom: 2.5rem;
}

.cta__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
}

.cta__closing {
  border-top: 1px solid var(--border);
  padding-top: 2rem;
}

.cta__closing p {
  color: var(--text-muted);
  font-size: var(--fs-small);
  margin-bottom: 0.5rem;
}

.cta__closing-accent {
  font-family: 'Space Grotesk', sans-serif;
  font-size: var(--fs-h4) !important;
  font-weight: 600;
  color: var(--text-primary) !important;
  letter-spacing: -0.01em;
}

/* ─── FOOTER ───────────────────────────────────── */
.footer {
  padding: 4rem 0 2rem;
  border-top: 1px solid var(--border);
  background: var(--black);
}

.footer__inner {
  display: flex;
  justify-content: space-between;
  gap: 4rem;
  margin-bottom: 3rem;
}

.footer__brand {
  max-width: 300px;
}

.footer__logo {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.1em;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.footer__logo-icon {
  color: var(--accent);
  flex-shrink: 0;
}

.footer__tagline {
  color: var(--text-muted);
  font-size: var(--fs-small);
  line-height: 1.6;
}

.footer__links {
  display: flex;
  gap: 4rem;
}

.footer__col h4 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: var(--fs-small);
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text-secondary);
}

.footer__col a {
  display: block;
  color: var(--text-muted);
  font-size: var(--fs-small);
  margin-bottom: 0.5rem;
  transition: color 0.3s;
}

.footer__col a:hover {
  color: var(--accent);
}

.footer__bottom {
  border-top: 1px solid var(--border);
  padding-top: 2rem;
  text-align: center;
}

.footer__bottom span {
  font-family: 'Space Mono', monospace;
  font-size: var(--fs-xs);
  color: var(--text-muted);
  letter-spacing: 0.1em;
}

/* ─── RESPONSIVE ───────────────────────────────── */
@media (max-width: 1024px) {
  .threat-grid {
    grid-template-columns: 1fr;
  }

  .cold-start__steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .cold-start__step {
    border-bottom: 1px solid var(--border);
  }

  .cold-start__step:nth-child(2) {
    border-right: none;
  }

  .league__intro-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .pillars {
    grid-template-columns: 1fr;
  }

  .arch-grid {
    grid-template-columns: 1fr;
  }

  .arch-card--wide {
    grid-column: 1;
  }

  .arch-card__specs {
    grid-template-columns: 1fr;
  }

  .for-who__grid {
    grid-template-columns: 1fr;
  }

  .merit-flow__connector {
    display: none;
  }

  .merit-flow {
    flex-direction: column;
    align-items: center;
  }

  .merit-flow__step {
    max-width: 100%;
  }

  .index-section__inner {
    grid-template-columns: 1fr;
  }

  .merit-props {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .nav__links {
    display: none;
  }

  .nav__actions .nav__link--cta {
    display: none !important;
  }

  .nav__mobile-toggle {
    display: flex;
  }

  .mobile-menu {
    display: flex;
  }

  /* Hero mobile improvements */
  .hero__eyebrow {
    flex-wrap: wrap;
    gap: 0.5rem;
  }

  .hero__eyebrow-line {
    display: none;
  }

  .hero__eyebrow-text {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.4rem 0.6rem;
    font-size: 0.65rem;
    letter-spacing: 0.2em;
  }

  .hero__title {
    font-size: clamp(2.5rem, 10vw, 4rem);
    line-height: 1.05;
    margin-bottom: 1.25rem;
  }

  .hero__subtitle {
    font-size: 1rem;
    margin-bottom: 2rem;
  }

  .hero {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    min-height: 100dvh;
    padding: 5rem 1.25rem 3rem;
  }

  .hero__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .hero__stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    width: 100%;
  }

  .hero__stat-divider {
    display: none;
  }

  .hero__stat {
    gap: 0.15rem;
  }

  .hero__stat-value {
    font-size: clamp(1.25rem, 5vw, 1.75rem);
  }

  .hero__stat-suffix {
    font-size: clamp(0.875rem, 3vw, 1.125rem);
  }

  .hero__stat-label {
    font-size: 0.6rem;
    letter-spacing: 0.05em;
  }

  .hero__actions {
    flex-direction: column;
    margin-bottom: 2.5rem;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

  .cold-start__steps {
    grid-template-columns: 1fr;
  }

  .cold-start__step {
    border-right: none;
  }

  .cold-start__header {
    padding: 2rem;
  }

  .pillars {
    grid-template-columns: 1fr;
  }

  .merit-props {
    grid-template-columns: 1fr;
  }

  .vision-statement__inner {
    padding: 2rem;
  }

  /* Redemption Index mobile */
  .index-section__inner {
    padding: 1.5rem;
    gap: 2rem;
  }

  .index-section__title {
    font-size: 1.25rem;
  }

  .index-section__text {
    font-size: 0.85rem;
    line-height: 1.7;
  }

  .index-section__formula {
    padding: 0.75rem 1rem;
  }

  .index-section__formula code {
    font-size: 0.7rem;
    white-space: normal;
    word-break: break-all;
  }

  .index-visual {
    width: 150px;
    height: 150px;
  }

  .index-visual__icon {
    width: 70px;
    height: 70px;
  }

  .index-visual__ring--2 {
    inset: 15px;
  }

  .cta__text--highlight {
    padding: 1.5rem;
  }

  .cta__actions {
    flex-direction: column;
  }

  .footer__inner {
    flex-direction: column;
    gap: 2rem;
  }

  .footer__links {
    gap: 2rem;
    flex-wrap: wrap;
  }

  .league-diagram {
    max-width: 300px;
  }

  .league-diagram__node {
    transform: rotate(var(--angle)) translateX(120px) rotate(calc(var(--angle) * -1));
  }

  .league-diagram__node span {
    width: 70px;
    height: 70px;
    font-size: 0.55rem;
  }

  .league-diagram__center {
    width: 90px;
    height: 90px;
  }

  .league-diagram__center svg {
    width: 44px;
    height: 44px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1.25rem;
  }

  .hero {
    padding: 5rem 1.25rem 3rem;
  }

  .hero__title {
    font-size: clamp(2rem, 9vw, 3rem);
  }

  .hero__eyebrow-text {
    font-size: 0.6rem;
    letter-spacing: 0.15em;
  }

  .hero__eyebrow-dot {
    display: none;
  }

  .hero__eyebrow-text > span:not(.hero__eyebrow-dot) {
    display: block;
    text-align: center;
  }

  .hero__stat-value {
    font-size: 1.125rem;
  }

  .hero__stat-suffix {
    font-size: 0.75rem;
  }

  .hero__stat-label {
    font-size: 0.5rem;
  }

  /* Redemption Index small mobile */
  .index-section__inner {
    padding: 1.25rem;
  }

  .index-visual {
    width: 120px;
    height: 120px;
  }

  .index-visual__icon {
    width: 55px;
    height: 55px;
  }

  .threat-card {
    padding: 2rem 1.5rem;
  }

  .for-who {
    padding: 2rem 1.5rem;
  }
}
