/* ========================================
   X CEO Floki — $XCEO Website
   Dark premium + Gold/Orange Shiba accent
   ======================================== */

:root {
  --bg: #050505;
  --bg-card: #0d0d0d;
  --bg-card-hover: #141414;
  --bg-section-dark: #080808;
  --gold: #f7931a;
  --gold-light: #ffb347;
  --gold-dim: #c77400;
  --green: #22c55e;
  --white: #ffffff;
  --gray-100: #f0f0f0;
  --gray-200: #d1d1d1;
  --gray-300: #a3a3a3;
  --gray-400: #737373;
  --gray-500: #404040;
  --gray-600: #262626;
  --gray-700: #171717;
  --border: rgba(247, 147, 26, 0.15);
  --border-subtle: rgba(255, 255, 255, 0.06);
  --font-display: "Space Grotesk", sans-serif;
  --font-body: "Inter", sans-serif;
  --max-width: 1200px;
  --nav-height: 72px;
}

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

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

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

a {
  color: var(--gold);
  text-decoration: none;
  transition: color 0.2s;
}

a:hover {
  color: var(--gold-light);
}

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

/* ========= NAV ========= */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-height);
  transition: all 0.3s;
  background: transparent;
}

.nav-scrolled {
  background: rgba(5, 5, 5, 0.9);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-subtle);
}

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 4px;
  color: var(--white);
}

.logo-floki {
  color: var(--gray-300);
}

.logo-x {
  color: var(--gold);
  font-size: 1.6rem;
}

.logo-ceo {
  color: var(--white);
}

.nav-links {
  display: flex;
  gap: 32px;
}

.nav-links a {
  color: var(--gray-300);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--white);
}

.nav-socials {
  display: flex;
  gap: 8px;
}

.nav-social-btn {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-300);
  transition: all 0.2s;
}

.nav-social-btn:hover {
  color: var(--gold);
  border-color: var(--gold);
  background: rgba(247, 147, 26, 0.05);
}

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

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

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(5, 5, 5, 0.98);
  backdrop-filter: blur(20px);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a {
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
}

.mobile-socials {
  display: flex;
  gap: 24px;
  margin-top: 24px;
}

.mobile-socials a {
  font-size: 1rem;
  color: var(--gold);
}

/* ========= HERO ========= */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 24px 80px;
  position: relative;
  gap: 60px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.hero-bg-glow {
  position: fixed;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(247, 147, 26, 0.08) 0%,
    transparent 70%
  );
  pointer-events: none;
  z-index: 0;
}

.hero-content {
  flex: 1;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(247, 147, 26, 0.08);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.04em;
  margin-bottom: 32px;
  text-transform: uppercase;
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 16px;
  align-items: baseline;
}

.title-the {
  color: var(--gray-400);
  font-size: 0.5em;
  letter-spacing: 0.1em;
}

.title-x {
  color: var(--gold);
  font-size: 1.2em;
  text-shadow: 0 0 40px rgba(247, 147, 26, 0.3);
}

.title-ceo {
  color: var(--white);
}

.title-back {
  color: var(--gray-300);
  font-size: 0.45em;
  letter-spacing: 0.05em;
  width: 100%;
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--gray-300);
  max-width: 520px;
  margin-bottom: 32px;
  line-height: 1.7;
}

.hero-sub strong {
  color: var(--white);
}

.hero-buttons {
  display: flex;
  gap: 12px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: 12px;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: all 0.25s;
  border: none;
  text-decoration: none;
}

.btn-primary {
  background: var(--gold);
  color: #000;
  box-shadow: 0 0 30px rgba(247, 147, 26, 0.2);
}

.btn-primary:hover {
  background: var(--gold-light);
  color: #000;
  box-shadow: 0 0 40px rgba(247, 147, 26, 0.35);
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 1px solid var(--border-subtle);
}

.btn-secondary:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(247, 147, 26, 0.05);
  transform: translateY(-2px);
}

.hero-ca {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: var(--gray-700);
  border: 1px solid var(--border-subtle);
  border-radius: 10px;
  max-width: fit-content;
}

.ca-label {
  color: var(--gray-400);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.ca-address {
  color: var(--gold);
  font-size: 0.75rem;
  font-family: "Space Grotesk", monospace;
  word-break: break-all;
}

.ca-copy {
  background: none;
  border: none;
  color: var(--gray-400);
  cursor: pointer;
  padding: 4px;
  display: flex;
  transition: color 0.2s;
}

.ca-copy:hover {
  color: var(--gold);
}

.hero-image {
  flex: 0 0 380px;
  position: relative;
  z-index: 1;
}

.hero-image-glow {
  position: absolute;
  inset: -40px;
  background: radial-gradient(
    circle,
    rgba(247, 147, 26, 0.12) 0%,
    transparent 70%
  );
  border-radius: 50%;
  z-index: 0;
}

.hero-image img {
  position: relative;
  z-index: 1;
  border-radius: 24px;
  border: 2px solid var(--border);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

/* ========= STATS BAR ========= */
.stats-bar {
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  background: var(--bg-card);
  padding: 32px 24px;
}

.stats-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.stat-value {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
}

.stat-label {
  font-size: 0.8rem;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 500;
}

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

.live-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--green);
  border-radius: 50%;
  margin-left: 4px;
  animation: pulse 2s infinite;
  vertical-align: middle;
}

/* ========= SECTIONS ========= */
.section {
  padding: 100px 24px;
}

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

.section-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.section-tag {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(247, 147, 26, 0.08);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--gray-300);
  max-width: 600px;
  margin-bottom: 48px;
}

/* ========= ABOUT ========= */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-text p {
  margin-bottom: 16px;
  font-size: 1.05rem;
  line-height: 1.8;
}

.about-text strong {
  color: var(--white);
}

.about-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.tag {
  padding: 6px 14px;
  background: var(--gray-700);
  border: 1px solid var(--border-subtle);
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--gray-300);
}

.about-image {
  position: relative;
}

.about-image img {
  border-radius: 16px;
  border: 1px solid var(--border);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.about-image-caption {
  margin-top: 12px;
  text-align: center;
  font-size: 0.85rem;
  color: var(--gray-400);
}

/* ========= ELON PROOF TIMELINE ========= */
.timeline {
  position: relative;
  max-width: 700px;
  margin: 0 auto 48px;
  padding-left: 40px;
}

.timeline-line {
  position: absolute;
  left: 15px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(
    to bottom,
    var(--gold),
    var(--gold-dim),
    rgba(247, 147, 26, 0.2)
  );
}

.timeline-item {
  position: relative;
  padding: 0 0 40px 32px;
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-dot {
  position: absolute;
  left: -26px;
  top: 4px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 2px solid var(--bg-section-dark);
  z-index: 2;
}

.dot-gold {
  background: var(--gold);
  box-shadow: 0 0 12px rgba(247, 147, 26, 0.5);
}
.dot-blue {
  background: #3b82f6;
  box-shadow: 0 0 12px rgba(59, 130, 246, 0.4);
}
.dot-red {
  background: #ef4444;
  box-shadow: 0 0 12px rgba(239, 68, 68, 0.4);
}
.dot-purple {
  background: #a855f7;
  box-shadow: 0 0 12px rgba(168, 85, 247, 0.4);
}

.dot-pulse {
  background: var(--gold);
  box-shadow: 0 0 12px rgba(247, 147, 26, 0.5);
  animation: dot-pulse-anim 2s infinite;
}

@keyframes dot-pulse-anim {
  0%,
  100% {
    box-shadow: 0 0 12px rgba(247, 147, 26, 0.5);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 0 24px rgba(247, 147, 26, 0.8);
    transform: scale(1.3);
  }
}

.timeline-date {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}

.timeline-content {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 14px;
  padding: 24px;
  transition: all 0.3s;
}

.timeline-content:hover {
  border-color: var(--border);
  transform: translateX(4px);
}

.timeline-type {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 5px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
}

.type-retweet {
  background: var(--gold);
  color: #000;
}
.type-reply {
  background: #3b82f6;
  color: #fff;
}
.type-like {
  background: #ef4444;
  color: #fff;
}
.type-maye {
  background: #a855f7;
  color: #fff;
}
.type-next {
  background: rgba(247, 147, 26, 0.15);
  color: var(--gold);
  border: 1px solid var(--border);
}

.timeline-content h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 6px;
}

.timeline-content p {
  font-size: 0.9rem;
  color: var(--gray-300);
  line-height: 1.6;
  margin-bottom: 10px;
}

.timeline-content p strong {
  color: var(--green);
}

.timeline-link {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.02em;
  transition: color 0.2s;
}

.timeline-link:hover {
  color: var(--gold-light);
}

.timeline-next .timeline-content {
  border-color: var(--border);
  background: linear-gradient(
    135deg,
    rgba(247, 147, 26, 0.04) 0%,
    var(--bg-card) 100%
  );
  border-style: dashed;
}

.timeline-next .timeline-content h3 {
  color: var(--gold);
}

/* Proof bottom stats */
.proof-bottom {
  max-width: 700px;
  margin: 0 auto;
}

.proof-stat-row {
  display: flex;
  justify-content: center;
  gap: 40px;
  padding: 24px 0;
  border-top: 1px solid var(--border-subtle);
}

.proof-mini-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.proof-mini-value {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold);
}

.proof-mini-label {
  font-size: 0.7rem;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ========= NARRATIVE ========= */
.narrative-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.narrative-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  padding: 32px;
  transition: all 0.3s;
  position: relative;
}

.narrative-card:hover {
  border-color: var(--border);
  transform: translateY(-4px);
}

.narrative-card-active {
  border-color: var(--gold);
  background: linear-gradient(
    135deg,
    rgba(247, 147, 26, 0.05) 0%,
    var(--bg-card) 100%
  );
  box-shadow: 0 0 40px rgba(247, 147, 26, 0.1);
}

.narrative-you-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 6px 16px;
  background: var(--gold);
  color: #000;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  border-radius: 100px;
  white-space: nowrap;
}

.narrative-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.narrative-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
}

.narrative-ticker {
  font-size: 0.85rem;
  color: var(--gray-400);
  font-weight: 500;
}

.narrative-stats {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}

.narrative-stat {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid var(--border-subtle);
}

.narrative-stat-label {
  font-size: 0.8rem;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.narrative-stat-value {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
}

.narrative-stat-value.gold {
  color: var(--gold);
}

.narrative-stat-value.green {
  color: var(--green);
}

.narrative-desc {
  font-size: 0.9rem;
  color: var(--gray-300);
  line-height: 1.6;
}

.narrative-desc strong {
  color: var(--white);
}

.narrative-quote {
  text-align: center;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-style: italic;
  color: var(--gold);
  opacity: 0.8;
}

/* ========= SCENARIOS TABLE ========= */
.table-wrapper {
  overflow-x: auto;
  margin-bottom: 16px;
}

.scenarios-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}

.scenarios-table th {
  font-family: var(--font-display);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gray-400);
  padding: 16px 20px;
  text-align: left;
  border-bottom: 1px solid var(--border-subtle);
  font-weight: 600;
}

.scenarios-table td {
  padding: 16px 20px;
  border-bottom: 1px solid var(--border-subtle);
  color: var(--gray-200);
}

.scenarios-table tbody tr:hover {
  background: rgba(247, 147, 26, 0.03);
}

.row-highlight {
  background: rgba(247, 147, 26, 0.05) !important;
}

.row-highlight td {
  color: var(--gold-light);
  font-weight: 600;
}

.row-gold {
  background: rgba(247, 147, 26, 0.08) !important;
}

.row-gold td {
  color: var(--gold);
  font-weight: 700;
  font-size: 1rem;
}

.table-disclaimer {
  text-align: center;
  font-size: 0.8rem;
  color: var(--gray-500);
  margin-top: 12px;
}

/* ========= CATALYSTS ========= */
.catalysts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.catalyst-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 14px;
  padding: 28px;
  transition: all 0.3s;
}

.catalyst-card:hover {
  border-color: var(--border);
  transform: translateY(-3px);
}

.catalyst-timeline {
  display: inline-block;
  padding: 4px 10px;
  background: var(--gray-700);
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gray-300);
  letter-spacing: 0.05em;
  margin-bottom: 14px;
}

.catalyst-timeline.active {
  background: rgba(34, 197, 94, 0.1);
  color: var(--green);
  border: 1px solid rgba(34, 197, 94, 0.2);
}

.catalyst-card h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--white);
  margin-bottom: 8px;
}

.catalyst-card p {
  font-size: 0.9rem;
  color: var(--gray-400);
  line-height: 1.5;
}

/* ========= HOW TO BUY ========= */
.buy-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.buy-step {
  flex: 1;
  min-width: 200px;
  max-width: 320px;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  padding: 32px;
  text-align: center;
  transition: all 0.3s;
}

.buy-step:hover {
  border-color: var(--border);
  transform: translateY(-3px);
}

.step-number {
  width: 48px;
  height: 48px;
  background: var(--gold);
  color: #000;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.buy-step h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 8px;
}

.buy-step p {
  font-size: 0.9rem;
  color: var(--gray-400);
  line-height: 1.5;
}

.buy-step-arrow {
  color: var(--gold);
  font-size: 1.5rem;
  font-weight: 700;
}

.buy-ca {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  max-width: 700px;
  margin: 0 auto 32px;
  flex-wrap: wrap;
}

.buy-links {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

/* ========= FOOTER ========= */
.footer {
  border-top: 1px solid var(--border-subtle);
  padding: 60px 24px;
  text-align: center;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.footer-socials {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 24px;
}

.footer-socials a {
  color: var(--gray-300);
  font-weight: 500;
}

.footer-socials a:hover {
  color: var(--gold);
}

.footer-disclaimer {
  font-size: 0.8rem;
  color: var(--gray-500);
  max-width: 500px;
  margin: 0 auto 12px;
  line-height: 1.5;
}

.footer-copy {
  font-size: 0.75rem;
  color: var(--gray-600);
}

/* ========= ANIMATIONS ========= */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger animation for timeline */
.timeline-item.fade-up:nth-child(3) {
  transition-delay: 0.1s;
}
.timeline-item.fade-up:nth-child(4) {
  transition-delay: 0.2s;
}
.timeline-item.fade-up:nth-child(5) {
  transition-delay: 0.3s;
}
.timeline-item.fade-up:nth-child(6) {
  transition-delay: 0.4s;
}

.narrative-card.fade-up:nth-child(2) {
  transition-delay: 0.1s;
}
.narrative-card.fade-up:nth-child(3) {
  transition-delay: 0.2s;
}

.catalyst-card.fade-up:nth-child(2) {
  transition-delay: 0.05s;
}
.catalyst-card.fade-up:nth-child(3) {
  transition-delay: 0.1s;
}
.catalyst-card.fade-up:nth-child(4) {
  transition-delay: 0.15s;
}
.catalyst-card.fade-up:nth-child(5) {
  transition-delay: 0.2s;
}
.catalyst-card.fade-up:nth-child(6) {
  transition-delay: 0.25s;
}

.stat.fade-up:nth-child(2) {
  transition-delay: 0.05s;
}
.stat.fade-up:nth-child(3) {
  transition-delay: 0.1s;
}
.stat.fade-up:nth-child(4) {
  transition-delay: 0.15s;
}

/* ========= RESPONSIVE ========= */
@media (max-width: 968px) {
  .nav-links,
  .nav-socials {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .hero {
    flex-direction: column;
    text-align: center;
    padding-top: 100px;
    gap: 40px;
  }

  .hero-sub {
    margin: 0 auto 32px;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-ca {
    margin: 0 auto;
  }

  .hero-image {
    flex: none;
    max-width: 300px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .proof-stat-row {
    gap: 20px;
    flex-wrap: wrap;
  }

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

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

  .buy-step-arrow {
    display: none;
  }

  .stats-inner {
    gap: 24px;
  }

  .stat-divider {
    display: none;
  }

  .stat-value {
    font-size: 1.6rem;
  }
}

@media (max-width: 480px) {
  .hero-title {
    gap: 8px 10px;
  }

  .section {
    padding: 60px 16px;
  }

  .buy-ca {
    flex-direction: column;
    text-align: center;
  }

  .scenarios-table {
    font-size: 0.8rem;
  }

  .scenarios-table th,
  .scenarios-table td {
    padding: 10px 8px;
  }
}
