:root {
  --ink: #17130f;
  --paper: #f7f0de;
  --sand: #d9c488;
  --sun: #ffbf2f;
  --flare: #f45b26;
  --blue: #0b78bd;
  --sea: #043b5c;
  --steel: #26313a;
  --white: #fffaf0;
  --terminal: #39ff88;
  --terminal-dim: #0d7f45;
  --terminal-dark: #031108;
  --dossier-text: #f0ecd8;
  --dossier-muted: #cfc8a9;
  --dossier-label: #ffc75a;
  --dossier-danger: #ff765a;
  --shadow: 0 24px 60px rgba(10, 12, 15, 0.22);
  --neon-arrow-cursor: url("assets/neon-arrow-cursor.svg") 3 2;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--dossier-text);
  background:
    radial-gradient(circle at 16% 0%, rgba(57, 255, 136, 0.08), transparent 32rem),
    radial-gradient(circle at 90% 32%, rgba(255, 191, 47, 0.08), transparent 30rem),
    linear-gradient(180deg, #020805 0%, #080807 48%, #050403 100%);
  cursor: var(--neon-arrow-cursor), auto;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

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

button,
input {
  font: inherit;
}

button {
  cursor: var(--neon-arrow-cursor), pointer;
}

a {
  color: inherit;
  cursor: var(--neon-arrow-cursor), pointer;
  text-decoration: none;
}

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

.site-header {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 20px;
  align-items: center;
  padding: 14px clamp(16px, 4vw, 48px);
  color: var(--white);
  background: linear-gradient(180deg, rgba(2, 8, 5, 0.95), rgba(2, 8, 5, 0.68) 72%, rgba(2, 8, 5, 0));
  border-bottom: 1px solid rgba(57, 255, 136, 0.1);
  box-shadow: 0 10px 34px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(10px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.brand-logo {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  border: 2px solid var(--terminal);
  border-radius: 50%;
  object-fit: cover;
  box-shadow:
    0 0 14px rgba(57, 255, 136, 0.48),
    4px 4px 0 rgba(0, 0, 0, 0.45);
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: clamp(12px, 2vw, 30px);
  font-size: 0.86rem;
  font-weight: 800;
  text-transform: uppercase;
}

.main-nav a,
.nav-action {
  border-bottom: 2px solid transparent;
}

.main-nav a:hover,
.nav-action:hover {
  border-color: var(--sun);
}

.nav-action {
  justify-self: end;
  padding: 10px 14px;
  background: var(--sun);
  color: var(--ink);
  font-weight: 900;
  text-transform: uppercase;
  box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.45);
}

.hero {
  position: relative;
  min-height: 76svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
  background: var(--steel);
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 37%;
  filter: saturate(1.05) contrast(1.05);
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.28) 46%, rgba(0, 0, 0, 0.08)),
    linear-gradient(0deg, rgba(2, 8, 5, 0.96) 0%, rgba(2, 8, 5, 0.7) 18%, transparent 52%);
}

.hero-content {
  position: relative;
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  justify-items: center;
  padding: 92px 0 112px;
  text-align: center;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--sun);
  font-size: 0.84rem;
  font-weight: 1000;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 9ch;
  margin: 0;
  font-family: Impact, Haettenschweiler, "Arial Black", sans-serif;
  font-size: clamp(5rem, 17vw, 13rem);
  line-height: 0.78;
  letter-spacing: 0;
  text-transform: uppercase;
  text-shadow: 8px 8px 0 rgba(0, 0, 0, 0.62);
}

.hero-copy {
  max-width: 660px;
  margin: 22px 0 0;
  padding: 12px clamp(14px, 2.4vw, 22px);
  color: #f1e4c5;
  background:
    linear-gradient(90deg, transparent, rgba(6, 4, 3, 0.58) 12% 88%, transparent),
    rgba(6, 4, 3, 0.18);
  border-top: 1px solid rgba(255, 199, 90, 0.28);
  border-bottom: 1px solid rgba(255, 199, 90, 0.18);
  border-radius: 4px;
  font-size: clamp(1rem, 1.65vw, 1.22rem);
  line-height: 1.48;
  font-weight: 720;
  text-shadow:
    0 2px 12px rgba(0, 0, 0, 0.78),
    0 0 18px rgba(255, 118, 90, 0.14);
  backdrop-filter: blur(4px);
  text-wrap: balance;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: center;
  margin-top: 22px;
}

.social-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: center;
  margin-top: 14px;
}

.cinema-hub {
  position: relative;
  z-index: 1;
  width: min(560px, 92vw);
  margin-top: clamp(16px, 2vw, 24px);
  padding: 12px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(255, 191, 47, 0.12), rgba(244, 91, 38, 0.1)),
    rgba(5, 7, 10, 0.88);
  border: 3px solid rgba(255, 250, 240, 0.88);
  box-shadow:
    0 0 34px rgba(255, 191, 47, 0.62),
    0 0 82px rgba(244, 91, 38, 0.52),
    0 30px 90px rgba(0, 0, 0, 0.72);
}

.cinema-hub::before,
.cinema-hub::after {
  content: "";
  position: absolute;
  inset: -16px;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 191, 47, 0.38), transparent 54%),
    conic-gradient(from 20deg, rgba(244, 91, 38, 0.2), rgba(11, 120, 189, 0.2), rgba(255, 191, 47, 0.24), rgba(244, 91, 38, 0.2));
  filter: blur(18px);
}

.cinema-hub::after {
  inset: -7px;
  border: 2px solid rgba(255, 191, 47, 0.88);
  background: none;
  filter: none;
}

.cinema-frame {
  position: relative;
  margin: 0;
  padding: 10px;
  background: #05070a;
  border: 4px solid var(--sun);
  box-shadow:
    inset 0 0 0 2px rgba(255, 250, 240, 0.72),
    inset 0 0 38px rgba(244, 91, 38, 0.34),
    0 0 42px rgba(255, 191, 47, 0.5);
}

.cinema-frame::before,
.cinema-frame::after {
  content: "";
  position: absolute;
  top: 10px;
  bottom: 10px;
  width: 10px;
  background:
    linear-gradient(var(--sun), var(--sun)) 0 0 / 10px 4px repeat-y,
    #17130f;
}

.cinema-frame::before {
  left: -18px;
}

.cinema-frame::after {
  right: -18px;
}

.feature-video {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  background: #05070a;
}

.sound-primer {
  position: absolute;
  right: 18px;
  bottom: 18px;
  z-index: 2;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  padding: 0;
  border: 2px solid rgba(255, 250, 240, 0.9);
  border-radius: 50%;
  background: rgba(5, 7, 10, 0.82);
  color: var(--sun);
  box-shadow:
    0 0 18px rgba(255, 191, 47, 0.6),
    0 0 42px rgba(244, 91, 38, 0.38);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.sound-primer svg {
  width: 25px;
  height: 25px;
  fill: currentColor;
}

.sound-primer:hover {
  transform: scale(1.06);
}

.cinema-hub[data-sound-on] .sound-primer {
  opacity: 0;
  pointer-events: none;
  transform: scale(0.88);
}

.button,
.social-button {
  border: 2px solid var(--ink);
  box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.35);
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease,
    color 160ms ease;
}

.button:hover,
.social-button:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 rgba(0, 0, 0, 0.35);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  font-weight: 950;
  text-transform: uppercase;
}

.button.primary {
  background: var(--sun);
  color: var(--ink);
}

.button.ghost {
  border-color: var(--white);
  background: rgba(255, 250, 240, 0.1);
  color: var(--white);
}

.button.dark {
  background: var(--ink);
  color: var(--white);
}

.social-button {
  display: inline-grid;
  width: 48px;
  height: 48px;
  place-items: center;
  background: rgba(255, 250, 240, 0.12);
  color: var(--white);
  border-color: rgba(255, 250, 240, 0.82);
}

.social-button svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.social-button.twitter:hover {
  background: #111111;
  color: var(--white);
}

.social-button.telegram:hover {
  background: #2aabee;
  color: var(--white);
}

.social-button.pumpfun {
  width: 112px;
  background: #8ee34b;
  color: var(--ink);
  font-weight: 1000;
  font-size: 0.98rem;
  line-height: 1;
  text-transform: lowercase;
}

.social-button.pumpfun:hover {
  background: var(--sun);
}

.social-button.ca-box {
  display: inline-flex;
  width: auto;
  max-width: min(100%, 468px);
  min-height: 48px;
  min-width: 260px;
  gap: 8px;
  padding: 8px 12px;
  cursor: default;
  background: rgba(5, 7, 10, 0.72);
  color: #f1e4c5;
  border-color: rgba(255, 191, 47, 0.82);
  box-shadow:
    0 0 18px rgba(255, 191, 47, 0.28),
    4px 4px 0 rgba(0, 0, 0, 0.35);
  font-weight: 950;
  text-transform: uppercase;
}

.social-button.ca-box span {
  color: var(--sun);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
}

.social-button.ca-box strong {
  min-width: 0;
  font-size: clamp(0.62rem, 1.2vw, 0.78rem);
  line-height: 1.16;
  text-transform: none;
  overflow-wrap: anywhere;
}

.social-button.ca-box:hover {
  transform: none;
  background: rgba(5, 7, 10, 0.82);
}

.fee-note {
  width: min(620px, calc(100% - 24px));
  margin: 12px auto 0;
  padding: 8px 12px;
  color: #f1e4c5;
  font-size: clamp(0.76rem, 1.3vw, 0.95rem);
  font-weight: 850;
  line-height: 1.35;
  text-align: center;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.82);
  background: linear-gradient(90deg, rgba(5, 7, 10, 0), rgba(5, 7, 10, 0.74), rgba(5, 7, 10, 0));
  border-top: 1px solid rgba(255, 191, 47, 0.42);
  border-bottom: 1px solid rgba(255, 191, 47, 0.3);
}

.threat-strip {
  position: absolute;
  left: clamp(16px, 4vw, 48px);
  right: clamp(16px, 4vw, 48px);
  bottom: 18px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 2px solid rgba(255, 250, 240, 0.72);
  background: rgba(8, 10, 12, 0.72);
  backdrop-filter: blur(8px);
}

.threat-strip div {
  min-width: 0;
  padding: 14px clamp(12px, 2vw, 22px);
  border-right: 1px solid rgba(255, 250, 240, 0.28);
}

.threat-strip div:last-child {
  border-right: 0;
}

.threat-strip span {
  display: block;
  margin-bottom: 4px;
  color: var(--sun);
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
}

.threat-strip strong {
  display: block;
  overflow-wrap: anywhere;
  font-size: clamp(1rem, 2vw, 1.35rem);
  text-transform: uppercase;
}

.section {
  padding: clamp(38px, 5vw, 70px) clamp(16px, 4vw, 48px);
}

.section-heading {
  width: min(900px, 100%);
  margin: 0 auto clamp(20px, 3vw, 34px);
}

.section-heading.compact {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
}

.section-heading h2 {
  margin: 0;
  font-family: Impact, Haettenschweiler, "Arial Black", sans-serif;
  font-size: clamp(2rem, 5vw, 4.1rem);
  line-height: 0.92;
  letter-spacing: 0;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.section-heading p:not(.eyebrow) {
  max-width: 720px;
  margin: 18px 0 0;
  color: #4d4036;
  font-size: clamp(1rem, 1.5vw, 1.22rem);
  line-height: 1.6;
  font-weight: 650;
}

.briefing-section {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 86% 18%, transparent 0 78px, rgba(255, 191, 47, 0.3) 79px 81px, transparent 82px 132px, rgba(255, 191, 47, 0.18) 133px 135px, transparent 136px),
    linear-gradient(90deg, rgba(255, 191, 47, 0.1) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 191, 47, 0.08) 1px, transparent 1px),
    #101711;
  background-size: auto, 32px 32px, 32px 32px, auto;
}

.briefing-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    repeating-linear-gradient(135deg, rgba(255, 191, 47, 0.18) 0 10px, transparent 10px 22px),
    linear-gradient(115deg, transparent 0 42%, rgba(11, 120, 189, 0.16) 42% 43%, transparent 43% 100%);
  opacity: 0.54;
}

.briefing-section::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 12px;
  background: repeating-linear-gradient(90deg, var(--terminal) 0 16px, #020805 16px 32px);
  box-shadow: 0 0 18px rgba(57, 255, 136, 0.38);
}

.briefing-shell {
  position: relative;
  z-index: 1;
  width: min(1100px, 100%);
  margin: 0 auto;
  padding: clamp(16px, 2.4vw, 28px);
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  gap: clamp(18px, 3vw, 30px);
  align-items: start;
  border: 3px solid rgba(255, 250, 240, 0.82);
  background:
    linear-gradient(135deg, rgba(255, 191, 47, 0.1), transparent 34%),
    rgba(15, 20, 16, 0.94);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.4);
}

.briefing-shell::before {
  content: "";
  position: absolute;
  inset: 14px;
  pointer-events: none;
  border: 1px solid rgba(255, 250, 240, 0.18);
}

.briefing-heading {
  width: 100%;
  grid-column: 1;
  margin: 0;
  padding-bottom: 0;
  border-bottom: 0;
}

.briefing-kicker {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 2px solid var(--sun);
  background: rgba(7, 9, 8, 0.7);
  color: var(--sun);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.briefing-kicker span {
  min-width: 0;
  padding: 10px 12px;
  border-right: 1px solid rgba(255, 191, 47, 0.42);
  overflow-wrap: anywhere;
}

.briefing-kicker span:last-child {
  border-right: 0;
}

.briefing-title-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  align-items: start;
  margin-top: clamp(22px, 3vw, 34px);
}

.briefing-heading h2 {
  color: var(--white);
  text-shadow: 5px 5px 0 rgba(0, 0, 0, 0.48);
}

.briefing-heading p:not(.eyebrow) {
  color: rgba(255, 250, 240, 0.78);
}

.classified-stamp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: start;
  min-width: 146px;
  min-height: 58px;
  padding: 8px 16px;
  border: 5px solid var(--flare);
  color: #ff7348;
  font-size: clamp(1.1rem, 1.8vw, 1.45rem);
  line-height: 1;
  text-transform: uppercase;
  transform: rotate(-3deg);
  box-shadow: inset 0 0 0 2px rgba(244, 91, 38, 0.34);
}

.mission-strip {
  display: grid;
  grid-column: 1;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-bottom: 0;
  border: 2px solid rgba(255, 250, 240, 0.7);
  background: rgba(7, 10, 8, 0.78);
}

.mission-strip div {
  position: relative;
  min-width: 0;
  padding: 14px 14px 14px 22px;
  border-right: 1px solid rgba(255, 250, 240, 0.2);
}

.mission-strip div::before {
  content: "";
  position: absolute;
  top: 16px;
  bottom: 16px;
  left: 10px;
  width: 4px;
  background: var(--flare);
}

.mission-strip div:last-child {
  border-right: 0;
}

.mission-strip div:nth-child(2n) {
  border-right: 0;
}

.mission-strip div:nth-child(-n + 2) {
  border-bottom: 1px solid rgba(255, 250, 240, 0.2);
}

.mission-strip span,
.panel-header,
.stat-list dt {
  font-size: 0.76rem;
  font-weight: 950;
  text-transform: uppercase;
}

.mission-strip span {
  display: block;
  margin-bottom: 4px;
  color: var(--sun);
}

.mission-strip strong {
  display: block;
  overflow-wrap: anywhere;
  color: var(--white);
  font-size: clamp(1rem, 1.7vw, 1.28rem);
  text-transform: uppercase;
}

.briefing-grid {
  width: 100%;
  margin: 0;
  display: grid;
  grid-template-columns: minmax(280px, 720px);
  gap: clamp(18px, 3vw, 32px);
  grid-row: 1 / span 2;
  grid-column: 2;
}

.profile-panel {
  position: relative;
  overflow: hidden;
  padding: clamp(18px, 2.5vw, 28px);
}

.tactical-panel {
  border: 2px solid rgba(255, 250, 240, 0.58);
  background:
    linear-gradient(90deg, rgba(255, 250, 240, 0.05) 50%, transparent 50%) 0 0 / 18px 18px,
    linear-gradient(135deg, rgba(11, 120, 189, 0.18), transparent 45%),
    rgba(9, 13, 10, 0.92);
  box-shadow: 10px 10px 0 rgba(0, 0, 0, 0.26);
}

.tactical-panel::before {
  content: "";
  position: absolute;
  inset: 10px;
  pointer-events: none;
  background:
    linear-gradient(var(--sun), var(--sun)) left top / 46px 3px no-repeat,
    linear-gradient(var(--sun), var(--sun)) left top / 3px 46px no-repeat,
    linear-gradient(var(--sun), var(--sun)) right top / 46px 3px no-repeat,
    linear-gradient(var(--sun), var(--sun)) right top / 3px 46px no-repeat,
    linear-gradient(var(--sun), var(--sun)) left bottom / 46px 3px no-repeat,
    linear-gradient(var(--sun), var(--sun)) left bottom / 3px 46px no-repeat,
    linear-gradient(var(--sun), var(--sun)) right bottom / 46px 3px no-repeat,
    linear-gradient(var(--sun), var(--sun)) right bottom / 3px 46px no-repeat;
}

.panel-header {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  justify-content: space-between;
  margin-bottom: 20px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 191, 47, 0.45);
  background: rgba(255, 191, 47, 0.11);
  color: var(--sun);
}

.profile-panel h3 {
  margin: 0 0 22px;
  color: var(--white);
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  text-transform: uppercase;
}

.stat-list {
  display: grid;
  gap: 10px;
  margin: 0;
}

.stat-list div {
  display: grid;
  grid-template-columns: minmax(84px, 0.42fr) minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  padding: 14px 12px;
  border: 1px solid rgba(255, 250, 240, 0.14);
  border-left: 4px solid rgba(244, 91, 38, 0.9);
  background: rgba(255, 250, 240, 0.04);
}

.stat-list dt {
  color: var(--sun);
}

.stat-list dd {
  margin: 0;
  color: var(--white);
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  font-weight: 850;
  overflow-wrap: anywhere;
}

.briefing-section {
  color: var(--dossier-text);
  background:
    radial-gradient(circle at 78% 18%, rgba(255, 199, 90, 0.12) 0 84px, transparent 86px),
    radial-gradient(circle at 10% 88%, rgba(244, 91, 38, 0.1), transparent 34%),
    radial-gradient(circle at 84% 108%, rgba(255, 191, 47, 0.1), transparent 36%),
    linear-gradient(90deg, rgba(129, 185, 112, 0.08) 1px, transparent 1px),
    linear-gradient(0deg, rgba(129, 185, 112, 0.06) 1px, transparent 1px),
    repeating-linear-gradient(180deg, rgba(255, 199, 90, 0.04) 0 2px, transparent 2px 10px),
    linear-gradient(180deg, #020805 0%, #040806 58%, #080706 100%);
  background-size: auto, auto, auto, 26px 26px, 26px 26px, auto, auto;
}

.briefing-section::before {
  background:
    linear-gradient(180deg, transparent 0 70%, rgba(115, 16, 16, 0.14) 100%),
    linear-gradient(90deg, transparent 0 18%, rgba(255, 199, 90, 0.06) 18% 19%, transparent 19% 100%),
    repeating-linear-gradient(135deg, rgba(129, 185, 112, 0.07) 0 10px, transparent 10px 24px),
    radial-gradient(circle at 14% 82%, rgba(255, 199, 90, 0.16), transparent 34%);
  opacity: 0.62;
}

.case-file {
  position: relative;
  z-index: 1;
  width: min(1120px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(230px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(18px, 4vw, 42px);
  align-items: center;
  padding: clamp(26px, 4vw, 42px);
  border: 3px solid rgba(255, 199, 90, 0.48);
  font-family: "Courier New", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  background:
    linear-gradient(90deg, rgba(129, 185, 112, 0.06) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 199, 90, 0.05) 1px, transparent 1px),
    linear-gradient(135deg, rgba(3, 13, 8, 0.98), rgba(20, 25, 14, 0.94));
  background-size: 30px 30px, 30px 30px, auto;
  box-shadow:
    0 0 36px rgba(255, 199, 90, 0.16),
    0 26px 80px rgba(0, 0, 0, 0.62),
    inset 0 0 0 10px rgba(255, 199, 90, 0.04);
}

.case-file::before {
  content: "";
  position: absolute;
  inset: 18px;
  pointer-events: none;
  border: 2px solid rgba(255, 199, 90, 0.2);
}

.case-file::after {
  content: "DWC-0001";
  position: absolute;
  right: clamp(22px, 4vw, 46px);
  bottom: clamp(20px, 3vw, 34px);
  color: rgba(255, 199, 90, 0.1);
  font-family: "Courier New", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-weight: 1000;
  font-size: clamp(3rem, 8vw, 7rem);
  line-height: 1;
  transform: rotate(-6deg);
}

.case-file .classified-stamp {
  position: absolute;
  z-index: 3;
  top: clamp(22px, 4vw, 40px);
  right: clamp(22px, 4vw, 42px);
  min-width: 166px;
  min-height: 62px;
  border-color: var(--dossier-danger);
  background: rgba(1, 8, 4, 0.74);
  color: var(--dossier-danger);
  font-family: "Courier New", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: clamp(1.15rem, 2vw, 1.72rem);
  font-weight: 1000;
  transform: rotate(8deg);
  text-shadow: 0 0 10px rgba(255, 118, 90, 0.62);
  box-shadow:
    inset 0 0 0 2px rgba(255, 118, 90, 0.18),
    0 0 18px rgba(255, 118, 90, 0.24);
}

.case-photo {
  position: relative;
  z-index: 2;
  margin: 0;
  padding: 12px 12px 54px;
  background: #0d100a;
  border: 1px solid rgba(255, 199, 90, 0.36);
  box-shadow:
    12px 18px 26px rgba(0, 0, 0, 0.45),
    0 0 24px rgba(255, 199, 90, 0.14);
  transform: rotate(-2.5deg);
}

.case-photo::before,
.case-photo::after {
  content: "";
  position: absolute;
  width: 78px;
  height: 24px;
  background: rgba(255, 199, 90, 0.2);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.38);
}

.case-photo::before {
  top: -12px;
  left: 26px;
  transform: rotate(-8deg);
}

.case-photo::after {
  right: 20px;
  bottom: 34px;
  transform: rotate(10deg);
}

.case-photo img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border: 2px solid rgba(255, 199, 90, 0.5);
  filter: contrast(1.05) saturate(1.02);
}

.case-photo figcaption {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 12px;
  display: flex;
  gap: 10px;
  align-items: baseline;
  justify-content: space-between;
  color: var(--dossier-text);
  text-transform: uppercase;
}

.case-photo figcaption span,
.case-meta span,
.case-facts dt,
.redacted-note span {
  font-size: 0.76rem;
  font-weight: 1000;
  text-transform: uppercase;
}

.case-photo figcaption span {
  color: var(--dossier-label);
}

.case-photo figcaption strong {
  color: var(--dossier-text);
  font-size: 0.86rem;
}

.case-copy {
  position: relative;
  z-index: 2;
  padding-top: 74px;
}

.case-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: clamp(20px, 3vw, 30px);
  border: 2px solid rgba(255, 199, 90, 0.42);
  background: rgba(1, 8, 4, 0.62);
}

.case-meta span {
  min-width: 0;
  padding: 10px 12px;
  border-right: 1px solid rgba(255, 199, 90, 0.22);
  color: var(--dossier-label);
  overflow-wrap: anywhere;
}

.case-meta span:last-child {
  border-right: 0;
}

.case-copy .eyebrow {
  color: var(--dossier-label);
}

.case-copy h2 {
  margin: 0;
  max-width: 100%;
  color: var(--dossier-text);
  font-family: "Courier New", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: clamp(2.2rem, 5.2vw, 4.7rem);
  line-height: 0.98;
  font-weight: 1000;
  letter-spacing: 0;
  text-transform: uppercase;
  overflow-wrap: anywhere;
  text-shadow:
    0 0 12px rgba(255, 199, 90, 0.24),
    3px 3px 0 rgba(0, 0, 0, 0.72);
}

.case-copy p:not(.eyebrow) {
  max-width: 640px;
  margin: 18px 0 0;
  color: var(--dossier-muted);
  font-size: clamp(0.98rem, 1.34vw, 1.12rem);
  line-height: 1.52;
  font-weight: 800;
}

.redacted-note {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-top: 18px;
  padding: 12px;
  border: 2px dashed rgba(255, 199, 90, 0.42);
  background: rgba(1, 8, 4, 0.6);
}

.redacted-note strong {
  color: var(--dossier-text);
  font-size: clamp(1rem, 1.6vw, 1.25rem);
  line-height: 1.1;
  text-transform: uppercase;
  text-shadow: 0 0 12px rgba(255, 199, 90, 0.24);
}

.redacted-note span {
  color: var(--dossier-label);
}

.case-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 18px 0 0;
  border: 2px solid rgba(255, 199, 90, 0.38);
  background: rgba(1, 8, 4, 0.62);
}

.case-facts div {
  min-width: 0;
  padding: 12px;
  border-right: 1px solid rgba(255, 199, 90, 0.22);
  border-bottom: 1px solid rgba(255, 199, 90, 0.22);
}

.case-facts div:nth-child(2n) {
  border-right: 0;
}

.case-facts div:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.case-facts dt {
  color: var(--dossier-label);
}

.case-facts dd {
  margin: 4px 0 0;
  color: var(--dossier-text);
  font-weight: 900;
  overflow-wrap: anywhere;
}

.meme-section {
  position: relative;
  overflow: hidden;
  color: var(--dossier-text);
  padding-block: clamp(28px, 4vw, 48px);
  border-top: 1px solid rgba(57, 255, 136, 0.28);
  background:
    radial-gradient(circle at 18% 8%, rgba(57, 255, 136, 0.11), transparent 28%),
    radial-gradient(circle at 86% 92%, rgba(57, 255, 136, 0.07), transparent 26%),
    linear-gradient(180deg, rgba(1, 5, 3, 0.98) 0%, rgba(0, 0, 0, 0.96) 44%, rgba(1, 4, 2, 0.99) 100%),
    repeating-linear-gradient(90deg, rgba(57, 255, 136, 0.07) 0 1px, transparent 1px 32px),
    repeating-linear-gradient(0deg, rgba(57, 255, 136, 0.052) 0 1px, transparent 1px 24px),
    repeating-linear-gradient(90deg, #000000 0 36px, #040704 36px 70px, #010101 70px 74px),
    #000000;
  box-shadow:
    inset 0 34px 80px rgba(0, 0, 0, 0.86),
    inset 0 -26px 56px rgba(0, 0, 0, 0.88);
}

.meme-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.82), transparent 190px),
    repeating-linear-gradient(135deg, rgba(57, 255, 136, 0.06) 0 1px, transparent 1px 12px),
    linear-gradient(115deg, transparent 0 36%, rgba(57, 255, 136, 0.12) 36% 36.28%, transparent 36.28% 100%),
    radial-gradient(circle at 50% 0, rgba(57, 255, 136, 0.11), transparent 42%);
  opacity: 0.9;
}

.meme-section::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 92% 78%, rgba(57, 255, 136, 0.08), transparent 30%),
    repeating-linear-gradient(0deg, transparent 0 18px, rgba(57, 255, 136, 0.07) 18px 19px, transparent 19px 38px),
    repeating-linear-gradient(90deg, transparent 0 72px, rgba(0, 0, 0, 0.64) 72px 76px, transparent 76px 148px);
  opacity: 0.88;
}

.meme-section .section-heading p:not(.eyebrow) {
  color: rgba(255, 250, 240, 0.76);
}

.meme-section .section-heading,
.meme-section .meme-grid {
  position: relative;
  z-index: 1;
}

.meme-section .section-heading {
  margin-bottom: clamp(16px, 2.4vw, 24px);
}

.meme-section .section-heading h2 {
  color: var(--dossier-text);
  text-shadow:
    0 0 18px rgba(57, 255, 136, 0.22),
    0 0 32px rgba(57, 255, 136, 0.1),
    4px 4px 0 rgba(0, 0, 0, 0.56);
}

.meme-grid {
  width: min(1080px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(128px, 166px));
  gap: clamp(14px, 1.8vw, 22px);
  justify-content: center;
}

.meme-card {
  display: grid;
  align-content: start;
  position: relative;
  overflow: visible;
  padding: 8px;
  border: 7px solid #020302;
  background:
    linear-gradient(135deg, rgba(57, 255, 136, 0.09), transparent 42%),
    linear-gradient(180deg, #070b06, #010201);
  box-shadow:
    inset 0 0 0 1px rgba(57, 255, 136, 0.22),
    inset 0 0 0 5px rgba(0, 0, 0, 0.42),
    0 14px 20px rgba(0, 0, 0, 0.56),
    6px 6px 0 rgba(0, 0, 0, 0.34),
    0 0 20px rgba(57, 255, 136, 0.26),
    0 0 46px rgba(57, 255, 136, 0.08),
    0 0 70px rgba(0, 0, 0, 0.7);
  transform: rotate(-1.3deg);
}

.meme-card::before {
  content: "";
  position: absolute;
  top: -7px;
  left: 50%;
  z-index: 1;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 35%, #d7ffd8 0 2px, #39ff88 3px 5px, #050805 7px);
  box-shadow:
    0 0 10px rgba(57, 255, 136, 0.42),
    0 2px 4px rgba(0, 0, 0, 0.58);
  transform: translateX(-50%);
}

.meme-card.featured {
  border-color: #041006;
  box-shadow:
    inset 0 0 0 1px rgba(57, 255, 136, 0.26),
    inset 0 0 0 5px rgba(0, 0, 0, 0.42),
    0 16px 24px rgba(0, 0, 0, 0.6),
    0 0 24px rgba(57, 255, 136, 0.3),
    0 0 56px rgba(57, 255, 136, 0.12),
    0 0 82px rgba(0, 0, 0, 0.82);
  transform: rotate(1deg);
}

.meme-card:nth-child(3n) {
  transform: rotate(1.6deg);
}

.meme-card:nth-child(4n) {
  transform: rotate(-0.6deg);
}

.meme-card figure {
  position: relative;
  display: grid;
  overflow: hidden;
  margin: 0;
  background: #030503;
  box-shadow:
    inset 0 0 0 2px rgba(255, 250, 240, 0.1),
    inset 0 0 28px rgba(0, 0, 0, 0.58);
}

.meme-card img,
.meme-card video {
  width: 100%;
  aspect-ratio: 1 / 0.82;
  object-fit: cover;
  border: 1px solid rgba(255, 250, 240, 0.22);
  filter: sepia(0.16) saturate(1.08) contrast(1.04);
}

.meme-card video {
  display: block;
  background: #030503;
}

.meme-card figure::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(135deg, rgba(255, 250, 240, 0.18), transparent 32%),
    radial-gradient(circle at 50% 24%, transparent 0 44%, rgba(0, 0, 0, 0.3) 100%);
  mix-blend-mode: soft-light;
  opacity: 0.58;
}

.chopper-radio {
  position: fixed;
  right: clamp(12px, 2vw, 24px);
  bottom: clamp(12px, 2vw, 24px);
  z-index: 30;
  width: min(292px, calc(100vw - 24px));
  padding: 10px;
  overflow: hidden;
  color: #eaffdd;
  font-family: "Courier New", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  background:
    linear-gradient(135deg, rgba(57, 255, 136, 0.11), transparent 46%),
    repeating-linear-gradient(90deg, rgba(57, 255, 136, 0.08) 0 1px, transparent 1px 18px),
    linear-gradient(180deg, rgba(2, 8, 5, 0.96), rgba(3, 3, 2, 0.94));
  border: 2px solid rgba(57, 255, 136, 0.5);
  box-shadow:
    0 0 22px rgba(57, 255, 136, 0.26),
    0 0 58px rgba(0, 0, 0, 0.8),
    inset 0 0 0 1px rgba(255, 191, 47, 0.16);
}

.chopper-radio::before {
  content: "";
  position: absolute;
  inset: 6px;
  pointer-events: none;
  border: 1px solid rgba(255, 191, 47, 0.22);
}

.chopper-radio::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent, rgba(255, 191, 47, 0.16), transparent) -100% 0 / 68% 100% no-repeat,
    repeating-linear-gradient(0deg, transparent 0 7px, rgba(57, 255, 136, 0.055) 7px 8px);
  opacity: 0.72;
}

.chopper-radio[data-radio-state="playing"]::after {
  animation: radioSweep 1.6s linear infinite;
}

.radio-topline,
.radio-toggle,
.radio-meter {
  position: relative;
  z-index: 1;
}

.radio-topline {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
  color: var(--terminal);
  font-size: 0.72rem;
  font-weight: 1000;
  text-transform: uppercase;
}

.radio-topline strong {
  color: var(--sun);
}

.radio-toggle {
  display: flex;
  width: 100%;
  min-height: 58px;
  gap: 10px;
  align-items: center;
  padding: 9px 10px;
  color: #eaffdd;
  background:
    linear-gradient(90deg, rgba(57, 255, 136, 0.12), rgba(1, 8, 4, 0.84)),
    #020805;
  border: 1px solid rgba(57, 255, 136, 0.5);
  box-shadow:
    inset 0 0 18px rgba(57, 255, 136, 0.08),
    3px 3px 0 rgba(0, 0, 0, 0.44);
  text-align: left;
}

.radio-toggle:hover {
  border-color: rgba(255, 191, 47, 0.78);
}

.radio-toggle svg {
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  fill: currentColor;
  filter: drop-shadow(0 0 8px rgba(57, 255, 136, 0.44));
}

.radio-toggle span {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.radio-toggle strong,
.radio-toggle small {
  display: block;
  min-width: 0;
  overflow-wrap: anywhere;
}

.radio-toggle strong {
  color: var(--white);
  font-size: 0.82rem;
  line-height: 1.1;
  text-transform: uppercase;
}

.radio-toggle small {
  color: rgba(234, 255, 221, 0.7);
  font-size: 0.68rem;
  font-weight: 900;
  text-transform: uppercase;
}

.radio-icon-pause,
.chopper-radio[data-radio-state="playing"] .radio-icon-play {
  display: none;
}

.chopper-radio[data-radio-state="playing"] .radio-icon-pause {
  display: block;
}

.chopper-radio[data-radio-state="blocked"] {
  border-color: rgba(255, 191, 47, 0.68);
  box-shadow:
    0 0 24px rgba(255, 191, 47, 0.2),
    0 0 58px rgba(0, 0, 0, 0.8),
    inset 0 0 0 1px rgba(255, 191, 47, 0.18);
}

.radio-meter {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  height: 22px;
  align-items: end;
  margin-top: 8px;
}

.radio-meter span {
  display: block;
  height: 100%;
  transform: scaleY(0.32);
  transform-origin: bottom;
  background:
    linear-gradient(180deg, var(--sun), var(--terminal));
  box-shadow: 0 0 10px rgba(57, 255, 136, 0.34);
  opacity: 0.48;
}

.radio-meter span:nth-child(2n) {
  transform: scaleY(0.55);
}

.radio-meter span:nth-child(3n) {
  transform: scaleY(0.78);
}

.chopper-radio[data-radio-state="playing"] .radio-meter span {
  animation: radioMeter 520ms steps(2, end) infinite;
}

.chopper-radio[data-radio-state="playing"] .radio-meter span:nth-child(2) {
  animation-delay: 80ms;
}

.chopper-radio[data-radio-state="playing"] .radio-meter span:nth-child(3) {
  animation-delay: 160ms;
}

.chopper-radio[data-radio-state="playing"] .radio-meter span:nth-child(4) {
  animation-delay: 40ms;
}

.chopper-radio[data-radio-state="playing"] .radio-meter span:nth-child(5) {
  animation-delay: 220ms;
}

.chopper-radio[data-radio-state="playing"] .radio-meter span:nth-child(6) {
  animation-delay: 120ms;
}

.chopper-radio[data-radio-state="playing"] .radio-meter span:nth-child(7) {
  animation-delay: 260ms;
}

.site-footer {
  position: relative;
  overflow: hidden;
  padding: 18px 16px;
  background:
    radial-gradient(circle at 48% 0, rgba(57, 255, 136, 0.12), transparent 30%),
    repeating-linear-gradient(90deg, rgba(57, 255, 136, 0.075) 0 1px, transparent 1px 30px),
    repeating-linear-gradient(0deg, rgba(57, 255, 136, 0.06) 0 1px, transparent 1px 22px),
    linear-gradient(180deg, #010201 0%, #000000 100%);
  border-top: 1px solid rgba(57, 255, 136, 0.32);
  color: var(--white);
  text-align: center;
  font-weight: 850;
  text-transform: uppercase;
  box-shadow: inset 0 18px 46px rgba(0, 0, 0, 0.72);
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.36), transparent 54%),
    repeating-linear-gradient(135deg, rgba(57, 255, 136, 0.045) 0 1px, transparent 1px 12px);
  opacity: 0.84;
}

.site-footer p {
  position: relative;
  z-index: 1;
  display: inline-flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 8px 12px;
  background: rgba(1, 8, 4, 0.72);
  border: 1px solid rgba(57, 255, 136, 0.34);
  box-shadow:
    0 0 18px rgba(57, 255, 136, 0.12),
    inset 0 0 16px rgba(57, 255, 136, 0.06);
}

.site-footer img {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  object-fit: cover;
  box-shadow:
    0 0 14px rgba(57, 255, 136, 0.42),
    0 0 32px rgba(57, 255, 136, 0.16);
}

@keyframes radioMeter {
  0%,
  100% {
    transform: scaleY(0.28);
    opacity: 0.48;
  }

  50% {
    transform: scaleY(1);
    opacity: 1;
  }
}

@keyframes radioSweep {
  from {
    background-position: -100% 0, 0 0;
  }

  to {
    background-position: 210% 0, 0 0;
  }
}

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

  .main-nav {
    display: none;
  }

  .hero {
    min-height: 70svh;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding-top: 72px;
    padding-bottom: 18px;
  }

  .hero-content {
    padding: 92px 0 18px;
  }

  .cinema-hub {
    width: min(390px, calc(100vw - 56px));
  }

  .cinema-frame::before,
  .cinema-frame::after {
    display: none;
  }

  .hero-shade {
    background:
      linear-gradient(0deg, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.28)),
      linear-gradient(90deg, rgba(0, 0, 0, 0.68), transparent);
  }

  .threat-strip {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    width: calc(100% - 32px);
    margin: 0 auto;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .threat-strip div {
    padding: 10px 8px;
    border-right: 1px solid rgba(255, 250, 240, 0.28);
    border-bottom: 0;
  }

  .threat-strip div:last-child {
    border-right: 0;
  }

  .briefing-grid {
    grid-template-columns: 1fr;
    grid-row: auto;
    grid-column: 1;
  }

  .briefing-shell {
    grid-template-columns: 1fr;
  }

  .briefing-heading,
  .mission-strip {
    grid-column: 1;
  }

  .case-file {
    grid-template-columns: 1fr;
  }

  .case-file .classified-stamp {
    position: relative;
    top: auto;
    right: auto;
    justify-self: start;
    margin-top: 24px;
    transform: rotate(-3deg);
  }

  .case-photo {
    width: min(340px, 100%);
    justify-self: center;
    transform: rotate(-1deg);
  }

  .case-copy {
    padding-top: 0;
  }

  .briefing-kicker,
  .briefing-title-row {
    grid-template-columns: 1fr;
  }

  .briefing-kicker span {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 191, 47, 0.42);
  }

  .briefing-kicker span:last-child {
    border-bottom: 0;
  }

  .classified-stamp {
    justify-self: start;
    min-width: 158px;
    min-height: 62px;
  }

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

  .mission-strip div:nth-child(2n) {
    border-right: 0;
  }

  .mission-strip div:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 250, 240, 0.2);
  }

  .meme-grid {
    display: flex;
    grid-template-columns: none;
    overflow-x: auto;
    padding-bottom: 8px;
    scroll-snap-type: x mandatory;
  }

  .meme-card {
    min-width: min(48vw, 190px);
    scroll-snap-align: start;
  }
}

@media (max-width: 520px) {
  .brand span:last-child {
    display: none;
  }

  .nav-action {
    padding: 9px 10px;
    font-size: 0.8rem;
  }

  .hero h1 {
    font-size: clamp(3.7rem, 22vw, 6.4rem);
  }

  .cinema-hub {
    width: calc(100vw - 56px);
    padding: 8px;
  }

  .button {
    width: 100%;
  }

  .briefing-shell {
    padding: 14px;
  }

  .case-file {
    padding: 18px;
  }

  .case-photo {
    width: min(280px, 100%);
  }

  .case-copy h2 {
    font-size: clamp(2.35rem, 13vw, 4.2rem);
  }

  .case-meta {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .case-meta span,
  .case-meta span:last-child {
    border-right: 1px solid rgba(57, 255, 136, 0.34);
    border-bottom: 0;
  }

  .case-meta span:last-child {
    border-right: 0;
  }

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

  .case-facts div,
  .case-facts div:nth-child(2n),
  .case-facts div:nth-last-child(-n + 2) {
    border-right: 1px solid rgba(57, 255, 136, 0.3);
    border-bottom: 1px solid rgba(57, 255, 136, 0.3);
  }

  .case-facts div:nth-child(2n) {
    border-right: 0;
  }

  .case-facts div:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .case-facts div:last-child {
    border-bottom: 0;
  }

  .stat-list div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

}
