/* ============================================================
   NEXUS DARKNET — SHARED STYLESHEET
   secure.darknet--nexus.org
   ============================================================ */

/* --- Custom Properties --- */
:root {
  --black-base: #080808;
  --black-mid:  #0C0C0C;
  --black-light:#101010;
  --red-deep-1: #3D0008;
  --red-deep-2: #5C000F;
  --red-deep-3: #7A0014;
  --red-accent: #CC0022;
  --red-hot:    #E8002A;
  --red-bright: #FF1133;
  --white:      #FFFFFF;
  --text-main:  #E0E0E0;
  --text-muted: #AAAAAA;
  --text-label: #888888;
  --panel-bg:   rgba(12,12,12,0.88);
  --panel-border: rgba(204,0,34,0.35);
  --font-impact: Impact, 'Arial Black', sans-serif;
  --font-mono:   'Courier New', Courier, monospace;
  --pad-h:  40px;
  --nav-h:  64px;
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--black-base);
  color: var(--text-main);
  font-family: var(--font-mono);
  overflow-x: hidden;
  min-height: 100vh;
}
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--black-mid); }
::-webkit-scrollbar-thumb { background: var(--red-deep-3); }
a { color: var(--red-hot); text-decoration: none; transition: color .15s; }
a:hover { color: var(--red-bright); }
img { max-width: 100%; height: auto; display: block; }
ul, ol { padding-left: 1.5rem; }

/* --- Background Layers --- */
.bg-glow {
  position: fixed; inset: 0;
  background: radial-gradient(
    ellipse at bottom center,
    rgba(122,0,20,.55) 0%,
    rgba(60,0,12,.3)  40%,
    transparent 70%
  );
  z-index: 1; pointer-events: none;
}
#matrixCanvas {
  position: fixed; inset: 0;
  z-index: 2; opacity: .75; pointer-events: none;
}
header, main, footer, .site-overlay { position: relative; z-index: 10; }

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
  background: var(--black-base);
  border-bottom: 1px solid rgba(204,0,34,.2);
  padding: 0 var(--pad-h);
  position: fixed; top: 0; width: 100%; z-index: 100;
  height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
  font-family: var(--font-impact);
  font-size: 22px; letter-spacing: .3em; color: var(--white);
  text-decoration: none; white-space: nowrap; flex-shrink: 0;
}
.nav-logo .accent { color: var(--red-hot); }
.nav-links {
  display: flex; align-items: center; gap: 28px;
  list-style: none;
}
.nav-links a {
  color: var(--white); font-weight: 700; font-size: 12px;
  letter-spacing: .15em; text-transform: uppercase;
  padding: 6px 0; transition: color .15s; text-decoration: none;
}
.nav-links a:hover, .nav-links a.active { color: var(--red-bright); }
.btn-nav {
  background: var(--red-hot) !important;
  color: var(--white) !important;
  padding: 7px 16px !important; border-radius: 4px;
  transition: background .15s !important;
}
.btn-nav:hover { background: var(--red-bright) !important; }
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 4px; background: none; border: none;
}
.hamburger span { width: 24px; height: 2px; background: var(--white); display: block; transition: all .3s; }

/* --- Main offset --- */
main { padding-top: var(--nav-h); }

/* ============================================================
   HERO — STANDARD (full-viewport centered)
   ============================================================ */
.hero {
  min-height: 100vh;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: calc(var(--nav-h) + 80px) var(--pad-h) 80px;
  text-align: center;
}
.hero-label {
  font-family: var(--font-mono); font-size: 15px;
  color: var(--red-hot); letter-spacing: .14em;
  text-transform: uppercase; margin-bottom: 16px;
}
.hero-heading {
  font-family: var(--font-impact); font-weight: 900;
  font-size: clamp(48px, 8vw, 80px);
  line-height: 1.05; letter-spacing: .04em;
  text-transform: uppercase; color: var(--white);
}
.hero-heading .accent { color: var(--red-hot); display: block; }
.hero-tagline {
  font-family: var(--font-mono); font-size: 15px;
  color: var(--red-hot); letter-spacing: .14em;
  text-transform: uppercase; margin: 12px 0 24px;
}
.hero-panel {
  background: var(--panel-bg);
  border: 1px solid var(--panel-border);
  border-left: 3px solid var(--red-accent);
  border-radius: 8px; padding: 32px 40px;
  max-width: 680px; margin: 0 auto 24px;
  font-size: 14px; line-height: 1.9;
  color: var(--text-main); letter-spacing: .05em; text-align: left;
}

/* ============================================================
   HERO — HOMEPAGE (two-column with screenshot)
   ============================================================ */
.hero-home {
  min-height: 100vh;
  display: flex; align-items: center;
  padding: calc(var(--nav-h) + 60px) var(--pad-h) 60px;
  gap: 60px; max-width: 1300px; margin: 0 auto;
}
.hero-home-image { flex: 0 0 45%; max-width: 560px; }
.hero-home-image img {
  width: 100%; border-radius: 8px;
  border: 1px solid var(--panel-border);
  box-shadow: 0 0 48px rgba(204,0,34,.25);
}
.hero-home-content { flex: 1; }
.hero-home-content .hero-heading {
  font-size: clamp(40px, 5vw, 72px); margin-bottom: 8px; text-align: left;
}
.hero-home-content .hero-panel { margin: 24px 0; text-align: left; max-width: 100%; }
.hero-home-content .hero-tagline { text-align: left; }

/* ============================================================
   CTA BUTTON
   ============================================================ */
.btn-primary {
  background: var(--red-hot); color: var(--white);
  font-family: var(--font-mono); font-weight: 700;
  font-size: 15px; letter-spacing: .2em; text-transform: uppercase;
  padding: 18px 52px; border: none; border-radius: 6px;
  cursor: pointer; display: inline-block; text-decoration: none;
  transition: background .15s, box-shadow .15s;
  animation: ctaPulse 2s ease-in-out infinite;
}
.btn-primary:hover {
  background: var(--red-bright);
  box-shadow: 0 0 20px rgba(232,0,42,.35);
  color: var(--white); animation: none;
}
@keyframes ctaPulse {
  0%,100% { box-shadow: 0 0 10px rgba(232,0,42,.2); }
  50%      { box-shadow: 0 0 24px rgba(232,0,42,.45); }
}
.btn-secondary {
  background: transparent; color: var(--red-hot);
  font-family: var(--font-mono); font-weight: 700;
  font-size: 13px; letter-spacing: .15em; text-transform: uppercase;
  padding: 12px 32px; border: 1px solid var(--red-accent);
  border-radius: 6px; cursor: pointer;
  display: inline-block; text-decoration: none; transition: all .15s;
}
.btn-secondary:hover {
  background: rgba(204,0,34,.12); color: var(--red-bright);
  border-color: var(--red-bright);
}

/* ============================================================
   STATS ROW
   ============================================================ */
.stats-row {
  display: flex; gap: 72px; justify-content: center;
  margin-top: 48px; flex-wrap: wrap;
}
.stat-block {
  text-align: center; display: flex; flex-direction: column;
  align-items: center; gap: 6px;
}
.stat-number {
  font-family: var(--font-impact); font-size: 40px;
  font-weight: 900; color: var(--red-bright); line-height: 1;
}
.stat-label {
  font-size: 11px; color: var(--text-label);
  letter-spacing: .2em; text-transform: uppercase; font-family: var(--font-mono);
}

/* ============================================================
   SECTIONS & LAYOUT
   ============================================================ */
.section { padding: 80px var(--pad-h); max-width: 1240px; margin: 0 auto; }
.section-full { padding: 80px var(--pad-h); }
.section-narrow { padding: 60px var(--pad-h); max-width: 900px; margin: 0 auto; }
.section-center { text-align: center; }
.section-header { margin-bottom: 40px; }
.section-title {
  font-family: var(--font-impact); font-size: clamp(26px, 4vw, 44px);
  font-weight: 900; color: var(--white); letter-spacing: .04em;
  text-transform: uppercase; line-height: 1.1;
}
.section-title .accent { color: var(--red-hot); }
.section-sub {
  font-family: var(--font-mono); font-size: 13px; color: var(--red-hot);
  letter-spacing: .14em; text-transform: uppercase; margin-top: 8px;
}
.divider {
  width: 60px; height: 3px; background: var(--red-accent); margin: 16px 0 32px;
}
.divider-center { margin: 16px auto 32px; }

/* ============================================================
   PANELS & CARDS
   ============================================================ */
.panel {
  background: var(--panel-bg);
  border: 1px solid var(--panel-border);
  border-left: 3px solid var(--red-accent);
  border-radius: 8px; padding: 28px 32px;
}
.panel p {
  font-size: 14px; line-height: 1.9; color: var(--text-main);
  letter-spacing: .04em; margin-bottom: 16px;
}
.panel p:last-child { margin-bottom: 0; }
.panel h3 {
  font-family: var(--font-impact); font-size: 18px; color: var(--white);
  letter-spacing: .06em; text-transform: uppercase; margin-bottom: 12px;
}

/* ============================================================
   FEATURE GRID
   ============================================================ */
.features-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 40px; }
.features-grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; margin-top: 40px; }
.feature-card {
  background: var(--panel-bg);
  border: 1px solid var(--panel-border);
  border-top: 2px solid var(--red-accent);
  border-radius: 8px; padding: 28px 20px; text-align: center;
  transition: border-color .2s, box-shadow .2s;
}
.feature-card:hover {
  border-color: var(--red-hot);
  box-shadow: 0 0 20px rgba(204,0,34,.18);
}
.feature-card img {
  width: 72px; height: 72px; margin: 0 auto 16px; object-fit: contain;
}
.feature-card h3 {
  font-family: var(--font-impact); font-size: 17px; color: var(--white);
  letter-spacing: .06em; text-transform: uppercase; margin-bottom: 10px;
}
.feature-card p { font-size: 13px; line-height: 1.8; color: var(--text-main); letter-spacing: .03em; }

/* ============================================================
   NEWS GRID
   ============================================================ */
.news-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 40px; }
.news-card {
  background: var(--panel-bg);
  border: 1px solid var(--panel-border);
  border-radius: 8px; overflow: hidden; transition: box-shadow .2s;
}
.news-card:hover { box-shadow: 0 0 24px rgba(204,0,34,.2); }
.news-card img { width: 100%; height: 180px; object-fit: cover; }
.news-card-body { padding: 20px; }
.news-date {
  font-size: 11px; color: var(--red-hot);
  letter-spacing: .14em; text-transform: uppercase; margin-bottom: 8px;
}
.news-card-body h3 {
  font-family: var(--font-impact); font-size: 17px; color: var(--white);
  letter-spacing: .05em; text-transform: uppercase; margin-bottom: 8px; line-height: 1.3;
}
.news-card-body p { font-size: 13px; line-height: 1.7; color: var(--text-muted); margin-bottom: 14px; }
.read-more {
  font-size: 12px; color: var(--red-hot); font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
}
.read-more:hover { color: var(--red-bright); }

/* ============================================================
   FAQ
   ============================================================ */
.faq-list { margin-top: 40px; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--panel-bg);
  border: 1px solid var(--panel-border);
  border-left: 3px solid var(--red-accent);
  border-radius: 6px; overflow: hidden;
}
.faq-question {
  padding: 18px 24px; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 14px; font-weight: 700; color: var(--white); letter-spacing: .05em;
  user-select: none; background: none; border: none; width: 100%; text-align: left;
}
.faq-icon { font-size: 20px; color: var(--red-accent); flex-shrink: 0; transition: transform .2s; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-item.open .faq-answer { max-height: 600px; }
.faq-answer-inner {
  padding: 0 24px 20px;
  font-size: 14px; line-height: 1.9; color: var(--text-main); letter-spacing: .04em;
}
.faq-answer-inner p { margin-bottom: 12px; }
.faq-answer-inner p:last-child { margin-bottom: 0; }

/* ============================================================
   ONION LINKS
   ============================================================ */
.onion-link-wrap { margin-bottom: 16px; }
.onion-link-box {
  background: var(--black-mid);
  border: 1px solid var(--panel-border);
  border-left: 3px solid var(--red-accent);
  border-radius: 6px; padding: 18px 20px;
  display: flex; align-items: center; gap: 12px;
}
.onion-num {
  font-family: var(--font-impact); font-size: 22px;
  color: var(--red-accent); flex-shrink: 0; min-width: 32px;
}
.onion-text {
  font-family: var(--font-mono); font-size: 13px;
  color: var(--text-main); word-break: break-all; flex: 1;
}
.copy-btn {
  background: var(--red-deep-2); color: var(--white);
  border: 1px solid var(--red-accent); border-radius: 4px;
  padding: 7px 14px; font-family: var(--font-mono);
  font-size: 11px; letter-spacing: .1em; text-transform: uppercase;
  cursor: pointer; flex-shrink: 0; transition: all .15s;
}
.copy-btn:hover { background: var(--red-accent); }
.copy-btn.copied { background: #005C2B; border-color: #00CC66; color: #00CC66; }

/* ============================================================
   PGP KEY
   ============================================================ */
.pgp-block {
  background: var(--black-mid);
  border: 1px solid rgba(0,204,102,.2);
  border-radius: 6px; padding: 24px;
  font-family: var(--font-mono); font-size: 11.5px;
  line-height: 1.55; color: #00CC66;
  overflow-x: auto; white-space: pre; word-break: break-all;
  max-height: 320px; overflow-y: auto;
}

/* ============================================================
   BREADCRUMB
   ============================================================ */
.breadcrumb {
  padding: 12px var(--pad-h);
  font-size: 12px; color: var(--text-label); letter-spacing: .07em;
}
.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--red-hot); }
.bc-sep { margin: 0 8px; color: var(--red-deep-3); }

/* ============================================================
   WARNING / INFO BOXES
   ============================================================ */
.warning-box {
  background: rgba(61,0,8,.4);
  border: 1px solid var(--red-deep-2);
  border-left: 3px solid var(--red-hot);
  border-radius: 6px; padding: 20px 24px; margin: 24px 0;
}
.warning-title {
  font-family: var(--font-impact); font-size: 15px; color: var(--red-hot);
  letter-spacing: .1em; text-transform: uppercase; margin-bottom: 8px;
}
.warning-box p { font-size: 13px; line-height: 1.8; color: var(--text-main); margin-bottom: 6px; }
.warning-box p:last-child { margin-bottom: 0; }
.info-box {
  background: rgba(0,20,8,.3);
  border: 1px solid rgba(0,204,102,.2);
  border-left: 3px solid #00CC66;
  border-radius: 6px; padding: 20px 24px; margin: 24px 0;
}
.info-title {
  font-family: var(--font-impact); font-size: 15px; color: #00CC66;
  letter-spacing: .1em; text-transform: uppercase; margin-bottom: 8px;
}
.info-box p { font-size: 13px; line-height: 1.8; color: var(--text-main); margin-bottom: 6px; }
.info-box p:last-child { margin-bottom: 0; }

/* ============================================================
   CSS BAR CHARTS
   ============================================================ */
.chart-bar-row {
  display: flex; align-items: center; gap: 12px; margin-bottom: 12px;
}
.chart-bar-label { font-size: 12px; color: var(--text-muted); letter-spacing: .06em; width: 130px; flex-shrink: 0; }
.chart-bar-track { flex: 1; height: 18px; background: var(--black-mid); border-radius: 2px; overflow: hidden; }
.chart-bar-fill { height: 100%; background: var(--red-accent); border-radius: 2px; width: 0; transition: width 1.4s ease-out; }
.chart-bar-val { font-size: 12px; color: var(--red-hot); width: 56px; text-align: right; flex-shrink: 0; }

/* ============================================================
   TABS
   ============================================================ */
.tabs-nav {
  display: flex; gap: 0; border-bottom: 1px solid var(--panel-border);
  margin-bottom: 24px; overflow-x: auto; -webkit-overflow-scrolling: touch;
}
.tab-btn {
  background: none; border: none; border-bottom: 2px solid transparent;
  color: var(--text-muted); font-family: var(--font-mono);
  font-size: 12px; letter-spacing: .1em; text-transform: uppercase;
  padding: 11px 18px; cursor: pointer; transition: all .15s; white-space: nowrap;
}
.tab-btn:hover { color: var(--white); }
.tab-btn.active { color: var(--red-hot); border-bottom-color: var(--red-hot); }
.tab-panel { display: none; }
.tab-panel.active { display: block; }

/* ============================================================
   STYLED LIST
   ============================================================ */
.styled-list { list-style: none; padding: 0; margin: 16px 0; }
.styled-list li {
  font-size: 14px; line-height: 1.8; color: var(--text-main); letter-spacing: .03em;
  padding-left: 22px; position: relative; margin-bottom: 8px;
}
.styled-list li::before { content: '▸'; position: absolute; left: 0; color: var(--red-accent); }
.check-list { list-style: none; padding: 0; margin: 16px 0; }
.check-list li {
  font-size: 14px; line-height: 1.8; color: var(--text-main); letter-spacing: .03em;
  padding-left: 24px; position: relative; margin-bottom: 8px;
}
.check-list li::before { content: '✓'; position: absolute; left: 0; color: #00CC66; font-weight: 700; }
.x-list { list-style: none; padding: 0; margin: 16px 0; }
.x-list li {
  font-size: 14px; line-height: 1.8; color: var(--text-main); letter-spacing: .03em;
  padding-left: 24px; position: relative; margin-bottom: 8px;
}
.x-list li::before { content: '✗'; position: absolute; left: 0; color: var(--red-bright); font-weight: 700; }

/* ============================================================
   ARTICLE LAYOUT
   ============================================================ */
.article-header {
  padding: 60px var(--pad-h) 32px; max-width: 900px; margin: 0 auto;
}
.article-date {
  font-size: 12px; color: var(--red-hot); letter-spacing: .14em;
  text-transform: uppercase; margin-bottom: 12px;
}
.article-title {
  font-family: var(--font-impact); font-size: clamp(26px, 4vw, 48px);
  color: var(--white); letter-spacing: .04em; text-transform: uppercase;
  line-height: 1.1; margin-bottom: 12px;
}
.article-title .accent { color: var(--red-hot); }
.article-meta { font-size: 12px; color: var(--text-label); letter-spacing: .07em; }
.article-img { max-width: 900px; margin: 0 auto 40px; padding: 0 var(--pad-h); }
.article-img img { width: 100%; border-radius: 8px; border: 1px solid var(--panel-border); }
.article-body { max-width: 760px; margin: 0 auto; padding: 0 var(--pad-h) 80px; }
.article-body h2 {
  font-family: var(--font-impact); font-size: 24px; color: var(--white);
  letter-spacing: .06em; text-transform: uppercase; margin: 40px 0 16px;
}
.article-body h3 {
  font-size: 16px; color: var(--red-hot); letter-spacing: .07em;
  text-transform: uppercase; margin: 24px 0 12px;
}
.article-body p {
  font-size: 14px; line-height: 1.9; color: var(--text-main);
  letter-spacing: .04em; margin-bottom: 20px;
}
.article-body ul, .article-body ol { margin: 12px 0 20px 20px; }
.article-body li { font-size: 14px; line-height: 1.8; color: var(--text-main); margin-bottom: 6px; }
.article-body blockquote {
  border-left: 3px solid var(--red-accent); padding: 14px 24px;
  background: rgba(12,12,12,.7); margin: 24px 0;
  font-style: italic; color: var(--text-muted); font-size: 14px; line-height: 1.8;
}
.article-body a { color: var(--red-hot); }
.article-body a:hover { color: var(--red-bright); }
.article-body strong { color: var(--white); font-weight: 700; }

/* ============================================================
   TWO-COLUMN CONTENT LAYOUT
   ============================================================ */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.three-col { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }

/* ============================================================
   OUTBOUND LINKS
   ============================================================ */
.outbound-link {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 16px; background: var(--black-mid);
  border: 1px solid var(--panel-border); border-radius: 6px;
  margin-bottom: 8px; text-decoration: none; transition: border-color .15s;
}
.outbound-link:hover { border-color: var(--red-hot); }
.outbound-link-info { flex: 1; }
.outbound-link-title { font-size: 13px; color: var(--white); font-weight: 700; display: block; margin-bottom: 2px; }
.outbound-link-url { font-size: 11px; color: var(--text-muted); font-family: var(--font-mono); }
.outbound-link-arrow { color: var(--red-hot); font-size: 16px; }

/* ============================================================
   DRUG HARM REDUCTION CARDS
   ============================================================ */
.drug-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 32px; }
.drug-card {
  background: var(--panel-bg); border: 1px solid var(--panel-border);
  border-top: 2px solid var(--red-deep-2); border-radius: 8px; padding: 20px;
}
.drug-card h3 {
  font-family: var(--font-impact); font-size: 16px; color: var(--white);
  letter-spacing: .06em; text-transform: uppercase; margin-bottom: 10px;
}
.drug-card p { font-size: 13px; line-height: 1.75; color: var(--text-muted); }
.drug-risk { font-size: 11px; letter-spacing: .1em; text-transform: uppercase; font-weight: 700; margin-bottom: 6px; }
.risk-high { color: var(--red-bright); }
.risk-med  { color: #FF8800; }
.risk-low  { color: #00CC66; }

/* ============================================================
   CRYPTO CARDS
   ============================================================ */
.crypto-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 40px; }
.crypto-card {
  background: var(--panel-bg); border: 1px solid var(--panel-border);
  border-radius: 8px; padding: 28px 24px; text-align: center;
  transition: box-shadow .2s;
}
.crypto-card:hover { box-shadow: 0 0 20px rgba(204,0,34,.15); }
.crypto-symbol {
  font-family: var(--font-impact); font-size: 52px;
  color: var(--red-bright); margin-bottom: 8px; display: block;
}
.crypto-name {
  font-family: var(--font-impact); font-size: 22px; color: var(--white);
  letter-spacing: .1em; margin-bottom: 12px;
}
.crypto-desc { font-size: 13px; line-height: 1.8; color: var(--text-muted); margin-bottom: 20px; }

/* ============================================================
   OPSEC TOOL CARDS
   ============================================================ */
.tool-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 20px; margin-top: 28px; }
.tool-card {
  background: var(--panel-bg); border: 1px solid var(--panel-border);
  border-left: 3px solid var(--red-deep-3); border-radius: 6px; padding: 20px;
}
.tool-card h4 {
  font-family: var(--font-impact); font-size: 16px; color: var(--white);
  letter-spacing: .06em; text-transform: uppercase; margin-bottom: 8px;
}
.tool-card p { font-size: 13px; line-height: 1.75; color: var(--text-muted); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--black-mid);
  border-top: 1px solid rgba(204,0,34,.2);
  padding: 52px var(--pad-h) 32px;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px; max-width: 1240px; margin: 0 auto 44px;
}
.footer-brand-name {
  font-family: var(--font-impact); font-size: 20px; color: var(--white);
  letter-spacing: .3em; margin-bottom: 12px;
}
.footer-brand-name .accent { color: var(--red-hot); }
.footer-brand p { font-size: 13px; line-height: 1.8; color: var(--text-muted); }
.footer-col h4 {
  font-size: 12px; color: var(--red-hot); letter-spacing: .18em;
  text-transform: uppercase; margin-bottom: 16px;
}
.footer-col ul { list-style: none; padding: 0; }
.footer-col li { margin-bottom: 8px; }
.footer-col a { font-size: 13px; color: var(--text-muted); letter-spacing: .05em; }
.footer-col a:hover { color: var(--red-hot); }
.footer-bottom {
  border-top: 1px solid rgba(204,0,34,.15); padding-top: 24px;
  text-align: center; max-width: 1240px; margin: 0 auto;
}
.footer-disclaimer { font-size: 12px; color: var(--text-label); letter-spacing: .05em; line-height: 1.7; margin-bottom: 8px; }
.footer-updated { font-size: 11px; color: var(--red-deep-3); letter-spacing: .1em; text-transform: uppercase; }

/* ============================================================
   TERMS / PRIVACY ARTICLE
   ============================================================ */
.legal-body { max-width: 820px; margin: 0 auto; padding: 0 var(--pad-h) 80px; }
.legal-body h2 {
  font-family: var(--font-impact); font-size: 22px; color: var(--white);
  letter-spacing: .06em; text-transform: uppercase; margin: 36px 0 14px;
  border-bottom: 1px solid rgba(204,0,34,.2); padding-bottom: 8px;
}
.legal-body p { font-size: 14px; line-height: 1.9; color: var(--text-main); letter-spacing: .03em; margin-bottom: 16px; }
.legal-body ul { margin: 8px 0 16px 20px; }
.legal-body li { font-size: 14px; line-height: 1.8; color: var(--text-main); margin-bottom: 4px; }

/* ============================================================
   VERIFIED ACCESS PAGE
   ============================================================ */
.access-warning {
  background: rgba(61,0,8,.6); border: 1px solid var(--red-hot);
  border-radius: 8px; padding: 24px 32px; text-align: center; margin-bottom: 40px;
}
.access-warning p { font-size: 14px; line-height: 1.8; color: var(--text-main); }
.access-warning strong { color: var(--red-bright); }

/* ============================================================
   NEWS ARTICLE HEADER + TAGS
   ============================================================ */
.article-tag {
  display: inline-block; background: var(--red-deep-2);
  color: var(--red-hot); border-radius: 3px; padding: 3px 10px;
  font-size: 11px; letter-spacing: .1em; text-transform: uppercase;
  margin-bottom: 12px; font-weight: 700;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .features-grid-4 { grid-template-columns: repeat(3,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  :root { --pad-h: 24px; }
  .features-grid { grid-template-columns: repeat(2,1fr); }
  .features-grid-4 { grid-template-columns: repeat(2,1fr); }
  .news-grid { grid-template-columns: repeat(2,1fr); }
  .stats-row { gap: 36px; }
  .two-col { grid-template-columns: 1fr; gap: 24px; }
  .three-col { grid-template-columns: 1fr 1fr; }
  .crypto-cards { grid-template-columns: 1fr 1fr; }
  .drug-cards { grid-template-columns: 1fr 1fr; }
  .tool-grid { grid-template-columns: 1fr; }
  .hero-home { flex-direction: column; gap: 36px; padding-top: calc(var(--nav-h) + 40px); }
  .hero-home-image { flex: none; width: 100%; max-width: 100%; }
  .hero-home-content .hero-heading { font-size: clamp(36px,7vw,58px); }
  .hero-home-content .hero-panel { text-align: left; }
}
@media (max-width: 640px) {
  :root { --pad-h: 18px; }
  .nav-links { display: none; }
  .nav-links.nav-open {
    display: flex; flex-direction: column;
    position: fixed; top: var(--nav-h); left: 0; right: 0;
    background: var(--black-base); padding: 20px;
    border-bottom: 1px solid var(--panel-border);
    gap: 14px; z-index: 99;
  }
  .hamburger { display: flex; }
  .features-grid { grid-template-columns: 1fr; }
  .features-grid-4 { grid-template-columns: 1fr 1fr; }
  .news-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .stats-row { gap: 20px; flex-wrap: wrap; }
  .onion-link-box { flex-wrap: wrap; }
  .crypto-cards { grid-template-columns: 1fr; }
  .drug-cards { grid-template-columns: 1fr; }
  .three-col { grid-template-columns: 1fr; }
  .btn-primary { padding: 14px 32px; font-size: 13px; }
  .hero-panel { padding: 20px 18px; }
}
