:root {
  --bg: #05060f;
  --bg-2: #0b0f24;
  --text: #e8ecf8;
  --muted: #a3acc7;
  --accent: #f5c77e;
  --blue: #5fb4ff;
  --card: rgba(255, 255, 255, 0.04);
  --border: rgba(255, 255, 255, 0.1);
  --radius: 18px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background-color: var(--bg);
  background-image: radial-gradient(ellipse at top, var(--bg-2), var(--bg) 900px);
  background-repeat: no-repeat;
  color: var(--text);
  font-family: 'Inter', system-ui, sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

#stars {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

h1, h2, h3, .brand, .num {
  font-family: 'Space Grotesk', system-ui, sans-serif;
  letter-spacing: -0.02em;
}

a { color: inherit; }

/* Nav */
.nav {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px clamp(16px, 4vw, 48px);
  background: rgba(5, 6, 15, 0.6);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  text-decoration: none;
  font-size: 1.1rem;
}
.nav nav { display: flex; align-items: center; gap: 22px; }
.nav nav a:not(.btn) {
  text-decoration: none;
  color: var(--muted);
  font-size: 0.95rem;
}
.nav nav a:not(.btn):hover { color: var(--text); }

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 999px;
  background: var(--accent);
  color: #1a1206;
  font-weight: 500;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.btn:hover { transform: translateY(-1px); box-shadow: 0 6px 24px rgba(245, 199, 126, 0.3); }
.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}
.btn-ghost:hover { box-shadow: none; border-color: var(--muted); }
.btn-small { padding: 7px 16px; font-size: 0.9rem; }
.btn[aria-disabled="true"] { opacity: 0.6; pointer-events: none; }

/* Hero */
.hero {
  position: relative;
  min-height: calc(100vh - 60px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 40px clamp(16px, 5vw, 48px) 60px;
  overflow: hidden;
}
.evolution {
  display: block;
  width: min(100%, 920px);
  height: auto;
  margin: 0 auto 36px;
  filter: drop-shadow(0 0 18px rgba(95, 180, 255, 0.25));
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 0.8rem;
  color: var(--accent);
  margin: 0 0 12px;
}
.hero h1 {
  font-size: clamp(2.6rem, 8vw, 5.5rem);
  line-height: 1.02;
  margin: 0 0 24px;
}
.lead {
  max-width: 640px;
  font-size: clamp(1.05rem, 2.2vw, 1.25rem);
  color: var(--muted);
  margin: 0 0 36px;
}
.cta { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }

/* Sections */
.section {
  max-width: 1040px;
  margin: 0 auto;
  padding: 100px clamp(16px, 5vw, 48px);
  text-align: center;
}
.section h2 {
  font-size: clamp(1.8rem, 4.5vw, 2.8rem);
  margin: 0 0 40px;
}
.body {
  max-width: 680px;
  margin: 40px auto 0;
  color: var(--muted);
  font-size: 1.1rem;
}

.facts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}
.fact {
  padding: 28px 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--card);
}
.num {
  display: block;
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--blue);
}
.label { color: var(--muted); }

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  text-align: left;
}
.card {
  padding: 30px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--card);
}
.card .icon { font-size: 2rem; }
.card h3 { font-size: 1.4rem; margin: 12px 0 8px; }
.card p { margin: 0; color: var(--muted); }

.timeline {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 720px;
  text-align: left;
}
.timeline li {
  position: relative;
  padding: 0 0 26px 32px;
  color: var(--muted);
  border-left: 1px solid var(--border);
}
.timeline li::before {
  content: "";
  position: absolute;
  left: -6px;
  top: 7px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px var(--accent);
}
.timeline strong { color: var(--text); }

.store {
  border: 1px solid var(--border);
  border-radius: 28px;
  background: linear-gradient(160deg, rgba(95, 180, 255, 0.08), rgba(245, 199, 126, 0.06));
  margin-bottom: 80px;
  padding-top: 70px;
  padding-bottom: 70px;
}
.store .body { margin: 0 auto 32px; }
.merch {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.merch-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  width: 130px;
  padding: 22px 10px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--card);
}
.merch-item span { font-size: 2.2rem; }

.footer {
  text-align: center;
  padding: 40px 16px 60px;
  border-top: 1px solid var(--border);
  color: var(--muted);
}
.footer p { margin: 4px 0; }
.small { font-size: 0.85rem; opacity: 0.7; }

@media (max-width: 640px) {
  .nav nav a:not(.btn) { display: none; }
  .section { padding-top: 70px; padding-bottom: 70px; }
  .store { margin-left: 16px; margin-right: 16px; }
}
