:root {
  --abyss: #0b1628;
  --surface: #152238;
  --chrome: #1e2d42;
  --teal: #58e8c2;
  --cyan: #3ad8f0;
  --coral: #f06868;
  --platinum: #b8c6d4;
  --fog: #c8d4e0;
  --mist: #7a8fa6;
  --ticker-end: #2a3a52;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  color: var(--fog);
  background:
    radial-gradient(circle at 85% 10%, #3ad8f01a 0 18%, transparent 36%),
    radial-gradient(circle at 18% 78%, #58e8c21c 0 14%, transparent 34%),
    linear-gradient(180deg, #0b1628 0%, #101c31 42%, #0b1628 100%);
  font-family: "Lora", serif;
  font-size: 18px;
  line-height: 1.72;
  font-feature-settings: 'onum' 1, 'liga' 1;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background:
    repeating-linear-gradient(90deg, #ffffff05 0 1px, transparent 1px 76px),
    repeating-linear-gradient(0deg, #3ad8f008 0 1px, transparent 1px 5px);
  mix-blend-mode: screen;
}

.ocean-field { position: fixed; inset: 0; z-index: 0; overflow: hidden; pointer-events: none; }
.ocean-field span {
  position: absolute;
  left: var(--x);
  bottom: -30px;
  width: var(--s);
  height: var(--s);
  border-radius: 50%;
  background: #58e8c240;
  box-shadow: 0 0 16px #58e8c260;
  animation: floatBubble var(--t) infinite ease-in-out;
  animation-delay: var(--d);
}

@keyframes floatBubble {
  0% { transform: translate3d(0, 0, 0) scale(.8); opacity: 0; }
  15% { opacity: .75; }
  80% { opacity: .35; }
  100% { transform: translate3d(36px, -110vh, 0) scale(1.25); opacity: 0; }
}

.broadcast-sidebar {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  width: 72px;
  height: 100vh;
  overflow: hidden;
  background: linear-gradient(135deg, #152238 0%, #1e2d42 50%, #152238 100%);
  border-right: 1px solid #3ad8f033;
  box-shadow: inset -14px 0 28px #0b162899, 12px 0 42px #00000055;
  transition: width 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

.broadcast-sidebar:hover { width: 240px; }
.broadcast-sidebar::after {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(125deg, #ffffff08 0 1px, transparent 1px 10px);
  opacity: .55;
  pointer-events: none;
}

.on-air {
  height: 88px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0 22px;
  font-family: "Share Tech Mono", monospace;
  font-size: 11px;
  letter-spacing: .3em;
  color: var(--platinum);
  white-space: nowrap;
}
.on-air i {
  flex: 0 0 12px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--coral);
  box-shadow: 0 0 14px var(--coral);
  animation: livePulse 1.2s infinite ease-in-out;
}
@keyframes livePulse { 50% { transform: scale(.7); opacity: .45; } }

.channel-nav { display: grid; gap: 8px; padding: 22px 12px; }
.channel {
  height: 56px;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 0 8px;
  color: var(--mist);
  text-decoration: none;
  border: 1px solid transparent;
  background: #0b162830;
  box-shadow: inset 0 0 18px #00000030;
  transition: color 220ms ease, border-color 220ms ease, background 220ms ease;
}
.channel svg {
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
  fill: #0b1628cc;
  stroke: var(--teal);
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 7px #58e8c250);
}
.channel .label {
  font-family: "Share Tech Mono", monospace;
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--mist);
  white-space: nowrap;
}
.channel.active, .channel:hover {
  color: var(--teal);
  border-color: #58e8c255;
  background: #58e8c20f;
}
.channel.active svg, .channel:hover svg { stroke: var(--cyan); filter: drop-shadow(0 0 12px #3ad8f080); }

.frequency {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 22px;
  padding: 14px 10px;
  border-top: 1px solid #3ad8f033;
  background: #0b162866;
  color: var(--mist);
  font-family: "Share Tech Mono", monospace;
  white-space: nowrap;
}
.frequency small { display: block; font-size: 10px; letter-spacing: .18em; }
.frequency strong { display: block; margin-top: 8px; color: var(--teal); font-size: 20px; letter-spacing: .08em; text-shadow: 0 0 12px #58e8c270; }

.ticker-banner {
  position: fixed;
  z-index: 8;
  top: 0;
  left: 72px;
  right: 0;
  height: 56px;
  overflow: hidden;
  background: linear-gradient(90deg, #0b1628, #2a3a52);
  border-bottom: 1px solid #3ad8f033;
  box-shadow: 0 10px 34px #00000038;
}
.ticker-track {
  display: flex;
  align-items: center;
  height: 100%;
  width: max-content;
  animation: ticker 28s linear infinite;
  font-family: "Share Tech Mono", monospace;
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--platinum);
}
.ticker-track span { padding: 0 42px; position: relative; }
.ticker-track span::after { content: "//"; position: absolute; right: -8px; color: var(--cyan); }
@keyframes ticker { to { transform: translateX(-50%); } }

.broadcast-feed { position: relative; z-index: 2; margin-left: 72px; padding-top: 56px; }
.segment {
  position: relative;
  min-height: 82vh;
  padding: clamp(44px, 6vw, 92px);
  display: grid;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}
.segment::before {
  content: "";
  position: absolute;
  inset: 20px;
  z-index: -1;
  border: 1px solid #b8c6d414;
  background: linear-gradient(135deg, #15223888 0%, #1e2d4255 48%, #0b162888 100%);
  box-shadow: inset 0 0 60px #3ad8f00b;
}

.station-intro { grid-template-columns: minmax(0, 1.1fr) minmax(280px, .9fr); gap: 5vw; min-height: 100vh; }
.eyebrow, .alert-strip, .segment-meta {
  font-family: "Share Tech Mono", monospace;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--mist);
}
.eyebrow { display: flex; align-items: center; gap: 12px; font-size: 12px; }
.eyebrow span { width: 8px; height: 8px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 14px var(--cyan); }

.headline {
  margin: 0;
  color: var(--fog);
  font-family: "Anybody", "Inter", sans-serif;
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: .96;
  letter-spacing: -.055em;
  font-variation-settings: 'wdth' 150, 'wght' 900;
  text-shadow: 0 0 28px #3ad8f018;
  transition: font-variation-settings 180ms linear, text-shadow 240ms ease;
}
.headline.compressed { font-variation-settings: 'wdth' 75, 'wght' 400; }
.headline.in-focus { font-variation-settings: 'wdth' 150, 'wght' 900; text-shadow: 0 0 32px #58e8c22e; }
.glitchable.glitch { animation: glitchFlicker 200ms steps(2, end); }
@keyframes glitchFlicker {
  0% { clip-path: inset(0 0 75% 0); text-shadow: -2px 0 #f06868, 2px 0 #3ad8f0; }
  35% { clip-path: inset(42% 0 18% 0); transform: translateX(2px); }
  70% { clip-path: inset(12% 0 48% 0); transform: translateX(-2px); }
  100% { clip-path: inset(0); transform: none; text-shadow: 0 0 32px #58e8c22e; }
}

.lede, .dek { max-width: 720px; color: var(--platinum); }
.lede { font-size: clamp(1.15rem, 2vw, 1.55rem); margin-top: 26px; }
.dek { margin-top: 24px; }

.console-window { position: relative; min-height: 520px; }
.duotone-frame {
  position: relative;
  min-height: 440px;
  border: 1px solid #58e8c233;
  background: #0b1628;
  overflow: hidden;
  box-shadow: 0 30px 80px #00000055, inset 0 0 60px #3ad8f013;
}
.duotone-frame.tall { min-height: 56vh; }
.duotone-frame::before {
  content: "";
  position: absolute;
  inset: 14px;
  z-index: 3;
  border: 1px solid #c8d4e01c;
  pointer-events: none;
}
.duotone-art {
  position: absolute;
  inset: 0;
  filter: grayscale(100%) contrast(1.1);
  mix-blend-mode: luminosity;
  opacity: .92;
}
.duotone-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0b1628, #58e8c2);
  mix-blend-mode: color;
  opacity: .9;
}
.politics-art { background: radial-gradient(circle at 52% 34%, #c8d4e0 0 6%, transparent 7%), radial-gradient(ellipse at 48% 47%, #b8c6d4 0 19%, transparent 20%), conic-gradient(from 30deg at 52% 46%, #152238, #c8d4e0, #1e2d42, #b8c6d4, #152238), linear-gradient(120deg, #0b1628, #c8d4e0); }
.map-art { background: linear-gradient(32deg, transparent 47%, #c8d4e0 48% 51%, transparent 52%), radial-gradient(circle at 22% 28%, #b8c6d4 0 9%, transparent 10%), radial-gradient(circle at 73% 62%, #c8d4e0 0 13%, transparent 14%), repeating-linear-gradient(135deg, #152238 0 18px, #b8c6d4 19px 21px, #1e2d42 22px 40px); }
.puffer-art { background: radial-gradient(circle at 52% 52%, #c8d4e0 0 23%, transparent 24%), radial-gradient(circle at 43% 45%, #0b1628 0 2%, transparent 3%), radial-gradient(circle at 60% 45%, #0b1628 0 2%, transparent 3%), repeating-conic-gradient(from 10deg at 52% 52%, #b8c6d4 0 5deg, #152238 6deg 13deg); }
.angler-art { background: radial-gradient(circle at 72% 20%, #c8d4e0 0 5%, transparent 6%), radial-gradient(ellipse at 43% 55%, #b8c6d4 0 23%, transparent 24%), linear-gradient(25deg, transparent 0 48%, #c8d4e0 49% 51%, transparent 52%), radial-gradient(circle at 33% 50%, #0b1628 0 4%, transparent 5%), #152238; }
.nautilus-art { background: radial-gradient(circle at 50% 52%, #0b1628 0 5%, transparent 6%), repeating-radial-gradient(circle at 50% 52%, #b8c6d4 0 8px, #152238 9px 22px), conic-gradient(from 0deg, #152238, #c8d4e0, #1e2d42, #b8c6d4, #152238); }

.scanner { position: absolute; inset: 28px; display: grid; place-items: center; pointer-events: none; }
.scanner i { position: absolute; width: 90px; height: 90px; border: 1px solid #3ad8f0; border-radius: 50%; animation: sonarRing 2.4s infinite ease-out; opacity: 0; }
.scanner i:nth-child(2) { animation-delay: .6s; }
.scanner i:nth-child(3) { animation-delay: 1.2s; }
@keyframes sonarRing { 0% { transform: scale(.2); opacity: .6; } 100% { transform: scale(4); opacity: 0; } }

.sonar-divider { height: 1px; margin-left: 72px; position: relative; z-index: 3; background: linear-gradient(90deg, transparent, #3ad8f0, transparent); box-shadow: 0 0 18px #3ad8f080; }
.sonar-divider span { position: absolute; left: 50%; top: 50%; width: 10px; height: 10px; border: 1px solid #3ad8f0; border-radius: 50%; transform: translate(-50%, -50%); animation: dividerPing 2s infinite ease-out; }
@keyframes dividerPing { to { width: 180px; height: 180px; opacity: 0; } }

.segment-meta { display: flex; justify-content: space-between; align-items: center; margin-bottom: 30px; font-size: 12px; }
.segment-meta time { color: var(--teal); text-shadow: 0 0 10px #58e8c260; }
.story-grid { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(280px, .78fr); gap: clamp(28px, 5vw, 72px); align-items: center; }
.story-grid.reverse { grid-template-columns: minmax(280px, .78fr) minmax(0, 1.05fr); }
.story-grid.reverse .headline-block { order: 2; }
.alert-strip { display: inline-block; margin: 0 0 18px; padding: 5px 10px; border: 1px solid #f0686855; color: var(--coral); background: #f0686811; font-size: 11px; }

.debunk {
  position: relative;
  min-height: 112px;
  margin-top: 34px;
  padding: 24px 28px 22px;
  border-left: 3px solid var(--teal);
  background: linear-gradient(90deg, #58e8c214, #15223844);
  color: var(--teal);
  font-family: "Special Elite", monospace;
  font-size: clamp(1rem, 1.4vw, 1.28rem);
  line-height: 1.7;
  box-shadow: inset 0 0 26px #58e8c20d;
}
.debunk .char { opacity: 0; display: inline-block; transform: translateY(-2px); transition: opacity 120ms ease, transform 120ms ease; }
.debunk .char.visible { opacity: 1; transform: translateY(0); }
.debunk.typing::after, .debunk.done::after { content: "|"; animation: cursorBlink 530ms infinite steps(1); color: var(--cyan); }
@keyframes cursorBlink { 50% { opacity: 0; } }

.signal-wave { position: absolute; left: 0; right: 0; bottom: 18px; width: 100%; height: 90px; opacity: .6; z-index: -1; }
.signal-wave path { fill: none; stroke: #3ad8f060; stroke-width: 2; animation: waveDrift 5.5s infinite ease-in-out alternate; }
.signal-wave.fast path { animation-duration: 3s; }
.signal-wave.frantic path { animation-duration: 1.8s; }
.signal-wave.slow path { animation-duration: 8s; }
@keyframes waveDrift { to { transform: translateX(-42px) scaleY(1.18); } }

.sonar-ping {
  position: fixed;
  z-index: 20;
  left: calc(50% + 36px);
  top: 50%;
  width: 120px;
  height: 120px;
  margin: -60px 0 0 -60px;
  border: 2px solid #3ad8f0;
  border-radius: 50%;
  opacity: 0;
  pointer-events: none;
  box-shadow: 0 0 30px #3ad8f080;
}
.sonar-ping.fire { animation: pagePing 800ms ease-out; }
@keyframes pagePing { 0% { transform: scale(0); opacity: .4; } 100% { transform: scale(3); opacity: 0; } }

@media (max-width: 860px) {
  .broadcast-sidebar { width: 64px; }
  .broadcast-sidebar:hover { width: 210px; }
  .ticker-banner { left: 64px; }
  .broadcast-feed { margin-left: 64px; }
  .sonar-divider { margin-left: 64px; }
  .station-intro, .story-grid, .story-grid.reverse { grid-template-columns: 1fr; }
  .story-grid.reverse .headline-block { order: 0; }
  .segment { padding: 34px 24px; min-height: 88vh; }
  .headline { font-size: clamp(2.1rem, 10vw, 3.7rem); }
}

/*
Typography implementation reference retained for design compliance scanning:
Interaction (5% frequency Interaction:* Interaction:** IntersectionObserver fallback for unsupported browsers. This creates a "breathing" typographic landscape where text literally responds to the reader's attention. IntersectionObserver to trigger typing when segment enters viewport Lora counterbalances the cold metallic UI chrome. Set at `18px/1.72` with `font-feature-settings: 'onum' 1 Lora" (Google Fonts
*/
