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

:root {
  --bg-deep: #0a0a0c;
  --bg-surface: #111114;
  --bg-elevated: #1a1a1f;
  --neon-red: #ff2d55;
  --neon-cyan: #00f0ff;
  --neon-purple: #b347ff;
  --text-primary: #f0f0f2;
  --text-secondary: #8a8a9a;
  --text-muted: #55556a;
  --border: #222230;
  --glow-red: 0 0 40px rgba(255, 45, 85, 0.3);
  --glow-cyan: 0 0 40px rgba(0, 240, 255, 0.2);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg-deep);
  color: var(--text-primary);
  font-family: 'Space Grotesk', sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ═══ HERO ═══ */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 40px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(255, 45, 85, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 240, 255, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

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

.hero-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--neon-red);
  border: 1px solid rgba(255, 45, 85, 0.3);
  padding: 6px 16px;
  margin-bottom: 32px;
  background: rgba(255, 45, 85, 0.05);
}

.hero h1 {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(3rem, 8vw, 6.5rem);
  line-height: 0.95;
  letter-spacing: -0.03em;
  margin-bottom: 32px;
}

.hero h1 .ghost {
  color: var(--neon-red);
  text-shadow: var(--glow-red);
}

.hero-lede {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: var(--text-secondary);
  max-width: 560px;
  line-height: 1.7;
}

.hero-divider {
  width: 60px;
  height: 2px;
  background: var(--neon-red);
  margin: 48px 0;
  box-shadow: var(--glow-red);
}

.hero-stats {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
}

.stat {
  display: flex;
  flex-direction: column;
}

.stat-value {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--neon-cyan);
  text-shadow: var(--glow-cyan);
}

.stat-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-top: 4px;
}

/* ═══ VERTICALS ═══ */
.verticals {
  padding: 120px 40px;
  position: relative;
}

.verticals::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}

.section-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 48px;
}

.verticals-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2px;
  max-width: 1200px;
}

.vertical-card {
  background: var(--bg-surface);
  padding: 48px 36px;
  position: relative;
  transition: background 0.3s ease;
}

.vertical-card:hover {
  background: var(--bg-elevated);
}

.vertical-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
}

.vertical-card:nth-child(1)::before { background: var(--neon-red); box-shadow: var(--glow-red); }
.vertical-card:nth-child(2)::before { background: var(--neon-cyan); box-shadow: var(--glow-cyan); }
.vertical-card:nth-child(3)::before { background: var(--neon-purple); box-shadow: 0 0 40px rgba(179, 71, 255, 0.3); }
.vertical-card:nth-child(4)::before { background: var(--neon-red); box-shadow: var(--glow-red); }

.vertical-num {
  font-family: 'Syne', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: var(--bg-elevated);
  -webkit-text-stroke: 1px var(--border);
  margin-bottom: 20px;
}

.vertical-card:nth-child(1) .vertical-num { -webkit-text-stroke-color: rgba(255, 45, 85, 0.3); }
.vertical-card:nth-child(2) .vertical-num { -webkit-text-stroke-color: rgba(0, 240, 255, 0.3); }
.vertical-card:nth-child(3) .vertical-num { -webkit-text-stroke-color: rgba(179, 71, 255, 0.3); }
.vertical-card:nth-child(4) .vertical-num { -webkit-text-stroke-color: rgba(255, 45, 85, 0.3); }

.vertical-title {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  margin-bottom: 12px;
}

.vertical-desc {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
}

.vertical-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.vtag {
  font-size: 0.7rem;
  color: var(--text-muted);
  border: 1px solid var(--border);
  padding: 4px 10px;
  letter-spacing: 0.05em;
}

/* ═══ MANIFESTO ═══ */
.manifesto {
  padding: 120px 40px;
  position: relative;
}

.manifesto::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}

.manifesto-inner {
  max-width: 700px;
}

.manifesto blockquote {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  line-height: 1.3;
  border: none;
  padding: 0;
  margin-bottom: 32px;
  color: var(--text-primary);
}

.manifesto blockquote .highlight {
  color: var(--neon-red);
  text-shadow: var(--glow-red);
}

.manifesto p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.8;
  max-width: 520px;
}

/* ═══ DROPS ═══ */
.drops {
  padding: 120px 40px;
  position: relative;
}

.drops::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}

.drops-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  max-width: 1200px;
}

.drop-item {
  border-left: 2px solid var(--border);
  padding-left: 24px;
}

.drop-item:nth-child(1) { border-color: var(--neon-red); }
.drop-item:nth-child(2) { border-color: var(--neon-cyan); }
.drop-item:nth-child(3) { border-color: var(--neon-purple); }

.drop-label {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.drop-item:nth-child(1) .drop-label { color: var(--neon-red); }
.drop-item:nth-child(2) .drop-label { color: var(--neon-cyan); }
.drop-item:nth-child(3) .drop-label { color: var(--neon-purple); }

.drop-title {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.drop-desc {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* ═══ CLOSING ═══ */
.closing {
  padding: 160px 40px;
  text-align: center;
  position: relative;
}

.closing::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
}

.closing h2 {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.1;
  margin-bottom: 24px;
}

.closing h2 .ghost {
  color: var(--neon-red);
  text-shadow: var(--glow-red);
}

.closing p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  max-width: 440px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ═══ FOOTER ═══ */
.footer {
  padding: 48px 40px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-brand {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 0.05em;
}

.footer-brand .ghost { color: var(--neon-red); }

.footer-text {
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ═══ RESPONSIVE ═══ */
@media (max-width: 768px) {
  .hero { padding: 60px 24px; }
  .verticals { padding: 80px 24px; }
  .manifesto { padding: 80px 24px; }
  .drops { padding: 80px 24px; }
  .closing { padding: 100px 24px; }
  .footer { padding: 32px 24px; }
  .hero-stats { gap: 32px; }
  .verticals-grid { grid-template-columns: 1fr; }
  .drops-list { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero { padding: 48px 16px; }
  .verticals { padding: 60px 16px; }
  .manifesto { padding: 60px 16px; }
  .drops { padding: 60px 16px; }
  .closing { padding: 80px 16px; }
  .footer { padding: 24px 16px; flex-direction: column; text-align: center; }
}