/* NOISE LAB — brutalist SIGNATURE
 * Asymmetric + glitch + scribble + waveform
 */

@import url('https://fonts.googleapis.com/css2?family=Anton&family=Archivo+Black&family=Caveat:wght@400;500;700&family=Permanent+Marker&family=Space+Mono:wght@400;700&family=Inter:wght@400;700;900&display=swap');
@import url('https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/static/pretendard.css');

:root {
  --bg-base:   #fffef0;
  --bg-deep:   #0a0a0a;
  --bg-card:   #ffffff;
  --ink:       #0a0a0a;

  --neon-yellow: #ffff00;
  --hot-pink:    #ff00aa;
  --electric:    #00d9ff;

  --border-thick: 4px solid var(--ink);
  --border-strong: 6px solid var(--ink);

  --display:  'Anton', 'Archivo Black', system-ui, sans-serif;
  --display2: 'Archivo Black', system-ui, sans-serif;
  --text:     'Inter', 'Helvetica Neue', 'Pretendard', system-ui, sans-serif;
  --korean:   'Pretendard', system-ui, sans-serif;
  --script:   'Caveat', 'Permanent Marker', cursive;
  --mono:     'Space Mono', ui-monospace, monospace;

  --gap: 24px;

  --z-cursor: 50;
  --z-nav: 80;
  --z-player: 85;
  --z-overlay: 100;
  --z-banner: 120;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg-base);
  color: var(--ink);
  font-family: var(--text);
  font-size: 16px;
  line-height: 1.55;
  font-weight: 700;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
html[lang="ko"] body { font-family: var(--korean); font-weight: 600; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; background: none; border: 0; color: inherit; }
input, select, textarea {
  font: inherit; color: var(--ink);
  background: var(--bg-card);
  border: var(--border-thick);
  border-radius: 0;
  padding: 14px 16px;
  font-size: 16px;
  width: 100%;
  font-weight: 700;
}
input:focus, select:focus, textarea:focus {
  outline: 4px solid var(--neon-yellow);
  outline-offset: -4px;
}

/* ── Demo banner ──────────────────────────────────── */
.demo-banner {
  position: fixed; top: 0; left: 0; right: 0; z-index: var(--z-banner);
  background: var(--ink); color: var(--neon-yellow);
  font-family: var(--mono); font-size: 12px; font-weight: 700;
  padding: 8px 16px; text-align: center; letter-spacing: 0.06em;
}
.demo-banner a { color: var(--hot-pink); text-decoration: underline; }
body.has-banner { padding-top: 32px; }

/* ── Floating Sticky Square Nav (top-right, rotated) ── */
/* PC nav bar (T8 brutalist · 굵은 검정 박스 + 노랑 stripe) */
.nav-bar {
  position: fixed; top: 24px; right: 24px; z-index: var(--z-nav);
  display: inline-flex; gap: 0; align-items: stretch;
  background: var(--ink);
  border: var(--border-strong);
  box-shadow: 6px 6px 0 var(--neon-yellow);
}
body.has-banner .nav-bar { top: 56px; }
.nav-bar a {
  font-family: var(--display); font-size: 12px; font-weight: 700;
  color: var(--neon-yellow); padding: 12px 14px;
  letter-spacing: 0.08em; text-transform: uppercase;
  border-right: 2px solid var(--neon-yellow);
  transition: background .15s, color .15s;
}
.nav-bar a:last-child { border-right: 0; }
.nav-bar a:hover { background: var(--neon-yellow); color: var(--ink); }
.nav-bar .nav-bar-cta { background: var(--hot-pink); color: var(--neon-yellow); border-color: var(--hot-pink); }
.nav-bar .nav-bar-cta:hover { background: var(--neon-yellow); color: var(--hot-pink); }
.nav-bar-user { display: inline-flex; gap: 0; border-left: 2px solid var(--neon-yellow); }
.nav-bar-user-link { font-size: 11px !important; padding: 12px 12px !important; }
.nav-bar-user .nav-bar-user-link:last-child {
  background: var(--neon-yellow); color: var(--ink) !important;
}
.nav-bar-user .nav-bar-user-link:last-child:hover { background: var(--ink); color: var(--neon-yellow) !important; }

/* Mobile hamburger (yellow box) */
.nav-sq {
  position: fixed; top: 24px; right: 24px; z-index: var(--z-nav);
  width: 96px; height: 96px;
  background: var(--neon-yellow);
  border: var(--border-strong);
  display: none; align-items: center; justify-content: center;
  font-family: var(--display); font-size: 18px;
  letter-spacing: 0.04em;
  transform: rotate(-6deg);
  box-shadow: 6px 6px 0 var(--ink);
  cursor: pointer;
  transition: transform .2s, box-shadow .2s;
}
body.has-banner .nav-sq { top: 56px; }
@media (max-width: 1024px) {
  .nav-bar { display: none; }
  .nav-sq  { display: flex; }
}
.nav-sq:hover { transform: rotate(0deg) scale(1.05); box-shadow: 4px 4px 0 var(--hot-pink); }
.nav-sq.open  { background: var(--hot-pink); color: var(--neon-yellow); }
.nav-sq-text { line-height: 0.9; text-align: center; }

/* Brand top-left */
.nav-brand {
  position: fixed; top: 36px; left: 24px; z-index: var(--z-nav);
  font-family: var(--display); font-size: 28px;
  letter-spacing: 0.04em; line-height: 0.9;
  background: var(--ink); color: var(--neon-yellow);
  padding: 8px 14px;
  transform: rotate(-2deg);
  box-shadow: 4px 4px 0 var(--hot-pink);
}
body.has-banner .nav-brand { top: 68px; }

/* ── Now Playing mini player (bottom-right) ────────── */
.now-playing {
  position: fixed; bottom: 24px; right: 24px; z-index: var(--z-player);
  background: var(--ink); color: var(--neon-yellow);
  border: var(--border-thick);
  padding: 14px 18px;
  display: flex; align-items: center; gap: 14px;
  font-family: var(--mono); font-size: 12px;
  box-shadow: 5px 5px 0 var(--hot-pink);
  max-width: 360px;
  transform: rotate(1deg);
}
.now-playing .play-icon {
  width: 32px; height: 32px;
  background: var(--neon-yellow); color: var(--ink);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; flex-shrink: 0;
}
.now-playing .np-info { display: flex; flex-direction: column; gap: 2px; flex: 1; min-width: 0; }
.now-playing .np-label { color: var(--hot-pink); font-size: 9px; letter-spacing: 0.16em; }
.now-playing .np-track { color: var(--neon-yellow); font-weight: 700; }
.now-playing .np-time { color: var(--electric); font-size: 11px; }
.now-playing .np-wave {
  display: flex; gap: 2px; align-items: center; height: 18px;
}
.now-playing .np-wave span {
  width: 2px; background: var(--neon-yellow);
  animation: npBar .9s ease-in-out infinite alternate;
}
.now-playing .np-wave span:nth-child(2) { animation-delay: -.3s; }
.now-playing .np-wave span:nth-child(3) { animation-delay: -.6s; }
.now-playing .np-wave span:nth-child(4) { animation-delay: -.4s; }
.now-playing .np-wave span:nth-child(5) { animation-delay: -.7s; }
@keyframes npBar { from { height: 4px; } to { height: 18px; } }

/* ── Section base ─────────────────────────────────── */
.section { padding: 80px 24px; position: relative; border-top: var(--border-thick); }
.section.no-border { border-top: 0; }
.container { max-width: 1280px; margin: 0 auto; }
.sec-head {
  display: flex; gap: 24px; align-items: baseline;
  margin-bottom: 36px; padding-bottom: 16px;
  border-bottom: 4px solid var(--ink);
  flex-wrap: wrap;
}
.sec-num {
  font-family: var(--display); font-size: 64px;
  letter-spacing: 0; line-height: 0.9;
  background: var(--neon-yellow); color: var(--ink);
  padding: 6px 14px;
  transform: rotate(-2deg);
  box-shadow: 4px 4px 0 var(--ink);
}
.sec-title {
  font-family: var(--display);
  font-size: clamp(40px, 6vw, 80px);
  letter-spacing: 0.01em; line-height: 0.9;
  color: var(--ink); flex: 1; min-width: 0;
}
.sec-deck {
  font-family: var(--text); font-size: 14px; color: var(--ink);
  width: 100%; line-height: 1.55;
}

/* ── Hero ──────────────────────────────────────────── */
#hero {
  min-height: 100vh; padding: 0;
  position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  border-top: 0;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background-size: cover; background-position: center;
  opacity: 0.55;
}
.hero-content {
  position: relative; z-index: 1;
  width: 100%; max-width: 1280px; padding: 0 24px;
  display: flex; flex-direction: column; gap: 6px;
  align-items: stretch;
}
.hero-big-row {
  display: flex; align-items: center; gap: 24px;
  font-family: var(--display);
  letter-spacing: 0.01em; line-height: 0.85;
}
.hero-big-1 {
  font-size: clamp(72px, 14vw, 220px);
  color: var(--ink);
  transform: rotate(-3deg);
}
.hero-big-2 {
  font-size: clamp(96px, 18vw, 280px);
  background: var(--neon-yellow);
  padding: 0 24px;
  align-self: flex-end;
  transform: rotate(2deg);
  box-shadow: 8px 8px 0 var(--ink);
  margin-left: auto;
}
.hero-big-3 {
  font-size: clamp(64px, 11vw, 180px);
  color: var(--hot-pink);
  text-shadow: 4px 4px 0 var(--ink);
  transform: rotate(-1deg);
}
.hero-meta-row {
  display: flex; gap: 24px; align-items: center;
  margin-top: 32px; flex-wrap: wrap;
}
.hero-sub {
  font-family: var(--text); font-weight: 700;
  font-size: clamp(16px, 1.6vw, 20px);
  color: var(--ink); max-width: 520px;
  background: var(--bg-card);
  padding: 14px 18px;
  border: var(--border-thick);
  transform: rotate(0.5deg);
}
.hero-cta-row { display: flex; gap: 16px; flex-wrap: wrap; }
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--display); font-size: 18px;
  letter-spacing: 0.04em;
  padding: 16px 28px;
  border: var(--border-thick); border-radius: 0;
  background: var(--bg-card); color: var(--ink);
  transition: transform .15s, box-shadow .15s, background .15s;
  cursor: pointer;
}
.btn-primary { background: var(--ink); color: var(--neon-yellow); box-shadow: 6px 6px 0 var(--hot-pink); }
.btn-primary:hover { transform: translate(-3px, -3px); box-shadow: 9px 9px 0 var(--hot-pink); }
.btn-pink    { background: var(--hot-pink); color: var(--ink); box-shadow: 6px 6px 0 var(--ink); }
.btn-pink:hover { transform: translate(-3px, -3px); box-shadow: 9px 9px 0 var(--ink); }

.hero-waveform {
  position: absolute; right: 24px; bottom: 130px; z-index: 1;
  width: 380px; height: 64px;
  background: var(--ink);
  border: var(--border-thick);
  padding: 8px;
  transform: rotate(-2deg);
}
.hero-waveform svg { width: 100%; height: 100%; }
.hero-waveform path { stroke: var(--neon-yellow); stroke-width: 2; fill: none; }

/* ── Manifesto ────────────────────────────────────── */
.manifesto-grid {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px;
}
.manifesto-card {
  border: var(--border-thick);
  padding: 24px;
  display: flex; flex-direction: column; gap: 12px;
  min-height: 240px;
  background: var(--bg-card);
  transition: transform .25s, background .25s;
}
.manifesto-card:nth-child(1) { transform: rotate(-2deg); background: var(--neon-yellow); }
.manifesto-card:nth-child(2) { transform: rotate(1deg); }
.manifesto-card:nth-child(3) { transform: rotate(-1deg); background: var(--hot-pink); color: var(--ink); }
.manifesto-card:nth-child(4) { transform: rotate(2deg); background: var(--ink); color: var(--neon-yellow); }
.manifesto-card:nth-child(5) { transform: rotate(-1deg); background: var(--electric); }
.manifesto-card:hover { transform: rotate(0) translate(-2px, -2px); }
.manifesto-num {
  font-family: var(--mono); font-size: 13px; letter-spacing: 0.16em;
}
.manifesto-word {
  font-family: var(--display); font-size: clamp(36px, 4vw, 56px);
  letter-spacing: 0.02em; line-height: 0.9;
}
.manifesto-body { font-family: var(--text); font-size: 14px; line-height: 1.5; font-weight: 600; }

/* ── Producers (polaroid) ─────────────────────────── */
.producers-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px;
  padding: 16px 0;
}
.producer-card {
  background: var(--bg-card);
  padding: 12px 12px 60px 12px;
  position: relative;
  box-shadow: 4px 4px 0 var(--ink);
  cursor: pointer;
  transition: transform .35s cubic-bezier(.2,.8,.2,1), box-shadow .25s;
}
.producer-card:hover { transform: rotate(0deg) translate(-3px, -3px); box-shadow: 8px 8px 0 var(--hot-pink); z-index: 2; }
.producer-img {
  aspect-ratio: 4/5; background-size: cover; background-position: center;
  background-color: var(--ink);
  filter: contrast(1.1) saturate(0.85);
}
.producer-handwritten {
  position: absolute; bottom: 14px; left: 14px; right: 14px;
  font-family: var(--script); font-size: 24px;
  color: var(--ink); line-height: 1;
}
.producer-name {
  position: absolute; top: 12px; right: 12px;
  background: var(--neon-yellow); color: var(--ink);
  font-family: var(--display); font-size: 14px;
  padding: 4px 10px;
  letter-spacing: 0.04em;
}
.producer-meta {
  position: absolute; bottom: 14px; right: 14px;
  font-family: var(--mono); font-size: 11px; color: var(--ink);
}

/* ── Curriculum (asymmetric module grid) ──────────── */
.modules-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.module-card {
  border: var(--border-strong);
  padding: 28px;
  background: var(--bg-card);
  display: flex; flex-direction: column; gap: 14px;
  min-height: 260px;
  transition: transform .25s, background .25s;
  position: relative;
}
.module-card.color-yellow { background: var(--neon-yellow); }
.module-card.color-pink   { background: var(--hot-pink); }
.module-card.color-blue   { background: var(--electric); }
.module-card:hover { transform: rotate(0deg) translate(-3px, -3px); }
.module-code {
  font-family: var(--mono); font-size: 14px; letter-spacing: 0.16em;
}
.module-name {
  font-family: var(--display); font-size: clamp(28px, 3vw, 40px);
  letter-spacing: 0.02em; line-height: 0.9;
}
.module-keys {
  margin-top: auto; display: flex; flex-wrap: wrap; gap: 6px;
}
.module-key {
  font-family: var(--mono); font-size: 11px; font-weight: 700;
  background: var(--ink); color: var(--neon-yellow);
  padding: 4px 10px;
  letter-spacing: 0.04em;
}

/* ── Live demo ────────────────────────────────────── */
.live-demo-wrap {
  display: grid; grid-template-columns: 2fr 1fr; gap: 24px;
}
.live-player {
  background: var(--ink); color: var(--neon-yellow);
  padding: 28px;
  border: var(--border-thick);
  position: relative;
}
.live-track-name {
  font-family: var(--display); font-size: clamp(28px, 3vw, 40px);
  letter-spacing: 0.02em;
}
.live-artist {
  font-family: var(--mono); font-size: 12px; color: var(--hot-pink);
  letter-spacing: 0.16em; text-transform: uppercase;
  margin-top: 6px;
}
.live-waveform {
  margin-top: 24px; height: 80px;
  background: var(--bg-deep);
  border: 1px solid var(--neon-yellow);
}
.live-waveform svg { width: 100%; height: 100%; }
.live-waveform path { stroke: var(--neon-yellow); stroke-width: 2; fill: none; }
.live-meta-row {
  display: flex; gap: 32px; margin-top: 18px;
  font-family: var(--mono); font-size: 11px;
}
.live-meta-row .key   { color: var(--electric); }
.live-meta-row .value { color: var(--neon-yellow); margin-left: 6px; }
.live-lyrics {
  background: var(--bg-card); color: var(--ink);
  padding: 24px; border: var(--border-thick);
  font-family: var(--script); font-size: 22px;
  line-height: 1.5;
  display: flex; flex-direction: column; gap: 4px;
  transform: rotate(0.5deg);
}
.live-lyrics-label {
  font-family: var(--mono); font-size: 11px; color: var(--ink);
  letter-spacing: 0.16em;
  background: var(--neon-yellow);
  padding: 4px 10px; align-self: flex-start;
  margin-bottom: 8px;
}

/* ── Track Wall ───────────────────────────────────── */
.tracks-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
}
.track-card {
  border: var(--border-thick);
  background: var(--bg-card);
  display: flex; flex-direction: column;
  cursor: pointer;
  transition: transform .2s, box-shadow .2s;
}
.track-card:hover { transform: translate(-3px, -3px); box-shadow: 6px 6px 0 var(--hot-pink); }
.track-thumb {
  aspect-ratio: 16/9; background-size: cover; background-position: center;
  border-bottom: var(--border-thick);
  position: relative;
}
.track-thumb::after {
  content: '▶'; position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 32px; color: var(--neon-yellow);
  background: rgba(10,10,10,0.4); opacity: 0; transition: opacity .25s;
}
.track-card:hover .track-thumb::after { opacity: 1; }
.track-info { padding: 14px 16px; display: flex; flex-direction: column; gap: 4px; }
.track-artist {
  font-family: var(--mono); font-size: 11px; color: var(--hot-pink);
  letter-spacing: 0.12em; text-transform: uppercase; font-weight: 700;
}
.track-title {
  font-family: var(--display); font-size: 18px;
  letter-spacing: 0.02em;
}
.track-meta {
  display: flex; gap: 14px; margin-top: 4px;
  font-family: var(--mono); font-size: 11px; color: var(--ink); font-weight: 700;
}
.track-meta .genre { background: var(--neon-yellow); padding: 2px 8px; }

/* ── Process — Stamps ─────────────────────────────── */
.process-row {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px;
}
.process-stamp {
  border: var(--border-strong);
  padding: 24px;
  background: var(--bg-card);
  text-align: center;
  position: relative;
  transition: transform .2s;
}
.process-stamp:nth-child(odd) { transform: rotate(-1deg); }
.process-stamp:nth-child(even) { transform: rotate(1deg); }
.process-stamp:hover { transform: rotate(0); }
.process-stamp::before {
  content: ''; position: absolute; top: 12px; right: 12px;
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--hot-pink);
  border: 2px solid var(--ink);
}
.process-stamp-name {
  font-family: var(--display); font-size: clamp(24px, 2.5vw, 32px);
  letter-spacing: 0.04em;
  background: var(--neon-yellow);
  display: inline-block;
  padding: 4px 12px;
  margin-bottom: 14px;
  transform: rotate(-2deg);
  box-shadow: 3px 3px 0 var(--ink);
}
.process-stamp-body {
  font-family: var(--text); font-size: 13px; color: var(--ink);
  font-weight: 700; line-height: 1.5;
}

/* ── Releases ─────────────────────────────────────── */
.releases-wall {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
}
.release-card {
  border: var(--border-thick);
  background: var(--bg-card);
  display: flex; flex-direction: column;
  transition: transform .25s;
}
.release-card:hover { transform: translate(-3px, -3px); }
.release-cover { aspect-ratio: 1; background-size: cover; background-position: center; border-bottom: var(--border-thick); }
.release-info { padding: 14px 16px; display: flex; flex-direction: column; gap: 4px; }
.release-artist {
  font-family: var(--mono); font-size: 11px; color: var(--hot-pink);
  letter-spacing: 0.12em; text-transform: uppercase; font-weight: 700;
}
.release-title {
  font-family: var(--display); font-size: 16px;
  letter-spacing: 0.02em; line-height: 1.1;
}
.release-meta {
  display: flex; gap: 8px; margin-top: 4px;
  font-family: var(--mono); font-size: 10px; color: var(--ink); font-weight: 700;
}

/* ── Press (zine) ─────────────────────────────────── */
.press-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px;
}
.press-card {
  border: var(--border-thick);
  background: var(--bg-card);
  display: grid; grid-template-columns: 1fr 2fr;
  transition: transform .25s;
}
.press-card:hover { transform: translate(-2px, -2px); }
.press-img { aspect-ratio: 1; background-size: cover; background-position: center; border-right: var(--border-thick); }
.press-body { padding: 24px; display: flex; flex-direction: column; gap: 12px; }
.press-source {
  font-family: var(--display); font-size: 16px;
  background: var(--neon-yellow); color: var(--ink);
  padding: 4px 10px; align-self: flex-start;
  transform: rotate(-2deg);
}
.press-quote { font-family: var(--text); font-size: 15px; color: var(--ink); line-height: 1.6; font-weight: 700; }

/* ── Studio strip ─────────────────────────────────── */
.studio-row {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px;
}
.studio-card {
  aspect-ratio: 4/3;
  background-size: cover; background-position: center;
  border: var(--border-thick);
  position: relative;
  transition: transform .25s;
}
.studio-card:hover { transform: scale(1.04); z-index: 2; }
.studio-card-label {
  position: absolute; left: 8px; bottom: 8px; right: 8px;
  background: var(--ink); color: var(--neon-yellow);
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.06em;
  padding: 4px 8px;
}

/* ── CTA — Demo Drop ──────────────────────────────── */
.cta-wrap {
  border: var(--border-strong);
  background: var(--neon-yellow);
  padding: 48px;
}
.cta-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.cta-headline {
  font-family: var(--display);
  font-size: clamp(48px, 7vw, 96px);
  letter-spacing: 0.01em; line-height: 0.85;
  margin-bottom: 16px;
  color: var(--ink);
}
.cta-headline .pink { color: var(--hot-pink); }
.cta-body { font-family: var(--text); font-size: 16px; color: var(--ink); margin-bottom: 24px; font-weight: 700; }
.cta-list {
  font-family: var(--mono); font-size: 13px; color: var(--ink); font-weight: 700;
}
.cta-list-item { padding: 10px 0; border-bottom: 2px solid var(--ink); }
.cta-list-item::before { content: '→ '; }
.cta-form { display: flex; flex-direction: column; gap: 14px; }
.cta-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.field-label {
  display: block;
  font-family: var(--mono); font-size: 11px; color: var(--ink);
  text-transform: uppercase; letter-spacing: 0.16em; margin-bottom: 6px; font-weight: 700;
}
.cta-drop {
  border: 4px dashed var(--ink);
  padding: 24px;
  text-align: center;
  font-family: var(--display); font-size: 22px;
  background: var(--bg-card);
  letter-spacing: 0.04em;
}
.cta-submit {
  width: 100%; padding: 18px;
  background: var(--ink); color: var(--neon-yellow);
  font-family: var(--display); font-weight: 700; font-size: 18px;
  border: var(--border-thick);
  letter-spacing: 0.06em;
  transition: background .2s, transform .15s, box-shadow .15s;
  box-shadow: 5px 5px 0 var(--hot-pink);
}
.cta-submit:hover { background: var(--hot-pink); color: var(--ink); transform: translate(-3px, -3px); box-shadow: 8px 8px 0 var(--ink); }

/* ── Footer ───────────────────────────────────────── */
.footer {
  background: var(--ink); color: var(--neon-yellow);
  padding: 60px 24px 32px;
  margin-top: 60px;
  border-top: var(--border-strong);
}
.footer-inner { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 32px; align-items: start; }
.footer-manifesto {
  font-family: var(--display); font-size: clamp(36px, 4vw, 56px);
  letter-spacing: 0.02em; line-height: 0.9;
  color: var(--neon-yellow);
}
.footer-tagline {
  font-family: var(--mono); font-size: 13px; color: var(--hot-pink);
  margin-top: 12px; letter-spacing: 0.06em;
}
.footer h4 {
  font-family: var(--display); font-size: 18px; color: var(--neon-yellow);
  letter-spacing: 0.04em; margin-bottom: 14px;
}
.footer-list { display: flex; flex-direction: column; gap: 8px; }
.footer-list a, .footer-list span {
  font-family: var(--mono); font-size: 12px; color: var(--neon-yellow); transition: color .2s;
}
.footer-list a:hover { color: var(--hot-pink); }
.footer-meta {
  max-width: 1280px; margin: 32px auto 0; padding: 16px 24px 0;
  border-top: 2px solid var(--neon-yellow);
  display: flex; justify-content: space-between;
  font-family: var(--mono); font-size: 11px; color: var(--neon-yellow); letter-spacing: 0.04em;
  flex-wrap: wrap; gap: 8px;
}

/* ── Cursor scribble (sig #2) ─────────────────────── */
.scribble-canvas { position: fixed; inset: 0; pointer-events: none; z-index: var(--z-cursor); }
@media (pointer: coarse) { .scribble-canvas { display: none; } }

/* ── Splatter (sig #5) ─────────────────────────────── */
.splatter {
  position: fixed; pointer-events: none; z-index: var(--z-cursor);
  width: 80px; height: 80px;
  margin-left: -40px; margin-top: -40px;
  opacity: 0;
  animation: splatOut .55s ease-out;
}
@keyframes splatOut {
  0%   { opacity: 0.85; transform: scale(0.3) rotate(0deg); }
  100% { opacity: 0; transform: scale(2.2) rotate(45deg); }
}

/* ── Drawer ───────────────────────────────────────── */
.drawer {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: min(360px, 88vw);
  background: var(--ink); color: var(--neon-yellow);
  border-left: var(--border-strong);
  z-index: var(--z-overlay);
  transform: translateX(100%);
  transition: transform .35s cubic-bezier(.2,.8,.2,1);
  padding: 80px 28px 28px;
  display: flex; flex-direction: column; gap: 16px;
}
.drawer.open { transform: translateX(0); }
.drawer a {
  font-family: var(--display); font-size: 28px;
  padding: 12px 0; border-bottom: 2px solid var(--neon-yellow);
  color: var(--neon-yellow); letter-spacing: 0.04em;
}
.drawer-back {
  position: fixed; inset: 0; background: rgba(0,0,0,0.7);
  z-index: calc(var(--z-overlay) - 1); opacity: 0; pointer-events: none;
  transition: opacity .3s;
}
.drawer-back.show { opacity: 1; pointer-events: auto; }

/* Drawer X close (T8 brutalist 굵은 박스) */
.drawer-close {
  position: absolute; top: 60px; right: 24px;
  width: 56px; height: 56px;
  background: var(--neon-yellow);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--display); font-size: 32px; font-weight: 700;
  color: var(--ink); line-height: 1; cursor: pointer;
  border: var(--border-strong); box-shadow: 4px 4px 0 var(--ink);
  transition: transform .2s, background .2s; z-index: 2;
}
body.has-banner .drawer-close { top: 80px; }
.drawer-close:hover { background: var(--hot-pink); color: var(--neon-yellow); transform: rotate(90deg); }
.drawer-divider { width: 60%; height: 4px; background: var(--neon-yellow); margin: 16px auto; }
.drawer-user-link { background: var(--neon-yellow); color: var(--ink) !important; padding: 14px 0 !important; text-align: center; font-weight: 700 !important; }

/* ── Reveal ───────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .8s, transform .8s; }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ── Responsive ───────────────────────────────────── */
@media (max-width: 1024px) {
  .manifesto-grid { grid-template-columns: repeat(2, 1fr); }
  .producers-grid { grid-template-columns: repeat(2, 1fr); }
  .modules-grid { grid-template-columns: repeat(2, 1fr); }
  .live-demo-wrap { grid-template-columns: 1fr; }
  .tracks-grid { grid-template-columns: repeat(3, 1fr); }
  .process-row { grid-template-columns: repeat(3, 1fr); }
  .releases-wall { grid-template-columns: repeat(3, 1fr); }
  .press-grid { grid-template-columns: 1fr; }
  .studio-row { grid-template-columns: repeat(3, 1fr); }
  .cta-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .scribble-canvas { display: none; }
  .nav-sq { width: 64px; height: 64px; font-size: 12px; top: 18px; right: 18px; }
  .nav-brand { font-size: 18px; padding: 6px 10px; top: 22px; left: 18px; }
  .now-playing { padding: 10px 12px; font-size: 11px; max-width: 280px; bottom: 18px; right: 18px; }
  .now-playing .play-icon { width: 26px; height: 26px; }
  .hero-big-1, .hero-big-2, .hero-big-3 { transform: rotate(0deg); }
  .hero-big-row { flex-direction: column; align-items: flex-start; gap: 0; }
  .hero-big-2 { margin-left: 0; align-self: flex-start; }
  .hero-waveform { display: none; }
  .manifesto-grid, .producers-grid, .modules-grid, .tracks-grid, .process-row, .releases-wall, .studio-row { grid-template-columns: 1fr; }
  .press-card { grid-template-columns: 1fr; }
  .press-img { aspect-ratio: 16/9; border-right: 0; border-bottom: var(--border-thick); }
  .footer-inner { grid-template-columns: 1fr; gap: 24px; }
}
@media (max-width: 480px) {
  .section { padding: 60px 16px; }
  .sec-num { font-size: 44px; }
  .nav-brand { transform: rotate(0); box-shadow: 2px 2px 0 var(--hot-pink); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .scribble-canvas, .splatter { display: none !important; }
}


/* ===========================================
   RETROFIT v1.27 — motionsites integration
   slug: brutalist
   effects: O, W
   =========================================== */
/* === retrofit v1.27 motionsites mask-reveal (MIT) === */
@supports (animation-timeline: view()) {
  @media (prefers-reduced-motion: no-preference) {
    .section h2, .section h3, [class*="-section"] h2, [class*="-section"] h3, h2[class*="-title"] {
      -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 100%);
      mask-image: linear-gradient(180deg, #000 0%, #000 100%);
      -webkit-mask-size: 200% 100%; mask-size: 200% 100%;
      -webkit-mask-position: 200% 0; mask-position: 200% 0;
      animation: rt-mask-sweep linear forwards;
      animation-timeline: view();
      animation-range: entry 10% entry 70%;
    }
    @keyframes rt-mask-sweep { to { -webkit-mask-position: 0 0; mask-position: 0 0; } }
  }
}/* === retrofit v1.27 motionsites card-stack-3d (MIT) === */
@media (prefers-reduced-motion: no-preference) and (min-width: 769px) {
  .card, [class*="-card"], article {
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s;
    transform-style: preserve-3d;
  }
  .card:hover, [class*="-card"]:hover, article:hover {
    transform: translate3d(0, -6px, 0) rotateX(2deg);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
  }
}