/* Livegen Radio — styles
   Dark, player-first. The "spectrum" gradient (cyan → violet → magenta) matches
   one brand device; everything else stays out of its way. */

:root{
  --bg:#08090c;
  --bg-2:#0e1017;
  --panel:#12141d;
  --panel-2:#171a25;
  --line:#242838;
  --text:#eef0f6;
  --muted:#9aa1b5;
  --dim:#6b7288;

  --cyan:#00caff;      /* sampled from the logo */
  --magenta:#f013da;   /* sampled from the logo */
  --violet:#8b5cf6;
  --amber:#f5a524;     /* WARNINGS ONLY — not a brand colour */
  --spectrum:linear-gradient(90deg,var(--cyan) 0%,#4aa8ff 28%,var(--violet) 62%,var(--magenta) 100%);

  --radius:14px;
  --radius-lg:22px;
  --max:1100px;
  --font:'Inter',-apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,Helvetica,Arial,sans-serif;
}

*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  background:var(--bg);
  color:var(--text);
  font-family:var(--font);
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}
body::before{
  content:'';
  position:fixed;
  inset:-30% -10% auto -10%;
  height:70vh;
  background:
    radial-gradient(60% 60% at 20% 0%,rgba(0,202,255,.14),transparent 70%),
    radial-gradient(50% 60% at 75% 10%,rgba(139,92,246,.16),transparent 70%),
    radial-gradient(40% 50% at 95% 0%,rgba(240,19,218,.12),transparent 70%);
  pointer-events:none;
  z-index:0;
}
main,header,footer{position:relative;z-index:1}
a{color:var(--cyan);text-decoration:none}
a:hover{text-decoration:underline}
.wrap{max-width:var(--max);margin:0 auto;padding:0 22px}

/* ---------- header ---------- */
.site-head{
  display:flex;align-items:center;justify-content:space-between;
  gap:20px;padding:20px 22px;max-width:var(--max);margin:0 auto;flex-wrap:wrap;
}
.brand{display:flex;align-items:center;gap:12px;text-decoration:none;color:var(--text)}
.brand:hover{text-decoration:none}
.brand-mark{
  width:34px;height:34px;border-radius:50%;flex:none;
  overflow:hidden;
}
.brand-mark img{
  display:block;width:100%;height:100%;object-fit:cover;
}
.brand-name{font-weight:700;letter-spacing:-.02em;font-size:1.02rem;line-height:1.15}
.brand-name small{display:block;font-weight:500;font-size:.68rem;color:var(--dim);letter-spacing:.09em;text-transform:uppercase}
.nav{display:flex;gap:6px;align-items:center;flex-wrap:wrap}
.nav a{
  color:var(--muted);font-size:.9rem;font-weight:500;
  padding:8px 13px;border-radius:9px;
}
.nav a:hover{color:var(--text);background:var(--panel);text-decoration:none}
.nav a.cta{background:var(--text);color:#0a0b10;font-weight:650}
.nav a.cta:hover{background:#fff}

#authSlot .auth-avatar{
  display:block;width:34px;height:34px;border-radius:50%;overflow:hidden;
  background:var(--spectrum);color:#08090c;font-weight:700;font-size:.85rem;
  display:flex;align-items:center;justify-content:center;
}
#authSlot .auth-avatar img{width:100%;height:100%;object-fit:cover}

.account-avatar{
  width:64px;height:64px;border-radius:50%;overflow:hidden;flex:none;
  background:var(--spectrum);color:#08090c;font-weight:700;font-size:1.4rem;
  display:flex;align-items:center;justify-content:center;
}
.account-avatar img{width:100%;height:100%;object-fit:cover}

/* The nav lives on the device itself now — its own top control strip,
   not separate page chrome. */
.device .site-head{
  padding:10px 8px 16px;max-width:none;margin:0;border-bottom:1px solid var(--line);
}

/* ---------- device chassis ----------
   The hero (screen) and the player (transport + presets) live inside one
   physical-feeling unit, not two separate page blocks. */
.device{
  position:relative;margin:26px auto 0;max-width:900px;
  background:linear-gradient(180deg,#15171f,#0c0d13);
  border:1px solid var(--line);border-radius:28px;
  box-shadow:0 30px 80px rgba(0,0,0,.55),inset 0 1px 0 rgba(255,255,255,.05);
  padding:14px;overflow:hidden;
}
/* A thin top highlight + corner "screws" sell the hardware read without
   turning into pastiche — subtle, not a costume. */
.device::before{
  content:'';position:absolute;top:0;left:16px;right:16px;height:1px;
  background:linear-gradient(90deg,transparent,rgba(255,255,255,.14),transparent);
  z-index:3;
}
.device::after{
  content:'';position:absolute;inset:0;border-radius:28px;pointer-events:none;
  box-shadow:inset 0 0 0 1px rgba(255,255,255,.02);
}

/* ---------- hero + stage (the device's "screen") ---------- */
.hero{
  padding:36px 18px 22px;text-align:center;position:relative;
  isolation:isolate;
  border-radius:20px;overflow:hidden;
  background:#04050a;
}
.hero-copy{position:relative;z-index:2;transition:opacity .25s ease}
/* Watch mode puts the track's own visual front and centre — the marketing
   headline steps aside rather than fighting it for the same space. */
.hero.watching .hero-copy{opacity:0;pointer-events:none}
/* A soft dark pool sits behind the words only, so the footage stays visible at
   the edges of the frame while the headline keeps its contrast. */
.hero-copy::before{
  content:'';position:absolute;inset:-30px -60px -10px;z-index:-1;
  background:radial-gradient(58% 68% at 50% 52%,rgba(8,9,12,.86),rgba(8,9,12,.55) 58%,transparent 84%);
  filter:blur(14px);pointer-events:none;
}

/* The stage sits behind the hero copy. If assets/hero.jpg exists it fills the
   frame; if not, the beams + crowd below carry it on their own. */
.stage{
  position:absolute;inset:0;
  z-index:0;overflow:hidden;pointer-events:none;border-radius:20px;
}
.stage-photo,.stage-video{
  position:absolute;inset:0;width:100%;height:100%;object-fit:cover;
  object-position:center 32%;
  opacity:.6;filter:saturate(1.08) contrast(1.04);
}
/* The video's subject sits centred in frame, unlike the still — so it needs its
   own crop anchor or the performers get cropped out of the top. */
.stage-video{z-index:1;opacity:.85;object-position:center 52%;filter:saturate(1.05) contrast(1.02)}
/* The still sits under the video as the fallback. When the video is present the
   still is redundant, so hide it and let the video play. */
.stage:has(.stage-video) .stage-photo{display:none}

/* When a photo or video is present the CSS beams would fight it — soften them
   right down and let the footage's own stage lighting do the work. */
.stage:has(.stage-photo) .beam,.stage:has(.stage-video) .beam{opacity:.18;filter:blur(46px)}
.stage:has(.stage-photo) .crowd,.stage:has(.stage-video) .crowd{opacity:.35}
.stage:has(.stage-photo) .haze,.stage:has(.stage-video) .haze{opacity:.4}
/* The still's subject is off to the right, so a centre-weighted darkener worked.
   The video's performers are dead centre — that same blob wipes them out. Use a
   softer vertical scrim instead and carry text legibility on the type itself. */
.stage:has(.stage-video)::after{
  z-index:2;
  background:linear-gradient(180deg,rgba(8,9,12,.6) 0%,rgba(8,9,12,.2) 40%,rgba(8,9,12,.34) 72%,rgba(8,9,12,.82) 100%);
}
.stage:has(.stage-video) ~ .hero-copy h1{text-shadow:0 3px 26px rgba(0,0,0,.85),0 1px 4px rgba(0,0,0,.6)}
.stage:has(.stage-video) ~ .hero-copy p{text-shadow:0 2px 14px rgba(0,0,0,.9)}
.stage:has(.stage-video) ~ .hero-copy .kicker{backdrop-filter:blur(6px)}

/* Anyone who has asked for less motion gets the still instead of the video.
   So does anyone on a phone — a 1.4MB autoplay video on mobile data is rude. */
@media (prefers-reduced-motion:reduce),(max-width:700px){
  .stage-video{display:none}
  .stage:has(.stage-video) .stage-photo{display:block}
  .stage:has(.stage-video)::after{
    background:radial-gradient(46% 56% at 50% 40%,rgba(8,9,12,.92),rgba(8,9,12,.6) 55%,transparent 82%);
  }
}
/* Darken whatever is behind the words so text stays readable over a photo */
.stage::after{
  content:'';position:absolute;inset:0;
  background:radial-gradient(46% 56% at 50% 40%,rgba(8,9,12,.92),rgba(8,9,12,.6) 55%,transparent 82%);
}

.beam{
  position:absolute;top:-40%;width:15%;height:170%;
  filter:blur(30px);mix-blend-mode:screen;
  transform-origin:top center;
  animation:sway 11s ease-in-out infinite;
}
.beam-1{left:16%;background:linear-gradient(180deg,rgba(0,202,255,.85),rgba(0,202,255,.15) 55%,transparent 78%)}
.beam-2{left:42%;background:linear-gradient(180deg,rgba(139,92,246,.9),rgba(139,92,246,.18) 58%,transparent 80%);animation-delay:-3.5s}
.beam-3{left:70%;background:linear-gradient(180deg,rgba(240,19,218,.7),rgba(240,19,218,.12) 52%,transparent 76%);animation-delay:-7s}
@keyframes sway{
  0%,100%{opacity:.55;transform:rotate(var(--r)) scaleX(1)}
  50%{opacity:.85;transform:rotate(calc(var(--r) * .6)) scaleX(1.25)}
}
.beam-1{--r:14deg}.beam-2{--r:-4deg}.beam-3{--r:-17deg}

.haze{
  position:absolute;left:0;right:0;bottom:0;height:52%;
  background:linear-gradient(180deg,transparent,rgba(139,92,246,.09) 45%,rgba(0,202,255,.07));
  filter:blur(30px);
}

.crowd{
  position:absolute;left:0;right:0;bottom:-2px;width:100%;height:120px;
  fill:#04050a;
}
.crowd .hands rect{fill:#04050a}
.crowd .phones circle{fill:rgba(255,240,200,.85);filter:drop-shadow(0 0 6px rgba(255,225,160,.9))}

@media (prefers-reduced-motion:reduce){ .beam{animation:none} }

.hero{padding-top:60px}
.hero h1{
  font-size:clamp(2.1rem,6vw,3.5rem);line-height:1.04;margin:0 0 16px;
  letter-spacing:-.035em;font-weight:800;
}
.grad{background:var(--spectrum);-webkit-background-clip:text;background-clip:text;color:transparent}
.hero p{color:var(--muted);font-size:clamp(1rem,2.2vw,1.15rem);max-width:620px;margin:0 auto 6px}
.kicker{
  display:inline-block;margin-bottom:18px;font-size:.72rem;letter-spacing:.16em;
  text-transform:uppercase;color:var(--cyan);font-weight:650;
  border:1px solid rgba(0,202,255,.3);border-radius:100px;padding:6px 14px;
  background:rgba(0,202,255,.06);
}

/* ---------- player (the device's transport + presets, same chassis as the screen) ---------- */
.player{ margin-top:10px; }
.player-top{display:flex;gap:18px;align-items:center;padding:18px 14px 16px}
.player{ --lane-grad:var(--spectrum); }
/* Pick your lane, and the player's own colour shifts with it — not just the
   active pill. Main keeps the full brand spectrum; every other lane gets its
   own single-genre identity. */
.device[data-lane="rap"]      .player{ --lane-grad:linear-gradient(135deg,#d946ef,#f013da); }
.device[data-lane="garage"]   .player{ --lane-grad:linear-gradient(135deg,#3b82f6,#2563eb); }
.device[data-lane="dnb"]      .player{ --lane-grad:linear-gradient(135deg,#a3e635,#22c55e); }
.device[data-lane="afrobeats"] .player{ --lane-grad:linear-gradient(135deg,#fb923c,#f59e0b); }
.device[data-lane="rnb"]      .player{ --lane-grad:linear-gradient(135deg,#8b5cf6,#6d28d9); }
.device[data-lane="sunday"]   .player{ --lane-grad:linear-gradient(135deg,#818cf8,#a78bfa); }

.play-btn{
  width:64px;height:64px;flex:none;border-radius:50%;border:0;cursor:pointer;
  background:var(--lane-grad);display:grid;place-items:center;
  transition:transform .16s ease,box-shadow .16s ease,background .3s ease;
  box-shadow:0 8px 26px rgba(139,92,246,.35);
}
.play-btn:hover{transform:scale(1.05)}
.play-btn:active{transform:scale(.97)}
.play-btn svg{width:24px;height:24px;fill:#08090c;margin-left:3px}
.play-btn.playing svg{margin-left:0}
.np{min-width:0;flex:1}
.np-label{
  font-size:.66rem;letter-spacing:.16em;text-transform:uppercase;
  color:var(--dim);font-weight:650;display:flex;align-items:center;gap:8px;
}
.live-dot{width:7px;height:7px;border-radius:50%;background:var(--dim);flex:none}
.live .live-dot{background:#ff4d5e;animation:pulse 1.8s ease-in-out infinite}
@keyframes pulse{0%,100%{opacity:1}50%{opacity:.35}}
.np-title{
  font-size:1.28rem;font-weight:700;letter-spacing:-.02em;margin:3px 0 1px;
  white-space:nowrap;overflow:hidden;text-overflow:ellipsis;
}
.np-artist{color:var(--muted);font-size:.94rem;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
.bars{display:flex;align-items:flex-end;gap:3px;height:30px;flex:none}
.bars i{width:3px;background:var(--cyan);border-radius:2px;height:6px;opacity:.5}
.playing-anim .bars i{animation:bar .9s ease-in-out infinite;opacity:1}
.playing-anim .bars i:nth-child(2){animation-delay:.15s;background:#4dd4e8}
.playing-anim .bars i:nth-child(3){animation-delay:.3s;background:var(--violet)}
.playing-anim .bars i:nth-child(4){animation-delay:.45s;background:var(--violet)}
.playing-anim .bars i:nth-child(5){animation-delay:.6s;background:var(--magenta)}
@keyframes bar{0%,100%{height:6px}50%{height:26px}}

/* audio / watch toggle */
.view-toggle{
  display:flex;flex:none;background:var(--panel-2);border:1px solid var(--line);
  border-radius:100px;padding:3px;gap:2px;
}
.view-toggle button{
  background:none;border:0;color:var(--muted);font-size:.78rem;font-weight:650;
  padding:6px 13px;border-radius:100px;cursor:pointer;font-family:inherit;
}
.view-toggle button.active{background:var(--text);color:#0a0b10}

/* per-track watch visuals, layered into the same stage as the brand video */
.lyric-visual{
  position:absolute;inset:0;z-index:3;display:none;align-items:center;justify-content:center;
  text-align:center;padding:0 12%;font-size:clamp(1.3rem,3.4vw,2rem);font-weight:750;
  letter-spacing:-.02em;line-height:1.2;color:#fff;
  background:rgba(4,5,10,.55);
  text-shadow:0 3px 20px rgba(0,0,0,.7);
}
.lyric-visual.showing{display:flex}
.watch-avatar{
  position:absolute;inset:0;z-index:3;display:none;align-items:center;justify-content:center;
  background:rgba(4,5,10,.55);
}
.watch-avatar.showing{display:flex}
.watch-avatar img{
  width:140px;height:140px;border-radius:50%;object-fit:cover;
  border:3px solid rgba(255,255,255,.85);box-shadow:0 12px 40px rgba(0,0,0,.5);
}
.no-visual-note{
  position:absolute;left:0;right:0;bottom:14px;z-index:3;display:none;
  text-align:center;font-size:.78rem;color:var(--muted);
  background:rgba(4,5,10,.6);margin:0 auto;padding:7px 16px;border-radius:100px;
  width:max-content;max-width:80%;
}
.no-visual-note.showing{display:block}

/* lanes */
.lanes{border-top:1px solid var(--line);padding:18px 24px 20px;background:rgba(0,0,0,.22)}
.lanes-head{display:flex;justify-content:space-between;align-items:baseline;gap:12px;margin-bottom:12px;flex-wrap:wrap}
.lanes-head h3{margin:0;font-size:.72rem;letter-spacing:.16em;text-transform:uppercase;color:var(--dim);font-weight:650}
.lanes-head .hint{font-size:.8rem;color:var(--dim)}
.lane-row{display:flex;gap:8px;flex-wrap:wrap}
.lane{
  border:1px solid var(--line);background:var(--panel);color:var(--muted);
  border-radius:100px;padding:8px 16px;font-size:.87rem;font-weight:550;
  cursor:pointer;font-family:inherit;transition:all .14s ease;
}
.lane:hover{color:var(--text);border-color:#39405a}
.lane.active{background:var(--text);color:#0a0b10;border-color:var(--text);font-weight:650}
.stay{
  margin-top:16px;padding-top:15px;border-top:1px solid var(--line);
  display:flex;align-items:center;justify-content:space-between;gap:14px;flex-wrap:wrap;
}
.stay-txt{font-size:.87rem;color:var(--muted);max-width:420px}
.stay-txt strong{color:var(--text);font-weight:600}
.stay-txt .rejoin{color:var(--cyan)}
.toggle{display:flex;align-items:center;gap:10px;cursor:pointer;user-select:none}
.toggle input{position:absolute;opacity:0;pointer-events:none}
.track{
  width:44px;height:25px;border-radius:100px;background:var(--panel-2);
  border:1px solid var(--line);position:relative;transition:all .18s ease;flex:none;
}
.track::after{
  content:'';position:absolute;top:2px;left:2px;width:19px;height:19px;border-radius:50%;
  background:var(--dim);transition:all .18s ease;
}
.toggle input:checked+.track{background:rgba(0,202,255,.2);border-color:var(--cyan)}
.toggle input:checked+.track::after{left:21px;background:var(--cyan)}
.toggle-label{font-size:.87rem;font-weight:600}
.stay-count{font-size:.76rem;color:var(--dim);display:block;font-weight:400}
.locked .track{opacity:.45}
.locked .toggle-label{color:var(--dim)}

.preview-note{
  margin:14px auto 0;max-width:760px;font-size:.8rem;color:var(--amber);
  background:rgba(245,165,36,.08);border:1px solid rgba(245,165,36,.25);
  border-radius:10px;padding:10px 14px;text-align:center;
}

/* ---------- sections ---------- */
section{padding:60px 0}
.sec-head{margin-bottom:26px}

/* Inside the device, every section becomes an internal panel of the same
   unit — a seam divider, not a separate floating block. */
.device section:not(.hero){padding:30px 18px;border-top:1px solid var(--line)}
.device .sec-head{margin-bottom:20px}
.device .band{
  background:none;border:0;border-radius:0;padding:0;
  box-shadow:none;
}
.sec-head h2{font-size:clamp(1.5rem,3.4vw,2.1rem);margin:0 0 8px;letter-spacing:-.03em;font-weight:750}
.sec-head p{color:var(--muted);margin:0;max-width:620px}

.schedule{display:grid;gap:10px}
.slot{
  display:grid;grid-template-columns:88px 1fr auto auto;gap:8px;align-items:center;
  background:var(--panel);border:1px solid var(--line);border-radius:var(--radius);
  padding:14px 18px;
}
.slot.now{border-color:rgba(0,202,255,.45);background:linear-gradient(90deg,rgba(0,202,255,.09),var(--panel) 40%)}
.slot-time{font-variant-numeric:tabular-nums;font-weight:700;color:var(--muted);font-size:.94rem}
.slot.now .slot-time{color:var(--cyan)}
.slot-name{font-weight:650;letter-spacing:-.01em}
.slot-desc{color:var(--dim);font-size:.86rem}
.badge{
  font-size:.63rem;letter-spacing:.14em;text-transform:uppercase;font-weight:700;
  color:var(--cyan);border:1px solid rgba(0,202,255,.35);border-radius:100px;padding:4px 10px;
}
.save-show{
  background:none;border:0;color:var(--dim);font-size:1.1rem;cursor:pointer;
  padding:4px 8px;line-height:1;flex:none;
}
.save-show:hover{color:var(--text)}
.save-show.saved{color:#ffc76a}
.slot:not(.now):not(.next-badge-visible) .badge{display:none}
.slot.next-badge-visible .badge{color:var(--muted);border-color:var(--line)}

/* ---------- just played ---------- */
.history{display:grid;gap:2px}
.history-row{
  display:grid;grid-template-columns:34px 1fr auto;gap:16px;align-items:center;
  padding:13px 6px;border-bottom:1px solid var(--line);
}
.history-row:last-child{border-bottom:0}
.history-num{font-variant-numeric:tabular-nums;font-weight:700;color:var(--dim);font-size:.85rem}
.history-title{font-weight:650;letter-spacing:-.01em}
.history-artist{color:var(--muted);font-size:.86rem}
.history-lane{
  font-size:.68rem;letter-spacing:.1em;text-transform:uppercase;font-weight:650;
  color:var(--dim);white-space:nowrap;
}

/* ---------- discover ---------- */
.discover{display:grid;grid-template-columns:repeat(auto-fit,minmax(200px,1fr));gap:14px}
.discover-card{
  position:relative;background:var(--panel);border:1px solid var(--line);border-radius:var(--radius);
  padding:20px;transition:border-color .16s ease,transform .16s ease;
}
.discover-card:hover{border-color:#39405a;transform:translateY(-2px)}
.discover-play{
  width:40px;height:40px;border-radius:50%;border:0;cursor:pointer;margin-bottom:14px;
  background:var(--spectrum);display:grid;place-items:center;transition:transform .14s ease;
}
.discover-play:hover{transform:scale(1.08)}
.discover-play svg{width:16px;height:16px;fill:#08090c;margin-left:2px}
.discover-like{
  position:absolute;top:16px;right:16px;background:none;border:0;cursor:pointer;
  color:var(--dim);font-size:1rem;
}
.discover-like:hover{color:var(--muted)}
.discover-like.liked{color:#ff4d5e}
.discover-title{font-weight:650;letter-spacing:-.01em;margin-bottom:2px}
.discover-artist{color:var(--muted);font-size:.87rem;margin-bottom:10px}
.discover-lane{
  display:inline-block;font-size:.66rem;letter-spacing:.12em;text-transform:uppercase;font-weight:700;
  color:var(--cyan);border:1px solid rgba(0,202,255,.3);border-radius:100px;padding:3px 10px;
}

.schedule-toggle{
  display:flex;align-items:center;gap:6px;margin-top:12px;
  background:none;border:0;color:var(--muted);font-size:.87rem;font-weight:600;
  cursor:pointer;font-family:inherit;padding:6px 2px;
}
.schedule-toggle:hover{color:var(--text)}
.schedule-toggle svg{transition:transform .18s ease}
.schedule-toggle.open svg{transform:rotate(180deg)}

.photo-band{
  position:relative;margin:0 0 26px;border-radius:var(--radius-lg);overflow:hidden;
  border:1px solid var(--line);aspect-ratio:21/7;
}
.photo-band img{width:100%;height:100%;object-fit:cover;object-position:center 38%;display:block}
.photo-band::after{
  content:'';position:absolute;inset:0;
  background:linear-gradient(90deg,rgba(8,9,12,.85),rgba(8,9,12,.15) 55%,rgba(8,9,12,.6));
}
.photo-band figcaption{
  position:absolute;left:28px;bottom:24px;z-index:2;
  font-size:clamp(1.05rem,2.4vw,1.5rem);font-weight:700;letter-spacing:-.02em;
  text-shadow:0 2px 18px rgba(0,0,0,.8);
}
@media (max-width:620px){ .photo-band{aspect-ratio:16/10} .photo-band figcaption{left:18px;bottom:16px} }

.cards{display:grid;grid-template-columns:repeat(auto-fit,minmax(255px,1fr));gap:16px}
.card{
  background:var(--panel);border:1px solid var(--line);border-radius:var(--radius);
  padding:24px;
}
.card h3{margin:0 0 8px;font-size:1.06rem;letter-spacing:-.01em}
.card p{margin:0;color:var(--muted);font-size:.93rem}
.card .num{
  display:inline-grid;place-items:center;width:30px;height:30px;border-radius:8px;
  background:var(--spectrum);color:#08090c;font-weight:800;font-size:.85rem;margin-bottom:13px;
}

.band{
  background:var(--panel);border:1px solid var(--line);border-radius:var(--radius-lg);
  padding:38px;text-align:center;
}
.band h2{margin:0 0 10px;font-size:clamp(1.4rem,3.2vw,2rem);letter-spacing:-.03em}
.band p{color:var(--muted);max-width:560px;margin:0 auto 22px}

.btn{
  display:inline-block;background:var(--text);color:#0a0b10;font-weight:650;
  padding:13px 26px;border-radius:11px;font-size:.95rem;border:0;cursor:pointer;
  font-family:inherit;
}
.btn:hover{background:#fff;text-decoration:none}
.btn-ghost{background:transparent;color:var(--text);border:1px solid var(--line)}
.btn-ghost:hover{background:var(--panel-2);border-color:#39405a}

/* ---------- content pages ---------- */
.page{padding:44px 0 20px;max-width:760px;margin:0 auto}
.page h1{font-size:clamp(1.9rem,4.6vw,2.7rem);letter-spacing:-.035em;line-height:1.05;margin:16px 0 10px;font-weight:800}
.page .lede{color:var(--muted);font-size:1.08rem;margin:0 0 30px}
.page h2{font-size:1.28rem;margin:38px 0 12px;letter-spacing:-.02em}
.page h3{font-size:1.02rem;margin:26px 0 8px}
.page p,.page li{color:var(--muted)}
.page strong{color:var(--text)}
.page ul,.page ol{padding-left:20px}
.page li{margin-bottom:7px}
.callout{
  background:var(--panel);border:1px solid var(--line);border-left:3px solid var(--cyan);
  border-radius:0 var(--radius) var(--radius) 0;padding:18px 22px;margin:24px 0;
}
.callout p{margin:0;color:var(--text)}
.callout.warn{border-left-color:var(--amber)}
.draft-note{
  background:rgba(245,165,36,.07);border:1px solid rgba(245,165,36,.25);
  border-radius:var(--radius);padding:16px 20px;margin:0 0 28px;
}
.draft-note p{margin:0;color:var(--amber);font-size:.9rem}

/* ---------- form ---------- */
.form{display:grid;gap:18px;margin-top:26px}
.field{display:grid;gap:7px}
.field label{font-size:.85rem;font-weight:600;color:var(--text)}
.field .help{font-size:.79rem;color:var(--dim);margin:0}
.field input[type=text],.field input[type=email],.field input[type=url],
.field select,.field textarea{
  background:var(--panel);border:1px solid var(--line);border-radius:10px;
  padding:12px 14px;color:var(--text);font-family:inherit;font-size:.94rem;width:100%;
}
.field input:focus,.field select:focus,.field textarea:focus{
  outline:none;border-color:var(--cyan);box-shadow:0 0 0 3px rgba(0,202,255,.12);
}
.field textarea{min-height:110px;resize:vertical}
.two{display:grid;grid-template-columns:1fr 1fr;gap:18px}
.checks{display:grid;gap:12px;background:var(--panel);border:1px solid var(--line);border-radius:var(--radius);padding:20px}
.check{display:grid;grid-template-columns:auto 1fr;gap:11px;align-items:start;font-size:.89rem;color:var(--muted);cursor:pointer}
.check input{margin-top:4px;accent-color:var(--cyan);width:16px;height:16px;flex:none}
.checks-head{font-size:.72rem;letter-spacing:.14em;text-transform:uppercase;color:var(--dim);font-weight:650;margin:0}

/* ---------- footer ---------- */
.site-foot{
  border-top:1px solid var(--line);margin-top:70px;padding:34px 22px 44px;
  max-width:var(--max);margin-left:auto;margin-right:auto;
}
.foot-grid{display:flex;justify-content:space-between;gap:26px;flex-wrap:wrap;align-items:flex-start}
.foot-links{display:flex;gap:20px;flex-wrap:wrap}
.foot-links a{color:var(--muted);font-size:.88rem}
.foot-note{color:var(--dim);font-size:.82rem;max-width:340px;margin:0}
.spectrum-line{height:3px;background:var(--spectrum);border-radius:3px;margin-bottom:30px;opacity:.75}

@media (max-width:620px){
  .device{padding:8px;border-radius:22px;margin:16px auto 0}
  .hero{border-radius:16px;padding:26px 14px 18px}
  .player-top{padding:18px}
  .bars{display:none}
  .two{grid-template-columns:1fr}
  .slot{grid-template-columns:70px 1fr auto;gap:8px}
  .slot .badge{grid-column:1/-1;justify-self:start}
  .hero{padding:30px 0 6px}
}
