:root {
  --ink: #111111;
  --paper: #f3f0e7;
  --green: #38d739;
  --green-dark: #179425;
  --acid: #d9ff45;
  --purple: #211b38;
  --purple-light: #7763ff;
  --white: #ffffff;
  --muted: #b5b2aa;
  --line: rgba(255, 255, 255, 0.16);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
  --display: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--ink);
  font-family: var(--sans);
  line-height: 1.5;
}

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

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

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  padding: 10px 14px;
  color: var(--ink);
  background: var(--acid);
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: 100%;
  padding: 24px clamp(22px, 4vw, 68px);
  color: var(--white);
  border-bottom: 1px solid var(--line);
}

.brand,
.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand-copy {
  display: grid;
  gap: 2px;
}

.brand-copy strong {
  font-size: 0.78rem;
}

.brand-copy small {
  color: var(--green);
  font-size: 0.56rem;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.brand-mark {
  display: block;
  flex: 0 0 auto;
  width: 50px;
  height: 50px;
  overflow: hidden;
  background: var(--purple);
  border: 2px solid var(--green);
  border-radius: 12px;
  box-shadow: 3px 3px 0 var(--acid);
  transform: rotate(-3deg);
}

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

nav {
  display: flex;
  gap: clamp(18px, 3vw, 42px);
}

nav a,
.footer-links a {
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

nav a {
  position: relative;
  padding: 10px 0;
}

nav a::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 2px;
  background: var(--green);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

nav a:hover::after,
nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-cta {
  justify-self: end;
  padding: 12px 17px;
  color: var(--ink);
  background: var(--acid);
  border: 1px solid var(--ink);
  border-radius: 4px;
  box-shadow: 4px 4px 0 var(--green);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.header-cta:hover,
.header-cta:focus-visible {
  box-shadow: 1px 1px 0 var(--green);
  transform: translate(3px, 3px);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 0.85fr);
  align-items: center;
  min-height: 860px;
  padding: 138px clamp(22px, 7vw, 120px) 118px;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 76% 44%, rgba(70, 216, 61, 0.22), transparent 29%),
    radial-gradient(circle at 22% 20%, rgba(119, 99, 255, 0.14), transparent 28%),
    linear-gradient(135deg, #080909 0%, #111216 48%, #171427 100%);
}

.hero-noise {
  position: absolute;
  inset: 0;
  opacity: 0.17;
  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='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.3'/%3E%3C/svg%3E");
  pointer-events: none;
}

.hero-orbit {
  position: absolute;
  width: 760px;
  height: 760px;
  border: 1px solid rgba(217, 255, 69, 0.13);
  border-radius: 50%;
  pointer-events: none;
}

.hero-orbit::after {
  position: absolute;
  top: 50%;
  left: -5px;
  width: 10px;
  height: 10px;
  background: var(--acid);
  border-radius: 50%;
  box-shadow: 0 0 22px var(--acid);
  content: "";
}

.hero-orbit-one {
  top: 6%;
  right: -9%;
}

.hero-orbit-two {
  top: 19%;
  right: 2%;
  width: 560px;
  height: 560px;
  border-style: dashed;
  transform: rotate(23deg);
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 22px;
  color: var(--green);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.live-dot {
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(56, 215, 57, 0.13), 0 0 18px var(--green);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: var(--display);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

h1 {
  max-width: 760px;
  margin-bottom: 28px;
  font-size: clamp(5rem, 10vw, 9.5rem);
}

h1 span {
  display: block;
  color: var(--green);
  text-shadow: 5px 5px 0 rgba(217, 255, 69, 0.16);
  transform: rotate(-1.5deg);
}

.hero-intro {
  max-width: 590px;
  margin-bottom: 34px;
  color: #d3d2ce;
  font-size: clamp(1.05rem, 1.4vw, 1.28rem);
  line-height: 1.65;
}

.hero-actions,
.episode-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  min-height: 52px;
  padding: 13px 22px;
  border: 2px solid transparent;
  border-radius: 3px;
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-3px);
}

.button-primary {
  color: var(--ink);
  background: var(--green);
  box-shadow: 5px 5px 0 var(--acid);
}

.button-primary:hover,
.button-primary:focus-visible {
  box-shadow: 2px 8px 0 var(--acid);
}

.button-ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.04);
}

.button-ghost:hover,
.button-ghost:focus-visible {
  background: rgba(255, 255, 255, 0.1);
}

.button-ghost.light {
  color: var(--ink);
  border-color: rgba(17, 17, 17, 0.35);
}

.button-dark {
  color: var(--white);
  background: var(--ink);
  box-shadow: 5px 5px 0 var(--purple-light);
}

.play-icon {
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 10px solid var(--ink);
}

.hero-art {
  position: relative;
  z-index: 2;
  justify-self: center;
  width: min(100%, 570px);
  padding: 28px;
}

.hero-art img {
  position: relative;
  z-index: 2;
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border: 9px solid var(--paper);
  border-radius: 50%;
  box-shadow: var(--shadow), 0 0 0 2px var(--green), 0 0 90px rgba(56, 215, 57, 0.16);
  transform: rotate(3deg);
}

.art-shadow {
  position: absolute;
  right: 3%;
  bottom: 5%;
  left: 3%;
  height: 18%;
  filter: blur(30px);
  background: rgba(0, 0, 0, 0.72);
  border-radius: 50%;
}

.signal-card {
  position: absolute;
  z-index: 3;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  min-width: 170px;
  padding: 11px 13px;
  color: var(--ink);
  background: var(--acid);
  border: 2px solid var(--ink);
  box-shadow: 5px 5px 0 var(--purple-light);
  font-size: 0.63rem;
  letter-spacing: 0.12em;
}

.signal-card strong {
  font-size: 0.72rem;
}

.signal-card-top {
  top: 13%;
  right: -3%;
  transform: rotate(4deg);
}

.signal-card-bottom {
  bottom: 12%;
  left: -5%;
  color: var(--white);
  background: var(--purple-light);
  box-shadow: 5px 5px 0 var(--green);
  transform: rotate(-5deg);
}

.topic-ticker {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 4;
  overflow: hidden;
  color: var(--ink);
  background: var(--green);
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  font-family: var(--display);
  font-size: 1.25rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
  transform: rotate(-0.6deg) scale(1.01);
}

.topic-ticker div {
  display: flex;
  justify-content: space-around;
  gap: 28px;
  min-width: 1200px;
  padding: 12px 26px;
}

.topic-ticker i {
  font-style: normal;
}

.section {
  padding: clamp(80px, 10vw, 150px) clamp(22px, 7vw, 120px);
}

.portal-section {
  padding: 0 clamp(22px, 7vw, 120px);
  color: var(--white);
  background: var(--ink);
}

.portal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 1280px;
  margin: 0 auto;
  border-right: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.portal-card {
  position: relative;
  min-height: 390px;
  padding: clamp(28px, 4vw, 50px);
  overflow: hidden;
  border-right: 1px solid var(--line);
  transition: color 220ms ease, background 220ms ease;
}

.portal-card:last-child {
  border-right: 0;
}

.portal-card:hover,
.portal-card:focus-visible {
  color: var(--ink);
  background: var(--acid);
}

.portal-number {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
}

.portal-icon {
  display: grid;
  place-items: center;
  width: 66px;
  height: 66px;
  margin: 45px 0 20px;
  color: var(--ink);
  background: var(--green);
  border: 2px solid var(--ink);
  border-radius: 50%;
  box-shadow: 5px 5px 0 var(--purple-light);
  font-size: 1.3rem;
  transition: transform 220ms ease;
}

.portal-card:hover .portal-icon,
.portal-card:focus-visible .portal-icon {
  transform: rotate(10deg) scale(1.06);
}

.portal-card h2 {
  margin-bottom: 14px;
  font-size: clamp(2.6rem, 4vw, 4rem);
}

.portal-card p {
  max-width: 310px;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.65;
}

.portal-card:hover p,
.portal-card:focus-visible p {
  color: rgba(17, 17, 17, 0.73);
}

.portal-card strong {
  position: absolute;
  right: clamp(28px, 4vw, 50px);
  bottom: 34px;
  left: clamp(28px, 4vw, 50px);
  padding-top: 14px;
  border-top: 1px solid currentColor;
  font-size: 0.67rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.watch-section {
  color: var(--white);
  background: var(--purple);
}

.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  max-width: 1280px;
  margin: 0 auto 46px;
}

.section-heading h2,
.about-copy h2,
.episode-copy h2,
.community-card h2 {
  margin-bottom: 0;
  font-size: clamp(3.3rem, 7vw, 6.8rem);
}

.text-link {
  padding-bottom: 6px;
  color: var(--acid);
  border-bottom: 1px solid currentColor;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.video-shell {
  max-width: 1280px;
  margin: 0 auto;
  padding: 9px;
  background: var(--ink);
  border: 2px solid rgba(255, 255, 255, 0.22);
  border-radius: 10px;
  box-shadow: 16px 16px 0 var(--green), var(--shadow);
}

.video-topbar {
  display: flex;
  align-items: center;
  gap: 7px;
  min-height: 37px;
  padding: 0 10px;
  color: var(--muted);
}

.video-topbar span {
  width: 9px;
  height: 9px;
  background: var(--green);
  border-radius: 50%;
}

.video-topbar span:nth-child(2) {
  background: var(--acid);
}

.video-topbar span:nth-child(3) {
  background: var(--purple-light);
}

.video-topbar p {
  margin: 0 0 0 6px;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.66rem;
  letter-spacing: 0.12em;
}

.video-frame {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  overflow: hidden;
  background: #000;
  border-radius: 4px;
}

.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.about-section {
  color: var(--ink);
  background:
    linear-gradient(rgba(17, 17, 17, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 17, 17, 0.045) 1px, transparent 1px),
    var(--paper);
  background-size: 34px 34px;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.75fr) minmax(0, 1.25fr);
  align-items: center;
  gap: clamp(50px, 8vw, 120px);
  max-width: 1240px;
  margin: 0 auto;
}

.poster-wrap {
  position: relative;
  max-width: 470px;
  padding: 13px;
  background: var(--white);
  border: 2px solid var(--ink);
  box-shadow: 18px 18px 0 var(--green), 26px 26px 0 var(--ink);
  transform: rotate(-2deg);
}

.poster-label {
  position: absolute;
  right: -26px;
  bottom: 20px;
  padding: 8px 12px;
  color: var(--white);
  background: var(--purple-light);
  border: 2px solid var(--ink);
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transform: rotate(4deg);
}

.about-copy h2 {
  max-width: 780px;
  margin-bottom: 30px;
}

.kvj-bridge {
  display: inline-flex;
  gap: 8px;
  margin: 0 0 24px;
  padding: 8px 11px;
  color: var(--white);
  background: var(--purple);
  border: 1px solid var(--ink);
  box-shadow: 4px 4px 0 var(--green);
  font-size: 0.69rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transform: rotate(-1deg);
}

.kvj-bridge strong {
  color: var(--green);
}

.large-copy {
  max-width: 720px;
  color: #3f403d;
  font-size: clamp(1.1rem, 1.5vw, 1.35rem);
  line-height: 1.7;
}

.about-list {
  margin-top: 38px;
  border-top: 2px solid var(--ink);
}

.about-list div {
  display: grid;
  grid-template-columns: 55px 1fr;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(17, 17, 17, 0.26);
}

.about-list span {
  color: var(--green-dark);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.8rem;
  font-weight: 900;
}

.about-list p {
  margin: 0;
  font-weight: 750;
}

.crew-section {
  color: var(--white);
  background: #0e0e0f;
}

.section-kicker {
  max-width: 250px;
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.crew-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 1280px;
  margin: 0 auto;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.crew-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 540px;
  padding: 28px;
  overflow: hidden;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: color 220ms ease, background 220ms ease;
}

.crew-card:hover {
  color: var(--ink);
  background: var(--green);
}

.crew-number {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
}

.crew-portrait {
  flex: 0 0 auto;
  width: 164px;
  height: 164px;
  margin: 34px 0 24px;
  overflow: hidden;
  border: 2px solid var(--green);
  border-radius: 50%;
  box-shadow: 0 0 0 10px rgba(56, 215, 57, 0.05);
  background-color: #1a1a1d;
  transition: transform 220ms ease, border-color 220ms ease;
}

.crew-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.crew-portrait img.crew-portrait-vickie {
  object-position: 50% 8%;
}

.crew-portrait img.crew-portrait-ryan {
  object-position: 50% 34%;
}

.crew-card:hover .crew-portrait {
  border-color: var(--ink);
  transform: rotate(2deg) scale(1.035);
}

.crew-card h3 {
  margin-bottom: 9px;
  font-family: var(--display);
  font-size: 2.15rem;
  line-height: 1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.crew-card h3 small {
  display: block;
  margin-top: 7px;
  font-family: var(--sans);
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.crew-role {
  margin: 0 0 8px;
  color: var(--green) !important;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.65rem !important;
  font-weight: 900;
  letter-spacing: 0.12em;
  line-height: 1.2 !important;
  text-transform: uppercase;
}

.crew-card:hover .crew-role {
  color: var(--ink) !important;
}

.crew-card p {
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.55;
}

.crew-card:hover p {
  color: rgba(17, 17, 17, 0.72);
}

.crew-tag {
  display: block;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid currentColor;
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.episodes-section {
  color: var(--ink);
  background: var(--paper);
}

.episode-panel {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  max-width: 1280px;
  margin: 0 auto;
  overflow: hidden;
  background: var(--green);
  border: 3px solid var(--ink);
  box-shadow: 14px 14px 0 var(--purple-light);
}

.episode-copy {
  padding: clamp(42px, 6vw, 88px);
}

.episode-copy .eyebrow {
  color: var(--ink);
}

.episode-copy h2 {
  max-width: 750px;
  margin-bottom: 25px;
}

.episode-copy > p:not(.eyebrow) {
  max-width: 650px;
  margin-bottom: 30px;
  font-size: 1.05rem;
}

.episode-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 500px;
  overflow: hidden;
  background: var(--purple);
  border-left: 3px solid var(--ink);
}

.frequency {
  position: absolute;
  width: 88%;
  aspect-ratio: 1;
  border: 1px solid rgba(217, 255, 69, 0.4);
  border-radius: 50%;
}

.frequency-two { width: 67%; }
.frequency-three { width: 45%; }
.frequency-four { width: 22%; background: var(--green); border: 8px solid var(--ink); }

.frequency-label {
  position: relative;
  z-index: 2;
  color: var(--ink);
  font-family: var(--display);
  font-size: 2.5rem;
  line-height: 0.83;
  text-align: center;
}

.community-section {
  color: var(--ink);
  background: var(--purple-light);
}

.community-card {
  position: relative;
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(40px, 7vw, 90px);
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
  padding: clamp(48px, 7vw, 92px);
  overflow: hidden;
  background: var(--acid);
  border: 3px solid var(--ink);
  box-shadow: 16px 16px 0 var(--ink);
}

.community-card .eyebrow {
  color: var(--purple-light);
}

.community-card h2 {
  margin-bottom: 24px;
}

.community-card > p:not(.eyebrow) {
  max-width: 600px;
  margin-bottom: 30px;
  font-size: 1.1rem;
}

.community-intro > p:not(.eyebrow) {
  max-width: 520px;
  margin-bottom: 28px;
  font-size: 1.05rem;
}

.private-route {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 10px;
  margin: 0 0 22px;
  padding: 13px;
  color: var(--white);
  background: var(--purple);
  border: 2px solid var(--ink);
  box-shadow: 4px 4px 0 var(--green);
  font-size: 0.76rem;
}

.private-route > span {
  color: var(--green);
}

.private-route p {
  margin: 0;
}

.instagram-link {
  display: inline-block;
  padding-bottom: 4px;
  border-bottom: 1px solid currentColor;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.weird-form {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 18px;
  padding: clamp(24px, 4vw, 38px);
  color: var(--white);
  background: var(--ink);
  border: 2px solid var(--ink);
  box-shadow: 8px 8px 0 var(--purple-light);
}

.submission-options {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 14px;
}

.submission-option {
  display: grid;
  grid-template-columns: 58px 1fr auto;
  align-items: center;
  gap: 16px;
  min-height: 112px;
  padding: 17px 20px;
  color: var(--white);
  background: var(--ink);
  border: 2px solid var(--ink);
  box-shadow: 6px 6px 0 var(--purple-light);
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.submission-option:hover,
.submission-option:focus-visible {
  color: var(--ink);
  background: var(--green);
  transform: translate(-3px, -3px);
}

.submission-symbol {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  background: var(--purple);
  border-radius: 50%;
  font-size: 1.55rem;
}

.submission-option > span:nth-child(2) {
  display: grid;
  gap: 4px;
}

.submission-option strong {
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.submission-option small {
  color: var(--muted);
  font-size: 0.72rem;
}

.submission-option:hover small,
.submission-option:focus-visible small {
  color: rgba(17, 17, 17, 0.68);
}

.submission-option i {
  font-style: normal;
  font-size: 1.4rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.weird-form label {
  display: grid;
  gap: 7px;
}

.weird-form label > span {
  color: var(--green);
  font-size: 0.63rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.weird-form input,
.weird-form select,
.weird-form textarea {
  width: 100%;
  padding: 12px 13px;
  color: var(--white);
  background: #222225;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 0;
  outline: 0;
  font: inherit;
}

.weird-form input:focus,
.weird-form select:focus,
.weird-form textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(56, 215, 57, 0.18);
}

.weird-form textarea {
  min-height: 140px;
  resize: vertical;
}

.weird-form .button {
  width: 100%;
  color: var(--ink);
  background: var(--green);
  box-shadow: 5px 5px 0 var(--acid);
}

.form-note,
.form-status {
  margin: -4px 0 0;
  color: var(--muted);
  font-size: 0.68rem;
  line-height: 1.5;
}

.form-status:not(:empty) {
  padding: 10px;
  color: var(--ink);
  background: var(--acid);
  border-left: 4px solid var(--green);
  font-weight: 800;
}

.form-status[data-state="success"] {
  color: #0c5d2f;
}

.form-status[data-state="error"] {
  color: #9d1c20;
}

.submission-form button[aria-busy="true"] {
  cursor: wait;
  opacity: 0.72;
}

.honeypot {
  position: absolute !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.check-field a {
  color: var(--acid);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.check-field a:hover,
.check-field a:focus-visible {
  color: var(--green);
}

.community-icons {
  position: absolute;
  left: 4%;
  bottom: -12%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  font-size: clamp(3rem, 6vw, 5.5rem);
  transform: rotate(-8deg);
}

footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 30px;
  padding: 45px clamp(22px, 7vw, 120px);
  color: var(--white);
  background: var(--ink);
  border-top: 1px solid var(--line);
}

.footer-brand strong {
  font-size: 0.8rem;
}

.footer-brand p {
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
}

.footer-links {
  display: flex;
  gap: 28px;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--green);
}

.copyright {
  justify-self: end;
  margin: 0;
  color: var(--muted);
  font-size: 0.69rem;
}

.submission-page {
  min-height: 100vh;
  color: var(--white);
  background:
    radial-gradient(circle at 10% 24%, rgba(56, 215, 57, 0.14), transparent 25%),
    radial-gradient(circle at 91% 13%, rgba(119, 99, 255, 0.2), transparent 24%),
    #0e0e0f;
}

.submission-page.vicki-page {
  background:
    radial-gradient(circle at 18% 32%, rgba(119, 99, 255, 0.26), transparent 28%),
    radial-gradient(circle at 87% 12%, rgba(56, 215, 57, 0.12), transparent 22%),
    #151126;
}

.submission-page.music-page {
  background:
    linear-gradient(rgba(56, 215, 57, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(56, 215, 57, 0.035) 1px, transparent 1px),
    #0e0e0f;
  background-size: 36px 36px;
}

.subpage-header {
  position: relative;
  grid-template-columns: 1fr 1fr;
}

.subpage-header::after {
  content: none !important;
}

.submission-main {
  position: relative;
  overflow: hidden;
}

.submission-main::before {
  position: absolute;
  top: 90px;
  right: -210px;
  width: 630px;
  height: 630px;
  border: 1px solid rgba(217, 255, 69, 0.14);
  border-radius: 50%;
  content: "";
}

.submission-hero {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(450px, 1.18fr);
  align-items: start;
  gap: clamp(48px, 8vw, 110px);
  max-width: 1280px;
  min-height: calc(100vh - 95px);
  margin: 0 auto;
  padding: clamp(70px, 9vw, 130px) clamp(22px, 5vw, 68px);
}

.submission-heading {
  position: sticky;
  top: 70px;
}

.submission-heading h1 {
  margin-bottom: 30px;
  font-size: clamp(4.4rem, 8vw, 8rem);
}

.submission-heading > p:not(.eyebrow) {
  max-width: 540px;
  color: #d2d0cb;
  font-size: 1.05rem;
  line-height: 1.75;
}

.submission-hero-icon {
  display: grid;
  place-items: center;
  width: 78px;
  height: 78px;
  margin-bottom: 35px;
  color: var(--ink);
  background: var(--green);
  border: 2px solid var(--ink);
  border-radius: 50%;
  box-shadow: 7px 7px 0 var(--acid);
  font-size: 2.25rem;
  transform: rotate(-6deg);
}

.submission-form {
  box-shadow: 12px 12px 0 var(--green);
}

.submission-form .button {
  min-height: 58px;
}

.cf-turnstile {
  width: 100%;
  min-height: 65px;
}

.file-field {
  padding: 14px;
  border: 1px dashed rgba(56, 215, 57, 0.6);
}

.file-field input[type="file"] {
  padding: 8px;
  border: 0;
  background: transparent;
}

.file-field small {
  color: var(--muted);
  font-size: 0.67rem;
}

.check-field {
  grid-template-columns: 22px 1fr;
  align-items: start;
  gap: 10px !important;
  padding: 13px;
  background: rgba(255, 255, 255, 0.05);
  border-left: 3px solid var(--green);
}

.check-field input {
  width: 17px;
  height: 17px;
  margin-top: 2px;
  accent-color: var(--green);
}

.check-field span {
  color: #deddd8 !important;
  font-size: 0.7rem !important;
  font-weight: 650 !important;
  letter-spacing: 0 !important;
  line-height: 1.55;
  text-transform: none !important;
}

.reading-note {
  max-width: 520px;
  margin-top: 28px;
  padding: 14px 16px;
  color: var(--ink);
  background: var(--acid);
  border: 2px solid var(--ink);
  box-shadow: 5px 5px 0 var(--purple-light);
  font-size: 0.74rem;
  font-weight: 700;
  line-height: 1.55;
  transform: rotate(-1deg);
}

.point-wordmark {
  position: relative;
  display: inline-grid;
  min-width: 250px;
  margin: 0 0 40px;
  padding: 22px 28px 20px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(217, 255, 69, 0.42);
  box-shadow: inset 0 0 50px rgba(119, 99, 255, 0.12), 7px 7px 0 var(--green);
  text-align: center;
  transform: rotate(-1deg);
}

.point-wordmark::before,
.point-wordmark::after {
  position: absolute;
  color: var(--acid);
  content: "✦";
  font-size: 0.7rem;
}

.point-wordmark::before {
  top: 12px;
  left: 14px;
}

.point-wordmark::after {
  right: 14px;
  bottom: 12px;
}

.point-wordmark > span {
  color: var(--green);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.4rem;
  font-style: italic;
  line-height: 1;
}

.point-wordmark strong {
  font-family: var(--display);
  font-size: 2.65rem;
  line-height: 0.95;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.point-wordmark small {
  margin-top: 9px;
  color: var(--muted);
  font-size: 0.55rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.music-note {
  background: var(--green);
  box-shadow: 5px 5px 0 var(--acid);
}

.simple-footer {
  display: flex;
  grid-template-columns: none;
  justify-content: center;
  gap: 30px;
  padding: 28px;
}

.simple-footer a {
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.simple-footer a:hover,
.simple-footer a:focus-visible {
  color: var(--green);
}

.legal-page {
  min-height: 100vh;
  color: var(--ink);
  background:
    radial-gradient(circle at 88% 12%, rgba(56, 215, 57, 0.18), transparent 28%),
    var(--paper);
}

.legal-main {
  padding: clamp(58px, 8vw, 110px) clamp(20px, 6vw, 80px);
}

.legal-shell {
  width: min(900px, 100%);
  margin: 0 auto;
}

.legal-heading {
  margin-bottom: 38px;
  padding: clamp(28px, 5vw, 52px);
  color: var(--white);
  background: var(--ink);
  border: 2px solid var(--ink);
  box-shadow: 10px 10px 0 var(--green);
}

.legal-heading h1 {
  max-width: none;
  margin: 8px 0 16px;
  font-family: var(--display);
  font-size: clamp(2.7rem, 8vw, 6.5rem);
  line-height: 0.9;
  text-transform: uppercase;
}

.legal-heading > p:last-child {
  max-width: 720px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.75;
}

.legal-updated {
  color: var(--green) !important;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.legal-section {
  margin-top: 18px;
  padding: clamp(24px, 4vw, 38px);
  background: var(--white);
  border: 2px solid var(--ink);
}

.legal-section h2 {
  margin: 0 0 14px;
  font-family: var(--display);
  font-size: clamp(1.45rem, 3vw, 2.15rem);
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.legal-section p,
.legal-section li {
  line-height: 1.75;
}

.legal-section p:last-child,
.legal-section ul:last-child {
  margin-bottom: 0;
}

.legal-section a,
.legal-callout a {
  color: #176c2a;
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-callout {
  margin-top: 18px;
  padding: 22px 24px;
  background: var(--acid);
  border: 2px solid var(--ink);
  box-shadow: 6px 6px 0 var(--purple);
  font-weight: 800;
  line-height: 1.6;
}

.not-found-page {
  min-height: 100vh;
  color: var(--white);
  background:
    radial-gradient(circle at center, rgba(56, 215, 57, 0.18), transparent 35%),
    var(--ink);
}

.not-found-main {
  display: grid;
  place-items: center;
  align-content: center;
  min-height: 100vh;
  padding: 40px 20px;
  text-align: center;
}

.not-found-main > img {
  width: min(220px, 48vw);
  margin-bottom: 28px;
  border: 3px solid var(--green);
  box-shadow: 10px 10px 0 var(--acid);
  transform: rotate(-3deg);
}

.not-found-main h1 {
  max-width: 850px;
  margin: 10px 0 16px;
  font-family: var(--display);
  font-size: clamp(3rem, 9vw, 8rem);
  line-height: 0.86;
  text-transform: uppercase;
}

.not-found-main > p:not(.eyebrow) {
  max-width: 570px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.7;
}

.not-found-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 22px;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .site-header nav {
    display: none;
  }

  .hero {
    grid-template-columns: 1.05fr 0.95fr;
    min-height: 760px;
  }

  h1 {
    font-size: clamp(4.7rem, 9.5vw, 7rem);
  }

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

  .portal-grid {
    grid-template-columns: 1fr;
  }

  .portal-card {
    min-height: 330px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .crew-card {
    min-height: 500px;
  }

  footer {
    grid-template-columns: 1fr auto;
  }

  .copyright {
    display: none;
  }

  .submission-hero {
    grid-template-columns: 1fr;
  }

  .submission-heading {
    position: relative;
    top: auto;
  }
}

  @media (max-width: 760px) {
  .site-header {
    padding: 17px 18px;
  }

  .brand-copy,
  .header-cta {
    display: none;
  }

  .site-header::after {
    justify-self: end;
    color: var(--green);
    content: "THU • 6 PM";
    font-size: 0.7rem;
    font-weight: 900;
    letter-spacing: 0.12em;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 112px 22px 100px;
  }

  .hero-copy {
    text-align: center;
  }

  .hero .eyebrow,
  .hero-actions {
    justify-content: center;
  }

  h1 {
    font-size: clamp(4.3rem, 21vw, 6.5rem);
  }

  .hero-intro {
    margin-right: auto;
    margin-left: auto;
  }

  .hero-art {
    width: min(100%, 480px);
    margin-top: 50px;
  }

  .signal-card-top {
    right: 0;
  }

  .signal-card-bottom {
    left: 0;
  }

  .section-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .section-heading h2,
  .about-copy h2,
  .episode-copy h2,
  .community-card h2 {
    font-size: clamp(3.1rem, 16vw, 5.4rem);
  }

  .video-shell {
    padding: 5px;
    box-shadow: 8px 8px 0 var(--green), var(--shadow);
  }

  .video-topbar p {
    letter-spacing: 0.04em;
  }

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

  .about-art {
    justify-self: center;
  }

  .poster-wrap {
    margin-right: 18px;
  }

  .about-copy {
    margin-top: 30px;
  }

  .episode-visual {
    min-height: 330px;
    border-top: 3px solid var(--ink);
    border-left: 0;
  }

  .community-icons {
    display: none;
  }

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

  .form-row {
    grid-template-columns: 1fr;
  }

  .submission-hero {
    padding-top: 55px;
  }

  .submission-heading h1 {
    font-size: clamp(4rem, 19vw, 6.5rem);
  }

  .subpage-header .header-cta {
    display: inline-flex;
    padding: 10px 12px;
    font-size: 0.58rem;
  }

  .simple-footer {
    align-items: center;
    flex-direction: column;
  }

  footer {
    grid-template-columns: 1fr;
  }

  .footer-links {
    flex-wrap: wrap;
  }
}

@media (max-width: 530px) {
  .button {
    width: 100%;
  }

  .crew-grid {
    grid-template-columns: 1fr;
  }

  .crew-card {
    min-height: 500px;
  }

  .signal-card {
    min-width: 145px;
    gap: 8px;
  }

  .submission-option {
    grid-template-columns: 48px 1fr;
  }

  .submission-option i {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
