:root {
  --bg: #0a0a0f;
  --bg-elevated: #12121a;
  --bg-card: #16161f;
  --fg: #e8e6e3;
  --fg-muted: #8a8a95;
  --fg-dim: #5a5a65;
  --accent: #00dc82;
  --accent-dim: rgba(0, 220, 130, 0.12);
  --gold: #e6c547;
  --gold-dim: rgba(230, 197, 71, 0.12);
  --border: rgba(255, 255, 255, 0.06);
  --font-display: 'Space Grotesk', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-display);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(ellipse at 30% 50%, rgba(0, 220, 130, 0.04) 0%, transparent 50%),
              radial-gradient(ellipse at 70% 30%, rgba(230, 197, 71, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

.hero-grid {
  max-width: 900px;
  position: relative;
  z-index: 1;
}

.hero-label {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.3em;
  color: var(--accent);
  margin-bottom: 2rem;
  font-weight: 500;
}

.hero-label .accent {
  color: var(--gold);
}

.hero h1 {
  font-size: clamp(4rem, 12vw, 9rem);
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: -0.03em;
  margin-bottom: 2rem;
}

.hero h1 .thin {
  font-weight: 400;
  color: var(--fg-muted);
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--fg-muted);
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 3rem;
}

.hero-ticker {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  padding: 1rem 1.5rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow-x: auto;
  white-space: nowrap;
}

.tick {
  color: var(--fg-dim);
  letter-spacing: 0.1em;
}

.tick-val {
  font-weight: 600;
}

.tick-val.positive {
  color: var(--accent);
}

.tick-sep {
  color: var(--fg-dim);
  opacity: 0.3;
}

/* ── THESIS ── */
.thesis {
  padding: 8rem 2rem;
  border-top: 1px solid var(--border);
}

.thesis-container {
  max-width: 800px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 2rem;
  align-items: start;
}

.thesis-number {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--gold);
  font-weight: 600;
  padding-top: 0.4rem;
}

.thesis-content h2 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.thesis-content p {
  font-size: 1.1rem;
  color: var(--fg-muted);
  line-height: 1.8;
}

/* ── PILLARS ── */
.pillars {
  padding: 6rem 2rem 8rem;
  border-top: 1px solid var(--border);
}

.pillars-header {
  max-width: 800px;
  margin: 0 auto 4rem;
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 2rem;
  align-items: center;
}

.pillars-header h2 {
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.pillars-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.pillar {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: border-color 0.3s ease;
}

.pillar:hover {
  border-color: rgba(0, 220, 130, 0.2);
}

.pillar-tag {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  color: var(--accent);
  background: var(--accent-dim);
  padding: 0.35rem 0.75rem;
  border-radius: 4px;
  width: fit-content;
}

.pillar h3 {
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.pillar p {
  font-size: 0.95rem;
  color: var(--fg-muted);
  line-height: 1.7;
  flex-grow: 1;
}

.pillar-meta {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--fg-dim);
  letter-spacing: 0.05em;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

/* ── NUMBERS ── */
.numbers {
  padding: 6rem 2rem 8rem;
  border-top: 1px solid var(--border);
}

.numbers-header {
  max-width: 800px;
  margin: 0 auto 4rem;
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 2rem;
  align-items: center;
}

.numbers-header h2 {
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.numbers-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.number-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2rem 1.5rem;
  text-align: center;
}

.number-value {
  font-family: var(--font-mono);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.number-label {
  font-size: 0.9rem;
  color: var(--fg);
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.number-note {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--fg-dim);
  letter-spacing: 0.05em;
}

/* ── CLOSING ── */
.closing {
  padding: 10rem 2rem;
  border-top: 1px solid var(--border);
  text-align: center;
  position: relative;
}

.closing::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.closing-container {
  max-width: 700px;
  margin: 0 auto;
}

.closing-quote {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: -0.02em;
  margin-bottom: 2rem;
}

.closing-sub {
  font-size: 1rem;
  color: var(--fg-muted);
  line-height: 1.8;
}

/* ── FOOTER ── */
.site-footer {
  padding: 3rem 2rem;
  border-top: 1px solid var(--border);
}

.footer-container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-brand {
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: -0.01em;
}

.footer-meta {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--fg-dim);
  letter-spacing: 0.05em;
}

/* ── HERO CTA ── */
.hero-cta {
  margin-top: 2rem;
}

.hero-dashboard-link {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid rgba(0, 220, 130, 0.3);
  padding-bottom: 2px;
  transition: border-color 0.2s, color 0.2s;
}

.hero-dashboard-link:hover {
  border-bottom-color: var(--accent);
  color: #00f090;
}

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

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

  .thesis-container,
  .pillars-header,
  .numbers-header {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .thesis-number {
    padding-top: 0;
  }

  .hero-ticker {
    flex-wrap: wrap;
    gap: 0.5rem;
  }

  .tick-sep {
    display: none;
  }

  .footer-container {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

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

  .hero {
    padding: 4rem 1.5rem;
  }

  .closing {
    padding: 6rem 1.5rem;
  }
}