:root {
  --ink: #f6f1e8;
  --muted: #bdb6aa;
  --dim: #79716a;
  --bg: #070809;
  --panel: #111316;
  --panel-2: #191a1d;
  --line: rgba(246, 241, 232, 0.14);
  --line-strong: rgba(246, 241, 232, 0.28);
  --red: #e22b2b;
  --red-dark: #791616;
  --amber: #d8a638;
  --blue: #426a87;
  --green: #3e7c59;
  --shadow: 0 26px 80px rgba(0, 0, 0, 0.4);
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(180deg, #070809 0%, #141010 44%, #08090a 100%);
  background-size: 58px 58px, 58px 58px, auto;
  color: var(--ink);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  min-height: 100vh;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(226, 43, 43, 0.13), transparent 20%, transparent 80%, rgba(66, 106, 135, 0.12)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent 18%, transparent 76%, rgba(0, 0, 0, 0.55));
  mix-blend-mode: screen;
  opacity: 0.5;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 22px;
  align-items: center;
  min-height: 76px;
  padding: 12px clamp(18px, 4vw, 54px);
  border-bottom: 1px solid var(--line);
  background: rgba(7, 8, 9, 0.84);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand__avatar {
  width: 46px;
  height: 46px;
  object-fit: cover;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
}

.brand__text {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.brand__name {
  font-size: 0.98rem;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.eyebrow,
.signal-label,
.section-kicker,
.media__role,
.desk-stats dt,
.archive-list span,
.archive-list em {
  color: var(--amber);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.71rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 8px;
  padding: 4px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.035);
}

.nav-links a {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  padding: 0 13px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 700;
}

.nav-links a:hover {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.06);
}

.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  background: linear-gradient(180deg, var(--red), #a91414);
  color: #fff7ef;
  font-size: 0.92rem;
  font-weight: 900;
  text-transform: uppercase;
  box-shadow: 0 14px 34px rgba(226, 43, 43, 0.24);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.42);
}

.button--small {
  min-height: 40px;
  padding: 0 14px;
}

.button--ghost {
  background: rgba(255, 255, 255, 0.055);
  box-shadow: none;
}

.button svg,
.text-link svg,
.play-stamp svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.section-shell {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(380px, 0.78fr);
  gap: clamp(26px, 5vw, 64px);
  align-items: center;
  min-height: calc(100svh - 76px);
  padding: clamp(54px, 7vw, 86px) 0 42px;
}

.hero > *,
.lead-story__card > *,
.signal-board__inner > *,
.contact__panel > * {
  min-width: 0;
}

.hero__copy {
  position: relative;
  padding-left: clamp(0px, 1vw, 16px);
}

.hero__copy::before {
  content: "";
  position: absolute;
  left: -20px;
  top: 2px;
  width: 4px;
  height: 132px;
  background: linear-gradient(180deg, var(--red), var(--amber), transparent);
}

.hero h1 {
  margin: 15px 0 18px;
  max-width: 740px;
  font-size: clamp(3rem, 8vw, 6.8rem);
  line-height: 0.92;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero__lead {
  max-width: 660px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1.02rem, 1.8vw, 1.26rem);
  line-height: 1.65;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.desk-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  max-width: 690px;
  margin: 36px 0 0;
  border: 1px solid var(--line);
}

.desk-stats div {
  min-height: 94px;
  display: grid;
  align-content: center;
  gap: 6px;
  padding: 18px;
  border-right: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.035);
}

.desk-stats div:last-child {
  border-right: 0;
}

.desk-stats dd {
  margin: 0;
  font-size: clamp(1.32rem, 3vw, 2.1rem);
  font-weight: 900;
}

.hero__media {
  position: relative;
  overflow: hidden;
  min-height: 640px;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background: #090a0c;
  box-shadow: var(--shadow);
}

.hero__media::before,
.hero__media::after {
  content: "";
  position: absolute;
  z-index: 2;
  width: 60px;
  height: 60px;
  pointer-events: none;
}

.hero__media::before {
  left: 18px;
  top: 18px;
  border-left: 2px solid var(--amber);
  border-top: 2px solid var(--amber);
}

.hero__media::after {
  right: 18px;
  bottom: 18px;
  border-right: 2px solid var(--red);
  border-bottom: 2px solid var(--red);
}

.hero__banner {
  width: 100%;
  height: 100%;
  min-height: 640px;
  object-fit: cover;
  object-position: 62% center;
  filter: saturate(1.12) contrast(1.08);
}

.hero__media::selection {
  background: transparent;
}

.on-air {
  position: absolute;
  z-index: 3;
  top: 22px;
  right: 22px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(226, 43, 43, 0.62);
  background: rgba(9, 10, 12, 0.72);
  color: var(--ink);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
}

.on-air span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 0 rgba(226, 43, 43, 0.75);
  animation: pulse 1.6s infinite;
}

.media__footer {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  z-index: 3;
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 16px;
  align-items: center;
  padding: 16px;
  border: 1px solid var(--line-strong);
  background: rgba(7, 8, 9, 0.78);
  backdrop-filter: blur(16px);
}

.media__avatar {
  width: 76px;
  height: 76px;
  object-fit: cover;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
}

.media__footer h2,
.media__footer p {
  margin: 0;
}

.media__footer h2 {
  margin-top: 2px;
  font-size: clamp(1.2rem, 2vw, 1.8rem);
  text-transform: uppercase;
}

.media__footer p:last-child {
  margin-top: 5px;
  color: var(--muted);
  line-height: 1.45;
}

.ticker {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(226, 43, 43, 0.1);
}

.ticker span {
  min-height: 56px;
  display: grid;
  place-items: center;
  padding: 0 18px;
  border-right: 1px solid var(--line);
  color: var(--ink);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.82rem;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
}

.ticker span:nth-child(3) {
  color: var(--amber);
}

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

.lead-story,
.briefing-grid,
.archive,
.contact {
  padding: clamp(62px, 8vw, 104px) 0;
}

.section-kicker {
  margin: 0 0 12px;
}

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

.section-heading h2,
.signal-board h2,
.contact h2 {
  margin: 0;
  max-width: 800px;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
}

.lead-story__card {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.72fr);
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.035);
}

.lead-story__image {
  position: relative;
  min-height: 380px;
  overflow: hidden;
}

.lead-story__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #050505;
  transition: transform 260ms ease;
}

.lead-story__image:hover img {
  transform: scale(1.035);
}

.play-stamp {
  position: absolute;
  left: 18px;
  bottom: 18px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 0 12px;
  background: #0b0c0f;
  color: var(--ink);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
}

.lead-story__copy {
  display: grid;
  align-content: center;
  gap: 18px;
  padding: clamp(24px, 4vw, 46px);
  border-left: 1px solid var(--line);
}

.lead-story__copy h2 {
  margin: 0;
  font-size: clamp(1.72rem, 3.2vw, 3.1rem);
  line-height: 1.03;
  text-transform: uppercase;
}

.lead-story__copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  color: var(--ink);
  font-weight: 900;
  text-transform: uppercase;
}

.text-link:hover {
  color: var(--amber);
}

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

.briefing-grid .section-heading {
  grid-column: 1 / -1;
}

.story-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
}

.story-card a {
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.story-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 260ms ease;
}

.story-card:hover img {
  transform: scale(1.04);
}

.story-card__copy {
  min-height: 178px;
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 18px;
}

.story-card h3 {
  margin: 0;
  font-size: clamp(1.05rem, 1.6vw, 1.45rem);
  line-height: 1.17;
  text-transform: uppercase;
}

.signal-board {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(62, 124, 89, 0.16), transparent 35%, rgba(226, 43, 43, 0.12)),
    #0c0d0f;
}

.signal-board__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.74fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 72px);
  padding: clamp(62px, 8vw, 100px) 0;
}

.signal-board__columns {
  display: grid;
  gap: 0;
  border: 1px solid var(--line);
}

.signal-board__columns div {
  padding: 22px;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.035);
}

.signal-board__columns div:last-child {
  border-bottom: 0;
}

.signal-board__columns h3 {
  margin: 0 0 8px;
  color: var(--amber);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.78rem;
  text-transform: uppercase;
}

.signal-board__columns p {
  margin: 0;
  color: var(--muted);
  line-height: 1.58;
}

.archive-list {
  border: 1px solid var(--line);
}

.archive-list a {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr) 80px;
  gap: 18px;
  align-items: center;
  min-height: 72px;
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.025);
}

.archive-list a:last-child {
  border-bottom: 0;
}

.archive-list a:hover {
  background: rgba(226, 43, 43, 0.12);
}

.archive-list strong {
  min-width: 0;
  font-size: clamp(0.96rem, 1.4vw, 1.15rem);
  text-transform: uppercase;
}

.archive-list em {
  justify-self: end;
  color: var(--muted);
  font-style: normal;
}

.contact__panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: clamp(24px, 5vw, 46px);
  border: 1px solid var(--line-strong);
  background:
    linear-gradient(90deg, rgba(121, 22, 22, 0.35), transparent 50%, rgba(66, 106, 135, 0.22)),
    var(--panel);
}

.contact p {
  max-width: 760px;
  margin: 16px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.contact__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  justify-content: center;
  padding: 28px 20px 42px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.78rem;
  text-transform: uppercase;
}

.site-footer a {
  color: var(--ink);
}

@keyframes pulse {
  70% {
    box-shadow: 0 0 0 9px rgba(226, 43, 43, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(226, 43, 43, 0);
  }
}

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

  .nav-links {
    display: none;
  }

  .hero,
  .lead-story__card,
  .signal-board__inner,
  .contact__panel {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 0;
    padding-top: 48px;
  }

  .hero__media {
    min-height: 520px;
  }

  .hero__banner {
    min-height: 520px;
  }

  .lead-story__copy {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

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

  .contact__actions {
    justify-content: flex-start;
  }
}

@media (max-width: 680px) {
  .section-shell {
    width: min(100% - 28px, 1180px);
  }

  .site-header {
    min-height: 68px;
    padding: 10px 14px;
    gap: 10px;
  }

  .brand__name {
    font-size: 0.82rem;
  }

  .eyebrow {
    font-size: 0.64rem;
  }

  .button--small {
    min-height: 38px;
    padding: 0 11px;
  }

  .button--small svg {
    display: none;
  }

  .hero h1 {
    font-size: clamp(2.55rem, 14vw, 4.4rem);
  }

  .hero__copy::before {
    left: -12px;
    height: 96px;
  }

  .desk-stats,
  .ticker {
    grid-template-columns: 1fr;
  }

  .desk-stats div {
    min-height: 78px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .desk-stats div:last-child {
    border-bottom: 0;
  }

  .hero__media {
    min-height: 430px;
  }

  .hero__banner {
    min-height: 430px;
    object-position: 62% center;
  }

  .media__footer {
    grid-template-columns: 58px 1fr;
    left: 14px;
    right: 14px;
    bottom: 14px;
    padding: 12px;
  }

  .media__avatar {
    width: 58px;
    height: 58px;
  }

  .lead-story__image {
    min-height: 260px;
  }

  .archive-list a {
    grid-template-columns: 42px minmax(0, 1fr);
  }

  .archive-list em {
    grid-column: 2;
    justify-self: start;
  }
}
