:root {
  --bg: #0b0c10;
  --bg-elevated: #14161c;
  --surface: #16181d;
  --surface-2: #1c1f26;
  --border: #2a2c33;
  --border-soft: #1f2128;
  --text: #f4f4f5;
  --text-dim: #a1a1aa;
  --text-muted: #6f7280;

  --primary: #7c5cff;
  --primary-2: #5a4dd1;
  --primary-deep: #3a2eaa;
  --teal: #00d2c5;
  --pink: #ff4d8d;
  --amber: #ffb547;
  --accent-green: #15ad6e;
  --warn: #f59e0b;
  --danger: #ef4444;

  --grad-hero: radial-gradient(ellipse at 30% 0%, rgba(124,92,255,0.35), transparent 60%),
               radial-gradient(ellipse at 80% 30%, rgba(0,210,197,0.18), transparent 55%),
               radial-gradient(ellipse at 50% 100%, rgba(255,77,141,0.18), transparent 55%);
  --radius: 14px;
  --radius-lg: 22px;
}

* { box-sizing: border-box; }
html, body {
  margin: 0; padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body { min-height: 100vh; display: flex; flex-direction: column; }
a { color: var(--primary); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; height: auto; }

/* Topbar */
.topbar {
  background: rgba(20,22,28,0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-soft);
  position: sticky; top: 0; z-index: 50;
}
.topbar-inner { max-width: 1180px; margin: 0 auto; padding: 14px 24px; display: flex; align-items: center; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 700; font-size: 17px; color: var(--text); letter-spacing: -0.01em; }
.brand img { display: block; }
.topnav { display: flex; gap: 18px; flex-grow: 1; flex-wrap: wrap; align-items: center; }
.topnav a { color: var(--text-dim); font-size: 14px; font-weight: 500; transition: color .15s ease; white-space: nowrap; }
.topnav a:hover { color: var(--text); text-decoration: none; }
.topnav-divider { color: var(--text-dim); opacity: 0.4; user-select: none; }
.topnav-right { display: flex; gap: 12px; align-items: center; flex-shrink: 0; }
.hello { color: var(--text-dim); font-size: 13px; }

/* Buttons */
.btn-primary {
  display: inline-block; padding: 10px 16px;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  color: #fff; border-radius: 10px; font-weight: 600; font-size: 13px;
  border: 0; cursor: pointer;
  box-shadow: 0 6px 20px rgba(124,92,255,0.35);
  transition: transform .12s ease, box-shadow .12s ease, filter .12s ease;
}
.btn-primary:hover { text-decoration: none; transform: translateY(-1px); filter: brightness(1.06); box-shadow: 0 10px 26px rgba(124,92,255,0.5); }
.btn-primary:active { transform: translateY(0); }
.btn-ghost {
  display: inline-block; padding: 10px 16px; background: transparent; color: var(--text);
  border: 1px solid var(--border); border-radius: 10px; font-size: 13px; font-weight: 500;
  transition: border-color .15s ease, background .15s ease;
}
.btn-ghost:hover { border-color: var(--primary); background: rgba(124,92,255,0.08); text-decoration: none; }
.btn-lg { padding: 14px 24px; font-size: 15px; border-radius: 12px; }
.btn-link { background: transparent; border: 0; color: var(--text-dim); cursor: pointer; font-size: 13px; padding: 0; }
.btn-link:hover { color: var(--text); }
.inline-form { display: inline; }
.cta-row { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }

/* Main + cards */
.main { flex-grow: 1; max-width: 1180px; margin: 0 auto; width: 100%; padding: 36px 24px 56px; }
.card {
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 16px;
}
.card h2 { margin: 0 0 12px; font-size: 18px; }
.muted { color: var(--text-dim); }
.h-row { display: flex; align-items: baseline; justify-content: space-between; }

.welcome-back { text-align: center; padding: 48px 32px; background: linear-gradient(135deg, rgba(124,92,255,0.12), rgba(0,210,197,0.08)); border: 1px solid rgba(124,92,255,0.3); }
.welcome-back h2 { font-size: 28px; margin: 0 0 8px; }
.welcome-back .cta-row { margin-top: 22px; }

/* Hero */
.hero {
  position: relative; overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--bg-elevated);
  background-image: var(--grad-hero);
  border: 1px solid var(--border-soft);
  padding: 80px 32px 100px;
  margin-bottom: 28px;
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.hero-wave {
  position: absolute; left: 0; right: 0; bottom: -20px; width: 100%; height: 220px;
  fill: rgba(124,92,255,0.18);
  animation: waveSlide 14s linear infinite;
}
.hero-wave-2 {
  fill: rgba(0,210,197,0.14);
  animation: waveSlide 22s linear infinite reverse;
  bottom: -40px; height: 240px;
}
@keyframes waveSlide {
  0%   { transform: translateX(0) }
  50%  { transform: translateX(-3%) }
  100% { transform: translateX(0) }
}
.hero-content {
  position: relative; z-index: 1;
  max-width: 760px; margin: 0 auto; text-align: center;
}
.hero-logo {
  width: 96px; height: 96px;
  filter: drop-shadow(0 12px 30px rgba(124,92,255,0.55));
  margin-bottom: 22px;
  animation: floaty 5s ease-in-out infinite;
}
@keyframes floaty { 0%,100% { transform: translateY(0) } 50% { transform: translateY(-6px) } }
.eyebrow {
  display: inline-block; padding: 5px 12px; border-radius: 999px;
  background: rgba(124,92,255,0.16); color: #c8bbff;
  font-size: 11px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
  margin-bottom: 18px;
}
.hero h1 {
  font-size: clamp(32px, 5vw, 52px);
  margin: 0 0 18px; line-height: 1.05;
  font-weight: 800; letter-spacing: -0.02em;
  background: linear-gradient(135deg, #ffffff 0%, #c8bbff 70%, #00d2c5 120%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero .lede {
  font-size: 17px; line-height: 1.55; color: var(--text-dim);
  max-width: 640px; margin: 0 auto 28px;
}
.hero-fineprint { color: var(--text-muted); font-size: 12px; margin-top: 18px; }

/* Features grid */
.features { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; margin-bottom: 28px; }
@media (max-width: 760px) { .features { grid-template-columns: 1fr; } }
.feature-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 28px 26px;
  overflow: hidden;
  transition: transform .15s ease, border-color .15s ease;
}
.feature-card:hover { transform: translateY(-2px); border-color: var(--border); }
.feature-card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, transparent, currentColor, transparent);
  opacity: 0.7;
}
.feature-card h3 { margin: 0 0 8px; font-size: 19px; font-weight: 700; color: var(--text); }
.feature-card p  { margin: 0; color: var(--text-dim); font-size: 14.5px; line-height: 1.55; }
.feature-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 52px; height: 52px;
  border-radius: 14px;
  margin-bottom: 16px;
  background: color-mix(in srgb, currentColor 14%, transparent);
}
.feature-icon svg { width: 30px; height: 30px; }
.f-purple { color: var(--primary); }
.f-teal   { color: var(--teal); }
.f-pink   { color: var(--pink); }
.f-amber  { color: var(--amber); }
.feature-card h3, .feature-card p { color: var(--text); }
.feature-card p { color: var(--text-dim); }

/* Proof bar */
.proof {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
  background: var(--bg-elevated); border: 1px solid var(--border-soft);
  border-radius: var(--radius); padding: 24px;
  margin-bottom: 28px;
}
@media (max-width: 760px) { .proof { grid-template-columns: 1fr; } }
.proof-stat { text-align: center; padding: 8px; }
.proof-num {
  font-size: 30px; font-weight: 800; letter-spacing: -0.02em;
  background: linear-gradient(135deg, var(--primary), var(--teal));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.proof-label { color: var(--text-dim); font-size: 13px; margin-top: 4px; }

/* Pricing CTA */
.pricing-cta {
  position: relative; overflow: hidden;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(124,92,255,0.18), rgba(255,77,141,0.12));
  border: 1px solid rgba(124,92,255,0.25);
  padding: 56px 32px;
  text-align: center;
}
.pricing-cta-inner { max-width: 620px; margin: 0 auto; }
.pricing-cta h2 {
  font-size: clamp(24px, 3.4vw, 32px);
  margin: 0 0 12px; font-weight: 700; letter-spacing: -0.01em;
}
.pricing-cta .muted { font-size: 15px; margin-bottom: 22px; }

/* Centred auth pages */
.auth-page { display: flex; align-items: center; justify-content: center; min-height: calc(100vh - 200px); padding: 16px 8px; }
.auth-card { width: 100%; max-width: 420px; padding: 32px 28px; box-shadow: 0 24px 60px rgba(0,0,0,0.55); border: 1px solid rgba(124,92,255,0.25); background: linear-gradient(180deg, #16181d 0%, #1a1230 140%); }
.auth-card h2 { font-size: 22px; letter-spacing: -0.01em; }
.auth-card .form-error { color: var(--danger); font-size: 13px; margin-top: 10px; min-height: 18px; }

/* Forms */
.form { max-width: 380px; }
.form label { display: block; font-size: 12px; opacity: 0.7; margin-top: 14px; text-transform: uppercase; letter-spacing: 0.06em; }
.form input { width: 100%; padding: 11px 12px; margin-top: 4px; background: var(--bg); color: var(--text); border: 1px solid var(--border); border-radius: 8px; font-size: 14px; }
.form input:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(124,92,255,0.18); }
.form .submit { margin-top: 18px; }
.form-error { color: var(--danger); font-size: 13px; margin-top: 10px; min-height: 18px; }

/* Tables */
.table { width: 100%; border-collapse: collapse; }
.table th, .table td { padding: 10px 12px; border-bottom: 1px solid var(--border); text-align: left; font-size: 13px; }
.table th { color: var(--text-dim); font-weight: 500; text-transform: uppercase; letter-spacing: 0.06em; font-size: 11px; }
.table tbody tr:hover { background: var(--surface-2); }
.badge { display: inline-block; padding: 2px 8px; border-radius: 999px; font-size: 11px; background: var(--surface-2); color: var(--text-dim); }
.badge.live { background: rgba(124,92,255,0.15); color: var(--primary); }
.badge.mix { background: rgba(21,173,110,0.15); color: var(--accent-green); }

/* Now playing widget */
.np-card { display: flex; flex-direction: column; gap: 4px; padding: 28px 32px; background: linear-gradient(135deg, rgba(124,92,255,0.14), rgba(0,210,197,0.06)); border: 1px solid rgba(124,92,255,0.24); }
.np-card .np-title { font-size: 28px; font-weight: 700; }
.np-card .np-artist { font-size: 18px; color: var(--text-dim); }
.np-card .np-meta { font-size: 12px; color: var(--text-dim); margin-top: 8px; letter-spacing: 0.08em; text-transform: uppercase; }

/* Footer */
.footer { border-top: 1px solid var(--border-soft); margin-top: 40px; padding: 18px 24px; }
.footer-inner { max-width: 1180px; margin: 0 auto; display: flex; gap: 18px; color: var(--text-dim); font-size: 13px; justify-content: space-between; align-items: center; }
.footer a { color: var(--text-dim); }
.footer a:hover { color: var(--text); }

/* Layout helpers */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 720px) { .grid-2 { grid-template-columns: 1fr; } }
.usage { display: flex; gap: 24px; margin-top: 8px; }
.usage > div { background: var(--surface-2); padding: 14px 18px; border-radius: 10px; flex-grow: 1; }
.usage .label { font-size: 11px; color: var(--text-dim); text-transform: uppercase; letter-spacing: 0.06em; }
.usage .value { font-size: 22px; font-weight: 700; margin-top: 4px; }

/* ── Marketing pages ────────────────────────────────────────────── */

/* Hamburger (mobile) */
.hamburger {
  display: none; background: none; border: none; cursor: pointer; padding: 8px;
  color: var(--text); line-height: 0;
}
.hamburger svg { width: 24px; height: 24px; }
@media (max-width: 1100px) {
  .hamburger { display: block; }
  .topbar-inner { flex-wrap: wrap; }
  .topnav { display: none; width: 100%; order: 3; flex-direction: column; gap: 4px; padding: 12px 0 8px; }
  .topnav.open { display: flex; }
  .topnav a { padding: 8px 0; }
  .topnav-divider { display: none; }
  .topnav-right { display: none; order: 4; width: 100%; justify-content: center; padding: 8px 0 4px; }
  .topnav-right.open { display: flex; }
}

/* Section primitives */
.mkt-section { padding: 56px 0; }
.mkt-section + .mkt-section { padding-top: 0; }
.mkt-section-header { text-align: center; max-width: 680px; margin: 0 auto 40px; }
.mkt-section-header h2 {
  font-size: clamp(26px, 3.8vw, 40px);
  font-weight: 800; letter-spacing: -0.02em; margin: 0 0 12px;
}
.mkt-section-header p { color: var(--text-dim); font-size: 16px; line-height: 1.6; margin: 0; }
.mkt-eyebrow {
  display: inline-block; padding: 5px 14px; border-radius: 999px;
  font-size: 11px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
  margin-bottom: 16px;
}
.mkt-eyebrow.purple { background: rgba(124,92,255,0.16); color: #c8bbff; }
.mkt-eyebrow.teal { background: rgba(0,210,197,0.16); color: #5eeedd; }
.mkt-eyebrow.pink { background: rgba(255,77,141,0.16); color: #ff8db8; }

/* Hero variants */
.hero-stations {
  --grad-hero: radial-gradient(ellipse at 30% 0%, rgba(0,210,197,0.35), transparent 60%),
               radial-gradient(ellipse at 80% 30%, rgba(124,92,255,0.18), transparent 55%),
               radial-gradient(ellipse at 50% 100%, rgba(255,181,71,0.15), transparent 55%);
}
.hero-dj {
  --grad-hero: radial-gradient(ellipse at 30% 0%, rgba(124,92,255,0.35), transparent 60%),
               radial-gradient(ellipse at 80% 30%, rgba(255,77,141,0.18), transparent 55%),
               radial-gradient(ellipse at 50% 100%, rgba(0,210,197,0.15), transparent 55%);
}
.hero-neutral {
  --grad-hero: radial-gradient(ellipse at 40% 0%, rgba(124,92,255,0.25), transparent 55%),
               radial-gradient(ellipse at 70% 50%, rgba(0,210,197,0.15), transparent 50%);
}

/* Dual-CTA path cards (home) */
.path-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin: 40px 0; }
@media (max-width: 720px) { .path-grid { grid-template-columns: 1fr; } }
.path-card {
  display: block; position: relative; overflow: hidden;
  background: var(--surface); border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg); padding: 40px 32px;
  text-align: center; transition: transform .15s ease, border-color .15s ease;
  color: var(--text);
}
.path-card:hover { transform: translateY(-3px); border-color: var(--border); text-decoration: none; color: var(--text); }
.path-card.purple { background: linear-gradient(135deg, rgba(124,92,255,0.12), rgba(124,92,255,0.04)); border-color: rgba(124,92,255,0.25); }
.path-card.purple:hover { border-color: rgba(124,92,255,0.5); }
.path-card.teal { background: linear-gradient(135deg, rgba(0,210,197,0.12), rgba(0,210,197,0.04)); border-color: rgba(0,210,197,0.25); }
.path-card.teal:hover { border-color: rgba(0,210,197,0.5); }
.path-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 72px; height: 72px; border-radius: 20px; margin-bottom: 20px;
}
.path-card.purple .path-icon { background: rgba(124,92,255,0.15); color: var(--primary); }
.path-card.teal .path-icon { background: rgba(0,210,197,0.15); color: var(--teal); }
.path-icon svg { width: 40px; height: 40px; }
.path-card h3 { font-size: 22px; font-weight: 700; margin: 0 0 10px; }
.path-card p { color: var(--text-dim); font-size: 14.5px; line-height: 1.55; margin: 0 0 20px; }
.path-card .from-price { color: var(--text-muted); font-size: 13px; margin-top: 12px; }

/* Benefits grid */
.benefits-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin: 32px 0; }
@media (max-width: 820px) { .benefits-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .benefits-grid { grid-template-columns: 1fr; } }
.benefit-card {
  background: var(--surface); border: 1px solid var(--border-soft);
  border-radius: var(--radius); padding: 28px 24px; text-align: center;
}
.benefit-card h3 { font-size: 17px; font-weight: 700; margin: 12px 0 8px; }
.benefit-card p { color: var(--text-dim); font-size: 14px; line-height: 1.5; margin: 0; }
.benefit-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 52px; height: 52px; border-radius: 14px;
  background: rgba(124,92,255,0.12); color: var(--primary);
}
.benefit-icon svg { width: 28px; height: 28px; }
.benefit-icon.teal { background: rgba(0,210,197,0.12); color: var(--teal); }
.benefit-icon.pink { background: rgba(255,77,141,0.12); color: var(--pink); }
.benefit-icon.amber { background: rgba(255,181,71,0.12); color: var(--amber); }
.benefit-icon.green { background: rgba(21,173,110,0.12); color: var(--accent-green); }

/* Pricing tier cards */
.tier-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin: 32px 0; }
@media (max-width: 900px) { .tier-grid { grid-template-columns: 1fr; max-width: 420px; margin-left: auto; margin-right: auto; } }
.tier-card {
  background: var(--surface); border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg); padding: 32px 28px;
  display: flex; flex-direction: column;
  transition: transform .15s ease;
}
.tier-card:hover { transform: translateY(-2px); }
.tier-card.featured {
  border-color: var(--primary);
  box-shadow: 0 0 40px rgba(124,92,255,0.15);
  position: relative;
}
.tier-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  color: #fff; font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 4px 16px; border-radius: 999px; white-space: nowrap;
}
.tier-name { font-size: 22px; font-weight: 700; margin: 0 0 4px; }
.tier-tagline { color: var(--text-dim); font-size: 13px; margin: 0 0 20px; }
.tier-price-row { margin-bottom: 8px; }
.tier-setup { font-size: 28px; font-weight: 800; letter-spacing: -0.02em; }
.tier-setup-label { color: var(--text-dim); font-size: 13px; }
.tier-monthly { font-size: 20px; font-weight: 700; color: var(--primary); }
.tier-monthly-label { color: var(--text-dim); font-size: 13px; }
.tier-divider { border: none; border-top: 1px solid var(--border-soft); margin: 20px 0; }
.tier-features { list-style: none; padding: 0; margin: 0 0 24px; flex-grow: 1; }
.tier-features li {
  padding: 6px 0 6px 24px; position: relative;
  color: var(--text-dim); font-size: 14px; line-height: 1.45;
}
.tier-features li::before {
  content: "\2713"; position: absolute; left: 0;
  color: var(--accent-green); font-weight: 700;
}

/* Comparison table */
.compare-wrap { overflow-x: auto; margin: 32px 0; border: 1px solid var(--border-soft); border-radius: var(--radius); }
.compare-table { width: 100%; border-collapse: collapse; min-width: 640px; }
.compare-table th, .compare-table td {
  padding: 12px 16px; border-bottom: 1px solid var(--border-soft);
  text-align: center; font-size: 14px;
}
.compare-table th:first-child, .compare-table td:first-child { text-align: left; }
.compare-table thead th { background: var(--surface); font-weight: 700; font-size: 15px; }
.compare-table tbody tr:hover { background: var(--surface-2); }
.compare-table .cat-row td { font-weight: 600; color: var(--text); background: var(--bg-elevated); font-size: 12px; text-transform: uppercase; letter-spacing: 0.06em; }
.compare-check { color: var(--accent-green); font-weight: 700; }
.compare-cross { color: var(--text-muted); }
.compare-text { color: var(--text-dim); font-size: 13px; }

/* Feature showcase */
.showcase-item {
  display: grid; grid-template-columns: 1fr 1fr; gap: 40px;
  align-items: center; padding: 40px 0;
}
.showcase-item:nth-child(even) { direction: rtl; }
.showcase-item:nth-child(even) > * { direction: ltr; }
@media (max-width: 760px) {
  .showcase-item, .showcase-item:nth-child(even) { grid-template-columns: 1fr; direction: ltr; }
}
.showcase-text h3 { font-size: 24px; font-weight: 700; margin: 0 0 12px; }
.showcase-text p { color: var(--text-dim); font-size: 15px; line-height: 1.6; margin: 0 0 8px; }
.showcase-img {
  aspect-ratio: 16/10; border-radius: var(--radius); overflow: hidden;
  background: var(--surface); border: 1px solid var(--border-soft);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted); font-size: 13px;
}
.showcase-img.purple { background: linear-gradient(135deg, rgba(124,92,255,0.15), rgba(0,210,197,0.08)); }
.showcase-img.teal { background: linear-gradient(135deg, rgba(0,210,197,0.15), rgba(124,92,255,0.08)); }
.showcase-img.pink { background: linear-gradient(135deg, rgba(255,77,141,0.12), rgba(124,92,255,0.08)); }
.showcase-img.amber { background: linear-gradient(135deg, rgba(255,181,71,0.12), rgba(124,92,255,0.08)); }
.showcase-img svg { width: 64px; height: 64px; opacity: 0.4; }

/* FAQ accordion */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border-soft); }
.faq-q {
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 0; cursor: pointer;
  font-size: 16px; font-weight: 600; color: var(--text);
  background: none; border: none; width: 100%; text-align: left;
  font-family: inherit; transition: color .15s ease;
}
.faq-q:hover { color: var(--primary); }
.faq-toggle {
  flex-shrink: 0; width: 24px; height: 24px;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted); font-size: 20px; font-weight: 300;
  transition: transform .2s ease;
}
.faq-item.open .faq-toggle { transform: rotate(45deg); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height .3s ease, padding .3s ease;
}
.faq-item.open .faq-a { max-height: 500px; padding-bottom: 20px; }
.faq-a p { color: var(--text-dim); font-size: 14.5px; line-height: 1.6; margin: 0 0 8px; }
.faq-a p:last-child { margin-bottom: 0; }

/* Stations wall */
.wall-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 16px;
  margin: 32px 0;
}
.wall-card {
  background: var(--surface); border: 1px solid var(--border-soft);
  border-radius: var(--radius); padding: 24px;
  text-align: center; display: flex; flex-direction: column;
  align-items: center; justify-content: center; min-height: 120px;
}
.wall-card img { max-height: 48px; margin-bottom: 8px; opacity: 0.8; }
.wall-card span { color: var(--text-dim); font-size: 13px; font-weight: 500; }

/* Demo */
.demo-embed {
  background: var(--surface); border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg); padding: 48px; text-align: center;
  min-height: 300px; display: flex; flex-direction: column;
  align-items: center; justify-content: center;
}
.demo-embed svg { width: 80px; height: 80px; margin-bottom: 16px; color: var(--text-muted); opacity: 0.5; }
.mix-gallery { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 18px; margin: 32px 0; }
.mix-card {
  background: var(--surface); border: 1px solid var(--border-soft);
  border-radius: var(--radius); padding: 20px; transition: transform .15s ease;
}
.mix-card:hover { transform: translateY(-2px); }
.mix-card h4 { font-size: 15px; font-weight: 600; margin: 0 0 6px; }
.mix-card .mix-meta { color: var(--text-dim); font-size: 12px; }
.mix-card .mix-tracks { color: var(--text-muted); font-size: 12px; margin-top: 8px; }

/* About */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
@media (max-width: 760px) { .about-grid { grid-template-columns: 1fr; } }
.about-visual {
  aspect-ratio: 4/3; border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(124,92,255,0.18), rgba(0,210,197,0.12));
  border: 1px solid var(--border-soft);
  display: flex; align-items: center; justify-content: center;
}
.about-visual svg { width: 96px; height: 96px; opacity: 0.3; color: var(--text-muted); }

/* Breadcrumbs */
.breadcrumbs {
  display: flex; gap: 8px; align-items: center;
  font-size: 13px; color: var(--text-muted); margin-bottom: 24px;
}
.breadcrumbs a { color: var(--text-dim); }
.breadcrumbs a:hover { color: var(--text); }

/* Stat row */
.stat-row { display: flex; gap: 32px; justify-content: center; flex-wrap: wrap; margin: 32px 0; }
.stat-item { text-align: center; }
.stat-value {
  font-size: 32px; font-weight: 800; letter-spacing: -0.02em;
  background: linear-gradient(135deg, var(--primary), var(--teal));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.stat-label { color: var(--text-dim); font-size: 13px; margin-top: 2px; }

/* Extended footer */
.footer-extended { border-top: 1px solid var(--border-soft); margin-top: 40px; padding: 48px 24px 24px; }
.footer-grid {
  max-width: 1180px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 32px;
}
@media (max-width: 760px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 24px; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-col h4 {
  font-size: 13px; font-weight: 600; color: var(--text);
  text-transform: uppercase; letter-spacing: 0.06em; margin: 0 0 14px;
}
.footer-col p { color: var(--text-dim); font-size: 13px; line-height: 1.55; margin: 0 0 12px; }
.footer-col a { display: block; color: var(--text-dim); font-size: 13px; padding: 3px 0; transition: color .15s ease; }
.footer-col a:hover { color: var(--text); text-decoration: none; }
.footer-bottom {
  max-width: 1180px; margin: 32px auto 0;
  padding-top: 20px; border-top: 1px solid var(--border-soft);
  display: flex; justify-content: space-between; align-items: center;
  color: var(--text-muted); font-size: 12px;
}
@media (max-width: 480px) { .footer-bottom { flex-direction: column; gap: 8px; } }
.footer-bottom a { color: var(--text-muted); }
.footer-bottom a:hover { color: var(--text); }

/* DJ pricing (reuse tier system but 2-col for DJ) */
.tier-grid-dj { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin: 32px 0; }
@media (max-width: 900px) { .tier-grid-dj { grid-template-columns: 1fr; max-width: 420px; margin-left: auto; margin-right: auto; } }
