/* =============================================
   TORZON DARKNET — CORE STYLESHEET
   Minimalist AI-Tech Corporate Interface
   ============================================= */

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

/* ---- CSS CUSTOM PROPERTIES ---- */
:root {
  --bg-light: #cfd3da;
  --bg-mid: #aeb4be;
  --bg-dark: #9aa0ab;
  --panel-dark: #111111;
  --panel-mid: #1b1b1b;
  --panel-light: #222222;
  --panel-border: #2a2a2a;
  --text-white: #f2f2f2;
  --text-muted: #9a9a9a;
  --text-dim: #6a6a6a;
  --accent-gray: #c0c4cc;
  --accent-line: #3a3a3a;
  --shadow-soft: 0 4px 24px rgba(0,0,0,0.18);
  --shadow-card: 0 2px 12px rgba(0,0,0,0.14);
  --radius-card: 6px;
  --transition: all 0.22s cubic-bezier(0.4, 0, 0.2, 1);
  --font-primary: 'Space Grotesk', 'Inter', sans-serif;
  --font-body: 'Inter', sans-serif;
  --max-width: 1240px;
  --nav-height: 68px;
}

/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: linear-gradient(160deg, #cfd3da 0%, #b8bec9 50%, #aeb4be 100%);
  min-height: 100vh;
  color: #1a1a1a;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

/* ---- SCROLLBAR ---- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #b0b6c0; }
::-webkit-scrollbar-thumb { background: #555; border-radius: 3px; }

/* =============================================
   NAVIGATION
   ============================================= */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-height);
  background: rgba(17, 17, 17, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--panel-border);
  z-index: 1000;
  display: flex;
  align-items: center;
}
.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo img {
  height: 44px;
  width: auto;
}
.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.nav-logo-text .brand-name {
  font-family: var(--font-primary);
  font-size: 18px;
  font-weight: 700;
  color: var(--text-white);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.nav-logo-text .brand-sub {
  font-size: 10px;
  font-weight: 400;
  color: var(--text-muted);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-top: 3px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-links a {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: 4px;
  transition: var(--transition);
}
.nav-links a:hover { color: var(--text-white); background: rgba(255,255,255,0.06); }
.nav-links a.active { color: var(--text-white); }
.nav-cta {
  margin-left: 16px;
}
.btn-nav {
  display: inline-block;
  padding: 9px 22px;
  background: var(--text-white);
  color: #111;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
}
.btn-nav:hover { background: #d8d8d8; }
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-muted);
  transition: var(--transition);
}

/* ---- MOBILE NAV ---- */
.nav-mobile {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0; right: 0;
  background: rgba(17,17,17,0.98);
  border-bottom: 1px solid var(--panel-border);
  z-index: 999;
  padding: 20px 32px 28px;
  flex-direction: column;
  gap: 4px;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: var(--transition);
}
.nav-mobile a:hover { color: var(--text-white); }

/* =============================================
   LAYOUT UTILITIES
   ============================================= */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px;
}
.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }
.section-lg { padding: 120px 0; }
.page-top { padding-top: calc(var(--nav-height) + 64px); }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.text-center { text-align: center; }
.text-muted { color: var(--text-muted); }

/* =============================================
   TYPOGRAPHY
   ============================================= */
.section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
  padding: 5px 12px;
  background: rgba(0,0,0,0.06);
  border-radius: 2px;
}
.section-label.light {
  color: #888;
  background: rgba(255,255,255,0.08);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-primary);
  line-height: 1.12;
}
.h-xl {
  font-size: clamp(42px, 5.5vw, 76px);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -0.02em;
}
.h-lg {
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.015em;
}
.h-md {
  font-size: clamp(24px, 2.8vw, 38px);
  font-weight: 700;
  line-height: 1.14;
  letter-spacing: -0.01em;
}
.h-sm {
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 600;
  line-height: 1.2;
}
.body-lg { font-size: 17px; line-height: 1.72; color: #3a3a3a; }
.body-md { font-size: 15px; line-height: 1.68; color: #4a4a4a; }
.body-sm { font-size: 13px; line-height: 1.6; color: #5a5a5a; }
.body-xs { font-size: 12px; line-height: 1.5; color: var(--text-muted); }

.text-light { color: var(--text-white); }
.text-dim { color: var(--text-muted); }
.thin-line { font-weight: 300; }
.bold-line { font-weight: 800; }
.upper { text-transform: uppercase; letter-spacing: 0.06em; }

/* =============================================
   BUTTONS
   ============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  border-radius: var(--radius-card);
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}
.btn-primary {
  background: var(--panel-dark);
  color: var(--text-white);
  border: 1px solid transparent;
}
.btn-primary:hover {
  background: #000;
  transform: translateY(-1px);
  box-shadow: var(--shadow-soft);
}
.btn-outline {
  background: transparent;
  color: var(--panel-dark);
  border: 1.5px solid #9a9a9a;
}
.btn-outline:hover {
  background: rgba(0,0,0,0.06);
  border-color: #555;
  transform: translateY(-1px);
}
.btn-white {
  background: var(--text-white);
  color: #111;
  border: 1.5px solid transparent;
}
.btn-white:hover {
  background: #e0e0e0;
  transform: translateY(-1px);
}
.btn-sm { padding: 9px 18px; font-size: 11px; }
.btn-lg { padding: 16px 36px; font-size: 14px; }

/* =============================================
   CARDS
   ============================================= */
.card {
  background: var(--panel-dark);
  border: 1px solid var(--panel-border);
  border-radius: var(--radius-card);
  padding: 28px 24px;
  transition: var(--transition);
}
.card:hover {
  transform: translateY(-2px);
  border-color: #383838;
  box-shadow: var(--shadow-soft);
}
.card-light {
  background: rgba(255,255,255,0.62);
  border: 1px solid rgba(255,255,255,0.8);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-card);
  padding: 28px 24px;
  transition: var(--transition);
}
.card-light:hover {
  transform: translateY(-2px);
  background: rgba(255,255,255,0.75);
  box-shadow: 0 6px 28px rgba(0,0,0,0.12);
}
.card-icon {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: rgba(255,255,255,0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.card-icon img { width: 24px; height: 24px; object-fit: contain; filter: brightness(0.9); }
.card-num {
  font-family: var(--font-primary);
  font-size: 52px;
  font-weight: 800;
  color: var(--text-white);
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 8px;
}
.card-title {
  font-family: var(--font-primary);
  font-size: 16px;
  font-weight: 600;
  color: var(--text-white);
  margin-bottom: 10px;
  line-height: 1.3;
}
.card-body {
  font-size: 13px;
  line-height: 1.65;
  color: #888;
}

/* =============================================
   HERO SECTION
   ============================================= */
.hero {
  min-height: 100vh;
  padding-top: var(--nav-height);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  background: linear-gradient(145deg, #c8cdd6 0%, #b5bbc6 40%, #a8aebb 100%);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse 60% 50% at 68% 50%, rgba(30,32,38,0.08) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(100,110,130,0.1) 0%, transparent 60%);
  pointer-events: none;
}
.hero-left {
  padding: 80px 48px 80px 64px;
  position: relative;
  z-index: 2;
}
.hero-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #5a6070;
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 1.5px;
  background: #7a8090;
}
.hero-title {
  font-family: var(--font-primary);
  font-size: clamp(44px, 5.2vw, 78px);
  font-weight: 800;
  line-height: 0.96;
  letter-spacing: -0.025em;
  color: #111;
  margin-bottom: 24px;
}
.hero-title .thin { font-weight: 300; color: #3d4350; }
.hero-title .bold { font-weight: 900; color: #0a0a0a; }
.hero-desc {
  font-size: 16px;
  line-height: 1.75;
  color: #3a4050;
  max-width: 440px;
  margin-bottom: 40px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* Screenshot-left hero variant (homepage) */
.hero-screenshot-left .hero-left {
  padding: 80px 64px 80px 48px;
}
.hero-screenshot-left .hero-right {
  background: var(--panel-dark);
}

.hero-right {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
#hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* Screenshot panel in hero */
.hero-screen {
  position: relative;
  z-index: 3;
  width: 88%;
  max-width: 540px;
  background: var(--panel-dark);
  border-radius: 10px;
  border: 1px solid #2a2a2a;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.32);
}
.hero-screen-bar {
  height: 34px;
  background: #1a1a1a;
  border-bottom: 1px solid #2a2a2a;
  display: flex;
  align-items: center;
  padding: 0 14px;
  gap: 7px;
}
.hero-screen-bar .dot {
  width: 11px; height: 11px;
  border-radius: 50%;
  background: #3a3a3a;
}
.hero-screen-bar .dot.r { background: #6a3030; }
.hero-screen-bar .dot.y { background: #5a4a20; }
.hero-screen-bar .dot.g { background: #2a4a28; }
.hero-screen-url {
  flex: 1;
  margin: 0 14px;
  height: 20px;
  background: #252525;
  border-radius: 3px;
  font-size: 10px;
  color: #666;
  display: flex;
  align-items: center;
  padding: 0 8px;
  letter-spacing: 0.05em;
  font-family: monospace;
}
.hero-screen img {
  width: 100%;
  display: block;
  border-radius: 0 0 9px 9px;
}
.hero-screen-placeholder {
  height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #444;
  font-size: 13px;
  letter-spacing: 0.1em;
}

/* =============================================
   SECTION HEADERS
   ============================================= */
.section-header {
  margin-bottom: 56px;
}
.section-header.centered { text-align: center; }
.section-header .section-label { margin-bottom: 16px; }
.section-divider {
  width: 40px;
  height: 2px;
  background: #4a4a4a;
  margin: 20px 0;
}
.section-divider.centered { margin: 20px auto; }
.section-divider.light { background: rgba(255,255,255,0.2); }

/* =============================================
   FEATURE GRID
   ============================================= */
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.feature-card {
  background: var(--panel-dark);
  border: 1px solid var(--panel-border);
  border-radius: var(--radius-card);
  padding: 32px 26px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.12), transparent);
  opacity: 0;
  transition: var(--transition);
}
.feature-card:hover::before { opacity: 1; }
.feature-card:hover {
  transform: translateY(-3px);
  border-color: #333;
  box-shadow: 0 8px 32px rgba(0,0,0,0.22);
}
.feature-img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: 4px;
  margin-bottom: 20px;
  background: #1a1a1a;
}
.feature-num {
  font-family: var(--font-primary);
  font-size: 11px;
  font-weight: 600;
  color: #555;
  letter-spacing: 0.2em;
  margin-bottom: 10px;
}
.feature-title {
  font-family: var(--font-primary);
  font-size: 17px;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 12px;
  line-height: 1.25;
}
.feature-desc {
  font-size: 13.5px;
  line-height: 1.65;
  color: #7a7a7a;
}

/* =============================================
   DARK SECTION
   ============================================= */
.dark-section {
  background: var(--panel-dark);
  position: relative;
}
.dark-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(255,255,255,0.03) 0%, transparent 70%);
  pointer-events: none;
}

/* =============================================
   CRYPTO SECTION
   ============================================= */
.crypto-cols { display: grid; grid-template-columns: 1.2fr 1fr; gap: 64px; align-items: start; }
.coin-list { display: flex; flex-direction: column; gap: 16px; margin-top: 28px; }
.coin-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 20px;
  background: rgba(255,255,255,0.04);
  border: 1px solid #2a2a2a;
  border-radius: var(--radius-card);
  transition: var(--transition);
}
.coin-item:hover { background: rgba(255,255,255,0.07); border-color: #383838; }
.coin-badge {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-primary);
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
}
.coin-badge.xmr { background: #2d1f0a; color: #c8854a; }
.coin-badge.btc { background: #1f1a0a; color: #c89832; }
.coin-title { font-size: 15px; font-weight: 600; color: var(--text-white); margin-bottom: 5px; }
.coin-desc { font-size: 13px; color: #888; line-height: 1.6; }
.rec-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #5a7a5a;
  background: rgba(90,120,90,0.15);
  border: 1px solid rgba(90,120,90,0.25);
  padding: 2px 8px;
  border-radius: 2px;
  margin-top: 6px;
}

/* =============================================
   OPSEC / SECURITY SECTION
   ============================================= */
.opsec-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.opsec-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid #2a2a2a;
  border-radius: var(--radius-card);
  padding: 24px 22px;
  transition: var(--transition);
}
.opsec-card:hover { background: rgba(255,255,255,0.08); border-color: #353535; }
.opsec-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.opsec-icon {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.06);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}
.opsec-title { font-size: 15px; font-weight: 600; color: var(--text-white); }
.opsec-list { display: flex; flex-direction: column; gap: 7px; }
.opsec-list li {
  font-size: 13px;
  color: #888;
  line-height: 1.55;
  padding-left: 16px;
  position: relative;
}
.opsec-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: #4a4a4a;
}
.warning-box {
  background: rgba(180,80,80,0.08);
  border: 1px solid rgba(180,80,80,0.2);
  border-radius: var(--radius-card);
  padding: 18px 22px;
  margin-top: 20px;
}
.warning-box .w-title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #c07070;
  margin-bottom: 8px;
}
.warning-box .w-list { display: flex; flex-direction: column; gap: 5px; }
.warning-box .w-list li {
  font-size: 13px;
  color: #a07070;
  padding-left: 14px;
  position: relative;
}
.warning-box .w-list li::before {
  content: '✕';
  position: absolute;
  left: 0;
  color: #b06060;
  font-size: 11px;
}

/* =============================================
   HARM REDUCTION
   ============================================= */
.harm-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.harm-rule {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px 20px;
  background: rgba(255,255,255,0.55);
  border: 1px solid rgba(255,255,255,0.7);
  border-radius: var(--radius-card);
  transition: var(--transition);
}
.harm-rule:hover { background: rgba(255,255,255,0.72); }
.harm-rule-num {
  font-family: var(--font-primary);
  font-size: 28px;
  font-weight: 800;
  color: rgba(0,0,0,0.12);
  line-height: 1;
  min-width: 36px;
}
.harm-rule-content .harm-title {
  font-size: 14px;
  font-weight: 700;
  color: #111;
  margin-bottom: 5px;
}
.harm-rule-content .harm-text {
  font-size: 13px;
  color: #555;
  line-height: 1.6;
}

/* =============================================
   PHISHING SECTION
   ============================================= */
.phish-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 36px; }
.phish-step {
  background: var(--panel-dark);
  border: 1px solid var(--panel-border);
  border-radius: var(--radius-card);
  padding: 24px 20px;
  text-align: center;
  transition: var(--transition);
}
.phish-step:hover { transform: translateY(-2px); border-color: #333; }
.phish-step-num {
  font-family: var(--font-primary);
  font-size: 36px;
  font-weight: 800;
  color: rgba(255,255,255,0.1);
  line-height: 1;
  margin-bottom: 12px;
}
.phish-step-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-white);
  margin-bottom: 8px;
}
.phish-step-text { font-size: 12.5px; color: #777; line-height: 1.6; }

/* =============================================
   NEWS SECTION
   ============================================= */
.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.news-card {
  background: var(--panel-dark);
  border: 1px solid var(--panel-border);
  border-radius: var(--radius-card);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.news-card:hover { transform: translateY(-3px); border-color: #333; box-shadow: var(--shadow-soft); }
.news-img-wrap {
  height: 160px;
  overflow: hidden;
  background: #1a1a1a;
  position: relative;
}
.news-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.news-card:hover .news-img-wrap img { transform: scale(1.04); }
.news-card-body { padding: 20px 18px; flex: 1; display: flex; flex-direction: column; }
.news-date {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #555;
  margin-bottom: 10px;
}
.news-title {
  font-family: var(--font-primary);
  font-size: 15px;
  font-weight: 700;
  color: var(--text-white);
  line-height: 1.35;
  margin-bottom: 10px;
}
.news-excerpt { font-size: 12.5px; color: #777; line-height: 1.6; flex: 1; }
.news-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: #888;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 16px;
  transition: var(--transition);
}
.news-link:hover { color: var(--text-white); }
.news-link::after { content: '→'; }

/* =============================================
   FAQ SECTION
   ============================================= */
.faq-list { display: flex; flex-direction: column; gap: 0; }
.faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.08);
  overflow: hidden;
}
.faq-item:first-child { border-top: 1px solid rgba(255,255,255,0.08); }
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
  cursor: pointer;
  background: none;
  border: none;
  text-align: left;
  transition: var(--transition);
}
.faq-q-text {
  font-family: var(--font-primary);
  font-size: 15px;
  font-weight: 600;
  color: var(--text-white);
  line-height: 1.35;
  padding-right: 24px;
}
.faq-icon {
  width: 22px;
  height: 22px;
  border: 1.5px solid #3a3a3a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
  color: #888;
  font-size: 14px;
  font-weight: 300;
}
.faq-item.open .faq-icon { transform: rotate(45deg); border-color: #666; color: #bbb; }
.faq-answer {
  font-size: 14px;
  line-height: 1.72;
  color: #888;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.38s cubic-bezier(0.4,0,0.2,1), padding 0.3s;
  padding: 0 0 0 0;
}
.faq-item.open .faq-answer { max-height: 400px; padding-bottom: 22px; }

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: #0a0a0a;
  border-top: 1px solid #1e1e1e;
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}
.footer-brand .footer-logo {
  font-family: var(--font-primary);
  font-size: 20px;
  font-weight: 700;
  color: var(--text-white);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.footer-desc {
  font-size: 13px;
  line-height: 1.7;
  color: #555;
  max-width: 260px;
}
.footer-col-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #444;
  margin-bottom: 18px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 13px;
  color: #555;
  transition: var(--transition);
  letter-spacing: 0.03em;
}
.footer-links a:hover { color: #999; }
.footer-bottom {
  border-top: 1px solid #191919;
  padding-top: 28px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.disclaimer {
  font-size: 12px;
  color: #444;
  line-height: 1.65;
  max-width: 600px;
}
.disclaimer strong { color: #666; }
.footer-meta { font-size: 12px; color: #333; text-align: right; white-space: nowrap; }

/* =============================================
   PAGE HERO (inner pages)
   ============================================= */
.page-hero {
  background: var(--panel-dark);
  padding: 100px 0 72px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 30% 50%, rgba(255,255,255,0.03) 0%, transparent 70%);
}
.page-hero .breadcrumb {
  font-size: 11px;
  color: #555;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.page-hero .breadcrumb a { color: #555; transition: var(--transition); }
.page-hero .breadcrumb a:hover { color: #888; }
.page-hero .breadcrumb span { color: #333; }
.page-hero h1 { color: var(--text-white); margin-bottom: 18px; }
.page-hero .page-desc {
  font-size: 16px;
  color: #777;
  line-height: 1.72;
  max-width: 580px;
}

/* =============================================
   CONTENT PROSE (long-form)
   ============================================= */
.prose {
  max-width: 780px;
}
.prose h2 {
  font-family: var(--font-primary);
  font-size: 26px;
  font-weight: 700;
  color: #111;
  margin: 48px 0 16px;
  line-height: 1.2;
}
.prose h3 {
  font-family: var(--font-primary);
  font-size: 19px;
  font-weight: 600;
  color: #1a1a1a;
  margin: 32px 0 12px;
}
.prose p { font-size: 15.5px; line-height: 1.8; color: #3a3a3a; margin-bottom: 18px; }
.prose ul, .prose ol { margin: 16px 0 20px 0; display: flex; flex-direction: column; gap: 8px; }
.prose ul li, .prose ol li { font-size: 15px; color: #4a4a4a; line-height: 1.7; padding-left: 20px; position: relative; }
.prose ul li::before { content: '—'; position: absolute; left: 0; color: #9a9a9a; }
.prose ol { counter-reset: ol; }
.prose ol li { counter-increment: ol; }
.prose ol li::before { content: counter(ol) '.'; position: absolute; left: 0; color: #7a7a7a; font-weight: 600; font-size: 13px; }
.prose a { color: #3a5a7a; border-bottom: 1px solid rgba(58,90,122,0.3); transition: var(--transition); }
.prose a:hover { color: #1a3a5a; border-color: #1a3a5a; }
.prose strong { font-weight: 700; color: #1a1a1a; }
.prose blockquote {
  margin: 24px 0;
  padding: 16px 22px;
  border-left: 3px solid #9a9a9a;
  background: rgba(0,0,0,0.04);
  border-radius: 0 4px 4px 0;
  font-size: 15px;
  color: #4a4a4a;
  font-style: italic;
}
.prose-dark h2 { color: var(--text-white); }
.prose-dark h3 { color: #ccc; }
.prose-dark p { color: #888; }
.prose-dark ul li, .prose-dark ol li { color: #888; }
.prose-dark strong { color: #ddd; }
.info-box {
  background: rgba(58,80,120,0.1);
  border: 1px solid rgba(58,80,120,0.2);
  border-radius: var(--radius-card);
  padding: 18px 22px;
  margin: 20px 0;
}
.info-box p { font-size: 14px; color: #3a5070; margin: 0; }
.info-box.warning { background: rgba(160,80,60,0.08); border-color: rgba(160,80,60,0.2); }
.info-box.warning p { color: #8a4a3a; }

/* =============================================
   ENTER MARKETPLACE PAGE
   ============================================= */
.onion-tabs { display: flex; flex-direction: column; gap: 16px; margin: 28px 0; }
.onion-tab {
  background: rgba(255,255,255,0.04);
  border: 1px solid #2a2a2a;
  border-radius: var(--radius-card);
  padding: 20px 22px;
  transition: var(--transition);
}
.onion-tab:hover { background: rgba(255,255,255,0.07); border-color: #383838; }
.onion-tab-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #555;
  margin-bottom: 10px;
}
.onion-url {
  font-family: 'Courier New', Courier, monospace;
  font-size: 13px;
  color: #8a9a8a;
  word-break: break-all;
  line-height: 1.5;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}
.onion-url:hover { color: #aac0aa; }
.onion-copy-btn {
  flex-shrink: 0;
  background: rgba(255,255,255,0.06);
  border: 1px solid #333;
  border-radius: 3px;
  color: #666;
  font-size: 11px;
  padding: 4px 10px;
  cursor: pointer;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-family: var(--font-body);
  transition: var(--transition);
  white-space: nowrap;
}
.onion-copy-btn:hover { background: rgba(255,255,255,0.1); color: #aaa; }
.onion-copy-btn.copied { color: #6a9a6a; border-color: #4a6a4a; }
.pgp-box {
  background: #0d0d0d;
  border: 1px solid #222;
  border-radius: var(--radius-card);
  padding: 20px 22px;
  overflow: auto;
}
.pgp-box pre {
  font-family: 'Courier New', Courier, monospace;
  font-size: 12px;
  color: #7a8a7a;
  white-space: pre-wrap;
  word-break: break-all;
  line-height: 1.65;
}
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin: 28px 0; }
.stat-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid #2a2a2a;
  border-radius: var(--radius-card);
  padding: 22px 18px;
  text-align: center;
}
.stat-num {
  font-family: var(--font-primary);
  font-size: 36px;
  font-weight: 800;
  color: var(--text-white);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label { font-size: 11px; font-weight: 500; color: #555; letter-spacing: 0.14em; text-transform: uppercase; }

/* =============================================
   TRUST BADGES
   ============================================= */
.trust-list { display: flex; flex-direction: column; gap: 12px; }
.trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  background: rgba(255,255,255,0.03);
  border: 1px solid #252525;
  border-radius: 4px;
}
.trust-check {
  width: 24px;
  height: 24px;
  background: rgba(80,120,80,0.15);
  border: 1px solid rgba(80,120,80,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 12px;
  color: #6a9a6a;
}
.trust-text { font-size: 13.5px; color: #888; line-height: 1.45; }
.trust-text strong { color: #bbb; }

/* =============================================
   GUIDE STEPS
   ============================================= */
.guide-steps { display: flex; flex-direction: column; gap: 0; }
.guide-step {
  display: flex;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  position: relative;
}
.guide-step:last-child { border-bottom: none; }
.guide-step-num {
  font-family: var(--font-primary);
  font-size: 48px;
  font-weight: 800;
  color: rgba(255,255,255,0.05);
  line-height: 1;
  min-width: 64px;
  text-align: right;
}
.guide-step-content {}
.guide-step-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 10px;
  line-height: 1.25;
}
.guide-step-text { font-size: 14px; color: #888; line-height: 1.7; }

/* =============================================
   OUTBOUND LINKS
   ============================================= */
.resource-list { display: flex; flex-direction: column; gap: 10px; }
.resource-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  background: rgba(255,255,255,0.03);
  border: 1px solid #252525;
  border-radius: 4px;
  transition: var(--transition);
}
.resource-item:hover { background: rgba(255,255,255,0.06); border-color: #333; }
.resource-icon { font-size: 16px; flex-shrink: 0; opacity: 0.6; }
.resource-info .resource-name { font-size: 14px; font-weight: 600; color: #ccc; }
.resource-info .resource-url { font-size: 11px; color: #555; font-family: monospace; }
.resource-arrow { margin-left: auto; color: #444; font-size: 16px; transition: var(--transition); }
.resource-item:hover .resource-arrow { color: #777; transform: translateX(3px); }

/* =============================================
   CHARTS / DIAGRAMS
   ============================================= */
.chart-bar { margin: 8px 0; }
.chart-bar-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
}
.chart-bar-name { font-size: 13px; color: #888; }
.chart-bar-val { font-size: 13px; font-weight: 600; color: #bbb; }
.chart-bar-track {
  height: 6px;
  background: rgba(255,255,255,0.06);
  border-radius: 3px;
  overflow: hidden;
}
.chart-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, #3a3a3a, #6a6a6a);
  border-radius: 3px;
  transition: width 1s cubic-bezier(0.4,0,0.2,1);
}

/* =============================================
   BREADCRUMB PAGE NAV
   ============================================= */
.page-nav {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.page-nav a {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #666;
  padding: 8px 14px;
  background: rgba(255,255,255,0.04);
  border: 1px solid #2a2a2a;
  border-radius: 3px;
  transition: var(--transition);
}
.page-nav a:hover { color: #aaa; border-color: #3a3a3a; }
.page-nav a.current { color: #ccc; border-color: #444; background: rgba(255,255,255,0.07); }

/* =============================================
   ANIMATION UTILITIES
   ============================================= */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
.anim-fade-up { animation: fadeInUp 0.7s cubic-bezier(0.4,0,0.2,1) both; }
.anim-fade { animation: fadeIn 0.6s ease both; }
.anim-delay-1 { animation-delay: 0.1s; }
.anim-delay-2 { animation-delay: 0.22s; }
.anim-delay-3 { animation-delay: 0.36s; }
.anim-delay-4 { animation-delay: 0.5s; }
.float { animation: floatY 6s ease-in-out infinite; }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1080px) {
  .hero { grid-template-columns: 1fr; min-height: auto; padding-top: var(--nav-height); }
  .hero-left { padding: 72px 32px 48px; }
  .hero-right { height: 400px; }
  #hero-canvas { position: absolute; inset: 0; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .crypto-cols { grid-template-columns: 1fr; gap: 40px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .phish-steps { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .container { padding: 0 20px; }
  .section { padding: 64px 0; }
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .hero-title { font-size: clamp(36px, 8vw, 56px); }
  .hero-left { padding: 52px 20px 40px; }
  .feature-grid { grid-template-columns: 1fr; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .harm-cols { grid-template-columns: 1fr; }
  .opsec-grid { grid-template-columns: 1fr; }
  .news-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .phish-steps { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-bottom { flex-direction: column; }
  .footer-meta { text-align: left; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .guide-step-num { font-size: 32px; min-width: 44px; }
}
@media (max-width: 480px) {
  :root { --nav-height: 58px; }
  .nav-inner { padding: 0 16px; }
  .hero-right { height: 300px; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
}

/* =============================================
   HIGHLIGHT TAGS
   ============================================= */
.tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 2px;
  background: rgba(255,255,255,0.07);
  color: #888;
}
.tag.green { background: rgba(80,120,80,0.15); color: #7aaa7a; }
.tag.red { background: rgba(160,80,80,0.12); color: #c07070; }
.tag.blue { background: rgba(70,100,150,0.12); color: #7aadcc; }

/* =============================================
   BACK TO TOP
   ============================================= */
#back-to-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 42px;
  height: 42px;
  background: rgba(20,20,20,0.85);
  border: 1px solid #333;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #888;
  font-size: 18px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 900;
  text-decoration: none;
}
#back-to-top.visible { opacity: 1; visibility: visible; }
#back-to-top:hover { background: #222; color: #ccc; transform: translateY(-2px); }

/* =============================================
   NOTICE BANNER
   ============================================= */
.notice-banner {
  background: rgba(17,17,17,0.95);
  border-bottom: 1px solid #2a2a2a;
  padding: 10px 0;
  text-align: center;
  font-size: 12px;
  color: #555;
  letter-spacing: 0.06em;
  position: relative;
  z-index: 1100;
  margin-top: var(--nav-height);
}
.notice-banner strong { color: #888; }
