/* ── Reset & Variables ─────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --bg: #0a0a0f;
  --surface: #13131a;
  --surface2: #1a1a24;
  --border: #252532;
  --accent: #7c3aed;
  --accent-light: #a78bfa;
  --cyan: #22d3ee;
  --fg: #f0f0f5;
  --fg2: #9898a8;
  --fg3: #5a5a70;
  --font-display: 'Syne', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
}
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── Nav ─────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(10,10,15,0.8);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 16px 32px;
}
.nav-logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
  color: var(--fg);
  letter-spacing: -0.5px;
}

/* ── Hero ─────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 0 32px;
  border-bottom: 1px solid var(--border);
}
.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
  padding: 120px 0 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent-light);
  margin-bottom: 20px;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(52px, 6vw, 80px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -2px;
  color: var(--fg);
  margin-bottom: 24px;
}
.hero-sub {
  font-size: 17px;
  color: var(--fg2);
  line-height: 1.7;
  max-width: 420px;
}
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}
.waveform {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 160px;
}
.bar {
  width: 8px;
  border-radius: 4px;
  background: var(--accent);
  animation: wave 1.4s ease-in-out infinite;
}
.bar:nth-child(odd) { background: var(--cyan); }
.b1  { height: 40%; animation-delay: 0s; }
.b2  { height: 70%; animation-delay: 0.1s; }
.b3  { height: 55%; animation-delay: 0.2s; }
.b4  { height: 90%; animation-delay: 0.3s; }
.b5  { height: 60%; animation-delay: 0.4s; }
.b6  { height: 80%; animation-delay: 0.5s; }
.b7  { height: 45%; animation-delay: 0.6s; }
.b8  { height: 75%; animation-delay: 0.7s; }
.b9  { height: 50%; animation-delay: 0.8s; }
.b10 { height: 85%; animation-delay: 0.9s; }
.b11 { height: 60%; animation-delay: 1.0s; }
.b12 { height: 95%; animation-delay: 1.1s; }
.b13 { height: 55%; animation-delay: 1.2s; }
.b14 { height: 70%; animation-delay: 1.3s; }
.b15 { height: 40%; animation-delay: 1.4s; }
@keyframes wave {
  0%, 100% { transform: scaleY(1); }
  50% { transform: scaleY(0.5); }
}

/* ── Manifesto ─────────────────────────────────────────── */
.manifesto {
  padding: 100px 32px;
  border-bottom: 1px solid var(--border);
}
.manifesto-inner { max-width: 1100px; margin: 0 auto; }
.manifesto-tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent-light);
  margin-bottom: 20px;
}
.manifesto-headline {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -1.5px;
  color: var(--fg);
  margin-bottom: 60px;
}
.manifesto-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-bottom: 60px;
}
.manifesto-item {
  background: var(--surface);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.manifesto-stat {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 800;
  color: var(--accent-light);
  letter-spacing: -2px;
  line-height: 1;
}
.manifesto-desc {
  font-size: 14px;
  color: var(--fg2);
  line-height: 1.5;
}
.manifesto-quote {
  font-size: 15px;
  color: var(--fg3);
  font-style: italic;
  border-left: 2px solid var(--border);
  padding-left: 20px;
  max-width: 600px;
}

/* ── What You Get ─────────────────────────────────────── */
.whatyouget { padding: 100px 32px; border-bottom: 1px solid var(--border); }
.wyget-inner { max-width: 1100px; margin: 0 auto; }
.wyget-header { margin-bottom: 60px; }
.wyget-tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent-light);
  margin-bottom: 16px;
}
.wyget-headline {
  font-family: var(--font-display);
  font-size: clamp(32px, 3.5vw, 48px);
  font-weight: 700;
  letter-spacing: -1px;
  color: var(--fg);
}
.wyget-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
}
.wyget-card {
  background: var(--bg);
  padding: 40px 32px;
}
.wyget-icon {
  color: var(--accent-light);
  margin-bottom: 20px;
}
.wyget-card h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 12px;
}
.wyget-card p {
  font-size: 14px;
  color: var(--fg2);
  line-height: 1.6;
}

/* ── How It Works ─────────────────────────────────────── */
.howitworks { padding: 100px 32px; border-bottom: 1px solid var(--border); background: var(--surface); }
.hiw-inner { max-width: 1100px; margin: 0 auto; }
.hiw-tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 20px;
}
.hiw-headline {
  font-family: var(--font-display);
  font-size: clamp(32px, 3.5vw, 48px);
  font-weight: 700;
  letter-spacing: -1px;
  color: var(--fg);
  margin-bottom: 64px;
}
.hiw-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.hiw-step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 40px;
  padding: 48px 0;
  border-top: 1px solid var(--border);
  align-items: start;
}
.hiw-num {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 800;
  color: var(--border);
  letter-spacing: -2px;
  line-height: 1;
}
.hiw-step:hover .hiw-num { color: var(--accent); }
.hiw-content h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 12px;
}
.hiw-content p {
  font-size: 15px;
  color: var(--fg2);
  line-height: 1.7;
  max-width: 540px;
}

/* ── Artists ───────────────────────────────────────────── */
.artists { padding: 100px 32px; border-bottom: 1px solid var(--border); }
.artists-inner { max-width: 1100px; margin: 0 auto; }
.artists-tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent-light);
  margin-bottom: 20px;
}
.artists-headline {
  font-family: var(--font-display);
  font-size: clamp(32px, 3.5vw, 48px);
  font-weight: 700;
  letter-spacing: -1px;
  color: var(--fg);
  margin-bottom: 48px;
}
.artists-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.artist-type {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
}
.artist-icon { color: var(--accent-light); flex-shrink: 0; margin-top: 2px; }
.artist-type p {
  font-size: 16px;
  color: var(--fg2);
  line-height: 1.5;
}

/* ── Closing ─────────────────────────────────────────── */
.closing {
  padding: 120px 32px;
  background: linear-gradient(180deg, var(--bg) 0%, var(--accent) 100%);
  opacity: 0.95;
}
.closing-inner { max-width: 1100px; margin: 0 auto; }
.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.5vw, 64px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -2px;
  color: #fff;
  margin-bottom: 24px;
}
.closing-sub {
  font-size: 18px;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  max-width: 540px;
}

/* ── Footer ───────────────────────────────────────────── */
.footer { padding: 60px 32px; border-top: 1px solid var(--border); }
.footer-inner { max-width: 1100px; margin: 0 auto; }
.footer-brand {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  color: var(--fg);
  margin-bottom: 8px;
}
.footer-tagline {
  font-size: 14px;
  color: var(--fg3);
}

/* ── Responsive ─────────────────────────────────────────── */
@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; padding: 100px 0 60px; }
  .hero-visual { display: none; }
  .manifesto-grid { grid-template-columns: 1fr; }
  .wyget-grid { grid-template-columns: 1fr; }
  .hiw-step { grid-template-columns: 48px 1fr; gap: 24px; }
  .hiw-num { font-size: 32px; }
}
@media (max-width: 480px) {
  .hero-headline { letter-spacing: -1px; }
  .manifesto-stat { font-size: 36px; }
}
