/* =========================================
   CommunityWatch — Main Stylesheet v2
   Refined dark theme, OLED optimized
   Steel Teal / Amber / Crimson palette
   ========================================= */

:root {
  /* Layered dark grays — OLED optimized */
  --bg-0:     #050709;
  --bg-1:     #0a0f14;
  --bg-2:     #0f1820;
  --bg-3:     #162030;
  --bg-4:     #1e2d3d;

  /* Steel Teal — primary accent */
  --teal:        #00b4cc;
  --teal-dim:    #007d8f;
  --teal-glow:   rgba(0,180,204,0.12);

  /* Amber — secondary / forum accent */
  --amber:       #d4900a;
  --amber-dim:   #a06a00;
  --amber-glow:  rgba(212,144,10,0.1);

  /* Crimson — danger/alert only */
  --crimson:     #c0392b;
  --crimson-dim: #8b2820;
  --crimson-glow:rgba(192,57,43,0.1);

  /* Text */
  --text-hi:  #eef4f8;
  --text-mid: #ccdce8;
  --text-lo:  #5a7080;

  /* Compatibility aliases (used by forum markup) */
  --text-muted: var(--text-lo);
  --text-dim: var(--text-lo);
  --border: var(--bg-4);

  --accent: var(--teal);
  --accent-2: var(--crimson);
  --accent-3: #3ecf8e;

  --mono: 'Share Tech Mono', monospace;
  --sans: 'Barlow', sans-serif;
  --cond: 'Barlow Condensed', sans-serif;
  --radius: 5px;
  --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-1);
  color: var(--text-mid);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.7;
  font-size: 1.12rem;
}

a { color: var(--teal); text-decoration: none; }
strong { font-weight: 600; color: var(--text-hi); }
em { color: var(--amber); font-style: normal; font-weight: 600; }

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

/* ── TYPOGRAPHY ── */
.section-title {
  font-family: var(--cond);
  font-weight: 900;
  font-size: clamp(2.25rem, 4vw, 3.25rem);
  line-height: 1.1;
  letter-spacing: 0.02em;
  color: var(--text-hi);
  margin-bottom: 0.5rem;
}
.section-title.center { text-align: center; }

.feature-tag {
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--amber);
  background: var(--amber-glow);
  border: 1px solid rgba(212,144,10,0.25);
  display: inline-block;
  padding: 0.22rem 0.7rem;
  border-radius: var(--radius);
  margin-bottom: 1rem;
}
.feature-tag.teal { color: var(--teal); background: var(--teal-glow); border-color: rgba(0,180,204,0.25); }
.feature-tag.green { color: #3ecf8e; background: rgba(62,207,142,0.06); border-color: rgba(62,207,142,0.2); }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 0.4rem;
  padding: 0.7rem 1.5rem; border-radius: var(--radius);
  font-family: var(--sans); font-weight: 600; font-size: 0.9rem;
  cursor: pointer; transition: all 0.2s; border: none;
  text-decoration: none !important; white-space: nowrap;
}
.btn-primary { background: var(--teal); color: #050709; }
.btn-primary:hover { background: #1dcae3; box-shadow: 0 0 24px rgba(0,180,204,0.3); }
.btn-ghost { background: transparent; color: var(--text-mid); border: 1px solid var(--bg-4); }
.btn-ghost:hover { border-color: var(--teal); color: var(--teal); }
.btn-outline-teal { background: transparent; color: var(--teal); border: 1px solid var(--teal); }
.btn-outline-teal:hover { background: var(--teal-glow); }
.btn-sm { padding: 0.4rem 1rem; font-size: 0.82rem; }

/* ── NAV ── */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(5,7,9,0.95);
  border-bottom: 1px solid var(--bg-4);
  backdrop-filter: blur(16px);
}
.nav-inner {
  max-width: 1100px; margin: 0 auto;
  padding: 0 1.5rem;
  display: flex; align-items: center; height: 60px; gap: 1.5rem;
}
.nav-logo {
  display: flex; align-items: center; gap: 0.6rem;
  font-family: var(--cond); font-weight: 700;
  font-size: 1.15rem; letter-spacing: 0.06em;
  color: var(--text-hi); text-decoration: none !important; flex-shrink: 0;
}
.logo-eye {
  color: var(--teal); font-size: 1.3rem;
  animation: eye-blink 4s ease-in-out infinite;
}
@keyframes eye-blink { 0%,90%,100%{opacity:1} 95%{opacity:0.2} }

.nav-links {
  display: flex; align-items: center; gap: 0.25rem;
  list-style: none; margin-left: auto;
}
.nav-links a {
  color: var(--text-lo); font-size: 0.85rem;
  padding: 0.38rem 0.75rem; border-radius: var(--radius);
  transition: all 0.2s; font-weight: 400;
  border: 1px solid rgba(255,255,255,0.07);
}
.nav-links a:hover { color: var(--text-hi); background: var(--bg-3); border-color: var(--bg-4); }

/* Special nav items */
.nav-protect {
  background: rgba(0,180,204,0.1) !important;
  color: var(--teal) !important;
  border: 1px solid rgba(0,180,204,0.3) !important;
}
.nav-protect:hover { background: rgba(0,180,204,0.18) !important; }

/* Compatibility: older pages use nav-cta */
.nav-cta { background: rgba(0,180,204,0.1) !important; color: var(--teal) !important; border: 1px solid rgba(0,180,204,0.3) !important; }
.nav-cta:hover { background: rgba(0,180,204,0.18) !important; }

.nav-forum {
  background: rgba(212,144,10,0.1) !important;
  color: var(--amber) !important;
  border: 1px solid rgba(212,144,10,0.3) !important;
}
.nav-forum:hover { background: rgba(212,144,10,0.18) !important; }

.nav-about {
  background: rgba(255,255,255,0.03) !important;
  color: var(--text-lo) !important;
  border: 1px solid rgba(255,255,255,0.08) !important;
}

.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-mid); border-radius: 2px; }

/* ── 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;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(0,100,120,0.12) 0%, transparent 70%);
}
.hero-grid {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(0,180,204,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,180,204,0.035) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse at center, black 20%, transparent 75%);
}
.hero-scanline {
  position: absolute; left: 0; right: 0; height: 1px; top: 0;
  background: linear-gradient(90deg, transparent, var(--teal), transparent);
  opacity: 0.4; animation: scan 8s linear infinite;
}
@keyframes scan { 0%{top:0} 100%{top:100%} }

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

.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--mono); font-size: 0.68rem;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: #3ecf8e; border: 1px solid rgba(62,207,142,0.2);
  background: rgba(62,207,142,0.05);
  padding: 0.3rem 1rem; border-radius: 20px; margin-bottom: 1.75rem;
}
.pulse-dot {
  width: 7px; height: 7px; border-radius: 50%; background: #3ecf8e;
  animation: pulse 1.6s ease-in-out infinite;
}
@keyframes pulse {
  0%,100%{box-shadow:0 0 0 0 rgba(62,207,142,0.5)}
  50%{box-shadow:0 0 0 7px rgba(62,207,142,0)}
}

.hero-headline {
  font-family: var(--cond); font-weight: 900;
  font-size: clamp(3rem, 7vw, 5.2rem);
  line-height: 1.0; letter-spacing: 0.01em;
  color: var(--text-hi); margin-bottom: 1.25rem;
}
.hero-headline .accent { color: var(--teal); }

.hero-sub {
  font-size: 1.1rem; color: var(--text-mid);
  margin-bottom: 2.5rem; max-width: 520px;
  margin-left: auto; margin-right: auto;
}

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

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem 1.75rem;
  align-items: start;
  justify-items: center;
  width: min(980px, 100%);
  margin: 0 auto;
}
.stat { text-align: center; }
.stat-num { font-family: var(--cond); font-weight: 900; font-size: 2rem; color: var(--teal); line-height: 1; }
.stat-unit { font-family: var(--cond); font-size: 1.2rem; color: var(--teal); opacity: 0.6; }
.stat-label {
  font-family: var(--mono);
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-lo);
  margin-top: 0.2rem;
  text-align: center;
  max-width: 18rem;
}
.stat-div { width: 1px; height: 36px; background: var(--bg-4); }

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

/* ── SECTIONS ── */
.content-section { padding: 5rem 0; border-top: 1px solid var(--bg-4); }
.section-alt { background: var(--bg-0); }

/* ── BOTNET LAYOUT ── */
.botnet-grid {
  display: grid; grid-template-columns: 1fr 380px;
  gap: 4rem; align-items: center; margin-top: 2.5rem;
}
.botnet-text p { margin-bottom: 1rem; font-size: 1.25rem; color: var(--text-mid); }
.botnet-kicker {
  font-family: var(--cond); font-size: 1.5rem; font-weight: 700;
  color: var(--crimson);
  background: var(--crimson-glow); padding: 0.75rem 1rem;
  border-left: 3px solid var(--crimson);
  border-radius: 0 var(--radius) var(--radius) 0;
  margin-top: 1.5rem !important;
}

/* ── BOTNET DIAGRAM ── */
.botnet-diagram { width: 300px; height: 300px; position: relative; display: flex; align-items: center; justify-content: center; margin: 0 auto; }
.bd-center {
  position: absolute; z-index: 10; width: 58px; height: 58px; border-radius: 50%;
  background: rgba(192,57,43,0.12); border: 2px solid var(--crimson);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--mono); font-size: 0.75rem; color: var(--crimson);
  animation: glow-red 2.5s ease-in-out infinite;
}
@keyframes glow-red { 0%,100%{box-shadow:0 0 12px rgba(192,57,43,0.3)} 50%{box-shadow:0 0 28px rgba(192,57,43,0.6)} }
.bd-ring { position: absolute; border-radius: 50%; border: 1px solid rgba(0,180,204,0.12); }
.bd-node { position: absolute; width: 8px; height: 8px; border-radius: 50%; background: var(--teal); box-shadow: 0 0 6px var(--teal); }
.bd-node.amber { background: var(--amber); box-shadow: 0 0 6px var(--amber); }
.diagram-caption { font-family: var(--mono); font-size: 0.6rem; color: var(--text-lo); text-align: center; margin-top: 0.75rem; letter-spacing: 0.05em; }

/* ── PILLAR CARDS ── */
.pillar-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.25rem; margin-top: 2.5rem; }
.pillar-card {
  background: var(--bg-2); border: 1px solid var(--bg-4);
  border-radius: 6px; padding: 1.75rem;
  position: relative; overflow: hidden;
  transition: all 0.25s; display: block; text-decoration: none !important;
}
.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, var(--crimson), var(--amber)); }
.pillar-hack::before { background: linear-gradient(90deg, #6622cc, var(--crimson)); }
.pillar-protect::before { background: linear-gradient(90deg, var(--teal), #3ecf8e); }
.pillar-card:hover { border-color: rgba(0,180,204,0.25); transform: translateY(-3px); box-shadow: var(--shadow); }
.pillar-card:hover::before { opacity: 1; }
.pillar-icon { font-size: 1.8rem; margin-bottom: 1rem; }
.pillar-card h3 { font-family: var(--cond); font-weight: 700; font-size: 1.3rem; color: var(--text-hi); margin-bottom: 0.6rem; }
.pillar-card p { font-size: 1.1rem; color: var(--text-mid); line-height: 1.6; margin-bottom: 1.25rem; }
.pillar-link { font-family: var(--mono); font-size: 0.72rem; color: var(--teal); }

/* ── FORUM PREVIEW ── */
.section-header-row { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 1.5rem; flex-wrap: wrap; gap: 1rem; }
.forum-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.25rem; }
.forum-card {
  background: var(--bg-2); border: 1px solid var(--bg-4);
  border-radius: 6px; padding: 1.25rem;
  transition: border-color 0.2s; display: block; text-decoration: none !important;
}
.forum-card:hover { border-color: var(--bg-4); transform: translateY(-2px); }
.forum-meta { display: flex; justify-content: space-between; margin-bottom: 0.6rem; }
.forum-tag { font-family: var(--mono); font-size: 0.62rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--teal); background: var(--teal-glow); padding: 0.15rem 0.5rem; border-radius: 3px; }
.forum-time { font-family: var(--mono); font-size: 0.62rem; color: var(--text-lo); }
.forum-card h4 { font-size: 1.1rem; font-weight: 600; color: var(--text-hi); line-height: 1.4; margin-bottom: 0.75rem; }
.forum-footer { display: flex; justify-content: space-between; font-family: var(--mono); font-size: 0.62rem; color: var(--text-lo); }

/* ── FLOATING FORUM BUTTON (homepage only) ── */
.forum-float {
  position: fixed; bottom: 2rem; right: 2.8rem; z-index: 999;
  background: var(--amber); color: #fff;
  font-family: var(--sans); font-weight: 700; font-size: 1.1rem;
  padding: 0.75rem 1.5rem; border-radius: 6px;
  cursor: pointer; display: flex; align-items: center; gap: 0.5rem;
  box-shadow: 0 4px 24px rgba(212,144,10,0.35);
  transition: all 0.2s; text-decoration: none !important;
}
.forum-float:hover { background: #e8a010; box-shadow: 0 6px 32px rgba(212,144,10,0.55); transform: translateY(-2px); color: #fff; }
.forum-bubble {
  position: absolute; right: -18px; top: -14px;
  width: 32px; height: 32px;
  background: var(--bg-2); border: 2px solid var(--amber);
  border-radius: 50% 50% 50% 4px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem; box-shadow: 0 2px 10px rgba(0,0,0,0.4);
  animation: bubble-bounce 3s ease-in-out infinite;
}
@keyframes bubble-bounce { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-4px)} }

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

/* ── 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-2); border: 1px solid var(--bg-4); border-radius: 6px; padding: 1.5rem; }
.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(192,57,43,0.15); color: var(--crimson); border: 1px solid rgba(192,57,43,0.3); }
.level-high     { background: rgba(212,144,10,0.15); color: var(--amber); border: 1px solid rgba(212,144,10,0.3); }
.level-medium   { background: rgba(0,180,204,0.1); color: var(--teal); border: 1px solid rgba(0,180,204,0.25); }
.threat-card h4 { font-family: var(--cond); font-weight: 700; font-size: 1.2rem; color: var(--text-hi); margin-bottom: 0.5rem; }
.threat-card p { font-size: 1rem; color: var(--text-mid); }

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

/* ── PROSE ── */
.prose { max-width: 760px; }
.prose h3 { font-family: var(--cond); font-weight: 700; font-size: 1.5rem; color: var(--text-hi); margin: 2rem 0 0.75rem; }
.prose p { margin-bottom: 1rem; font-size: 1.1rem; color: var(--text-mid); }
.prose ul, .prose ol { margin: 0.75rem 0 1rem 1.5rem; }
.prose li { margin-bottom: 0.4rem; color: var(--text-mid); font-size: 1rem; }

/* ── ALERT BANNER ── */
.alert-banner { background: rgba(192,57,43,0.08); border: 1px solid rgba(192,57,43,0.25); border-radius: 6px; padding: 1rem 1.5rem; font-size: 0.95rem; color: #e8a8a8; margin-bottom: 2rem; display: flex; gap: 0.75rem; align-items: flex-start; }
.alert-banner.info { background: rgba(0,180,204,0.06); border-color: rgba(0,180,204,0.2); color: var(--text-mid); }

/* ── FORUM PAGE ── */
.forum-layout { display: grid; grid-template-columns: 1fr 280px; gap: 2rem; padding: 3rem 0; align-items: start; }
.forum-sidebar { position: sticky; top: 76px; }
.forum-sidebar-box { background: var(--bg-2); border: 1px solid var(--bg-4); border-radius: 6px; padding: 1.25rem; margin-bottom: 1.5rem; }
.forum-sidebar-box h5 { font-family: var(--mono); font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-lo); margin-bottom: 1rem; }
.forum-post-form { background: var(--bg-2); border: 1px solid var(--bg-4); 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.68rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-lo); margin-bottom: 0.4rem; }
.form-control { width: 100%; background: var(--bg-3); border: 1px solid var(--bg-4); border-radius: var(--radius); color: var(--text-mid); padding: 0.6rem 0.9rem; font-family: var(--sans); font-size: 0.95rem; transition: border-color 0.2s; }
.form-control:focus { outline: none; border-color: var(--teal); }
textarea.form-control { resize: vertical; min-height: 100px; }
.forum-thread { background: var(--bg-2); border: 1px solid var(--bg-4); border-radius: 6px; padding: 1.5rem; margin-bottom: 1rem; transition: border-color 0.2s; cursor: pointer; }
.forum-thread:hover { border-color: var(--bg-4); }
.forum-thread.open { border-color: rgba(0, 180, 204, 0.45); box-shadow: 0 0 0 1px rgba(0, 180, 204, 0.12); }
.forum-thread-header { display: flex; align-items: flex-start; justify-content: space-between; gap: 1rem; margin-bottom: 0.75rem; }
.forum-thread h4 { font-weight: 600; font-size: 1.05rem; color: var(--text-hi); }
.forum-thread p { font-size: 0.95rem; color: var(--text-mid); margin-bottom: 0.75rem; }
.thread-detail { margin-top: 1rem; padding-top: 1rem; border-top: 1px solid var(--bg-4); cursor: auto; }
.thread-detail-body { font-size: 0.95rem; color: var(--text-mid); line-height: 1.65; white-space: pre-wrap; margin-bottom: 1rem; }
.thread-replies { display: flex; flex-direction: column; gap: 0.75rem; margin: 1rem 0; }
.thread-reply { background: var(--bg-3); border: 1px solid var(--bg-4); border-radius: 6px; padding: 0.75rem 1rem; }
.thread-reply-meta { font-family: var(--mono); font-size: 0.65rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-lo); margin-bottom: 0.35rem; }
.thread-reply-body { font-size: 0.9rem; color: var(--text-mid); line-height: 1.55; white-space: pre-wrap; }
.thread-detail-status { font-family: var(--mono); font-size: 0.7rem; margin-bottom: 0.5rem; }
.thread-detail-status.bad { color: var(--accent-2); }
.privacy-badge { background: rgba(62,207,142,0.06); border: 1px solid rgba(62,207,142,0.2); border-radius: 6px; padding: 1rem; font-size: 0.85rem; color: #3ecf8e; line-height: 1.6; }

/* Filter buttons (forum) */
.filter-btn.active { border-color: var(--teal); color: var(--teal); background: rgba(0,180,204,0.08); }

/* ── FOOTER ── */
.site-footer { background: var(--bg-0); border-top: 1px solid var(--bg-4); 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.88rem; color: var(--text-lo); 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-lo); margin-bottom: 1rem; }
.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 0.5rem; }
.footer-links a { color: var(--text-lo); font-size: 0.9rem; }
.footer-links a:hover { color: var(--teal); }
.footer-pledge p { font-size: 0.88rem; color: var(--text-lo); line-height: 1.6; }
.footer-bottom { border-top: 1px solid var(--bg-4); 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-lo); letter-spacing: 0.05em; }

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

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .pillar-grid { grid-template-columns: 1fr; }
  .forum-cards { grid-template-columns: 1fr; }
  .botnet-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 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: 60px; left: 0; right: 0;
    background: var(--bg-0); border-bottom: 1px solid var(--bg-4);
    flex-direction: column; padding: 1rem; gap: 0.4rem;
  }
  .nav-links.open { display: flex; }
  .nav-links a { width: 100%; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: 1fr; }
  .stat-div { display: none; }
  .hero-actions { flex-direction: column; align-items: center; }
  .forum-float { right: 1rem; bottom: 1rem; font-size: 0.95rem; }
}
