/* =========================================
   CSUS INTELLIGENCE - STYLES.CSS
   Cyber Intelligence for Decision Makers
   Phase 2 — Complete Stylesheet
   ========================================= */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Space+Grotesk:wght@400;500;600;700;800&family=JetBrains+Mono:wght@400;500;600&display=swap');

/* ─── CSS Custom Properties ─── */
:root {
  --bg:           #081221;
  --bg-card:      #0d1b2e;
  --bg-card-alt:  #0f2035;
  --primary:      #0A84FF;
  --primary-dim:  rgba(10, 132, 255, 0.15);
  --primary-glow: rgba(10, 132, 255, 0.4);
  --accent:       #B8C4D6;
  --text:         #FFFFFF;
  --text-muted:   #8a9ab5;
  --text-dim:     #5a6a82;
  --border:       rgba(10, 132, 255, 0.2);
  --border-subtle:rgba(184, 196, 214, 0.1);
  --amber:        #F59E0B;
  --amber-bg:     #451a03;
  --green:        #22c55e;
  --yellow:       #eab308;
  --orange:       #f97316;
  --red:          #ef4444;
  --nav-height:   70px;
  --radius:       8px;
  --radius-lg:    12px;
  --shadow-card:  0 4px 24px rgba(0, 0, 0, 0.4);
  --shadow-glow:  0 0 20px rgba(10, 132, 255, 0.25);

  /* ── Threat Level Color Variables ── */
  --level-critical-bg:    rgba(239, 68, 68, 0.15);
  --level-critical-color: #ef4444;
  --level-critical-border:rgba(239, 68, 68, 0.3);
  --level-high-bg:        rgba(249, 115, 22, 0.15);
  --level-high-color:     #f97316;
  --level-high-border:    rgba(249, 115, 22, 0.3);
  --level-elevated-bg:    rgba(234, 179, 8, 0.15);
  --level-elevated-color: #eab308;
  --level-elevated-border:rgba(234, 179, 8, 0.3);
  --level-low-bg:         rgba(34, 197, 94, 0.12);
  --level-low-color:      #22c55e;
  --level-low-border:     rgba(34, 197, 94, 0.25);
  --mono-font: 'JetBrains Mono', 'Courier New', monospace;
}

/* ─── Reset & Base ─── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.2s;
}

a:hover {
  color: #4da6ff;
}

img {
  max-width: 100%;
  height: auto;
}

::selection {
  background: var(--primary-dim);
  color: var(--text);
}

/* Monospace utility class */
.mono {
  font-family: var(--mono-font);
  font-size: 0.875em;
}

/* ─── Navigation ─── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  padding: 0 2rem;
  transition: background 0.3s ease, backdrop-filter 0.3s ease, box-shadow 0.3s ease;
}

.nav.scrolled {
  background: rgba(8, 18, 33, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--border-subtle);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
}

.nav-logo {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text);
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}

.nav-logo:hover {
  color: var(--primary);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  list-style: none;
}

.nav-links a {
  color: var(--accent);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  text-decoration: none;
  transition: color 0.2s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--primary);
  transform: scaleX(0);
  transition: transform 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text);
}

.nav-links a.active::after,
.nav-links a:hover::after {
  transform: scaleX(1);
}

/* Mobile nav */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text);
  padding: 0.5rem;
}

.nav-toggle svg {
  display: block;
}

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.25s ease;
  text-decoration: none;
  border: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 0 0 0 var(--primary-glow);
}

.btn-primary:hover {
  background: #2a97ff;
  color: #fff;
  box-shadow: 0 0 24px var(--primary-glow);
  transform: translateY(-1px);
}

.btn-secondary {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}

.btn-secondary:hover {
  background: var(--primary-dim);
  border-color: var(--primary);
  color: var(--primary);
  box-shadow: 0 0 16px var(--primary-glow);
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: var(--text-muted);
  border: 1px solid var(--border-subtle);
}

.btn-ghost:hover {
  color: var(--text);
  border-color: var(--border);
  background: rgba(255,255,255,0.04);
}

.btn-nav {
  padding: 0.5rem 1.1rem;
  font-size: 0.825rem;
  background: var(--primary);
  color: #fff;
  border-radius: var(--radius);
  font-weight: 600;
}

.btn-nav:hover {
  background: #2a97ff;
  color: #fff;
  box-shadow: 0 0 16px var(--primary-glow);
}

/* ─── Hero ─── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: calc(var(--nav-height) + 5rem) 2rem 4rem;
}

/* Dot pulse grid background */
.hero-dot-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-dot-grid::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(10,132,255,0.35) 1px, transparent 1px);
  background-size: 36px 36px;
  animation: dotPulse 4s ease-in-out infinite;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 100%);
}

@keyframes dotPulse {
  0%, 100% { opacity: 0.3; transform: scale(1); }
  50%       { opacity: 0.6; transform: scale(1.03); }
}

/* Circuit/grid background pattern */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(10, 132, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10, 132, 255, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

/* Radial glow */
.hero::after {
  content: '';
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 500px;
  background: radial-gradient(ellipse, rgba(10, 132, 255, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 860px;
}

.hero-label {
  display: inline-block;
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  font-family: 'Inter', sans-serif;
}

.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  color: var(--text);
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #ffffff 0%, #B8C4D6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--accent);
  max-width: 640px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ─── Threat Banner (Homepage) ─── */
.threat-banner {
  position: sticky;
  top: var(--nav-height);
  z-index: 900;
  background: rgba(8, 18, 33, 0.95);
  border-bottom: 1px solid rgba(234, 179, 8, 0.25);
  backdrop-filter: blur(10px);
}

.threat-banner-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0.55rem 2rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.78rem;
  font-family: var(--mono-font);
  flex-wrap: wrap;
}

.threat-banner-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--yellow);
  animation: pulse 2s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(234,179,8,0.4); }
  50% { opacity: 0.8; box-shadow: 0 0 0 5px rgba(234,179,8,0); }
}

.threat-banner-label {
  color: var(--text-dim);
  font-weight: 600;
  letter-spacing: 0.1em;
}

.threat-banner-level {
  font-weight: 700;
  letter-spacing: 0.12em;
}

.threat-banner-level.yellow { color: var(--yellow); }
.threat-banner-level.orange { color: var(--orange); }
.threat-banner-level.red    { color: var(--red); }
.threat-banner-level.green  { color: var(--green); }

.threat-banner-sep { color: var(--text-dim); }
.threat-banner-desc { color: var(--accent); }

.threat-banner-updated {
  color: var(--text-dim);
  margin-left: auto;
}

.threat-banner-link {
  color: var(--primary);
  font-weight: 600;
  white-space: nowrap;
  transition: color 0.2s;
}

.threat-banner-link:hover { color: #4da6ff; }

/* ─── Stats Bar ─── */
.stats-bar {
  background: var(--bg-card);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  padding: 1.5rem 2rem;
}

.stats-bar-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  padding: 0.5rem 2.5rem;
  text-align: center;
}

.stat-number {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
}

.stat-suffix {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
}

.stat-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  max-width: 140px;
  text-align: center;
  line-height: 1.4;
}

.stat-icon {
  font-size: 1.5rem;
  line-height: 1;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border-subtle);
  flex-shrink: 0;
}

/* ─── Latest Intelligence Section ─── */
.section-header-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 2rem;
  gap: 1rem;
  flex-wrap: wrap;
}

.intel-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.intel-preview-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-card);
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.intel-preview-card:hover {
  border-color: rgba(10,132,255,0.5);
  box-shadow: var(--shadow-card), var(--shadow-glow);
  transform: translateY(-3px);
}

.intel-preview-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.intel-preview-card h3 {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.4;
  margin: 0;
}

.intel-preview-card h3 a {
  color: var(--text);
}

.intel-preview-card h3 a:hover {
  color: var(--primary);
}

.intel-preview-card p {
  color: var(--text-muted);
  font-size: 0.85rem;
  line-height: 1.6;
  flex: 1;
}

.intel-preview-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
}

.intel-date {
  color: var(--text-dim);
  font-size: 0.75rem;
  font-family: var(--mono-font);
}

.read-link {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--primary);
  transition: color 0.2s;
}

.read-link:hover { color: #4da6ff; }

/* ─── Category / Status Badges ─── */
.category-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.2rem 0.65rem;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.category-badge.brief {
  background: rgba(10,132,255,0.15);
  color: var(--primary);
  border: 1px solid rgba(10,132,255,0.25);
}

.category-badge.vuln {
  background: rgba(239,68,68,0.12);
  color: var(--red);
  border: 1px solid rgba(239,68,68,0.2);
}

.category-badge.actor {
  background: rgba(249,115,22,0.12);
  color: var(--orange);
  border: 1px solid rgba(249,115,22,0.2);
}

.category-badge.sector {
  background: rgba(34,197,94,0.1);
  color: var(--green);
  border: 1px solid rgba(34,197,94,0.2);
}

/* ─── Threat Badges ─── */
.threat-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.threat-badge.yellow {
  background: var(--level-elevated-bg);
  color: var(--level-elevated-color);
  border: 1px solid var(--level-elevated-border);
}

.threat-badge.green,
.threat-badge.green-badge {
  background: var(--level-low-bg);
  color: var(--level-low-color);
  border: 1px solid var(--level-low-border);
}

.threat-badge.orange {
  background: var(--level-high-bg);
  color: var(--level-high-color);
  border: 1px solid var(--level-high-border);
}

.threat-badge.red {
  background: var(--level-critical-bg);
  color: var(--level-critical-color);
  border: 1px solid var(--level-critical-border);
}

.threat-badge.small {
  font-size: 0.65rem;
  padding: 0.15rem 0.5rem;
}

/* ─── Social Proof / Industries ─── */
.trusted-section { background: var(--bg-card); }

.industry-grid {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 2.5rem;
}

.industry-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1.5rem 2rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  min-width: 120px;
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
}

.industry-item:hover {
  border-color: rgba(10,132,255,0.4);
  box-shadow: var(--shadow-glow);
  transform: translateY(-2px);
}

.industry-icon {
  font-size: 2rem;
}

.industry-name {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ─── Sections ─── */
.section {
  padding: 5rem 2rem;
}

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.section-label {
  display: inline-block;
  color: var(--primary);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  font-family: 'Inter', sans-serif;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 1rem;
  color: var(--text);
}

.section-sub {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 600px;
  margin-bottom: 3rem;
}

.section-divider {
  width: 60px;
  height: 2px;
  background: var(--primary);
  margin: 1.5rem 0;
}

/* ─── Cards ─── */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-card);
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
}

.card:hover {
  border-color: rgba(10, 132, 255, 0.5);
  box-shadow: var(--shadow-card), var(--shadow-glow);
  transform: translateY(-3px);
}

.card-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  display: block;
}

.card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
  color: var(--text);
}

.card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ─── Why CSUS Section ─── */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.why-left h3 {
  font-size: 1.5rem;
  color: var(--accent);
  margin-bottom: 1rem;
  font-weight: 500;
}

.why-right h3 {
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.check-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text);
  font-size: 1rem;
}

.check-list li::before {
  content: '✓';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--primary-dim);
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: 700;
  flex-shrink: 0;
  border: 1px solid var(--border);
}

.why-bottom {
  margin-top: 3rem;
  padding: 2rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  border-left: 3px solid var(--primary);
}

.why-bottom p {
  font-size: 1.1rem;
  color: var(--accent);
  font-style: italic;
  line-height: 1.7;
}

/* ─── Who We Serve Cards ─── */
.serve-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

/* ─── Intelligence Tiles ─── */
.tiles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.tile {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
  cursor: default;
  position: relative;
  overflow: hidden;
}

.tile::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), transparent);
  opacity: 0;
  transition: opacity 0.25s;
}

.tile:hover {
  border-color: rgba(10, 132, 255, 0.45);
  box-shadow: var(--shadow-card), 0 0 30px rgba(10, 132, 255, 0.15);
  transform: translateY(-3px);
}

.tile:hover::before {
  opacity: 1;
}

.tile-icon {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  display: block;
}

.tile h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.4rem;
}

.tile p {
  font-size: 0.825rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* ─── Final CTA Section ─── */
.cta-section {
  padding: 6rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(10, 132, 255, 0.06) 0%, transparent 100%);
  pointer-events: none;
}

.cta-section h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 2rem;
}

/* ─── Classification Bar ─── */
.classification-bar {
  position: sticky;
  top: 0;
  z-index: 999;
  background: var(--amber);
  color: #1c0a00;
  text-align: center;
  padding: 0.5rem 2rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-family: 'Inter', sans-serif;
}

/* ─── Brief Page ─── */
.brief-header {
  background: linear-gradient(180deg, rgba(10, 132, 255, 0.05) 0%, transparent 100%);
  padding: 3rem 2rem 2rem;
  border-bottom: 1px solid var(--border-subtle);
}

.brief-header-inner {
  max-width: 900px;
  margin: 0 auto;
}

.brief-metadata-bar {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 1.25rem;
  padding: 0.6rem 1rem;
  background: rgba(10,132,255,0.05);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--mono-font);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: var(--text-dim);
}

.brief-meta-item { color: var(--text-muted); }

.brief-meta-sep { color: var(--text-dim); }

.brief-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: center;
  margin-top: 1rem;
  font-size: 0.825rem;
  color: var(--text-muted);
}

.brief-meta span {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

/* Brief Actions */
.brief-actions {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.25rem;
  flex-wrap: wrap;
}

.btn-brief-action {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text-muted);
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-brief-action:hover {
  color: var(--text);
  border-color: var(--primary);
  background: var(--primary-dim);
}

/* Threat Level Bar */
.threat-level-bar {
  display: flex;
  gap: 3px;
  margin: 2rem 0;
  border-radius: var(--radius);
  overflow: hidden;
}

.threat-segment {
  flex: 1;
  height: 8px;
  border-radius: 2px;
  opacity: 0.3;
  transition: opacity 0.3s;
}

.threat-segment.active {
  opacity: 1;
}

.threat-segment.seg-green  { background: var(--green); }
.threat-segment.seg-yellow { background: var(--yellow); }
.threat-segment.seg-orange { background: var(--orange); }
.threat-segment.seg-red    { background: var(--red); }

.threat-labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-top: 0.4rem;
}

.threat-labels span.active-label {
  color: var(--yellow);
}

/* Brief Content */
.brief-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem;
}

.intel-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  margin-bottom: 1.5rem;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.intel-card-header {
  padding: 1.25rem 1.75rem;
  border-bottom: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(10, 132, 255, 0.04);
}

.intel-card-header .icon {
  font-size: 1.1rem;
}

.intel-card-header h2 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  font-family: 'Inter', sans-serif;
  letter-spacing: 0;
}

.intel-card-header .card-label {
  margin-left: auto;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--primary);
  background: var(--primary-dim);
  border: 1px solid var(--border);
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
}

.intel-card-body {
  padding: 1.75rem;
}

.intel-card-body p {
  color: var(--accent);
  line-height: 1.75;
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.intel-card-body p:last-child {
  margin-bottom: 0;
}

.intel-card-body h4 {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text);
  margin: 1.25rem 0 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* Analyst Note */
.analyst-note {
  background: rgba(10,132,255,0.05);
  border: 1px solid rgba(10,132,255,0.2);
  border-left: 3px solid var(--primary);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  margin-bottom: 1.5rem;
}

.analyst-note-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.analyst-icon { font-size: 1rem; }

.analyst-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--primary);
}

.analyst-note p {
  color: var(--text-muted);
  font-size: 0.875rem;
  line-height: 1.65;
}

/* Actor Section in brief */
.actor-section { }

.actor-section-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 0.75rem;
}

.actor-section-header h4 {
  margin: 0;
  font-size: 1rem;
  color: var(--text);
  text-transform: none;
  letter-spacing: 0;
}

.actor-attribution {
  font-size: 0.75rem;
  color: var(--text-dim);
  font-style: italic;
}

/* Vuln list */
.vuln-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.vuln-item {
  background: var(--bg);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.vuln-severity {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  white-space: nowrap;
  margin-top: 2px;
}

.vuln-severity.critical {
  background: var(--level-critical-bg);
  color: var(--level-critical-color);
  border: 1px solid var(--level-critical-border);
}

.vuln-severity.high {
  background: var(--level-high-bg);
  color: var(--level-high-color);
  border: 1px solid var(--level-high-border);
}

.vuln-info strong {
  color: var(--text);
  font-size: 0.9rem;
  display: block;
  margin-bottom: 0.25rem;
}

.vuln-info span {
  color: var(--text-muted);
  font-size: 0.825rem;
  line-height: 1.55;
}

/* Brief note box */
.brief-note {
  background: rgba(234,179,8,0.06);
  border: 1px solid rgba(234,179,8,0.2);
  border-radius: var(--radius);
  padding: 0.875rem 1.25rem;
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* Enhanced action list */
.action-list-enhanced {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.action-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 0.875rem 1.25rem;
  background: var(--bg);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
}

.action-priority {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  white-space: nowrap;
  margin-top: 2px;
  flex-shrink: 0;
}

.action-priority.immediate {
  background: var(--level-critical-bg);
  color: var(--level-critical-color);
  border: 1px solid var(--level-critical-border);
}

.action-priority.this-week {
  background: var(--level-high-bg);
  color: var(--level-high-color);
  border: 1px solid var(--level-high-border);
}

.action-priority.this-month {
  background: var(--level-elevated-bg);
  color: var(--level-elevated-color);
  border: 1px solid var(--level-elevated-border);
}

.action-content {
  flex: 1;
}

.action-content strong {
  color: var(--text);
  display: block;
  margin-bottom: 0.2rem;
  font-size: 0.9rem;
}

.action-content {
  color: var(--text-muted);
  font-size: 0.85rem;
  line-height: 1.55;
}

/* Action Checklist (old style) */
.action-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.action-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--accent);
  font-size: 0.95rem;
  padding: 0.75rem 1rem;
  background: rgba(10, 132, 255, 0.04);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
}

.action-list li::before {
  content: '□';
  color: var(--primary);
  font-size: 1.1rem;
  flex-shrink: 0;
}

/* Sources Grid */
.sources-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
}

.source-item {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 1rem;
  background: var(--bg);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
}

.source-icon { font-size: 1.25rem; }

.source-item strong {
  color: var(--text);
  font-size: 0.85rem;
}

.source-item span {
  color: var(--text-dim);
  font-size: 0.78rem;
  line-height: 1.4;
}

/* Next Brief Box */
.next-brief-box {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.5rem;
  background: rgba(10,132,255,0.06);
  border: 1px solid rgba(10,132,255,0.2);
  border-radius: var(--radius-lg);
  margin-bottom: 1.5rem;
}

.next-brief-icon { font-size: 2rem; }

.next-brief-content strong {
  color: var(--text);
  display: block;
  margin-bottom: 0.35rem;
}

.next-brief-content p {
  color: var(--text-muted);
  font-size: 0.875rem;
}

/* Social Share */
.social-share {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
  padding: 1.25rem;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
}

.share-label {
  color: var(--text-muted);
  font-size: 0.825rem;
  font-weight: 600;
  white-space: nowrap;
}

.share-buttons {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.share-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.9rem;
  border-radius: var(--radius);
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  border: none;
}

.share-btn.twitter {
  background: rgba(0,0,0,0.5);
  color: var(--text);
  border: 1px solid rgba(255,255,255,0.1);
}

.share-btn.twitter:hover {
  background: rgba(255,255,255,0.1);
  color: var(--text);
}

.share-btn.linkedin {
  background: rgba(0,119,181,0.15);
  color: #0077b5;
  border: 1px solid rgba(0,119,181,0.25);
}

.share-btn.linkedin:hover {
  background: rgba(0,119,181,0.25);
  color: #0077b5;
}

.share-btn.copy-link {
  background: var(--bg);
  color: var(--text-muted);
  border: 1px solid var(--border-subtle);
}

.share-btn.copy-link:hover {
  color: var(--text);
  border-color: var(--border);
}

/* Bottom line */
.bottom-line-card {
  border-color: rgba(10, 132, 255, 0.4);
  background: linear-gradient(135deg, var(--bg-card) 0%, rgba(10, 132, 255, 0.05) 100%);
}

/* ─── Dashboard ─── */
.dashboard-body {
  background: #060f1c;
}

.dash-header-bar {
  background: rgba(8,18,33,0.98);
  border-bottom: 1px solid rgba(10,132,255,0.15);
  padding: 0;
  position: sticky;
  top: var(--nav-height);
  z-index: 800;
}

.dash-header-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0.65rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.dash-header-left {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.dash-title {
  font-family: var(--mono-font);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  text-transform: uppercase;
}

.dash-sep { color: var(--text-dim); font-size: 0.7rem; }

.dash-date {
  font-size: 0.75rem;
  color: var(--text-dim);
}

.dash-header-right {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.dash-classification {
  font-family: var(--mono-font);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  padding: 0.2rem 0.6rem;
  background: var(--amber);
  color: #1c0a00;
  border-radius: 3px;
}

.dash-status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  animation: pulse 2s ease-in-out infinite;
}

.dash-status-text {
  font-size: 0.7rem;
  color: var(--green);
  font-weight: 600;
  letter-spacing: 0.1em;
}

/* Dashboard Main */
.dashboard-main {
  max-width: 1400px;
  margin: 0 auto;
  padding: 1.5rem 2rem 3rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.dash-row {
  display: flex;
  gap: 1.25rem;
}

.dash-row-split > .dash-panel {
  flex: 1;
  min-width: 0;
}

/* Dashboard Panel */
.dash-panel {
  background: var(--bg-card);
  border: 1px solid rgba(10,132,255,0.15);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.dash-panel-header {
  padding: 0.875rem 1.25rem;
  border-bottom: 1px solid rgba(10,132,255,0.1);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(10,132,255,0.03);
}

.dash-panel-title {
  font-family: var(--mono-font);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  text-transform: uppercase;
}

.dash-panel-sub {
  font-size: 0.72rem;
  color: var(--text-dim);
}

.dash-panel-badge {
  margin-left: auto;
  font-family: var(--mono-font);
  font-size: 0.62rem;
  font-weight: 700;
  color: var(--green);
  background: rgba(34,197,94,0.1);
  border: 1px solid rgba(34,197,94,0.2);
  padding: 0.15rem 0.5rem;
  border-radius: 3px;
  letter-spacing: 0.1em;
  animation: pulse 2s ease-in-out infinite;
}

.dash-link {
  margin-left: auto;
  font-size: 0.72rem;
  color: var(--primary);
  font-weight: 600;
}

.dash-live-badge {
  margin-left: auto;
  font-family: var(--mono-font);
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--green);
  letter-spacing: 0.1em;
}

/* Global Threat Display */
.global-threat-display {
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.global-threat-indicator {
  position: relative;
  width: 120px;
  height: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  flex-shrink: 0;
}

.global-threat-indicator.yellow {
  background: rgba(234,179,8,0.1);
  border: 2px solid var(--yellow);
  box-shadow: 0 0 30px rgba(234,179,8,0.2), inset 0 0 20px rgba(234,179,8,0.05);
}

.global-threat-indicator.orange {
  background: rgba(249,115,22,0.1);
  border: 2px solid var(--orange);
  box-shadow: 0 0 30px rgba(249,115,22,0.2);
}

.global-threat-indicator.red {
  background: rgba(239,68,68,0.1);
  border: 2px solid var(--red);
  box-shadow: 0 0 30px rgba(239,68,68,0.2);
}

.global-threat-ring {
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1px solid rgba(234,179,8,0.2);
  animation: ringPulse 3s ease-in-out infinite;
}

@keyframes ringPulse {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 0.2; transform: scale(1.05); }
}

.global-threat-label {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--yellow);
  letter-spacing: 0.08em;
}

.global-threat-sublabel {
  font-family: var(--mono-font);
  font-size: 0.6rem;
  font-weight: 600;
  color: rgba(234,179,8,0.6);
  letter-spacing: 0.15em;
  margin-top: 2px;
}

.global-threat-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.global-threat-desc {
  color: var(--accent);
  font-size: 0.875rem;
  line-height: 1.65;
}

.global-threat-desc strong {
  color: var(--text);
  display: block;
  margin-bottom: 0.3rem;
}

.threat-scale {
  display: flex;
  gap: 0.4rem;
}

.ts-item {
  flex: 1;
  padding: 0.35rem;
  text-align: center;
  font-family: var(--mono-font);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  border-radius: 4px;
  opacity: 0.35;
}

.ts-item.active { opacity: 1; }

.ts-item.green  { background: rgba(34,197,94,0.15);  color: var(--green);  border: 1px solid rgba(34,197,94,0.3);  }
.ts-item.yellow { background: rgba(234,179,8,0.15);  color: var(--yellow); border: 1px solid rgba(234,179,8,0.3);  }
.ts-item.orange { background: rgba(249,115,22,0.15); color: var(--orange); border: 1px solid rgba(249,115,22,0.3); }
.ts-item.red    { background: rgba(239,68,68,0.15);  color: var(--red);    border: 1px solid rgba(239,68,68,0.3);  }

.global-threat-updated {
  font-size: 0.7rem;
  color: var(--text-dim);
}

/* Threat History Chart */
.threat-history-chart {
  display: flex;
  align-items: flex-end;
  gap: 0.5rem;
  padding: 1.25rem 1.25rem 0;
  height: 160px;
}

.th-bar-group {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  height: 100%;
  justify-content: flex-end;
}

.th-bar {
  width: 100%;
  border-radius: 3px 3px 0 0;
  transition: height 0.6s cubic-bezier(0.16,1,0.3,1);
  min-height: 4px;
}

.th-bar.green  { background: var(--green); }
.th-bar.yellow { background: var(--yellow); }
.th-bar.orange { background: var(--orange); }
.th-bar.red    { background: var(--red); }

.th-label {
  font-size: 0.6rem;
  color: var(--text-dim);
  letter-spacing: 0.05em;
}

.active-day .th-label {
  color: var(--primary);
  font-weight: 600;
}

.th-legend {
  display: flex;
  gap: 1rem;
  padding: 0.6rem 1.25rem 0.875rem;
  flex-wrap: wrap;
}

.thl-item {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.thl-item.green  { color: var(--green); }
.thl-item.yellow { color: var(--yellow); }
.thl-item.orange { color: var(--orange); }
.thl-item.red    { color: var(--red); }

/* Sector Grid */
.sector-grid {
  display: flex;
  gap: 0.875rem;
  padding: 1.25rem;
  flex-wrap: wrap;
}

.sector-card {
  flex: 1;
  min-width: 140px;
  padding: 1.25rem 1rem;
  border-radius: var(--radius);
  border: 1px solid transparent;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  text-align: center;
  transition: transform 0.2s;
}

.sector-card:hover { transform: translateY(-2px); }

.sector-card.red {
  background: var(--level-critical-bg);
  border-color: var(--level-critical-border);
}

.sector-card.orange {
  background: var(--level-high-bg);
  border-color: var(--level-high-border);
}

.sector-card.yellow {
  background: var(--level-elevated-bg);
  border-color: var(--level-elevated-border);
}

.sector-icon { font-size: 1.5rem; }

.sector-name {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.03em;
}

.sector-level {
  font-family: var(--mono-font);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.sector-card.red    .sector-level { color: var(--red); }
.sector-card.orange .sector-level { color: var(--orange); }
.sector-card.yellow .sector-level { color: var(--yellow); }

.sector-trend {
  font-size: 0.62rem;
  color: var(--text-dim);
  letter-spacing: 0.05em;
}

/* Vulnerability Table */
.vuln-table-wrap {
  overflow-x: auto;
  padding: 1.25rem;
}

.vuln-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.85rem;
}

.vuln-table th {
  font-family: var(--mono-font);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
  padding: 0.6rem 0.875rem;
  border-bottom: 1px solid rgba(10,132,255,0.15);
  text-align: left;
}

.vuln-table td {
  padding: 0.75rem 0.875rem;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  color: var(--accent);
  vertical-align: middle;
}

.vuln-table tbody tr:hover {
  background: rgba(10,132,255,0.04);
}

.vuln-table tbody tr.vuln-row-critical {
  background: rgba(239,68,68,0.04);
}

.cve-id { color: var(--primary) !important; }

.sev-badge {
  display: inline-flex;
  padding: 0.18rem 0.55rem;
  border-radius: 3px;
  font-family: var(--mono-font);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.sev-badge.critical { background: var(--level-critical-bg); color: var(--level-critical-color); border: 1px solid var(--level-critical-border); }
.sev-badge.high     { background: var(--level-high-bg);     color: var(--level-high-color);     border: 1px solid var(--level-high-border);     }
.sev-badge.medium   { background: var(--level-elevated-bg); color: var(--level-elevated-color); border: 1px solid var(--level-elevated-border); }
.sev-badge.low      { background: var(--level-low-bg);      color: var(--level-low-color);      border: 1px solid var(--level-low-border);      }

.cvss-score {
  font-weight: 600;
  font-size: 0.875rem;
}

.cvss-score.critical { color: var(--red); }
.cvss-score.high     { color: var(--orange); }
.cvss-score.medium   { color: var(--yellow); }

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.2rem 0.55rem;
  border-radius: 3px;
  font-size: 0.7rem;
  font-weight: 600;
}

.status-badge.exploited {
  background: rgba(239,68,68,0.12);
  color: var(--red);
  border: 1px solid rgba(239,68,68,0.25);
}

.status-badge.patch {
  background: rgba(34,197,94,0.1);
  color: var(--green);
  border: 1px solid rgba(34,197,94,0.2);
}

.status-badge.nopatch {
  background: rgba(249,115,22,0.1);
  color: var(--orange);
  border: 1px solid rgba(249,115,22,0.2);
}

/* Threat Actor Cards */
.actor-list {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.actor-card {
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  border: 1px solid;
}

.actor-card.high {
  background: rgba(249,115,22,0.06);
  border-color: rgba(249,115,22,0.2);
}

.actor-card.elevated {
  background: rgba(234,179,8,0.06);
  border-color: rgba(234,179,8,0.2);
}

.actor-card.moderate {
  background: rgba(34,197,94,0.05);
  border-color: rgba(34,197,94,0.15);
}

.actor-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.75rem;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.actor-name {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--text);
}

.actor-activity {
  font-family: var(--mono-font);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 0.15rem 0.45rem;
  border-radius: 3px;
}

.actor-activity.orange {
  background: var(--level-high-bg);
  color: var(--orange);
  border: 1px solid var(--level-high-border);
}

.actor-activity.yellow {
  background: var(--level-elevated-bg);
  color: var(--yellow);
  border: 1px solid var(--level-elevated-border);
}

.actor-activity.green-text {
  background: var(--level-low-bg);
  color: var(--green);
  border: 1px solid var(--level-low-border);
}

.actor-row {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin-bottom: 0.35rem;
}

.actor-meta-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--text-dim);
  text-transform: uppercase;
  min-width: 65px;
}

.actor-meta-val {
  font-size: 0.78rem;
  color: var(--accent);
}

/* Regional Map */
.regional-map {
  padding: 1.25rem;
}

.map-container {
  position: relative;
  height: 180px;
  background: rgba(10,132,255,0.03);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  margin-bottom: 1rem;
  overflow: hidden;
}

/* US map outline — simplified CSS-based */
.map-container::before {
  content: '';
  position: absolute;
  inset: 20px 30px;
  border: 1px solid rgba(10,132,255,0.15);
  border-radius: 8px 12px 8px 6px;
  background: linear-gradient(135deg, rgba(10,132,255,0.03) 0%, transparent 100%);
}

.map-region {
  position: absolute;
  cursor: pointer;
}

.map-region:hover .region-tooltip { opacity: 1; pointer-events: auto; }

.northeast { top: 25%;  right: 15%; }
.southeast { bottom: 25%; right: 20%; }
.midwest   { top: 30%;  left: 42%; }
.southwest { bottom: 20%; left: 25%; }
.westcoast { top: 30%;  left: 10%; }
.northwest { top: 15%;  left: 12%; }

.region-dot {
  display: block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  box-shadow: 0 0 8px currentColor;
  animation: pulse 2.5s ease-in-out infinite;
}

.region-dot.orange { background: var(--orange); color: var(--orange); }
.region-dot.yellow { background: var(--yellow); color: var(--yellow); }
.region-dot.green  { background: var(--green);  color: var(--green);  }
.region-dot.red    { background: var(--red);    color: var(--red);    }

.region-tooltip {
  position: absolute;
  bottom: calc(100% + 6px);
  left: 50%;
  transform: translateX(-50%);
  background: rgba(8,18,33,0.95);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.4rem 0.6rem;
  white-space: nowrap;
  font-size: 0.7rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s;
  z-index: 10;
}

.region-tooltip strong {
  color: var(--text);
  font-size: 0.65rem;
  letter-spacing: 0.08em;
}

.map-legend {
  display: flex;
  gap: 1rem;
  margin-bottom: 0.75rem;
  flex-wrap: wrap;
}

.ml-item {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.7rem;
  color: var(--text-muted);
}

.ml-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.ml-dot.orange { background: var(--orange); }
.ml-dot.yellow { background: var(--yellow); }
.ml-dot.green  { background: var(--green); }
.ml-dot.red    { background: var(--red); }

.map-table {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.mt-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.3rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.03);
}

.mt-region {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* Alert Feed */
.alert-feed {
  padding: 0.75rem 1.25rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.alert-item {
  padding: 0.875rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
}

.alert-item:last-child { border-bottom: none; }

.alert-item.critical { border-left: 2px solid var(--red); padding-left: 0.75rem; }
.alert-item.high     { border-left: 2px solid var(--orange); padding-left: 0.75rem; }
.alert-item.elevated { border-left: 2px solid var(--yellow); padding-left: 0.75rem; }
.alert-item.moderate { border-left: 2px solid rgba(34,197,94,0.5); padding-left: 0.75rem; }

.alert-meta {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  align-items: flex-start;
  flex-shrink: 0;
  min-width: 100px;
}

.alert-time {
  font-size: 0.7rem;
  color: var(--text-dim);
}

.alert-sev-badge {
  display: inline-flex;
  padding: 0.15rem 0.45rem;
  border-radius: 3px;
  font-family: var(--mono-font);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.alert-sev-badge.critical { background: var(--level-critical-bg); color: var(--red);    border: 1px solid var(--level-critical-border); }
.alert-sev-badge.high     { background: var(--level-high-bg);     color: var(--orange); border: 1px solid var(--level-high-border);     }
.alert-sev-badge.elevated { background: var(--level-elevated-bg); color: var(--yellow); border: 1px solid var(--level-elevated-border); }
.alert-sev-badge.moderate { background: var(--level-low-bg);      color: var(--green);  border: 1px solid var(--level-low-border);      }

.alert-content {
  font-size: 0.835rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.alert-content strong {
  color: var(--text);
  display: block;
  margin-bottom: 0.2rem;
}

/* Dashboard CTA */
.dash-cta {
  border-color: rgba(10,132,255,0.2);
}

.dash-cta-inner {
  padding: 1.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.dash-cta h3 {
  font-size: 1.2rem;
  margin-bottom: 0.35rem;
}

.dash-cta p {
  color: var(--text-muted);
  font-size: 0.875rem;
}

.dash-cta-btns {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  flex-shrink: 0;
}

/* ─── Page Header (Library etc) ─── */
.page-header {
  background: linear-gradient(180deg, rgba(10,132,255,0.05) 0%, transparent 100%);
  border-bottom: 1px solid var(--border-subtle);
  padding-left: 2rem;
  padding-right: 2rem;
}

.page-header-title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 0.75rem;
}

.page-header-sub {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 600px;
  margin-bottom: 2rem;
}

/* ─── Library Search ─── */
.library-search {
  margin-bottom: 1.5rem;
}

.search-wrapper {
  position: relative;
  max-width: 560px;
  display: flex;
  align-items: center;
}

.search-icon {
  position: absolute;
  left: 1rem;
  color: var(--text-dim);
  pointer-events: none;
}

.library-search input {
  width: 100%;
  padding: 0.85rem 1rem 0.85rem 2.75rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: 0.925rem;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.library-search input::placeholder { color: var(--text-dim); }

.library-search input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-dim);
}

.search-count {
  position: absolute;
  right: 1rem;
  font-size: 0.75rem;
  color: var(--text-dim);
  font-family: var(--mono-font);
}

/* Filter Tabs */
.filter-tabs {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 0;
}

.filter-tab {
  padding: 0.5rem 1rem;
  background: transparent;
  border: 1px solid var(--border-subtle);
  border-radius: 999px;
  color: var(--text-muted);
  font-family: 'Inter', sans-serif;
  font-size: 0.825rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
}

.filter-tab:hover {
  border-color: var(--border);
  color: var(--text);
}

.filter-tab.active {
  background: var(--primary-dim);
  border-color: var(--primary);
  color: var(--primary);
  font-weight: 600;
}

/* ─── Library Main ─── */
.library-main {
  padding: 2.5rem 0 4rem;
}

/* Featured Report */
.featured-report {
  background: var(--bg-card);
  border: 1px solid rgba(10,132,255,0.3);
  border-radius: var(--radius-lg);
  padding: 2rem;
  margin-bottom: 2.5rem;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: center;
}

.featured-report-badge {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  margin-bottom: 0.75rem;
}

.featured-report-title {
  font-size: clamp(1.4rem, 3vw, 2rem);
  margin-bottom: 0.75rem;
  color: var(--text);
}

.featured-report-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.65;
  max-width: 600px;
  margin-bottom: 0.75rem;
}

.featured-report-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.78rem;
  color: var(--text-dim);
}

.featured-report-pages {
  font-family: var(--mono-font);
}

.featured-report-graphic {
  min-width: 220px;
}

.report-graphic-inner {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.rg-line {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.65rem;
}

.rg-label {
  font-family: var(--mono-font);
  color: var(--text-dim);
  letter-spacing: 0.05em;
  min-width: 120px;
  font-size: 0.6rem;
}

.rg-bar {
  height: 6px;
  background: var(--primary);
  border-radius: 3px;
  flex: 1;
  max-width: 0;
  transition: max-width 1s ease;
}

.rg-bar.rg-red    { background: var(--red); }
.rg-bar.rg-orange { background: var(--orange); }

.rg-val {
  font-family: var(--mono-font);
  color: var(--text-muted);
  font-size: 0.65rem;
  min-width: 35px;
  text-align: right;
}

/* Library Grid */
.library-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.library-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
}

.library-card:hover {
  border-color: rgba(10,132,255,0.45);
  box-shadow: var(--shadow-card), var(--shadow-glow);
  transform: translateY(-3px);
}

.library-card-header {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  align-items: center;
}

.library-card h3 {
  font-size: 0.975rem;
  font-weight: 600;
  line-height: 1.4;
}

.library-card h3 a {
  color: var(--text);
}

.library-card h3 a:hover {
  color: var(--primary);
}

.library-card p {
  color: var(--text-muted);
  font-size: 0.835rem;
  line-height: 1.55;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.library-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 0.5rem;
  border-top: 1px solid rgba(255,255,255,0.04);
}

/* No results */
.no-results {
  text-align: center;
  padding: 3rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Pagination */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.page-btn {
  min-width: 36px;
  height: 36px;
  padding: 0 0.6rem;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius);
  color: var(--text-muted);
  font-family: 'Inter', sans-serif;
  font-size: 0.825rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
}

.page-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.page-btn.active {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  font-weight: 600;
}

.page-ellipsis {
  color: var(--text-dim);
  font-size: 0.875rem;
  padding: 0 0.25rem;
}

.page-next {
  padding: 0 0.875rem;
}

/* Library Subscribe CTA */
.library-subscribe-cta {
  background: linear-gradient(135deg, var(--bg-card) 0%, rgba(10,132,255,0.05) 100%);
  border: 1px solid rgba(10,132,255,0.25);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.lib-cta-inner {
  padding: 2rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.lib-cta-icon { font-size: 2.5rem; }

.lib-cta-content {
  flex: 1;
  min-width: 200px;
}

.lib-cta-content h3 {
  margin-bottom: 0.4rem;
}

.lib-cta-content p {
  color: var(--text-muted);
  font-size: 0.875rem;
  line-height: 1.55;
}

.lib-cta-actions {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
  flex-wrap: wrap;
}

/* ─── Subscribe Page V2 ─── */
.subscribe-page-v2 {
  min-height: 100vh;
  padding-top: var(--nav-height);
}

.subscribe-hero {
  padding: 4rem 2rem 2rem;
  text-align: center;
  background: linear-gradient(180deg, rgba(10,132,255,0.05) 0%, transparent 100%);
  border-bottom: 1px solid var(--border-subtle);
}

.subscribe-hero h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 1rem;
}

.subscribe-hero .sub-heading {
  color: var(--accent);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.65;
}

/* Pricing Section */
.pricing-section {
  padding: 3rem 0 2rem;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  transition: border-color 0.25s, box-shadow 0.25s;
}

.pricing-card:hover {
  border-color: rgba(10,132,255,0.4);
  box-shadow: var(--shadow-card), var(--shadow-glow);
}

.pricing-card-featured {
  border-color: var(--primary);
  box-shadow: 0 0 30px rgba(10,132,255,0.15);
}

.pricing-card-popular {
  background: var(--primary);
  text-align: center;
  padding: 0.4rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: #fff;
}

.pricing-card-header {
  padding: 1.75rem 1.5rem 1.25rem;
  border-bottom: 1px solid var(--border-subtle);
}

.tier-name {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.tier-price {
  display: flex;
  align-items: baseline;
  gap: 0.2rem;
  margin-bottom: 0.4rem;
}

.price-amount {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--text);
  line-height: 1;
}

.price-period {
  color: var(--text-muted);
  font-size: 0.875rem;
}

.tier-tagline {
  color: var(--text-muted);
  font-size: 0.8rem;
  margin: 0;
}

.tier-features {
  list-style: none;
  padding: 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.tier-features li {
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.feature-yes {
  color: var(--text);
}

.feature-yes::before {
  content: '✓';
  color: var(--green);
  font-weight: 700;
  font-size: 0.8rem;
  flex-shrink: 0;
}

.feature-limited {
  color: var(--text-muted);
}

.feature-limited::before {
  content: '◐';
  color: var(--yellow);
  font-weight: 700;
  font-size: 0.8rem;
  flex-shrink: 0;
}

.feature-no {
  color: var(--text-dim);
  text-decoration: line-through;
  text-decoration-color: rgba(255,255,255,0.1);
}

.feature-no::before {
  content: '—';
  color: var(--text-dim);
  font-size: 0.8rem;
  flex-shrink: 0;
}

.tier-cta {
  display: block;
  width: calc(100% - 3rem);
  margin: 0 1.5rem 1.5rem;
  text-align: center;
}

.coming-soon-btn {
  opacity: 0.7;
  cursor: not-allowed !important;
}

.coming-soon-btn:hover {
  transform: none !important;
  box-shadow: none !important;
}

.feature-legend {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.feature-yes-icon { color: var(--green); font-weight: 700; }
.feature-limited-icon { color: var(--yellow); }
.feature-no-icon { color: var(--text-dim); }

/* Subscribe Box V2 */
.subscribe-box-v2 {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  margin: 2rem 0;
}

.subscribe-box-v2 h2 {
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
}

.subscribe-box-inner {
  padding: 2rem;
  max-width: 600px;
}

/* FAQ Section */
.faq-section {
  padding: 2rem 0 3rem;
}

.faq-grid {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  max-width: 720px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 1rem 1.25rem;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: 0.925rem;
  font-weight: 500;
  text-align: left;
  transition: color 0.2s;
}

.faq-question:hover { color: var(--primary); }

.faq-arrow {
  font-size: 0.7rem;
  color: var(--text-dim);
  transition: transform 0.3s;
  flex-shrink: 0;
}

.faq-item.open .faq-arrow { transform: rotate(180deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-item.open .faq-answer { max-height: 400px; }

.faq-answer p {
  padding: 0 1.25rem 1.25rem;
  color: var(--text-muted);
  font-size: 0.875rem;
  line-height: 1.65;
}

/* ─── Subscribe Page Original (keep for compat) ─── */
.subscribe-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(var(--nav-height) + 3rem) 2rem 3rem;
  position: relative;
}

.subscribe-page::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 60% at 50% 30%, rgba(10, 132, 255, 0.07) 0%, transparent 70%);
  pointer-events: none;
}

.subscribe-box {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 600px;
  text-align: center;
}

.subscribe-box h1 {
  font-size: clamp(2rem, 5vw, 2.8rem);
  margin-bottom: 1rem;
}

.sub-heading {
  color: var(--accent);
  font-size: 1.05rem;
  margin-bottom: 2.5rem;
  line-height: 1.65;
}

.benefit-list {
  list-style: none;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-bottom: 2.5rem;
}

.benefit-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--accent);
  font-size: 0.95rem;
}

.benefit-list li::before {
  content: '✓';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--primary-dim);
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
  border: 1px solid var(--border);
}

.subscribe-form {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
  flex-wrap: wrap;
}

.subscribe-form input[type="email"] {
  flex: 1;
  min-width: 220px;
  padding: 0.875rem 1.25rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}

.subscribe-form input[type="email"]::placeholder {
  color: var(--text-dim);
}

.subscribe-form input[type="email"]:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(10, 132, 255, 0.15);
}

.subscribe-form button {
  padding: 0.875rem 1.75rem;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: var(--radius);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
  white-space: nowrap;
}

.subscribe-form button:hover {
  background: #2a97ff;
  box-shadow: 0 0 20px var(--primary-glow);
  transform: translateY(-1px);
}

.success-message {
  display: none;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.3);
  border-radius: var(--radius);
  padding: 1rem 1.5rem;
  color: var(--green);
  font-weight: 500;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.success-message.visible {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.privacy-note {
  color: var(--text-dim);
  font-size: 0.78rem;
  line-height: 1.5;
}

/* ─── About Page ─── */
.about-hero {
  padding: calc(var(--nav-height) + 5rem) 2rem 4rem;
  text-align: center;
  position: relative;
}

.about-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(10, 132, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10, 132, 255, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
  pointer-events: none;
}

.about-hero-inner {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.about-hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #ffffff 0%, #B8C4D6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-hero p {
  color: var(--accent);
  font-size: 1.1rem;
  line-height: 1.75;
  margin-bottom: 1rem;
}

.quote-block {
  margin: 3rem auto;
  max-width: 780px;
  padding: 2.5rem 2.5rem;
  background: var(--bg-card);
  border: 1px solid rgba(10, 132, 255, 0.3);
  border-left: 4px solid var(--primary);
  border-radius: var(--radius-lg);
  position: relative;
}

.quote-block::before {
  content: '"';
  position: absolute;
  top: -0.5rem;
  left: 1.5rem;
  font-size: 5rem;
  color: var(--primary);
  font-family: Georgia, serif;
  line-height: 1;
  opacity: 0.3;
}

.quote-block blockquote {
  font-size: 1.2rem;
  color: var(--text);
  font-style: italic;
  line-height: 1.75;
  quotes: none;
}

.quote-block cite {
  display: block;
  margin-top: 1rem;
  font-style: normal;
  font-size: 0.825rem;
  color: var(--primary);
  font-weight: 600;
  letter-spacing: 0.05em;
}

/* Focus cards grid */
.focus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

/* ─── Footer ─── */
.footer {
  background: var(--bg-card);
  border-top: 1px solid var(--border-subtle);
  padding: 2.5rem 2rem;
  text-align: center;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-logo {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--text);
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.footer-tagline {
  color: var(--text-muted);
  font-size: 0.825rem;
  margin-bottom: 0.75rem;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 0.75rem;
  padding: 0.75rem 0;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  margin-bottom: 0.875rem;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 0.825rem;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--primary); }

.footer-copy {
  color: var(--text-dim);
  font-size: 0.75rem;
}

/* ─── Fade-in Animation ─── */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in.delay-1 { transition-delay: 0.1s; }
.fade-in.delay-2 { transition-delay: 0.2s; }
.fade-in.delay-3 { transition-delay: 0.3s; }
.fade-in.delay-4 { transition-delay: 0.4s; }
.fade-in.delay-5 { transition-delay: 0.5s; }

/* ─── Final CTA Section ─── */
.cta-section {
  padding: 6rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(10, 132, 255, 0.06) 0%, transparent 100%);
  pointer-events: none;
}

.cta-section h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 2rem;
}

/* ─── Utility ─── */
.text-center { text-align: center; }
.text-muted   { color: var(--text-muted); }
.mb-0 { margin-bottom: 0; }
.mt-2 { margin-top: 2rem; }

/* ─── Print Styles ─── */
@media print {
  .nav,
  .classification-bar,
  .brief-actions,
  .social-share,
  .next-brief-box,
  .footer,
  .btn,
  .threat-banner,
  .stats-bar {
    display: none !important;
  }

  body {
    background: #fff;
    color: #000;
  }

  .brief-header,
  .intel-card,
  .intel-card-body p {
    background: #fff !important;
    color: #000 !important;
    border-color: #ccc !important;
  }

  .brief-content {
    max-width: 100%;
    padding: 0;
  }

  .intel-card {
    page-break-inside: avoid;
  }

  a { color: #000; }
}

/* ─── Responsive ─── */

/* Tablet */
@media (max-width: 1024px) {
  .serve-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }

  .tiles-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .focus-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .intel-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
  }

  .featured-report {
    grid-template-columns: 1fr;
  }

  .featured-report-graphic {
    display: none;
  }

  .dash-row {
    flex-direction: column;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: var(--nav-height);
    left: 0;
    right: 0;
    background: rgba(8, 18, 33, 0.97);
    backdrop-filter: blur(20px);
    padding: 1.5rem 2rem;
    flex-direction: column;
    gap: 1.25rem;
    border-bottom: 1px solid var(--border-subtle);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-toggle {
    display: flex;
  }

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

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

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

  .section {
    padding: 3.5rem 1.25rem;
  }

  .hero {
    padding: calc(var(--nav-height) + 3rem) 1.25rem 3rem;
  }

  .hero-ctas {
    flex-direction: column;
    align-items: center;
  }

  .brief-content {
    padding: 1.25rem;
  }

  .subscribe-form {
    flex-direction: column;
  }

  .subscribe-form input[type="email"],
  .subscribe-form button {
    width: 100%;
  }

  .quote-block {
    padding: 1.75rem 1.5rem;
  }

  .intel-cards-grid {
    grid-template-columns: 1fr;
  }

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

  .stats-bar-inner {
    flex-direction: column;
    gap: 1rem;
  }

  .stat-divider {
    display: none;
  }

  .stats-bar {
    text-align: center;
  }

  .sector-grid {
    flex-direction: column;
  }

  .sector-card {
    min-width: 0;
    flex-direction: row;
    text-align: left;
    gap: 0.75rem;
  }

  .global-threat-display {
    flex-direction: column;
    align-items: flex-start;
  }

  .dash-cta-inner {
    flex-direction: column;
    text-align: center;
  }

  .dash-cta-btns {
    justify-content: center;
  }

  .lib-cta-inner {
    flex-direction: column;
    text-align: center;
  }

  .lib-cta-actions {
    justify-content: center;
  }

  .faq-grid {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .brief-meta {
    gap: 0.75rem;
  }

  .threat-banner-inner {
    font-size: 0.7rem;
    gap: 0.4rem;
  }

  .threat-banner-updated { display: none; }
}
