/* ═══════════════════════════════════════════════════
   REIGN SOVEREIGN MEDIA — styles.css
   RSM v8 — Revamped Design System
   23 March 2026
   ═══════════════════════════════════════════════════ */

:root {
  /* Backgrounds */
  --bg:        #090912;
  --surface:   #111120;
  --surface2:  #16162a;
  --surface3:  #0d0d1c;

  /* Borders */
  --border:    rgba(255,255,255,0.07);
  --border2:   rgba(255,255,255,0.13);
  --border3:   rgba(255,255,255,0.20);

  /* Brand */
  --brand:     #f0920e;
  --brand-dim: rgba(240,146,14,0.10);
  --brand-glow:rgba(240,146,14,0.25);
  --hover:     #ffaa30;

  /* Text — high contrast, accessible */
  --t1: #f2ede4;   /* primary — near white warm */
  --t2: #c4c0b6;   /* secondary — readable grey */
  --t3: #888480;   /* muted — labels, timestamps */
  --t4: #555260;   /* very muted — dividers */

  /* Vertical colours */
  --geo:   #e85555;
  --def:   #5a90f0;
  --mkt:   #d4a820;
  --tec:   #28c87a;
  --ana:   #c055e5;
  --brk:   #ff4040;
  --india: #FF9933;

  /* Typography */
  --ff-d: 'Bebas Neue', sans-serif;
  --ff-e: 'Crimson Pro', Georgia, serif;
  --ff-u: 'Epilogue', sans-serif;
  --ff-m: 'Roboto Mono', monospace;
}

/* Fix: valid selector for CSS variables */
:root {
  /* Backgrounds */
  --bg:        #090912;
  --surface:   #111120;
  --surface2:  #16162a;
  --surface3:  #0d0d1c;

  /* Borders */
  --border:    rgba(255,255,255,0.07);
  --border2:   rgba(255,255,255,0.13);
  --border3:   rgba(255,255,255,0.20);

  /* Brand */
  --brand:     #f0920e;
  --brand-dim: rgba(240,146,14,0.10);
  --brand-glow:rgba(240,146,14,0.25);
  --hover:     #ffaa30;

  /* Text — high contrast, accessible */
  --t1: #f2ede4;
  --t2: #c4c0b6;
  --t3: #888480;
  --t4: #555260;

  /* Vertical colours */
  --geo:   #e85555;
  --def:   #5a90f0;
  --mkt:   #d4a820;
  --tec:   #28c87a;
  --ana:   #c055e5;
  --brk:   #ff4040;
  --india: #FF9933;

  /* Typography */
  --ff-d: 'Bebas Neue', sans-serif;
  --ff-e: 'Crimson Pro', Georgia, serif;
  --ff-u: 'Epilogue', sans-serif;
  --ff-m: 'Roboto Mono', monospace;
}

/* ── RESET ── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--t1);
  font-family: var(--ff-u);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
}
a { text-decoration: none; color: inherit; }
button { cursor: pointer; font-family: var(--ff-u); }
img { max-width: 100%; }

/* Accessible focus styling */
:focus-visible {
  outline: 2px solid rgba(240,146,14,0.75);
  outline-offset: 2px;
}

/* ── ANIMATIONS ── */
@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.2; }
}
@keyframes sweep {
  0%   { left: -60%; }
  100% { left: 160%; }
}
@keyframes tickerScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── WAR ROOM STATUS BAR ── */
.warroom {
  background: #06060f;
  border-bottom: 1px solid var(--border);
  padding: 0 20px;
  height: 40px;
  display: flex;
  align-items: center;
  overflow-x: auto;
  scrollbar-width: none;
  position: sticky;
  top: 0;
  z-index: 200;
  gap: 0;
}
.warroom::-webkit-scrollbar { display: none; }

.wr-label {
  font-family: var(--ff-m);
  font-size: 9px;
  color: var(--t3);
  text-transform: uppercase;
  letter-spacing: 2.5px;
  padding-right: 16px;
  border-right: 1px solid var(--border);
  margin-right: 16px;
  flex-shrink: 0;
  white-space: nowrap;
}
.wr-group {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.wr-item {
  display: flex;
  align-items: center;
  gap: 5px;
  flex-shrink: 0;
  white-space: nowrap;
}

.wr-item { padding: 0 2px; }
.wr-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}
.dot-red   { background: var(--brk);  box-shadow: 0 0 5px var(--brk);  animation: blink 1.1s infinite; }
.dot-amber { background: var(--brand); box-shadow: 0 0 4px var(--brand-glow); animation: blink 1.8s infinite; }
.dot-green { background: var(--tec);  box-shadow: 0 0 4px var(--tec); }
.dot-blue  { background: var(--def);  box-shadow: 0 0 4px var(--def); }

.wr-text {
  font-family: var(--ff-m);
  font-size: 10px;
  color: var(--t2);
  white-space: nowrap;
}
.wr-text b   { color: var(--t1); font-weight: 500; }
.wr-text .neg { color: #ff7575; }
.wr-text .pos { color: var(--tec); }

.wr-div {
  color: var(--border2);
  font-size: 16px;
  margin: 0 10px;
  flex-shrink: 0;
}
.wr-clock {
  margin-left: auto;
  padding-left: 14px;
  border-left: 1px solid var(--border);
  flex-shrink: 0;
  text-align: right;
}
.wr-localtime {
  font-family: var(--ff-m);
  font-size: 11px;
  color: var(--brand);
  font-weight: 500;
  line-height: 1.2;
}
.wr-localzone {
  font-family: var(--ff-m);
  font-size: 8px;
  color: var(--t3);
  letter-spacing: 1px;
}

/* ── TOP NAV ── */
nav.topnav {
  background: rgba(9,9,18,0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  position: sticky;
  top: 40px;
  z-index: 199;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  flex-shrink: 0;
}
.nav-fox {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
}
.nav-logo-img {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  object-fit: cover;
  flex-shrink: 0;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.08), 0 10px 22px rgba(0,0,0,0.35);
}
.nav-wordmark {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.nav-reign {
  font-family: var(--ff-d);
  font-size: 20px;
  letter-spacing: 4px;
  color: var(--brand);
}
.nav-sov {
  font-family: var(--ff-m);
  font-size: 8px;
  letter-spacing: 4px;
  color: var(--t3);
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
}
.nav-btn {
  background: none;
  border: none;
  color: var(--t3);
  font-family: var(--ff-u);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: 5px;
  transition: all 0.2s;
}
.nav-btn:hover,
.nav-btn.active {
  color: var(--brand);
  background: var(--brand-dim);
}
.nav-right {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-live {
  font-family: var(--ff-m);
  font-size: 10px;
  color: var(--t3);
}
.nav-live b { color: var(--tec); }
.vulpes-badge {
  font-family: var(--ff-m);
  font-size: 9px;
  letter-spacing: 2px;
  color: var(--t3);
  border: 1px solid var(--border2);
  padding: 5px 10px;
  border-radius: 4px;
  background: var(--brand-dim);
}
.vulpes-badge span { color: var(--brand); }

/* ── TICKER ── */
.ticker-wrap {
  background: #080813;
  border-bottom: 1px solid var(--border);
  padding: 7px 0;
  overflow: hidden;
}
.ticker-inner {
  display: flex;
  animation: tickerScroll 100s linear infinite;
  width: max-content;
}
.ticker-inner:hover { animation-play-state: paused; }
.ti {
  font-family: var(--ff-m);
  font-size: 10.5px;
  color: var(--t2);
  padding: 0 26px;
  white-space: nowrap;
  border-right: 1px solid var(--border);
}
.ti .tag {
  font-weight: 700;
  font-size: 8px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-right: 8px;
  padding: 1px 5px;
  border-radius: 2px;
}
.tag.brk { color: var(--brk);   background: rgba(255,64,64,0.12); }
.tag.geo  { color: var(--geo);   background: rgba(232,85,85,0.12); }
.tag.def  { color: var(--def);   background: rgba(90,144,240,0.12); }
.tag.mkt  { color: var(--mkt);   background: rgba(212,168,32,0.12); }
.tag.tec  { color: var(--tec);   background: rgba(40,200,122,0.12); }
.tag.ind  { color: var(--india); background: rgba(255,153,51,0.12); }

/* ── PAGE SYSTEM ── */
.page { display: none; }
.page.active {
  display: block;
  animation: fadeIn 0.3s ease;
}
.container {
  max-width: 1380px;
  margin: 0 auto;
  padding: 0 24px;
}
.section-wrap { padding: 28px 0; }

/* ── SECTION HEADER ── */
.section-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.section-title {
  font-family: var(--ff-d);
  font-size: 20px;
  letter-spacing: 3px;
  color: var(--t1);
  flex-shrink: 0;
}
.section-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, var(--border2), transparent);
}
.section-tag {
  font-family: var(--ff-m);
  font-size: 8px;
  color: var(--t3);
  letter-spacing: 2px;
  text-transform: uppercase;
  flex-shrink: 0;
}

/* ── BETA BANNER ── */
.beta-banner {
  background: linear-gradient(90deg, rgba(240,146,14,0.10), rgba(240,146,14,0.03));
  border: 1px solid rgba(240,146,14,0.22);
  border-radius: 8px;
  padding: 11px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
  position: relative;
  overflow: hidden;
}
.beta-banner::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 50%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(240,146,14,0.08), transparent);
  animation: sweep 4s ease-in-out infinite;
}
.bb-badge {
  background: var(--brand);
  color: #000;
  font-size: 8px;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 3px;
  letter-spacing: 2px;
  flex-shrink: 0;
}
.bb-text {
  font-family: var(--ff-m);
  font-size: 11px;
  color: var(--t2);
}
.bb-text strong { color: var(--brand); }
.bb-right {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}
.bb-live {
  width: 7px; height: 7px;
  background: var(--tec);
  border-radius: 50%;
  box-shadow: 0 0 6px var(--tec);
  animation: blink 1.2s infinite;
}
.bb-livetxt {
  font-family: var(--ff-m);
  font-size: 9px;
  color: var(--tec);
  letter-spacing: 2px;
}

/* ── HERO GRID ── */
.hero-wrap { padding: 22px 0; }
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 370px;
  gap: 20px;
}

/* ── LEAD STORY ── */
.lead {
  background: var(--surface);
  border: 1px solid var(--border2);
  border-radius: 10px;
  padding: 28px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s;
}
.lead:hover { border-color: rgba(240,146,14,0.3); }
.lead::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brk) 0%, var(--brand) 55%, var(--geo) 100%);
}
.lead-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.lead-hl {
  font-family: var(--ff-d);
  font-size: clamp(24px, 3vw, 40px);
  line-height: 1.05;
  letter-spacing: 1px;
  color: var(--t1);
  margin-bottom: 14px;
}
.lead-deck {
  font-family: var(--ff-e);
  font-style: italic;
  font-size: clamp(14px, 1.6vw, 18px);
  line-height: 1.65;
  color: var(--t2);
  margin-bottom: 18px;
  border-left: 2px solid var(--brand);
  padding-left: 14px;
}
.lead-body p {
  font-family: var(--ff-e);
  font-size: clamp(14.5px, 1.4vw, 16.5px);
  line-height: 1.78;
  color: #d5d0c8;
  margin-bottom: 12px;
}
.lead-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
  gap: 10px;
}
.lead-ts {
  font-family: var(--ff-m);
  font-size: 10px;
  color: var(--t3);
}
.lead-ts span { color: var(--t2); }
.src-count {
  font-family: var(--ff-m);
  font-size: 9.5px;
  color: var(--t3);
  margin-top: 3px;
}
.src-count b { color: var(--brand); }

/* ── SHARE STRIP ── */
.share-strip { display: flex; gap: 8px; }
.sh-btn {
  background: var(--surface2);
  border: 1px solid var(--border2);
  color: var(--t2);
  font-family: var(--ff-m);
  font-size: 9px;
  padding: 5px 12px;
  border-radius: 4px;
  letter-spacing: 1px;
  transition: all 0.2s;
}
.sh-btn:hover {
  color: var(--brand);
  border-color: rgba(240,146,14,0.3);
  background: var(--brand-dim);
}

/* ── VERTICAL TAGS ── */
.vtag {
  font-size: 9px;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 3px;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: inline-block;
}
.vtag.geo   { background: rgba(232,85,85,0.15);  color: #ef8080; border: 1px solid rgba(232,85,85,0.3); }
.vtag.def   { background: rgba(90,144,240,0.15); color: #7ab0ff; border: 1px solid rgba(90,144,240,0.3); }
.vtag.mkt   { background: rgba(212,168,32,0.15); color: #e4c040; border: 1px solid rgba(212,168,32,0.3); }
.vtag.tec   { background: rgba(40,200,122,0.15); color: #50e098; border: 1px solid rgba(40,200,122,0.3); }
.vtag.ana   { background: rgba(192,85,229,0.15); color: #d480f5; border: 1px solid rgba(192,85,229,0.3); }
.vtag.brk   { background: rgba(255,64,64,0.15);  color: #ff7575; border: 1px solid rgba(255,64,64,0.3); }
.vtag.ind   { background: rgba(255,153,51,0.12); color: #FFB347; border: 1px solid rgba(255,153,51,0.3); }

/* ── CONFIDENCE BADGES ── */
.conf-badge {
  font-family: var(--ff-m);
  font-size: 9px;
  padding: 2px 7px;
  border-radius: 3px;
  letter-spacing: 1px;
  display: inline-block;
}
.conf-high { background: rgba(40,200,122,0.10); color: var(--tec); border: 1px solid rgba(40,200,122,0.22); }
.conf-med  { background: rgba(240,146,14,0.10); color: var(--brand); border: 1px solid rgba(240,146,14,0.22); }
.conf-low  { background: rgba(255,64,64,0.10);  color: var(--brk);  border: 1px solid rgba(255,64,64,0.22); }

/* ── SIDEBAR ── */
.sidebar { display: flex; flex-direction: column; gap: 16px; }

/* ── CONFLICT TRACKER ── */
.conflict-tracker {
  background: var(--surface);
  border: 1px solid rgba(232,85,85,0.20);
  border-radius: 10px;
  overflow: hidden;
}
.ct-header {
  background: rgba(232,85,85,0.08);
  border-bottom: 1px solid rgba(232,85,85,0.18);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.ct-title {
  font-family: var(--ff-m);
  font-size: 10px;
  color: var(--geo);
  letter-spacing: 2px;
  text-transform: uppercase;
}
.ct-count {
  font-family: var(--ff-d);
  font-size: 18px;
  color: var(--geo);
}
.ct-count small {
  font-size: 9px;
  font-family: var(--ff-m);
  color: var(--t3);
  margin-left: 4px;
  letter-spacing: 2px;
}
.conflict-item {
  border-bottom: 1px solid var(--border);
  padding: 11px 16px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  transition: background 0.2s;
}
.conflict-item:last-child { border-bottom: none; }
.conflict-item:hover { background: rgba(255,255,255,0.02); }
.ci-bar {
  width: 3px;
  border-radius: 2px;
  flex-shrink: 0;
  margin-top: 3px;
  align-self: stretch;
}
.bar-crit { background: var(--brk); box-shadow: 0 0 5px rgba(255,64,64,0.4); }
.bar-high { background: var(--geo); }
.bar-med  { background: var(--brand); }
.bar-low  { background: var(--def); }
.ci-body { flex: 1; min-width: 0; }
.ci-name {
  font-size: 11.5px;
  font-weight: 600;
  color: var(--t1);
  margin-bottom: 2px;
  line-height: 1.3;
}
.ci-parties {
  font-family: var(--ff-m);
  font-size: 9px;
  color: var(--t3);
  margin-bottom: 4px;
}
.ci-stats { display: flex; gap: 8px; flex-wrap: wrap; }
.ci-stat {
  font-family: var(--ff-m);
  font-size: 9px;
  color: var(--t3);
}
.ci-stat b   { color: var(--t2); font-weight: 500; }
.ci-stat.red b { color: #ff8585; }
.ci-stat.amb b { color: var(--brand); }
.ci-day {
  font-family: var(--ff-m);
  font-size: 9px;
  color: var(--t3);
  flex-shrink: 0;
  text-align: right;
  padding-top: 2px;
}
.ci-day b {
  color: var(--brand);
  font-size: 11px;
  display: block;
}

/* ── MARKETS SIDEBAR ── */
.markets-side {
  background: var(--surface);
  border: 1px solid rgba(212,168,32,0.18);
  border-radius: 10px;
  overflow: hidden;
}
.ms-header {
  background: rgba(212,168,32,0.07);
  border-bottom: 1px solid rgba(212,168,32,0.18);
  padding: 10px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.ms-title {
  font-family: var(--ff-m);
  font-size: 9px;
  color: var(--mkt);
  letter-spacing: 2px;
  text-transform: uppercase;
}
.ms-live {
  font-family: var(--ff-m);
  font-size: 8px;
  color: var(--tec);
  letter-spacing: 2px;
  animation: blink 1.5s infinite;
}
.ms-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 9px 16px;
  border-bottom: 1px solid var(--border);
  transition: background 0.2s;
}
.ms-row:last-child { border-bottom: none; }
.ms-row:hover { background: rgba(255,255,255,0.02); }
.ms-name { font-size: 11px; font-weight: 600; color: var(--t1); }
.ms-sub  { font-family: var(--ff-m); font-size: 8px; color: var(--t3); margin-top: 1px; }
.ms-val  { font-family: var(--ff-m); font-size: 13px; font-weight: 500; text-align: right; }
.ms-chg  { font-family: var(--ff-m); font-size: 9px; text-align: right; margin-top: 1px; }
.pos { color: #4edd98; }
.neg { color: #ff7575; }

/* ── INTELLIGENCE BRIEFS ── */
.brief {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 26px;
  margin-bottom: 16px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.2s;
}
.brief:hover { border-color: var(--border2); }
.brief-accent {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
}
.brief-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}
.brief-hl {
  font-family: var(--ff-d);
  font-size: clamp(18px, 2.2vw, 24px);
  letter-spacing: 0.5px;
  line-height: 1.1;
  color: var(--t1);
  margin-bottom: 10px;
}
.brief-deck {
  font-family: var(--ff-e);
  font-style: italic;
  font-size: clamp(13.5px, 1.6vw, 16px);
  line-height: 1.65;
  color: var(--t2);
  border-left: 2px solid var(--brand);
  padding-left: 12px;
  margin-bottom: 14px;
}
.brief-body p {
  font-family: var(--ff-e);
  font-size: clamp(13.5px, 1.25vw, 15.5px);
  line-height: 1.80;
  color: #cac6bc;
  margin-bottom: 12px;
}
.brief-body strong { color: var(--t1); }
.brief-foot {
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}
.brief-ts {
  font-family: var(--ff-m);
  font-size: 9.5px;
  color: var(--t3);
}

/* ── NEWS CARDS GRID ── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 15px;
  margin-bottom: 26px;
}
.cards-grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 15px;
  margin-bottom: 26px;
}
.nc {
  display: block;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 18px;
  transition: all 0.25s;
  position: relative;
  overflow: hidden;
}
.nc::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 100%;
}
.nc.geo::before   { background: var(--geo); }
.nc.def::before   { background: var(--def); }
.nc.mkt::before   { background: var(--mkt); }
.nc.tec::before   { background: var(--tec); }
.nc.ana::before   { background: var(--ana); }
.nc.brk::before   { background: var(--brk); }
.nc.india::before { background: var(--india); }
.nc:hover {
  border-color: var(--border2);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.35);
}
.nc-vtag  { margin-bottom: 10px; }
.nc-hl {
  font-family: var(--ff-d);
  font-size: clamp(15px, 1.9vw, 20px);
  line-height: 1.15;
  color: var(--t1);
  margin-bottom: 9px;
}
.nc-deck {
  font-family: var(--ff-e);
  font-size: clamp(12.5px, 1.35vw, 14.8px);
  line-height: 1.62;
  color: var(--t2);
  margin-bottom: 12px;
}
.nc-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 10px;
  border-top: 1px solid var(--border);
}
.nc-ts {
  font-family: var(--ff-m);
  font-size: 9.5px;
  color: var(--t3);
}
.nc-arr {
  font-size: 14px;
  color: var(--brand);
  transition: transform 0.2s;
}
.nc:hover .nc-arr { transform: translateX(4px); }

/* ── VULPES ANALYSIS ── */
.ana-section {
  background: linear-gradient(135deg, rgba(192,85,229,0.05) 0%, rgba(9,9,18,0) 60%);
  border: 1px solid rgba(192,85,229,0.18);
  border-radius: 10px;
  padding: 26px;
  margin-bottom: 22px;
}
.ana-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(192,85,229,0.14);
}
.ana-icon {
  width: 40px; height: 40px;
  border: 1px solid rgba(192,85,229,0.28);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
  background: rgba(192,85,229,0.07);
}
.ana-label {
  font-family: var(--ff-m);
  font-size: 9px;
  color: var(--ana);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 3px;
}
.ana-title {
  font-family: var(--ff-d);
  font-size: 21px;
  color: var(--t1);
  letter-spacing: 1px;
}
.ana-body p {
  font-family: var(--ff-e);
  font-size: 15px;
  line-height: 1.82;
  color: var(--t2);
  margin-bottom: 13px;
}
.ana-box {
  background: rgba(192,85,229,0.06);
  border: 1px solid rgba(192,85,229,0.18);
  border-radius: 6px;
  padding: 15px 17px;
  margin-top: 14px;
}
.ana-box-label {
  font-family: var(--ff-m);
  font-size: 9px;
  color: var(--ana);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 7px;
}
.ana-box p {
  font-family: var(--ff-e);
  font-size: 14.5px;
  line-height: 1.75;
  color: var(--t2);
}

/* ── MARKETS STRIP ── */
.markets-strip {
  background: #080813;
  border: 1px solid rgba(212,168,32,0.14);
  border-radius: 8px;
  padding: 14px 20px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
  margin-bottom: 26px;
  overflow-x: auto;
}
.mkt-item { text-align: center; flex-shrink: 0; }
.mkt-name {
  font-family: var(--ff-m);
  font-size: 8.5px;
  color: var(--t3);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.mkt-val {
  font-family: var(--ff-m);
  font-size: 14px;
  font-weight: 500;
  color: var(--t1);
  margin-bottom: 2px;
}
.mkt-chg { font-family: var(--ff-m); font-size: 9px; }

/* ── NEWSLETTER ── */
.nl-section {
  background: linear-gradient(135deg, var(--surface2), var(--surface));
  border: 1px solid var(--border2);
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  margin-bottom: 22px;
}
.nl-eyebrow {
  font-family: var(--ff-m);
  font-size: 9px;
  color: var(--brand);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 9px;
}
.nl-title {
  font-family: var(--ff-d);
  font-size: 30px;
  letter-spacing: 2px;
  color: var(--t1);
  margin-bottom: 9px;
}
.nl-sub {
  font-family: var(--ff-e);
  font-style: italic;
  font-size: 15px;
  color: var(--t2);
  margin-bottom: 20px;
}
.nl-form {
  display: flex;
  gap: 10px;
  max-width: 420px;
  margin: 0 auto;
}
.nl-input {
  flex: 1;
  background: var(--bg);
  border: 1px solid var(--border2);
  border-radius: 6px;
  padding: 11px 15px;
  color: var(--t1);
  font-family: var(--ff-u);
  font-size: 13px;
  outline: none;
  transition: border-color 0.2s;
}
.nl-input:focus { border-color: var(--brand); }
.nl-input::placeholder { color: var(--t3); }
.nl-btn {
  background: var(--brand);
  border: none;
  border-radius: 6px;
  padding: 11px 20px;
  color: #000;
  font-family: var(--ff-u);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: background 0.2s;
  white-space: nowrap;
}
.nl-btn:hover { background: var(--hover); }

/* ── ABOUT / INNER PAGES ── */
.page-hero {
  padding: 36px 0;
  text-align: center;
  border-bottom: 1px solid var(--border);
  margin-bottom: 32px;
}
.page-eyebrow {
  font-family: var(--ff-m);
  font-size: 10px;
  color: var(--brand);
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.page-title {
  font-family: var(--ff-d);
  font-size: 52px;
  letter-spacing: 4px;
  color: var(--t1);
  margin-bottom: 12px;
  line-height: 1;
}
.page-deck {
  font-family: var(--ff-e);
  font-style: italic;
  font-size: 18px;
  color: var(--t2);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.65;
}

/* ── STATS ROW ── */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-bottom: 32px;
}
.stat-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 22px;
  text-align: center;
  transition: border-color 0.2s;
}
.stat-card:hover { border-color: var(--border2); }
.stat-val {
  font-family: var(--ff-d);
  font-size: 38px;
  color: var(--brand);
  letter-spacing: 2px;
  line-height: 1;
}
.stat-label {
  font-size: 11.5px;
  color: var(--t3);
  margin-top: 6px;
  font-weight: 500;
}

/* ── ABOUT BLOCKS ── */
.about-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 32px;
}
.about-block {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 26px;
}
.ab-title {
  font-family: var(--ff-d);
  font-size: 21px;
  color: var(--brand);
  letter-spacing: 2px;
  margin-bottom: 12px;
}
.ab-text {
  font-family: var(--ff-e);
  font-size: 15px;
  line-height: 1.78;
  color: var(--t2);
}

/* ── PIPELINE ── */
.pipeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin-bottom: 32px;
}
.pipe-step {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 18px 14px;
  text-align: center;
  transition: border-color 0.2s;
}
.pipe-step:hover { border-color: var(--border2); }
.pipe-num {
  font-family: var(--ff-d);
  font-size: 28px;
  color: var(--brand);
  opacity: 0.4;
  margin-bottom: 5px;
}
.pipe-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--t1);
  margin-bottom: 4px;
  letter-spacing: 1px;
}
.pipe-desc {
  font-size: 11px;
  color: var(--t3);
  line-height: 1.5;
}

/* ── FOUNDERS ── */
.founders-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 32px;
}
.founder-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 24px;
  transition: border-color 0.2s;
}
.founder-card:hover { border-color: var(--border2); }
.fc-role {
  font-family: var(--ff-m);
  font-size: 9px;
  color: var(--brand);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 5px;
}
.fc-name {
  font-family: var(--ff-d);
  font-size: 24px;
  color: var(--t1);
  letter-spacing: 1px;
  margin-bottom: 10px;
}
.fc-bio {
  font-family: var(--ff-e);
  font-size: 14px;
  line-height: 1.75;
  color: var(--t2);
}

/* ── CONTACT ── */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-bottom: 26px;
}
.contact-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 22px;
  transition: border-color 0.2s;
}
.contact-card:hover { border-color: var(--border2); }
.cc-icon { font-size: 22px; margin-bottom: 9px; }
.cc-label {
  font-family: var(--ff-m);
  font-size: 9px;
  color: var(--t3);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 5px;
}
.cc-val {
  font-size: 14px;
  font-weight: 600;
  color: var(--brand);
}

/* ── CONTACT FORM ── */
.contact-form-wrap {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 28px;
  max-width: 560px;
}
.form-title {
  font-family: var(--ff-d);
  font-size: 22px;
  letter-spacing: 2px;
  color: var(--t1);
  margin-bottom: 20px;
}
.form-group { margin-bottom: 14px; }
.form-label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  color: var(--t2);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 5px;
}
.form-input,
.form-textarea {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--border2);
  border-radius: 6px;
  padding: 10px 14px;
  color: var(--t1);
  font-family: var(--ff-u);
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s;
}
.form-input:focus,
.form-textarea:focus  { border-color: var(--brand); }
.form-input::placeholder,
.form-textarea::placeholder { color: var(--t3); }
.form-textarea { height: 110px; resize: vertical; }
.form-submit {
  background: var(--brand);
  border: none;
  border-radius: 6px;
  padding: 12px 26px;
  color: #000;
  font-family: var(--ff-u);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: background 0.2s;
}
.form-submit:hover { background: var(--hover); }

/* ── VIDEO PAGE ── */
.video-placeholder {
  background: #0a0a18;
  border: 1px solid var(--border);
  border-radius: 8px;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 14px;
}
.vp-icon { font-size: 44px; opacity: 0.25; }
.vp-text {
  font-family: var(--ff-m);
  font-size: 10px;
  color: var(--t3);
  letter-spacing: 2px;
  text-transform: uppercase;
}
.vp-sub {
  font-family: var(--ff-e);
  font-style: italic;
  font-size: 13px;
  color: var(--t4);
}

/* ── INDIA ALERT ── */
.india-alert {
  background: rgba(255,64,64,0.07);
  border: 1px solid rgba(255,64,64,0.22);
  border-radius: 8px;
  padding: 14px 18px;
  margin-bottom: 22px;
  display: flex;
  gap: 13px;
  align-items: flex-start;
}
.ia-icon { font-size: 18px; flex-shrink: 0; margin-top: 1px; }
.ia-label {
  font-family: var(--ff-m);
  font-size: 9px;
  color: var(--brk);
  letter-spacing: 2px;
  margin-bottom: 5px;
  text-transform: uppercase;
}
.ia-text {
  font-size: 13px;
  color: var(--t2);
  line-height: 1.62;
}

/* ── FOOTER ── */
footer {
  background: #050510;
  border-top: 1px solid var(--border);
  padding: 28px 24px;
  margin-top: 32px;
}
.footer-inner {
  max-width: 1380px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
}
.footer-brand {
  font-family: var(--ff-d);
  font-size: 15px;
  letter-spacing: 4px;
  color: var(--brand);
}
.footer-copy {
  font-family: var(--ff-m);
  font-size: 9px;
  color: var(--t3);
  letter-spacing: 1px;
  text-align: center;
  line-height: 1.8;
}
.footer-links { display: flex; gap: 14px; }
.footer-links a {
  font-family: var(--ff-m);
  font-size: 9px;
  color: var(--t3);
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--brand); }

/* ── MOBILE NAV ── */
.mobile-nav {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: rgba(6,6,15,0.98);
  backdrop-filter: blur(16px);
  border-top: 1px solid var(--border);
  z-index: 300;
}
.mn-inner {
  display: flex;
  justify-content: space-around;
  padding: 8px 0 calc(8px + env(safe-area-inset-bottom));
}
.mn-btn {
  background: none;
  border: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  padding: 7px 14px;
  color: var(--t3);
  transition: color 0.2s;
}
.mn-btn.active,
.mn-btn:hover { color: var(--brand); }
.mn-icon { font-size: 18px; }
.mn-label {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ── UTILITY ── */
.dimmed    { opacity: 0.45; pointer-events: none; }
.text-brand { color: var(--brand); }
.text-geo   { color: var(--geo); }
.text-def   { color: var(--def); }
.text-mkt   { color: var(--mkt); }
.text-tec   { color: var(--tec); }
.text-ana   { color: var(--ana); }
.text-brk   { color: var(--brk); }
.text-india { color: var(--india); }

/* ═══════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════ */
@media (max-width: 1100px) {
  .hero-grid { grid-template-columns: 1fr; }
  .sidebar   { display: grid; grid-template-columns: 1fr 1fr; }
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-row  { grid-template-columns: repeat(2, 1fr); }
  .about-body { grid-template-columns: 1fr; }
  .pipeline   { grid-template-columns: repeat(3, 1fr); }
  .founders-grid { grid-template-columns: 1fr; }
  .markets-strip { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .hero-grid, .sidebar { grid-template-columns: 1fr; }
  .cards-grid, .cards-grid-2 { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .nav-right { display: none; }
  .mobile-nav { display: block; }
  body { padding-bottom: 68px; }
  .lead-hl { font-size: 26px; }
  .markets-strip { grid-template-columns: repeat(2, 1fr); }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .pipeline  { grid-template-columns: repeat(2, 1fr); }
  .page-title { font-size: 36px; }
  .brief-hl { font-size: 19px; }
}
@media (max-width: 480px) {
  .container { padding: 0 14px; }
  .lead, .brief { padding: 18px; }
  .lead-hl { font-size: 22px; }
  .lead-deck { font-size: 15px; }
  .pipeline { grid-template-columns: 1fr 1fr; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .warroom { padding: 0 12px; }
  nav.topnav { padding: 0 14px; }
}

/* Reduced motion: stop ticker + blinking */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .ticker-inner { animation: none !important; }
}

/* ═══════════════════════════════════
   RSM v9 VISUAL REDESIGN OVERRIDES
   (new palette + cleaner interface)
   ═══════════════════════════════════ */
:root {
  --bg: #070b14;
  --surface: #0f1726;
  --surface2: #121d31;
  --surface3: #0a1222;

  --border: rgba(137, 180, 255, 0.14);
  --border2: rgba(137, 180, 255, 0.26);
  --border3: rgba(137, 180, 255, 0.40);

  --brand: #4fb3ff;
  --brand-dim: rgba(79,179,255,0.14);
  --brand-glow: rgba(79,179,255,0.30);
  --hover: #7bc7ff;

  --t1: #edf4ff;
  --t2: #b8c7df;
  --t3: #7d90ad;
  --t4: #556682;

  --geo: #ff6b7f;
  --def: #72a8ff;
  --mkt: #ffd166;
  --tec: #2dd4bf;
  --ana: #b388ff;
  --brk: #ff4d67;
  --india: #ffb266;
}

body {
  background:
    radial-gradient(1200px 500px at 10% -10%, rgba(79,179,255,0.16), transparent 60%),
    radial-gradient(1000px 460px at 100% -20%, rgba(179,136,255,0.14), transparent 62%),
    var(--bg);
}

.warroom {
  height: 44px;
  background: rgba(7, 11, 20, 0.92);
  border-bottom: 1px solid var(--border2);
  backdrop-filter: blur(10px);
}

nav.topnav {
  height: 68px;
  background: rgba(10, 18, 34, 0.9);
  border-bottom: 1px solid var(--border2);
  top: 44px;
}

.nav-logo-img {
  width: 44px !important;
  height: 44px !important;
  max-width: 44px !important;
  max-height: 44px !important;
  min-width: 44px;
  min-height: 44px;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

.lead,
.brief,
.nc,
.stat-card,
.about-block,
.founder-card,
.contact-card,
.contact-form-wrap,
.nl-section,
.ana-section,
.conflict-tracker,
.markets-side {
  border-radius: 14px;
  border-color: var(--border);
  box-shadow: 0 14px 34px rgba(3, 8, 18, 0.38);
}

.lead::before,
.brief-accent {
  height: 4px;
}

.nav-btn:hover,
.nav-btn.active,
.mn-btn.active,
.mn-btn:hover {
  color: var(--brand);
  background: rgba(79,179,255,0.16);
}

.vtag,
.conf-badge {
  border-radius: 999px;
  padding-left: 10px;
  padding-right: 10px;
}

.ticker-wrap {
  background: rgba(8, 14, 27, 0.92);
  border-bottom: 1px solid var(--border);
}

.section-head {
  margin-bottom: 20px;
  padding-bottom: 14px;
}

.section-title {
  letter-spacing: 2px;
}

.lead-hl,
.brief-hl,
.nc-hl {
  letter-spacing: 0.3px;
}

footer {
  background: rgba(5, 10, 20, 0.92);
  border-top: 1px solid var(--border2);
}

@media (max-width: 768px) {
  .warroom { height: 42px; }
  nav.topnav { top: 42px; height: 64px; }
  .nav-logo-img {
    width: 38px !important;
    height: 38px !important;
    max-width: 38px !important;
    max-height: 38px !important;
    min-width: 38px;
    min-height: 38px;
  }
}
