/* ============================================================
   Gloam.fm — marketing site
   Built on the AIDJ cockpit design language:
   Big Shoulders Display / IBM Plex Mono / Inter + phase LUTs.
   The page is one night: arrivals → warmup → peak → comedown → late.
   Fonts are loaded via <link> in the HTML <head> so this stylesheet
   applies instantly without waiting on the font fetch.
   ============================================================ */

:root {
  --font-display: 'Big Shoulders Display', 'Anton', Impact, sans-serif;
  --font-mono:    'IBM Plex Mono', ui-monospace, Menlo, monospace;
  --font-body:    'Inter', -apple-system, system-ui, sans-serif;
  --font-brand:   'Unbounded', 'Big Shoulders Display', sans-serif;

  /* base night */
  --ink:        #04141a;
  --ink-2:      #061a22;
  --fg:         #f6f9ff;
  --fg-dim:     rgba(246, 249, 255, 0.62);
  --fg-faint:   rgba(246, 249, 255, 0.34);
  --edge:       rgba(246, 249, 255, 0.10);
  --edge-soft:  rgba(246, 249, 255, 0.06);

  /* phase accents (from styles/luts.css) */
  --arrivals: #7adfe6;
  --dinner:   #f0b27a;
  --warmup:   #b39df7;
  --peak:     #ff3380;
  --comedown: #7af0a8;
  --late:     #f0d36a;

  /* per-section accent (overridden by data-phase) */
  --accent: var(--arrivals);
  --max: 1200px;
}

[data-phase="arrivals"] { --accent: var(--arrivals); --wash: #04141a; --wash-mid: #0e3242; }
[data-phase="warmup"]   { --accent: var(--warmup);   --wash: #0c061a; --wash-mid: #2a1240; }
[data-phase="peak"]     { --accent: var(--peak);     --wash: #1a0510; --wash-mid: #580726; }
[data-phase="comedown"] { --accent: var(--comedown); --wash: #06140e; --wash-mid: #0f3a2a; }
[data-phase="late"]     { --accent: var(--late);     --wash: #100a06; --wash-mid: #3a2a14; }

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--ink);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* ---------- shared primitives ---------- */
.wrap { width: 100%; max-width: var(--max); margin-inline: auto; padding-inline: 28px; }

.eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 22px;
}
.eyebrow::before {
  content: '';
  width: 26px; height: 1px;
  background: var(--accent);
  opacity: 0.7;
}

.display {
  font-family: var(--font-display);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: 0.005em;
  text-transform: uppercase;
  margin: 0;
  text-wrap: balance;
}

.section { position: relative; padding: 120px 0; }
.section-head { max-width: 720px; margin-bottom: 64px; }
.section-head h2 {
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 0.94;
  margin: 0 0 20px;
  text-wrap: balance;
}
.section-head p {
  font-size: 1.2rem;
  color: var(--fg-dim);
  margin: 0;
  max-width: 60ch;
  text-wrap: pretty;
}

/* phase wash bg per section */
.wash { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.wash::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(60% 60% at 18% 12%, color-mix(in oklab, var(--accent), transparent 84%), transparent 62%),
    radial-gradient(55% 70% at 88% 84%, color-mix(in oklab, var(--wash-mid, var(--ink-2)), transparent 55%), transparent 70%);
}
.section > .wrap { position: relative; z-index: 1; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  height: 52px; padding: 0 26px;
  border-radius: 7px;
  font-family: var(--font-body);
  font-size: 1rem; font-weight: 600; letter-spacing: 0.01em;
  border: 1px solid var(--edge);
  background: rgba(255,255,255,0.05);
  color: var(--fg);
  cursor: pointer;
  transition: transform .18s ease, background .18s ease, border-color .18s ease, box-shadow .18s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); background: rgba(255,255,255,0.09); }
.btn--primary {
  background: var(--accent);
  color: #04141a;
  border-color: transparent;
  font-weight: 700;
  box-shadow: 0 10px 34px color-mix(in oklab, var(--accent), transparent 70%);
}
.btn--primary:hover { box-shadow: 0 16px 44px color-mix(in oklab, var(--accent), transparent 58%); }
.btn--ghost { background: transparent; }
.btn--sm { height: 42px; padding: 0 18px; font-size: 0.9rem; }
.btn--lg { height: 58px; padding: 0 30px; font-size: 1.05rem; }
.btn .chev { transition: transform .2s ease; }
.btn:hover .chev { transform: translateX(3px); }

/* chips */
.chip {
  display: inline-flex; align-items: center; gap: 7px;
  height: 26px; padding: 0 11px;
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 11.5px; letter-spacing: 0.04em;
  background: color-mix(in oklab, var(--accent), transparent 86%);
  color: var(--accent);
  border: 1px solid color-mix(in oklab, var(--accent), transparent 70%);
  white-space: nowrap;
}
.chip-dot { width: 6px; height: 6px; border-radius: 999px; background: var(--accent); }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: 68px;
  display: flex; align-items: center;
  backdrop-filter: blur(14px);
  background: color-mix(in oklab, var(--ink), transparent 18%);
  border-bottom: 1px solid transparent;
  transition: background .25s ease, border-color .25s ease;
}
.nav.is-scrolled { background: color-mix(in oklab, var(--ink), transparent 8%); border-bottom-color: var(--edge-soft); }
.nav .wrap { display: flex; align-items: center; gap: 28px; }
.brand {
  font-family: var(--font-brand);
  font-weight: 700; font-size: 20px; letter-spacing: -0.035em;
  text-transform: lowercase;
  display: inline-flex; align-items: center; gap: 10px;
  line-height: 1;
}
.brand .word { display: inline-flex; align-items: baseline; text-shadow: 0 0 15px color-mix(in oklab, var(--arrivals), transparent 50%), 0 0 36px color-mix(in oklab, var(--peak), transparent 74%); }
.brand .am { color: var(--peak); }
.brand .fm { color: var(--arrivals); }
.brand .dot { color: var(--fg-faint); margin: 0 -0.02em; }
.logo-mark { width: 36px; height: 28px; flex: 0 0 auto; display: block; }
.nav-links { display: flex; gap: 28px; margin-left: auto; }
.nav-links a {
  font-size: 0.95rem; color: var(--fg-dim);
  transition: color .15s ease; position: relative;
}
.nav-links a:hover { color: var(--fg); }
.nav-cta { display: flex; align-items: center; gap: 12px; margin-left: 28px; }
.nav-toggle { display: none; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  padding: 128px 0 60px;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.hero-bg::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(70% 55% at 14% 8%, color-mix(in oklab, var(--arrivals), transparent 80%), transparent 60%),
    radial-gradient(60% 60% at 92% 18%, color-mix(in oklab, var(--warmup), transparent 84%), transparent 60%),
    radial-gradient(80% 60% at 80% 100%, color-mix(in oklab, var(--peak), transparent 86%), transparent 65%),
    linear-gradient(180deg, #04141a 0%, #050d14 100%);
}
/* faint grain/scanline so flat gradients read as "lit room", not banding */
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(180deg, rgba(255,255,255,0.013) 0 1px, transparent 1px 3px);
  mix-blend-mode: overlay; opacity: 0.5;
}
.hero .wrap { position: relative; z-index: 2; }
.hero-grid {
  display: grid;
  grid-template-columns: 0.94fr 1.06fr;
  gap: 50px; align-items: center;
}
.hero-kicker {
  font-family: var(--font-mono);
  font-size: 12.5px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--arrivals);
  display: inline-flex; align-items: center; gap: 10px;
  margin-bottom: 26px;
}
.hero-kicker::before { content:''; width: 28px; height: 1px; background: var(--arrivals); opacity: .7; }
.hero h1 {
  font-family: var(--font-display);
  font-weight: 900; text-transform: uppercase;
  font-size: clamp(2.1rem, 4.8vw, 4.5rem);
  line-height: 0.92;
  letter-spacing: 0.004em;
  margin: 0 0 30px;
  text-wrap: balance;
}
.hero h1 .glow { color: var(--peak); }
.hero h1 .glow-2 { color: var(--late); }
.hero-sub {
  font-size: 1.3rem; line-height: 1.5;
  color: var(--fg-dim);
  max-width: 38ch;
  margin: 0 0 38px;
  text-wrap: pretty;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.hero-note {
  margin-top: 22px;
  font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.03em;
  color: var(--fg-faint);
  display: flex; align-items: center; gap: 8px;
}
.hero-note b { color: var(--fg-dim); font-weight: 500; }

/* store badges */
.stores { display: flex; gap: 12px; flex-wrap: wrap; }
.store-badge {
  display: inline-flex; align-items: center; gap: 11px;
  height: 52px; padding: 0 18px 0 16px;
  border: 1px solid var(--edge); border-radius: 9px;
  background: rgba(255,255,255,0.04);
  transition: background .18s ease, transform .18s ease, border-color .18s ease;
}
.store-badge:hover { background: rgba(255,255,255,0.08); transform: translateY(-2px); border-color: var(--edge); }
.store-badge svg { width: 22px; height: 22px; flex: 0 0 auto; }
.store-badge .sb-txt { display: flex; flex-direction: column; line-height: 1.05; }
.store-badge .sb-small { font-size: 10px; color: var(--fg-faint); font-family: var(--font-mono); letter-spacing: .04em; }
.store-badge .sb-big { font-size: 15px; font-weight: 600; letter-spacing: .01em; }

/* ---------- hero booth mock ---------- */
.booth {
  position: relative;
  border-radius: 16px;
  border: 1px solid var(--edge);
  background: linear-gradient(180deg, color-mix(in oklab, #1a0510, black 8%), color-mix(in oklab, #04141a, black 20%));
  box-shadow: 0 40px 100px rgba(0,0,0,0.55), inset 0 1px 0 rgba(255,255,255,0.05);
  overflow: hidden;
}
.booth-top {
  display: flex; align-items: center; gap: 10px;
  padding: 13px 16px; border-bottom: 1px solid var(--edge-soft);
  font-family: var(--font-mono); font-size: 11px; color: var(--fg-faint); letter-spacing: .06em;
}
.booth-dots { display: flex; gap: 6px; }
.booth-dots i { width: 9px; height: 9px; border-radius: 999px; background: rgba(255,255,255,.16); }
.booth-live { margin-left: auto; display: inline-flex; align-items: center; gap: 7px; color: var(--peak); }
.booth-live .pulse { width: 8px; height: 8px; border-radius: 999px; background: var(--peak); box-shadow: 0 0 0 0 color-mix(in oklab, var(--peak), transparent 40%); animation: pulse 1.8s infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 color-mix(in oklab, var(--peak), transparent 30%);} 70%{ box-shadow: 0 0 0 9px color-mix(in oklab, var(--peak), transparent 100%);} 100%{ box-shadow: 0 0 0 0 transparent; } }

.booth-body { padding: 22px; }
.booth-now { display: flex; gap: 16px; align-items: center; margin-bottom: 18px; }
.booth-art {
  width: 76px; height: 76px; border-radius: 9px; flex: 0 0 auto;
  background:
    repeating-linear-gradient(135deg, color-mix(in oklab,#580726,white 8%) 0 7px, #580726 7px 14px);
  border: 1px solid var(--edge);
}
.booth-meta .b-label { font-family: var(--font-mono); font-size: 10px; letter-spacing: .18em; text-transform: uppercase; color: var(--fg-faint); }
.booth-meta .b-track { font-family: var(--font-display); font-weight: 800; font-size: 1.5rem; line-height: 1; margin: 5px 0 6px; text-transform: uppercase; }
.booth-meta .b-artist { color: var(--fg-dim); font-size: 0.95rem; }
.booth-tags { display: flex; gap: 7px; margin-top: 9px; }
.b-tag { font-family: var(--font-mono); font-size: 10px; letter-spacing: .05em; padding: 3px 8px; border-radius: 999px; background: rgba(255,255,255,.06); color: var(--fg-dim); }
.b-tag.hot { background: color-mix(in oklab, var(--peak), transparent 80%); color: #ff8db4; }

/* waveform */
.booth-wave { display: flex; align-items: flex-end; gap: 3px; height: 56px; margin: 4px 0 18px; }
.booth-wave i { flex: 1; background: linear-gradient(180deg, var(--peak), color-mix(in oklab,var(--peak),transparent 55%)); border-radius: 2px; opacity: .85; animation: wave 1.1s ease-in-out infinite; }
@keyframes wave { 0%,100%{ transform: scaleY(0.35);} 50%{ transform: scaleY(1);} }
@media (prefers-reduced-motion: reduce) { .booth-wave i { animation: none; } .booth-live .pulse { animation: none; } .shot-overlay .so-wave i { animation: none; } .shot-overlay .so-live .pulse { animation: none; } }

/* dj voice line */
.booth-voice {
  display: flex; gap: 12px; align-items: flex-start;
  padding: 14px; border-radius: 11px;
  background: color-mix(in oklab, var(--late), transparent 92%);
  border: 1px solid color-mix(in oklab, var(--late), transparent 80%);
}
.booth-voice .bv-av { width: 38px; height: 38px; border-radius: 999px; flex: 0 0 auto; background-size: cover; background-position: center top; border: 1px solid color-mix(in oklab, var(--late), transparent 50%); }
.booth-voice .bv-name { font-family: var(--font-mono); font-size: 10px; letter-spacing: .12em; text-transform: uppercase; color: var(--late); margin-bottom: 3px; }
.booth-voice .bv-line { font-size: 0.96rem; line-height: 1.45; color: var(--fg); }
.booth-voice .bv-bars { display: inline-flex; align-items: flex-end; gap: 2px; height: 11px; margin-left: 6px; vertical-align: -1px; }
.booth-voice .bv-bars i { width: 2px; background: var(--late); border-radius: 1px; animation: wave 0.9s ease-in-out infinite; }

/* ---------- hero shot (party photo + inset now-playing card) ---------- */
.hero-shot { position: relative; }
.hero-shot .shot-img { width: 100%; height: auto; display: block; border-radius: 16px; border: 1px solid var(--edge); box-shadow: 0 40px 100px rgba(0,0,0,0.55); }
.shot-overlay { position: absolute; left: 0; right: 0; bottom: 0; padding: 46px 18px 13px; display: flex; flex-direction: column; gap: 8px; border-radius: 0 0 16px 16px; background: linear-gradient(to top, rgba(4,12,16,0.96) 0%, rgba(4,12,16,0.86) 42%, rgba(4,12,16,0.28) 72%, transparent 100%); }
.shot-overlay .so-info { margin-left: auto; width: min(60%, 400px); display: flex; flex-direction: column; align-items: flex-end; gap: 5px; text-align: right; }
.shot-overlay .so-now { font-family: var(--font-mono); font-size: 10px; letter-spacing: .12em; text-transform: uppercase; color: var(--fg-faint); }
.shot-overlay .so-title { font-family: var(--font-display); font-weight: 800; text-transform: uppercase; font-size: 1.3rem; line-height: 1; color: var(--fg); }
.shot-overlay .so-title .so-sub { font-family: var(--font-mono); font-size: 11px; font-weight: 400; text-transform: none; letter-spacing: .02em; color: var(--fg-dim); margin-left: 5px; }
.shot-overlay .so-row { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; justify-content: flex-end; }
.shot-overlay .so-live { display: inline-flex; align-items: center; gap: 6px; font-family: var(--font-mono); font-size: 10px; letter-spacing: .08em; color: var(--peak); white-space: nowrap; }
.shot-overlay .so-live .pulse { width: 7px; height: 7px; border-radius: 999px; background: var(--peak); animation: pulse 1.8s infinite; }
.shot-overlay .so-wave { display: flex; align-items: flex-end; gap: 3px; height: 24px; }
.shot-overlay .so-wave i { flex: 1; background: linear-gradient(180deg, var(--peak), color-mix(in oklab, var(--peak), transparent 55%)); border-radius: 2px; opacity: .85; animation: wave 1.1s ease-in-out infinite; }
.shot-overlay .so-voice { display: flex; align-items: center; gap: 8px; font-size: 0.78rem; font-weight: 400; color: var(--fg-dim); line-height: 1.3; }
.shot-overlay .so-voice .so-av { width: 20px; height: 20px; flex: 0 0 auto; border-radius: 999px; background: url('img/cruz.webp') center top / cover; border: 1px solid color-mix(in oklab, var(--late), transparent 50%); }
.shot-overlay .so-voice span:last-child { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
@media (max-width: 680px) { .shot-overlay { padding: 34px 14px 12px; gap: 6px; } .shot-overlay .so-info { width: auto; align-items: flex-start; text-align: left; } .shot-overlay .so-row { justify-content: flex-start; } .shot-overlay .so-title { font-size: 1.12rem; } .shot-overlay .so-now { font-size: 9px; } .shot-overlay .so-wave { height: 20px; } .shot-overlay .so-voice { font-size: 0.74rem; } }

/* ============================================================
   MARQUEE strip
   ============================================================ */
.strip { border-block: 1px solid var(--edge-soft); padding: 22px 0; background: var(--ink-2); overflow: hidden; }
.strip-track { display: flex; gap: 56px; white-space: nowrap; font-family: var(--font-mono); font-size: 13px; letter-spacing: .08em; text-transform: uppercase; color: var(--fg-faint); animation: marquee 38s linear infinite; }
.strip-track span { display: inline-flex; align-items: center; gap: 56px; }
.strip-track b { color: var(--fg-dim); font-weight: 500; }
.strip-track .sep { color: var(--accent); }
@keyframes marquee { from { transform: translateX(0);} to { transform: translateX(-50%);} }
@media (prefers-reduced-motion: reduce) { .strip-track { animation: none; } }

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.step {
  position: relative;
  padding: 30px 26px 28px;
  border: 1px solid var(--edge);
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(255,255,255,0.035), rgba(255,255,255,0.012));
  overflow: hidden;
}
.step::before { content:''; position:absolute; left:0; top:0; bottom:0; width: 3px; background: var(--accent); opacity: .8; }
.step-num { font-family: var(--font-mono); font-size: 12px; letter-spacing: .2em; color: var(--accent); margin-bottom: 22px; }
.step h3 { font-family: var(--font-display); font-weight: 800; text-transform: uppercase; font-size: 1.7rem; line-height: 1; margin: 0 0 12px; }
.step p { color: var(--fg-dim); margin: 0; font-size: 1rem; }

/* ============================================================
   PERSONAS
   ============================================================ */
.personas-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 32px; flex-wrap: wrap; margin-bottom: 48px; }
.persona-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.pcard {
  position: relative;
  border-radius: 14px; overflow: hidden;
  aspect-ratio: 3 / 4.2;
  border: 1px solid var(--edge);
  cursor: pointer;
  --sig: var(--arrivals);
  isolation: isolate;
  transition: transform .3s cubic-bezier(.2,.7,.2,1), box-shadow .3s ease;
}
.pcard:hover { transform: translateY(-6px); box-shadow: 0 26px 60px color-mix(in oklab, var(--sig), transparent 72%); }
.pcard img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center top; filter: brightness(.66) saturate(.9); transition: filter .35s ease, transform .5s ease; z-index: 0; }
.pcard:hover img { filter: brightness(.92) saturate(1.06); transform: scale(1.04); }
.pcard .pc-grad { position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, transparent 28%, color-mix(in oklab, var(--ink), transparent 30%) 62%, var(--ink) 100%); }
.pcard .pc-shot { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 0; color: rgba(246,249,255,0.45); background: rgba(255,255,255,0.03); }
.pcard .pc-tint { position: absolute; inset: 0; z-index: 1; background: color-mix(in oklab, var(--sig), transparent 88%); mix-blend-mode: soft-light; opacity: 0; transition: opacity .35s ease; }
.pcard:hover .pc-tint { opacity: 1; }
.pcard .pc-body { position: absolute; inset: 0; z-index: 2; display: flex; flex-direction: column; justify-content: flex-end; padding: 20px; }
.pc-premium { position: absolute; top: 14px; right: 14px; z-index: 3; font-family: var(--font-mono); font-size: 9.5px; letter-spacing: .14em; padding: 4px 8px; border-radius: 999px; background: color-mix(in oklab, var(--late), transparent 78%); color: var(--late); border: 1px solid color-mix(in oklab,var(--late),transparent 60%); }
.pc-name { font-family: var(--font-display); font-weight: 900; text-transform: uppercase; font-size: 2rem; line-height: .92; letter-spacing: .02em; color: var(--sig); }
.pc-tagline { font-size: 0.92rem; line-height: 1.4; color: var(--fg); margin: 8px 0 14px; min-height: 3.4em; text-wrap: pretty; }
.pc-voice { display: flex; align-items: center; gap: 10px; }
.pc-play { width: 38px; height: 38px; flex: 0 0 auto; border-radius: 999px; display: inline-flex; align-items: center; justify-content: center; border: 1px solid var(--sig); background: color-mix(in oklab, var(--sig), transparent 84%); color: var(--sig); cursor: pointer; transition: background .15s ease, transform .15s ease; }
.pc-play:hover { background: var(--sig); color: #04141a; transform: scale(1.07); }
.pc-play.is-playing { background: var(--sig); color: #04141a; }
.pc-voice-meta { display: flex; flex-direction: column; line-height: 1.15; }
.pc-voice-meta .vl { font-family: var(--font-mono); font-size: 9px; letter-spacing: .16em; color: var(--fg-faint); text-transform: uppercase; }
.pc-voice-meta .vn { font-size: 0.85rem; color: var(--fg-dim); }
.personas-foot { margin-top: 26px; font-family: var(--font-mono); font-size: 12.5px; color: var(--fg-faint); letter-spacing: .03em; }
.personas-foot b { color: var(--accent); font-weight: 500; }

/* ============================================================
   FEATURE (live booth) — split
   ============================================================ */
.feature { display: grid; grid-template-columns: 0.92fr 1.08fr; gap: 56px; align-items: center; }
.feature.rev { grid-template-columns: 1.08fr 0.92fr; }
.feature.rev .feature-media { order: -1; }
.feature-list { list-style: none; padding: 0; margin: 30px 0 0; display: grid; gap: 18px; }
.feature-list li { display: grid; grid-template-columns: 26px 1fr; gap: 14px; align-items: start; }
.feature-list .fi-ico { width: 26px; height: 26px; border-radius: 7px; display: inline-flex; align-items: center; justify-content: center; background: color-mix(in oklab, var(--accent), transparent 84%); color: var(--accent); border: 1px solid color-mix(in oklab,var(--accent),transparent 66%); margin-top: 2px; }
.feature-list .fi-ico svg { width: 14px; height: 14px; }
.feature-list h4 { margin: 0 0 3px; font-size: 1.05rem; font-weight: 600; }
.feature-list p { margin: 0; color: var(--fg-dim); font-size: 0.97rem; }

/* media panel generic */
.media-panel {
  position: relative; border-radius: 16px; overflow: hidden;
  border: 1px solid var(--edge);
  background: linear-gradient(180deg, color-mix(in oklab, var(--wash, #04141a), white 4%), color-mix(in oklab, var(--ink), black 22%));
  box-shadow: 0 36px 90px rgba(0,0,0,0.5);
}
.media-panel .mp-bar { display: flex; align-items: center; gap: 9px; padding: 13px 16px; border-bottom: 1px solid var(--edge-soft); font-family: var(--font-mono); font-size: 11px; color: var(--fg-faint); letter-spacing: .05em; }
.media-panel .mp-bar .dots { display:flex; gap:6px; }
.media-panel .mp-bar .dots i { width: 9px; height: 9px; border-radius: 999px; background: rgba(255,255,255,.14); }

/* set-arc viz */
.arc-body { padding: 26px 24px 30px; }
.arc-row { display: flex; align-items: center; justify-content: space-between; font-family: var(--font-mono); font-size: 11px; letter-spacing: .08em; text-transform: uppercase; color: var(--fg-faint); margin-bottom: 14px; }
.arc-chart { position: relative; height: 160px; }
.arc-chart svg { width: 100%; height: 100%; overflow: visible; }
.arc-phases { display: flex; margin-top: 14px; gap: 6px; }
.arc-phases .ap { flex: 1; text-align: center; font-family: var(--font-mono); font-size: 9.5px; letter-spacing: .1em; text-transform: uppercase; padding: 6px 4px; border-radius: 6px; color: var(--fg-dim); }
.ap.opener { background: color-mix(in oklab,#7adfe6,transparent 84%); color:#b5ebef; }
.ap.build { background: color-mix(in oklab,#b39df7,transparent 84%); color:#d4c5fa; }
.ap.peak { background: color-mix(in oklab,#ff3380,transparent 82%); color:#ff8db4; }
.ap.comedown { background: color-mix(in oklab,#7af0a8,transparent 84%); color:#b2f5c8; }
.ap.closer { background: color-mix(in oklab,#f0d36a,transparent 84%); color:#f5e2a3; }

/* phone (requests) */
.phone {
  position: relative; width: 290px; max-width: 80%; margin-inline: auto;
  aspect-ratio: 290 / 600;
  border-radius: 38px; padding: 11px;
  background: linear-gradient(160deg, #15151b, #0a0a0e);
  border: 1px solid rgba(255,255,255,.1);
  box-shadow: 0 40px 90px rgba(0,0,0,.6), inset 0 1px 0 rgba(255,255,255,.08);
}
.phone-screen { position: relative; height: 100%; border-radius: 28px; overflow: hidden; background: linear-gradient(180deg, #06140e, #03100b); border: 1px solid rgba(255,255,255,.05); display: flex; flex-direction: column; }
.phone-notch { position: absolute; top: 9px; left: 50%; transform: translateX(-50%); width: 96px; height: 24px; border-radius: 999px; background: #000; z-index: 5; }
.ph-head { padding: 40px 20px 16px; text-align: center; }
.ph-qr { width: 116px; height: 116px; margin: 0 auto 16px; border-radius: 12px; background: #fff; padding: 11px; }
.ph-qr svg { width: 100%; height: 100%; }
.ph-title { font-family: var(--font-display); font-weight: 800; text-transform: uppercase; font-size: 1.35rem; line-height: 1; margin: 0 0 5px; }
.ph-sub { font-size: 0.8rem; color: var(--fg-dim); margin: 0; }
.ph-list { flex: 1; padding: 6px 14px; display: flex; flex-direction: column; gap: 9px; overflow: hidden; }
.ph-req { display: flex; align-items: center; gap: 10px; padding: 10px 12px; border-radius: 11px; background: rgba(255,255,255,.05); border: 1px solid var(--edge-soft); }
.ph-req .pr-fit { width: 30px; height: 30px; flex:0 0 auto; border-radius: 8px; display:flex; align-items:center; justify-content:center; font-family: var(--font-mono); font-size: 9px; font-weight:600; }
.pr-fit.great { background: color-mix(in oklab,var(--comedown),transparent 78%); color: var(--comedown); }
.pr-fit.ok { background: rgba(255,255,255,.08); color: var(--fg-dim); }
.ph-req .pr-tx { min-width: 0; }
.ph-req .pr-song { font-size: 0.82rem; font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.ph-req .pr-by { font-family: var(--font-mono); font-size: 9.5px; color: var(--fg-faint); letter-spacing: .04em; }
.ph-input { margin: 6px 14px 16px; height: 42px; border-radius: 999px; background: rgba(255,255,255,.06); border: 1px solid var(--edge); display: flex; align-items: center; padding: 0 6px 0 16px; gap: 8px; }
.ph-input span { font-size: 0.82rem; color: var(--fg-faint); flex: 1; }
.ph-input .pi-send { width: 30px; height: 30px; border-radius: 999px; background: var(--comedown); color:#04141a; display:flex; align-items:center; justify-content:center; }

/* admin announce phone */
.an-head { padding: 42px 22px 12px; }
.an-eyebrow { font-family: var(--font-mono); font-size: 10px; letter-spacing: .16em; text-transform: uppercase; color: var(--warmup); }
.an-title { font-family: var(--font-display); font-weight: 800; text-transform: uppercase; font-size: 1.45rem; line-height: 1; margin: 8px 0 5px; }
.an-sub { font-size: .78rem; color: var(--fg-dim); margin: 0; }
.an-compose { margin: 4px 16px; }
.an-msg { background: rgba(255,255,255,.06); border: 1px solid var(--edge); border-radius: 14px; padding: 13px 14px; font-size: .92rem; line-height: 1.4; color: var(--fg); }
.an-msg .an-cur { display: inline-block; width: 2px; height: 1em; background: var(--warmup); vertical-align: -2px; margin-left: 1px; animation: anBlink 1s step-end infinite; }
@keyframes anBlink { 50% { opacity: 0; } }
@media (prefers-reduced-motion: reduce) { .an-msg .an-cur { animation: none; } }
.an-label { font-family: var(--font-mono); font-size: 9px; letter-spacing: .14em; text-transform: uppercase; color: var(--fg-faint); margin: 14px 16px 7px; }
.an-timing { display: flex; gap: 6px; margin: 0 16px; }
.an-pill { flex: 1; text-align: center; font-family: var(--font-mono); font-size: 10px; letter-spacing: .02em; padding: 8px 3px; border-radius: 9px; background: rgba(255,255,255,.05); border: 1px solid var(--edge); color: var(--fg-dim); }
.an-pill.is-active { background: color-mix(in oklab, var(--warmup), transparent 80%); border-color: color-mix(in oklab, var(--warmup), transparent 52%); color: #d8ccfb; }
.an-fill { flex: 1; min-height: 14px; }
.an-send { margin: 0 16px; height: 44px; border-radius: 11px; background: var(--warmup); color: #0c061a; font-weight: 700; font-size: .92rem; display: flex; align-items: center; justify-content: center; gap: 8px; }
.an-status { margin: 12px 16px 18px; display: flex; align-items: center; gap: 8px; font-family: var(--font-mono); font-size: 10.5px; color: var(--fg-dim); letter-spacing: .02em; }
.an-status .an-dot { width: 7px; height: 7px; border-radius: 999px; background: var(--warmup); box-shadow: 0 0 0 3px color-mix(in oklab, var(--warmup), transparent 80%); }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; align-items: stretch; }
.price-card {
  position: relative; display: flex; flex-direction: column;
  padding: 30px 26px;
  border: 1px solid var(--edge); border-radius: 16px;
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.012));
}
.price-card.feat { border-color: color-mix(in oklab, var(--accent), transparent 50%); background: linear-gradient(180deg, color-mix(in oklab,var(--accent),transparent 90%), rgba(255,255,255,0.012)); box-shadow: 0 24px 60px color-mix(in oklab,var(--accent),transparent 82%); }
.price-tag { position: absolute; top: -12px; left: 26px; font-family: var(--font-mono); font-size: 10px; letter-spacing: .14em; text-transform: uppercase; padding: 5px 11px; border-radius: 999px; background: var(--accent); color: #04141a; font-weight: 600; }
.price-card h3 { font-family: var(--font-display); font-weight: 800; text-transform: uppercase; font-size: 1.5rem; margin: 0 0 6px; }
.price-card .pc-desc { color: var(--fg-dim); font-size: 0.93rem; margin: 0 0 22px; min-height: 2.8em; }
.price-amt { display: flex; align-items: baseline; gap: 6px; margin-bottom: 4px; }
.price-amt .amt { font-family: var(--font-display); font-weight: 900; font-size: 3.4rem; line-height: 0.9; }
.price-amt .per { font-family: var(--font-mono); font-size: 13px; color: var(--fg-dim); }
.price-sub { font-family: var(--font-mono); font-size: 11.5px; color: var(--accent); letter-spacing: .03em; margin-bottom: 22px; }
.price-feats { list-style: none; padding: 0; margin: 0 0 26px; display: grid; gap: 11px; }
.price-feats li { display: grid; grid-template-columns: 18px 1fr; gap: 11px; font-size: 0.92rem; color: var(--fg-dim); }
.price-feats li svg { width: 14px; height: 14px; margin-top: 4px; color: var(--accent); }
.price-card .btn { margin-top: auto; width: 100%; }

/* bundles row inside metered card */
.bundles { display: grid; gap: 8px; margin: 4px 0 20px; }
.bundle { display: flex; align-items: baseline; justify-content: space-between; padding: 11px 14px; border-radius: 10px; background: rgba(255,255,255,.04); border: 1px solid var(--edge-soft); }
.bundle.pop { border-color: color-mix(in oklab,var(--accent),transparent 55%); background: color-mix(in oklab,var(--accent),transparent 90%); }
.bundle .bd-h { font-family: var(--font-display); font-weight: 800; font-size: 1.25rem; }
.bundle .bd-p { font-family: var(--font-mono); font-size: 13px; }
.bundle .bd-rate { font-family: var(--font-mono); font-size: 10px; color: var(--fg-faint); }
.bundle .bd-right { text-align: right; }
.bundle .pop-tag { font-family: var(--font-mono); font-size: 9px; letter-spacing: .12em; color: var(--accent); }

.pricing-note {
  margin-top: 30px; display: flex; gap: 14px; align-items: flex-start;
  padding: 18px 20px; border-radius: 12px;
  background: color-mix(in oklab, var(--accent), transparent 92%);
  border: 1px solid color-mix(in oklab, var(--accent), transparent 80%);
  font-size: 0.95rem; color: var(--fg-dim);
}
.pricing-note svg { width: 20px; height: 20px; flex: 0 0 auto; color: var(--accent); margin-top: 2px; }
.pricing-note b { color: var(--fg); font-weight: 600; }

/* ============================================================
   PHOTO WALL
   ============================================================ */
.pw-head { max-width: 700px; margin: 0 auto 50px; text-align: center; }
.pw-head .eyebrow { justify-content: center; }
.pw-head h2 { font-family: var(--font-display); font-weight: 800; text-transform: uppercase; font-size: clamp(2.4rem, 5vw, 4rem); line-height: 0.94; margin: 0 0 18px; text-wrap: balance; }
.pw-head p { color: var(--fg-dim); font-size: 1.15rem; margin: 0; text-wrap: pretty; }
.pw-panel { border: 1px solid var(--edge); border-radius: 18px; overflow: hidden; background: linear-gradient(180deg, color-mix(in oklab, var(--late), black 86%), #06090c); box-shadow: 0 40px 100px rgba(0,0,0,0.55); }
.pw-bar { display: flex; align-items: center; gap: 10px; padding: 14px 18px; border-bottom: 1px solid var(--edge-soft); font-family: var(--font-mono); font-size: 11.5px; color: var(--fg-faint); letter-spacing: 0.05em; }
.pw-bar .dots { display: flex; gap: 6px; }
.pw-bar .dots i { width: 9px; height: 9px; border-radius: 999px; background: rgba(255,255,255,0.14); }
.pw-bar .live { margin-left: auto; display: inline-flex; align-items: center; gap: 7px; color: var(--late); }
.pw-bar .live .pulse { width: 8px; height: 8px; border-radius: 999px; background: var(--late); animation: pulse 1.8s infinite; }
.pw-grid { column-count: 4; column-gap: 12px; padding: 16px; }
@media (max-width: 900px) { .pw-grid { column-count: 3; } }
@media (max-width: 600px) { .pw-grid { column-count: 2; } }
.pw-grid image-slot { width: 100%; margin-bottom: 12px; }
.pw-points { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 30px; }
@media (max-width: 760px) { .pw-points { grid-template-columns: 1fr; } }
.pw-point { padding: 22px; border: 1px solid var(--edge); border-radius: 14px; background: linear-gradient(180deg, rgba(255,255,255,0.035), rgba(255,255,255,0.01)); }
.pw-point .pp-ico { width: 34px; height: 34px; border-radius: 9px; display: inline-flex; align-items: center; justify-content: center; background: color-mix(in oklab, var(--accent), transparent 84%); color: var(--accent); border: 1px solid color-mix(in oklab, var(--accent), transparent 66%); margin-bottom: 14px; }
.pw-point .pp-ico svg { width: 17px; height: 17px; }
.pw-point h4 { margin: 0 0 5px; font-size: 1.05rem; font-weight: 600; }
.pw-point p { margin: 0; color: var(--fg-dim); font-size: 0.93rem; }

/* ============================================================
   FAQ
   ============================================================ */
.faq-grid { display: grid; grid-template-columns: 0.7fr 1.3fr; gap: 56px; align-items: start; }
.faq-list { border-top: 1px solid var(--edge); }
.faq-item { border-bottom: 1px solid var(--edge); }
.faq-q { width: 100%; text-align: left; background: none; border: 0; color: var(--fg); cursor: pointer; padding: 22px 0; display: flex; align-items: center; gap: 18px; font-family: var(--font-body); font-size: 1.12rem; font-weight: 500; }
.faq-q .fq-plus { margin-left: auto; flex: 0 0 auto; width: 24px; height: 24px; position: relative; transition: transform .25s ease; color: var(--accent); }
.faq-q .fq-plus::before, .faq-q .fq-plus::after { content:''; position: absolute; background: currentColor; }
.faq-q .fq-plus::before { left: 50%; top: 3px; bottom: 3px; width: 2px; transform: translateX(-50%); transition: opacity .2s ease; }
.faq-q .fq-plus::after { top: 50%; left: 3px; right: 3px; height: 2px; transform: translateY(-50%); }
.faq-item.open .fq-plus::before { opacity: 0; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-a-inner { padding: 0 0 24px; color: var(--fg-dim); max-width: 64ch; font-size: 1.01rem; line-height: 1.6; }
.faq-a-inner b { color: var(--fg); font-weight: 600; }

/* ============================================================
   FOOTER CTA
   ============================================================ */
.final {
  position: relative; padding: 130px 0; text-align: center; overflow: hidden;
}
.final-bg::before {
  content:''; position: absolute; inset: 0;
  background:
    radial-gradient(60% 80% at 50% 120%, color-mix(in oklab, var(--late), transparent 78%), transparent 60%),
    radial-gradient(50% 60% at 16% 0%, color-mix(in oklab, var(--arrivals), transparent 84%), transparent 60%),
    radial-gradient(50% 60% at 84% 0%, color-mix(in oklab, var(--peak), transparent 86%), transparent 60%);
}
.final .wrap { position: relative; z-index: 1; }
.final h2 { font-family: var(--font-display); font-weight: 900; text-transform: uppercase; font-size: clamp(2.8rem, 7vw, 6rem); line-height: 0.86; margin: 0 auto 26px; max-width: 16ch; text-wrap: balance; }
.final p { font-size: 1.25rem; color: var(--fg-dim); max-width: 46ch; margin: 0 auto 38px; }
.final .hero-actions { justify-content: center; }

footer.foot { border-top: 1px solid var(--edge-soft); padding: 50px 0 60px; background: var(--ink-2); }
.foot-grid { display: flex; align-items: flex-start; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.foot-brand { max-width: 320px; }
.foot-brand .brand { font-size: 28px; margin-bottom: 14px; }
.foot-brand p { color: var(--fg-faint); font-size: 0.92rem; margin: 0; }
.foot-cols { display: flex; gap: 64px; flex-wrap: wrap; }
.foot-col h5 { font-family: var(--font-mono); font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--fg-faint); margin: 0 0 16px; }
.foot-col a { display: block; color: var(--fg-dim); font-size: 0.92rem; margin-bottom: 11px; transition: color .15s ease; }
.foot-col a:hover { color: var(--fg); }
.foot-bottom { margin-top: 46px; padding-top: 26px; border-top: 1px solid var(--edge-soft); display: flex; justify-content: space-between; gap: 18px; flex-wrap: wrap; font-family: var(--font-mono); font-size: 11.5px; color: var(--fg-faint); letter-spacing: .04em; }

/* ---------- reveal-on-scroll ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1080px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero .booth { max-width: 460px; }
  .persona-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .feature, .feature.rev { grid-template-columns: 1fr; gap: 40px; }
  .feature.rev .feature-media { order: 0; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 520px; }
  .faq-grid { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 720px) {
  body { font-size: 16px; }
  .section { padding: 84px 0; }
  .wrap { padding-inline: 20px; }
  .nav-links, .nav-cta .btn:not(.nav-cta-main) { display: none; }
  .nav-toggle { display: inline-flex; }
  .steps { grid-template-columns: 1fr; }
  .hero { padding: 132px 0 70px; }
  .hero-actions { gap: 12px; }
  .foot-bottom { flex-direction: column; gap: 8px; }
}
@media (max-width: 460px) {
  .persona-grid { grid-template-columns: 1fr; }
  .stores { width: 100%; }
  .store-badge { flex: 1; }
}

/* ---------- mobile drawer ---------- */
.nav-toggle { width: 44px; height: 44px; align-items: center; justify-content: center; background: none; border: 1px solid var(--edge); border-radius: 8px; color: var(--fg); cursor: pointer; }
.drawer { position: fixed; inset: 0; z-index: 200; background: color-mix(in oklab, var(--ink), black 10%); backdrop-filter: blur(8px); display: flex; flex-direction: column; padding: 26px 24px; transform: translateY(-100%); transition: transform .35s cubic-bezier(.2,.7,.2,1); }
.drawer.open { transform: none; }
.drawer-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 36px; }
.drawer-close { width: 44px; height: 44px; background: none; border: 1px solid var(--edge); border-radius: 8px; color: var(--fg); font-size: 22px; cursor: pointer; }
.drawer a { font-family: var(--font-display); font-weight: 800; text-transform: uppercase; font-size: 2rem; padding: 14px 0; border-bottom: 1px solid var(--edge-soft); color: var(--fg); }
.drawer .btn { margin-top: 28px; }

/* waitlist (final CTA) */
.waitlist { display: flex; gap: 10px; justify-content: center; max-width: 480px; margin: 0 auto 14px; flex-wrap: wrap; }
.waitlist input { flex: 1; min-width: 220px; height: 58px; padding: 0 18px; border-radius: 7px; border: 1px solid var(--edge); background: rgba(255,255,255,0.05); color: var(--fg); font-family: var(--font-body); font-size: 1rem; }
.waitlist input::placeholder { color: var(--fg-faint); }
.waitlist input:focus { outline: none; border-color: color-mix(in oklab, var(--accent), transparent 40%); background: rgba(255,255,255,0.08); }
.waitlist .btn { flex: 0 0 auto; }
.waitlist-or { font-family: var(--font-mono); font-size: 11.5px; letter-spacing: .08em; text-transform: uppercase; color: var(--fg-faint); margin: 0 0 26px; }
.wl-done { color: var(--accent); font-family: var(--font-mono); font-size: 0.95rem; }

/* footer waitlist */
.foot-wait { display: flex; gap: 8px; margin-top: 16px; max-width: 340px; }
.foot-wait input { flex: 1; height: 42px; padding: 0 13px; border-radius: 7px; border: 1px solid var(--edge); background: rgba(255,255,255,0.04); color: var(--fg); font-family: var(--font-body); font-size: 0.9rem; }
.foot-wait input::placeholder { color: var(--fg-faint); }
.foot-wait input:focus { outline: none; border-color: color-mix(in oklab, var(--arrivals), transparent 45%); }
.foot-wait button { height: 42px; padding: 0 14px; border-radius: 7px; border: 1px solid transparent; background: var(--arrivals); color: #04141a; font-weight: 600; font-size: 0.85rem; cursor: pointer; white-space: nowrap; }
.foot-wait button:hover { filter: brightness(1.08); }
.foot-wait .wl-done { font-size: 0.85rem; }

/* sticky mobile CTA */
.mobile-cta { display: none; }
@media (max-width: 720px) {
  .mobile-cta { display: flex; position: fixed; left: 0; right: 0; bottom: 0; z-index: 90; padding: 11px 16px calc(11px + env(safe-area-inset-bottom)); background: color-mix(in oklab, var(--ink), transparent 6%); backdrop-filter: blur(12px); border-top: 1px solid var(--edge-soft); }
  .mobile-cta .btn { flex: 1; height: 50px; }
  body { padding-bottom: 74px; }
}

/* scroll-driven nav accent (set by JS per phase section in view) */
.nav.is-scrolled { border-bottom-color: color-mix(in oklab, var(--nav-accent, var(--fg)), transparent 78%); box-shadow: 0 8px 30px -14px color-mix(in oklab, var(--nav-accent, transparent), transparent 55%); }

/* DJ profile modal */
.dj-modal { position: fixed; inset: 0; z-index: 200; display: none; align-items: center; justify-content: center; padding: 24px; }
.dj-modal.open { display: flex; }
.dj-modal .dj-scrim { position: absolute; inset: 0; background: rgba(2,8,11,0.74); backdrop-filter: blur(8px); }
.dj-card { position: relative; z-index: 1; width: min(640px, 100%); max-height: 88vh; overflow: auto; border: 1px solid color-mix(in oklab, var(--sig, #7adfe6), transparent 55%); border-radius: 18px; background: linear-gradient(180deg, color-mix(in oklab, var(--sig, #7adfe6), #04141a 86%), var(--ink-2)); box-shadow: 0 40px 120px rgba(0,0,0,0.6); }
.dj-card-head { position: relative; display: flex; gap: 18px; padding: 24px; border-bottom: 1px solid var(--edge-soft); }
.dj-portrait { width: 92px; height: 92px; border-radius: 12px; object-fit: cover; object-position: center top; border: 1px solid var(--edge); flex: 0 0 auto; }
.dj-head-meta { display: flex; flex-direction: column; justify-content: center; min-width: 0; }
.dj-premium { align-self: flex-start; font-family: var(--font-mono); font-size: 9.5px; letter-spacing: .14em; padding: 3px 8px; border-radius: 999px; background: color-mix(in oklab, var(--late), transparent 78%); color: var(--late); margin-bottom: 7px; }
.dj-name { font-family: var(--font-display); font-weight: 900; text-transform: uppercase; font-size: 2.1rem; line-height: .9; color: var(--sig, var(--fg)); }
.dj-tagline { color: var(--fg-dim); margin: 7px 0 0; font-size: 0.98rem; }
.dj-close { position: absolute; top: 14px; right: 14px; width: 36px; height: 36px; border-radius: 8px; border: 1px solid var(--edge); background: rgba(255,255,255,0.05); color: var(--fg); font-size: 20px; line-height: 1; cursor: pointer; }
.dj-close:hover { background: rgba(255,255,255,0.1); }
.dj-body { padding: 22px 24px 26px; }
.dj-section-label { font-family: var(--font-mono); font-size: 10px; letter-spacing: .16em; text-transform: uppercase; color: var(--fg-faint); margin: 0 0 12px; }
.dj-phases { display: grid; gap: 9px; margin: 0 0 24px; }
.dj-phase { display: grid; grid-template-columns: 88px 1fr; gap: 12px; align-items: baseline; }
.dj-phase .ph { font-family: var(--font-mono); font-size: 11px; text-transform: uppercase; letter-spacing: .07em; color: var(--sig, var(--accent)); }
.dj-phase .pn { color: var(--fg-dim); font-size: 0.95rem; }
.dj-lines { display: grid; gap: 8px; margin: 0 0 24px; }
.dj-line { padding: 11px 14px; border-radius: 10px; background: rgba(255,255,255,0.04); border: 1px solid var(--edge-soft); color: var(--fg); font-size: 0.95rem; }
.dj-audition { width: 100%; justify-content: center; opacity: 0.75; cursor: not-allowed; }
.dj-audition .soon { font-family: var(--font-mono); font-size: 10px; color: rgba(4,20,26,0.7); letter-spacing: .02em; }
@media (max-width: 560px) { .dj-card-head { flex-direction: column; gap: 12px; } .dj-phase { grid-template-columns: 1fr; gap: 2px; } }

/* ============================================================
   SUB-PAGES — legal / contact
   ============================================================ */
.subnav { position: sticky; top: 0; z-index: 100; height: 68px; display: flex; align-items: center; background: color-mix(in oklab, var(--ink), transparent 8%); backdrop-filter: blur(14px); border-bottom: 1px solid var(--edge-soft); }
.subnav .wrap { display: flex; align-items: center; gap: 20px; }
.subnav .back { margin-left: auto; font-size: 0.95rem; color: var(--fg-dim); display: inline-flex; align-items: center; gap: 8px; }
.subnav .back:hover { color: var(--fg); }
.subnav .back .chev { transition: transform .2s ease; }
.subnav .back:hover .chev { transform: translateX(-3px); }

.legal-wrap { max-width: 820px; margin: 0 auto; padding: 96px 28px 90px; }
.legal-head { margin-bottom: 44px; border-bottom: 1px solid var(--edge); padding-bottom: 32px; }
.legal-head h1 { font-family: var(--font-display); font-weight: 800; text-transform: uppercase; font-size: clamp(2.6rem, 6vw, 4.4rem); line-height: 0.9; margin: 14px 0 16px; }
.legal-head .upd { font-family: var(--font-mono); font-size: 12px; color: var(--fg-faint); letter-spacing: 0.04em; }
.legal-note { margin: 0 0 38px; padding: 16px 18px; border-radius: 12px; background: color-mix(in oklab, var(--late), transparent 90%); border: 1px solid color-mix(in oklab, var(--late), transparent 78%); font-size: 0.92rem; color: var(--fg-dim); display: flex; gap: 12px; line-height: 1.55; }
.legal-note svg { width: 18px; height: 18px; color: var(--late); flex: 0 0 auto; margin-top: 2px; }
.legal-note b { color: var(--fg); font-weight: 600; }

.legal { color: var(--fg-dim); font-size: 1.02rem; line-height: 1.7; }
.legal h2 { font-family: var(--font-display); font-weight: 800; text-transform: uppercase; font-size: 1.5rem; color: var(--fg); margin: 42px 0 12px; letter-spacing: 0.01em; }
.legal h2 .n { font-family: var(--font-mono); font-size: 0.8rem; color: var(--accent); margin-right: 10px; font-weight: 500; }
.legal p { margin: 0 0 16px; text-wrap: pretty; }
.legal ul { margin: 0 0 16px; padding-left: 22px; }
.legal li { margin-bottom: 9px; }
.legal a { color: var(--accent); }
.legal strong { color: var(--fg); font-weight: 600; }

/* contact cards */
.contact-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin: 8px 0 38px; }
@media (max-width: 620px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-card { display: block; padding: 24px; border: 1px solid var(--edge); border-radius: 14px; background: linear-gradient(180deg, rgba(255,255,255,0.035), rgba(255,255,255,0.01)); transition: transform .18s ease, border-color .18s ease, background .18s ease; }
.contact-card:hover { transform: translateY(-3px); background: rgba(255,255,255,0.06); border-color: color-mix(in oklab, var(--accent), transparent 60%); }
.contact-card .cc-ico { width: 38px; height: 38px; border-radius: 10px; display: inline-flex; align-items: center; justify-content: center; background: color-mix(in oklab, var(--accent), transparent 84%); color: var(--accent); border: 1px solid color-mix(in oklab, var(--accent), transparent 66%); margin-bottom: 16px; }
.contact-card .cc-ico svg { width: 19px; height: 19px; }
.contact-card h3 { font-family: var(--font-body); font-weight: 600; font-size: 1.05rem; margin: 0 0 5px; color: var(--fg); }
.contact-card p { margin: 0 0 10px; color: var(--fg-dim); font-size: 0.92rem; }
.contact-card .cc-link { font-family: var(--font-mono); font-size: 12.5px; color: var(--accent); letter-spacing: 0.02em; }

.subfoot { border-top: 1px solid var(--edge-soft); background: var(--ink-2); padding: 30px 0; }
.subfoot .wrap { display: flex; justify-content: space-between; gap: 18px; flex-wrap: wrap; font-family: var(--font-mono); font-size: 11.5px; color: var(--fg-faint); letter-spacing: 0.04em; align-items: center; }
.subfoot .links { display: flex; gap: 20px; }
.subfoot a { color: var(--fg-faint); }
.subfoot a:hover { color: var(--fg-dim); }
