/* =====================================================================
   AARON SLEDGE — immersive cinematic theme v2
   Colors & fonts are injected from config.js at load, with the safe
   defaults below. Yellow (--pop) is the signature accent used on all
   buttons/highlights; --accent rotates blue/orange/green per section.
   ===================================================================== */

:root {
  --black: #050506;
  --text: #f4f5f7;
  --pop: #ffd21e;            /* signature yellow (from config) */
  --blue: #2e7dff;
  --orange: #ff7a1a;
  --green: #17d67f;

  --ink: #0b0c10;
  --panel: #101218;
  --panel-2: #16181f;
  --line: rgba(255,255,255,.09);
  --muted: #9aa0ab;
  --muted-2: #6b7180;

  --accent: var(--blue);
  --accent-rgb: 46,125,255;
  --pop-rgb: 255,210,30;

  --maxw: 1280px;
  --ease: cubic-bezier(.22,1,.36,1);
  --font-display: "Anton", Impact, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
}

[data-accent="blue"]   { --accent: var(--blue);   --accent-rgb: 46,125,255; }
[data-accent="orange"] { --accent: var(--orange); --accent-rgb: 255,122,26; }
[data-accent="green"]  { --accent: var(--green);  --accent-rgb: 23,214,127; }
[data-accent="yellow"] { --accent: var(--pop);    --accent-rgb: var(--pop-rgb); }

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--black); color: var(--text);
  font-family: var(--font-body); line-height: 1.55;
  overflow-x: hidden; -webkit-font-smoothing: antialiased;
}
body::before { /* grain + vignette */
  content: ""; position: fixed; inset: 0; pointer-events: none; z-index: 9999;
  background:
    radial-gradient(120% 90% at 50% 0%, transparent 55%, rgba(0,0,0,.5) 100%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  mix-blend-mode: screen;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
::selection { background: var(--pop); color: #050506; }

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 30px; }
.section-pad { padding: clamp(90px,13vw,180px) 0; }
section { position: relative; }

/* ---------- type ---------- */
.eyebrow {
  font-family: var(--font-body); font-weight: 600;
  font-size: 12px; letter-spacing: .34em; text-transform: uppercase;
  color: var(--accent); display: inline-flex; align-items: center; gap: 12px;
}
.eyebrow::before { content: ""; width: 36px; height: 1px; background: var(--accent); }
h1,h2,h3,.display { font-family: var(--font-display); font-weight: 400; line-height: .92; letter-spacing: .01em; text-transform: uppercase; }
.h-xl { font-size: clamp(3.4rem, 15vw, 13rem); }
.h-lg { font-size: clamp(2.6rem, 8vw, 6.5rem); }
.h-md { font-size: clamp(1.8rem, 4vw, 3.2rem); }
.lead { color: var(--muted); font-size: clamp(1rem,1.35vw,1.22rem); max-width: 60ch; }

/* ---------- nav ---------- */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 30px; transition: background .4s var(--ease), padding .4s var(--ease), border-color .4s;
  border-bottom: 1px solid transparent; }
.nav.scrolled { background: rgba(5,5,6,.72); backdrop-filter: blur(16px); padding: 13px 30px; border-bottom: 1px solid var(--line); }
.brand { font-family: var(--font-display); letter-spacing: .12em; font-size: 20px; }
.brand b { color: var(--pop); }
.nav-links { display: flex; gap: 30px; align-items: center; }
.nav-links a { font-size: 13px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); position: relative; padding: 4px 0; transition: color .3s; }
.nav-links a::after { content: ""; position: absolute; left: 0; bottom: -2px; height: 2px; width: 0; background: var(--pop); transition: width .3s var(--ease); }
.nav-links a:hover, .nav-links a.active { color: var(--text); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-cta { border: 1px solid var(--pop); color: var(--pop) !important; padding: 9px 18px !important; border-radius: 100px; transition: background .3s, color .3s !important; }
.nav-cta:hover { background: var(--pop); color: #050506 !important; }
.nav-cta::after { display: none; }
.burger { display: none; flex-direction: column; gap: 5px; cursor: pointer; z-index: 210; }
.burger span { width: 26px; height: 2px; background: var(--text); transition: .3s; }

/* ---------- buttons ---------- */
.btn { display: inline-flex; align-items: center; gap: 10px; font-family: var(--font-body); font-weight: 600;
  font-size: 13px; letter-spacing: .12em; text-transform: uppercase; padding: 15px 30px; border-radius: 100px;
  cursor: pointer; border: 1px solid var(--pop); background: var(--pop); color: #050506;
  transition: transform .3s var(--ease), box-shadow .3s, background .3s, color .3s; }
.btn:hover { transform: translateY(-2px); box-shadow: 0 12px 44px rgba(var(--pop-rgb),.45); }
.btn.ghost { background: transparent; color: var(--text); border-color: var(--line); }
.btn.ghost:hover { border-color: var(--pop); color: var(--pop); box-shadow: none; }
.btn svg { width: 16px; height: 16px; }

/* ---------- HERO (full-screen video) ---------- */
.hero { position: relative; height: var(--hero-h, 100svh); min-height: 480px; overflow: hidden; display: flex; align-items: flex-end; }
.hero-video, .hero-video video, .hero-poster {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0;
}
.hero-poster { background-size: cover; background-position: center; }
.hero::after { content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(5,5,6,.5) 0%, rgba(5,5,6,.08) 32%, rgba(5,5,6,.25) 60%, rgba(5,5,6,.96) 100%); }
.hero-inner { position: relative; z-index: 4; width: 100%; padding-bottom: 12vh; }
.hero .h-xl { line-height: .82; }
.hero .h-xl .line { display: block; overflow: hidden; }
.hero .h-xl .line span { display: block; transform: translateY(105%); }
.hero .h-xl .line span.pop { color: var(--pop); }
.hero-meta { display: flex; flex-wrap: wrap; gap: 30px; align-items: flex-end; margin-top: 26px; }
.hero-tag { color: #e7e9ee; max-width: 44ch; font-size: 1.05rem; }
.scroll-cue { position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); z-index: 4; color: var(--muted); font-size: 11px; letter-spacing: .3em; text-transform: uppercase; display: flex; flex-direction: column; align-items: center; gap: 10px; }
.scroll-cue .bar { width: 1px; height: 44px; background: linear-gradient(var(--pop), transparent); animation: cue 1.8s ease-in-out infinite; }
@keyframes cue { 0%,100% { transform: scaleY(.4); opacity: .4; transform-origin: top; } 50% { transform: scaleY(1); opacity: 1; } }

/* ---------- marquee ---------- */
.marquee { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 20px 0; overflow: hidden; white-space: nowrap; background: var(--pop); }
.marquee .marquee-track { display: inline-block; animation: scrollx 24s linear infinite; }
.marquee .marquee-track span { font-family: var(--font-display); font-size: clamp(1.4rem,3vw,2.4rem); letter-spacing: .02em; padding: 0 6px; color: #050506; text-transform: uppercase; }
@keyframes scrollx { to { transform: translateX(-50%); } }

/* ---------- reveal + parallax ---------- */
.reveal { opacity: 0; transform: translateY(42px); transition: opacity 1s var(--ease), transform 1s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .09s; } .reveal.d2 { transition-delay: .18s; }
.reveal.d3 { transition-delay: .27s; } .reveal.d4 { transition-delay: .36s; }

/* ---------- split ---------- */
.split { display: grid; grid-template-columns: 1.05fr .95fr; gap: 64px; align-items: center; }
.split.flip .media { order: -1; }
.media { position: relative; border-radius: 14px; overflow: hidden; border: 1px solid var(--line); aspect-ratio: 4/5; }
.media img { position: absolute; inset: 0; width: 100%; height: 110%; object-fit: cover; will-change: transform; }
.media .tint { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(5,5,6,.5)); mix-blend-mode: multiply; }
.stat-row { display: flex; gap: 42px; flex-wrap: wrap; margin-top: 34px; }
.stat b { font-family: var(--font-display); font-size: clamp(1.8rem,3vw,2.8rem); color: var(--pop); display: block; letter-spacing: .02em; }
.stat span { font-size: 12px; letter-spacing: .16em; text-transform: uppercase; color: var(--muted-2); }

/* ---------- full-bleed statement ---------- */
.statement { position: relative; height: 92svh; min-height: 560px; overflow: hidden; display: grid; place-items: start center; text-align: center; padding-top: 12vh; }
.statement img { position: absolute; inset: 0; width: 100%; height: 118%; object-fit: cover; filter: grayscale(.15) contrast(1.05); will-change: transform; }
.statement::after { content: ""; position: absolute; inset: 0; background: radial-gradient(90% 90% at 50% 50%, rgba(5,5,6,.25), rgba(5,5,6,.85)); }
.statement .st-text { position: relative; z-index: 2; padding: 0 24px; }
.statement .st-text h2 { font-size: clamp(2.4rem,7vw,6rem); }
.statement .st-text h2 .pop { color: var(--pop); }

/* ---------- vertical phone video ---------- */
.vertical-sec { display: grid; grid-template-columns: .9fr 1.1fr; gap: 60px; align-items: center; }
.phone { display: block; position: relative; width: min(320px, 78vw); aspect-ratio: 9/19.5; margin: 0 auto; border-radius: 34px; overflow: hidden; border: 2px solid rgba(255,255,255,.14); box-shadow: 0 40px 90px rgba(0,0,0,.6), 0 0 0 8px rgba(255,255,255,.02); background: #000; cursor: pointer; }
.phone video { width: 100%; height: 100%; object-fit: cover; }
.phone .glow { position: absolute; inset: -30% -20% auto; height: 60%; background: radial-gradient(circle, rgba(var(--pop-rgb),.4), transparent 70%); filter: blur(50px); z-index: 0; }
.phone .ig-badge { position: absolute; left: 50%; bottom: 18px; transform: translateX(-50%) translateY(6px); display: inline-flex; align-items: center; gap: 7px; white-space: nowrap; padding: 9px 16px; border-radius: 100px; background: rgba(5,5,6,.7); backdrop-filter: blur(8px); border: 1px solid rgba(255,255,255,.16); color: #fff; font-size: 12px; letter-spacing: .06em; opacity: 0; transition: opacity .3s, transform .3s; z-index: 2; }
.phone .ig-badge svg { width: 15px; height: 15px; }
.phone:hover .ig-badge { opacity: 1; transform: translateX(-50%) translateY(0); }
.reel-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.reel-chip { display: inline-flex; align-items: center; gap: 7px; padding: 9px 15px; border-radius: 100px; border: 1px solid var(--line); color: var(--muted); font-size: 12px; letter-spacing: .08em; text-transform: uppercase; transition: .3s; }
.reel-chip svg { width: 14px; height: 14px; }
.reel-chip:hover { border-color: var(--pop); color: var(--pop); transform: translateY(-2px); }

/* stream-under-video link */
.stream-line { text-align: center; margin-top: 20px; }
.spotify-inline { display: inline-flex; align-items: center; gap: 9px; color: var(--green); font-size: 14px; letter-spacing: .04em; transition: gap .3s, color .3s; }
.spotify-inline:hover { gap: 13px; color: #6ff0b6; }
.spotify-inline svg { width: 19px; height: 19px; }

/* ---------- cinema (watch) ---------- */
.cinema { position: relative; border-radius: 16px; overflow: hidden; border: 1px solid var(--line); aspect-ratio: 16/9; background: #000; cursor: pointer; }
.cinema video { width: 100%; height: 100%; object-fit: cover; display: block; }
.cinema .poster { position: absolute; inset: 0; background-size: cover; background-position: center; transition: opacity .4s; }
.cinema .poster::after { content: ""; position: absolute; inset: 0; background: rgba(5,5,6,.35); }
.cinema .bigplay { position: absolute; inset: 0; margin: auto; width: 92px; height: 92px; border-radius: 50%; background: var(--pop); color: #050506; display: grid; place-items: center; box-shadow: 0 14px 44px rgba(var(--pop-rgb),.5); transition: transform .3s; z-index: 3; }
.cinema:hover .bigplay { transform: scale(1.08); }
.cinema .bigplay svg { width: 34px; height: 34px; margin-left: 4px; }
.cinema.playing .poster, .cinema.playing .bigplay { opacity: 0; pointer-events: none; }
.cinema .yt-frame { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 4; border: 0; }

/* ---------- LEGACY album feature ---------- */
.legacy-sec { position: relative; overflow: hidden; border-top: 1px solid var(--line); }
.legacy-glow { position: absolute; inset: auto -10% -35% -10%; height: 75%; background: radial-gradient(circle, rgba(var(--pop-rgb),.22), transparent 70%); filter: blur(65px); pointer-events: none; }
.legacy-inner { display: grid; grid-template-columns: .8fr 1.2fr; gap: 60px; align-items: center; position: relative; z-index: 1; }
.legacy-art { border-radius: 14px; overflow: hidden; border: 1px solid var(--line); box-shadow: 0 40px 100px rgba(0,0,0,.6); aspect-ratio: 1; position: relative; }
.legacy-art img { width: 100%; height: 100%; object-fit: cover; }
.legacy-art::after { content: ""; position: absolute; inset: 0; box-shadow: inset 0 0 90px rgba(0,0,0,.5); }
.legacy-title { font-family: var(--font-display); font-size: clamp(3.6rem,13vw,10rem); line-height: .82; color: var(--pop); text-transform: uppercase; }
.legacy-date { font-family: var(--font-display); letter-spacing: .1em; color: var(--text); margin: 8px 0 18px; font-size: clamp(1.1rem,2vw,1.5rem); text-transform: uppercase; }
.countdown { display: flex; gap: 14px; margin: 26px 0; flex-wrap: wrap; }
.cd-box { background: var(--panel); border: 1px solid var(--line); border-radius: 12px; padding: 14px 16px; min-width: 76px; text-align: center; }
.cd-box b { font-family: var(--font-display); font-size: 2.3rem; color: var(--pop); display: block; line-height: 1; font-variant-numeric: tabular-nums; }
.cd-box span { font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--muted-2); }
.legacy-lead { color: var(--muted); font-size: .95rem; margin-bottom: 20px; }
@media (max-width: 940px) { .legacy-inner { grid-template-columns: 1fr; gap: 34px; } .legacy-art { max-width: 380px; } }

/* ---------- track cards ---------- */
.grid { display: grid; gap: 24px; }
.grid.cols-3 { grid-template-columns: repeat(3,1fr); }
.grid.cols-2 { grid-template-columns: repeat(2,1fr); }
.track { background: linear-gradient(160deg, var(--panel), var(--ink)); border: 1px solid var(--line); border-radius: 16px; overflow: hidden; transition: transform .5s var(--ease), border-color .4s, box-shadow .5s; position: relative; }
.track:hover { transform: translateY(-6px); border-color: rgba(var(--pop-rgb),.45); box-shadow: 0 26px 64px rgba(0,0,0,.55); }
.track .art { aspect-ratio: 1; position: relative; overflow: hidden; background: var(--ink); }
.track .art img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.track:hover .art img { transform: scale(1.07); }
.track .art .idx { position: absolute; left: 14px; bottom: 8px; font-family: var(--font-display); font-size: 3.4rem; color: rgba(255,255,255,.25); z-index: 2; text-shadow: 0 2px 20px rgba(0,0,0,.5); }
.track .art .play { position: absolute; inset: 0; display: grid; place-items: center; background: rgba(5,5,6,.4); opacity: 0; transition: opacity .4s; z-index: 3; }
.track:hover .art .play { opacity: 1; }
.track .art .play .disc { width: 62px; height: 62px; border-radius: 50%; background: var(--pop); color: #050506; display: grid; place-items: center; box-shadow: 0 10px 30px rgba(var(--pop-rgb),.5); transition: transform .3s; }
.track .art .play .disc:hover { transform: scale(1.1); }
.track .art .play .disc svg { width: 22px; height: 22px; margin-left: 3px; }
.track .body { padding: 20px 22px 24px; }
.track .body .kind { font-size: 11px; letter-spacing: .16em; text-transform: uppercase; color: var(--accent); }
.track .body h3 { font-family: var(--font-display); font-size: 1.5rem; margin: 8px 0 3px; letter-spacing: .02em; }
.track .body .sub { color: var(--muted); font-size: .9rem; }
.track .body .row { display: flex; align-items: center; justify-content: space-between; margin-top: 18px; gap: 12px; }
.spotify-link { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; color: var(--green); letter-spacing: .04em; transition: gap .3s, color .3s; }
.spotify-link:hover { gap: 12px; color: #6ff0b6; }
.spotify-link svg { width: 18px; height: 18px; }
.badge { font-size: 11px; letter-spacing: .12em; text-transform: uppercase; padding: 5px 12px; border-radius: 100px; border: 1px solid var(--line); color: var(--muted); }
.badge.hot { color: var(--pop); border-color: rgba(var(--pop-rgb),.45); }
.badge.excl { color: var(--green); border-color: rgba(23,214,127,.4); }

/* ---------- store / preview ---------- */
.price { font-family: var(--font-display); font-size: 1.7rem; color: var(--text); letter-spacing: .02em; }
.price small { color: var(--muted-2); font-size: .75rem; font-family: var(--font-body); letter-spacing: 0; }
.price small.was { text-decoration: line-through; margin-left: 6px; }
.preview-bar { display: flex; align-items: center; gap: 12px; margin-top: 16px; }
.pv-btn { width: 44px; height: 44px; flex: none; border-radius: 50%; cursor: pointer; border: 1px solid var(--pop); background: transparent; color: var(--pop); display: grid; place-items: center; transition: background .3s, color .3s, transform .2s; }
.pv-btn:hover { transform: scale(1.06); }
.pv-btn.playing { background: var(--pop); color: #050506; }
.pv-btn svg { width: 16px; height: 16px; }
.pv-progress { flex: 1; height: 4px; border-radius: 4px; background: rgba(255,255,255,.12); position: relative; overflow: hidden; }
.pv-progress .fill { position: absolute; left: 0; top: 0; bottom: 0; width: 0; background: var(--pop); }
.pv-time { font-size: 12px; color: var(--muted-2); font-variant-numeric: tabular-nums; min-width: 80px; text-align: right; }

/* toast */
.toast { position: fixed; right: 24px; bottom: 24px; z-index: 500; background: var(--panel); border: 1px solid var(--pop); border-radius: 12px; padding: 16px 20px; max-width: 320px; transform: translateY(140%); transition: transform .5s var(--ease); box-shadow: 0 20px 50px rgba(0,0,0,.6); }
.toast.show { transform: none; }
.toast b { color: var(--pop); font-family: var(--font-display); letter-spacing: .03em; }
.toast p { color: var(--muted); font-size: 13px; margin-top: 4px; }
.toast code { color: var(--pop); }

/* hook banner */
.hook { border: 1px dashed rgba(var(--pop-rgb),.5); background: rgba(var(--pop-rgb),.05); border-radius: 14px; padding: 24px 28px; margin-top: 44px; }
.hook h4 { font-family: var(--font-display); color: var(--pop); letter-spacing: .04em; margin-bottom: 8px; font-size: 16px; }
.hook p { color: var(--muted); font-size: 14px; }
.hook code { color: var(--pop); background: rgba(var(--pop-rgb),.1); padding: 1px 6px; border-radius: 5px; }
.hook b { color: #fff2b8; }

/* timeline */
.timeline { position: relative; margin-top: 50px; padding-left: 30px; }
.timeline::before { content: ""; position: absolute; left: 0; top: 6px; bottom: 6px; width: 2px; background: linear-gradient(var(--pop), var(--blue), var(--green)); }
.tl-item { position: relative; padding: 0 0 44px 24px; }
.tl-item::before { content: ""; position: absolute; left: -35px; top: 6px; width: 12px; height: 12px; border-radius: 50%; background: var(--pop); box-shadow: 0 0 0 5px rgba(var(--pop-rgb),.18); }
.tl-item .yr { font-family: var(--font-body); font-weight: 600; color: var(--accent); letter-spacing: .12em; font-size: 12px; text-transform: uppercase; }
.tl-item h3 { font-family: var(--font-display); font-size: 1.5rem; margin: 6px 0 6px; letter-spacing: .02em; }
.tl-item p { color: var(--muted); max-width: 60ch; }
.credits { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.credits span { border: 1px solid var(--line); border-radius: 100px; padding: 9px 18px; font-size: 13px; color: var(--muted); transition: .3s; }
.credits span:hover { border-color: var(--pop); color: var(--text); }

/* page head */
.page-head { padding: 168px 0 20px; position: relative; overflow: hidden; }
.page-head .ghost-word { position: absolute; right: -2%; top: 42%; font-family: var(--font-display); font-size: 24vw; color: rgba(255,255,255,.03); pointer-events: none; }

/* footer */
.footer { border-top: 1px solid var(--line); padding: 80px 0 44px; margin-top: 40px; }
.footer-grid { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 40px; }
.footer .big { font-family: var(--font-display); font-size: clamp(2.8rem,9vw,7rem); line-height: .88; }
.footer .big b { color: var(--pop); }
.socials { display: flex; gap: 16px; margin-top: 22px; }
.socials a { width: 44px; height: 44px; border: 1px solid var(--line); border-radius: 50%; display: grid; place-items: center; color: var(--muted); transition: .3s; }
.socials a:hover { border-color: var(--pop); color: var(--pop); transform: translateY(-3px); }
.socials svg { width: 18px; height: 18px; }
.foot-note { color: var(--muted-2); font-size: 12px; margin-top: 54px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; }

/* cursor */
.cursor { position: fixed; width: 8px; height: 8px; border-radius: 50%; background: var(--pop); pointer-events: none; z-index: 9998; transform: translate(-50%,-50%); transition: width .25s, height .25s; mix-blend-mode: difference; }
.cursor.ring { width: 42px; height: 42px; background: transparent; border: 1px solid var(--pop); }
@media (hover: none) { .cursor { display: none; } }

/* ---------- gallery ---------- */
.gallery-grid { column-count: 3; column-gap: 18px; }
.g-item { display: block; width: 100%; margin: 0 0 18px; padding: 0; border: 1px solid var(--line); border-radius: 12px; overflow: hidden; cursor: pointer; background: var(--ink); break-inside: avoid; position: relative; }
.g-item img { width: 100%; display: block; transition: transform .6s var(--ease), opacity .3s; }
.g-item::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 60%, rgba(var(--pop-rgb),.14)); opacity: 0; transition: opacity .3s; }
.g-item:hover img { transform: scale(1.05); }
.g-item:hover::after { opacity: 1; }
@media (max-width: 900px) { .gallery-grid { column-count: 2; } }
@media (max-width: 560px) { .gallery-grid { column-count: 1; } }

/* lightbox */
.lightbox { position: fixed; inset: 0; z-index: 10001; background: rgba(3,3,4,.94); display: none; place-items: center; padding: 5vh 4vw; backdrop-filter: blur(6px); }
.lightbox.open { display: grid; }
.lightbox img { max-width: 92vw; max-height: 88vh; border-radius: 10px; box-shadow: 0 40px 120px rgba(0,0,0,.7); }
.lb-close { position: fixed; top: 22px; right: 26px; width: 46px; height: 46px; border-radius: 50%; border: 1px solid var(--line); background: rgba(0,0,0,.5); color: #fff; font-size: 24px; line-height: 1; cursor: pointer; transition: .3s; }
.lb-close:hover { border-color: var(--pop); color: var(--pop); }

/* ---------- coming soon + signup ---------- */
.coming-soon { text-align: center; padding: 30px 0 10px; }
.cs-badge { display: inline-block; font-family: var(--font-body); font-weight: 600; font-size: 12px; letter-spacing: .28em; text-transform: uppercase; color: var(--pop); border: 1px solid rgba(var(--pop-rgb),.5); border-radius: 100px; padding: 8px 18px; }
.coming-soon .lead { margin: 0 auto; }

.signup { margin-top: 46px; background: linear-gradient(160deg, var(--panel), var(--ink)); border: 1px solid var(--line); border-radius: 18px; padding: 34px clamp(20px,4vw,40px); }
.signup-head { text-align: center; margin-bottom: 22px; }
.signup-head p { max-width: 46ch; margin: 0 auto; }
.signup-fields { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.signup-fields input { grid-column: span 1; width: 100%; padding: 15px 18px; border-radius: 100px; border: 1px solid var(--line); background: rgba(255,255,255,.03); color: var(--text); font-size: 15px; font-family: var(--font-body); transition: border-color .3s; }
.signup-fields input::placeholder { color: var(--muted-2); }
.signup-fields input:focus { outline: none; border-color: var(--pop); }
.signup-fields input[name="email"] { grid-column: 1 / -1; }
.signup-fields .btn { grid-column: 1 / -1; justify-content: center; padding: 16px; }
.signup-msg { text-align: center; margin-top: 14px; font-size: 14px; min-height: 20px; }
.signup-msg.ok { color: var(--green); } .signup-msg.err { color: var(--orange); }
.signup-fine { text-align: center; margin-top: 12px; font-size: 11px; color: var(--muted-2); }
@media (max-width: 560px) { .signup-fields { grid-template-columns: 1fr; } }

/* ---------- social feed ---------- */
.social-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 16px; align-items: start; }
.social-follow { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 30px; }

/* ---------- Lenis smooth scroll ---------- */
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }
.lenis.lenis-stopped { overflow: hidden; }

/* ---------- cinematic intro: vinyl spin-up → neon push-through (home) ---------- */
.intro { position: fixed; inset: 0; z-index: 10000; background: #050506; overflow: hidden; }
.intro::before { /* faint grain/vignette on the intro */
  content: ""; position: absolute; inset: 0; background: radial-gradient(60% 60% at 50% 50%, transparent, rgba(0,0,0,.6)); pointer-events: none;
}
.intro.play { animation: introExit .5s 1.6s var(--ease) forwards; }
@keyframes introExit { to { opacity: 0; visibility: hidden; } }

/* vinyl record */
.vinyl { position: absolute; left: 50%; top: 50%; width: min(64vw, 352px); aspect-ratio: 1; border-radius: 50%;
  transform: translate(-50%, -260%) rotate(-25deg); opacity: 0;
  background: repeating-radial-gradient(circle at 50% 50%, var(--pop) 0 3px, #ecc21a 3px 5px), radial-gradient(circle, var(--pop), #e0b714);
  box-shadow: 0 34px 90px rgba(0,0,0,.6), 0 0 60px rgba(var(--pop-rgb),.35), inset 0 0 46px rgba(120,90,0,.35); }
.vinyl::after { content: ""; position: absolute; inset: 47.5%; border-radius: 50%; background: #050506; box-shadow: 0 0 0 2px rgba(0,0,0,.25); }
.vinyl-label { position: absolute; inset: 30%; border-radius: 50%; background-size: cover; background-position: center;
  border: 1px solid rgba(255,255,255,.18); box-shadow: inset 0 0 0 5px rgba(5,5,6,.85); }
.intro.play .vinyl { animation: vinylDrop .75s .1s var(--ease) forwards, vinylOut .4s 1.05s var(--ease) forwards; }
.intro.play .vinyl-label { animation: vinylSpin 1.2s .1s linear infinite; }
@keyframes vinylDrop { 0% { transform: translate(-50%,-260%) rotate(-25deg); opacity: 0; } 55% { opacity: 1; } 100% { transform: translate(-50%,-50%) rotate(0); opacity: 1; } }
@keyframes vinylSpin { to { transform: rotate(360deg); } }
@keyframes vinylOut { to { opacity: 0; } }

/* sound rings */
.intro-rings i { position: absolute; left: 50%; top: 50%; width: min(64vw,352px); aspect-ratio: 1; border: 2px solid rgba(var(--pop-rgb),.6); border-radius: 50%; transform: translate(-50%,-50%) scale(.3); opacity: 0; }
.intro.play .intro-rings i:nth-child(1) { animation: ring .9s .5s ease-out forwards; }
.intro.play .intro-rings i:nth-child(2) { animation: ring .9s .75s ease-out forwards; }
.intro.play .intro-rings i:nth-child(3) { animation: ring .9s 1s ease-out forwards; }
@keyframes ring { 0% { transform: translate(-50%,-50%) scale(.35); opacity: .85; } 100% { transform: translate(-50%,-50%) scale(2.7); opacity: 0; } }

/* neon name */
.intro-neon { position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%); font-family: var(--font-display); font-size: clamp(2.4rem,9vw,6.5rem); letter-spacing: .06em; color: #fff; text-transform: uppercase; white-space: nowrap; opacity: 0;
  text-shadow: 0 0 6px #fff, 0 0 16px var(--pop), 0 0 38px var(--pop), 0 0 72px rgba(var(--pop-rgb),.85); }
.intro.play .intro-neon { animation: neonOn .5s .85s forwards, neonPush .55s 1.5s var(--ease) forwards; }
@keyframes neonOn { 0% { opacity: 0; } 8% { opacity: 1; } 12% { opacity: .3; } 18% { opacity: 1; } 24% { opacity: .5; } 30% { opacity: 1; } 100% { opacity: 1; } }
@keyframes neonPush { 0% { transform: translate(-50%,-50%) scale(1); opacity: 1; filter: blur(0); } 100% { transform: translate(-50%,-50%) scale(7); opacity: 0; filter: blur(14px); } }

body.intro-lock { overflow: hidden; height: 100vh; }

/* ---------- pinned zoom scene ---------- */
.pin-track { position: relative; height: 220vh; }
.pin-sticky { position: sticky; top: 0; height: 100svh; }
.statement.pin-sticky { min-height: 0; }
.statement.pin-sticky img { height: 100%; }

/* cursor-reactive images get a little smoothing */
.media img, .legacy-art img { transition: transform .3s ease-out; }

/* responsive */
@media (max-width: 940px) {
  .split, .vertical-sec { grid-template-columns: 1fr; gap: 40px; }
  .split.flip .media { order: 0; }
  .grid.cols-3 { grid-template-columns: 1fr 1fr; }
  .nav-links { position: fixed; inset: 0 0 0 auto; width: min(78vw,340px); background: rgba(8,8,10,.98); backdrop-filter: blur(20px); flex-direction: column; justify-content: center; padding: 40px; transform: translateX(100%); transition: transform .45s var(--ease); border-left: 1px solid var(--line); }
  .nav-links.open { transform: none; }
  .nav-links a { font-size: 19px; }
  .burger { display: flex; }
}
@media (max-width: 580px) {
  .grid.cols-3, .grid.cols-2 { grid-template-columns: 1fr; }
  .wrap { padding: 0 20px; }
  .cursor { display: none; }
  .hero .h-xl { font-size: clamp(3.6rem, 20vw, 7rem); }
}
