/* =========================================
   CommunityWatch — Main Stylesheet
   Dark, tactical, security aesthetic
   ========================================= */

:root {
  --bg:        #080c10;
  --bg-2:      #0d1117;
  --bg-3:      #111820;
  --bg-card:   #0f1923;
  --border:    #1e2d3d;
  --border-2:  #263545;
  --accent:    #00d4ff;
  --accent-2:  #ff4444;
  --accent-3:  #00ff88;
  --text:      #c8d8e8;
  --text-dim:  #7a90a4;
  --text-muted:#4a5a6a;
  --mono:      'Share Tech Mono', monospace;
  --sans:      'Barlow', sans-serif;
  --cond:      'Barlow Condensed', sans-serif;
  --radius:    4px;
  --shadow:    0 4px 24px rgba(0,0,0,0.5);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.7;
  overflow-x: hidden;
}

a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

strong { font-weight: 600; color: #e8f0f8; }
em { color: var(--accent); font-style: normal; font-weight: 600; }

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ========= TYPOGRAPHY ========= */
.section-title {
  font-family: var(--cond);
  font-weight: 900;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: #e8f0f8;
  margin-bottom: 1rem;
}
.section-title.center { text-align: center; }
.feature-tag {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(0,212,255,0.08);
  border: 1px solid rgba(0,212,255,0.25);
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius);
  margin-bottom: 1rem;
}

/* ========= BUTTONS ========= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.2s;
  border: none;
  text-decoration: none !important;
  white-space: nowrap;
}
.btn-primary {
  background: var(--accent);
  color: #080c10;
}
.btn-primary:hover { background: #33ddff; box-shadow: 0 0 20px rgba(0,212,255,0.4); }
.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border-2);
}
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }
.btn-outline {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}
.btn-outline:hover { background: rgba(0,212,255,0.08); }
.btn-sm { padding: 0.45rem 1rem; font-size: 0.85rem; }
.btn-danger {
  background: var(--accent-2);
  color: #fff;
}
.btn-danger:hover { background: #ff6666; }

/* ========= NAV ========= */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(8,12,16,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s;
}
.nav-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  height: 64px;
  gap: 2rem;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none !important;
  flex-shrink: 0;
}
.logo-eye {
  font-size: 1.4rem;
  color: var(--accent);
  animation: eye-pulse 3s ease-in-out infinite;
}
@keyframes eye-pulse {
  0%,100% { opacity:1; text-shadow: 0 0 8px var(--accent); }
  50% { opacity:0.6; text-shadow: none; }
}
.logo-text {
  font-family: var(--cond);
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: 0.05em;
  color: #e8f0f8;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
  margin-left: auto;
}
.nav-links a {
  color: var(--text-dim);
  text-decoration: none;
  font-size: 0.9rem;
  padding: 0.4rem 0.75rem;
  border-radius: var(--radius);
  transition: all 0.2s;
}
.nav-links a:hover { color: var(--text); background: var(--bg-3); }
.nav-links .nav-cta {
  background: rgba(0,212,255,0.12);
  color: var(--accent);
  border: 1px solid rgba(0,212,255,0.3);
}
.nav-links .nav-cta:hover { background: rgba(0,212,255,0.2); }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  margin-left: auto;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ========= HERO ========= */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 6rem 1.5rem 4rem;
}

.hero-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,212,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,212,255,0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}

.hero-scan-line {
  position: absolute;
  top: -2px;
  left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  animation: scan 6s linear infinite;
  opacity: 0.5;
}
@keyframes scan {
  0%   { top: -2px; }
  100% { top: 100vh; }
}

.hero-inner {
  position: relative;
  max-width: 900px;
  width: 100%;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-3);
  border: 1px solid rgba(0,255,136,0.25);
  padding: 0.35rem 1rem;
  border-radius: 20px;
  margin-bottom: 1.5rem;
  background: rgba(0,255,136,0.05);
}
.pulse-dot {
  width: 7px; height: 7px;
  background: var(--accent-3);
  border-radius: 50%;
  animation: pulse 1.5s ease-in-out infinite;
}
@keyframes pulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(0,255,136,0.6); }
  50% { box-shadow: 0 0 0 6px rgba(0,255,136,0); }
}

.hero-headline {
  font-family: var(--cond);
  font-weight: 900;
  font-size: clamp(2.8rem, 8vw, 5.5rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: #e8f0f8;
  margin-bottom: 1.5rem;
}
.hero-headline .accent {
  color: var(--accent);
  text-shadow: 0 0 40px rgba(0,212,255,0.4);
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--text-dim);
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.stat { text-align: center; }
.stat-num {
  font-family: var(--cond);
  font-weight: 900;
  font-size: 2.2rem;
  color: var(--accent);
  line-height: 1;
}
.stat-unit {
  font-family: var(--cond);
  font-size: 1.4rem;
  color: var(--accent);
  opacity: 0.7;
}
.stat-label {
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 0.2rem;
}
.stat-div {
  width: 1px;
  height: 40px;
  background: var(--border);
}

.hero-scroll-cue {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 1.5rem;
  color: var(--text-muted);
  animation: bounce 2s ease-in-out infinite;
}
@keyframes bounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ========= FEATURE / BOTNET ========= */
.feature-block {
  padding: 6rem 0;
  border-top: 1px solid var(--border);
}
.botnet-feature { background: var(--bg-2); }

.botnet-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin: 2rem 0;
}

.botnet-text p {
  margin-bottom: 1rem;
  color: var(--text);
  font-size: 1.05rem;
}
.botnet-kicker {
  font-family: var(--cond);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--accent-2) !important;
  border-left: 3px solid var(--accent-2);
  padding-left: 1rem;
  margin-top: 1.5rem !important;
}

.botnet-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.botnet-diagram {
  width: 280px;
  height: 280px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.bd-center {
  position: absolute;
  z-index: 10;
  width: 60px; height: 60px;
  background: rgba(255,68,68,0.15);
  border: 2px solid var(--accent-2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--mono);
  font-size: 0.8rem;
  color: var(--accent-2);
  box-shadow: 0 0 20px rgba(255,68,68,0.3);
  animation: glow-red 2s ease-in-out infinite;
}
@keyframes glow-red {
  0%,100% { box-shadow: 0 0 20px rgba(255,68,68,0.3); }
  50% { box-shadow: 0 0 40px rgba(255,68,68,0.6); }
}
.bd-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(0,212,255,0.15);
  animation: ring-expand 3s ease-in-out infinite;
}
.bd-ring-1 { width: 100px; height: 100px; animation-delay: 0s; }
.bd-ring-2 { width: 180px; height: 180px; animation-delay: 0.5s; }
.bd-ring-3 { width: 260px; height: 260px; animation-delay: 1s; }
@keyframes ring-expand {
  0%,100% { opacity: 0.3; }
  50% { opacity: 0.7; }
}
.bd-node {
  position: absolute;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 6px var(--accent);
  animation: node-blink 2s ease-in-out infinite;
}
@keyframes node-blink {
  0%,100% { opacity: 0.4; }
  50% { opacity: 1; }
}
.diagram-caption {
  font-family: var(--mono);
  font-size: 0.65rem;
  color: var(--text-muted);
  text-align: center;
  letter-spacing: 0.05em;
}

.botnet-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* ========= PILLARS ========= */
.pillars {
  padding: 6rem 0;
  border-top: 1px solid var(--border);
}
.pillar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.pillar-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 2rem;
  text-decoration: none !important;
  display: block;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.pillar-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  opacity: 0;
  transition: opacity 0.3s;
}
.pillar-ai::before   { background: linear-gradient(90deg, #ff4444, #ff8800); }
.pillar-hack::before { background: linear-gradient(90deg, #aa00ff, #ff4444); }
.pillar-protect::before { background: linear-gradient(90deg, #00d4ff, #00ff88); }
.pillar-card:hover { border-color: var(--border-2); transform: translateY(-3px); box-shadow: var(--shadow); }
.pillar-card:hover::before { opacity: 1; }
.pillar-icon { font-size: 2rem; margin-bottom: 1rem; }
.pillar-card h3 {
  font-family: var(--cond);
  font-weight: 700;
  font-size: 1.3rem;
  color: #e8f0f8;
  margin-bottom: 0.75rem;
}
.pillar-card p {
  font-size: 0.92rem;
  color: var(--text-dim);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
.pillar-link {
  font-family: var(--mono);
  font-size: 0.78rem;
  color: var(--accent);
  letter-spacing: 0.05em;
}

/* ========= MAP TEASER ========= */
.map-teaser {
  padding: 6rem 0;
  border-top: 1px solid var(--border);
  background: var(--bg-2);
}
.map-teaser-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.map-features { list-style: none; margin: 1.5rem 0; }
.map-features li {
  font-size: 0.9rem;
  color: var(--text-dim);
  padding: 0.3rem 0;
  border-bottom: 1px solid var(--border);
}
.map-features li:last-child { border-bottom: none; }
.map-teaser-preview { }
.map-preview-frame {
  border: 1px solid var(--border-2);
  border-radius: 6px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/3;
  background: #060a0e;
}
.map-preview-overlay {
  position: absolute;
  inset: 0;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  background: rgba(6,10,14,0.6);
  backdrop-filter: blur(2px);
  color: var(--text-dim);
  font-family: var(--mono);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
}
.fake-map {
  position: absolute;
  inset: 0;
  background: #060d14;
}
.fake-heat {
  position: absolute;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: heat-pulse 3s ease-in-out infinite;
}
.fake-heat.h1 { width: 80px; height: 80px; background: radial-gradient(circle, rgba(255,68,68,0.6) 0%, transparent 70%); }
.fake-heat.h2 { width: 60px; height: 60px; background: radial-gradient(circle, rgba(255,136,0,0.5) 0%, transparent 70%); }
.fake-heat.h3 { width: 40px; height: 40px; background: radial-gradient(circle, rgba(255,200,0,0.5) 0%, transparent 70%); }
@keyframes heat-pulse {
  0%,100% { opacity: 0.5; transform: translate(-50%,-50%) scale(1); }
  50% { opacity: 1; transform: translate(-50%,-50%) scale(1.2); }
}

/* ========= FORUM PREVIEW ========= */
.forum-preview {
  padding: 6rem 0;
  border-top: 1px solid var(--border);
}
.section-header-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  gap: 1rem;
}
.forum-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.forum-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 1.5rem;
  text-decoration: none !important;
  transition: all 0.2s;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.forum-card:hover { border-color: var(--border-2); transform: translateY(-2px); }
.forum-meta { display: flex; justify-content: space-between; align-items: center; }
.forum-tag {
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(0,212,255,0.08);
  padding: 0.15rem 0.5rem;
  border-radius: 3px;
}
.forum-time {
  font-family: var(--mono);
  font-size: 0.65rem;
  color: var(--text-muted);
}
.forum-card h4 {
  font-weight: 600;
  font-size: 0.95rem;
  color: #c8d8e8;
  line-height: 1.4;
  flex: 1;
}
.forum-footer {
  display: flex;
  justify-content: space-between;
  font-family: var(--mono);
  font-size: 0.65rem;
  color: var(--text-muted);
}

/* ========= FOOTER ========= */
.site-footer {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  padding: 4rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 2fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 0.75rem;
  line-height: 1.6;
}
.footer-links h5, .footer-pledge h5 {
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1rem;
}
.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 0.5rem; }
.footer-links a { color: var(--text-dim); font-size: 0.88rem; }
.footer-links a:hover { color: var(--accent); }
.footer-pledge p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-family: var(--mono);
  font-size: 0.65rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

/* ========= PAGE HERO (subpages) ========= */
.page-hero {
  padding: 8rem 1.5rem 4rem;
  text-align: center;
  border-bottom: 1px solid var(--border);
  background: var(--bg-2);
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,212,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,212,255,0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}
.page-hero-sub {
  font-size: 1.1rem;
  color: var(--text-dim);
  max-width: 600px;
  margin: 0.75rem auto 0;
}

/* ========= CONTENT SECTIONS ========= */
.content-section {
  padding: 5rem 0;
  border-top: 1px solid var(--border);
}
.content-section:first-of-type { border-top: none; }
.prose {
  max-width: 760px;
}
.prose h3 {
  font-family: var(--cond);
  font-weight: 700;
  font-size: 1.5rem;
  color: #e8f0f8;
  margin: 2rem 0 0.75rem;
}
.prose h3:first-child { margin-top: 0; }
.prose p { margin-bottom: 1rem; color: var(--text); }
.prose ul, .prose ol { margin: 0.75rem 0 1rem 1.5rem; }
.prose li { margin-bottom: 0.4rem; color: var(--text); }

/* ========= PROTECT PAGE CARDS ========= */
.protect-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
.protect-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent-3);
  border-radius: 6px;
  padding: 1.75rem;
}
.protect-card.warn { border-left-color: #ff8800; }
.protect-card.danger { border-left-color: var(--accent-2); }
.protect-card h4 {
  font-family: var(--cond);
  font-weight: 700;
  font-size: 1.15rem;
  color: #e8f0f8;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.protect-card p { font-size: 0.9rem; color: var(--text-dim); margin-bottom: 0.5rem; }
.protect-card ul { list-style: none; margin: 0; padding: 0; }
.protect-card li {
  font-size: 0.88rem;
  color: var(--text-dim);
  padding: 0.35rem 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}
.protect-card li:last-child { border-bottom: none; }
.protect-card li::before { content: '→'; color: var(--accent-3); flex-shrink: 0; }
.protect-card.warn li::before { color: #ff8800; }
.protect-card.danger li::before { color: var(--accent-2); }

/* ========= HEATMAP PAGE ========= */
#map {
  width: 100%;
  height: calc(100vh - 64px - 80px);
  min-height: 500px;
}
.map-controls {
  background: var(--bg-card);
  border-bottom: 1px solid var(--border);
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.map-legend {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  font-family: var(--mono);
  font-size: 0.72rem;
  color: var(--text-dim);
}
.legend-dot {
  width: 12px; height: 12px;
  border-radius: 50%;
  display: inline-block;
  margin-right: 4px;
}
.ld-low { background: rgba(255,200,0,0.8); }
.ld-med { background: rgba(255,136,0,0.8); }
.ld-high { background: rgba(255,68,68,0.8); }
.ld-state { background: rgba(150,0,255,0.8); }

/* ========= FORUM PAGE ========= */
.forum-layout {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 2rem;
  padding: 3rem 0;
  align-items: start;
}
.forum-sidebar {
  position: sticky;
  top: 80px;
}
.forum-post-form {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 1.5rem;
  margin-bottom: 2rem;
}
.form-group { margin-bottom: 1rem; }
.form-group label {
  display: block;
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.4rem;
}
.form-control {
  width: 100%;
  background: var(--bg-3);
  border: 1px solid var(--border-2);
  border-radius: var(--radius);
  color: var(--text);
  padding: 0.6rem 0.9rem;
  font-family: var(--sans);
  font-size: 0.9rem;
  transition: border-color 0.2s;
}
.form-control:focus {
  outline: none;
  border-color: var(--accent);
}
select.form-control { cursor: pointer; }
textarea.form-control { resize: vertical; min-height: 100px; }
.forum-thread {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 1.5rem;
  margin-bottom: 1rem;
  transition: border-color 0.2s;
}
.forum-thread:hover { border-color: var(--border-2); }
.forum-thread-header { display: flex; justify-content: space-between; align-items: flex-start; gap: 1rem; margin-bottom: 0.75rem; }
.forum-thread h4 {
  font-weight: 600;
  font-size: 1rem;
  color: #e8f0f8;
}
.forum-thread p { font-size: 0.88rem; color: var(--text-dim); margin-bottom: 0.75rem; }
.forum-sidebar-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 1.25rem;
  margin-bottom: 1.5rem;
}
.forum-sidebar-box h5 {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1rem;
}
.privacy-badge {
  background: rgba(0,255,136,0.06);
  border: 1px solid rgba(0,255,136,0.2);
  border-radius: 6px;
  padding: 1rem;
  font-size: 0.82rem;
  color: var(--accent-3);
  line-height: 1.5;
}

/* ========= ABOUT PAGE ========= */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.about-values {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem;
}
.value-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.value-icon { font-size: 1.5rem; flex-shrink: 0; }
.value-item h4 {
  font-family: var(--cond);
  font-weight: 700;
  font-size: 1.1rem;
  color: #e8f0f8;
  margin-bottom: 0.25rem;
}
.value-item p { font-size: 0.88rem; color: var(--text-dim); }

/* ========= THREAT CARDS ========= */
.threat-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
.threat-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 1.5rem;
}
.threat-card .threat-level {
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.2rem 0.6rem;
  border-radius: 3px;
  margin-bottom: 1rem;
  display: inline-block;
}
.level-critical { background: rgba(255,68,68,0.15); color: var(--accent-2); border: 1px solid rgba(255,68,68,0.3); }
.level-high     { background: rgba(255,136,0,0.15); color: #ff8800; border: 1px solid rgba(255,136,0,0.3); }
.level-medium   { background: rgba(255,200,0,0.15); color: #ffc800; border: 1px solid rgba(255,200,0,0.3); }
.threat-card h4 {
  font-family: var(--cond);
  font-weight: 700;
  font-size: 1.1rem;
  color: #e8f0f8;
  margin-bottom: 0.5rem;
}
.threat-card p { font-size: 0.88rem; color: var(--text-dim); }

/* ========= ALERT BANNER ========= */
.alert-banner {
  background: rgba(255,68,68,0.08);
  border: 1px solid rgba(255,68,68,0.25);
  border-radius: 6px;
  padding: 1rem 1.5rem;
  font-size: 0.88rem;
  color: #e8a8a8;
  margin-bottom: 2rem;
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}
.alert-banner.info {
  background: rgba(0,212,255,0.06);
  border-color: rgba(0,212,255,0.2);
  color: var(--text-dim);
}

/* ========= RESPONSIVE ========= */
@media (max-width: 900px) {
  .pillar-grid { grid-template-columns: 1fr; }
  .forum-cards { grid-template-columns: 1fr; }
  .botnet-content { grid-template-columns: 1fr; }
  .map-teaser-inner { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .forum-layout { grid-template-columns: 1fr; }
  .forum-sidebar { position: static; }
}

@media (max-width: 640px) {
  .nav-toggle { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 64px; left: 0; right: 0;
    background: var(--bg-2);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    padding: 1rem;
    gap: 0;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 0.75rem 1rem; width: 100%; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 1rem; }
  .stat-div { display: none; }
  .hero-actions { flex-direction: column; align-items: center; }
  .botnet-cta { flex-direction: column; }
}

/* ========= ANIMATIONS ========= */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: none;
}
