/* ===================================================
   TorZon Market — Main Stylesheet
   torzon1market.net
=================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

/* ===== CSS VARIABLES ===== */
:root {
  --grad-start: #2F80ED;
  --grad-mid: #3A8DFF;
  --grad-end: #56CCF2;
  --accent-1: #00C2FF;
  --accent-2: #4FACFE;
  --bg-white: #FFFFFF;
  --bg-light: #F7F9FC;
  --bg-dark: #1A1A2E;
  --text-primary: #1A1A1A;
  --text-secondary: #6B7280;
  --shadow-soft: 0 10px 30px rgba(0,0,0,0.05);
  --shadow-medium: 0 20px 40px rgba(0,0,0,0.10);
  --shadow-card: 0 4px 20px rgba(47,128,237,0.08);
  --radius-card: 16px;
  --radius-btn: 999px;
  --transition: all 0.3s ease;
  --hero-gradient: linear-gradient(135deg, #2F80ED 0%, #3A8DFF 55%, #56CCF2 100%);
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text-primary);
  background: var(--bg-light);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
ul, ol { list-style: none; }

/* ===== UTILITY ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.text-center { text-align: center; }
.text-white { color: #fff; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* ===== HEADER ===== */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(30, 80, 180, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.header-inner {
  max-width: 1260px; margin: 0 auto; padding: 0 28px;
  display: flex; align-items: center; justify-content: space-between;
  height: 72px; gap: 20px;
}
.logo { display: flex; align-items: center; flex-shrink: 0; }
.logo img { height: 48px; width: auto; }
.nav-links {
  display: flex; gap: 28px; align-items: center;
}
.nav-links a {
  color: rgba(255,255,255,0.88); text-decoration: none;
  font-size: 0.9rem; font-weight: 500; transition: var(--transition);
  white-space: nowrap;
}
.nav-links a:hover, .nav-links a.active { color: #fff; }
.btn-login {
  background: transparent; border: 1.5px solid rgba(255,255,255,0.7);
  color: white; padding: 8px 22px; border-radius: var(--radius-btn);
  text-decoration: none; font-size: 0.875rem; font-weight: 600;
  transition: var(--transition); white-space: nowrap; flex-shrink: 0;
}
.btn-login:hover { background: rgba(255,255,255,0.15); border-color: white; }
.mobile-menu-btn {
  display: none; background: none; border: none;
  color: white; font-size: 1.4rem; cursor: pointer; padding: 4px;
}

/* ===== HERO ===== */
.hero {
  background: var(--hero-gradient);
  padding: 130px 24px 0;
  position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; top: -30%; right: -15%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(255,255,255,0.07) 0%, transparent 70%);
  border-radius: 50%; pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute; bottom: 40%; left: -10%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(86,204,242,0.12) 0%, transparent 70%);
  border-radius: 50%; pointer-events: none;
}
.hero-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
  position: relative; z-index: 1;
}
.hero-image { order: -1; }
.hero-image img {
  width: 100%; border-radius: 14px;
  box-shadow: 0 30px 70px rgba(0,0,0,0.25);
}
.hero-content { color: white; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.3);
  color: white; padding: 6px 16px; border-radius: 999px;
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.06em;
  text-transform: uppercase; margin-bottom: 20px;
}
.hero-badge::before { content: '●'; color: #56CCF2; font-size: 0.6rem; }
.hero h1 {
  font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 800;
  line-height: 1.15; margin-bottom: 20px; letter-spacing: -0.02em;
}
.hero-sub {
  font-size: 1.05rem; color: rgba(255,255,255,0.85);
  margin-bottom: 36px; line-height: 1.75; max-width: 480px;
}
.hero-cta-group { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stats {
  display: flex; gap: 32px; margin-top: 40px; padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.2);
}
.hero-stat-num { font-size: 1.6rem; font-weight: 800; color: white; }
.hero-stat-lbl { font-size: 0.8rem; color: rgba(255,255,255,0.7); font-weight: 500; }

/* ===== WAVE DIVIDERS ===== */
.wave-bottom { display: block; width: 100%; margin-top: -2px; }
.wave-bottom svg { display: block; width: 100%; height: 60px; }

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: white; color: var(--grad-start);
  padding: 13px 30px; border-radius: var(--radius-btn);
  text-decoration: none; font-weight: 700; font-size: 0.95rem;
  transition: var(--transition); box-shadow: 0 4px 20px rgba(0,0,0,0.12);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(0,0,0,0.18); }
.btn-outline-white {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; border: 1.5px solid rgba(255,255,255,0.7);
  color: white; padding: 13px 28px; border-radius: var(--radius-btn);
  text-decoration: none; font-weight: 500; font-size: 0.95rem;
  transition: var(--transition);
}
.btn-outline-white:hover { background: rgba(255,255,255,0.12); border-color: white; }
.btn-blue {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--hero-gradient); color: white;
  padding: 13px 30px; border-radius: var(--radius-btn);
  text-decoration: none; font-weight: 600; font-size: 0.95rem;
  transition: var(--transition); box-shadow: 0 4px 16px rgba(47,128,237,0.35);
}
.btn-blue:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(47,128,237,0.5); }
.btn-outline-blue {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; border: 1.5px solid var(--grad-start);
  color: var(--grad-start); padding: 11px 26px; border-radius: var(--radius-btn);
  text-decoration: none; font-weight: 600; font-size: 0.9rem;
  transition: var(--transition);
}
.btn-outline-blue:hover { background: var(--grad-start); color: white; }

/* ===== SECTION BASE ===== */
.section { padding: 100px 24px; }
.section-sm { padding: 60px 24px; }
.section-light { background: var(--bg-white); }
.section-soft { background: var(--bg-light); }
.section-gradient {
  background: var(--hero-gradient); color: white;
}
.section-dark { background: #0f1629; color: white; }

.section-tag {
  display: inline-block;
  background: rgba(47,128,237,0.08); color: var(--grad-start);
  padding: 5px 14px; border-radius: 999px;
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; margin-bottom: 12px;
}
.section-gradient .section-tag { background: rgba(255,255,255,0.18); color: white; }
.section-dark .section-tag { background: rgba(86,204,242,0.15); color: var(--accent-1); }

h2 {
  font-size: clamp(1.7rem, 3vw, 2.5rem); font-weight: 800;
  line-height: 1.18; letter-spacing: -0.02em; margin-bottom: 14px;
}
h3 { font-size: 1.2rem; font-weight: 700; line-height: 1.3; }
.section-sub {
  font-size: 1.05rem; color: var(--text-secondary);
  max-width: 580px; margin: 0 auto 56px; line-height: 1.7;
}
.section-gradient .section-sub, .section-dark .section-sub { color: rgba(255,255,255,0.78); }

/* ===== FEATURE GRID ===== */
.features-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px;
}
.features-grid-4 {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px;
}
.feature-card {
  background: white; border-radius: var(--radius-card);
  padding: 32px 28px; box-shadow: var(--shadow-soft);
  transition: var(--transition); border: 1px solid rgba(0,0,0,0.04);
}
.feature-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-medium); }
.feature-icon {
  width: 56px; height: 56px; border-radius: 14px;
  overflow: hidden; margin-bottom: 18px;
  background: linear-gradient(135deg, rgba(47,128,237,0.08), rgba(86,204,242,0.08));
  display: flex; align-items: center; justify-content: center;
}
.feature-icon img { width: 48px; height: 48px; object-fit: contain; }
.feature-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; }
.feature-card p { color: var(--text-secondary); font-size: 0.92rem; line-height: 1.65; }

/* ===== NEWS GRID ===== */
.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.news-grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.news-card {
  background: white; border-radius: var(--radius-card);
  overflow: hidden; box-shadow: var(--shadow-soft);
  transition: var(--transition); border: 1px solid rgba(0,0,0,0.04);
  display: flex; flex-direction: column;
}
.news-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-medium); }
.news-card-thumb { width: 100%; height: 190px; overflow: hidden; }
.news-card-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.news-card:hover .news-card-thumb img { transform: scale(1.04); }
.news-card-body { padding: 22px; flex: 1; display: flex; flex-direction: column; }
.news-date { font-size: 0.78rem; color: var(--text-secondary); margin-bottom: 8px; font-weight: 500; }
.news-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 10px; line-height: 1.4; }
.news-card p { font-size: 0.88rem; color: var(--text-secondary); line-height: 1.6; flex: 1; }
.news-card .read-more {
  display: inline-flex; align-items: center; gap: 5px;
  margin-top: 16px; color: var(--grad-start); font-size: 0.85rem;
  font-weight: 600; text-decoration: none; transition: var(--transition);
}
.news-card .read-more:hover { gap: 8px; }
.news-tag {
  display: inline-block; background: rgba(47,128,237,0.08); color: var(--grad-start);
  padding: 3px 10px; border-radius: 999px; font-size: 0.72rem; font-weight: 600;
  margin-bottom: 10px; text-transform: uppercase; letter-spacing: 0.05em;
}

/* ===== CRYPTO SECTION ===== */
.crypto-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-top: 40px; }
.crypto-card {
  background: white; border-radius: var(--radius-card);
  padding: 36px; box-shadow: var(--shadow-soft); position: relative;
  overflow: hidden; border-top: 4px solid transparent;
}
.crypto-card.xmr { border-top-color: #E57C28; }
.crypto-card.btc { border-top-color: #F7931A; }
.crypto-card::before {
  content: ''; position: absolute; top: 0; right: 0;
  width: 120px; height: 120px; border-radius: 50%;
  background: radial-gradient(circle, rgba(47,128,237,0.04), transparent);
}
.crypto-logo { width: 56px; height: 56px; margin-bottom: 18px; }
.crypto-card h3 { font-size: 1.4rem; margin-bottom: 12px; }
.crypto-card p { color: var(--text-secondary); font-size: 0.94rem; line-height: 1.7; margin-bottom: 16px; }
.crypto-pill {
  display: inline-block; background: rgba(47,128,237,0.07); color: var(--grad-start);
  padding: 4px 12px; border-radius: 999px; font-size: 0.78rem; font-weight: 600;
  margin-right: 6px; margin-bottom: 6px;
}

/* ===== HARM REDUCTION ===== */
.harm-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.harm-item {
  background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.25);
  border-radius: 14px; padding: 22px 24px;
  display: flex; gap: 16px; align-items: flex-start;
  transition: var(--transition);
}
.harm-item:hover { background: rgba(255,255,255,0.18); }
.harm-num {
  width: 34px; height: 34px; background: rgba(255,255,255,0.22);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 0.85rem; flex-shrink: 0; color: white;
}
.harm-text h4 { font-size: 0.95rem; font-weight: 700; color: white; margin-bottom: 4px; }
.harm-text p { font-size: 0.87rem; color: rgba(255,255,255,0.80); line-height: 1.55; }

/* ===== OPSEC SECTION ===== */
.opsec-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.opsec-card {
  background: white; border-radius: var(--radius-card);
  padding: 30px; box-shadow: var(--shadow-soft);
  border-left: 4px solid var(--grad-start);
}
.opsec-card h3 { color: var(--grad-start); font-size: 1rem; margin-bottom: 14px; }
.opsec-card ul { padding: 0; }
.opsec-card ul li {
  padding: 8px 0 8px 20px; position: relative;
  color: var(--text-secondary); font-size: 0.9rem;
  border-bottom: 1px solid #f3f4f6;
}
.opsec-card ul li:last-child { border-bottom: none; }
.opsec-card ul li::before { content: '→'; position: absolute; left: 0; color: var(--accent-2); }

/* ===== FAQ SECTION ===== */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item {
  background: white; border-radius: 14px; margin-bottom: 10px;
  box-shadow: var(--shadow-soft); overflow: hidden;
  border: 1px solid rgba(0,0,0,0.04);
}
.faq-question {
  padding: 20px 24px; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  font-weight: 600; font-size: 0.95rem; color: var(--text-primary);
  user-select: none; transition: var(--transition); gap: 12px;
}
.faq-question:hover { color: var(--grad-start); }
.faq-answer {
  padding: 0 24px; max-height: 0; overflow: hidden;
  transition: max-height 0.35s ease, padding 0.3s ease;
  color: var(--text-secondary); font-size: 0.92rem; line-height: 1.75;
}
.faq-item.open .faq-answer { max-height: 600px; padding: 0 24px 22px; }
.faq-chevron {
  width: 20px; height: 20px; flex-shrink: 0;
  transition: transform 0.3s ease; color: var(--text-secondary);
}
.faq-item.open .faq-chevron { transform: rotate(180deg); }

/* ===== PHISHING SECTION ===== */
.phish-checklist { max-width: 760px; margin: 0 auto; }
.phish-item {
  display: flex; gap: 16px; align-items: flex-start;
  background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.2);
  border-radius: 12px; padding: 18px 22px; margin-bottom: 12px;
}
.phish-icon {
  width: 36px; height: 36px; background: rgba(255,255,255,0.2);
  border-radius: 10px; display: flex; align-items: center;
  justify-content: center; flex-shrink: 0; font-size: 1rem;
}
.phish-text h4 { color: white; font-size: 0.92rem; font-weight: 700; margin-bottom: 3px; }
.phish-text p { color: rgba(255,255,255,0.78); font-size: 0.86rem; line-height: 1.5; }

/* ===== FOOTER ===== */
.site-footer { background: #0f1629; color: rgba(255,255,255,0.65); padding: 70px 24px 30px; }
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px; margin-bottom: 50px;
}
.footer-brand img { height: 38px; margin-bottom: 16px; }
.footer-brand p { font-size: 0.875rem; line-height: 1.7; max-width: 280px; }
.footer-nav h4 {
  color: white; font-size: 0.8rem; font-weight: 700; margin-bottom: 16px;
  text-transform: uppercase; letter-spacing: 0.08em;
}
.footer-nav li { margin-bottom: 10px; }
.footer-nav a {
  color: rgba(255,255,255,0.55); text-decoration: none;
  font-size: 0.875rem; transition: var(--transition);
}
.footer-nav a:hover { color: white; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 26px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 16px;
}
.disclaimer {
  font-size: 0.78rem; color: rgba(255,255,255,0.38);
  max-width: 700px; line-height: 1.6;
}
.footer-copy { font-size: 0.8rem; color: rgba(255,255,255,0.3); }

/* ===== ONION LINKS (lgn page) ===== */
.onion-tab-system { max-width: 900px; margin: 0 auto; }
.tab-nav {
  display: flex; gap: 0; border-bottom: 2px solid rgba(255,255,255,0.15);
  margin-bottom: 32px; flex-wrap: wrap;
}
.tab-btn {
  padding: 12px 24px; background: none; border: none; cursor: pointer;
  color: rgba(255,255,255,0.6); font-size: 0.9rem; font-weight: 600;
  transition: var(--transition); border-bottom: 2px solid transparent;
  margin-bottom: -2px; white-space: nowrap;
}
.tab-btn.active { color: white; border-bottom-color: white; }
.tab-btn:hover { color: rgba(255,255,255,0.9); }
.tab-panel { display: none; }
.tab-panel.active { display: block; }

.onion-card {
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.18);
  border-radius: 14px; padding: 22px 24px; margin-bottom: 14px;
  display: flex; align-items: flex-start; gap: 16px; flex-wrap: wrap;
}
.onion-label { font-size: 0.78rem; font-weight: 700; color: var(--accent-1); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 6px; }
.onion-url {
  font-family: 'Courier New', monospace; font-size: 0.88rem; color: white;
  word-break: break-all; flex: 1; line-height: 1.6;
}
.btn-copy {
  flex-shrink: 0; background: rgba(255,255,255,0.15); border: 1px solid rgba(255,255,255,0.3);
  color: white; padding: 8px 18px; border-radius: 999px; cursor: pointer;
  font-size: 0.82rem; font-weight: 600; transition: var(--transition);
}
.btn-copy:hover { background: rgba(255,255,255,0.25); }
.btn-copy.copied { background: rgba(86,204,242,0.3); border-color: var(--accent-1); }

.pgp-block {
  background: #0a0f1e; border: 1px solid rgba(86,204,242,0.3);
  border-radius: 12px; padding: 24px;
  font-family: 'Courier New', monospace; font-size: 0.78rem;
  color: rgba(86,204,242,0.9); line-height: 1.7; overflow-x: auto;
  white-space: pre-wrap; word-break: break-all;
}

/* ===== STATS / CHARTS ===== */
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 40px; }
.stat-card {
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15);
  border-radius: 14px; padding: 24px; text-align: center;
}
.stat-num { font-size: 2rem; font-weight: 800; color: white; margin-bottom: 4px; }
.stat-lbl { font-size: 0.8rem; color: rgba(255,255,255,0.6); font-weight: 500; }

.bar-chart { margin-top: 24px; }
.bar-row { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.bar-lbl { width: 140px; font-size: 0.82rem; color: rgba(255,255,255,0.75); flex-shrink: 0; }
.bar-track { flex: 1; height: 8px; background: rgba(255,255,255,0.1); border-radius: 4px; overflow: hidden; }
.bar-fill { height: 100%; background: linear-gradient(90deg, #2F80ED, #56CCF2); border-radius: 4px; transition: width 1s ease; }
.bar-val { width: 50px; font-size: 0.82rem; color: rgba(255,255,255,0.7); text-align: right; flex-shrink: 0; }

/* ===== TRUST INDICATORS ===== */
.trust-badges { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; margin: 32px 0; }
.trust-badge {
  display: flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2);
  border-radius: 999px; padding: 10px 20px;
}
.trust-badge span { font-size: 0.85rem; color: white; font-weight: 600; }

/* ===== BREADCRUMBS ===== */
.breadcrumb-nav {
  background: var(--bg-light); border-bottom: 1px solid rgba(0,0,0,0.06);
  padding: 12px 24px; margin-top: 72px;
}
.breadcrumb-inner { max-width: 1200px; margin: 0 auto; }
.breadcrumb {
  display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
  font-size: 0.82rem; color: var(--text-secondary);
}
.breadcrumb a { color: var(--grad-start); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb-sep { color: var(--text-secondary); opacity: 0.5; }

/* ===== ARTICLE PAGE ===== */
.article-page {}
.article-hero {
  background: var(--hero-gradient);
  padding: 100px 24px 60px;
  position: relative;
}
.article-hero-inner {
  max-width: 820px; margin: 0 auto;
}
.article-hero h1 {
  font-size: clamp(1.6rem, 4vw, 2.5rem);
  color: #fff; margin: 12px 0 16px; line-height: 1.25;
}
.article-meta {
  display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
}
.article-meta time { color: rgba(255,255,255,0.8); font-size: 0.9rem; font-weight: 500; }
.article-reading { color: rgba(255,255,255,0.65); font-size: 0.88rem; }
.article-body {
  padding: 48px 24px 80px;
}
.article-featured-img {
  max-width: 820px; margin: 0 auto 36px;
}
.article-featured-img img {
  width: 100%; border-radius: 16px;
  box-shadow: var(--shadow-medium); object-fit: cover;
}
.article-content {
  max-width: 820px; margin: 0 auto;
}
.article-footer-nav {
  max-width: 820px; margin: 40px auto 0;
  padding-top: 24px; border-top: 1px solid rgba(0,0,0,0.08);
  display: flex; gap: 20px; flex-wrap: wrap; align-items: center;
}
.article-footer-nav .tag-label { color: var(--text-secondary); font-size: 0.9rem; }
.article-footer-nav .article-related-links {
  color: var(--text-secondary); font-size: 0.9rem;
}
.article-footer-nav .article-related-links a {
  color: var(--grad-start); text-decoration: none;
}
.article-footer-nav .article-related-links a:hover { text-decoration: underline; }

.news-nav-card {
  display: flex; flex-direction: column; gap: 6px;
  padding: 16px 20px; border-radius: 12px;
  background: white; border: 1px solid rgba(0,0,0,0.08);
  box-shadow: var(--shadow-soft); text-decoration: none;
  flex: 1; min-width: 220px; max-width: 380px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.news-nav-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-medium); }
.nav-dir { font-size: 0.75rem; color: var(--grad-start); font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; }
.nav-title { font-size: 0.92rem; color: var(--text-primary); font-weight: 600; line-height: 1.4; }

.article-main { padding: 40px 24px 100px; }
.article-layout {
  max-width: 820px; margin: 0 auto;
}
.article-date { font-size: 0.83rem; color: var(--text-secondary); font-weight: 500; }
.article-cat {
  background: rgba(47,128,237,0.08); color: var(--grad-start);
  padding: 3px 12px; border-radius: 999px; font-size: 0.75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.06em;
}
.article-hero-img {
  width: 100%; border-radius: 16px; margin: 28px 0;
  box-shadow: var(--shadow-medium); object-fit: cover; max-height: 400px;
}
.article-content h2 { font-size: 1.6rem; margin: 36px 0 14px; }
.article-content h3 { font-size: 1.2rem; margin: 28px 0 12px; color: var(--text-primary); }
.article-content p { color: var(--text-secondary); line-height: 1.8; margin-bottom: 18px; font-size: 0.97rem; }
.article-content ul, .article-content ol { padding-left: 24px; margin-bottom: 18px; }
.article-content ul { list-style: disc; }
.article-content ol { list-style: decimal; }
.article-content li { color: var(--text-secondary); font-size: 0.96rem; line-height: 1.75; margin-bottom: 8px; }
.article-content a { color: var(--grad-start); text-decoration: underline; }
.article-content a:hover { color: var(--grad-mid); }
.article-content blockquote {
  border-left: 4px solid var(--grad-start); margin: 24px 0;
  padding: 16px 20px; background: rgba(47,128,237,0.04); border-radius: 0 10px 10px 0;
  color: var(--text-secondary); font-style: italic;
}
.info-box {
  background: rgba(47,128,237,0.06); border: 1px solid rgba(47,128,237,0.2);
  border-radius: 12px; padding: 18px 20px; margin: 24px 0;
}
.warn-box {
  background: rgba(255,165,0,0.06); border: 1px solid rgba(255,165,0,0.25);
  border-radius: 12px; padding: 18px 20px; margin: 24px 0;
}
.danger-box {
  background: rgba(239,68,68,0.06); border: 1px solid rgba(239,68,68,0.2);
  border-radius: 12px; padding: 18px 20px; margin: 24px 0;
}
.info-box h4, .warn-box h4, .danger-box h4 { font-size: 0.9rem; font-weight: 700; margin-bottom: 6px; }
.info-box h4 { color: var(--grad-start); }
.warn-box h4 { color: #d97706; }
.danger-box h4 { color: #dc2626; }
.info-box p, .warn-box p, .danger-box p { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.6; margin: 0; }

/* ===== STEP GUIDE ===== */
.step-guide { counter-reset: step-counter; }
.step-item {
  display: flex; gap: 20px; align-items: flex-start;
  padding: 20px 0; border-bottom: 1px solid rgba(0,0,0,0.06);
}
.step-item:last-child { border-bottom: none; }
.step-num {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--hero-gradient); color: white;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 1rem; flex-shrink: 0;
}
.step-text h4 { font-weight: 700; margin-bottom: 6px; }
.step-text p { color: var(--text-secondary); font-size: 0.93rem; line-height: 1.65; margin: 0; }

/* ===== RESOURCE LINKS ===== */
.resource-card {
  background: white; border-radius: 14px; padding: 20px 24px;
  box-shadow: var(--shadow-soft); margin-bottom: 14px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  text-decoration: none; transition: var(--transition);
  border: 1px solid rgba(0,0,0,0.04);
}
.resource-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-medium); }
.resource-info h4 { font-size: 0.95rem; font-weight: 700; color: var(--text-primary); margin-bottom: 3px; }
.resource-info p { font-size: 0.85rem; color: var(--text-secondary); margin: 0; }
.resource-arrow { color: var(--grad-start); font-size: 1.2rem; flex-shrink: 0; }

/* ===== DRUG CARDS ===== */
.drug-card {
  background: white; border-radius: var(--radius-card);
  box-shadow: var(--shadow-soft); overflow: hidden;
  border: 1px solid rgba(0,0,0,0.04); margin-bottom: 20px;
}
.drug-card-header {
  padding: 20px 24px; background: linear-gradient(135deg, #2F80ED, #56CCF2);
  display: flex; align-items: center; justify-content: space-between;
}
.drug-card-header h3 { color: white; font-size: 1.1rem; }
.drug-risk-badge {
  background: rgba(255,255,255,0.2); color: white;
  padding: 4px 12px; border-radius: 999px; font-size: 0.75rem; font-weight: 700;
}
.drug-card-body { padding: 24px; }
.drug-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 10px; }
.drug-info-col h4 { font-size: 0.8rem; font-weight: 700; color: var(--grad-start); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 8px; }
.drug-info-col p, .drug-info-col li { font-size: 0.88rem; color: var(--text-secondary); line-height: 1.6; }

/* ===== PAGE SPECIFIC HERO VARIANTS ===== */
.page-hero {
  background: var(--hero-gradient); color: white;
  padding: 140px 24px 70px; text-align: center; position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(255,255,255,0.06) 0%, transparent 60%);
}
.page-hero-inner { position: relative; z-index: 1; max-width: 780px; margin: 0 auto; }
.page-hero h1 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 18px; font-weight: 800; }
.page-hero p { font-size: 1.1rem; color: rgba(255,255,255,0.85); line-height: 1.7; max-width: 600px; margin: 0 auto; }

/* ===== TABLE ===== */
.styled-table { width: 100%; border-collapse: collapse; background: white; border-radius: 12px; overflow: hidden; box-shadow: var(--shadow-soft); }
.styled-table th { background: linear-gradient(135deg, #2F80ED, #56CCF2); color: white; padding: 14px 18px; text-align: left; font-size: 0.85rem; font-weight: 700; }
.styled-table td { padding: 13px 18px; font-size: 0.88rem; color: var(--text-secondary); border-bottom: 1px solid #f3f4f6; }
.styled-table tr:last-child td { border-bottom: none; }
.styled-table tr:hover td { background: #f9fafb; }

/* ===== HIGHLIGHT BOX ===== */
.highlight-row { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; align-items: center; padding: 50px 0; }
.highlight-row.reverse { }
.highlight-row img { border-radius: 14px; box-shadow: var(--shadow-medium); }

/* ===== PAGINATION ===== */
.news-pagination { display: flex; gap: 8px; justify-content: center; margin-top: 48px; }
.page-num {
  width: 40px; height: 40px; border-radius: 10px; display: flex;
  align-items: center; justify-content: center; font-size: 0.9rem; font-weight: 600;
  background: white; color: var(--text-primary); cursor: pointer;
  border: 1px solid rgba(0,0,0,0.08); text-decoration: none; transition: var(--transition);
}
.page-num.active, .page-num:hover { background: var(--grad-start); color: white; border-color: var(--grad-start); }

/* ===== MOBILE NAV OVERLAY ===== */
.mobile-overlay {
  display: none; position: fixed; inset: 0; z-index: 999;
  background: rgba(20,60,160,0.97); flex-direction: column;
  align-items: center; justify-content: center; gap: 28px;
}
.mobile-overlay.open { display: flex; }
.mobile-overlay a {
  color: white; text-decoration: none; font-size: 1.3rem; font-weight: 700;
}
.mobile-close {
  position: absolute; top: 20px; right: 24px;
  background: none; border: none; color: white; font-size: 1.8rem; cursor: pointer;
}

/* ===== SECTION DIVIDER WAVE ===== */
.wave-divider { overflow: hidden; line-height: 0; }
.wave-divider svg { display: block; }

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.animate-up { animation: fadeInUp 0.6s ease forwards; }
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .features-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 36px; }
  .hero-image { order: 0; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .news-grid { grid-template-columns: repeat(2, 1fr); }
  .crypto-cards { grid-template-columns: 1fr; }
  .harm-grid { grid-template-columns: 1fr; }
  .opsec-grid { grid-template-columns: 1fr; }
  .drug-grid { grid-template-columns: 1fr; }
  .highlight-row { grid-template-columns: 1fr; }
  .hero-stats { gap: 20px; }
}
@media (max-width: 640px) {
  h2 { font-size: 1.75rem; }
  .hero h1 { font-size: 1.9rem; }
  .hero { padding: 110px 16px 0; }
  .section { padding: 70px 16px; }
  .features-grid { grid-template-columns: 1fr; }
  .news-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .nav-links { display: none; }
  .mobile-menu-btn { display: block; }
  .hero-stats { flex-wrap: wrap; }
  .hero-cta-group { flex-direction: column; }
  .hero-cta-group a { text-align: center; justify-content: center; }
  .tab-btn { padding: 10px 14px; font-size: 0.82rem; }
}
