:root {
  --bg: #0c0c0c;
  --surface: #141414;
  --surface-2: #1a1a1a;
  --green: #39ff14;
  --red: #ff2d2d;
  --paper: #d4d0c8;
  --white: #f3f1e8;
  --muted: #777;
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
  margin: 0;
}

body {
  color: var(--white);
  background:
    radial-gradient(circle at 76% 20%, rgba(57, 255, 20, 0.14), transparent 30%),
    radial-gradient(circle at 15% 82%, rgba(255, 45, 45, 0.08), transparent 32%),
    linear-gradient(rgba(57, 255, 20, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(57, 255, 20, 0.035) 1px, transparent 1px),
    var(--bg);
  background-size: auto, auto, 48px 48px, 48px 48px, auto;
  font-family: Inter, system-ui, sans-serif;
  overflow-x: hidden;
}

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

.noise,
.scanlines {
  position: fixed;
  inset: 0;
  pointer-events: none;
}

.noise {
  z-index: 1;
  opacity: 0.08;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%' height='100%' filter='url(%23n)' opacity='.7'/></svg>");
}

.scanlines {
  z-index: 2;
  opacity: 0.45;
  mix-blend-mode: overlay;
  background: repeating-linear-gradient(rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 3px);
}

.page-shell {
  position: relative;
  z-index: 3;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.topbar {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 4vw, 56px);
  border-bottom: 1px solid rgba(57, 255, 20, 0.34);
  background: rgba(12, 12, 12, 0.82);
  backdrop-filter: blur(10px);
}

.brand {
  display: inline-flex;
  align-items: center;
  font-family: "Space Grotesk", Inter, sans-serif;
  font-weight: 800;
  letter-spacing: -0.03em;
  font-size: clamp(18px, 2vw, 28px);
  line-height: 1;
  white-space: nowrap;
}

.reticle {
  width: 0.82em;
  height: 0.82em;
  margin: 0 1px;
  border: 2px solid var(--green);
  border-radius: 50%;
  box-shadow: 0 0 12px rgba(57, 255, 20, 0.8);
  position: relative;
}

.reticle::before,
.reticle::after {
  content: "";
  position: absolute;
  background: var(--green);
}

.reticle::before {
  width: 160%;
  height: 2px;
  top: 50%;
  left: -30%;
}

.reticle::after {
  width: 2px;
  height: 160%;
  top: -30%;
  left: 50%;
}

nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 3vw, 34px);
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.22em;
}

nav a {
  color: var(--paper);
  transition: color 160ms ease, text-shadow 160ms ease;
}

nav a:hover {
  color: var(--green);
  text-shadow: 0 0 10px rgba(57, 255, 20, 0.85);
}

.subscribe {
  color: var(--bg);
  background: var(--green);
  padding: 12px 16px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.hero {
  flex: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 460px);
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
  width: min(1220px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(48px, 9vh, 110px) 0 42px;
}

.hero::before {
  content: "";
  position: fixed;
  inset: 74px 0 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(12, 12, 12, 0.66), rgba(12, 12, 12, 0.2)),
    url("/assets/hero-bg.jpg") center / cover no-repeat;
  opacity: 0.4;
}

.eyebrow,
.microcopy {
  font-family: "JetBrains Mono", monospace;
  color: var(--green);
  text-shadow: 0 0 10px rgba(57, 255, 20, 0.8);
  letter-spacing: 0.22em;
  font-size: clamp(10px, 1.4vw, 13px);
  text-transform: uppercase;
}

h1 {
  margin: 18px 0 0;
  display: grid;
  gap: 10px;
  font-family: "Space Grotesk", Inter, sans-serif;
  line-height: 0.84;
  letter-spacing: 0;
}

h1 span {
  position: relative;
  width: fit-content;
  color: var(--green);
  font-size: clamp(92px, 18vw, 220px);
  font-weight: 800;
  text-shadow: 0 0 24px rgba(57, 255, 20, 0.72);
}

h1 span::before,
h1 span::after {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.32;
  mix-blend-mode: screen;
}

h1 span::before {
  color: var(--red);
  transform: translate(-4px, 2px);
  clip-path: inset(0 0 58% 0);
}

h1 span::after {
  color: var(--green);
  transform: translate(4px, -2px);
  clip-path: inset(54% 0 0 0);
}

h1 strong {
  color: var(--white);
  font-size: clamp(42px, 7vw, 92px);
  font-weight: 800;
}

.lede {
  max-width: 760px;
  margin: 30px 0 0;
  color: var(--paper);
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: clamp(21px, 3vw, 34px);
  font-style: italic;
  font-weight: 700;
  line-height: 1.22;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0 22px;
  border: 1px solid var(--green);
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.primary {
  background: var(--green);
  color: var(--bg);
  box-shadow: 0 0 24px rgba(57, 255, 20, 0.28);
}

.secondary {
  color: var(--green);
}

.microcopy {
  margin-top: 24px;
  color: rgba(212, 208, 200, 0.66);
  text-shadow: none;
}

.dossier {
  position: relative;
  display: grid;
  gap: 16px;
}

.image-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(57, 255, 20, 0.58);
  background: var(--surface);
  box-shadow: 0 0 20px rgba(57, 255, 20, 0.2), inset 0 0 0 1px rgba(57, 255, 20, 0.18);
}

.image-card img {
  display: block;
  width: 100%;
  aspect-ratio: 0.86;
  object-fit: cover;
  opacity: 0.94;
  filter: contrast(1.1) saturate(1.15);
}

.image-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(12, 12, 12, 0.82));
}

.rec,
.confirmed {
  position: absolute;
  z-index: 2;
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.2em;
  padding: 7px 9px;
  background: rgba(12, 12, 12, 0.72);
  border: 1px solid rgba(57, 255, 20, 0.5);
}

.rec {
  top: 14px;
  left: 14px;
  color: var(--green);
}

.confirmed {
  right: 14px;
  bottom: 14px;
  color: var(--red);
  border-color: rgba(255, 45, 45, 0.62);
}

.case-file {
  background: rgba(20, 20, 20, 0.92);
  border: 1px solid rgba(57, 255, 20, 0.52);
  box-shadow: 0 0 18px rgba(57, 255, 20, 0.18);
  padding: 18px;
  font-family: "JetBrains Mono", monospace;
  color: var(--green);
}

.case-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(57, 255, 20, 0.28);
  font-size: 11px;
  letter-spacing: 0.08em;
}

dl {
  margin: 14px 0 0;
  display: grid;
  gap: 8px;
}

dl div {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 14px;
  font-size: 12px;
}

dt {
  color: rgba(57, 255, 20, 0.64);
}

dd {
  margin: 0;
  color: var(--paper);
}

.redaction {
  color: transparent;
  background: #000;
  user-select: none;
}

.ticker {
  border-top: 1px solid rgba(57, 255, 20, 0.3);
  border-bottom: 1px solid rgba(57, 255, 20, 0.3);
  overflow: hidden;
  padding: 13px 0;
  background: rgba(12, 12, 12, 0.8);
}

.ticker div {
  display: inline-flex;
  gap: 42px;
  white-space: nowrap;
  color: var(--green);
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-shadow: 0 0 8px rgba(57, 255, 20, 0.65);
  animation: ticker 36s linear infinite;
}

.ticker span::before {
  content: ".";
  margin-right: 42px;
}

@keyframes ticker {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 860px) {
  .topbar {
    align-items: flex-start;
    flex-direction: column;
  }

  nav {
    width: 100%;
    justify-content: space-between;
    gap: 10px;
  }

  .hero {
    grid-template-columns: 1fr;
    padding-top: 42px;
  }

  .dossier {
    max-width: 520px;
  }
}

@media (max-width: 560px) {
  .topbar {
    padding-inline: 16px;
  }

  nav a:not(.subscribe) {
    display: none;
  }

  .hero {
    width: min(100% - 28px, 1220px);
  }

  .actions a {
    width: 100%;
  }

  dl div {
    grid-template-columns: 80px 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ticker div {
    animation: none;
  }
}
