/* ============================================================
   TRZNDM.COM — Dark Futuristic Cyber-Security Interface
   Design System: Dark Cinematic + Volumetric Green Glow
   ============================================================ */

@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&family=JetBrains+Mono:wght@400;500;600&display=swap');

/* ── CSS Variables ── */
:root {
  --bg-primary:      #000000;
  --bg-secondary:    #061a0f;
  --bg-tertiary:     #0b1f14;
  --bg-card:         rgba(6, 26, 15, 0.55);
  --bg-card-hover:   rgba(11, 31, 20, 0.80);
  --accent:          #39ff88;
  --accent-alt:      #22ff66;
  --accent-dim:      rgba(57, 255, 136, 0.18);
  --accent-glow:     rgba(57, 255, 136, 0.30);
  --accent-border:   rgba(57, 255, 136, 0.22);
  --text-primary:    #f1f1f1;
  --text-secondary:  #9a9a9a;
  --text-muted:      #5a5a5a;
  --border-subtle:   rgba(255,255,255,0.06);
  --shadow-glow:     0 0 40px rgba(57, 255, 136, 0.12);
  --shadow-card:     0 8px 32px rgba(0,0,0,0.55);
  --radius-sm:       8px;
  --radius-md:       14px;
  --radius-lg:       22px;
  --radius-xl:       32px;
  --font-display:    'Space Grotesk', sans-serif;
  --font-body:       'Inter', sans-serif;
  --font-mono:       'JetBrains Mono', monospace;
  --transition:      all 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  --max-width:       1280px;
  --nav-height:      72px;
}

/* ── 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: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--accent-alt); }
ul, ol { list-style: none; }
button { font-family: var(--font-body); cursor: pointer; border: none; outline: none; }

/* ── Background ── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 10% 90%, rgba(57,255,136,0.06) 0%, transparent 55%),
    radial-gradient(ellipse 60% 50% at 90% 10%, rgba(57,255,136,0.04) 0%, transparent 50%),
    radial-gradient(ellipse 100% 80% at 50% 50%, #061a0f 0%, #000000 70%);
  pointer-events: none;
  z-index: 0;
}
body > * { position: relative; z-index: 1; }

/* ── Particle Canvas ── */
#particle-canvas {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.55;
}

/* ── Typography ── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 800; }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.6rem); font-weight: 700; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); font-weight: 600; }
h4 { font-size: 1.15rem; font-weight: 600; }
h5 { font-size: 1rem; font-weight: 600; }
p { color: var(--text-secondary); font-size: 1rem; line-height: 1.75; }
.lead { font-size: 1.15rem; color: var(--text-primary); opacity: 0.85; }
.mono { font-family: var(--font-mono); }
.accent { color: var(--accent); }
.muted { color: var(--text-muted); }
strong { color: var(--text-primary); font-weight: 600; }

/* ── Layout ── */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }
.section-sm { padding: 60px 0; }
.section-lg { padding: 128px 0; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.grid-6 { display: grid; grid-template-columns: repeat(6, 1fr); gap: 20px; }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.gap-8 { gap: 8px; }
.gap-12 { gap: 12px; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }
.gap-32 { gap: 32px; }
.text-center { text-align: center; }
.text-left { text-align: left; }
.mb-8 { margin-bottom: 8px; }
.mb-12 { margin-bottom: 12px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }
.mb-64 { margin-bottom: 64px; }
.mt-24 { margin-top: 24px; }
.mt-48 { margin-top: 48px; }

/* ── Section Label ── */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 16px;
}
.section-label::before {
  content: '';
  display: block;
  width: 22px;
  height: 1px;
  background: var(--accent);
}

/* ── Navigation ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-height);
  background: rgba(0, 0, 0, 0.82);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--accent-border);
  z-index: 1000;
  transition: var(--transition);
}
.nav.scrolled {
  background: rgba(0,0,0,0.95);
  box-shadow: 0 4px 30px rgba(0,0,0,0.6);
}
.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-logo {
  width: 200px;
  height: 56px;
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.nav-logo-text {
  font-family: var(--font-mono);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.05em;
  line-height: 1;
}
.nav-logo-sub {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  color: var(--text-muted);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-top: 3px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: center;
}
.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  white-space: nowrap;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--accent);
  background: var(--accent-dim);
}
.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  transition: var(--transition);
}
.nav-mobile {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0; right: 0;
  background: rgba(0,0,0,0.97);
  border-bottom: 1px solid var(--accent-border);
  padding: 20px 24px;
  flex-direction: column;
  gap: 4px;
  z-index: 999;
  backdrop-filter: blur(20px);
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-size: 0.95rem;
  color: var(--text-secondary);
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.nav-mobile a:hover { color: var(--accent); background: var(--accent-dim); }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 0.925rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: var(--transition);
  cursor: pointer;
  white-space: nowrap;
  text-decoration: none;
}
.btn-primary {
  background: var(--accent);
  color: #000;
  border: 2px solid var(--accent);
  box-shadow: 0 0 24px var(--accent-glow);
}
.btn-primary:hover {
  background: var(--accent-alt);
  border-color: var(--accent-alt);
  color: #000;
  box-shadow: 0 0 40px rgba(57,255,136,0.5);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: var(--accent);
  border: 2px solid var(--accent-border);
}
.btn-outline:hover {
  background: var(--accent-dim);
  border-color: var(--accent);
  color: var(--accent);
  box-shadow: 0 0 24px var(--accent-glow);
  transform: translateY(-2px);
}
.btn-ghost {
  background: transparent;
  color: var(--text-secondary);
  border: 1px solid var(--border-subtle);
}
.btn-ghost:hover {
  color: var(--text-primary);
  border-color: var(--accent-border);
  background: var(--accent-dim);
}
.btn-sm { padding: 8px 18px; font-size: 0.825rem; }
.btn-lg { padding: 16px 40px; font-size: 1.05rem; }
.btn-icon {
  width: 44px;
  height: 44px;
  padding: 0;
  border-radius: 50%;
  justify-content: center;
}

/* ── Cards ── */
.card {
  background: var(--bg-card);
  border: 1px solid var(--accent-border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: var(--transition);
  backdrop-filter: blur(12px);
  position: relative;
  overflow: hidden;
}
.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-glow), transparent);
  opacity: 0;
  transition: var(--transition);
}
.card:hover {
  background: var(--bg-card-hover);
  border-color: rgba(57,255,136,0.35);
  box-shadow: var(--shadow-glow), var(--shadow-card);
  transform: translateY(-4px);
}
.card:hover::before { opacity: 1; }
.card-icon {
  width: 52px;
  height: 52px;
  background: var(--accent-dim);
  border: 1px solid var(--accent-border);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.5rem;
}
.card-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: var(--radius-md);
  margin-bottom: 20px;
}
.card-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 10px;
}
.card-body { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.65; }

/* ── Hero Section ── */
.hero {
  min-height: 100vh;
  padding-top: calc(var(--nav-height) + 64px);
  padding-bottom: 96px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-left {}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 20px;
  padding: 6px 14px;
  border: 1px solid var(--accent-border);
  border-radius: var(--radius-xl);
  background: var(--accent-dim);
}
.hero-eyebrow-dot {
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}
.hero-title {
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -0.03em;
}
.hero-title .line-accent { color: var(--accent); }
.hero-desc {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 520px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-stats {
  display: flex;
  gap: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--border-subtle);
}
.hero-stat-num {
  font-family: var(--font-mono);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 4px;
}
.hero-stat-label { font-size: 0.8rem; color: var(--text-muted); }
.hero-right {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.hero-visual {
  position: relative;
  width: 100%;
  max-width: 560px;
}
.hero-screen {
  width: 100%;
  border-radius: var(--radius-lg);
  border: 1px solid var(--accent-border);
  box-shadow: var(--shadow-glow), var(--shadow-card);
  position: relative;
  z-index: 2;
}
.hero-screen-glow {
  position: absolute;
  inset: -20px;
  background: radial-gradient(ellipse at center, rgba(57,255,136,0.15) 0%, transparent 70%);
  border-radius: var(--radius-xl);
  z-index: 1;
  animation: glow-pulse 4s ease-in-out infinite;
}
.hero-particle-ring {
  position: absolute;
  inset: -40px;
  border: 1px solid var(--accent-border);
  border-radius: 50%;
  animation: spin-slow 20s linear infinite;
  z-index: 0;
}
.hero-particle-ring::after {
  content: '';
  position: absolute;
  top: -3px;
  left: 50%;
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--accent);
  transform: translateX(-50%);
}

/* ── Section Headers ── */
.section-header {
  margin-bottom: 56px;
}
.section-header.centered { text-align: center; }
.section-header .section-label { margin-bottom: 12px; }
.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.7rem);
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: -0.025em;
}
.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 620px;
  line-height: 1.7;
}
.section-header.centered .section-subtitle { margin: 0 auto; }

/* ── Feature Grid ── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--accent-border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: var(--transition);
  backdrop-filter: blur(12px);
  position: relative;
  overflow: hidden;
}
.feature-card:hover {
  border-color: rgba(57,255,136,0.4);
  background: var(--bg-card-hover);
  box-shadow: var(--shadow-glow), var(--shadow-card);
  transform: translateY(-5px);
}
.feature-card-img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: var(--radius-md);
  margin-bottom: 20px;
  border: 1px solid var(--border-subtle);
}
.feature-num {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--accent);
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}
.feature-card h3 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 10px;
}
.feature-card p { font-size: 0.875rem; color: var(--text-secondary); }

/* ── Crypto Section ── */
.crypto-section {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}
.coin-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.coin-card {
  background: var(--bg-card);
  border: 1px solid var(--accent-border);
  border-radius: var(--radius-lg);
  padding: 32px;
  backdrop-filter: blur(12px);
  transition: var(--transition);
}
.coin-card:hover {
  border-color: rgba(57,255,136,0.4);
  box-shadow: var(--shadow-glow);
  transform: translateY(-3px);
}
.coin-card.featured {
  border-color: rgba(57,255,136,0.5);
  background: rgba(57,255,136,0.05);
}
.coin-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}
.coin-symbol {
  width: 52px;
  height: 52px;
  background: var(--accent-dim);
  border: 1px solid var(--accent-border);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--accent);
}
.coin-name { font-size: 1.1rem; font-weight: 600; }
.coin-tag {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--text-muted);
  letter-spacing: 0.08em;
}
.coin-features { display: flex; flex-direction: column; gap: 10px; }
.coin-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--text-secondary);
}
.coin-feature::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
}
.recommend-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--accent);
  color: #000;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-xl);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}

/* ── News Grid ── */
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.news-card {
  background: var(--bg-card);
  border: 1px solid var(--accent-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.news-card:hover {
  border-color: rgba(57,255,136,0.4);
  box-shadow: var(--shadow-glow), var(--shadow-card);
  transform: translateY(-4px);
}
.news-card-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-bottom: 1px solid var(--border-subtle);
}
.news-card-body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.news-date {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--accent);
  letter-spacing: 0.08em;
  margin-bottom: 10px;
}
.news-card-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.4;
  margin-bottom: 10px;
  flex: 1;
}
.news-card-excerpt { font-size: 0.85rem; color: var(--text-secondary); line-height: 1.6; }
.news-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.825rem;
  font-weight: 600;
  color: var(--accent);
  margin-top: 14px;
}
.news-card-link:hover { gap: 10px; }

/* ── OPSEC Section ── */
.opsec-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.opsec-list { list-style: none; display: flex; flex-direction: column; gap: 16px; }
.opsec-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 20px;
  background: var(--bg-card);
  border: 1px solid var(--accent-border);
  border-radius: var(--radius-md);
  transition: var(--transition);
}
.opsec-item:hover { border-color: rgba(57,255,136,0.35); background: var(--bg-card-hover); }
.opsec-icon {
  width: 40px;
  height: 40px;
  background: var(--accent-dim);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.opsec-text h4 { font-size: 0.95rem; font-weight: 600; margin-bottom: 4px; }
.opsec-text p { font-size: 0.825rem; color: var(--text-secondary); }

/* ── FAQ ── */
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--accent-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}
.faq-item.open { border-color: rgba(57,255,136,0.4); }
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  background: transparent;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  gap: 16px;
  transition: var(--transition);
}
.faq-question:hover { color: var(--accent); }
.faq-chevron {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--accent);
  transition: var(--transition);
}
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-answer {
  display: none;
  padding: 0 24px 20px;
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
  border-top: 1px solid var(--border-subtle);
  padding-top: 16px;
}
.faq-item.open .faq-answer { display: block; }

/* ── Harm Reduction ── */
.harm-warning {
  background: rgba(255, 160, 60, 0.08);
  border: 1px solid rgba(255, 160, 60, 0.25);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 32px;
}
.harm-warning-icon { font-size: 1.5rem; flex-shrink: 0; }
.harm-warning p { color: rgba(255, 200, 120, 0.9); font-size: 0.9rem; }

/* ── Phishing Protection ── */
.phish-alert {
  background: rgba(255, 60, 60, 0.07);
  border: 1px solid rgba(255, 80, 80, 0.22);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  margin-bottom: 32px;
}

/* ── Info boxes ── */
.info-box {
  background: var(--accent-dim);
  border: 1px solid var(--accent-border);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  margin: 24px 0;
}
.info-box p { color: var(--text-primary); font-size: 0.9rem; }
.warning-box {
  background: rgba(255, 200, 60, 0.06);
  border: 1px solid rgba(255, 200, 60, 0.2);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  margin: 24px 0;
}
.warning-box p { color: rgba(255, 220, 120, 0.9); font-size: 0.9rem; }

/* ── Onion Link Tab ── */
.onion-tab {
  background: var(--bg-card);
  border: 1px solid var(--accent-border);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  position: relative;
}
.onion-link-text {
  font-family: var(--font-mono);
  font-size: 0.875rem;
  color: var(--accent);
  word-break: break-all;
  line-height: 1.6;
  padding: 16px 20px;
  background: rgba(0,0,0,0.4);
  border: 1px solid var(--accent-border);
  border-radius: var(--radius-md);
  margin: 16px 0;
  cursor: pointer;
  transition: var(--transition);
  user-select: all;
}
.onion-link-text:hover {
  background: rgba(57,255,136,0.05);
  border-color: var(--accent);
}
.copy-notice {
  font-size: 0.78rem;
  color: var(--accent);
  opacity: 0;
  transition: var(--transition);
  font-family: var(--font-mono);
}
.copy-notice.show { opacity: 1; }

/* ── PGP Block ── */
.pgp-block {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--text-secondary);
  background: rgba(0,0,0,0.5);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 20px;
  overflow-x: auto;
  white-space: pre;
  line-height: 1.5;
  max-height: 280px;
  overflow-y: auto;
}

/* ── Market Stats ── */
.stats-bar-container { margin: 24px 0; }
.stats-bar-label {
  display: flex;
  justify-content: space-between;
  font-size: 0.825rem;
  color: var(--text-secondary);
  margin-bottom: 6px;
}
.stats-bar-track {
  height: 8px;
  background: rgba(255,255,255,0.06);
  border-radius: 999px;
  overflow: hidden;
}
.stats-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--accent), var(--accent-alt));
  border-radius: 999px;
  transition: width 1.2s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 0 12px var(--accent-glow);
}
.stat-circle-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}
.stat-circle {
  padding: 24px 16px;
  background: var(--bg-card);
  border: 1px solid var(--accent-border);
  border-radius: var(--radius-lg);
}
.stat-circle-num {
  font-family: var(--font-mono);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-circle-label { font-size: 0.78rem; color: var(--text-muted); }

/* ── Tab System ── */
.tabs {
  display: flex;
  gap: 4px;
  border-bottom: 1px solid var(--border-subtle);
  margin-bottom: 28px;
}
.tab-btn {
  padding: 10px 20px;
  background: transparent;
  border: none;
  border-bottom: 2px solid transparent;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition);
  margin-bottom: -1px;
  white-space: nowrap;
}
.tab-btn.active {
  color: var(--accent);
  border-bottom-color: var(--accent);
}
.tab-btn:hover:not(.active) { color: var(--text-secondary); }
.tab-panel { display: none; }
.tab-panel.active { display: block; }

/* ── Breadcrumb ── */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 0.775rem;
  color: var(--text-muted);
  margin-bottom: 32px;
}
.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb-sep { color: var(--text-muted); opacity: 0.4; }
.breadcrumb .current { color: var(--accent); }

/* ── Page Hero (inner pages) ── */
.page-hero {
  padding-top: calc(var(--nav-height) + 72px);
  padding-bottom: 64px;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-border), transparent);
}
.page-hero-label {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 14px;
}
.page-hero h1 { margin-bottom: 18px; }
.page-hero p { font-size: 1.05rem; color: var(--text-secondary); max-width: 640px; }

/* ── Content Prose ── */
.prose { max-width: 820px; }
.prose h2 { margin: 48px 0 18px; font-size: 1.7rem; }
.prose h3 { margin: 36px 0 14px; font-size: 1.25rem; }
.prose p { margin-bottom: 18px; }
.prose ul, .prose ol {
  margin: 16px 0 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.prose ul li { list-style: none; position: relative; padding-left: 20px; color: var(--text-secondary); font-size: 0.95rem; }
.prose ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
}
.prose ol li { list-style: decimal; color: var(--text-secondary); font-size: 0.95rem; }
.prose a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }
.prose a:hover { color: var(--accent-alt); }
.prose blockquote {
  border-left: 3px solid var(--accent);
  padding: 12px 20px;
  margin: 24px 0;
  background: var(--accent-dim);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}
.prose blockquote p { color: var(--text-primary); margin: 0; }
.prose code {
  font-family: var(--font-mono);
  font-size: 0.85em;
  background: rgba(57,255,136,0.08);
  border: 1px solid var(--accent-border);
  border-radius: 4px;
  padding: 2px 6px;
  color: var(--accent);
}
.prose pre {
  background: rgba(0,0,0,0.5);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 20px;
  overflow-x: auto;
  margin: 24px 0;
}
.prose pre code { background: none; border: none; padding: 0; font-size: 0.85rem; }
.prose table { width: 100%; border-collapse: collapse; margin: 24px 0; }
.prose th, .prose td { padding: 12px 16px; border: 1px solid var(--border-subtle); font-size: 0.875rem; }
.prose th { background: var(--bg-card); color: var(--accent); font-weight: 600; text-align: left; }
.prose td { color: var(--text-secondary); }

/* ── Divider ── */
.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-border), transparent);
  margin: 64px 0;
}
.divider-glow { box-shadow: 0 0 20px var(--accent-glow); }

/* ── List with checks ── */
.check-list { display: flex; flex-direction: column; gap: 10px; }
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--text-secondary);
}
.check-list li::before {
  content: '✓';
  color: var(--accent);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}
.x-list { display: flex; flex-direction: column; gap: 10px; }
.x-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9rem;
  color: rgba(255, 100, 100, 0.8);
}
.x-list li::before { content: '✗'; flex-shrink: 0; margin-top: 1px; }

/* ── Trust Indicators ── */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.trust-item {
  padding: 22px;
  background: var(--bg-card);
  border: 1px solid var(--accent-border);
  border-radius: var(--radius-md);
  text-align: center;
}
.trust-icon { font-size: 1.8rem; margin-bottom: 10px; }
.trust-label { font-size: 0.825rem; color: var(--text-secondary); }
.trust-value {
  font-family: var(--font-mono);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--accent);
  margin: 4px 0;
}

/* ── Footer ── */
.footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-subtle);
  padding: 56px 0 32px;
  position: relative;
  overflow: hidden;
}
.footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-border), transparent);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer-brand {}
.footer-logo { margin-bottom: 16px; }
.footer-logo-text {
  font-family: var(--font-mono);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--accent);
}
.footer-desc { font-size: 0.875rem; color: var(--text-muted); line-height: 1.65; margin-bottom: 20px; }
.footer-col h5 {
  font-size: 0.825rem;
  font-weight: 600;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}
.footer-links { display: flex; flex-direction: column; gap: 8px; }
.footer-links a {
  font-size: 0.875rem;
  color: var(--text-muted);
  transition: var(--transition);
}
.footer-links a:hover { color: var(--accent); }
.footer-bottom {
  padding-top: 28px;
  border-top: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-disclaimer {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 580px;
}
.footer-disclaimer strong { color: rgba(255,200,80,0.8); }
.footer-meta {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--text-muted);
  text-align: right;
}

/* ── Animations ── */
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.4); }
}
@keyframes glow-pulse {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}
@keyframes spin-slow { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes shimmer {
  from { background-position: -200% center; }
  to { background-position: 200% center; }
}

/* Scroll Fade-In */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.4,0,0.2,1), transform 0.7s cubic-bezier(0.4,0,0.2,1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ── Highlight / Badge ── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 10px;
  border-radius: var(--radius-xl);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}
.badge-green { background: var(--accent-dim); color: var(--accent); border: 1px solid var(--accent-border); }
.badge-yellow { background: rgba(255,200,60,0.1); color: rgba(255,200,80,0.9); border: 1px solid rgba(255,200,60,0.2); }
.badge-red { background: rgba(255,60,60,0.1); color: rgba(255,100,100,0.9); border: 1px solid rgba(255,60,60,0.2); }

/* ── Outbound Link ── */
.outbound-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--accent);
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.outbound-link::after { content: '↗'; font-size: 0.8em; }

/* ── Step List ── */
.step-list { display: flex; flex-direction: column; gap: 20px; }
.step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.step-num {
  width: 36px;
  height: 36px;
  background: var(--accent-dim);
  border: 1px solid var(--accent-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--accent);
  flex-shrink: 0;
}
.step-body h4 { font-size: 0.95rem; font-weight: 600; margin-bottom: 6px; }
.step-body p { font-size: 0.875rem; color: var(--text-secondary); }

/* ── Two-Column Layout ── */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.two-col-wide {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  align-items: start;
}

/* ── Donut Chart ── */
.donut-chart-container {
  display: flex;
  align-items: center;
  gap: 32px;
}
.donut-svg { flex-shrink: 0; }
.donut-legend { flex: 1; }
.legend-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 0.85rem;
  color: var(--text-secondary);
}
.legend-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}

/* ── Responsive ── */
@media (max-width: 1100px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .news-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-stats { gap: 20px; }
}
@media (max-width: 860px) {
  .hero-content { grid-template-columns: 1fr; gap: 40px; }
  .hero-right { display: none; }
  .grid-2, .two-col, .two-col-wide, .opsec-grid { grid-template-columns: 1fr; gap: 28px; }
  .coin-cards { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .stat-circle-grid { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
}
@media (max-width: 640px) {
  :root { --nav-height: 60px; }
  .section { padding: 64px 0; }
  .section-lg { padding: 80px 0; }
  .features-grid { grid-template-columns: 1fr; }
  .news-grid { grid-template-columns: 1fr; }
  .hero { padding-top: calc(var(--nav-height) + 40px); }
  .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .trust-grid, .stat-circle-grid { grid-template-columns: 1fr; }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }
}

/* ── Utility scrollbar ── */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: var(--bg-primary); }
::-webkit-scrollbar-thumb { background: var(--accent-border); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--accent); }

/* ── Selection ── */
::selection { background: rgba(57,255,136,0.25); color: var(--text-primary); }

/* ── Focus ── */
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }

/* ── Rotation Highlight ── */
.rotating-fact {
  background: var(--bg-card);
  border: 1px solid var(--accent-border);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  transition: opacity 0.5s ease;
}
.rotating-fact.fade { opacity: 0; }
