/*
 * Site stylesheet for the MakingWaves marketing + dashboard pages.
 *
 * Colour tokens come from /css/tokens.css (the shared design system) - the
 * aliases below map the old --primary/--surface/--text names onto the new
 * tokens so every existing rule keeps working but renders in the new
 * orange-accented dark palette without per-page rewrites.
 */
:root {
  /* Surfaces */
  --bg:          var(--bg-0);
  --bg-elevated: var(--bg-1);
  --surface:     var(--bg-2);
  --surface-2:   var(--bg-3);
  --border:      var(--border-strong);
  --border-soft: var(--border);
  --text:        var(--text-primary);
  --text-dim:    var(--text-secondary);
  --text-muted:  var(--text-muted);

  /* Accent (was purple, now orange) */
  --primary:      var(--accent-500);
  --primary-2:    var(--accent-600);
  --primary-deep: var(--accent-700);

  /* Status accents — keep teal-ish for live/healthy, plus warm/danger */
  --teal:         var(--live);
  --pink:         var(--danger);
  --amber:        var(--warning);
  --accent-green: var(--live);
  --warn:         var(--warning);
  --danger:       var(--danger);

  /* Hero gradient — orange-led now, cooler secondary tones */
  --grad-hero: radial-gradient(ellipse at 30% 0%,   rgba(255,107,26,0.30), transparent 60%),
               radial-gradient(ellipse at 80% 30%,  rgba(91,108,255,0.16), transparent 55%),
               radial-gradient(ellipse at 50% 100%, rgba(52,211,153,0.12), transparent 55%);

  --radius:    var(--r-lg);
  --radius-lg: var(--r-xl);
}

* { 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; }

/* ─── Display headings: Bricolage Grotesque ───────────────────────
   Hero h1s set their own scale (clamp). All other large section h2s
   (.mkt-section-header h2, .collab-* h2, .hiw .h4) inherit Bricolage
   automatically so the whole marketing surface feels editorial. */
.hero-content h1, .hero-content h2,
.mkt-section-header h2,
.collab-cta h2, .collab-why h2, .how-it-works h2, .collab-who h2,
.collab-teaser h2,
.tier-card .tier-name,
.path-card h3,
.benefit-card h3,
.pillar h3 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.02em;
}
.mkt-section-header h2, .collab-cta h2, .collab-why h2, .collab-teaser h2, .how-it-works h2,
.hiw-band h2 {
  font-size: clamp(28px, 4.2vw, 44px);
  line-height: 1.05;
  font-weight: 800;
}

/* 3-step "How it works" band - used on /dj editorial flow.
   Magenta-tinted dark background to give the page a section break
   between hero + feature cards. Shares .hiw-steps / .hiw-step / .hiw-num
   styles with /collab and the Stations marketing page. */
.hiw-band {
  position: relative;
  margin: 0 -24px 48px;
  padding: 56px 24px 64px;
  background: linear-gradient(180deg, rgba(8,9,12,0) 0%, rgba(255, 45, 139, 0.06) 50%, rgba(8,9,12,0) 100%);
  border-top: 1px solid rgba(255, 45, 139, 0.18);
  border-bottom: 1px solid rgba(255, 45, 139, 0.18);
}
.hiw-band-inner { max-width: 1180px; margin: 0 auto; }
.hiw-band h2 { text-align: center; margin: 8px 0 32px; }
.hiw-band .mkt-eyebrow { display: block; text-align: center; margin: 0 auto 8px; }
.hiw-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}
.hiw-step {
  padding: 28px 24px;
  background: var(--bg-1);
  border: 1px solid var(--border-soft, #2c3038);
  border-radius: 16px;
  position: relative;
}
.hiw-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-500), var(--hype-500));
  color: #fff;
  font-family: var(--font-display);
  font-weight: 800; font-size: 18px;
  margin-bottom: 16px;
  box-shadow: 0 6px 16px rgba(255, 45, 139, 0.35);
}
.hiw-step h4 {
  margin: 0 0 10px 0;
  font-size: 18px;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.01em;
}
.hiw-step p {
  color: var(--text-secondary);
  font-size: 14.5px;
  line-height: 1.55;
  margin: 0;
}
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: 8px; color: var(--text); }
.brand img { display: block; filter: drop-shadow(0 4px 12px rgba(255, 107, 26, 0.25)); }
.brand-wordmark {
  /* Bricolage Grotesque set tight, near-lowercase lockup. The "MW" caps
     are achieved by font-variant-caps + explicit uppercase span if needed,
     but for the v1 lockup we set the entire wordmark in Bricolage Black
     with negative tracking - looks deliberate and editorial. */
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--text);
}
.brand:hover .brand-wordmark { color: var(--accent-500); }
.topnav { display: flex; gap: 22px; flex-grow: 1; align-items: center; }
.topnav > a, .topnav .menu-trigger { color: var(--text-dim); font-size: 14px; font-weight: 500; transition: color .15s ease; white-space: nowrap; }
.topnav > a:hover, .topnav .menu-trigger:hover { color: var(--text); text-decoration: none; }
/* New-feature badge: acid lime, used sparingly per the design brief.
   Reads as the "energy spike" colour against the orange + magenta palette. */
.topnav .nav-badge { display:inline-block; margin-left:6px; padding:2px 7px; font-size:10px; font-weight:800; letter-spacing:0.06em; text-transform:uppercase; background:var(--acid-500); color:#0a0b0e; border-radius:999px; vertical-align:middle; font-family: var(--font-display); }
.topnav a.nav-collab { color: var(--hype-500); font-weight: 600; }
.topnav a.nav-collab:hover { color: var(--hype-600); }
.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; }

/* Dropdown menus (Now Playing in top nav, user menu on the right). Trigger is a
   button styled like a nav link; panel is absolutely positioned under it on
   desktop, inline-expanded on mobile (see media query below). */
.menu-dropdown { position: relative; display: inline-flex; align-items: center; }
.menu-trigger {
  background: none; border: 0; padding: 0; cursor: pointer;
  display: inline-flex; align-items: center; gap: 4px;
  font: inherit; font-family: 'Inter', sans-serif;
}
.menu-trigger .caret { font-size: 9px; opacity: 0.7; transition: transform .15s ease; }
.menu-dropdown.open .menu-trigger .caret { transform: rotate(180deg); }
.user-trigger { gap: 6px; }
.menu-panel {
  display: none;
  position: absolute; top: calc(100% + 10px); left: 0;
  min-width: 200px;
  background: var(--bg-elevated);
  border: 1px solid var(--border-soft);
  border-radius: 12px;
  padding: 6px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.45);
  z-index: 60;
}
.menu-panel-right { left: auto; right: 0; }
.menu-dropdown.open .menu-panel { display: block; }
.menu-panel a, .menu-panel button {
  display: block; width: 100%;
  padding: 9px 12px; text-align: left;
  font-size: 13.5px; color: var(--text); font-weight: 500;
  border-radius: 8px; background: none; border: 0; cursor: pointer;
  font-family: 'Inter', sans-serif;
}
.menu-panel a:hover, .menu-panel button:hover {
  background: var(--surface-2); color: var(--text); text-decoration: none;
}
.menu-form { margin: 0; padding: 0; display: block; }

/* 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(255,107,26,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(255,107,26,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(255,107,26,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(255,107,26,0.12), rgba(52,211,153,0.08)); border: 1px solid rgba(255,107,26,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: 100px 32px 120px;
  margin-bottom: 28px;
}

/* Generative beat-grid canvas (replaces the wave-SVG bg on heroes that
   opt-in). Sits behind the hero content. The script renders a scrolling
   procedural beat-grid pulsing at 124 BPM; see beatgrid-canvas.js. */
.hero-canvas {
  position: absolute; inset: 0; width: 100%; height: 100%;
  pointer-events: none; z-index: 0;
  opacity: 0.85;
  mask-image: radial-gradient(ellipse at center, rgba(0,0,0,1) 30%, rgba(0,0,0,0.35) 75%, rgba(0,0,0,0) 100%);
  -webkit-mask-image: radial-gradient(ellipse at center, rgba(0,0,0,1) 30%, rgba(0,0,0,0.35) 75%, rgba(0,0,0,0) 100%);
}
.hero.hero-bleed { padding: 120px 32px 140px; }
.hero.hero-bleed::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse at 50% 30%, transparent 0%, rgba(8,9,12,0.5) 60%, rgba(8,9,12,0.85) 100%);
  z-index: 2;
}
.hero.hero-bleed .hero-content { position: relative; z-index: 3; }
.hero.hero-bleed .hero-canvas { z-index: 1; }

/* Hero-with-photo: lifestyle DJ photography behind the canvas + gradient
   overlay. The photo is the dominant visual; canvas adds rhythm-coded
   motion; gradient overlays dim + colour-grade for type legibility. */
.hero.hero-photo { padding: 140px 32px 160px; }
.hero.hero-photo::before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  /* Slight desaturation + contrast push keeps the photo from competing
     with the orange/magenta accent palette of the brand. */
  filter: brightness(0.6) contrast(1.05) saturate(0.85);
}
.hero.hero-photo::after {
  background:
    radial-gradient(ellipse at 30% 20%, rgba(255, 107, 26, 0.25), transparent 55%),
    radial-gradient(ellipse at 70% 80%, rgba(255, 45, 139, 0.30), transparent 55%),
    linear-gradient(180deg, rgba(8,9,12,0.55) 0%, rgba(8,9,12,0.45) 45%, rgba(8,9,12,0.85) 100%);
}
.hero.hero-photo .hero-canvas { opacity: 0.55; mix-blend-mode: screen; }

/* Per-page photo assignments. Photos live in wwwroot/img/lifestyle/ -
   curated set from Unsplash, no-attribution free for commercial use. */
.hero-photo-crowd::before    { background-image: url('/img/lifestyle/crowd.jpg'); }
.hero-photo-booth-neon::before { background-image: url('/img/lifestyle/dj-booth-neon.jpg'); }
.hero-photo-cdj-close::before  { background-image: url('/img/lifestyle/cdj-close.jpg'); }
.hero-photo-deck-red::before   { background-image: url('/img/lifestyle/deck-red.jpg'); }
.hero-photo-dj-playing::before { background-image: url('/img/lifestyle/dj-playing.jpg'); }

/* Phone: smaller hero padding so the photo crop stays focal */
@media (max-width: 760px) {
  .hero.hero-photo { padding: 96px 22px 110px; }
}
.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(255,107,26,0.18);
  animation: waveSlide 14s linear infinite;
}
.hero-wave-2 {
  fill: rgba(52,211,153,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(255,107,26,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(255,107,26,0.16); color: var(--accent-500);
  font-size: 11px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
  margin-bottom: 18px;
}
.hero h1 {
  /* Editorial display: bigger, tighter, sunset gradient (orange -> magenta).
     Variable-font weight pushed to 800 for impact. The gradient swap from
     orange-only to sunset is the single biggest visual lift on the page. */
  font-family: var(--font-display);
  font-size: var(--fs-hero);
  margin: 0 0 18px; line-height: var(--lh-hero);
  font-weight: 800; letter-spacing: -0.04em;
  background: linear-gradient(135deg, #ffffff 0%, #ffd1a0 35%, var(--accent-500) 65%, var(--hype-500) 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero h2 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.02em;
}
.hero .lede {
  font-size: clamp(16px, 1.6vw, 19px); line-height: 1.55;
  color: var(--text-warm); opacity: 0.85;
  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(255,107,26,0.18), rgba(248,113,113,0.12));
  border: 1px solid rgba(255,107,26,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(255,107,26,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(255,107,26,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(255,107,26,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(255,107,26,0.14), rgba(52,211,153,0.06)); border: 1px solid rgba(255,107,26,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: 880px) {
  .hamburger { display: block; }
  .topbar-inner { flex-wrap: wrap; }
  .topnav { display: none; width: 100%; order: 3; flex-direction: column; gap: 4px; padding: 12px 0 8px; align-items: stretch; }
  .topnav.open { display: flex; }
  .topnav > a, .topnav .menu-trigger { 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; }

  /* On mobile, dropdown panels expand inline (always-visible static block under
     the trigger) so users don't need a second tap to reach sub-items. */
  .menu-dropdown { display: block; }
  .menu-trigger { width: 100%; text-align: left; }
  .menu-trigger .caret { display: none; }
  .menu-panel,
  .menu-dropdown.open .menu-panel {
    display: block;
    position: static; left: auto; right: auto;
    box-shadow: none; border: 0; background: transparent;
    padding: 0 0 6px 14px; min-width: 0;
  }
  .menu-panel a, .menu-panel button { padding: 7px 0; font-size: 13.5px; }
  .menu-panel a:hover, .menu-panel button:hover { background: transparent; color: var(--accent-500); }
}

/* 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(255,107,26,0.16); color: var(--accent-500); }
.mkt-eyebrow.teal { background: rgba(52,211,153,0.16); color: #5eeedd; }
.mkt-eyebrow.pink { background: rgba(248,113,113,0.16); color: #ff8db8; }

/* Hero variants */
.hero-stations {
  --grad-hero: radial-gradient(ellipse at 30% 0%, rgba(52,211,153,0.35), transparent 60%),
               radial-gradient(ellipse at 80% 30%, rgba(255,107,26,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(255,107,26,0.35), transparent 60%),
               radial-gradient(ellipse at 80% 30%, rgba(248,113,113,0.18), transparent 55%),
               radial-gradient(ellipse at 50% 100%, rgba(52,211,153,0.15), transparent 55%);
}
.hero-neutral {
  --grad-hero: radial-gradient(ellipse at 40% 0%, rgba(255,107,26,0.25), transparent 55%),
               radial-gradient(ellipse at 70% 50%, rgba(52,211,153,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(255,107,26,0.12), rgba(255,107,26,0.04)); border-color: rgba(255,107,26,0.25); }
.path-card.purple:hover { border-color: rgba(255,107,26,0.5); }
.path-card.teal { background: linear-gradient(135deg, rgba(52,211,153,0.12), rgba(52,211,153,0.04)); border-color: rgba(52,211,153,0.25); }
.path-card.teal:hover { border-color: rgba(52,211,153,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(255,107,26,0.15); color: var(--primary); }
.path-card.teal .path-icon { background: rgba(52,211,153,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(255,107,26,0.12); color: var(--primary);
}
.benefit-icon svg { width: 28px; height: 28px; }
.benefit-icon.teal { background: rgba(52,211,153,0.12); color: var(--teal); }
.benefit-icon.pink { background: rgba(248,113,113,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); }
.benefit-icon.purple { background: rgba(124,92,255,0.14); color: #b9a8ff; }
.mkt-section-dark { padding: 64px 0; margin: 36px -24px; background: linear-gradient(180deg, transparent, rgba(124,92,255,0.05), transparent); }

/* Stations "Nobody else has this stack" centerpiece treatment.
   Full-bleed magenta-tinted band, oversized hed, big "5" stat number
   pulled out of the headline. The page's strongest argument, framed
   as the visual focal point. */
.stack-centerpiece {
  position: relative;
  margin: 64px -24px;
  padding: 80px 24px 88px;
  background:
    radial-gradient(ellipse at 20% 0%, rgba(255, 107, 26, 0.10), transparent 55%),
    radial-gradient(ellipse at 80% 100%, rgba(255, 45, 139, 0.14), transparent 55%),
    linear-gradient(180deg, #08090c 0%, #14080f 50%, #08090c 100%);
  border-top: 1px solid rgba(255, 45, 139, 0.22);
  border-bottom: 1px solid rgba(255, 45, 139, 0.22);
  overflow: hidden;
}
.stack-centerpiece::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image: repeating-linear-gradient(90deg, rgba(255,255,255,0.025) 0 1px, transparent 1px 56px);
  mask-image: linear-gradient(180deg, transparent, black 50%, transparent);
  -webkit-mask-image: linear-gradient(180deg, transparent, black 50%, transparent);
}
.stack-centerpiece-inner {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}
.stack-eyebrow {
  display: inline-block;
  background: var(--hype-dim);
  color: var(--hype-500);
  padding: 6px 14px;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.stack-headline {
  font-family: var(--font-display);
  font-size: clamp(34px, 5.5vw, 64px);
  line-height: 1.04;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 0 0 24px;
  color: var(--text-warm);
}
.stack-num {
  display: inline-block;
  background: linear-gradient(135deg, var(--accent-500), var(--hype-500));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 1.15em;
  font-weight: 800;
}
.stack-lede {
  font-size: clamp(15px, 1.5vw, 18px);
  line-height: 1.55;
  color: var(--text-secondary);
  max-width: 720px;
  margin: 0 auto 40px;
}
.stack-grid-wrap { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

/* Past-due banner shown on Account Settings when the most recent Stripe
   charge failed. CTA opens the Customer Portal so the DJ can update
   their card. Magenta tint - the same colour we use for warnings on
   live-stream pages so it reads as urgent without feeling angry red. */
.banner-pastdue {
  display: flex; align-items: center; gap: 16px;
  padding: 16px 20px;
  margin: 0 0 20px;
  background: linear-gradient(135deg, rgba(255, 45, 139, 0.10), rgba(255, 107, 26, 0.06));
  border: 1px solid var(--hype-500);
  border-radius: var(--r-lg, 12px);
}
.banner-pastdue-icon {
  flex: 0 0 36px; width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  background: var(--hype-500); color: #fff;
  border-radius: 50%;
  font-family: var(--font-display); font-weight: 800; font-size: 20px;
  line-height: 1;
}
.banner-pastdue-body { flex: 1; }
.banner-pastdue-body strong {
  display: block; font-size: 16px; margin-bottom: 4px;
  color: var(--text-warm);
}
.banner-pastdue-body p {
  margin: 0; font-size: 13.5px; color: var(--text-secondary); line-height: 1.45;
}
.banner-pastdue-action { flex: 0 0 auto; }
@media (max-width: 640px) {
  .banner-pastdue { flex-direction: column; align-items: flex-start; }
  .banner-pastdue-action { width: 100%; }
  .banner-pastdue-action button { width: 100%; }
}

/* Verify-your-email banner. Lives in _Layout.cshtml above the main content
   for the lifetime of an unconfirmed account. Softer hue than the past-due
   banner because the DJ can still use the dashboard - just can't run the
   desktop client until they click the link. */
.verify-banner {
  margin: 0 auto;
  max-width: 1100px;
  padding: 0 18px;
}
.verify-banner-inner {
  display: flex; align-items: center; gap: 14px;
  padding: 12px 16px; margin: 14px 0 0;
  background: rgba(255, 107, 26, 0.10);
  border: 1px solid rgba(255, 107, 26, 0.45);
  border-radius: var(--r-lg, 12px);
}
.verify-banner-icon {
  flex: 0 0 28px; width: 28px; height: 28px;
  display: flex; align-items: center; justify-content: center;
  background: #ff6b1a; color: #fff;
  border-radius: 50%; font-weight: 800; font-size: 16px; line-height: 1;
}
.verify-banner-body { flex: 1; display: flex; flex-direction: column; gap: 2px; font-size: 13.5px; line-height: 1.45; }
.verify-banner-body strong { color: var(--text-warm); }
.verify-banner-body .muted { color: var(--text-secondary); font-size: 12.5px; }
.verify-banner-action { flex: 0 0 auto; }
.verify-banner-action .btn-link { color: #ff6b1a; font-weight: 600; }
.verify-banner-notice {
  margin: 6px 0 0;
  padding: 6px 14px;
  font-size: 12.5px;
  color: var(--text-secondary);
  text-align: center;
}
@media (max-width: 640px) {
  .verify-banner-inner { flex-direction: column; align-items: flex-start; }
  .verify-banner-action { width: 100%; }
  .verify-banner-action button { width: 100%; }
}
.stack-centerpiece .benefits-grid { margin-top: 40px; }
.stack-centerpiece .benefit-card {
  background: rgba(28, 31, 37, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

/* 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(255,107,26,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(255,107,26,0.15), rgba(52,211,153,0.08)); }
.showcase-img.teal { background: linear-gradient(135deg, rgba(52,211,153,0.15), rgba(255,107,26,0.08)); }
.showcase-img.pink { background: linear-gradient(135deg, rgba(248,113,113,0.12), rgba(255,107,26,0.08)); }
.showcase-img.amber { background: linear-gradient(135deg, rgba(255,181,71,0.12), rgba(255,107,26,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(255,107,26,0.18), rgba(52,211,153,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; } }

/* ── Logged-in dashboard (/Dashboard/Index) ─────────────────────── */
.dash-hello {
  display: flex; justify-content: space-between; align-items: flex-end; gap: 24px;
  margin: 0 0 28px;
}
.dash-hello h1 {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.6vw, 38px);
  font-weight: 800; letter-spacing: -0.02em;
  margin: 0 0 6px;
}
.dash-hello p { margin: 0; }
.dash-hello-meta { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }
.dash-plan-badge {
  display: inline-block; padding: 5px 12px; border-radius: 999px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  background: var(--surface-2); color: var(--text);
  font-family: var(--font-display);
}
.dash-plan-trial { background: rgba(255,181,71,0.18); color: #ffd089; }
.dash-plan-essential { background: rgba(91,108,255,0.18); color: #a8b3ff; }
.dash-plan-pro { background: rgba(255,107,26,0.2); color: var(--accent-500); }
.dash-plan-touring { background: rgba(255,45,139,0.22); color: #ff8db8; }
.dash-trial-pill { font-size: 12.5px; }

.dash-tiles {
  display: grid; gap: 16px; margin: 0 0 28px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
.dash-tile {
  background: var(--surface);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 22px;
  display: flex; flex-direction: column; gap: 14px;
  transition: border-color .15s ease, transform .15s ease;
}
.dash-tile:hover { border-color: rgba(255,107,26,0.5); }
.dash-tile-head { display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.dash-tile-head h2 {
  margin: 0; font-size: 18px; font-weight: 700;
  font-family: var(--font-display); letter-spacing: -0.01em;
}
.dash-tile p { margin: 0; font-size: 14px; line-height: 1.5; }
.dash-tile-actions { display: flex; gap: 10px; flex-wrap: wrap; margin-top: auto; }
.dash-tile-promo { border-style: dashed; opacity: 0.92; }
.dash-tile-promo:hover { opacity: 1; border-style: solid; }

.dash-status {
  display: inline-block; padding: 3px 10px; border-radius: 999px;
  font-size: 10.5px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  font-family: var(--font-display);
}
.dash-status-idle { background: var(--surface-2); color: var(--text-dim); }
.dash-status-live { background: rgba(52,211,153,0.18); color: #5eeedd; }
.dash-status-early { background: rgba(255,45,139,0.18); color: #ff8db8; }
.dash-status-soft { background: var(--surface-2); color: var(--text-muted); }

.dash-grid {
  display: grid; gap: 16px;
  grid-template-columns: 2fr 1fr;
}
@media (max-width: 820px) { .dash-grid { grid-template-columns: 1fr; } }

.dash-quicklinks { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 2px; }
.dash-quicklinks li a {
  display: block; padding: 9px 10px; border-radius: 8px;
  color: var(--text); font-size: 14px;
}
.dash-quicklinks li a:hover { background: var(--surface-2); text-decoration: none; }
