/* Import Fonts */
@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@400;500;600&display=swap');

@font-face {
  font-family: 'Zalando Sans';
  src: local('Inter'), local('system-ui');
  font-weight: 100 900;
  font-style: normal;
}

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

:root {
  /* Extreme Earth Brand Colors — XE Design Guide */
  --bg-dark: #080c14;
  /* deep blue-black — from flat gray to atmospheric */
  --bg-surface: #0d1322;
  /* card/panel backgrounds */
  --bg-elevated: #141e30;
  /* raised states */
  --text-light: #e8f0ff;
  /* slightly blue-cast white for warmth */
  --cyan: #88BAF8;
  --cobalt: #0047AB;
  --teal: #3C7B68;

  /* Isometric depth palette */
  --cobalt-dark: #002060;
  --teal-dark: #1f4d41;

  /* Derived */
  --card-bg: rgba(13, 19, 34, 0.85);
  --card-hover: rgba(136, 186, 248, 0.05);
  --text-muted: rgba(232, 240, 255, 0.48);
  --text-body: rgba(232, 240, 255, 0.74);
  --section-alt-bg: rgba(0, 47, 120, 0.08);
  --border-subtle: rgba(136, 186, 248, 0.1);
  --border-mid: rgba(136, 186, 248, 0.22);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'JetBrains Mono', monospace;
  color: var(--text-light);
  background-color: var(--bg-dark);
  /* Ambient cobalt glow at top — ties the hero scene to the page */
  background-image:
    radial-gradient(ellipse 110% 45% at 50% -2%, rgba(0, 71, 171, 0.22) 0%, transparent 65%);
  line-height: 1.7;
  overflow-x: hidden;
  padding-top: 80px;
}

/* ── Typography ─────────────────────────────── */

h1,
h2,
h3 {
  font-family: 'Zalando Sans', -apple-system, BlinkMacSystemFont, 'Inter', 'Segoe UI', sans-serif;
}

h1 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800;
  margin-bottom: 1.5rem;
  color: var(--text-light);
  line-height: 1.12;
}

h2 {
  font-size: 2.375rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-light);
  padding-top: 0.5rem;
}

.section-heading {
  display: inline-block;
  position: relative;
}

.section-heading::before {
  content: '';
  display: block;
  width: 2.5rem;
  height: 2px;
  background: linear-gradient(90deg, var(--cyan), rgba(136, 186, 248, 0.3));
  margin-bottom: 1.25rem;
  border-radius: 1px;
}

h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text-light);
}

p {
  font-size: 1.0625rem;
  margin-bottom: 1rem;
  color: var(--text-body);
}

.lead {
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 2rem;
  color: rgba(232, 240, 255, 0.85);
  line-height: 1.55;
  font-family: 'Zalando Sans', -apple-system, BlinkMacSystemFont, 'Inter', sans-serif;
}

.tagline {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  line-height: 1.75;
  max-width: 720px;
}

.presenter {
  font-size: clamp(0.6em, 1vw, 1rem);
  color: var(--text-muted);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-family: 'JetBrains Mono', monospace;
}

/* ── Scroll reveal ──────────────────────────── */

[data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition:
    opacity 0.65s ease,
    transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}

[data-reveal-delay="1"] {
  transition-delay: 0.08s;
}

[data-reveal-delay="2"] {
  transition-delay: 0.16s;
}

[data-reveal-delay="3"] {
  transition-delay: 0.24s;
}

[data-reveal-delay="4"] {
  transition-delay: 0.32s;
}

[data-reveal-delay="5"] {
  transition-delay: 0.40s;
}

@media (prefers-reduced-motion: reduce) {
  [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .hero-statement em {
    animation: none;
    background-position: 0% center;
  }
}

/* ── Lists ──────────────────────────────────── */

ul {
  list-style: none;
  padding: 0;
}

ul li {
  font-size: 1.0625rem;
  margin-bottom: 1.125rem;
  padding-left: 1.75rem;
  position: relative;
  color: var(--text-body);
}

ul li::before {
  content: '—';
  color: var(--cyan);
  font-weight: bold;
  position: absolute;
  left: 0;
}

/* ── Page Layout ────────────────────────────── */

.scroll-page {
  width: 100%;
}

.section {
  padding: 7rem 2rem;
  position: relative;
}

.section:nth-child(even) {
  background: var(--section-alt-bg);
}

.section-content {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}

/* ── Hero ───────────────────────────────────── */

.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 0;
  overflow: hidden;
}

/* Gradient scrim — full-width left panel behind the text */
.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg,
      rgba(8, 12, 20, 1) 0%,
      rgba(8, 12, 20, 0.97) 28%,
      rgba(8, 12, 20, 0.78) 50%,
      rgba(8, 12, 20, 0.25) 70%,
      transparent 88%);
  z-index: 1;
  pointer-events: none;
}

.hero-text {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 760px;
  padding: 8rem clamp(2rem, 4vw, 4rem) 8rem 2.5rem;
  margin-left: max(0px, calc((100vw - 1280px) / 2));
  text-align: left;
}

/* Full-bleed scene — covers the entire hero behind text */
.hero-scene {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: #06060d;
  z-index: 0;
  filter: brightness(1.5);
  pointer-events: none;
}

.hero-scene * {
  pointer-events: none;
}

/* Hide Unicorn Studio link badge */
a[href*="unicorn.studio"] {
  display: none !important;
}

/* Cover canvas-embedded attribution at bottom of scene */
.hero-scene-badge-cover {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background: #06060d;
  z-index: 10;
  pointer-events: none;
}


.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 2.25rem;
  opacity: 0.9;
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 1.5px;
  background: linear-gradient(90deg, var(--cyan), rgba(136, 186, 248, 0.4));
  flex-shrink: 0;
}

.hero-statement {
  font-family: 'Zalando Sans', -apple-system, BlinkMacSystemFont, 'Inter', 'Segoe UI', sans-serif;
  font-size: clamp(1.0em, 4vw, 4rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: var(--text-light);
  margin: 0 0 1.75rem;
}

.hero-statement em {
  font-style: normal;
  background: linear-gradient(110deg, var(--cyan) 0%, #c8deff 45%, var(--cyan) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmerText 5s linear infinite;
}

@keyframes shimmerText {
  0% {
    background-position: 0% center;
  }

  100% {
    background-position: 200% center;
  }
}

.hero-text .tagline {
  margin: 0 0 2rem;
  font-size: clamp(0.75em, 1.5vw, 1.5rem);
  color: var(--text-body);
  line-height: 1.8;
}


/* ── Challenge panels (Pravah alert-style) ───── */

.challenge-panels {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 2.5rem;
}

.challenge-panel {
  display: grid;
  grid-template-columns: 88px 1fr;
  align-items: center;
  gap: 1.5rem;
  padding: 1.25rem 1.75rem;
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-left: 3px solid var(--level-color, var(--cyan));
  transition: background 0.2s ease, transform 0.18s ease, border-left-width 0.18s ease;
}

.challenge-panel:hover {
  transform: translateX(5px);
  border-left-width: 5px;
}

.challenge-panel[data-level="critical"] {
  --level-color: #E05A47;
  background: rgba(224, 90, 71, 0.055);
}

.challenge-panel[data-level="warning"] {
  --level-color: #E8A838;
  background: rgba(232, 168, 56, 0.045);
}

.challenge-panel[data-level="advisory"] {
  --level-color: var(--cyan);
  background: rgba(136, 186, 248, 0.04);
}

.challenge-panel[data-level="elevated"] {
  --level-color: #5aad96;
  background: rgba(90, 173, 150, 0.04);
}

.challenge-badge {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.56rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--level-color, var(--cyan));
  padding: 0.28rem 0.6rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--level-color, var(--cyan));
  border-radius: 2px;
  white-space: nowrap;
  text-align: center;
  opacity: 0.9;
}

.challenge-text {
  font-size: 0.9875rem;
  color: var(--text-body);
  margin: 0;
  line-height: 1.6;
}

/* ── Challenge intro + chart ──────────────────── */

.challenge-intro {
  font-size: 1rem;
  color: var(--text-body);
  line-height: 1.7;
  margin-top: 1.75rem;
  max-width: 680px;
}

.challenge-chart-wrap {
  margin-top: 2rem;
  margin-bottom: 2.5rem;
  padding: 1.5rem 1.75rem;
  border: 1px solid var(--border-subtle);
  background: var(--bg-surface);
}

.challenge-chart-wrap .ctrl-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 1rem 0 1.25rem;
}

.challenge-chart-wrap .haz-btn {
  font-size: 12px;
  padding: 5px 11px;
  border-radius: 20px;
  border: 0.5px solid var(--border-subtle);
  background: var(--bg-dark);
  color: var(--text-muted);
  cursor: pointer;
  transition: background .15s, color .15s;
  font-family: 'JetBrains Mono', monospace;
}

.challenge-chart-wrap .haz-btn.active {
  color: #fff;
  border-color: transparent;
}

.challenge-chart-wrap .tab-row {
  display: flex;
  gap: 0;
  margin-bottom: 1.25rem;
  border-bottom: 0.5px solid rgba(136, 186, 248, 0.07);
}

.challenge-chart-wrap .tab {
  font-size: 13px;
  padding: 6px 14px;
  cursor: pointer;
  color: var(--text-muted);
  border-bottom: 2px solid transparent;
  margin-bottom: -0.5px;
  font-family: 'JetBrains Mono', monospace;
}

.challenge-chart-wrap .tab.active {
  color: var(--text-light);
  border-bottom-color: var(--cyan);
  font-weight: 500;
}

.challenge-chart-wrap .metric-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 1.25rem;
}

.challenge-chart-wrap .metric-card {
  background: var(--bg-elevated);
  border-radius: 2px;
  padding: .75rem 1rem;
}

.challenge-chart-wrap .metric-label {
  font-size: 12px;
  color: var(--text-muted);
  margin: 0 0 4px;
  font-family: 'JetBrains Mono', monospace;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.challenge-chart-wrap .metric-val {
  font-size: 22px;
  font-weight: 500;
  margin: 0;
  color: var(--text-light);
}

.challenge-chart-wrap label {
  font-size: 12px;
  color: var(--text-muted);
  font-family: 'JetBrains Mono', monospace;
}

@media (max-width: 768px) {
  .challenge-chart-wrap .metric-row {
    grid-template-columns: 1fr;
  }
}

/* ── Mission features (iso numbered cards) ──── */

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

.feature {
  background: var(--card-bg);
  padding: 2.5rem 2rem 2.25rem;
  text-align: left;
  border: 1px solid var(--border-subtle);
  border-top: 2px solid rgba(136, 186, 248, 0.25);
  border-radius: 2px;
  box-shadow: 4px 4px 0 var(--cobalt-dark), 7px 7px 0 rgba(0, 0, 0, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-top-color 0.25s ease;
  position: relative;
}

.feature:hover {
  background: var(--card-hover);
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 var(--cobalt-dark), 10px 10px 0 rgba(0, 0, 0, 0.35);
  border-top-color: var(--cyan);
}

.feature-number {
  display: block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--cyan);
  opacity: 0.55;
  margin-bottom: 1.5rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(136, 186, 248, 0.1);
}

.feature h3 {
  font-family: 'Zalando Sans', -apple-system, BlinkMacSystemFont, 'Inter', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 0.875rem;
  line-height: 1.3;
}

.feature p {
  color: var(--text-muted);
  font-size: 0.9375rem;
  margin: 0;
  line-height: 1.75;
}

/* ── Mission feature — per-pillar accents ──── */

.feature--teal {
  --feature-accent: #5FBFA4;
}

.feature--cyan {
  --feature-accent: var(--cyan);
}

.feature--amber {
  --feature-accent: #E8A838;
}

/* Ghost number watermark — gives each card architectural scale */
.feature {
  overflow: hidden;
}

.feature::after {
  content: attr(data-num);
  position: absolute;
  bottom: -0.75rem;
  right: 1.25rem;
  font-family: 'Zalando Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 8rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--feature-accent, var(--cyan));
  opacity: 0.045;
  pointer-events: none;
  user-select: none;
}

/* Active/hover card top border accent */
.feature--teal:hover,
.feature--teal.has-active {
  border-top-color: rgba(95, 191, 164, 0.55);
}

.feature--amber:hover,
.feature--amber.has-active {
  border-top-color: rgba(232, 168, 56, 0.55);
}

/* ── Sub-item rows ──────────────────────────── */

.feature-tags {
  display: flex;
  flex-direction: column;
  margin-top: 1.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(136, 186, 248, 0.1);
}

.feature-tag {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0.625rem 0 0.625rem 0.75rem;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(136, 186, 248, 0.06);
  border-left: 2px solid transparent;
  cursor: pointer;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.71rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  color: var(--text-muted);
  text-align: left;
  transition: color 0.15s ease, border-left-color 0.15s ease, background 0.15s ease, padding-left 0.15s ease;
}

.feature-tag:first-child {
  border-top: 1px solid rgba(136, 186, 248, 0.06);
}

.feature-tag::after {
  content: '+';
  font-size: 1rem;
  font-weight: 300;
  font-family: 'JetBrains Mono', monospace;
  opacity: 0.3;
  flex-shrink: 0;
  margin-left: 0.75rem;
  transition: opacity 0.15s ease, transform 0.2s ease;
}

.feature-tag:hover {
  color: var(--text-body);
  border-left-color: rgba(136, 186, 248, 0.3);
  background: rgba(136, 186, 248, 0.025);
  padding-left: 1rem;
}

.feature-tag:hover::after {
  opacity: 0.55;
}

.feature-tag.active {
  color: var(--feature-accent);
  border-left-color: var(--feature-accent);
  background: rgba(136, 186, 248, 0.04);
  padding-left: 1rem;
}

.feature-tag.active::after {
  content: '×';
  opacity: 0.6;
  transform: rotate(0deg);
}

/* ── Detail panel ───────────────────────────── */

.feature-detail {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.38s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.28s ease;
}

.feature-detail.open {
  max-height: 240px;
  opacity: 1;
}

.feature-detail p {
  padding: 0.9rem 0 0.5rem 1rem;
  margin: 0;
  border-left: 2px solid var(--feature-accent, var(--cyan));
  color: var(--text-muted);
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.84rem;
  line-height: 1.8;
}

/* ── Stats (iso depth) ───────────────────────── */

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

.stat {
  padding: 3rem 2.25rem 2.75rem;
  border: 1px solid var(--border-subtle);
  border-top: 2px solid rgba(136, 186, 248, 0.2);
  border-radius: 2px;
  background: var(--card-bg);
  box-shadow: 4px 4px 0 var(--cobalt-dark), 7px 7px 0 rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
  transition: transform 0.2s ease, border-top-color 0.25s ease;
}

.stat:hover {
  transform: translate(-2px, -2px);
  border-top-color: var(--cyan);
}

.stat::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(to top, rgba(0, 71, 171, 0.07), transparent);
  pointer-events: none;
}

.stat-number {
  display: block;
  font-family: 'JetBrains Mono', monospace;
  font-size: clamp(3.5rem, 6vw, 5.5rem);
  font-weight: 800;
  color: var(--text-light);
  line-height: 1;
  margin-bottom: 0.875rem;
  text-shadow: 2px 2px 0 var(--cobalt), 4px 4px 0 var(--cobalt-dark);
  letter-spacing: -0.02em;
}

.stat-number em {
  font-style: normal;
  color: var(--cyan);
}

.stat p {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin: 0;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-family: 'JetBrains Mono', monospace;
  line-height: 1.6;
}

/* ── Milestones (indexed list) ──────────────── */

.milestone-list {
  display: flex;
  flex-direction: column;
  margin-top: 2.5rem;
  border: 1px solid var(--border-subtle);
  border-left: 3px solid rgba(136, 186, 248, 0.2);
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 4px 4px 0 var(--cobalt-dark), 7px 7px 0 rgba(0, 0, 0, 0.25);
}

.milestone-item {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  padding: 1.625rem 2rem;
  background: var(--card-bg);
  border-bottom: 1px solid rgba(136, 186, 248, 0.06);
  transition: background 0.2s ease, padding-left 0.18s ease;
  position: relative;
}

.milestone-item:last-child {
  border-bottom: none;
}

.milestone-item:hover {
  background: var(--card-hover);
  padding-left: 2.5rem;
}

.milestone-index {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--cyan);
  opacity: 0.45;
  flex-shrink: 0;
  padding-top: 0.3rem;
  min-width: 28px;
}

.milestone-text {
  font-size: 1rem;
  color: var(--text-body);
  margin: 0;
  line-height: 1.7;
}

/* ── Founders ────────────────────────────────── */

.founders-section {
  padding: 7rem 2rem;
}

.section-intro {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 640px;
  margin: 1rem 0 3rem;
  line-height: 1.8;
}

.founders-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.25rem;
  margin-top: 1rem;
}

@media (min-width: 1200px) {
  .founders-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ── Use of Funds ───────────────────────────── */

.funds-grid {
  display: flex;
  flex-direction: column;
  gap: 1.625rem;
  margin-top: 2.5rem;
  max-width: 680px;
}

.fund-item {
  display: grid;
  grid-template-columns: 210px 1fr;
  align-items: center;
  gap: 1.75rem;
}

.fund-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.fund-bar-track {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.fund-bar-wrap {
  height: 3px;
  background: rgba(136, 186, 248, 0.08);
  border-radius: 2px;
  overflow: hidden;
}

.fund-bar {
  height: 100%;
  border-radius: 2px;
  background: var(--bar-color, var(--cyan));
}

.fund-pct {
  display: block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--bar-color, var(--cyan));
}

/* ── Contact ─────────────────────────────────── */

.contact {
  margin-top: 2rem;
}

.contact p {
  font-family: 'JetBrains Mono', monospace;
  font-size: 1.125rem;
  color: rgba(250, 250, 250, 0.85);
  margin-bottom: 0.375rem;
}

/* ── Closing ─────────────────────────────────── */

.closing-section {
  background:
    radial-gradient(ellipse 80% 100% at 50% 100%, rgba(60, 123, 104, 0.18) 0%, transparent 65%),
    linear-gradient(155deg, rgba(0, 71, 171, 0.85) 0%, rgba(0, 32, 96, 0.95) 100%) !important;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(136, 186, 248, 0.15);
}

.closing-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 55% at 50% 0%, rgba(136, 186, 248, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.closing-section .section-content {
  position: relative;
}

.closing-section h1 {
  max-width: 760px;
  margin: 0 auto 2rem;
  background: linear-gradient(135deg, #fff 0%, var(--cyan) 40%, #a8cbff 70%, #fff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: clamp(2.25rem, 4.5vw, 4rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.closing-section .contact p {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(136, 186, 248, 0.7);
}

/* ── Links & Buttons ─────────────────────────── */

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

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

.btn {
  display: inline-block;
  padding: 0.875rem 2rem;
  background: var(--cyan);
  color: #1a1a1a;
  border-radius: 2px;
  font-weight: 600;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  transition: all 0.25s ease;
  cursor: pointer;
  text-decoration: none;
}

.btn:hover {
  background: var(--cobalt);
  color: var(--text-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(136, 186, 248, 0.18);
}

/* ── Responsive ─────────────────────────────── */

@media (max-width: 960px) {
  .hero-section {
    align-items: flex-end;
    /* text sits above the city at bottom */
    min-height: 100svh;
  }

  /* On mobile, scrim covers most of the screen for readability */
  .hero-section::before {
    background: linear-gradient(to top,
        rgba(8, 12, 20, 1) 0%,
        rgba(8, 12, 20, 0.96) 40%,
        rgba(8, 12, 20, 0.75) 65%,
        rgba(8, 12, 20, 0.2) 85%,
        transparent 100%);
  }

  .hero-text {
    max-width: 100%;
    padding: 2rem 1.75rem 4rem;
    text-align: left;
  }

  .hero-text .tagline {
    max-width: 90%;
  }

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

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

  .fund-item {
    grid-template-columns: 1fr;
    gap: 0.625rem;
  }
}

@media (max-width: 768px) {
  body {
    padding-top: 80px;
  }

  h2 {
    font-size: 2rem;
  }

  .section {
    padding: 4rem 1.25rem;
  }

  .tagline {
    font-size: 1.0625rem;
  }

  .challenge-panel {
    grid-template-columns: 1fr;
    gap: 0.625rem;
    align-items: flex-start;
  }

  .milestone-item {
    flex-direction: column;
    gap: 0.5rem;
    padding: 1.25rem;
  }

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

  .section-intro {
    font-size: 0.9375rem;
  }
}

.hero-statement em.red-em {
  background: linear-gradient(110deg, #f08080 0%, #ffb3b3 45%, #f08080 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}