/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #080808;
  --bg-alt: #0f0f0f;
  --fg: #f5f5f0;
  --fg-muted: #888880;
  --accent: #f59e0b;
  --accent-dim: rgba(245, 158, 11, 0.15);
  --violet: #7c3aed;
  --border: rgba(255,255,255,0.07);

  --font-display: 'Bebas Neue', 'Arial Black', sans-serif;
  --font-body: 'DM Sans', 'Helvetica Neue', sans-serif;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }

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

/* Atmospheric orbs */
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  z-index: 0;
}
.orb-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(124,58,237,0.18) 0%, transparent 70%);
  top: -100px; right: -100px;
}
.orb-2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(245,158,11,0.12) 0%, transparent 70%);
  bottom: -50px; left: -50px;
}

.noise-layer {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.4;
  pointer-events: none;
  z-index: 1;
}

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

.hero-label {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 32px;
  font-weight: 500;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(96px, 14vw, 200px);
  line-height: 0.9;
  letter-spacing: 0.02em;
  color: var(--fg);
  margin-bottom: 28px;
}

.hero-sub {
  font-size: clamp(18px, 2.5vw, 26px);
  color: var(--fg-muted);
  font-weight: 300;
  margin-bottom: 56px;
  max-width: 480px;
}

/* Release chips */
.hero-releases {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.release-chip {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 13px;
  color: var(--fg-muted);
  letter-spacing: 0.02em;
}

.release-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--fg-muted);
  flex-shrink: 0;
}
.release-dot--active { background: var(--accent); }

/* Waveform */
.hero-visual {
  position: absolute;
  bottom: 0; right: 0;
  width: 45%;
  z-index: 1;
  opacity: 0.25;
  pointer-events: none;
}

.waveform { width: 100%; }
.waveform svg { width: 100%; height: auto; }
.waveform-path {
  fill: none;
  stroke: var(--accent);
  stroke-width: 1.5;
  stroke-linecap: round;
}

/* === MANIFESTO === */
.manifesto {
  padding: 120px 48px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

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

.manifesto-line {
  width: 40px; height: 2px;
  background: var(--accent);
  margin-bottom: 48px;
}

.manifesto-quote {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.2;
  letter-spacing: 0.01em;
  color: var(--fg);
  margin-bottom: 24px;
}

.manifesto-attribution {
  font-size: 13px;
  color: var(--fg-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 72px;
}

.manifesto-stats {
  display: flex;
  align-items: center;
  gap: 0;
}

.stat { padding: 0 40px 0 0; }
.stat:first-child { padding-left: 0; }

.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: 42px;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--fg-muted);
}

.stat-divider {
  width: 1px;
  height: 60px;
  background: var(--border);
  margin-right: 40px;
  flex-shrink: 0;
}

/* === SECTION HEADER === */
.section-header {
  display: flex;
  align-items: baseline;
  gap: 20px;
  margin-bottom: 64px;
}

.section-tag {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--accent);
  font-weight: 500;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 80px);
  letter-spacing: 0.02em;
  line-height: 1;
}

.section-header--light .section-tag,
.section-header--light .section-title { color: var(--fg); }

/* === RELEASES === */
.releases {
  padding: 120px 48px;
  background: var(--bg-alt);
}

.releases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-bottom: 56px;
}

.release-card {
  background: var(--bg);
  padding: 40px 36px;
  border: 1px solid var(--border);
  transition: border-color 0.2s;
}
.release-card:hover { border-color: rgba(245,158,11,0.3); }

.release-year {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 20px;
}

.release-name {
  font-family: var(--font-display);
  font-size: 26px;
  line-height: 1.1;
  margin-bottom: 16px;
  color: var(--fg);
}

.release-desc {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.6;
  margin-bottom: 20px;
  font-weight: 300;
}

.release-tracks {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245,158,11,0.6);
  font-weight: 500;
}

.releases-cta {
  font-size: 14px;
  color: var(--fg-muted);
  letter-spacing: 0.05em;
  text-align: center;
}

/* === AUDIENCE === */
.audience {
  position: relative;
  padding: 120px 48px;
  overflow: hidden;
}

.audience-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0d0814 0%, var(--bg) 50%, #080a0d 100%);
  z-index: 0;
}

.audience > * { position: relative; z-index: 1; }

.audience-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
}

.audience-point {
  background: var(--bg);
  padding: 48px 40px;
}

.point-icon {
  margin-bottom: 28px;
}

.point-title {
  font-family: var(--font-display);
  font-size: 28px;
  margin-bottom: 16px;
  color: var(--fg);
  letter-spacing: 0.02em;
}

.point-desc {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.7;
  font-weight: 300;
}

/* === CLOSING === */
.closing {
  position: relative;
  padding: 160px 48px;
  overflow: hidden;
  border-top: 1px solid var(--border);
}

.closing-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, var(--bg) 0%, #0a0a0e 100%);
  z-index: 0;
}
.closing > * { position: relative; z-index: 1; }

.closing-icon {
  margin-bottom: 48px;
}

.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(64px, 10vw, 140px);
  line-height: 0.92;
  letter-spacing: 0.01em;
  color: var(--fg);
  margin-bottom: 40px;
}

.closing-body {
  font-size: clamp(16px, 2vw, 20px);
  color: var(--fg-muted);
  max-width: 540px;
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 20px;
}

/* === FOOTER === */
.footer {
  padding: 40px 48px;
  border-top: 1px solid var(--border);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-name {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 0.05em;
  display: block;
  margin-bottom: 6px;
}

.footer-tagline {
  font-size: 12px;
  color: var(--fg-muted);
}

.footer-links {
  display: flex;
  gap: 32px;
}

.footer-links a {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-muted);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--accent); }

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .hero { padding: 60px 24px 100px; }
  .manifesto { padding: 80px 24px; }
  .releases { padding: 80px 24px; }
  .audience { padding: 80px 24px; }
  .closing { padding: 100px 24px; }
  .footer { padding: 32px 24px; }

  .releases-grid { grid-template-columns: 1fr; }
  .audience-grid { grid-template-columns: 1fr; }

  .manifesto-stats {
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
  }
  .stat-divider { display: none; }
  .stat { padding: 0; }

  .footer-inner { flex-direction: column; align-items: flex-start; }

  .hero-visual { display: none; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 80px; }
  .closing-headline { font-size: 56px; }
}