:root {
  --bg: #0E0E0E;
  --bg-surface: #181818;
  --bg-card: #1F1F1F;
  --text: #F2EDE6;
  --text-muted: #8A8680;
  --accent: #FF5C00;
  --accent-dim: rgba(255, 92, 0, 0.15);
  --border: #2A2A2A;
  --font-display: 'Syne', sans-serif;
  --font-body: 'Figtree', sans-serif;
  --radius: 4px;
}

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

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* NAV */
.nav {
  padding: 20px 40px;
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text);
}
.nav-tagline {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-left: 1px solid var(--border);
  padding-left: 12px;
}

/* HERO */
.hero {
  padding: 80px 40px 100px;
  border-bottom: 1px solid var(--border);
}
.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 24px;
}
.hero-sub {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 420px;
  line-height: 1.7;
}
.hero-visual {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.waveform {
  display: flex;
  align-items: flex-end;
  gap: 5px;
  height: 100px;
  background: var(--bg-surface);
  border-radius: var(--radius);
  padding: 20px 24px;
  border: 1px solid var(--border);
}
.wave-bar {
  flex: 1;
  background: var(--accent);
  height: var(--h);
  border-radius: 2px;
  opacity: 0.9;
  animation: wave-pulse 2s ease-in-out infinite;
}
.wave-bar:nth-child(1)  { animation-delay: 0s; }
.wave-bar:nth-child(2)  { animation-delay: 0.1s; }
.wave-bar:nth-child(3)  { animation-delay: 0.2s; }
.wave-bar:nth-child(4)  { animation-delay: 0.3s; }
.wave-bar:nth-child(5)  { animation-delay: 0.4s; }
.wave-bar:nth-child(6)  { animation-delay: 0.5s; }
.wave-bar:nth-child(7)  { animation-delay: 0.6s; }
.wave-bar:nth-child(8)  { animation-delay: 0.7s; }
.wave-bar:nth-child(9)  { animation-delay: 0.8s; }
.wave-bar:nth-child(10) { animation-delay: 0.9s; }
.wave-bar:nth-child(11) { animation-delay: 1.0s; }
.wave-bar:nth-child(12) { animation-delay: 1.1s; }
.wave-bar:nth-child(13) { animation-delay: 1.2s; }
.wave-bar:nth-child(14) { animation-delay: 1.3s; }
.wave-bar:nth-child(15) { animation-delay: 1.4s; }
.wave-bar:nth-child(16) { animation-delay: 1.5s; }
.wave-bar:nth-child(17) { animation-delay: 1.6s; }
.wave-bar:nth-child(18) { animation-delay: 1.7s; }
.wave-bar:nth-child(19) { animation-delay: 1.8s; }
.wave-bar:nth-child(20) { animation-delay: 1.9s; }
@keyframes wave-pulse {
  0%, 100% { opacity: 0.5; transform: scaleY(0.8); }
  50% { opacity: 1; transform: scaleY(1); }
}
.hero-packs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.pack-chip {
  font-size: 12px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 100px;
  letter-spacing: 0.03em;
}
.pack-chip--orange {
  background: var(--accent);
  color: #fff;
}
.pack-chip--dark {
  background: var(--bg-card);
  color: var(--text);
  border: 1px solid var(--border);
}
.pack-chip--light {
  background: rgba(242,237,230,0.1);
  color: var(--text-muted);
  border: 1px solid rgba(242,237,230,0.15);
}

/* SHOWCASE */
.showcase {
  padding: 80px 40px;
  border-bottom: 1px solid var(--border);
}
.showcase-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.showcase-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 40px;
}
.showcase-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.showcase-item {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.showcase-icon {
  color: var(--accent);
  width: 28px;
}
.showcase-item h3 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
}
.showcase-item p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* PACKS */
.packs {
  padding: 80px 40px;
  border-bottom: 1px solid var(--border);
  background: var(--bg-surface);
}
.packs-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 36px;
}
.packs-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 16px;
}
.pack-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.pack-card--featured {
  border-color: var(--accent);
  border-width: 1px;
}
.pack-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.pack-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-dim);
  padding: 4px 8px;
  border-radius: 2px;
}
.pack-tag--subtle {
  color: var(--text-muted);
  background: rgba(255,255,255,0.05);
}
.pack-price {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: var(--text);
}
.pack-card h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
}
.pack-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.pack-list li {
  font-size: 13px;
  color: var(--text-muted);
  padding-left: 16px;
  position: relative;
}
.pack-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--accent);
}
.pack-note {
  font-size: 11px;
  color: var(--text-muted);
  border-top: 1px solid var(--border);
  padding-top: 12px;
}
.packs-footer {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 28px;
  text-align: center;
}

/* MANIFESTO */
.manifesto {
  padding: 80px 40px;
  border-bottom: 1px solid var(--border);
}
.manifesto-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.manifesto-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 24px;
}
.manifesto-text blockquote {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 28px;
}
.manifesto-body {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 16px;
}
.manifesto-visual {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding-top: 60px;
}
.manifesto-stat {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.stat-number {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}
.stat-desc {
  font-size: 14px;
  color: var(--text-muted);
  max-width: 200px;
  line-height: 1.5;
}

/* CLOSING */
.closing {
  padding: 100px 40px;
  text-align: center;
}
.closing-inner {
  max-width: 600px;
  margin: 0 auto;
}
.closing-text {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text);
  line-height: 1.15;
  margin-bottom: 20px;
}
.closing-sub {
  font-size: 15px;
  color: var(--text-muted);
}

/* AUDIO PREVIEW PLAYERS */
.audio-previews {
  padding: 60px 40px 80px;
  border-bottom: 1px solid var(--border);
}
.audio-previews-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.audio-previews-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.audio-previews-heading {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 32px;
  line-height: 1.3;
}
.audio-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.audio-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 20px 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.audio-card-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 2px;
}
.audio-card-name {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
}
.ap-player {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.ap-canvas-wrap {
  width: 100%;
  height: 48px;
  position: relative;
  cursor: pointer;
}
.ap-canvas {
  width: 100%;
  height: 48px;
  display: block;
}
.ap-controls {
  display: flex;
  align-items: center;
  gap: 10px;
}
.ap-play {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1.5px solid var(--accent);
  background: transparent;
  color: var(--accent);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.15s, color 0.15s;
}
.ap-play:hover {
  background: var(--accent);
  color: #fff;
}
.ap-play.playing {
  background: var(--accent);
  color: #fff;
}
.ap-meta {
  display: flex;
  align-items: center;
  gap: 6px;
  flex: 1;
}
.ap-progress-bar {
  flex: 1;
  height: 3px;
  background: var(--border);
  border-radius: 2px;
  overflow: hidden;
  cursor: pointer;
}
.ap-progress-fill {
  height: 100%;
  background: var(--accent);
  border-radius: 2px;
  width: 0%;
  transition: width 0.05s linear;
}
.ap-time {
  font-size: 11px;
  color: var(--text-muted);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

/* FOOTER */
.footer {
  padding: 32px 40px;
  border-top: 1px solid var(--border);
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 800;
  color: var(--text);
}
.footer-tagline {
  font-size: 12px;
  color: var(--text-muted);
}
.footer-note {
  font-size: 12px;
  color: var(--text-muted);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .showcase-grid { grid-template-columns: 1fr 1fr; }
  .packs-grid { grid-template-columns: 1fr; }
  .manifesto-inner { grid-template-columns: 1fr; }
  .manifesto-visual { padding-top: 0; }
}
@media (max-width: 600px) {
  .hero { padding: 60px 24px 80px; }
  .showcase { padding: 60px 24px; }
  .audio-previews { padding: 60px 24px; }
  .packs { padding: 60px 24px; }
  .manifesto { padding: 60px 24px; }
  .closing { padding: 80px 24px; }
  .nav { padding: 16px 24px; }
  .showcase-grid { grid-template-columns: 1fr; }
  .audio-grid { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
}