/* index.css — Homepage-specific styles for globalwarningnetworks.com
   Imports and extends css/style.css (Design System tokens).            */

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; }
a { color: inherit; text-decoration: none; }

.site { min-height: 100vh; display: flex; flex-direction: column; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
  width: 100%;
}

/* ──────────────────────────────────────────
   LIVE DOT (inline)
────────────────────────────────────────── */
.live-dot {
  display: inline-block;
  width: 8px; height: 8px;
  background: var(--alert-glow);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--alert-glow);
  flex-shrink: 0;
  position: relative;
}
.live-dot::after {
  content: '';
  position: absolute; inset: 0;
  border-radius: 50%;
  background: var(--alert-glow);
  animation: gwn-pulse 1.4s var(--ease-broadcast) infinite;
}
@keyframes gwn-pulse {
  0%, 100% { transform: scale(1); opacity: .8; }
  60%       { transform: scale(2.4); opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .live-dot::after { animation: none; opacity: 0; }
}

/* ──────────────────────────────────────────
   BREAKING TICKER
────────────────────────────────────────── */
.gwn-ticker-bar {
  background: var(--alert-700);
  color: #fff;
  border-bottom: 1px solid rgba(0,0,0,.35);
  overflow: hidden;
}
.gwn-ticker-bar .row {
  display: flex; align-items: stretch; height: 34px;
}
.gwn-ticker-bar .label {
  display: flex; align-items: center; gap: 8px;
  padding: 0 14px;
  background: #fff;
  color: var(--alert-700);
  font-family: var(--font-broadcast);
  font-style: italic;
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 700;
  flex-shrink: 0;
}
.gwn-ticker-bar .feed {
  flex: 1;
  display: flex; align-items: center;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 0 18px;
  white-space: nowrap;
  overflow: hidden;
}
.gwn-ticker-bar .feed .dot { color: rgba(255,255,255,.45); }
.gwn-ticker-bar .feed b   { font-weight: 700; }
.gwn-marquee-track {
  display: inline-flex; gap: 28px; align-items: center;
  animation: gwn-marquee 60s linear infinite;
}
@keyframes gwn-marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ──────────────────────────────────────────
   TOP NAV
────────────────────────────────────────── */
.gwn-nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(10,14,26,.8);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.gwn-nav .row {
  display: flex; align-items: center; gap: 28px; padding: 18px 0;
}
.gwn-nav .brand {
  display: flex; align-items: center; gap: 12px; flex-shrink: 0;
}
.gwn-nav .brand img {
  width: 38px; height: 38px; border-radius: 4px; object-fit: contain;
}
.gwn-nav .brand .word {
  font-family: var(--font-display);
  text-transform: uppercase; font-size: 18px; line-height: 1;
  letter-spacing: -.005em; color: var(--fg-1);
}
.gwn-nav .brand .sub {
  font-family: var(--font-broadcast); font-style: italic;
  font-size: 10px; letter-spacing: .22em;
  color: var(--chrome-400); text-transform: uppercase;
  margin-top: 4px; display: block;
}
.gwn-nav .links {
  display: flex; gap: 22px; flex: 1; margin-left: 18px;
}
.gwn-nav .links a {
  font-weight: 600; font-size: 13px; letter-spacing: .12em;
  text-transform: uppercase; color: var(--chrome-300);
  cursor: pointer; position: relative; padding: 6px 0;
  transition: color .15s;
}
.gwn-nav .links a:hover { color: #fff; }
.gwn-nav .links a.active { color: var(--alert-400); }
.gwn-nav .links a.active::after {
  content: ''; position: absolute; bottom: -19px; left: 0; right: 0;
  height: 2px; background: var(--alert-600);
}
.gwn-nav .right { display: flex; align-items: center; gap: 14px; }

/* Live pill */
.gwn-live {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 14px; border: 1px solid var(--alert-600);
  border-radius: 999px;
  font-family: var(--font-broadcast); font-style: italic;
  font-size: 11px; letter-spacing: .18em; text-transform: uppercase;
  color: var(--alert-400); background: rgba(211,32,52,.06);
  cursor: pointer; transition: background .2s;
}
.gwn-live:hover { background: rgba(211,32,52,.12); }
.gwn-live .dot {
  width: 8px; height: 8px; background: var(--alert-glow);
  border-radius: 50%; box-shadow: 0 0 8px var(--alert-glow);
  position: relative; flex-shrink: 0;
}
.gwn-live .dot::after {
  content: ''; position: absolute; inset: 0; border-radius: 50%;
  background: var(--alert-glow);
  animation: gwn-pulse 1.4s var(--ease-broadcast) infinite;
}

/* ── Dropdown ── */
.gwn-nav .nav-dropdown {
  position: relative;
}
.gwn-nav .nav-dropdown > .dd-trigger {
  display: flex; align-items: center; gap: 5px;
  font-weight: 600; font-size: 13px; letter-spacing: .12em;
  text-transform: uppercase; color: var(--chrome-300);
  cursor: pointer; padding: 6px 0;
  transition: color .15s;
  background: none; border: none; font-family: inherit;
  user-select: none;
}
.gwn-nav .nav-dropdown > .dd-trigger:hover,
.gwn-nav .nav-dropdown.open > .dd-trigger { color: #fff; }
.gwn-nav .nav-dropdown > .dd-trigger svg {
  width: 11px; height: 11px; transition: transform .18s;
}
.gwn-nav .nav-dropdown.open > .dd-trigger svg { transform: rotate(180deg); }

.gwn-nav .dd-panel {
  position: absolute; top: calc(100% + 14px); left: 50%;
  transform: translateX(-50%);
  width: 260px;
  background: rgba(10,14,26,.98);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 16px 40px rgba(0,0,0,.7);
  padding: 8px;
  opacity: 0; pointer-events: none;
  transform: translateX(-50%) translateY(-6px);
  transition: opacity .18s, transform .18s;
  z-index: 200;
}
.gwn-nav .nav-dropdown.open .dd-panel {
  opacity: 1; pointer-events: all;
  transform: translateX(-50%) translateY(0);
}
.dd-section-label {
  font-size: 9px; letter-spacing: .2em; text-transform: uppercase;
  color: var(--chrome-500); padding: 6px 10px 4px;
  font-family: var(--font-broadcast); font-style: italic;
}
.dd-panel a {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 10px; border-radius: 5px;
  font-size: 12px; font-weight: 600; letter-spacing: .08em;
  text-transform: uppercase; color: var(--chrome-200);
  transition: background .12s, color .12s;
}
.dd-panel a:hover { background: rgba(255,255,255,.05); color: #fff; }
.dd-panel a .dd-icon {
  width: 28px; height: 28px; border-radius: 5px;
  background: rgba(255,255,255,.05);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: var(--alert-400);
}
.dd-panel a .dd-meta { display: flex; flex-direction: column; gap: 1px; }
.dd-panel a .dd-meta span { font-size: 9px; color: var(--chrome-500); font-weight: 400; letter-spacing: .06em; text-transform: uppercase; }
.dd-divider { height: 1px; background: var(--line); margin: 4px 0; }

/* Auth buttons */
.gwn-nav .auth-btns { display: flex; align-items: center; gap: 8px; }
.gwn-nav .btn-login {
  font-size: 11px; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--chrome-200);
  border: 1px solid var(--chrome-600); border-radius: 5px;
  padding: 6px 12px; background: transparent;
  transition: border-color .15s, color .15s;
  white-space: nowrap;
}
.gwn-nav .btn-login:hover { border-color: var(--fg-1); color: #fff; }
.gwn-nav .btn-register {
  font-size: 11px; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: #fff;
  border: 1px solid var(--alert-600); border-radius: 5px;
  padding: 6px 12px; background: var(--alert-700);
  transition: background .15s, border-color .15s;
  white-space: nowrap;
}
.gwn-nav .btn-register:hover { background: var(--alert-600); }

/* Mobile menu toggle (hidden on desktop) */
.gwn-nav-mobile-toggle {
  display: none; background: transparent; border: none;
  color: var(--fg-2); padding: 6px; margin-left: auto;
}

/* ──────────────────────────────────────────
   MOBILE DRAWER
────────────────────────────────────────── */
.gwn-nav-drawer {
  position: fixed; inset: 0; z-index: 100;
  background: rgba(0,0,0,.7); backdrop-filter: blur(6px);
  display: flex; justify-content: flex-end;
  opacity: 0; pointer-events: none;
  transition: opacity .22s var(--ease-out);
}
.gwn-nav-drawer.open { opacity: 1; pointer-events: all; }
.gwn-nav-drawer .drawer-inner {
  background: var(--space-raised); width: 280px; max-width: 90vw;
  padding: 24px 22px; display: flex; flex-direction: column; gap: 14px;
  border-left: 1px solid var(--line);
  transform: translateX(40px);
  transition: transform .22s var(--ease-broadcast);
}
.gwn-nav-drawer.open .drawer-inner { transform: translateX(0); }
.gwn-nav-drawer .drawer-inner a {
  font-weight: 600; font-size: 14px; letter-spacing: .1em;
  text-transform: uppercase; color: var(--chrome-200); padding: 8px 0;
  border-bottom: 1px solid var(--line);
}
.gwn-nav-drawer .drawer-inner a:hover { color: var(--alert-400); }
.drawer-close {
  background: transparent; border: none; color: var(--fg-3);
  align-self: flex-end; padding: 4px; margin-bottom: 8px;
}

/* ──────────────────────────────────────────
   BUTTONS
────────────────────────────────────────── */
.gwn-btn {
  font-family: var(--font-body); font-weight: 700; font-size: 13px;
  letter-spacing: .12em; text-transform: uppercase;
  padding: 13px 22px; border: none; border-radius: var(--r-md);
  cursor: pointer; display: inline-flex; align-items: center;
  justify-content: center; gap: 10px;
  transition: background-color .15s var(--ease-out), border-color .15s, transform .12s;
}
.gwn-btn-alert { background: var(--alert-600); color: #fff; }
.gwn-btn-alert:hover { background: var(--alert-500); }
.gwn-btn-alert:active { background: var(--alert-700); transform: translateY(1px); }
.gwn-btn-chrome {
  background: transparent; color: var(--fg-1);
  border: 1px solid var(--chrome-500);
}
.gwn-btn-chrome:hover { border-color: var(--fg-1); }
.gwn-btn-chrome:active { transform: translateY(1px); }
.gwn-btn:focus-visible { outline: 2px solid var(--alert-glow); outline-offset: 3px; }

/* ──────────────────────────────────────────
   SECTION HEADER
────────────────────────────────────────── */
.gwn-section-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  border-bottom: 1px solid var(--line); padding-bottom: 12px; margin-bottom: 28px;
}
.gwn-section-head h2 {
  font-family: var(--font-display); text-transform: uppercase;
  font-size: 28px; line-height: 1; margin: 0; color: var(--fg-1);
}
.gwn-section-head .eyebrow {
  font-family: var(--font-broadcast); font-style: italic;
  font-size: 11px; letter-spacing: .18em; text-transform: uppercase;
  color: var(--alert-500); margin-bottom: 6px; display: block;
}
.gwn-section-head a.more {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: .14em;
  text-transform: uppercase; color: var(--chrome-300); padding-bottom: 4px;
  transition: color .15s;
}
.gwn-section-head a.more:hover { color: var(--alert-400); }

/* ──────────────────────────────────────────
   HERO
────────────────────────────────────────── */
.gwn-hero {
  position: relative; padding: 88px 0 96px; overflow: hidden;
  background:
    radial-gradient(ellipse at 80% 30%, rgba(48,80,128,.35), transparent 60%),
    radial-gradient(ellipse at 20% 90%, rgba(211,32,52,.18), transparent 55%),
    linear-gradient(180deg, #06080f, #0a0e1a 60%);
  border-bottom: 1px solid var(--line);
}
.gwn-hero::after {
  content: ''; position: absolute; inset: 0;
  background: var(--scanlines); pointer-events: none; opacity: .7;
}
.gwn-hero .grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 56px; align-items: center;
}
.gwn-hero .eyebrow {
  display: flex; align-items: center; gap: 10px; margin-bottom: 18px;
  flex-wrap: wrap;
}
.gwn-hero .meta {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: .16em;
  color: var(--chrome-400); text-transform: uppercase;
}
.gwn-hero h1 {
  font-family: var(--font-display); text-transform: uppercase;
  font-size: clamp(56px, 8vw, 104px); line-height: .95;
  letter-spacing: -.015em; margin: 0 0 24px; color: var(--fg-1);
}
.gwn-hero .chrome {
  background: var(--chrome-text-gradient);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.gwn-hero .lead {
  font-size: 18px; line-height: 1.55; color: var(--fg-2); max-width: 540px; margin: 0 0 32px;
}
.gwn-hero .cta-row { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }
.gwn-hero .rule {
  height: 1px;
  background: linear-gradient(90deg, var(--chrome-300), transparent);
  margin: 36px 0 18px; max-width: 480px;
}
.gwn-hero .stat-row { display: flex; gap: 36px; flex-wrap: wrap; }
.gwn-hero .stat .n {
  font-family: var(--font-display); font-size: 40px; line-height: 1;
  text-transform: uppercase; color: #fff;
}
.gwn-hero .stat .l {
  font-family: var(--font-mono); font-size: 10px; letter-spacing: .18em;
  text-transform: uppercase; color: var(--chrome-400); margin-top: 6px; display: block;
}

/* Globe panel (right side of hero) */
.gwn-hero .globe-panel {
  position: relative; aspect-ratio: 1/1; max-width: 460px; margin-left: auto;
  border: 1px solid var(--line-strong); border-radius: var(--r-lg);
  background: #000; overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,.6), inset 0 1px 0 rgba(255,255,255,.06);
}
.gwn-hero .globe-panel img {
  width: 100%; height: 100%; object-fit: contain;
  padding: 24px;
}
.gwn-hero .globe-panel .frame-corner {
  position: absolute; width: 18px; height: 18px; border: 2px solid var(--alert-500);
}
.gwn-hero .globe-panel .frame-corner.tl { top: 10px; left: 10px; border-right: none; border-bottom: none; }
.gwn-hero .globe-panel .frame-corner.tr { top: 10px; right: 10px; border-left: none; border-bottom: none; }
.gwn-hero .globe-panel .frame-corner.bl { bottom: 10px; left: 10px; border-right: none; border-top: none; }
.gwn-hero .globe-panel .frame-corner.br { bottom: 10px; right: 10px; border-left: none; border-top: none; }
.gwn-hero .globe-panel .lt-bar {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 14px 18px;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,.85));
  display: flex; align-items: center; gap: 12px;
}
.gwn-hero .globe-panel .chip {
  background: var(--alert-600); color: #fff;
  font-family: var(--font-broadcast); font-style: italic;
  font-size: 10px; letter-spacing: .18em; padding: 4px 8px; text-transform: uppercase;
}
.gwn-hero .globe-panel .lt-title {
  font-family: var(--font-display); text-transform: uppercase; font-size: 14px; color: var(--fg-1);
}

/* ──────────────────────────────────────────
   LIVE SECTION
────────────────────────────────────────── */
.gwn-live-section {
  padding: 80px 0;
  background: linear-gradient(180deg, var(--space-deep), #08101e);
  border-bottom: 1px solid var(--line);
}
.gwn-live-section .grid {
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 36px;
}

/* Player */
.gwn-player {
  position: relative; aspect-ratio: 16/9;
  background:
    radial-gradient(ellipse at 50% 50%, rgba(96,144,192,.25), transparent 60%),
    linear-gradient(180deg, #142540, #06080f);
  border-radius: var(--r-lg); overflow: hidden;
  border: 1px solid var(--line-strong);
  box-shadow: 0 20px 60px rgba(0,0,0,.6);
}
.gwn-player .scanlines-overlay {
  position: absolute; inset: 0;
  background: var(--scanlines); opacity: .8; pointer-events: none;
}
.gwn-player .topbar {
  position: absolute; top: 0; left: 0; right: 0; padding: 14px 18px;
  display: flex; justify-content: space-between; align-items: center; z-index: 1;
}
.gwn-player .center {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 14px;
}
.gwn-player .play {
  width: 80px; height: 80px; border-radius: 50%;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.4);
  backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  transition: background .2s, border-color .2s;
  text-decoration: none;
}
.gwn-player .play:hover { background: var(--alert-600); border-color: var(--alert-600); }
.gwn-player .lt {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 18px 22px;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,.85));
  display: flex; align-items: flex-end; gap: 14px;
}
.gwn-player .lt .chip {
  background: var(--alert-600); color: #fff;
  font-family: var(--font-broadcast); font-style: italic;
  font-size: 11px; letter-spacing: .18em; padding: 5px 10px; text-transform: uppercase;
  flex-shrink: 0;
}
.gwn-player .lt .title {
  font-family: var(--font-display); text-transform: uppercase;
  font-size: 20px; line-height: 1.05; flex: 1; color: var(--fg-1);
}
.gwn-player .lt .meta {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: .16em;
  color: var(--chrome-300); text-transform: uppercase; flex-shrink: 0;
}

/* Signal panel */
.gwn-signal-panel {
  background: var(--space-raised); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: 24px; display: flex; flex-direction: column;
}
.gwn-signal-panel h3 {
  font-family: var(--font-display); text-transform: uppercase;
  font-size: 22px; margin: 0 0 18px; color: var(--fg-1);
}
.gwn-signal-item {
  display: flex; gap: 10px; padding: 14px 0; border-bottom: 1px solid var(--line);
  cursor: pointer; align-items: flex-start;
}
.gwn-signal-item:last-of-type { border-bottom: none; }
.gwn-signal-item:hover .t { color: var(--alert-400); }
.gwn-signal-item .ts {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: .1em;
  color: var(--alert-500); text-transform: uppercase; flex-shrink: 0; width: 54px;
}
.gwn-signal-item .badge {
  font-family: var(--font-broadcast); font-style: italic;
  font-size: 9px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--chrome-400); background: rgba(255,255,255,.04);
  border: 1px solid var(--line); padding: 2px 6px; border-radius: 2px;
  flex-shrink: 0; align-self: flex-start; margin-top: 1px;
}
.gwn-signal-item .t {
  font-family: var(--font-body); font-weight: 600; font-size: 13px;
  color: var(--fg-1); line-height: 1.4; transition: color .15s;
}

/* ──────────────────────────────────────────
   STORY CARDS
────────────────────────────────────────── */
.gwn-stories { padding: 80px 0; }
.gwn-stories .grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}

.gwn-story {
  background: var(--space-card); border: 1px solid var(--line);
  border-radius: var(--r-lg); overflow: hidden;
  transition: border-color .22s var(--ease-out), box-shadow .22s var(--ease-out), transform .22s;
  display: flex; flex-direction: column; cursor: pointer;
}
.gwn-story:hover {
  border-color: var(--line-strong);
  box-shadow: 0 12px 28px rgba(0,0,0,.5);
  transform: translateY(-1px);
}
.gwn-story.breaking { border-top: 2px solid var(--alert-600); }

.gwn-story .img {
  aspect-ratio: 16/10; position: relative; overflow: hidden;
}
.gwn-story .img::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,.55));
}

.gwn-story .body {
  padding: 18px 18px 22px; display: flex; flex-direction: column; gap: 10px; flex: 1;
}
.gwn-story .meta-top {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--font-broadcast); font-style: italic;
  font-size: 11px; letter-spacing: .18em; text-transform: uppercase;
  color: var(--alert-500); flex-wrap: wrap;
}
.gwn-story .meta-top .desk { color: var(--chrome-400); }
.gwn-story .chip-breaking {
  background: var(--alert-600); color: #fff;
  font-family: var(--font-broadcast); font-style: italic;
  font-size: 9.5px; letter-spacing: .16em; padding: 2px 7px; text-transform: uppercase;
}
.gwn-story h3 {
  font-family: "CyberCopix", var(--font-display); text-transform: uppercase;
  font-size: 22px; line-height: 1.2; margin: 0; color: #fff; letter-spacing: 0;
}
.gwn-story .dek { font-size: 14px; color: var(--fg-2); line-height: 1.5; margin: 0; }
.gwn-story .meta-bot {
  font-family: var(--font-mono); font-size: 10.5px; letter-spacing: .14em;
  color: var(--chrome-400); text-transform: uppercase; margin-top: auto; padding-top: 6px;
}

.gwn-story-feature { grid-column: span 2; }
.gwn-story-feature .img { aspect-ratio: 16/8; }
.gwn-story-feature h3 { font-family: "CyberCopix", var(--font-display); font-size: 40px; line-height: 1.15; }
.gwn-story-feature .dek { font-size: 16px; }

/* Story image placeholders (fallback when live image fails) */
.img-storm   { background: linear-gradient(135deg, #0a1424 0%, #1e3a64 60%, #0a0e1a 100%); }
.img-ocean   { background: linear-gradient(135deg, #0c1a2e 0%, #305080 60%, #0a0e1a 100%); }
.img-server  { background: linear-gradient(135deg, #0a0e1a 0%, #1e3a64 100%); }
.img-flame   { background: linear-gradient(135deg, #1a0a00 0%, #c06820 60%, #5a0a14 100%); }
.img-night   { background: linear-gradient(135deg, #06080f 0%, #142540 60%, #1e3a64 100%); }
.img-feature { background: linear-gradient(135deg, #06080f 0%, #1e3a64 40%, #5a0a14 100%); }

/* Live NOAA image inside story card */
.gwn-story .img { position: relative; }
.gwn-story .img img.live-img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; display: block;
  filter: brightness(.85) saturate(1.1);
  transition: filter .25s;
}
.gwn-story:hover .img img.live-img { filter: brightness(.95) saturate(1.15); }
.gwn-story .img .live-badge {
  position: absolute; bottom: 8px; right: 8px; z-index: 2;
  font-size: 8px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase;
  padding: 2px 7px; border-radius: 3px; border: 1px solid rgba(255,255,255,.18);
  background: rgba(6,8,15,.72); color: #8899bb;
  backdrop-filter: blur(4px);
}

/* ──────────────────────────────────────────
   TOOLS STRIP
────────────────────────────────────────── */
.gwn-tools {
  padding: 80px 0;
  background: var(--space-raised);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.tools-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}

.gwn-tool-card {
  display: flex; align-items: flex-start; gap: 16px;
  background: var(--space-card); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: 22px 20px;
  transition: border-color .22s var(--ease-out), box-shadow .22s;
  cursor: pointer;
}
.gwn-tool-card:hover {
  border-color: var(--line-strong);
  box-shadow: 0 8px 24px rgba(0,0,0,.4);
}
.gwn-tool-card:hover .tool-arrow { color: var(--alert-400); }

.gwn-tool-card .tool-icon {
  color: var(--alert-500); flex-shrink: 0; margin-top: 2px;
}
.gwn-tool-card .tool-body { flex: 1; }
.gwn-tool-card .tool-body .gwn-eyebrow { margin-bottom: 4px; }
.gwn-tool-card h4 {
  font-family: "CyberCopix", var(--font-display); text-transform: uppercase;
  font-size: 18px; line-height: 1.2; margin: 0 0 8px; color: var(--fg-1);
}
.gwn-tool-card p {
  font-size: 13px; color: var(--fg-2); line-height: 1.5; margin: 0;
}
.tool-arrow {
  color: var(--chrome-500); flex-shrink: 0; margin-top: 2px;
  transition: color .15s;
  width: 18px; height: 18px;
}

/* ──────────────────────────────────────────
   SIGNAL DIGEST (NEWSLETTER)
────────────────────────────────────────── */
.gwn-digest {
  padding: 80px 0; background: #000;
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  position: relative; overflow: hidden;
}
.gwn-digest::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(211,32,52,.18), transparent 60%);
  pointer-events: none;
}
.gwn-digest .row {
  position: relative; display: grid;
  grid-template-columns: 1.2fr 1fr; gap: 60px; align-items: center;
}
.gwn-digest .eyebrow {
  font-family: var(--font-broadcast); font-style: italic;
  font-size: 12px; letter-spacing: .2em; text-transform: uppercase;
  color: var(--alert-500); margin-bottom: 18px;
}
.gwn-digest h2 {
  font-family: var(--font-display); text-transform: uppercase;
  font-size: 56px; line-height: 1; margin: 0 0 18px; color: var(--fg-1);
}
.gwn-digest p { font-size: 17px; line-height: 1.6; color: var(--fg-2); max-width: 540px; }
.gwn-digest .form {
  display: flex; gap: 8px; max-width: 480px; margin-top: 24px;
}
.gwn-digest .form input {
  flex: 1; background: rgba(255,255,255,.04);
  border: 1px solid var(--line-strong); border-radius: var(--r-md);
  padding: 14px 16px; color: #fff; font-family: var(--font-body); font-size: 14px; outline: none;
}
.gwn-digest .form input::placeholder { color: var(--chrome-500); }
.gwn-digest .form input:focus {
  border-color: var(--alert-glow);
  box-shadow: 0 0 0 2px rgba(255,58,80,.25);
}

.digest-confirm {
  margin-top: 24px; padding: 16px 18px;
  border: 1px solid var(--alert-glow); border-radius: var(--r-md);
  background: rgba(255,58,80,.08); color: #fff;
  font-family: var(--font-mono); font-size: 12px; letter-spacing: .12em;
  text-transform: uppercase; display: inline-flex; align-items: center; gap: 10px;
}

.gwn-digest .perk-list {
  display: flex; flex-direction: column; gap: 14px;
  border-left: 1px solid var(--line); padding-left: 32px;
}
.gwn-digest .perk { display: flex; gap: 14px; align-items: flex-start; }
.gwn-digest .perk .n {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: .14em;
  color: var(--alert-500); width: 36px; flex-shrink: 0; text-transform: uppercase;
}
.gwn-digest .perk .t { font-size: 14px; line-height: 1.5; color: var(--fg-2); }
.gwn-digest .perk .t b { color: var(--fg-1); font-weight: 600; }

/* ──────────────────────────────────────────
   FOOTER
────────────────────────────────────────── */
.gwn-footer {
  background: #06080f; border-top: 1px solid var(--line);
  padding: 56px 0 28px; margin-top: auto;
}
.gwn-footer .top {
  display: grid; grid-template-columns: 1.3fr repeat(3, 1fr); gap: 40px; margin-bottom: 40px;
}
.gwn-footer .brand { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; }
.gwn-footer .brand img { width: 44px; height: 44px; object-fit: contain; }
.gwn-footer .brand .word {
  font-family: var(--font-display); text-transform: uppercase; font-size: 20px; line-height: 1; color: var(--fg-1);
}
.gwn-footer .brand .sub {
  font-family: var(--font-broadcast); font-style: italic;
  font-size: 10px; letter-spacing: .22em; color: var(--chrome-400);
  text-transform: uppercase; margin-top: 5px; display: block;
}
.gwn-footer p.tagline { font-size: 13px; line-height: 1.55; color: var(--fg-2); max-width: 320px; }
.gwn-footer h5 {
  font-family: var(--font-mono); font-size: 11px; letter-spacing: .16em;
  text-transform: uppercase; color: var(--chrome-400); margin: 0 0 16px;
}
.gwn-footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.gwn-footer ul a { color: var(--chrome-200); font-size: 13px; transition: color .15s; }
.gwn-footer ul a:hover { color: var(--alert-400); }
.gwn-footer .rule { height: 1px; background: var(--line); margin: 28px 0 20px; }
.gwn-footer .bot { display: flex; justify-content: space-between; align-items: center; gap: 18px; }
.gwn-footer .bot .copy {
  font-family: var(--font-mono); font-size: 10px; letter-spacing: .14em;
  color: var(--chrome-500); text-transform: uppercase;
}
.gwn-footer .bot .socials { display: flex; gap: 18px; }
.gwn-footer .bot .socials a {
  color: var(--chrome-400); display: inline-flex; padding: 6px; transition: color .15s;
}
.gwn-footer .bot .socials a:hover { color: var(--alert-400); }

/* ──────────────────────────────────────────
   RESPONSIVE
────────────────────────────────────────── */
@media (max-width: 1024px) {
  .tools-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
  .gwn-hero .grid              { grid-template-columns: 1fr; }
  .gwn-hero .globe-panel       { margin: 0; max-width: 100%; }
  .gwn-live-section .grid      { grid-template-columns: 1fr; }
  .gwn-stories .grid           { grid-template-columns: 1fr 1fr; }
  .gwn-story-feature           { grid-column: span 2; }
  .gwn-digest .row             { grid-template-columns: 1fr; }
  .gwn-digest .perk-list       { border-left: none; border-top: 1px solid var(--line); padding-left: 0; padding-top: 24px; }
  .gwn-footer .top             { grid-template-columns: 1fr 1fr; }
  .gwn-nav .links              { display: none; }
  .gwn-nav .right              { display: none; }
  .gwn-nav-mobile-toggle       { display: flex; }
}

@media (max-width: 640px) {
  .gwn-stories .grid    { grid-template-columns: 1fr; }
  .gwn-story-feature    { grid-column: span 1; }
  .gwn-story-feature h3 { font-size: 28px; }
  .gwn-hero             { padding: 56px 0 64px; }
  .gwn-footer .top      { grid-template-columns: 1fr; }
  .gwn-digest h2        { font-size: 40px; }
  .tools-grid           { grid-template-columns: 1fr; }
  .gwn-footer .bot      { flex-direction: column; align-items: flex-start; gap: 14px; }
}
