:root {
  --black: #030306;
  --panel: rgba(6, 7, 13, 0.78);
  --panel-strong: rgba(10, 10, 17, 0.92);
  --line: rgba(255, 44, 151, 0.38);
  --line-cyan: rgba(0, 209, 255, 0.34);
  --pink: #ff2f9c;
  --pink-hot: #ff0f6f;
  --cyan: #00d9ff;
  --blue: #405eff;
  --white: #f7f6ff;
  --muted: #c9c4d7;
  --dim: #8d869c;
  --max: 1180px;
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  max-width: 100%;
}

body {
  margin: 0;
  color: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
  background:
    linear-gradient(90deg, rgba(255, 47, 156, 0.06) 1px, transparent 1px) 0 0 / 74px 38px,
    linear-gradient(0deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px) 0 0 / 100% 38px,
    linear-gradient(180deg, #030306 0%, #06040a 45%, #020204 100%);
  min-height: 100vh;
  overflow-x: hidden;
  max-width: 100%;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.32), transparent 20%, transparent 80%, rgba(0, 0, 0, 0.36)),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.018) 0, rgba(255, 255, 255, 0.018) 1px, transparent 1px, transparent 4px);
  mix-blend-mode: screen;
  opacity: 0.55;
  z-index: -1;
}

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

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

button,
input {
  font: inherit;
  letter-spacing: 0;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: calc(100% - 40px);
  max-width: var(--max);
  margin: 0 auto;
  padding: 24px 0;
}

.site-header::before {
  content: "";
  position: fixed;
  inset: 0 0 auto;
  height: 92px;
  background: linear-gradient(180deg, rgba(2, 2, 6, 0.9), rgba(2, 2, 6, 0));
  z-index: -1;
}

.brand {
  width: clamp(120px, 13vw, 178px);
  filter: drop-shadow(0 0 12px rgba(255, 47, 156, 0.32));
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 42px);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.site-nav a {
  position: relative;
  padding: 10px 0;
  text-shadow: 0 0 12px rgba(255, 47, 156, 0.3);
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 2px;
  background: var(--pink);
  box-shadow: 0 0 12px var(--pink);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 170ms ease;
}

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

.site-nav .nav-pill {
  border: 1px solid rgba(255, 47, 156, 0.82);
  border-radius: 999px;
  padding: 10px 22px;
  box-shadow: inset 0 0 14px rgba(255, 47, 156, 0.28), 0 0 18px rgba(255, 47, 156, 0.32);
}

.site-nav .nav-pill::after {
  display: none;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 47, 156, 0.5);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.58);
  color: var(--white);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  box-shadow: 0 0 20px rgba(255, 47, 156, 0.22);
}

.menu-toggle span:not(.sr-only) {
  width: 18px;
  height: 2px;
  background: currentColor;
  box-shadow: 0 0 10px var(--pink);
}

.hero {
  position: relative;
  min-height: 620px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 116px 20px 70px;
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(3, 3, 6, 0.08), rgba(3, 3, 6, 0.68) 74%, var(--black) 100%),
    linear-gradient(90deg, rgba(3, 3, 6, 0.96), rgba(3, 3, 6, 0.24) 28%, rgba(3, 3, 6, 0.24) 72%, rgba(3, 3, 6, 0.96));
  z-index: 0;
}

.hero > * {
  position: relative;
  z-index: 1;
}

.hero-wall {
  position: relative;
  width: min(1040px, calc(100vw - 28px));
  aspect-ratio: 1280 / 511;
  background-image: url("./assets/that-stain-guy-wall-wide.jpg");
  background-size: cover;
  background-position: center;
  border-radius: 8px;
  box-shadow:
    0 0 24px rgba(0, 217, 255, 0.18),
    0 0 80px rgba(255, 15, 111, 0.16);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
}

.hero-tagline {
  width: min(760px, calc(100vw - 28px));
  margin: clamp(12px, 2.8vw, 24px) auto 22px;
  text-align: center;
  color: rgba(247, 246, 255, 0.94);
  font-size: clamp(1.35rem, 3.6vw, 2.15rem);
  line-height: 1.2;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
  text-shadow:
    0 0 12px rgba(255, 255, 255, 0.55),
    0 0 24px rgba(0, 217, 255, 0.26);
}

.hero-tagline span,
.hero-tagline strong {
  display: block;
}

.hero-tagline strong {
  margin-top: 4px;
  color: var(--pink);
  font-style: italic;
  font-weight: 800;
  text-shadow:
    0 0 10px rgba(255, 47, 156, 0.95),
    0 0 22px rgba(255, 47, 156, 0.42);
}

.script-label {
  margin: 0 0 12px;
  color: var(--pink);
  font-family: "Trebuchet MS", Inter, sans-serif;
  font-size: clamp(1.35rem, 3vw, 2.1rem);
  font-style: italic;
  font-weight: 800;
  text-transform: uppercase;
  text-shadow:
    0 0 10px rgba(255, 47, 156, 0.9),
    0 0 24px rgba(255, 47, 156, 0.42);
}

h1,
h2,
h3,
p {
  margin-top: 0;
  overflow-wrap: break-word;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.watch-button {
  gap: 10px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 999px;
  padding: 0 28px;
  border: 1px solid rgba(255, 47, 156, 0.75);
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 900;
  text-transform: uppercase;
  white-space: nowrap;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

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

.button.primary {
  background: linear-gradient(90deg, #ff0f6f, #ff3aa8);
  border-color: rgba(255, 47, 156, 0.92);
  box-shadow: 0 0 24px rgba(255, 15, 111, 0.54), inset 0 0 14px rgba(255, 255, 255, 0.2);
}

.button.ghost {
  background: rgba(5, 5, 12, 0.62);
  box-shadow: 0 0 20px rgba(255, 47, 156, 0.28), inset 0 0 18px rgba(255, 47, 156, 0.1);
}

.subscribe-band,
.split-section,
.content-section,
.links-section,
.site-footer {
  width: calc(100% - 40px);
  max-width: var(--max);
  margin-left: auto;
  margin-right: auto;
}

.subscribe-band {
  display: grid;
  grid-template-columns: auto minmax(230px, 1fr) minmax(360px, 0.9fr);
  align-items: center;
  gap: 28px;
  margin-top: -14px;
  padding: clamp(22px, 4vw, 36px);
  border: 1px solid rgba(255, 47, 156, 0.7);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(255, 47, 156, 0.12), transparent 35%, rgba(0, 217, 255, 0.08)),
    rgba(3, 3, 7, 0.84);
  box-shadow:
    0 0 24px rgba(255, 47, 156, 0.22),
    inset 0 0 28px rgba(255, 47, 156, 0.08);
}

.mail-icon {
  width: clamp(64px, 8vw, 96px);
  color: #ff8cff;
  filter: drop-shadow(0 0 14px rgba(255, 140, 255, 0.86));
}

.mail-icon svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 3.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.subscribe-copy h2,
.section-copy h2,
.content-section h2 {
  margin-bottom: 12px;
  font-size: clamp(1.8rem, 4vw, 3.1rem);
  line-height: 1;
  text-transform: uppercase;
}

.subscribe-copy p,
.section-copy p,
.content-card p {
  color: var(--muted);
  line-height: 1.72;
}

.subscribe-copy p {
  margin-bottom: 0;
}

.subscribe-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
}

.subscribe-form input {
  width: 100%;
  min-height: 54px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  padding: 0 20px;
  color: var(--white);
  background: rgba(0, 0, 0, 0.58);
  outline: none;
  box-shadow: inset 0 0 18px rgba(0, 217, 255, 0.04);
}

.subscribe-form input:focus {
  border-color: rgba(0, 217, 255, 0.7);
  box-shadow: 0 0 16px rgba(0, 217, 255, 0.28), inset 0 0 18px rgba(0, 217, 255, 0.08);
}

.form-status {
  grid-column: 1 / -1;
  min-height: 20px;
  margin: 0;
  color: var(--cyan);
  font-size: 0.92rem;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(340px, 1.12fr);
  gap: clamp(34px, 7vw, 86px);
  align-items: center;
  padding: clamp(64px, 10vw, 112px) 0 36px;
}

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

.section-copy p {
  margin-bottom: 18px;
}

.section-copy .button {
  margin-top: 10px;
}

.neon-frame {
  position: relative;
  border: 1px solid rgba(255, 47, 156, 0.48);
  border-radius: 8px;
  overflow: hidden;
  background: var(--panel-strong);
  box-shadow: 0 0 32px rgba(255, 47, 156, 0.18), 0 0 58px rgba(0, 217, 255, 0.1);
}

.neon-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.36) 100%);
  pointer-events: none;
}

.neon-frame img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.clip-badge {
  position: absolute;
  left: 20px;
  bottom: 18px;
  z-index: 2;
  padding: 9px 13px;
  border: 1px solid rgba(0, 217, 255, 0.55);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.62);
  color: var(--cyan);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
  box-shadow: 0 0 20px rgba(0, 217, 255, 0.2);
}

.content-section {
  padding: 56px 0 34px;
}

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

.section-heading h2 {
  margin-bottom: 0;
}

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

.content-card,
.social-card {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 47, 156, 0.08), rgba(0, 217, 255, 0.04)),
    rgba(3, 3, 7, 0.72);
  box-shadow: inset 0 0 24px rgba(255, 255, 255, 0.025);
}

.content-card {
  min-height: 214px;
  padding: 24px;
}

.card-number {
  display: inline-flex;
  margin-bottom: 32px;
  color: var(--cyan);
  font-size: 0.86rem;
  font-weight: 900;
  text-shadow: 0 0 12px rgba(0, 217, 255, 0.8);
}

.content-card h3 {
  margin-bottom: 10px;
  font-size: 1.32rem;
  text-transform: uppercase;
}

.content-card p {
  margin-bottom: 0;
}

.links-section {
  padding: 58px 0 72px;
  text-align: center;
}

.links-section .script-label {
  margin-bottom: 28px;
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 20px;
}

.social-card {
  min-height: 164px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 18px 12px;
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.social-card:hover,
.social-card:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(255, 47, 156, 0.64);
  box-shadow: 0 0 26px rgba(255, 47, 156, 0.2), inset 0 0 24px rgba(255, 255, 255, 0.03);
}

.social-card strong {
  font-size: 0.92rem;
  text-transform: uppercase;
}

.social-card span:last-child {
  color: var(--dim);
  font-size: 0.88rem;
}

.social-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  color: var(--white);
  margin-bottom: 6px;
}

.social-icon svg {
  width: 54px;
  height: 54px;
  fill: none;
  stroke: currentColor;
  stroke-width: 3;
  stroke-linejoin: round;
  stroke-linecap: round;
}

.text-mark {
  font-size: 2.8rem;
  font-weight: 900;
  line-height: 1;
}

.youtube .social-icon {
  color: #ff255e;
  filter: drop-shadow(0 0 12px rgba(255, 37, 94, 0.78));
}

.tiktok .social-icon {
  color: #f9fbff;
  text-shadow: -2px 0 0 #00d9ff, 2px 0 0 #ff2f9c, 0 0 18px rgba(255, 255, 255, 0.8);
}

.instagram .social-icon {
  color: #ff4fd3;
  filter: drop-shadow(0 0 12px rgba(255, 79, 211, 0.8));
}

.x-card .social-icon {
  color: #ffffff;
  text-shadow: 0 0 14px rgba(255, 255, 255, 0.8);
}

.discord .social-icon {
  color: #6c82ff;
  text-shadow: 0 0 18px rgba(108, 130, 255, 0.8);
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 24px;
  padding: 30px 0 42px;
  border-top: 1px solid rgba(255, 47, 156, 0.3);
  color: var(--dim);
  font-size: 0.88rem;
}

.site-footer p {
  margin-bottom: 0;
}

.site-footer img {
  width: 70px;
  opacity: 0.78;
  filter: drop-shadow(0 0 10px rgba(255, 47, 156, 0.42));
}

.site-footer nav {
  display: flex;
  justify-content: flex-end;
  gap: 26px;
  text-transform: uppercase;
  font-weight: 700;
}

@media (max-width: 900px) {
  .site-header {
    width: calc(100% - 28px);
    padding-top: 16px;
  }

  .menu-toggle {
    display: flex;
  }

  .site-nav {
    position: absolute;
    top: 70px;
    right: 0;
    display: grid;
    width: min(320px, calc(100vw - 28px));
    gap: 4px;
    padding: 16px;
    border: 1px solid rgba(255, 47, 156, 0.45);
    border-radius: 8px;
    background: rgba(3, 3, 8, 0.96);
    box-shadow: 0 0 28px rgba(255, 47, 156, 0.22);
    transform: translateY(-10px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 160ms ease, transform 160ms ease;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a,
  .site-nav .nav-pill {
    padding: 13px 14px;
  }

  .site-nav a::after {
    display: none;
  }

  .hero {
    min-height: 580px;
    padding-top: 98px;
  }

  .hero-wall {
    margin-top: 0;
  }

  .subscribe-band {
    grid-template-columns: auto 1fr;
  }

  .subscribe-form {
    grid-column: 1 / -1;
  }

  .split-section {
    grid-template-columns: 1fr;
  }

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

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

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

  .site-footer {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .site-footer nav {
    justify-content: center;
    flex-wrap: wrap;
  }
}

@media (max-width: 560px) {
  .hero {
    min-height: 560px;
    padding-left: 0;
    padding-right: 0;
    overflow: hidden;
  }

  .hero-wall {
    width: 100vw;
    aspect-ratio: 1.42;
    background-size: cover;
  }

  .hero-tagline {
    width: calc(100vw - 40px);
    max-width: 340px;
    font-size: clamp(1.06rem, 5.8vw, 1.42rem);
    line-height: 1.25;
  }

  .button {
    width: 100%;
    padding-left: 18px;
    padding-right: 18px;
    white-space: normal;
    text-align: center;
  }

  .hero-actions {
    width: calc(100vw - 64px);
    max-width: 320px;
    margin: 0 auto;
  }

  .subscribe-band,
  .split-section,
  .content-section,
  .links-section,
  .site-footer {
    width: calc(100% - 28px);
  }

  .subscribe-band {
    grid-template-columns: 1fr;
  }

  .mail-icon {
    width: 70px;
  }

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

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

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
