/* ADVRSRY.exe — landing site */
@import url('https://fonts.googleapis.com/css2?family=Special+Elite&family=Black+Ops+One&family=JetBrains+Mono:wght@400;500;700;800&family=Anton&family=DM+Sans:opsz,wght@9..40,400;9..40,500;9..40,600;9..40,700&display=swap');

:root {
  --bg: #050000;
  --bg-2: #0a0001;
  --ink: #f4f0ea;
  --ink-dim: #a39c92;
  --ink-faint: #5c574f;
  --brand: #e10c1c;
  --brand-hot: #ff1f30;
  --brand-deep: #7a0610;
  --line: rgba(255,255,255,0.08);
  --line-strong: rgba(255,255,255,0.18);
  --grid: rgba(225,12,28,0.08);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: 'DM Sans', system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  position: relative;
}
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; color: inherit; }

/* Global grain + scan overlays (fixed, ignore pointer) */
.fx-noise, .fx-scan, .fx-grid, .fx-vignette {
  position: fixed; inset: 0; pointer-events: none; z-index: 100;
}
.fx-noise {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.5 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.55'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
  opacity: 0.18;
}
.fx-scan {
  background-image: repeating-linear-gradient(0deg, rgba(0,0,0,0) 0px, rgba(0,0,0,0) 2px, rgba(0,0,0,0.18) 2px, rgba(0,0,0,0.18) 3px);
  opacity: 0.4;
}
.fx-vignette {
  background: radial-gradient(ellipse at center, transparent 50%, rgba(0,0,0,0.7) 100%);
}
.fx-flicker { animation: flicker 7s infinite; }
@keyframes flicker {
  0%, 96%, 100% { opacity: 0.18; }
  97% { opacity: 0.3; }
  98% { opacity: 0.06; }
  99% { opacity: 0.25; }
}

/* ----- Top frame ----- */
.frame {
  position: fixed; inset: 16px; pointer-events: none; z-index: 50;
  border: 1px solid rgba(255,255,255,0.06);
}
.frame .corner {
  position: absolute; width: 18px; height: 18px;
  border: 1.5px solid var(--brand);
}
.frame .tl { top: -1px; left: -1px; border-right: 0; border-bottom: 0; }
.frame .tr { top: -1px; right: -1px; border-left: 0; border-bottom: 0; }
.frame .bl { bottom: -1px; left: -1px; border-right: 0; border-top: 0; }
.frame .br { bottom: -1px; right: -1px; border-left: 0; border-top: 0; }

/* ----- Nav ----- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 30;
  display: flex; justify-content: space-between; align-items: center;
  padding: 28px 48px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.14em;
  pointer-events: none;
}
.nav > * { pointer-events: auto; }
.nav .l {
  display: flex; align-items: center; gap: 14px;
  color: var(--brand);
  font-weight: 700;
}
.nav .l .pulse {
  width: 8px; height: 8px; border-radius: 50%; background: var(--brand);
  box-shadow: 0 0 12px var(--brand);
  animation: pulse 1.6s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.85); }
}
.nav .r { display: flex; gap: 28px; color: var(--ink-dim); }
.nav .r a { white-space: nowrap; }
.nav .r a:hover { color: var(--brand); }
.nav .now {
  position: absolute; left: 50%; top: 28px; transform: translateX(-50%);
  color: var(--ink-faint);
  font-size: 11px;
}

/* ----- HERO ----- */
.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: end;
  padding: 160px 48px 80px;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('assets/banner.png');
  background-size: cover;
  background-position: center 35%;
}
.hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(5,0,0,0.55) 0%, rgba(5,0,0,0.15) 30%, rgba(5,0,0,0.65) 75%, rgba(5,0,0,1) 100%),
    radial-gradient(ellipse at 80% 50%, rgba(225,12,28,0.18), transparent 60%);
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(90deg, var(--grid) 1px, transparent 1px),
    linear-gradient(0deg, var(--grid) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
  opacity: 0.45;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 60px;
  align-items: end;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: var(--brand);
  letter-spacing: 0.18em;
  margin-bottom: 18px;
  padding: 6px 12px;
  border: 1px solid var(--brand);
  background: rgba(225,12,28,0.06);
  width: fit-content;
}
.kicker .bar { width: 16px; height: 1px; background: var(--brand); }

.hero h1 {
  font-family: 'Special Elite', 'Black Ops One', sans-serif;
  font-weight: 400;
  font-size: clamp(96px, 14vw, 220px);
  line-height: 0.85;
  letter-spacing: -0.02em;
  color: #fff;
  position: relative;
  margin-bottom: 24px;
  text-shadow: 0 8px 40px rgba(0,0,0,0.6);
}
.hero h1 .exe {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.22em;
  color: var(--brand);
  letter-spacing: 0;
  vertical-align: 0.7em;
  margin-left: -0.04em;
  font-weight: 700;
}
.hero h1 .glitch-a, .hero h1 .glitch-b {
  position: absolute; top: 0; left: 0;
  pointer-events: none;
}
.hero h1 .glitch-a { color: var(--brand); mix-blend-mode: screen; animation: gA 5s infinite; }
.hero h1 .glitch-b { color: #00d4ff; mix-blend-mode: screen; animation: gB 5s infinite; }
@keyframes gA {
  0%, 90%, 100% { transform: translate(0,0); opacity: 0; }
  91% { transform: translate(-3px, 2px); opacity: 0.4; }
  93% { transform: translate(4px, -2px); opacity: 0.5; }
  95% { transform: translate(-2px, 1px); opacity: 0.4; }
}
@keyframes gB {
  0%, 88%, 100% { transform: translate(0,0); opacity: 0; }
  89% { transform: translate(3px, -1px); opacity: 0.3; }
  92% { transform: translate(-4px, 2px); opacity: 0.4; }
  94% { transform: translate(2px, -2px); opacity: 0.3; }
}

.tagline {
  font-family: 'Special Elite', sans-serif;
  font-size: clamp(20px, 2.2vw, 30px);
  color: var(--ink);
  line-height: 1.25;
  max-width: 640px;
  margin-bottom: 36px;
  text-wrap: balance;
}
.tagline .red { color: var(--brand); }
.tagline .strike { text-decoration: line-through; opacity: 0.45; }

.hero-ctas {
  display: flex; gap: 14px; align-items: center; flex-wrap: wrap;
}
.cta {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 16px 24px;
  font-family: 'JetBrains Mono', monospace;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: transform .12s, background .12s, color .12s, box-shadow .12s;
}
.cta.primary {
  background: var(--brand);
  color: #000;
  box-shadow: 0 0 0 0 var(--brand);
}
.cta.primary:hover {
  background: var(--brand-hot);
  transform: translate(-2px, -2px);
  box-shadow: 4px 4px 0 0 #000, 4px 4px 0 1px var(--brand);
}
.cta.ghost {
  border: 1px solid var(--line-strong);
  color: #fff;
}
.cta.ghost:hover { border-color: var(--brand); color: var(--brand); }
.cta .arrow { transition: transform .15s; }
.cta:hover .arrow { transform: translateX(4px); }

/* ----- Hero card (terminal) ----- */
.hero-card {
  position: relative;
  background: rgba(0,0,0,0.65);
  border: 1px solid var(--line-strong);
  backdrop-filter: blur(8px);
  padding: 22px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  line-height: 1.7;
  color: var(--ink-dim);
  letter-spacing: 0.02em;
}
.hero-card::before {
  content: "";
  position: absolute; top: -1px; left: -1px; right: -1px; height: 22px;
  background: linear-gradient(90deg, var(--brand) 0%, var(--brand-deep) 100%);
  display: block;
}
.hero-card .title-bar {
  position: absolute; top: 0; left: 0; right: 0; height: 22px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 10px;
  color: #000; font-weight: 800; font-size: 10px; letter-spacing: 0.14em;
  z-index: 1;
}
.hero-card .title-bar .dots { display: flex; gap: 4px; }
.hero-card .title-bar .dots span {
  width: 8px; height: 8px; background: #000; opacity: 0.6;
}
.hero-card .body { padding-top: 18px; }
.hero-card .row { display: flex; justify-content: space-between; padding: 4px 0; border-bottom: 1px dashed rgba(255,255,255,0.06); }
.hero-card .row:last-child { border-bottom: 0; }
.hero-card .k { color: var(--ink-faint); }
.hero-card .v { color: #fff; }
.hero-card .v.brand { color: var(--brand); }
.hero-card .now-playing {
  margin-top: 12px;
  padding: 12px;
  background: rgba(225,12,28,0.06);
  border-left: 2px solid var(--brand);
  color: #fff;
  font-size: 11px;
  display: flex; align-items: center; gap: 10px;
}
.hero-card .now-playing .eq { display: inline-flex; gap: 2px; align-items: flex-end; height: 12px; }
.hero-card .now-playing .eq span { width: 2px; background: var(--brand); animation: eq 0.9s infinite ease-in-out; }
.hero-card .now-playing .eq span:nth-child(2) { animation-delay: 0.15s; }
.hero-card .now-playing .eq span:nth-child(3) { animation-delay: 0.3s; }
.hero-card .now-playing .eq span:nth-child(4) { animation-delay: 0.45s; }
@keyframes eq { 0%, 100% { height: 3px; } 50% { height: 12px; } }
.hero-card .now-playing .title { font-family: 'Special Elite'; font-size: 13px; }
.hero-card .ticker {
  margin-top: 12px;
  font-size: 10px;
  color: var(--ink-faint);
  height: 14px;
  overflow: hidden;
}
.hero-card .ticker span { display: block; animation: ticker 12s steps(6) infinite; }
@keyframes ticker {
  0%, 16% { transform: translateY(0); }
  18%, 32% { transform: translateY(-14px); }
  34%, 48% { transform: translateY(-28px); }
  50%, 64% { transform: translateY(-42px); }
  66%, 80% { transform: translateY(-56px); }
  82%, 100% { transform: translateY(-70px); }
}

.hero-marquee {
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 40px;
  border-top: 1px solid rgba(225,12,28,0.3);
  border-bottom: 1px solid rgba(225,12,28,0.3);
  background: rgba(0,0,0,0.7);
  overflow: hidden;
  display: flex; align-items: center;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: var(--brand);
  letter-spacing: 0.2em;
  white-space: nowrap;
  z-index: 3;
}
.hero-marquee .track {
  display: inline-flex; gap: 48px;
  animation: marquee 30s linear infinite;
  padding-left: 100%;
}
.hero-marquee .track span { display: inline-flex; align-items: center; gap: 16px; }
.hero-marquee .track .diamond { color: #fff; }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-100%); } }

/* ----- Section base ----- */
section.s {
  position: relative;
  padding: 120px 48px;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
}
.s-head {
  display: flex; align-items: baseline; justify-content: space-between;
  border-bottom: 1px solid var(--line);
  padding-bottom: 24px;
  margin-bottom: 48px;
  gap: 24px;
}
.s-head .num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px; color: var(--brand);
  letter-spacing: 0.16em;
}
.s-head h2 {
  font-family: 'Special Elite', sans-serif;
  font-weight: 400;
  font-size: clamp(40px, 5vw, 72px);
  line-height: 0.95;
  letter-spacing: -0.01em;
  flex: 1;
  margin-left: 24px;
}
.s-head .meta {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--ink-faint);
  letter-spacing: 0.14em;
  text-align: right;
  min-width: 240px;
}

/* ----- LISTEN / streaming ----- */
.listen-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.listen-card {
  background: var(--bg-2);
  padding: 32px 28px;
  display: flex; flex-direction: column; gap: 18px;
  transition: background .15s;
  cursor: pointer;
  position: relative;
}
.listen-card:hover { background: #100303; }
.listen-card:hover .listen-arrow { color: var(--brand); transform: translate(4px, -4px); }
.listen-card .logo {
  width: 36px; height: 36px;
  display: grid; place-items: center;
  color: #fff;
}
.listen-card .logo svg { width: 100%; height: 100%; }
.listen-card .name {
  font-family: 'Special Elite', sans-serif;
  font-size: 22px;
  letter-spacing: 0.01em;
}
.listen-card .stats {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--ink-faint);
  letter-spacing: 0.06em;
  margin-top: auto;
}
.listen-card .listen-arrow {
  position: absolute; top: 28px; right: 28px;
  color: var(--ink-faint);
  font-family: 'JetBrains Mono', monospace;
  font-size: 18px;
  transition: color .15s, transform .15s;
}
.listen-card.featured { background: linear-gradient(135deg, #1f0205, #0a0001); }
.listen-card.featured .name { color: var(--brand); }
.listen-card.featured .badge {
  position: absolute; bottom: 28px; right: 28px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  color: var(--brand);
  letter-spacing: 0.14em;
  border: 1px solid var(--brand);
  padding: 3px 6px;
}

/* ----- ALBUM ----- */
.album {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.album-art-wrap {
  position: relative;
  padding: 20px;
  border: 1px solid var(--line);
  background: rgba(0,0,0,0.4);
}
.album-art-wrap::before, .album-art-wrap::after {
  content: ""; position: absolute; width: 28px; height: 28px;
  border: 1.5px solid var(--brand);
}
.album-art-wrap::before { top: -1px; left: -1px; border-right: 0; border-bottom: 0; }
.album-art-wrap::after { bottom: -1px; right: -1px; border-left: 0; border-top: 0; }
.album-art {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  background-image: url('assets/new-creed-machine.png');
  background-size: cover;
  box-shadow: 0 30px 80px rgba(0,0,0,0.7);
  position: relative;
}
.album-art .corners {
  position: absolute; inset: 8px;
  border: 1px dashed rgba(255,255,255,0.1);
  pointer-events: none;
}
.album-coords {
  margin-top: 16px;
  display: flex; justify-content: space-between;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  color: var(--ink-faint);
  letter-spacing: 0.12em;
}

.album-info .kicker { margin-bottom: 14px; }
.album-info h3 {
  font-family: 'Special Elite', sans-serif;
  font-weight: 400;
  font-size: clamp(48px, 6vw, 88px);
  line-height: 0.92;
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}
.album-meta-row {
  display: flex; gap: 24px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--ink-dim);
  letter-spacing: 0.1em;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 22px;
  flex-wrap: wrap;
}
.album-meta-row span { display: flex; align-items: center; gap: 8px; }
.album-meta-row span::before { content: "▸"; color: var(--brand); }

.tracklist { display: flex; flex-direction: column; }
.tl-row {
  display: grid;
  grid-template-columns: 32px 1fr auto;
  gap: 16px;
  padding: 12px 4px;
  align-items: center;
  border-bottom: 1px dashed rgba(255,255,255,0.06);
  transition: padding .15s, background .15s;
  cursor: pointer;
}
.tl-row:hover { padding-left: 14px; background: rgba(225,12,28,0.04); }
.tl-row:hover .tl-num { color: var(--brand); }
.tl-row:hover .tl-name { color: var(--brand); }
.tl-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--ink-faint);
  letter-spacing: 0.08em;
}
.tl-name {
  font-family: 'Special Elite', sans-serif;
  font-size: 18px;
  letter-spacing: 0.01em;
  transition: color .12s;
  display: flex; align-items: center; gap: 10px;
}
.tl-name .ex {
  display: inline-grid; place-items: center;
  width: 14px; height: 14px;
  background: var(--ink-dim); color: #000;
  font-family: 'JetBrains Mono', monospace;
  font-size: 8px; font-weight: 900; border-radius: 1px;
}
.tl-dur {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: var(--ink-faint);
}

/* ----- MANIFESTO ----- */
.manifesto {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.manifesto-text {
  font-family: 'DM Sans', sans-serif;
  font-size: 19px;
  line-height: 1.7;
  color: var(--ink);
  text-wrap: pretty;
  position: relative;
  padding-left: 28px;
  border-left: 2px solid var(--brand);
}
.manifesto-text p { margin-bottom: 22px; }
.manifesto-text p:last-child { margin-bottom: 0; }
.manifesto-text strong { color: #fff; font-weight: 700; background: rgba(225,12,28,0.12); padding: 1px 4px; }
.manifesto-text .first-letter {
  font-family: 'Special Elite', sans-serif;
  font-size: 72px;
  line-height: 0.8;
  color: var(--brand);
  float: left;
  margin-right: 12px;
  margin-top: 4px;
}

.manifesto-side {
  display: flex; flex-direction: column; gap: 24px;
}
.creed-card {
  border: 1px solid var(--line);
  padding: 28px;
  background: rgba(0,0,0,0.4);
  position: relative;
}
.creed-card .num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--brand);
  letter-spacing: 0.16em;
  margin-bottom: 10px;
}
.creed-card .head {
  font-family: 'Special Elite', sans-serif;
  font-size: 22px;
  line-height: 1.1;
  margin-bottom: 8px;
}
.creed-card .body {
  font-size: 14px;
  color: var(--ink-dim);
  line-height: 1.55;
}
.creed-card.attack { border-color: rgba(225,12,28,0.4); }
.creed-card.attack .head { color: var(--brand); }

/* ----- TRANSMISSIONS / signup ----- */
.transmissions {
  background: linear-gradient(180deg, #100204 0%, #050000 100%);
  padding: 80px;
  border: 1px solid var(--line-strong);
  position: relative;
  overflow: hidden;
}
.transmissions::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(90deg, var(--grid) 1px, transparent 1px),
    linear-gradient(0deg, var(--grid) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.5;
  pointer-events: none;
}
.transmissions-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.transmissions h3 {
  font-family: 'Special Elite', sans-serif;
  font-weight: 400;
  font-size: clamp(36px, 4vw, 56px);
  line-height: 0.95;
  margin: 16px 0 18px;
}
.transmissions p {
  color: var(--ink-dim);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 24px;
  max-width: 460px;
}
.signup {
  display: flex;
  border: 1px solid var(--line-strong);
  background: rgba(0,0,0,0.6);
  font-family: 'JetBrains Mono', monospace;
}
.signup .prompt { padding: 0 12px; display: grid; place-items: center; color: var(--brand); font-weight: 700; }
.signup input {
  flex: 1;
  background: transparent;
  border: 0;
  padding: 18px 4px;
  color: #fff;
  font-family: inherit;
  font-size: 14px;
  letter-spacing: 0.04em;
  outline: none;
}
.signup input::placeholder { color: var(--ink-faint); }
.signup button {
  background: var(--brand);
  color: #000;
  padding: 0 22px;
  font-family: inherit;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.14em;
  transition: background .12s;
}
.signup button:hover { background: var(--brand-hot); }
.signup.ok button { background: #0fa958; }
.signup.ok input { color: #0fa958; }
.signup-meta {
  margin-top: 12px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  color: var(--ink-faint);
  letter-spacing: 0.1em;
  display: flex; gap: 12px;
}
.signup-meta .ok-dot { color: var(--brand); }

.transmissions-side {
  position: relative;
}
.transmissions-feed {
  border: 1px solid var(--line);
  background: rgba(0,0,0,0.6);
  padding: 20px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  line-height: 1.7;
  color: var(--ink-dim);
  position: relative;
}
.transmissions-feed .head {
  font-size: 10px;
  color: var(--brand);
  letter-spacing: 0.14em;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
  display: flex; justify-content: space-between;
}
.transmissions-feed .line { padding: 3px 0; }
.transmissions-feed .ts { color: var(--brand); }
.transmissions-feed .ok { color: #0fa958; }
.transmissions-feed .err { color: var(--brand-hot); }

/* ----- FOOTER ----- */
footer.bottom {
  border-top: 1px solid var(--line);
  padding: 48px 48px 32px;
  max-width: 1400px;
  margin: 80px auto 0;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
}
footer.bottom .brand h4 {
  font-family: 'Special Elite', sans-serif;
  font-weight: 400;
  font-size: 36px;
  margin-bottom: 8px;
}
footer.bottom .brand .exe {
  font-family: 'JetBrains Mono', monospace;
  font-size: 14px; color: var(--brand);
}
footer.bottom .brand p {
  font-size: 12px;
  color: var(--ink-faint);
  line-height: 1.6;
  max-width: 320px;
  margin-top: 8px;
}
footer.bottom .col h5 {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--brand);
  letter-spacing: 0.16em;
  margin-bottom: 14px;
}
footer.bottom .col a {
  display: block;
  padding: 4px 0;
  font-size: 13px;
  color: var(--ink-dim);
  transition: color .12s, transform .12s;
}
footer.bottom .col a:hover { color: #fff; transform: translateX(3px); }
.footer-bottom {
  max-width: 1400px;
  margin: 0 auto;
  padding: 24px 48px 48px;
  display: flex; justify-content: space-between; align-items: center;
  border-top: 1px solid var(--line);
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  color: var(--ink-faint);
  letter-spacing: 0.12em;
}

/* ----- Responsive ----- */
@media (max-width: 960px) {
  .hero-content { grid-template-columns: 1fr; }
  .album { grid-template-columns: 1fr; }
  .manifesto { grid-template-columns: 1fr; gap: 48px; }
  .transmissions-inner { grid-template-columns: 1fr; }
  .transmissions { padding: 48px 28px; }
  footer.bottom { grid-template-columns: 1fr 1fr; }
  .nav { padding: 16px 20px; font-size: 10px; gap: 12px; }
  .nav .r { gap: 14px; }
  .nav .now { display: none; }
  section.s { padding: 80px 24px; }
  .hero { padding: 120px 24px 80px; }
}
