:root {
  --bg: #050607;
  --panel: #0a0c0e;
  --panel-2: #0d1012;
  --ink: #e8e8e4;
  --muted: #858a8d;
  --line: rgba(232, 232, 228, .17);
  --red: #ff234f;
  --cyan: #14e7df;
  --shadow-red: rgba(255, 35, 79, .34);
  --shadow-cyan: rgba(20, 231, 223, .28);
  --mono: "IBM Plex Mono", "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--bg); }
body {
  margin: 0;
  background:
    radial-gradient(circle at 82% 9%, rgba(20, 231, 223, .05), transparent 24rem),
    radial-gradient(circle at 16% 32%, rgba(255, 35, 79, .055), transparent 22rem),
    var(--bg);
  color: var(--ink);
  font-family: var(--mono);
  overflow-x: hidden;
}

a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }
::selection { background: var(--red); color: #050607; }

.skip-link {
  position: fixed;
  top: -5rem;
  left: 1rem;
  z-index: 1000;
  padding: .6rem .8rem;
  background: var(--ink);
  color: var(--bg);
}
.skip-link:focus { top: 1rem; }

.noise,
.scanlines {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 90;
}
.noise {
  opacity: .08;
  background-image:
    url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.95' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.72'/%3E%3C/svg%3E");
  mix-blend-mode: screen;
}
.scanlines {
  opacity: .08;
  background: repeating-linear-gradient(to bottom, transparent 0, transparent 3px, rgba(255,255,255,.12) 4px);
}

.edge-wire {
  position: fixed;
  z-index: 70;
  left: 0;
  right: 0;
  height: 18px;
  pointer-events: none;
  opacity: .32;
}
.edge-wire--top {
  top: 0;
  border-top: 1px solid var(--line);
  background: repeating-linear-gradient(112deg, transparent 0 34px, rgba(255,255,255,.25) 35px 36px, transparent 37px 68px);
  transform: skewY(-.2deg);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 80;
  min-height: 68px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
  padding: 0 clamp(1rem, 4vw, 4rem);
  border-bottom: 1px solid var(--line);
  background: rgba(5, 6, 7, .78);
  backdrop-filter: blur(16px) saturate(.8);
}

.brand {
  justify-self: start;
  text-decoration: none;
  text-transform: lowercase;
  letter-spacing: .34em;
  font-size: .82rem;
  font-weight: 500;
}

.nav { display: flex; gap: clamp(.8rem, 2vw, 2rem); }
.nav a {
  color: #aeb2b4;
  text-decoration: none;
  font-size: .68rem;
  letter-spacing: .16em;
  text-transform: lowercase;
  position: relative;
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -.42rem;
  width: 0;
  height: 1px;
  background: var(--cyan);
  transition: width .2s ease;
  box-shadow: 0 0 12px var(--shadow-cyan);
}
.nav a:hover::after,
.nav a:focus-visible::after { width: 100%; }

.signal-dot {
  justify-self: end;
  width: 9px;
  height: 9px;
  border: 0;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 18px var(--red);
  cursor: pointer;
  animation: signalPulse 2.2s steps(2,end) infinite;
}

.hero {
  min-height: 100svh;
  position: relative;
  display: grid;
  align-items: end;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5,6,7,.96) 0%, rgba(5,6,7,.72) 37%, rgba(5,6,7,.22) 72%, rgba(5,6,7,.72) 100%),
    linear-gradient(0deg, var(--bg) 0%, transparent 42%);
  pointer-events: none;
}
.hero-visual {
  position: absolute;
  inset: 0;
  background: url("assets/schxdgy-signal.png") center top / cover no-repeat;
  filter: contrast(1.25) saturate(.68) brightness(.66);
  transform: scale(1.03);
  animation: slowDrift 12s ease-in-out infinite alternate;
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(to bottom, transparent 5%, black 45%, transparent 100%);
}

.hero-copy {
  position: relative;
  z-index: 4;
  width: min(820px, calc(100% - 2rem));
  margin: 0 0 clamp(4rem, 10vh, 8rem) clamp(1rem, 7vw, 7rem);
}
.terminal-line {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  color: #8f9497;
  font-size: clamp(.66rem, 1.3vw, .86rem);
  margin-bottom: 1.1rem;
}
.prompt { color: var(--cyan); text-shadow: 0 0 12px var(--shadow-cyan); }
.cursor { animation: blink .8s steps(1) infinite; }

.eyebrow {
  color: var(--muted);
  font-size: .67rem;
  letter-spacing: .26em;
  text-transform: lowercase;
  margin: 0 0 .75rem;
}
.hero-title {
  display: inline-block;
  margin: 0;
  font-size: clamp(2.2rem, 8vw, 6rem);
  line-height: .9;
  font-weight: 520;
  letter-spacing: .16em;
  text-transform: lowercase;
  text-shadow: 0 0 26px rgba(255,255,255,.06);
}

.glitch,
.glitch-mini,
.glitch-soft { position: relative; }
.glitch::before,
.glitch::after,
.glitch-mini::before,
.glitch-mini::after,
.glitch-soft::before,
.glitch-soft::after {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0;
}
.glitch::before,
.glitch-mini::before,
.glitch-soft::before { color: var(--red); transform: translate(2px,0); }
.glitch::after,
.glitch-mini::after,
.glitch-soft::after { color: var(--cyan); transform: translate(-2px,0); }
.glitch:hover::before,
.glitch:hover::after,
.glitch-mini:hover::before,
.glitch-mini:hover::after,
.glitch-soft:hover::before,
.glitch-soft:hover::after,
.glitch.is-glitching::before,
.glitch.is-glitching::after { opacity: .72; clip-path: inset(28% 0 45% 0); }

.transmission {
  margin: 2rem 0 1.6rem;
  padding-left: 1rem;
  border-left: 1px solid var(--red);
  width: fit-content;
}
.transmission-label {
  color: #7f8588;
  letter-spacing: .14em;
  font-size: .65rem;
}
.transmission p {
  margin: .45rem 0 0;
  font-size: clamp(1rem, 2vw, 1.35rem);
  letter-spacing: .06em;
}

.cta {
  display: inline-flex;
  align-items: center;
  gap: .9rem;
  text-decoration: none;
  color: var(--ink);
  border: 1px solid rgba(255,255,255,.22);
  background: rgba(5,6,7,.55);
  padding: .9rem 1rem;
  font-size: .8rem;
  letter-spacing: .12em;
  backdrop-filter: blur(7px);
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.cta:hover,
.cta:focus-visible {
  transform: translate(3px,-2px);
  border-color: var(--red);
  box-shadow: -8px 8px 0 rgba(255,35,79,.08), 0 0 24px rgba(255,35,79,.09);
}

.hero-meta {
  position: absolute;
  z-index: 4;
  right: clamp(1rem, 4vw, 4rem);
  bottom: clamp(2rem, 5vw, 4rem);
  display: grid;
  text-align: right;
  gap: .35rem;
  color: #73797c;
  font-size: .58rem;
  letter-spacing: .15em;
}

.droplets i {
  position: absolute;
  z-index: 5;
  top: -90px;
  width: 3px;
  height: 24px;
  border-radius: 80% 80% 60% 60%;
  background: linear-gradient(transparent, rgba(255,255,255,.75));
  filter: drop-shadow(0 0 5px rgba(255,255,255,.25));
  animation: fall 6.8s linear infinite;
}
.droplets i:nth-child(1) { left: 72%; animation-delay: -1.2s; }
.droplets i:nth-child(2) { left: 83%; animation-delay: -3.8s; height: 40px; }
.droplets i:nth-child(3) { left: 57%; animation-delay: -5.4s; }
.droplets i:nth-child(4) { left: 92%; animation-delay: -2.7s; height: 31px; }

.section-code {
  color: #5f6669;
  font-size: .62rem;
  letter-spacing: .16em;
  margin-bottom: 1rem;
}
.split-section,
.watch,
.about,
.send {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  padding: clamp(5rem, 10vw, 9rem) 0;
}
.split-section {
  display: grid;
  grid-template-columns: 1.45fr .75fr;
  gap: 1rem;
}
.split-section > .section-code { grid-column: 1 / -1; }

.track-card,
.fragment-panel {
  min-height: 320px;
  border: 1px solid var(--line);
  background: rgba(9,11,13,.78);
  position: relative;
  overflow: hidden;
}
.track-card { display: grid; grid-template-columns: minmax(220px,.7fr) 1.3fr; }
.track-art {
  min-height: 320px;
  background:
    linear-gradient(135deg, rgba(255,35,79,.18), transparent 32%),
    url("assets/schxdgy-signal.png") 60% 76% / 145% auto no-repeat;
  filter: grayscale(.25) contrast(1.15);
  border-right: 1px solid var(--line);
}
.track-info { padding: clamp(1.4rem, 4vw, 3.2rem); align-self: center; }
.track-info h2 { margin: .5rem 0 1.2rem; font-size: clamp(1.4rem, 3.4vw, 3rem); font-weight: 520; letter-spacing: .03em; }
.micro { margin: 0; color: var(--muted); font-size: .63rem; letter-spacing: .16em; text-transform: lowercase; }
.neon-red { color: var(--red); text-shadow: 0 0 14px var(--shadow-red); }
.neon-cyan { color: var(--cyan); text-shadow: 0 0 14px var(--shadow-cyan); }

.waveform {
  height: 54px;
  display: flex;
  align-items: center;
  gap: 4px;
  margin: 1.2rem 0;
  overflow: hidden;
}
.waveform span {
  width: 3px;
  height: calc(10px + (var(--h, 3) * 5px));
  background: #cfd0cd;
  opacity: .55;
  animation: wave 1.2s ease-in-out infinite alternate;
}
.waveform span:nth-child(3n) { --h: 7; animation-delay: -.4s; }
.waveform span:nth-child(4n) { --h: 4; animation-delay: -.7s; background: var(--red); }
.waveform span:nth-child(5n) { --h: 8; animation-delay: -.2s; }
.waveform span:nth-child(7n) { --h: 2; background: var(--cyan); }

.track-console {
  position: relative;
  margin-top: 1.35rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(232, 232, 228, .11);
}

.track-console::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  width: 72px;
  height: 1px;
  background: linear-gradient(90deg, var(--red), transparent);
  box-shadow: 0 0 12px var(--shadow-red);
}

.track-status-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 22px;
}

.player-status {
  margin: 0;
  color: #757b7e;
  font-size: .56rem;
  letter-spacing: .16em;
  text-transform: lowercase;
}

.track-code {
  color: #41474a;
  font-size: .48rem;
  letter-spacing: .17em;
  white-space: nowrap;
}

.track-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .65rem;
  margin-top: .8rem;
}

.text-link,
.player-toggle {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: .52rem .72rem;
  border: 1px solid rgba(232, 232, 228, .13);
  background: rgba(5, 6, 7, .38);
  color: #aeb3b4;
  font-family: var(--mono);
  font-size: .6rem;
  line-height: 1;
  letter-spacing: .11em;
  text-decoration: none;
  text-transform: lowercase;
  cursor: pointer;
  overflow: hidden;
  transition:
    color .18s ease,
    border-color .18s ease,
    background .18s ease,
    transform .18s ease,
    box-shadow .18s ease;
}

.text-link::before,
.player-toggle::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(20, 231, 223, .055),
    transparent
  );
  transform: translateX(-115%);
  transition: transform .32s ease;
  pointer-events: none;
}

.text-link:hover::before,
.text-link:focus-visible::before,
.player-toggle:hover::before,
.player-toggle:focus-visible::before {
  transform: translateX(115%);
}

.text-link:hover,
.text-link:focus-visible {
  color: var(--ink);
  border-color: rgba(20, 231, 223, .42);
  background: rgba(20, 231, 223, .025);
  box-shadow:
    inset 2px 0 0 rgba(20, 231, 223, .72),
    0 0 18px rgba(20, 231, 223, .045);
  transform: translateY(-1px);
}

.player-toggle:hover,
.player-toggle:focus-visible {
  color: var(--ink);
  border-color: rgba(255, 35, 79, .42);
  background: rgba(255, 35, 79, .025);
  box-shadow:
    inset 2px 0 0 rgba(255, 35, 79, .72),
    0 0 18px rgba(255, 35, 79, .05);
  transform: translateY(-1px);
}

.player-toggle.is-open {
  color: var(--red);
  border-color: rgba(255, 35, 79, .36);
}

.track-placeholder {
  margin: .9rem 0 0;
  color: #505659;
  font-size: .58rem;
  letter-spacing: .08em;
}

.soundcloud-shell {
  position: relative;
  margin: .85rem 0 0;
  padding: .55rem;
  border: 1px solid rgba(232, 232, 228, .10);
  background:
    linear-gradient(
      135deg,
      rgba(255, 35, 79, .025),
      transparent 38%,
      rgba(20, 231, 223, .018)
    ),
    rgba(2, 3, 3, .72);
  box-shadow:
    inset 2px 0 0 rgba(255, 35, 79, .56),
    inset -1px 0 0 rgba(20, 231, 223, .15),
    0 12px 36px rgba(0, 0, 0, .22);
  overflow: hidden;
  animation: playerWake .22s ease both;
}

.soundcloud-shell::before {
  content: "SC_STREAM // ACTIVE";
  position: absolute;
  z-index: 3;
  right: .7rem;
  top: .35rem;
  color: rgba(232, 232, 228, .18);
  font-size: .42rem;
  letter-spacing: .14em;
  pointer-events: none;
}

.soundcloud-shell::after {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0;
  pointer-events: none;
  background:
    repeating-linear-gradient(
      180deg,
      transparent 0 4px,
      rgba(255, 255, 255, .012) 5px
    ),
    linear-gradient(
      180deg,
      rgba(5, 6, 7, .02),
      rgba(5, 6, 7, .13)
    );
}

.soundcloud-shell iframe {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 120px;
  border: 0;
  filter:
    grayscale(.68)
    contrast(1.12)
    brightness(.76)
    saturate(.65);
  opacity: .88;
}

@keyframes playerWake {
  from {
    opacity: 0;
    transform: translateY(-4px);
    clip-path: inset(0 100% 0 0);
  }

  35% {
    opacity: .7;
  }

  to {
    opacity: 1;
    transform: translateY(0);
    clip-path: inset(0 0 0 0);
  }
}
  
.fragment-panel {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background:
    linear-gradient(180deg, rgba(5,6,7,.4), rgba(5,6,7,.88)),
    url("assets/schxdgy-signal.png") 17% 78% / 220% auto no-repeat;
}
.fragment-copy { margin: 0; color: #b8bcbd; line-height: 1.55; letter-spacing: .1em; }
.fragment-copy strong { color: var(--ink); font-weight: 500; }
.coord { color: #5a6063; font-size: .58rem; }
.cyan-slit {
  position: absolute;
  top: 22%; right: 11%;
  width: 2px; height: 34%;
  background: var(--cyan);
  box-shadow: 0 0 16px var(--cyan);
  animation: slitJump 4.8s steps(1) infinite;
}

.watch { padding-top: 0; }
.watch-frame {
  min-height: 620px;
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
  background: #020303;
}
.watch-image {
  position: absolute;
  inset: 0;
  background: url("assets/schxdgy-signal.png") center 8% / cover no-repeat;
  filter: grayscale(.2) contrast(1.28) brightness(.62);
  transition: transform .7s cubic-bezier(.2,.8,.1,1), filter .25s ease;
}
.watch-frame:hover .watch-image { transform: scale(1.045); filter: grayscale(.45) contrast(1.35) brightness(.72); }
.watch-overlay {
  position: absolute;
  left: clamp(1rem, 4vw, 3.2rem);
  bottom: clamp(1rem, 4vw, 3rem);
  z-index: 4;
  max-width: 580px;
  background: rgba(3,4,5,.78);
  border-left: 1px solid var(--cyan);
  padding: 1.3rem 1.5rem;
  backdrop-filter: blur(8px);
}
.watch-overlay h2 { margin: 0 0 .7rem; font-weight: 500; font-size: clamp(1.3rem, 3vw, 2.6rem); }
.watch-overlay p { color: #92989a; margin: 0 0 1rem; }
.frame-button {
  background: transparent;
  color: var(--red);
  border: 0;
  border-bottom: 1px solid rgba(255,35,79,.38);
  padding: .2rem 0;
  cursor: pointer;
  font-size: .7rem;
  letter-spacing: .14em;
}

.razor {
  position: absolute;
  right: -5%;
  top: 18%;
  width: 50%;
  height: 2px;
  background: rgba(220,225,226,.35);
  transform: rotate(-14deg);
  box-shadow: 0 0 8px rgba(255,255,255,.15);
}
.razor span {
  position: absolute;
  top: -8px;
  width: 1px;
  height: 18px;
  background: rgba(230,232,232,.45);
  transform: rotate(48deg);
}
.razor span:nth-child(1) { left: 8%; }
.razor span:nth-child(2) { left: 28%; }
.razor span:nth-child(3) { left: 49%; }
.razor span:nth-child(4) { left: 71%; }
.razor span:nth-child(5) { left: 92%; }

.about {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: end;
}
.about h2 { margin: .6rem 0 0; font-size: clamp(2rem, 5vw, 4.7rem); font-weight: 500; letter-spacing: -.045em; }
.about-copy { color: #9ca1a3; line-height: 1.8; max-width: 44ch; margin: 0; }
.split-line {
  width: 100%;
  height: 1px;
  margin-top: 4rem;
  background: linear-gradient(90deg, transparent, var(--red) 17%, rgba(255,255,255,.22) 18% 64%, var(--cyan) 65%, transparent);
}

.send { min-height: 72svh; display: grid; align-content: center; position: relative; }
.send::before {
  content: "";
  position: absolute;
  width: 150px;
  height: 150px;
  right: 5%;
  top: 24%;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 51% 49% 62% 38%;
  box-shadow: inset 0 0 40px rgba(20,231,223,.03), 0 0 70px rgba(20,231,223,.02);
  transform: rotate(18deg);
}
.send-inner { max-width: 900px; }
.send h2 { margin: .6rem 0 1rem; font-size: clamp(3rem, 10vw, 8.5rem); line-height: .86; font-weight: 480; letter-spacing: -.07em; }
.send-inner > p:not(.micro) { color: #888e91; max-width: 62ch; line-height: 1.65; }
.email {
  display: inline-block;
  margin-top: 1.6rem;
  color: var(--ink);
  text-decoration: none;
  font-size: clamp(1rem, 3.3vw, 2.8rem);
  letter-spacing: .025em;
  border-bottom: 1px solid rgba(255,255,255,.2);
  padding-bottom: .35rem;
}

.footer {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 1.4rem 0 2.4rem;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 1.5rem;
  align-items: center;
  color: #62696c;
  font-size: .6rem;
  letter-spacing: .12em;
}
.socials { display: flex; gap: 1rem; flex-wrap: wrap; }
.socials a { text-decoration: none; color: #8c9294; }
.socials a:hover { color: var(--cyan); }
.secret { border: 0; background: transparent; color: #4f5558; cursor: pointer; }
.secret:hover { color: var(--red); }

.secret-message {
  position: fixed;
  z-index: 120;
  left: 50%;
  bottom: 1.2rem;
  transform: translate(-50%, 160%);
  padding: .75rem 1rem;
  background: #050607;
  border: 1px solid var(--cyan);
  box-shadow: 0 0 28px rgba(20,231,223,.1);
  color: #c8cecf;
  font-size: .7rem;
  transition: transform .28s ease;
}
.secret-message.show { transform: translate(-50%, 0); }

.pointer-static {
  position: fixed;
  z-index: 110;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  pointer-events: none;
  background: var(--cyan);
  box-shadow: 0 0 14px var(--cyan);
  animation: pointerFade .65s forwards;
}

@keyframes blink { 50% { opacity: 0; } }
@keyframes signalPulse { 50% { opacity: .35; box-shadow: 0 0 4px var(--red); } }
@keyframes slowDrift { from { transform: scale(1.03) translate3d(0,0,0); } to { transform: scale(1.08) translate3d(-1.1%,.8%,0); } }
@keyframes fall { from { transform: translateY(-100px); opacity: 0; } 15% { opacity: .65; } to { transform: translateY(110vh); opacity: 0; } }
@keyframes wave { to { transform: scaleY(.35); opacity: .9; } }
@keyframes slitJump { 0%, 89%, 100% { transform: translateY(0); opacity: .7; } 90% { transform: translateY(80px); opacity: 1; } 92% { transform: translateY(-25px); } }
@keyframes pointerFade { to { opacity: 0; transform: scale(3.5); } }

@media (max-width: 820px) {
  .site-header { grid-template-columns: 1fr auto; min-height: 60px; }
  .nav { display: none; }
  .signal-dot { grid-column: 2; }
  .hero-copy { margin-left: 1rem; margin-bottom: 5rem; }
  .hero-title { font-size: clamp(2.5rem, 15vw, 5rem); letter-spacing: .09em; }
  .hero-meta { display: none; }
  .split-section { grid-template-columns: 1fr; }
  .track-card { grid-template-columns: 1fr; }
  .track-art { min-height: 240px; border-right: 0; border-bottom: 1px solid var(--line); }
  .fragment-panel { min-height: 240px; }
  .watch-frame { min-height: 68svh; }
  .about-grid { grid-template-columns: 1fr; gap: 1.8rem; }
  .footer { grid-template-columns: 1fr; }
}

@media (max-width: 520px) {
  .track-status-row {
  align-items: flex-start;
}

.track-code {
  font-size: .43rem;
}

.track-actions {
  gap: .5rem;
}

.text-link,
.player-toggle {
  min-height: 32px;
  padding: .5rem .62rem;
  font-size: .55rem;
}

.soundcloud-shell {
  margin-top: .7rem;
  padding: .4rem;
}

.soundcloud-shell iframe {
  height: 116px;
}
  .hero::after { background: linear-gradient(0deg, var(--bg), rgba(5,6,7,.46) 52%, rgba(5,6,7,.2)); }
  .hero-visual { background-position: 58% top; }
  .hero-copy { width: calc(100% - 2rem); }
  .terminal-line { max-width: 92%; }
  .transmission p { font-size: .95rem; }
  .track-info { padding: 1.3rem; }
  .watch-overlay { right: 1rem; }
  .send h2 { font-size: clamp(3.6rem, 21vw, 6.4rem); }
  .email { font-size: clamp(.86rem, 5.1vw, 1.3rem); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
}
