:root {
  --bg: #020100;
  --panel: rgba(8, 6, 4, 0.78);
  --panel-strong: rgba(8, 6, 4, 0.94);
  --line: rgba(255, 255, 255, 0.14);
  --text: #f3eadb;
  --muted: #a89a88;
  --green: #a8ff5f;
  --red: #ff2b12;
  --amber: #b9793c;
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.62);
  --release-progress: 0%;
  font-family: "Bebas Neue", "Arial Narrow", Impact, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

body:not(.site-entered) {
  overflow: hidden;
}

body:not(.site-entered) .site-nav nav,
body:not(.site-entered) .radio-dock,
body:not(.site-entered) main > section:not(.hero),
body:not(.site-entered) .site-footer {
  display: none;
}

body.teaser-mode.site-entered .site-nav nav,
body.teaser-mode.site-entered main > section:not(.hero):not(.game-section),
body.teaser-mode.site-entered .site-footer {
  display: none;
}

body.teaser-mode.site-entered .hero {
  min-height: 100svh;
}

body::after {
  animation: grain 1.4s steps(2) infinite;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 100% 3px, 4px 100%;
  content: "";
  inset: 0;
  opacity: 0.16;
  pointer-events: none;
  position: fixed;
  z-index: 100;
}

@keyframes grain {
  100% {
    transform: translate(-1px, 1px);
  }
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.site-nav {
  align-items: center;
  backdrop-filter: blur(18px);
  background: rgba(0, 0, 0, 0.62);
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 24px;
  justify-content: space-between;
  left: 0;
  padding: 18px clamp(18px, 4vw, 56px);
  position: fixed;
  right: 0;
  top: 0;
  z-index: 20;
}

.brand-mark,
.site-nav a,
.button,
.eyebrow,
.episode-kicker,
.release-window {
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.brand-mark {
  font-size: 18px;
}

.site-nav nav {
  display: flex;
  gap: clamp(12px, 2.2vw, 30px);
}

.site-nav nav a {
  color: rgba(244, 241, 234, 0.78);
  font-size: 14px;
  transition: color 180ms ease;
  white-space: nowrap;
}

.site-nav nav a:hover {
  color: var(--text);
}

.mail-link {
  border: 1px solid rgba(255, 43, 18, 0.52);
  padding: 8px 12px;
  position: relative;
}

.mail-link::after {
  background: var(--red);
  content: "";
  height: 1px;
  left: 12px;
  position: absolute;
  right: 12px;
  top: 50%;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.mail-link:hover::after {
  transform: scaleX(1);
}

.cursor-light {
  background: radial-gradient(circle, rgba(244, 241, 234, 0.12), transparent 220px);
  height: 420px;
  left: var(--cursor-x, 50vw);
  mix-blend-mode: screen;
  opacity: 0.65;
  pointer-events: none;
  position: fixed;
  top: var(--cursor-y, 50vh);
  transform: translate(-50%, -50%);
  width: 420px;
  z-index: 4;
}

.boot-layer {
  align-items: center;
  animation: bootOut 0.7s ease 0.65s forwards;
  background: #000;
  display: grid;
  gap: 12px;
  inset: 0;
  justify-items: center;
  position: fixed;
  z-index: 80;
}

.boot-layer span,
.boot-layer strong {
  color: var(--amber);
  font-size: 12px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
}

.boot-layer strong {
  color: var(--text);
  font-size: clamp(28px, 6vw, 72px);
}

@keyframes bootOut {
  to {
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
  }
}

.radio-dock {
  align-items: center;
  background: rgba(0, 0, 0, 0.72);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  display: grid;
  gap: 13px;
  grid-template-columns: 46px minmax(0, 1fr);
  left: 22px;
  max-width: min(390px, calc(100vw - 44px));
  padding: 12px;
  position: fixed;
  top: 84px;
  z-index: 30;
}

.radio-dock p,
.radio-dock strong,
.radio-dock span {
  display: block;
  margin: 0;
  min-width: 0;
}

.radio-dock p {
  color: var(--red);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.2em;
}

.radio-dock strong {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.radio-dock span {
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.08em;
  margin-top: 4px;
  text-transform: uppercase;
}

.radio-toggle {
  align-items: center;
  aspect-ratio: 1;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(244, 241, 234, 0.3);
  color: var(--text);
  cursor: pointer;
  display: grid;
  font-size: 16px;
  justify-content: center;
}

.radio-dock.playing .radio-toggle {
  border-color: var(--green);
  box-shadow: 0 0 22px rgba(73, 255, 152, 0.28);
}

.hero {
  align-items: center;
  display: grid;
  min-height: 100svh;
  overflow: hidden;
  padding: 96px clamp(18px, 4vw, 64px) 44px;
  position: relative;
}

.hero::before {
  background: linear-gradient(90deg, transparent, rgba(244, 241, 234, 0.18), transparent);
  content: "";
  height: 1px;
  left: -40%;
  opacity: 0.4;
  position: absolute;
  top: 54%;
  transform: rotate(-10deg);
  width: 180%;
  z-index: 2;
}

.hero-bg,
.hero-vignette {
  inset: 0;
  position: absolute;
}

.hero-bg {
  background:
    radial-gradient(circle at 18% 54%, rgba(168, 255, 95, 0.36), transparent 34%),
    radial-gradient(circle at 84% 50%, rgba(255, 43, 18, 0.42), transparent 38%),
    linear-gradient(90deg, rgba(4, 22, 11, 0.3), rgba(0, 0, 0, 0.42) 48%, rgba(36, 4, 0, 0.34)),
    url("assets/hero-split-cinematic.png") center / cover;
  filter: saturate(1.28) contrast(1.12) brightness(1.08);
  transform: scale(1.02);
}

.hero-vignette {
  background:
    radial-gradient(circle at center, transparent 0 24%, rgba(0, 0, 0, 0.44) 68%, #000 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.48), transparent 18%, transparent 74%, rgba(0, 0, 0, 0.62)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 90px);
}

.episode-panel,
.countdown-card,
.route-strip {
  position: relative;
  z-index: 2;
}

.episode-panel {
  border-top: 1px solid var(--line);
  max-width: 430px;
  padding-top: 16px;
  position: absolute;
  top: 42vh;
}

.episode-left {
  left: clamp(18px, 5vw, 74px);
}

.episode-right {
  right: clamp(18px, 5vw, 74px);
  text-align: right;
}

.episode-panel h2,
.section h2,
.countdown-card h1 {
  font-family: "Bebas Neue", Impact, "Arial Narrow", sans-serif;
  font-size: clamp(42px, 8vw, 112px);
  font-stretch: condensed;
  font-weight: 400;
  letter-spacing: 0.12em;
  line-height: 0.86;
  margin: 0;
  text-transform: uppercase;
}

.episode-panel h2 {
  font-size: clamp(48px, 5.9vw, 86px);
}

.episode-panel p {
  color: var(--muted);
  font-size: clamp(13px, 1.1vw, 17px);
  letter-spacing: 0.22em;
  line-height: 1.8;
  margin: 18px 0 0;
  max-width: 330px;
  text-transform: uppercase;
}

.episode-left .episode-kicker,
.episode-left h2 {
  color: #dfffe9;
  text-shadow: 0 0 30px rgba(73, 255, 152, 0.28);
}

.episode-right .episode-kicker,
.episode-right h2 {
  color: #ffe2d5;
  text-shadow: 0 0 30px rgba(255, 74, 34, 0.32);
}

.episode-kicker,
.release-window,
.eyebrow,
.project-phase,
.map-tag {
  color: var(--amber);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.28em;
  margin: 0 0 12px;
  text-transform: uppercase;
}

.project-phase {
  color: var(--green);
  display: inline-block;
  margin-top: 22px;
}

.episode-right .project-phase {
  color: var(--red);
}

.map-tag {
  border: 1px solid currentColor;
  display: inline-block;
  font-size: 9px;
  margin-top: 22px;
  padding: 7px 10px;
}

.start-tag {
  color: var(--green);
  margin-left: 38%;
}

.destination-tag {
  color: var(--red);
  margin-right: 32%;
}

.countdown-card {
  justify-self: center;
  max-width: 760px;
  position: absolute;
  top: 12vh;
  text-align: center;
}

.countdown-card h1 {
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

.countdown {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(4, minmax(70px, 1fr));
  margin: 0 auto;
  max-width: 620px;
}

.countdown div {
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: 0;
  position: relative;
}

.countdown div:not(:last-child)::after {
  color: rgba(244, 241, 234, 0.78);
  content: ":";
  font-size: clamp(28px, 4vw, 62px);
  position: absolute;
  right: -16px;
  top: 0;
}

.countdown strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(38px, 5vw, 68px);
  font-weight: 400;
  line-height: 1;
}

.countdown span {
  color: var(--muted);
  display: block;
  font-size: 11px;
  letter-spacing: 0.14em;
  margin-top: 9px;
  text-transform: uppercase;
}

.button,
.enter-button {
  background: transparent;
  border: 1px solid rgba(244, 241, 234, 0.32);
  color: var(--text);
  cursor: pointer;
  display: inline-flex;
  font-size: 12px;
  justify-content: center;
  min-height: 46px;
  padding: 15px 20px;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.button:hover,
.enter-button:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(244, 241, 234, 0.72);
  transform: translateY(-2px);
}

.primary {
  background: var(--text);
  border-color: var(--text);
  color: #050505;
}

.route-strip {
  align-items: center;
  bottom: 36px;
  display: grid;
  gap: 14px;
  grid-template-columns: minmax(180px, 420px);
  left: 50%;
  justify-items: center;
  max-width: min(86vw, 420px);
  position: absolute;
  transform: translateX(-50%);
  width: 100%;
}

.route-strip span {
  color: rgba(244, 241, 234, 0.78);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
}

.route-line {
  background: linear-gradient(90deg, rgba(73, 255, 152, 0.5), rgba(255, 255, 255, 0.4), rgba(255, 74, 34, 0.5));
  height: 1px;
  position: relative;
  width: 100%;
}

.route-line i {
  background: var(--text);
  border: 1px solid rgba(0, 0, 0, 0.65);
  border-radius: 2px 5px 2px 2px;
  box-shadow: 0 0 18px var(--green), 0 0 28px var(--red);
  height: 10px;
  left: var(--release-progress);
  position: absolute;
  top: -5px;
  transform: translateX(-50%);
  transition: left 900ms ease;
  width: 20px;
}

.route-line i::before,
.route-line i::after {
  background: #050505;
  border-radius: 50%;
  bottom: -4px;
  content: "";
  height: 5px;
  position: absolute;
  width: 5px;
}

.route-line i::before {
  left: 3px;
}

.route-line i::after {
  right: 3px;
}

.route-progress {
  display: grid;
  gap: 6px;
  grid-template-columns: repeat(10, 1fr);
  width: min(100%, 320px);
}

.route-progress b {
  background: rgba(244, 241, 234, 0.22);
  display: block;
  height: 4px;
}

.route-progress b:nth-child(-n + 3) {
  background: var(--green);
  box-shadow: 0 0 12px rgba(73, 255, 152, 0.6);
}

.route-progress b:nth-child(4),
.route-progress b:nth-child(5) {
  background: var(--amber);
}

.route-progress b:nth-child(6) {
  background: var(--red);
  box-shadow: 0 0 12px rgba(255, 74, 34, 0.6);
}

.enter-button {
  min-width: 288px;
}

.enter-button em {
  color: var(--red);
  font-style: normal;
  margin-left: 18px;
}

.signal-button {
  background: rgba(0, 0, 0, 0.46);
  border: 1px solid rgba(244, 241, 234, 0.24);
  bottom: 28vh;
  color: rgba(244, 241, 234, 0.72);
  cursor: pointer;
  font-size: 10px;
  font-weight: 900;
  left: 50%;
  letter-spacing: 0.2em;
  padding: 9px 12px;
  position: absolute;
  text-transform: uppercase;
  transform: translateX(-50%);
  z-index: 3;
}

.signal-button:hover {
  border-color: var(--amber);
  color: var(--text);
}

.episode-panel,
.work-card,
.card {
  transition: border-color 180ms ease, filter 180ms ease, transform 180ms ease;
}

.episode-panel:hover,
.work-card:hover,
.card:hover {
  border-color: rgba(244, 241, 234, 0.36);
  filter: brightness(1.08);
  transform: translateY(-3px);
}

.signal-flash .hero-bg {
  animation: signalPulse 560ms ease;
}

@keyframes signalPulse {
  50% {
    filter: saturate(1.5) contrast(1.24) brightness(1.14);
  }
}

@keyframes travel {
  0%,
  100% {
    left: 0;
  }
  50% {
    left: calc(100% - 9px);
  }
}

.game-section {
  background:
    radial-gradient(circle at 40% 0, rgba(168, 255, 95, 0.08), transparent 360px),
    radial-gradient(circle at 72% 20%, rgba(255, 43, 18, 0.09), transparent 420px),
    #020100;
}

.game-shell {
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(280px, 420px) minmax(220px, 1fr);
}

#snake-game {
  aspect-ratio: 1;
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    rgba(0, 0, 0, 0.72);
  background-size: 24px 24px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  max-width: 100%;
  touch-action: none;
  user-select: none;
  width: 420px;
}

#snake-game.is-locked {
  filter: grayscale(0.85) brightness(0.45);
  opacity: 0.68;
}

.game-panel {
  align-content: start;
  background: var(--panel);
  border: 1px solid var(--line);
  display: grid;
  gap: 16px;
  padding: clamp(20px, 3vw, 34px);
}

.challenge-card {
  background:
    linear-gradient(135deg, rgba(168, 255, 95, 0.12), transparent 42%),
    linear-gradient(315deg, rgba(255, 43, 18, 0.16), transparent 48%),
    rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(244, 234, 219, 0.16);
  display: grid;
  gap: 16px;
  grid-template-columns: minmax(96px, 140px) 1fr;
  padding: 18px;
}

.challenge-cover {
  aspect-ratio: 1;
  border: 1px solid rgba(244, 234, 219, 0.18);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.42), 0 0 24px rgba(244, 234, 219, 0.08);
  display: block;
  overflow: hidden;
  width: 100%;
}

.challenge-cover img {
  display: block;
  height: auto;
  object-fit: cover;
  width: 100%;
}

.challenge-copy {
  align-content: center;
  display: grid;
  gap: 12px;
}

.challenge-card h3 {
  color: var(--text);
  font-family: "Bebas Neue", "Arial Narrow", Arial, sans-serif;
  font-size: clamp(32px, 5vw, 54px);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 0.94;
  margin: 0;
}

.challenge-card.is-unlocked .challenge-deadline::after {
  color: var(--green);
  content: " / Game unlocked";
}

.challenge-card small {
  color: rgba(244, 234, 219, 0.56);
  font-family: "Helvetica Neue", Arial, sans-serif;
  line-height: 1.45;
}

.challenge-deadline,
.score-status {
  color: var(--red);
  display: block;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 11px;
  letter-spacing: 0.14em;
  line-height: 1.45;
  text-transform: uppercase;
}

.button-row.compact {
  margin-top: 6px;
}

.button:disabled {
  cursor: not-allowed;
  opacity: 0.45;
}

[hidden] {
  display: none !important;
}


.game-panel strong {
  color: var(--green);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(54px, 8vw, 112px);
  font-weight: 400;
  line-height: 0.9;
}

.game-panel p {
  color: var(--muted);
  font-family: "Helvetica Neue", Arial, sans-serif;
  line-height: 1.55;
  margin: 0;
  max-width: 420px;
}

.score-name {
  color: var(--muted);
  display: grid;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 12px;
  gap: 8px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.score-name input {
  background: rgba(0, 0, 0, 0.34);
  border: 1px solid rgba(244, 234, 219, 0.18);
  color: var(--text);
  font: inherit;
  letter-spacing: 0;
  min-height: 46px;
  padding: 0 14px;
  text-transform: none;
}

.leaderboard {
  border-top: 1px solid rgba(244, 234, 219, 0.12);
  display: grid;
  gap: 12px;
  padding-top: 16px;
}

.leaderboard-head {
  align-items: end;
  display: flex;
  gap: 10px;
  justify-content: space-between;
}

.leaderboard small {
  color: rgba(244, 234, 219, 0.46);
  font-family: "Helvetica Neue", Arial, sans-serif;
}

.leaderboard ol {
  display: grid;
  gap: 8px;
  list-style: decimal-leading-zero;
  margin: 0;
  padding-left: 28px;
}

.leaderboard li {
  align-items: baseline;
  color: var(--muted);
  display: grid;
  gap: 10px;
  grid-template-columns: 1fr auto auto;
  font-family: "Helvetica Neue", Arial, sans-serif;
  letter-spacing: 0.04em;
  padding-left: 4px;
}

.leaderboard li::marker {
  color: var(--green);
}

.leaderboard li span {
  color: var(--text);
}

.leaderboard li em {
  color: var(--red);
  font-style: normal;
  font-weight: 700;
}

.leaderboard li strong {
  color: var(--green);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
}

.snake-controls {
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(3, 58px);
  justify-content: start;
}

.snake-controls button {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(244, 234, 219, 0.2);
  color: var(--text);
  cursor: pointer;
  font: inherit;
  min-height: 42px;
  text-transform: uppercase;
}

.snake-controls button:first-child,
.snake-controls button:last-child {
  grid-column: 2;
}

.section {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.028), transparent 180px),
    radial-gradient(circle at 12% 0, rgba(73, 255, 152, 0.08), transparent 360px),
    radial-gradient(circle at 88% 8%, rgba(255, 74, 34, 0.09), transparent 360px),
    var(--bg);
  border-top: 1px solid var(--line);
  padding: clamp(72px, 9vw, 132px) clamp(18px, 5vw, 76px);
}

.artist-section,
.brand-section {
  align-items: center;
  display: grid;
  gap: clamp(28px, 6vw, 76px);
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
}

.brand-section {
  grid-template-columns: minmax(220px, 0.72fr) minmax(0, 1fr);
}

.access-section {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding-bottom: clamp(46px, 6vw, 82px);
  padding-top: clamp(46px, 6vw, 82px);
}

.access-section article {
  background:
    linear-gradient(135deg, rgba(168, 255, 95, 0.09), transparent 36%),
    linear-gradient(315deg, rgba(255, 43, 18, 0.11), transparent 42%),
    var(--panel);
  border: 1px solid var(--line);
  min-height: 240px;
  padding: clamp(22px, 4vw, 42px);
  position: relative;
}

.access-section h2 {
  font-size: clamp(38px, 5.6vw, 72px);
}

.access-section p {
  color: var(--muted);
  font-family: "Helvetica Neue", Arial, sans-serif;
  line-height: 1.55;
  max-width: 520px;
}

.sold-out-stamp {
  border: 1px solid var(--red);
  color: var(--red);
  display: inline-block;
  font-size: clamp(22px, 4vw, 52px);
  letter-spacing: 0.18em;
  line-height: 1;
  margin: 10px 0 18px;
  padding: 8px 12px;
  text-transform: uppercase;
  transform: rotate(-4deg);
}

.section-copy {
  max-width: 760px;
}

.artist-logo {
  filter: invert(1) contrast(1.35);
  margin: 0 0 22px;
  max-width: min(420px, 92vw);
  mix-blend-mode: screen;
}

.section-copy p,
.section-heading p,
.card p,
.work-card p,
.submission-form label {
  color: var(--muted);
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.image-mosaic {
  display: grid;
  gap: 12px;
  grid-template-columns: 1.1fr 0.9fr 0.9fr;
}

.image-mosaic img {
  aspect-ratio: 1;
  border: 1px solid var(--line);
  filter: saturate(0.9) contrast(1.05);
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.image-mosaic img:first-child {
  aspect-ratio: 0.72;
  grid-row: span 2;
}

.brand-orb {
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.brand-orb img {
  aspect-ratio: 1;
  object-fit: cover;
  width: 100%;
}

.section-heading {
  align-items: end;
  display: flex;
  gap: 24px;
  justify-content: space-between;
  margin-bottom: 34px;
}

.section-heading h2 {
  font-size: clamp(44px, 7vw, 98px);
}

.section-heading p {
  margin: 0;
  max-width: 720px;
}

.episode-grid,
.archive-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card,
.work-card,
.submission-form {
  background: var(--panel);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  min-width: 0;
}

.card {
  display: grid;
  gap: 16px;
  grid-template-columns: 104px 1fr;
  padding: 16px;
}

.card img,
.work-card img {
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.1);
  object-fit: cover;
  width: 100%;
}

.card h3,
.work-card h3,
.submission-form h3 {
  color: var(--amber);
  font-size: 22px;
  line-height: 1.05;
  margin: 0 0 8px;
  text-transform: uppercase;
}

.card p,
.work-card p {
  font-size: 14px;
  line-height: 1.45;
  margin: 0 0 12px;
}

.meta {
  color: rgba(244, 241, 234, 0.68);
  display: block;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.mini-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.mini-links a {
  border-bottom: 1px solid rgba(244, 241, 234, 0.34);
  color: var(--text);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mini-links button {
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(73, 255, 152, 0.5);
  color: var(--green);
  cursor: pointer;
  font: inherit;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  padding: 0;
  text-transform: uppercase;
}

.work-card {
  padding: 14px;
}

.work-card img {
  margin-bottom: 16px;
}

.submission-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.submission-form {
  padding: clamp(20px, 3vw, 34px);
}

.submission-form label {
  display: grid;
  font-size: 13px;
  font-weight: 900;
  gap: 8px;
  letter-spacing: 0.08em;
  margin-top: 16px;
  text-transform: uppercase;
}

.submission-form input,
.submission-form textarea {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: var(--text);
  font-family: "Helvetica Neue", Arial, sans-serif;
  min-height: 44px;
  padding: 12px;
}

.submission-form textarea {
  resize: vertical;
}

.submission-form .check {
  align-items: start;
  display: grid;
  grid-template-columns: 18px 1fr;
  letter-spacing: 0;
  text-transform: none;
}

.submission-form .check input {
  min-height: auto;
}

.submission-form button {
  margin-top: 18px;
  width: 100%;
}

.site-footer {
  align-items: center;
  background: #000;
  border-top: 1px solid var(--line);
  color: rgba(244, 241, 234, 0.76);
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: space-between;
  padding: 28px clamp(18px, 5vw, 76px);
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

@media (max-width: 1040px) {
  .episode-panel {
    max-width: 270px;
    top: 18vh;
  }

  .episode-grid,
  .archive-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .site-nav {
    align-items: start;
    gap: 12px;
    justify-content: center;
    padding: 13px 14px;
  }

  .brand-mark {
    font-size: 15px;
  }

  .site-nav nav {
    display: none;
  }

  .radio-dock {
    gap: 0;
    grid-template-columns: 38px;
    left: 14px;
    max-width: 56px;
    padding: 8px;
    top: 58px;
  }

  .radio-dock > div {
    display: none;
  }

  .radio-toggle {
    font-size: 14px;
  }

  .site-nav nav a {
    font-size: 10px;
  }

  .hero {
    align-content: center;
    min-height: 100svh;
    overflow: visible;
    padding: 86px 16px 36px;
  }

  .hero-bg {
    background-position: center;
  }

  .episode-panel {
    max-width: 100%;
    order: 2;
    position: relative;
    top: auto;
  }

  .episode-left,
  .episode-right {
    left: auto;
    right: auto;
    text-align: left;
  }

  .episode-panel h2 {
    font-size: clamp(34px, 12vw, 50px);
  }

  .episode-panel p {
    font-size: 14px;
  }

  .countdown-card {
    margin: 0 0 24px;
    order: 1;
    position: relative;
    top: auto;
  }

  .countdown-card h1 {
    font-size: 45px;
  }

  .countdown {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .countdown div:not(:last-child)::after {
    content: "";
  }

  .route-strip {
    backdrop-filter: blur(14px);
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.86) 24%, rgba(0, 0, 0, 0.92));
    bottom: 18px;
    gap: 9px;
    grid-template-columns: 1fr;
    left: 50%;
    margin-top: 0;
    max-width: 100%;
    order: 4;
    position: fixed;
    text-align: center;
    transform: translateX(-50%);
    width: calc(100% - 32px);
    padding: 12px 10px 0;
  }

  body.past-hero .route-strip {
    opacity: 0;
    pointer-events: none;
  }

  .route-line {
    grid-row: 2;
  }

  .enter-button {
    min-width: 0;
    width: min(100%, 320px);
  }

  .artist-section,
  .brand-section,
  .access-section,
  .game-shell,
  .submission-grid {
    grid-template-columns: 1fr;
  }

  .access-section h2 {
    font-size: 42px;
  }

  #snake-game {
    width: 100%;
  }

  .snake-controls {
    justify-content: center;
  }

  .challenge-card {
    grid-template-columns: 1fr;
  }

  .challenge-cover {
    max-width: 210px;
  }

  .image-mosaic {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .image-mosaic img:first-child {
    aspect-ratio: 1;
    grid-column: span 2;
    grid-row: auto;
  }

  .section-heading {
    align-items: start;
    display: grid;
  }

  .episode-grid,
  .archive-grid {
    grid-template-columns: 1fr;
  }

  .card {
    grid-template-columns: 86px 1fr;
  }
}
