/* CardierOS — Dark Studio Aesthetic */

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

:root {
  --bg: #0C0C0C;
  --bg2: #111111;
  --bg3: #161616;
  --fg: #F0EDE8;
  --fg2: #8A8880;
  --fg3: #5A5852;
  --accent: #F59E0B;
  --accent-dim: rgba(245, 158, 11, 0.15);
  --accent-glow: rgba(245, 158, 11, 0.07);
  --border: rgba(240, 237, 232, 0.07);
  --border2: rgba(240, 237, 232, 0.04);
  --radius: 6px;
  --font-head: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

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

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

/* === TYPOGRAPHY === */
h1, h2, h3, h4 { font-family: var(--font-head); font-weight: 700; line-height: 1.1; }

.accent { color: var(--accent); }

.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

/* === HERO === */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 8rem 6vw 6rem;
  overflow: hidden;
}

.hero-grid-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(245, 158, 11, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245, 158, 11, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black 30%, transparent 80%);
  pointer-events: none;
}

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

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: var(--fg2);
  margin-bottom: 1.5rem;
  font-family: var(--font-body);
  font-weight: 400;
  letter-spacing: 0.04em;
}

.hero-artist-name {
  font-family: var(--font-head);
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  font-weight: 800;
  letter-spacing: 0.3em;
  color: var(--accent);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

.hero-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 2rem;
  background: var(--accent);
  color: var(--bg);
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 700;
  border-radius: var(--radius);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 0 0 0 var(--accent-glow);
}

.cta-button:hover {
  background: #D97706;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(245, 158, 11, 0.25);
}

.cta-button:active {
  transform: translateY(0);
  box-shadow: none;
}

.cta-button--ghost {
  background: transparent;
  color: var(--fg);
  border: 1px solid var(--border);
}

.cta-button--ghost:hover {
  background: var(--bg2);
  border-color: var(--accent-dim);
  box-shadow: none;
}

.dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero-headline {
  font-size: clamp(3.5rem, 7vw, 6rem);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -0.02em;
  margin-bottom: 2rem;
  color: var(--fg);
}

.hero-headline .accent { color: var(--accent); }

.hero-sub {
  font-size: 1.1rem;
  color: var(--fg2);
  max-width: 540px;
  line-height: 1.7;
  margin-bottom: 3rem;
  font-weight: 300;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.stat { display: flex; flex-direction: column; gap: 0.25rem; }

.stat-num {
  font-family: var(--font-head);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}

.stat-label {
  font-size: 0.7rem;
  color: var(--fg3);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 400;
}

.stat-sep {
  width: 1px;
  height: 40px;
  background: var(--border);
}

.waveform-divider {
  width: 100%;
  max-width: 600px;
  height: 80px;
  opacity: 0.8;
}

/* === FEATURES === */
.features {
  padding: 7rem 6vw;
  border-top: 1px solid var(--border);
}

.features-header {
  max-width: 640px;
  margin-bottom: 4rem;
}

.features-title {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  color: var(--fg);
  line-height: 1.15;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.feature-card {
  background: var(--bg);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: background 0.2s;
}

.feature-card:hover { background: var(--bg2); }

.feature-card--primary {
  grid-column: span 2;
  flex-direction: row;
  align-items: flex-start;
  gap: 2rem;
  padding: 3rem;
}

.feature-card--primary .feature-desc { max-width: 480px; }

.feature-card--primary .feature-metric { margin-left: auto; text-align: right; }

.feature-icon {
  width: 40px;
  height: 40px;
  background: var(--accent-dim);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-bottom: 0.5rem;
}

.feature-card--primary .feature-icon {
  width: 56px;
  height: 56px;
  margin-bottom: 0;
}

.feature-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--fg);
  font-family: var(--font-head);
}

.feature-card--primary .feature-title {
  font-size: 1.4rem;
}

.feature-desc {
  font-size: 0.9rem;
  color: var(--fg2);
  line-height: 1.65;
  font-weight: 300;
}

.feature-metric {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.metric-val {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}

.metric-label {
  font-size: 0.65rem;
  color: var(--fg3);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 400;
}

/* === MANIFESTO === */
.manifesto {
  padding: 8rem 6vw;
  border-top: 1px solid var(--border);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.manifesto-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.manifesto-badge span {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  font-family: var(--font-body);
}

.manifesto-headline {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 700;
  color: var(--fg);
  line-height: 1.2;
  margin-bottom: 2rem;
}

.manifesto-body {
  font-size: 0.95rem;
  color: var(--fg2);
  line-height: 1.75;
  font-weight: 300;
  margin-bottom: 1.5rem;
}

.manifesto-pillars {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 3rem;
}

.pillar {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.25rem;
  align-items: start;
}

.pillar-num {
  font-family: var(--font-head);
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--accent);
  background: var(--accent-dim);
  width: 32px;
  height: 32px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.05em;
  flex-shrink: 0;
}

.pillar h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--fg);
  font-family: var(--font-head);
  margin-bottom: 0.25rem;
}

.pillar p {
  font-size: 0.8rem;
  color: var(--fg3);
  font-weight: 300;
  line-height: 1.55;
}

/* Mini dashboard visual */
.mini-dashboard {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.dash-header {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.dash-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border);
}

.dash-dot:first-child { background: #FF5F57; }
.dash-dot:nth-child(2) { background: #FEBC2E; }
.dash-dot:nth-child(3) { background: #28C840; }

.dash-title {
  font-size: 0.7rem;
  color: var(--fg3);
  font-family: var(--font-body);
  margin-left: 0.5rem;
  letter-spacing: 0.05em;
}

.dash-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.dash-metric { display: flex; flex-direction: column; gap: 0.25rem; }

.dash-mlabel {
  font-size: 0.6rem;
  color: var(--fg3);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-family: var(--font-body);
}

.dash-mval {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--fg);
}

.dash-mdelta {
  font-size: 0.65rem;
  color: #4ade80;
  font-family: var(--font-body);
  font-weight: 500;
}

.dash-bars { display: flex; flex-direction: column; gap: 0.6rem; }

.dash-bar-row { display: grid; grid-template-columns: 80px 1fr 50px; align-items: center; gap: 0.75rem; }

.bar-label { font-size: 0.7rem; color: var(--fg3); font-family: var(--font-body); }

.bar-track {
  height: 4px;
  background: var(--border2);
  border-radius: 2px;
  overflow: hidden;
}

.bar-fill {
  height: 100%;
  background: var(--accent);
  border-radius: 2px;
  opacity: 0.7;
}

.bar-val { font-size: 0.7rem; color: var(--fg2); font-family: var(--font-body); text-align: right; }

.dash-release {
  background: var(--accent-glow);
  border: 1px solid var(--accent-dim);
  border-radius: 8px;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.dash-release-info { display: flex; flex-direction: column; gap: 0.2rem; }

.dash-release-label {
  font-size: 0.6rem;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-family: var(--font-body);
}

.dash-release-name {
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--fg);
}

.dash-release-date {
  font-size: 0.7rem;
  color: var(--fg3);
  font-family: var(--font-body);
}

.progress-track {
  height: 3px;
  background: var(--border2);
  border-radius: 2px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: var(--accent);
  border-radius: 2px;
}

/* === HOW IT WORKS === */
.howitworks {
  padding: 7rem 6vw;
  border-top: 1px solid var(--border);
}

.hiw-header { max-width: 540px; margin-bottom: 4rem; }

.hiw-title {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--fg);
}

.hiw-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.hiw-step {
  padding: 2.5rem;
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: var(--bg);
  transition: background 0.2s;
}

.hiw-step:last-child { border-right: none; }
.hiw-step:hover { background: var(--bg2); }

.step-num {
  font-family: var(--font-head);
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--accent);
  background: var(--accent-dim);
  width: 32px;
  height: 32px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.05em;
}

.step-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--fg);
  font-family: var(--font-head);
  line-height: 1.25;
}

.step-desc {
  font-size: 0.85rem;
  color: var(--fg2);
  line-height: 1.7;
  font-weight: 300;
}

.step-platforms { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-top: 0.5rem; }

.platform-tag {
  font-size: 0.65rem;
  padding: 0.25rem 0.6rem;
  background: var(--border2);
  border: 1px solid var(--border);
  border-radius: 4px;
  color: var(--fg3);
  font-family: var(--font-body);
  letter-spacing: 0.03em;
}

/* Step 2 plan preview */
.step-preview { margin-top: 0.5rem; }

.step-plan { display: flex; flex-direction: column; gap: 0.5rem; }

.plan-row {
  display: grid;
  grid-template-columns: 20px 1fr;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.8rem;
  color: var(--fg2);
  font-family: var(--font-body);
}

.plan-row.done { color: var(--fg3); text-decoration: line-through; text-decoration-color: var(--fg3); }

.plan-row.active { color: var(--fg); font-weight: 500; }

.plan-check {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.plan-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  animation: pulse 1.5s ease-in-out infinite;
}

.plan-empty {
  width: 20px;
  height: 20px;
  border: 1.5px solid var(--border);
  border-radius: 50%;
  flex-shrink: 0;
}

.step-outcomes { display: flex; flex-direction: column; gap: 0.75rem; margin-top: 0.5rem; }

.outcome { display: flex; flex-direction: column; gap: 0.1rem; }

.outcome-val {
  font-family: var(--font-head);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--fg);
}

.outcome-note {
  font-size: 0.75rem;
  color: var(--fg3);
  font-family: var(--font-body);
  font-weight: 300;
}

/* === CLOSING === */
.closing {
  padding: 8rem 6vw;
  border-top: 1px solid var(--border);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 5rem;
  align-items: center;
}

.closing-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.closing-badge span {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  font-family: var(--font-body);
}

.closing-headline {
  font-size: clamp(2.2rem, 4vw, 4rem);
  font-weight: 800;
  color: var(--fg);
  line-height: 1.1;
  margin-bottom: 2rem;
}

.closing-body {
  font-size: 1rem;
  color: var(--fg2);
  line-height: 1.75;
  max-width: 520px;
  font-weight: 300;
}

/* === WAITLIST FORM === */
.waitlist-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 520px;
}

.waitlist-fields {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.waitlist-fields input {
  flex: 1;
  min-width: 160px;
  padding: 0.75rem 1rem;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 300;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.waitlist-fields input::placeholder {
  color: var(--fg3);
}

.waitlist-fields input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-glow);
}

.waitlist-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: var(--accent);
  color: var(--bg);
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 700;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  letter-spacing: 0.02em;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  white-space: nowrap;
}

.waitlist-btn:hover {
  background: #D97706;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(245, 158, 11, 0.25);
}

.waitlist-btn:active {
  transform: translateY(0);
  box-shadow: none;
}

.wl-msg {
  font-size: 0.85rem;
  font-family: var(--font-body);
  font-weight: 400;
  min-height: 1.25rem;
  margin: 0;
}

.wl-msg.success { color: #4ade80; }
.wl-msg.error   { color: #f87171; }

/* Orbital decoration */
.closing-decoration {
  position: relative;
  width: 280px;
  height: 280px;
  flex-shrink: 0;
}

.orbit-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid var(--border);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.orbit-ring--1 { width: 140px; height: 140px; border-color: var(--accent-dim); }
.orbit-ring--2 { width: 210px; height: 210px; border-color: var(--border); }
.orbit-ring--3 { width: 280px; height: 280px; border-color: var(--border2); }

.orbit-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 56px;
  height: 56px;
  background: var(--accent-dim);
  border: 1px solid var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* === BEAT CATALOG === */
.beats {
  padding: 7rem 6vw;
  border-top: 1px solid var(--border);
}

.beats-inner { max-width: 1100px; margin: 0 auto; }

.beats-header { margin-bottom: 3.5rem; }

.beats-title {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 0.75rem;
}

.beats-sub {
  font-size: 0.85rem;
  color: var(--fg3);
  font-weight: 300;
}

.beats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.beat-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
  cursor: pointer;
}

.beat-card:hover {
  border-color: var(--accent-dim);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.4);
}

.beat-art {
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.beat-play {
  width: 48px;
  height: 48px;
  background: rgba(245, 158, 11, 0.15);
  border: 1px solid var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.2s;
  backdrop-filter: blur(4px);
}

.beat-card:hover .beat-play { opacity: 1; }

.beat-info {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.beat-tags {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
}

.beat-tag {
  font-size: 0.6rem;
  padding: 0.2rem 0.5rem;
  background: var(--accent-dim);
  border: 1px solid var(--accent-dim);
  border-radius: 4px;
  color: var(--accent);
  font-family: var(--font-body);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 500;
}

.beat-name {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--fg);
  letter-spacing: 0.05em;
}

.beat-bpm {
  font-size: 0.75rem;
  color: var(--fg3);
  font-family: var(--font-body);
  font-weight: 300;
}

.beat-price {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--accent);
  margin-top: 0.25rem;
}

/* === SOCIAL PROOF / TESTIMONIALS === */
.social-proof {
  padding: 7rem 6vw;
  border-top: 1px solid var(--border);
  background: var(--bg);
}

.sp-inner { max-width: 1100px; margin: 0 auto; }

.sp-header { margin-bottom: 3.5rem; }

.sp-title {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 0.75rem;
}

.sp-sub {
  font-size: 0.85rem;
  color: var(--fg3);
  font-weight: 300;
}

/* Stats row */
.sp-stats-row {
  display: flex;
  align-items: center;
  gap: 0;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 2rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.sp-stat {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  flex: 1;
  min-width: 100px;
}

.sp-stat-val {
  font-family: var(--font-head);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}

.sp-stat-label {
  font-size: 0.65rem;
  color: var(--fg3);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-family: var(--font-body);
}

.sp-stat-sep {
  width: 1px;
  height: 50px;
  background: var(--border);
  margin: 0 2rem;
}

/* Testimonials grid */
.sp-testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.sp-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}

.sp-card:hover {
  border-color: var(--accent-dim);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}

.sp-quote-mark {
  font-family: var(--font-head);
  font-size: 4rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 0.6;
  opacity: 0.5;
}

.sp-quote {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--fg2);
  line-height: 1.7;
  font-style: italic;
  flex: 1;
}

.sp-card-footer {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--border2);
}

.sp-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--accent-dim);
  border: 1px solid var(--accent-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--accent);
  flex-shrink: 0;
}

.sp-attribution {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.sp-name {
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--fg);
}

.sp-handle {
  font-size: 0.65rem;
  color: var(--fg3);
  font-family: var(--font-body);
}

/* Press strip */
.sp-press {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 1.5rem 2rem;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 10px;
  flex-wrap: wrap;
}

.sp-press-label {
  font-size: 0.7rem;
  color: var(--fg3);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-family: var(--font-body);
  font-weight: 500;
  flex-shrink: 0;
}

.sp-press-logos {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.sp-press-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--fg2);
}

/* === STREAMING LINKS === */
.streaming {
  padding: 6rem 6vw;
  border-top: 1px solid var(--border);
  background: var(--bg2);
}

.streaming-inner { max-width: 640px; margin: 0 auto; text-align: center; }

.streaming-header { margin-bottom: 3rem; }

.streaming-title {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--fg);
}

.streaming-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.stream-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 1.75rem;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: var(--bg3);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s;
}

.stream-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.stream-btn--spotify:hover { background: #1DB954; color: #000; border-color: #1DB954; }
.stream-btn--apple:hover { background: #FA233B; color: #fff; border-color: #FA233B; }
.stream-btn--youtube:hover { background: #FF0000; color: #fff; border-color: #FF0000; }
.stream-btn--traktrain:hover { background: var(--accent); color: var(--bg); border-color: var(--accent); }

/* === FOOTER === */
.footer {
  padding: 3rem 6vw;
  border-top: 1px solid var(--border);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.footer-logo {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--fg);
  letter-spacing: -0.01em;
}

.footer-tagline {
  font-size: 0.8rem;
  color: var(--fg3);
  font-family: var(--font-body);
  margin-left: 1rem;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: var(--fg3);
  font-family: var(--font-body);
}

.footer-sep { color: var(--border); }

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .features-grid { grid-template-columns: 1fr; }
  .feature-card--primary { grid-column: span 1; flex-direction: column; }
  .beats-grid { grid-template-columns: repeat(2, 1fr); }
  .streaming-links { gap: 0.75rem; }
  .stream-btn { padding: 0.75rem 1.25rem; font-size: 0.85rem; }
  .manifesto { grid-template-columns: 1fr; gap: 3rem; }
  .hiw-steps { grid-template-columns: 1fr; }
  .hiw-step { border-right: none; border-bottom: 1px solid var(--border); }
  .hiw-step:last-child { border-bottom: none; }
  .closing { grid-template-columns: 1fr; }
  .closing-decoration { display: none; }
  .news-grid { grid-template-columns: 1fr 1fr; }
  .news-card--wide { grid-row: span 1; }
}

@media (max-width: 600px) {
  .hero { padding: 6rem 5vw 4rem; }
  .hero-headline { font-size: 2.5rem; }
  .hero-stats { gap: 1.5rem; }
  .features, .manifesto, .howitworks, .closing, .news-strip { padding: 5rem 5vw; }
  .beats, .streaming { padding: 5rem 5vw; }
  .beats-grid { grid-template-columns: 1fr; }
  .footer { padding: 2rem 5vw; }
  .footer-inner { flex-direction: column; align-items: flex-start; gap: 0.5rem; }
  .dash-metrics { grid-template-columns: 1fr 1fr; }
  .stream-btn { flex: 1; min-width: 140px; justify-content: center; }
  .news-grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .hero { padding: 6rem 5vw 4rem; }
  .hero-headline { font-size: 2.5rem; }
  .hero-stats { gap: 1.5rem; }
  .features, .manifesto, .howitworks, .closing { padding: 5rem 5vw; }
  .beats, .streaming { padding: 5rem 5vw; }
  .beats-grid { grid-template-columns: 1fr; }
  .footer { padding: 2rem 5vw; }
  .footer-inner { flex-direction: column; align-items: flex-start; gap: 0.5rem; }
  .dash-metrics { grid-template-columns: 1fr 1fr; }
  .stream-btn { flex: 1; min-width: 140px; justify-content: center; }
}

/* === NEWS STRIP === */
.news-strip {
  padding: 7rem 6vw;
  border-top: 1px solid var(--border);
  background: var(--bg);
}

.news-inner { max-width: 1100px; margin: 0 auto; }

.news-header { margin-bottom: 3rem; }

.news-title {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  color: var(--fg);
  line-height: 1.15;
}

.news-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 1.5rem;
}

/* Wide video card spans 2 rows */
.news-card--wide {
  grid-row: span 2;
}

.news-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}

.news-card:hover {
  border-color: var(--accent-dim);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}

.news-card--wide .news-video-wrap {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 */
  background: var(--bg3);
}

.news-card--wide .news-video-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.news-card-meta {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}

.news-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}

.news-type {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  font-family: var(--font-body);
}

.news-date {
  font-size: 0.65rem;
  color: var(--fg3);
  font-family: var(--font-body);
}

.news-card-title {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--fg);
  line-height: 1.3;
}

.news-card-sub {
  font-size: 0.8rem;
  color: var(--fg3);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.55;
  margin-top: 0.25rem;
  flex: 1;
}

.news-stat {
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
  margin-top: 1rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--border2);
}

.news-stat-val {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}

.news-stat-label {
  font-size: 0.65rem;
  color: var(--fg3);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-family: var(--font-body);
}

/* === SCROLLBAR === */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--bg3); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--fg3); }

/* === SELECTION === */
::selection { background: var(--accent); color: var(--bg); }

/* === WAITLIST FORM PAGE === */
.grid-bg {
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(245, 158, 11, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245, 158, 11, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black 30%, transparent 80%);
  pointer-events: none;
  z-index: 0;
}

.wl-page {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 6vw 6rem;
  z-index: 1;
}

.wl-topbar {
  width: 100%;
  max-width: 900px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2rem 0;
}

.wl-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--fg);
  text-decoration: none;
  letter-spacing: -0.01em;
}

.wl-back {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  color: var(--fg2);
  text-decoration: none;
  font-family: var(--font-body);
  transition: color 0.2s;
}

.wl-back:hover { color: var(--fg); }

.wl-hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 640px;
  padding-top: 2rem;
}

.wl-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.wl-badge span {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  font-family: var(--font-body);
}

.wl-headline {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 1.5rem;
}

.wl-sub {
  font-size: 1rem;
  color: var(--fg2);
  line-height: 1.75;
  font-weight: 300;
  margin-bottom: 3rem;
}

.hide-mobile { display: inline; }

.wl-form {
  width: 100%;
  max-width: 540px;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.wl-fields {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.wl-fields input {
  flex: 1;
  min-width: 160px;
  padding: 0.75rem 1rem;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 300;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.wl-fields input::placeholder { color: var(--fg3); }

.wl-fields input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-glow);
}

.wl-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: var(--accent);
  color: var(--bg);
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 700;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  letter-spacing: 0.02em;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  white-space: nowrap;
}

.wl-btn:hover {
  background: #D97706;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(245, 158, 11, 0.25);
}

.wl-btn:active {
  transform: translateY(0);
  box-shadow: none;
}

.wl-msg {
  font-size: 0.85rem;
  font-family: var(--font-body);
  font-weight: 400;
  min-height: 1.25rem;
  margin: 0;
}

.wl-msg.success { color: #4ade80; }
.wl-msg.error   { color: #f87171; }

/* === WAITLIST CONFIRMED PAGE === */
.confirmed-wrap {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 6vw 6rem;
}

.confirmed-hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 700px;
  padding-top: 2rem;
}

.confirmed-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.confirmed-badge span {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  font-family: var(--font-body);
}

.confirmed-headline {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 1.5rem;
}

.confirmed-body {
  font-size: 1rem;
  color: var(--fg2);
  line-height: 1.75;
  font-weight: 300;
  max-width: 540px;
  margin-bottom: 3rem;
}

.confirmed-perks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  width: 100%;
}

.perk-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.75rem;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 1rem;
  text-align: left;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}

.perk-card:hover {
  border-color: var(--accent-dim);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}

.perk-icon {
  width: 44px;
  height: 44px;
  background: var(--accent-dim);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.perk-info {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.perk-info h3 {
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--fg);
}

.perk-info p {
  font-size: 0.8rem;
  color: var(--fg2);
  line-height: 1.6;
  font-weight: 300;
}

.confirmed-footer-note {
  font-size: 0.85rem;
  color: var(--fg3);
  font-family: var(--font-body);
  font-weight: 300;
  font-style: italic;
  margin-top: 2rem;
}

@media (max-width: 600px) {
  .confirmed-perks { grid-template-columns: 1fr; }
  .hide-mobile { display: none; }
}
