/* ============================================================
   RECAP.NG — GLOBAL DESIGN SYSTEM
   Flat, minimalist, editorial. Playful at the interface.
   Serious in the substance.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&family=Inter:wght@300;400;500;600&family=JetBrains+Mono:wght@400;500;700&display=swap');

/* ── TOKENS ─────────────────────────────────────────────── */
:root {
  --black:       #0A0A0A;
  --off-black:   #111111;
  --white:       #FAFAFA;
  --off-white:   #F2F2F0;
  --green:       #1B7F4A;
  --green-light: #25A660;
  --acid:        #C8F000;
  --blue:        #1A3D8F;
  --blue-light:  #2551C3;
  --gold:        #C8960C;
  --slate:       #EBEBEB;
  --mid-grey:    #888888;
  --border:      rgba(10,10,10,0.1);

  --font-head:   'Space Grotesk', 'Arial Black', sans-serif;
  --font-body:   'Inter', Arial, sans-serif;
  --font-mono:   'JetBrains Mono', 'Courier New', monospace;

  --r-sm:    4px;
  --r-md:    8px;
  --r-lg:    16px;
  --r-pill:  999px;

  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ── RESET ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--black);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
ul { list-style: none; }

/* ── TYPOGRAPHY ──────────────────────────────────────────── */
.t-hero {
  font-family: var(--font-head);
  font-size: clamp(3.5rem, 10vw, 9rem);
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: -0.02em;
}
.t-h1 {
  font-family: var(--font-head);
  font-size: clamp(2.5rem, 6vw, 5.5rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.02em;
}
.t-h2 {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 4vw, 3.5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.01em;
}
.t-h3 {
  font-family: var(--font-head);
  font-size: clamp(1.3rem, 2.5vw, 2rem);
  font-weight: 600;
  line-height: 1.15;
}
.t-h4 {
  font-family: var(--font-head);
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-weight: 600;
}
.t-lead {
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 400;
  line-height: 1.65;
  color: #333;
}
.t-body { font-size: 1rem; line-height: 1.7; }
.t-small { font-size: 0.85rem; line-height: 1.5; color: var(--mid-grey); }
.t-mono {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.t-label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--mid-grey);
}
.t-number {
  font-family: var(--font-mono);
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1;
  color: var(--black);
}

/* ── LAYOUT ──────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}
.container--narrow { max-width: 900px; }
.container--wide { max-width: 1440px; }

section { position: relative; }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.grid-6 { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; }

/* ── NAV ─────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: var(--white);
  border-bottom: 1.5px solid var(--black);
  height: 64px;
  display: flex;
  align-items: center;
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}
.nav__logo-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav__ratecard-logo {
  height: 28px;
  width: auto;
}
.nav__divider {
  width: 1.5px;
  height: 28px;
  background: var(--black);
  opacity: 0.25;
}
.nav__site-name {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--black);
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav__links a {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--black);
  opacity: 0.6;
  transition: opacity 0.2s;
}
.nav__links a:hover, .nav__links a.active { opacity: 1; }
.nav__right { display: flex; align-items: center; gap: 16px; }

/* ── MODE TOGGLE ─────────────────────────────────────────── */
.mode-toggle {
  display: flex;
  align-items: center;
  background: var(--off-white);
  border: 1.5px solid var(--black);
  border-radius: var(--r-pill);
  padding: 3px;
  gap: 0;
  position: relative;
}
.mode-toggle__btn {
  padding: 5px 14px;
  border-radius: var(--r-pill);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: all 0.25s var(--ease-out);
  color: var(--mid-grey);
  background: none;
  white-space: nowrap;
}
.mode-toggle__btn.active {
  background: var(--black);
  color: var(--acid);
}
.mode-toggle__btn:hover:not(.active) { color: var(--black); }

/* Mode-driven content visibility */
body.street-mode .pro-only { display: none !important; }
body.pro-mode .street-only { display: none !important; }

/* ── HERO SECTION ────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  background: var(--black);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-top: 64px;
  position: relative;
  overflow: hidden;
}
.hero__bg-pattern {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
/* Large geometric circles — flat design background */
.hero__circle {
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid rgba(200, 240, 0, 0.15);
}
.hero__circle--1 {
  width: 800px; height: 800px;
  right: -200px; top: -200px;
  border-color: rgba(200, 240, 0, 0.12);
}
.hero__circle--2 {
  width: 500px; height: 500px;
  right: 100px; top: 100px;
  border-color: rgba(27, 127, 74, 0.25);
  background: rgba(27, 127, 74, 0.04);
}
.hero__circle--3 {
  width: 300px; height: 300px;
  right: 250px; top: 250px;
  border-color: rgba(200, 240, 0, 0.2);
  background: rgba(200, 240, 0, 0.03);
}
.hero__grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(200,240,0,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200,240,0,0.04) 1px, transparent 1px);
  background-size: 80px 80px;
}
.hero__noise {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  opacity: 0.3;
}

.hero__recap-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-head);
  font-size: clamp(18vw, 30vw, 400px);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(200, 240, 0, 0.12);
  text-stroke: 1.5px rgba(200, 240, 0, 0.12);
  pointer-events: none;
  white-space: nowrap;
  user-select: none;
}

.hero__content {
  position: relative;
  z-index: 2;
  padding: 64px 24px;
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
}
.hero__eyebrow {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--acid);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero__eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 1.5px;
  background: var(--acid);
}
.hero__headline {
  font-family: var(--font-head);
  font-size: clamp(3rem, 8vw, 8rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 0.95;
  color: var(--white);
  margin-bottom: 32px;
  max-width: 14ch;
}
.hero__headline .hl-green { color: var(--acid); }
.hero__subhead {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: rgba(255,255,255,0.65);
  max-width: 52ch;
  line-height: 1.65;
  margin-bottom: 48px;
}
.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.hero__scroll-bar {
  position: relative;
  height: 4px;
  background: rgba(255,255,255,0.08);
  width: 100%;
}
.hero__scroll-bar-fill {
  position: absolute;
  left: 0; top: 0; height: 100%;
  background: var(--acid);
  width: 0%;
  transition: width 0.1s linear;
}

/* ── BUTTONS ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--r-pill);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: all 0.2s var(--ease-out);
  white-space: nowrap;
  border: 1.5px solid transparent;
}
.btn--primary {
  background: var(--acid);
  color: var(--black);
  border-color: var(--acid);
}
.btn--primary:hover {
  background: #d4ff00;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(200,240,0,0.3);
}
.btn--outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.3);
}
.btn--outline-white:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.06);
}
.btn--outline-black {
  background: transparent;
  color: var(--black);
  border-color: var(--black);
}
.btn--outline-black:hover {
  background: var(--black);
  color: var(--white);
}
.btn--black {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}
.btn--black:hover {
  background: var(--off-black);
  transform: translateY(-1px);
}
.btn--green {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}
.btn--sm { padding: 8px 16px; font-size: 0.75rem; }
.btn--lg { padding: 16px 36px; font-size: 0.95rem; }

/* ── SECTION SPACING ─────────────────────────────────────── */
.section { padding: 100px 0; }
.section--sm { padding: 64px 0; }
.section--lg { padding: 140px 0; }
.section--black { background: var(--black); color: var(--white); }
.section--green { background: var(--green); color: var(--white); }
.section--acid { background: var(--acid); color: var(--black); }
.section--off-white { background: var(--off-white); }

.section__header { margin-bottom: 64px; }
.section__header--center { text-align: center; }
.section__eyebrow {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mid-grey);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.section__eyebrow::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: currentColor;
}
.section--black .section__eyebrow { color: rgba(255,255,255,0.4); }
.section--green .section__eyebrow { color: rgba(255,255,255,0.6); }
.section--acid .section__eyebrow { color: rgba(10,10,10,0.5); }
.section--acid .section__eyebrow::before { background: rgba(10,10,10,0.4); }
.section__rule {
  width: 48px;
  height: 3px;
  background: var(--acid);
  margin: 20px 0;
}
.section--black .section__rule { background: var(--acid); }
.section--acid .section__rule { background: var(--black); }

/* ── BIG NUMBER CARDS ────────────────────────────────────── */
.numbers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1.5px solid var(--black);
}
.number-card {
  padding: 40px 32px;
  border-right: 1.5px solid var(--black);
  border-bottom: 1.5px solid var(--black);
  position: relative;
  transition: background 0.2s;
}
.number-card:hover { background: var(--off-white); }
.number-card:nth-child(3n) { border-right: none; }
.number-card:nth-child(4), .number-card:nth-child(5), .number-card:nth-child(6) { border-bottom: none; }
.number-card__label {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mid-grey);
  margin-bottom: 16px;
}
.number-card__value {
  font-family: var(--font-mono);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
  line-height: 1;
  color: var(--black);
  margin-bottom: 12px;
}
.number-card__value .accent { color: var(--green); }
.number-card__desc {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.5;
  margin-bottom: 20px;
}
.number-card__tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: var(--r-pill);
  background: var(--acid);
  color: var(--black);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* Wetin means expand button */
.wetin-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green);
  border: 1px solid var(--green);
  border-radius: var(--r-pill);
  padding: 4px 12px;
  cursor: pointer;
  transition: all 0.2s;
  background: none;
}
.pro-only .wetin-btn, body.pro-mode .wetin-btn { color: var(--blue); border-color: var(--blue); }
.wetin-btn:hover { background: var(--green); color: var(--white); }
body.pro-mode .wetin-btn:hover { background: var(--blue); color: var(--white); }
.wetin-btn .arrow { transition: transform 0.2s; }
.wetin-btn.open .arrow { transform: rotate(180deg); }

.wetin-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s var(--ease-out);
}
.wetin-content.open { max-height: 200px; }
.wetin-content__inner {
  margin-top: 16px;
  padding: 16px;
  background: var(--off-white);
  border-radius: var(--r-md);
  border-left: 3px solid var(--acid);
  font-size: 0.9rem;
  line-height: 1.6;
}
.wetin-content__inner strong { color: var(--green); }

/* ── WHAT CHANGES SECTION ────────────────────────────────── */
.changes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 56px;
}
.change-card {
  padding: 40px 32px;
  border: 1.5px solid var(--black);
  border-radius: var(--r-md);
  position: relative;
  transition: transform 0.2s var(--ease-out), box-shadow 0.2s;
}
.change-card:hover {
  transform: translateY(-4px);
  box-shadow: 6px 6px 0px var(--black);
}
.change-card__num {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  color: var(--mid-grey);
  margin-bottom: 24px;
}
.change-card__icon {
  width: 48px;
  height: 48px;
  background: var(--acid);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 1.4rem;
}
.change-card h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 12px; }
.change-card p { font-size: 0.9rem; line-height: 1.65; color: #444; }

/* ── HISTORICAL TIMELINE ─────────────────────────────────── */
.timeline {
  display: flex;
  gap: 0;
  position: relative;
  margin-top: 56px;
}
.timeline::before {
  content: '';
  position: absolute;
  top: 48px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--black);
}
.timeline__item {
  flex: 1;
  padding: 0 20px;
  position: relative;
}
.timeline__dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--black);
  margin: 40px auto 24px;
  position: relative;
  z-index: 2;
  border: 3px solid var(--white);
  box-shadow: 0 0 0 2px var(--black);
}
.timeline__dot--accent {
  background: var(--acid);
  border-color: var(--white);
  box-shadow: 0 0 0 2px var(--acid);
  width: 24px;
  height: 24px;
}
.timeline__year {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--mid-grey);
  text-align: center;
  margin-bottom: 8px;
}
.timeline__value {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 8px;
}
.timeline__label {
  font-size: 0.8rem;
  text-align: center;
  color: #666;
  line-height: 1.4;
}

/* ── SECTOR CARDS ────────────────────────────────────────── */
.sectors-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.sector-card {
  background: var(--off-white);
  border: 1.5px solid var(--black);
  border-radius: var(--r-md);
  padding: 36px 28px;
  cursor: pointer;
  transition: all 0.2s var(--ease-out);
  position: relative;
  overflow: hidden;
}
.sector-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease-out);
}
.sector-card:hover { transform: translateY(-4px); border-color: var(--green); }
.sector-card:hover::before { transform: scaleX(1); }
.sector-card__emoji { font-size: 2rem; margin-bottom: 20px; }
.sector-card__name {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.sector-card__desc { font-size: 0.875rem; color: #555; line-height: 1.6; }
.sector-card__tag {
  margin-top: 20px;
  display: inline-flex;
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--black);
  color: var(--white);
  padding: 4px 10px;
  border-radius: var(--r-pill);
}

/* ── ROAD TO $1 TRILLION ─────────────────────────────────── */
.trillion-section { background: var(--black); color: var(--white); }
.trillion-flow {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  margin: 56px 0;
}
.flow-step {
  padding: 20px 24px;
  border: 1.5px solid rgba(255,255,255,0.2);
  border-radius: var(--r-md);
  font-size: 0.9rem;
  font-weight: 600;
  text-align: center;
  max-width: 160px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s var(--ease-out);
  color: rgba(255,255,255,0.85);
}
.flow-step.animate-in { opacity: 1; transform: translateY(0); }
.flow-step--end {
  background: var(--acid);
  color: var(--black);
  border-color: var(--acid);
  font-size: 1.1rem;
}
.flow-arrow {
  color: rgba(255,255,255,0.3);
  font-size: 1.5rem;
  flex-shrink: 0;
}
.trillion-stat-bar {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r-md);
  padding: 32px;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.trillion-stat-bar__num {
  font-family: var(--font-mono);
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 700;
  color: var(--acid);
  line-height: 1;
  margin-bottom: 12px;
}
.trillion-stat-bar__label { color: rgba(255,255,255,0.6); font-size: 0.95rem; }

/* ── MYTH VS REALITY ─────────────────────────────────────── */
.myth-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.myth-card {
  border: 1.5px solid var(--black);
  border-radius: var(--r-md);
  overflow: hidden;
  cursor: pointer;
}
.myth-card__front {
  padding: 32px;
  background: var(--off-white);
}
.myth-card__back {
  padding: 32px;
  background: var(--green);
  color: var(--white);
  display: none;
}
.myth-card.flipped .myth-card__front { display: none; }
.myth-card.flipped .myth-card__back { display: block; }
.myth-card__badge {
  display: inline-flex;
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--r-pill);
  margin-bottom: 16px;
}
.myth-card__badge--myth { background: #FFE5E5; color: #CC0000; }
.myth-card__badge--reality { background: rgba(200,240,0,0.25); color: var(--acid); }
.myth-card__text { font-size: 0.95rem; line-height: 1.6; font-weight: 500; }
.myth-card__instruction {
  margin-top: 16px;
  font-size: 0.7rem;
  color: var(--mid-grey);
  font-family: var(--font-mono);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.myth-card.flipped .myth-card__instruction { display: none; }

/* ── FINAL CTA ───────────────────────────────────────────── */
.cta-section {
  background: var(--acid);
  padding: 100px 0;
  text-align: center;
}
.cta-section h2 {
  font-family: var(--font-head);
  font-size: clamp(2rem, 5vw, 4.5rem);
  font-weight: 700;
  color: var(--black);
  max-width: 18ch;
  margin: 0 auto 40px;
  line-height: 1.1;
}
.cta-buttons { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ── FOOTER ──────────────────────────────────────────────── */
.footer {
  background: var(--black);
  color: var(--white);
  padding: 56px 0 32px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer__brand { display: flex; flex-direction: column; gap: 16px; }
.footer__brand-desc { font-size: 0.875rem; color: rgba(255,255,255,0.5); max-width: 28ch; line-height: 1.6; }
.footer__heading {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 16px;
}
.footer__links { display: flex; flex-direction: column; gap: 10px; }
.footer__links a { font-size: 0.875rem; color: rgba(255,255,255,0.65); transition: color 0.2s; }
.footer__links a:hover { color: var(--acid); }
.footer__bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer__bottom p { font-size: 0.75rem; color: rgba(255,255,255,0.35); }
.footer__caveat { font-size: 0.7rem; color: rgba(255,255,255,0.3); font-style: italic; }

/* ── SCROLL ANIMATION ────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.65s var(--ease-out), transform 0.65s var(--ease-out);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal--delay-1 { transition-delay: 0.1s; }
.reveal--delay-2 { transition-delay: 0.2s; }
.reveal--delay-3 { transition-delay: 0.3s; }
.reveal--delay-4 { transition-delay: 0.4s; }
.reveal--delay-5 { transition-delay: 0.5s; }

/* ── TAGS / BADGES ───────────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: var(--r-pill);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.badge--green { background: var(--green); color: var(--white); }
.badge--acid { background: var(--acid); color: var(--black); }
.badge--black { background: var(--black); color: var(--white); }
.badge--outline { border: 1.5px solid var(--black); color: var(--black); }

/* ── DIVIDER ─────────────────────────────────────────────── */
.divider { height: 1.5px; background: var(--black); }
.divider--light { background: rgba(0,0,0,0.1); }

/* ── SCROLLBAR ───────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: var(--off-white); }
::-webkit-scrollbar-thumb { background: var(--black); border-radius: 3px; }

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-6 { grid-template-columns: repeat(3, 1fr); }
  .nav__links { display: none; }
  .trillion-flow { gap: 4px; }
  .flow-step { max-width: 130px; padding: 16px; font-size: 0.8rem; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }
  .grid-6 { grid-template-columns: repeat(2, 1fr); }
  .numbers-grid { grid-template-columns: 1fr; }
  .number-card:nth-child(3n) { border-right: 1.5px solid var(--black); }
  .number-card { border-right: none; }
  .changes-grid { grid-template-columns: 1fr; gap: 16px; }
  .sectors-grid { grid-template-columns: 1fr; }
  .myth-grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom { flex-direction: column; gap: 12px; text-align: center; }
  .timeline { flex-direction: column; }
  .timeline::before { display: none; }
  .trillion-flow { flex-direction: column; align-items: center; }
  .flow-step { max-width: 100%; }
  .flow-arrow { transform: rotate(90deg); }
  .hero__recap-text { display: none; }
  .section { padding: 72px 0; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .mode-toggle__btn { padding: 5px 10px; font-size: 0.65rem; }
  .hero__content { padding: 48px 16px; }
  .number-card { padding: 28px 20px; }
  .cta-section { padding: 72px 0; }
}
