:root {
  --bg: #060414;
  --fg: #eaf6ff;
  --muted: #7a90b0;
  --pink: #ff2a6d;
  --purple: #6a00ff;
  --cyan: #00f0ff;
  --gradient: linear-gradient(135deg, #ff2a6d 0%, #6a00ff 50%, #00f0ff 100%);
}
* { box-sizing: border-box; margin: 0; padding: 0; }
body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'Outfit', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
strong { color: var(--pink); font-weight: 700; }
em { color: var(--cyan); font-style: normal; }

.blob {
  position: fixed;
  pointer-events: none;
  border-radius: 50%;
  filter: blur(120px);
  z-index: 0;
  opacity: 0.4;
}
.blob-1 { background: var(--pink); width: 500px; height: 500px; top: -100px; left: -100px; }
.blob-2 { background: var(--cyan); width: 600px; height: 600px; bottom: -200px; right: -200px; }
.blob-3 { background: var(--purple); width: 400px; height: 400px; top: 40%; right: 20%; }

.nav-y2k {
  position: relative; z-index: 2;
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.25rem 1.5rem;
  backdrop-filter: blur(10px);
  background: rgba(13, 7, 23, 0.6);
  border-bottom: 1px solid rgba(255, 110, 199, 0.2);
}
.logo-y2k {
  font-family: 'Outfit', sans-serif;
  font-weight: 900;
  font-size: 1.3rem;
  letter-spacing: -0.02em;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.logo-emoji {
  -webkit-text-fill-color: initial;
  background: none;
}

.pill {
  display: inline-block;
  padding: 0.625rem 1.25rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 110, 199, 0.4);
  border-radius: 999px;
  font-weight: 500;
  font-size: 0.875rem;
  color: var(--pink);
  transition: all 0.2s;
}
.pill:hover {
  background: var(--gradient);
  color: #fff;
  border-color: transparent;
}
.pill-big {
  padding: 1rem 2.25rem;
  font-size: 1rem;
  background: var(--gradient);
  color: #fff;
  border: none;
  font-weight: 700;
}

.chip {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: rgba(147, 51, 234, 0.15);
  border: 1px solid rgba(147, 51, 234, 0.3);
  border-radius: 999px;
  font-family: 'Space Mono', monospace;
  font-size: 0.7rem;
  color: var(--cyan);
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
}

.hero-y2k {
  position: relative; z-index: 1;
  text-align: center;
  padding: 2rem 1.5rem 4rem;
  max-width: 56rem;
  margin: 0 auto;
}
.big-h {
  font-family: 'Outfit', sans-serif;
  font-weight: 900;
  font-size: clamp(2.5rem, 9vw, 6rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
  margin-bottom: 1.5rem;
}
.big-h .line { display: block; }
.big-h .line:nth-child(2) {
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-style: italic;
}
.hero-p {
  color: var(--muted);
  font-size: 1.15rem;
  max-width: 36rem;
  margin: 0 auto 2rem;
}
.cta-row { margin-bottom: 1rem; }
.micro {
  font-family: 'Space Mono', monospace;
  font-size: 0.75rem;
  color: var(--cyan);
}

.numbers-y2k {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  padding: 3rem 1.5rem;
  max-width: 56rem;
  margin: 0 auto;
}
@media (min-width: 600px) { .numbers-y2k { grid-template-columns: repeat(4, 1fr); } }
.num-card {
  padding: 1.5rem 1rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 110, 199, 0.2);
  border-radius: 16px;
  text-align: center;
  backdrop-filter: blur(10px);
}
.big-num {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-weight: 900;
  font-size: 2.25rem;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.02em;
}
.num-cap {
  display: block;
  font-family: 'Space Mono', monospace;
  font-size: 0.7rem;
  color: var(--muted);
  margin-top: 0.25rem;
  letter-spacing: 0.05em;
}

.why-y2k, .faq-y2k, .essay-y2k {
  position: relative; z-index: 1;
  max-width: 56rem;
  margin: 0 auto;
  padding: 5rem 1.5rem;
}
.h-y2k {
  font-family: 'Outfit', sans-serif;
  font-weight: 900;
  font-size: clamp(1.75rem, 5vw, 2.75rem);
  letter-spacing: -0.04em;
  margin-bottom: 2.5rem;
}
.emoji { font-style: normal; }

.why-grid-y2k {
  display: grid; gap: 1.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 700px) { .why-grid-y2k { grid-template-columns: repeat(3, 1fr); } }
.why-card-y2k {
  padding: 2rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 110, 199, 0.2);
  border-radius: 24px;
  backdrop-filter: blur(10px);
}
.why-tag {
  font-family: 'Space Mono', monospace;
  font-size: 0.75rem;
  color: var(--cyan);
  display: block;
  margin-bottom: 1rem;
}
.why-card-y2k h3 {
  font-weight: 700;
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
  color: var(--pink);
}
.why-card-y2k p { color: var(--muted); font-size: 0.95rem; }

.essay-y2k {
  max-width: 44rem;
}
.essay-lead-y2k {
  font-size: 1.15rem;
  padding: 1.5rem;
  background: rgba(147, 51, 234, 0.1);
  border-left: 3px solid var(--pink);
  border-radius: 8px;
  margin-bottom: 2rem;
}
.essay-y2k h2 {
  font-family: 'Outfit', sans-serif;
  font-weight: 900;
  font-size: 1.6rem;
  margin: 2.5rem 0 1rem;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.02em;
}
.essay-y2k h3 {
  font-weight: 700;
  color: var(--cyan);
  font-size: 1.05rem;
  margin: 1.5rem 0 0.5rem;
  font-family: 'Space Mono', monospace;
}
.essay-y2k p { margin-bottom: 1rem; color: var(--muted); }

.faq-stack { display: flex; flex-direction: column; gap: 0.75rem; }
.faq-y2k-item {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 110, 199, 0.2);
  border-radius: 16px;
  padding: 1.25rem 1.5rem;
  backdrop-filter: blur(10px);
}
.faq-y2k-item summary {
  list-style: none;
  cursor: pointer;
  font-weight: 700;
  color: var(--pink);
  font-size: 0.95rem;
  position: relative;
  padding-right: 2rem;
}
.faq-y2k-item summary::-webkit-details-marker { display: none; }
.faq-y2k-item summary::after {
  content: "↓";
  position: absolute; right: 0; top: 0;
  color: var(--cyan);
  transition: transform 0.2s;
}
.faq-y2k-item[open] summary::after { transform: rotate(180deg); }
.faq-y2k-item p {
  margin-top: 0.875rem;
  color: var(--muted);
  font-size: 0.875rem;
}

.cta-y2k {
  position: relative; z-index: 1;
  text-align: center;
  padding: 5rem 1.5rem;
  max-width: 56rem;
  margin: 0 auto;
}
.cta-y2k h2 {
  font-family: 'Outfit', sans-serif;
  font-weight: 900;
  font-size: clamp(2rem, 7vw, 5rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
  margin: 1rem 0 1.5rem;
}
.cta-y2k h2 .line { display: block; }
.cta-y2k h2 .line:nth-child(2) {
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-style: italic;
}
.cta-y2k > p {
  max-width: 32rem;
  margin: 0 auto 2rem;
  color: var(--muted);
}

.foot-y2k {
  position: relative; z-index: 1;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 0.5rem;
  padding: 2rem 1.5rem;
  border-top: 1px solid rgba(255, 110, 199, 0.2);
  font-family: 'Space Mono', monospace;
  font-size: 0.75rem;
  color: var(--muted);
}
