/* ============================================================
   TORZON MARKET — DESIGN SYSTEM  (full rewrite, April 2026)
   Colors: outer #6FBEC4→#4FA3AD  |  card #0B2A33  |  accent #5EEAD4
   ============================================================ */

/* ── VARIABLES ─────────────────────────────────────────────── */
:root {
  --bg-outer: linear-gradient(135deg,#6FBEC4 0%,#4FA3AD 100%);
  --bg-card:  #0B2A33;
  --bg-alt:   #0E2F38;
  --bg-glass: rgba(255,255,255,.03);
  --cyan:     #5EEAD4;
  --mint:     #A7F3D0;
  --white:    #FFFFFF;
  --muted:    rgba(255,255,255,.6);
  --subtle:   rgba(255,255,255,.35);
  --border:   rgba(255,255,255,.08);
  --border-h: rgba(94,234,212,.3);
  --glow:     rgba(94,234,212,.15);
  --r-xl: 24px;
  --r-md: 12px;
  --r-sm:  8px;
  --shadow: 0 40px 80px rgba(0,0,0,.5);
  --f: 'Inter', system-ui, -apple-system, sans-serif;
}

/* ── RESET ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--f);
  background: var(--bg-outer);
  min-height: 100vh;
  color: var(--white);
  -webkit-font-smoothing: antialiased;
}
a { color: var(--cyan); text-decoration: none; transition: color .2s; }
a:hover { color: var(--mint); }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }

/* ── LAYOUT ─────────────────────────────────────────────────── */
.page-wrapper {
  max-width: 1280px;
  margin: 0 auto;
  padding: 20px;
}

/* the dark card that wraps the whole site */
.page-wrapper > * {
  background: var(--bg-card);
}

/* re-create the rounded card look on the whole page body */
.navbar { border-radius: var(--r-xl) var(--r-xl) 0 0; }
.site-footer { border-radius: 0 0 var(--r-xl) var(--r-xl); overflow: hidden; }

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ── NAVBAR ─────────────────────────────────────────────────── */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 40px;
  background: rgba(11,42,51,.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 200;
}

.navbar-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.navbar-logo img {
  height: 44px;
  width: auto;
  max-width: 180px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  flex: 1;
  justify-content: center;
}
.nav-links a {
  font-size: .875rem;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: .02em;
  transition: color .2s;
}
.nav-links a:hover,
.nav-links a[aria-current="page"] { color: var(--white); }

.navbar-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

/* burger — hidden on desktop */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  cursor: pointer;
  color: var(--white);
  padding: 0;
}
.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
  border-radius: 1px;
  transition: opacity .2s;
}

/* ── BUTTONS ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: 999px;
  font-family: var(--f);
  font-size: .875rem;
  font-weight: 600;
  letter-spacing: .02em;
  cursor: pointer;
  white-space: nowrap;
  transition: all .25s;
  border: none;
  text-decoration: none;
}
.btn-lg { padding: 14px 30px; font-size: 1rem; }

.btn-primary {
  background: linear-gradient(135deg,var(--cyan),var(--mint));
  color: #0B2A33;
}
.btn-primary:hover {
  background: linear-gradient(135deg,var(--mint),var(--cyan));
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(94,234,212,.35);
  color: #0B2A33;
}

.btn-outline {
  background: transparent;
  border: 1px solid rgba(255,255,255,.2);
  color: var(--white);
}
.btn-outline:hover {
  border-color: var(--cyan);
  color: var(--cyan);
  background: rgba(94,234,212,.05);
}

.btn-ghost {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--muted);
}
.btn-ghost:hover {
  border-color: var(--border-h);
  color: var(--white);
}

.btn-secondary {
  background: rgba(94,234,212,.1);
  border: 1px solid rgba(94,234,212,.25);
  color: var(--cyan);
}
.btn-secondary:hover {
  background: rgba(94,234,212,.18);
  color: var(--mint);
}

.btn-accent {
  background: rgba(255,102,0,.12);
  border: 1px solid rgba(255,102,0,.3);
  color: #FF8833;
}
.btn-accent:hover {
  background: rgba(255,102,0,.2);
  color: #FFAA66;
}

/* ── HERO ───────────────────────────────────────────────────── */
.hero {
  background: var(--bg-card);
  border-bottom: 1px solid var(--border);
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  padding: 80px 40px 60px;
  max-width: 1180px;
  margin: 0 auto;
  position: relative;
}

.hero-content::before {
  content: '';
  position: absolute;
  top: -80px;
  left: -60px;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(94,234,212,.07) 0%, transparent 65%);
  pointer-events: none;
}

.hero-text { position: relative; z-index: 1; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(94,234,212,.08);
  border: 1px solid rgba(94,234,212,.2);
  border-radius: 999px;
  padding: 7px 16px;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 22px;
}

.hero-headline {
  font-size: clamp(2.6rem,5vw,4.2rem);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -.02em;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.hero-headline .glow-text {
  background: linear-gradient(135deg,#fff 0%,var(--cyan) 55%,var(--mint) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 28px rgba(94,234,212,.4));
}
.hero-headline .accent-text {
  background: linear-gradient(135deg,var(--cyan) 0%,var(--mint) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 32px;
  max-width: 500px;
}
.hero-sub strong { color: var(--white); }

.hero-cta { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }

.play-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(11,42,51,.3);
  font-size: .6rem;
}

/* right side of hero: 3D object */
.hero-3d {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.chain-container {
  width: 280px;
  height: 280px;
  position: relative;
  animation: float 7s ease-in-out infinite;
  filter: drop-shadow(0 0 36px rgba(94,234,212,.38));
}
@keyframes float {
  0%,100% { transform: translateY(0) rotate(0deg); }
  40% { transform: translateY(-14px) rotate(2.5deg); }
  70% { transform: translateY(-6px) rotate(-2deg); }
}

.chain-link {
  position: absolute;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,.3);
  background: linear-gradient(145deg, rgba(255,255,255,.14), rgba(94,234,212,.07));
  box-shadow: inset 0 0 20px rgba(255,255,255,.1);
}
.chain-link-1 { width: 130px; height: 130px; top: 30px; left: 50%; transform: translateX(-50%) rotate(-8deg); }
.chain-link-2 { width: 105px; height: 105px; bottom: 40px; left: 16%; transform: rotate(14deg); }
.chain-link-3 { width: 95px;  height: 95px;  bottom: 50px; right: 14%; transform: rotate(-16deg); }

.chain-glow {
  position: absolute;
  inset: 12%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(94,234,212,.22) 0%, transparent 60%);
  pointer-events: none;
}

/* dashboard screenshot (full-width row below) */
.hero-dashboard {
  grid-column: 1 / -1;
  padding: 0 0 60px;
  max-width: 1180px;
  width: 100%;
}
.dashboard-img {
  width: 100%;
  max-width: 640px;
  height: auto;
  border-radius: var(--r-md);
  border: 1px solid var(--border);
  box-shadow: 0 24px 60px rgba(0,0,0,.5);
}
.dashboard-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  font-size: .8rem;
  color: var(--muted);
}
.badge-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 10px rgba(94,234,212,.7);
  animation: pulse 2.5s infinite;
}
@keyframes pulse {
  0%,100% { opacity: 1; }
  50% { opacity: .4; }
}

/* feature strip */
.feature-strip {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(255,255,255,.01);
  padding: 26px 40px;
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 16px;
  flex-wrap: wrap;
}
.feature-strip-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .83rem;
  font-weight: 500;
  color: var(--muted);
}
.feature-strip-item svg {
  width: 18px; height: 18px;
  color: var(--cyan);
  flex-shrink: 0;
}

/* ── SHARED SECTION STYLES ──────────────────────────────────── */
.market-info-section,
.opsec-section,
.phishing-section,
.crypto-section,
.harm-reduction-section,
.news-section,
.faq-section {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  padding: 76px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 52px;
}

.section-label {
  display: inline-block;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--cyan);
  background: rgba(94,234,212,.08);
  border: 1px solid rgba(94,234,212,.18);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 14px;
}
.danger-label {
  color: #fca5a5;
  background: rgba(239,68,68,.08);
  border-color: rgba(239,68,68,.2);
}

.section-header h2 {
  font-size: clamp(1.6rem,3vw,2.3rem);
  font-weight: 800;
  letter-spacing: -.02em;
  line-height: 1.15;
  margin-bottom: 14px;
  color: var(--white);
}

.section-desc {
  font-size: .95rem;
  color: var(--muted);
  line-height: 1.8;
  max-width: 820px;
  margin: 0 auto;
}
.section-desc strong { color: var(--white); }

.section-cta {
  text-align: center;
  margin-top: 44px;
}

/* ── DAILY FACT CARD ────────────────────────────────────────── */
.daily-fact-card {
  background: rgba(94,234,212,.05);
  border: 1px solid rgba(94,234,212,.18);
  border-radius: var(--r-md);
  padding: 18px 22px;
  margin-bottom: 40px;
}
.fact-label {
  display: block;
  font-size: .72rem;
  font-weight: 700;
  color: var(--mint);
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.daily-fact-card p {
  font-size: .9rem;
  color: var(--muted);
  line-height: 1.65;
}

/* ── FEATURES GRID ──────────────────────────────────────────── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.feature-card {
  background: var(--bg-glass);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 28px;
  transition: all .28s;
  position: relative;
  overflow: hidden;
}
.feature-card::after {
  content: '';
  position: absolute;
  inset: 0 0 auto 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(94,234,212,.25), transparent);
  opacity: 0;
  transition: opacity .3s;
}
.feature-card:hover {
  border-color: var(--border-h);
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(0,0,0,.3);
}
.feature-card:hover::after { opacity: 1; }

/* icon image inside feature card */
.feature-card > img:first-child {
  width: 52px;
  height: 52px;
  object-fit: contain;
  margin-bottom: 16px;
  padding: 8px;
  background: rgba(94,234,212,.08);
  border: 1px solid rgba(94,234,212,.12);
  border-radius: var(--r-sm);
}

.feature-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--white);
}
.feature-card p {
  font-size: .86rem;
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
}
.feature-link {
  display: inline-block;
  margin-top: 14px;
  font-size: .8rem;
  font-weight: 600;
  color: var(--cyan);
}
.feature-link:hover { color: var(--mint); }

/* ── OPSEC SECTION ──────────────────────────────────────────── */
.opsec-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.opsec-block {
  background: var(--bg-glass);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 28px;
}
.opsec-block h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}
.opsec-block p {
  font-size: .875rem;
  color: var(--muted);
  line-height: 1.75;
}

.opsec-list {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.opsec-list li {
  font-size: .86rem;
  color: var(--muted);
  line-height: 1.6;
  padding-left: 16px;
  position: relative;
}
.opsec-list li::before {
  content: '›';
  position: absolute;
  left: 0;
  color: var(--cyan);
  font-weight: 700;
}
.opsec-list--danger li::before {
  content: '✕';
  color: #f87171;
  font-size: .7rem;
  top: 2px;
}
.opsec-list strong { color: var(--white); }

/* ── PHISHING SECTION ───────────────────────────────────────── */
.phishing-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: start;
  background: rgba(239,68,68,.04);
  border: 1px solid rgba(239,68,68,.14);
  border-radius: var(--r-md);
  padding: 36px;
}

.phishing-text h2 {
  font-size: clamp(1.4rem,2.5vw,2rem);
  font-weight: 800;
  margin-bottom: 14px;
  letter-spacing: -.02em;
}
.phishing-text p {
  font-size: .9rem;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 18px;
}

.phishing-rules {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.phishing-rules li {
  font-size: .86rem;
  color: var(--muted);
  padding-left: 16px;
  position: relative;
  line-height: 1.55;
}
.phishing-rules li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--cyan);
  font-weight: 700;
}

.phishing-cta {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
  min-width: 220px;
}
.phishing-cta-sub {
  font-size: .8rem;
  color: var(--subtle);
  margin-bottom: 4px;
}

/* ── CRYPTO SECTION ─────────────────────────────────────────── */
.crypto-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  margin-bottom: 32px;
}

.crypto-card {
  background: var(--bg-glass);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 30px;
  transition: all .28s;
}
.crypto-card:hover {
  border-color: var(--border-h);
  transform: translateY(-3px);
}
.crypto-card--xmr { border-top: 2px solid #FF7733; }
.crypto-card--btc { border-top: 2px solid #F7931A; }

.crypto-icon {
  font-size: 2rem;
  font-weight: 900;
  margin-bottom: 14px;
  line-height: 1;
}
.crypto-card--xmr .crypto-icon { color: #FF8833; }
.crypto-card--btc .crypto-icon { color: #F7931A; }

.crypto-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}
.crypto-card p {
  font-size: .875rem;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 16px;
}
.crypto-card p strong { color: var(--white); }

.crypto-features {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
}
.crypto-features li {
  font-size: .83rem;
  color: var(--muted);
  padding-left: 14px;
  position: relative;
}
.crypto-features li::before {
  content: '·';
  position: absolute;
  left: 0;
  color: var(--cyan);
  font-weight: 900;
}

.crypto-history {
  background: var(--bg-glass);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 28px;
  margin-top: 8px;
}
.crypto-history h3 {
  font-size: .95rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}
.crypto-history p {
  font-size: .875rem;
  color: var(--muted);
  line-height: 1.8;
}

/* ── HARM REDUCTION ─────────────────────────────────────────── */
.harm-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.harm-card {
  background: var(--bg-glass);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 24px;
  transition: border-color .2s;
}
.harm-card:hover { border-color: var(--border-h); }

.harm-icon {
  font-size: 1.6rem;
  margin-bottom: 12px;
  line-height: 1;
}
.harm-card h3 {
  font-size: .9rem;
  font-weight: 700;
  color: var(--mint);
  margin-bottom: 10px;
}
.harm-card p {
  font-size: .84rem;
  color: var(--muted);
  line-height: 1.65;
}

/* ── NEWS ───────────────────────────────────────────────────── */
.news-tabs {
  display: flex;
  gap: 6px;
  margin-bottom: 28px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 0;
}
.news-tab {
  padding: 10px 20px;
  font-family: var(--f);
  font-size: .875rem;
  font-weight: 600;
  color: var(--muted);
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  cursor: pointer;
  transition: all .2s;
  margin-bottom: -1px;
}
.news-tab:hover { color: var(--white); }
.news-tab.active {
  color: var(--cyan);
  border-bottom-color: var(--cyan);
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.news-card {
  background: var(--bg-glass);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: all .28s;
}
.news-card:hover {
  border-color: var(--border-h);
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0,0,0,.3);
}
.news-card a {
  display: block;
  color: inherit;
  text-decoration: none;
}

.news-card img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  display: block;
  transition: opacity .2s;
}
.news-card:hover img { opacity: .9; }

.news-card-body {
  padding: 18px 20px 20px;
}
.news-card-body time {
  display: block;
  font-size: .72rem;
  color: var(--subtle);
  margin-bottom: 8px;
  letter-spacing: .04em;
}
.news-card-body h3 {
  font-size: .93rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.4;
  margin-bottom: 8px;
  transition: color .2s;
}
.news-card:hover .news-card-body h3 { color: var(--cyan); }
.news-card-body p {
  font-size: .83rem;
  color: var(--muted);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ── FAQ ────────────────────────────────────────────────────── */
.faq-daily {
  background: rgba(94,234,212,.04);
  border: 1px solid rgba(94,234,212,.15);
  border-radius: var(--r-md);
  padding: 18px 22px;
  margin-bottom: 28px;
}
#faq-daily-content { margin-top: 8px; }
#faq-daily-content .faq-question {
  font-size: .9rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 6px;
  cursor: default;
}
#faq-daily-content p,
#faq-daily-content .faq-answer {
  font-size: .86rem;
  color: var(--muted);
  line-height: 1.7;
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* native details/summary FAQ */
.faq-item {
  background: var(--bg-glass);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  overflow: hidden;
  transition: border-color .2s;
}
.faq-item[open],
.faq-item:hover { border-color: var(--border-h); }
.faq-item[open] { border-color: rgba(94,234,212,.25); }

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  cursor: pointer;
  font-size: .93rem;
  font-weight: 600;
  color: var(--white);
  list-style: none;
  gap: 12px;
  user-select: none;
}
.faq-question::-webkit-details-marker { display: none; }
.faq-question::after {
  content: '+';
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--cyan);
  flex-shrink: 0;
  transition: transform .3s;
}
.faq-item[open] .faq-question::after {
  transform: rotate(45deg);
  border-color: var(--cyan);
}

.faq-answer {
  padding: 0 22px 18px;
  border-top: 1px solid var(--border);
  padding-top: 14px;
}
.faq-answer p {
  font-size: .875rem;
  color: var(--muted);
  line-height: 1.75;
}
.faq-answer p strong { color: var(--white); }

/* JS-powered accordion used in some pages */
.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-item.open { border-color: rgba(94,234,212,.25); }
.faq-item .faq-question { padding: 18px 22px; cursor: pointer; }
.faq-icon {
  width: 22px; height: 22px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: .9rem;
  color: var(--cyan);
  flex-shrink: 0;
  transition: transform .3s, border-color .2s;
}
.faq-item.open .faq-icon { transform: rotate(45deg); border-color: var(--cyan); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-item.open .faq-answer { max-height: 600px; }
.faq-answer-inner { padding: 0 22px 18px; border-top: 1px solid var(--border); padding-top: 14px; font-size: .875rem; color: var(--muted); line-height: 1.75; }

/* ── FOOTER ─────────────────────────────────────────────────── */
.site-footer {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  padding: 52px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 2fr;
  gap: 48px;
  margin-bottom: 44px;
}
.footer-brand {}
.footer-logo img { height: 44px; width: auto; margin-bottom: 14px; }
.footer-tagline {
  font-size: .85rem;
  color: var(--muted);
  line-height: 1.7;
  max-width: 280px;
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.footer-nav-col h4 {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--subtle);
  margin-bottom: 14px;
}
.footer-nav-col ul { display: flex; flex-direction: column; gap: 8px; }
.footer-nav-col a { font-size: .84rem; color: var(--muted); }
.footer-nav-col a:hover { color: var(--cyan); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-disclaimer {
  font-size: .75rem;
  color: var(--subtle);
  line-height: 1.7;
  max-width: 700px;
}
.footer-disclaimer strong { color: var(--muted); }
.footer-updated { font-size: .75rem; color: var(--subtle); white-space: nowrap; }

/* ── INNER PAGE SHARED PARTS ────────────────────────────────── */

/* breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .8rem;
  color: var(--subtle);
  padding: 24px 40px 0;
  max-width: 1180px;
  margin: 0 auto;
}
.breadcrumb a { color: var(--muted); }
.breadcrumb a:hover { color: var(--cyan); }
.breadcrumb .sep { color: var(--subtle); }

/* page hero (section pages) */
.page-hero {
  padding: 60px 40px 52px;
  max-width: 1180px;
  margin: 0 auto;
}
.page-hero h1 {
  font-size: clamp(2rem,4vw,3rem);
  font-weight: 900;
  letter-spacing: -.02em;
  line-height: 1.1;
  margin-bottom: 16px;
}
.page-hero p {
  font-size: 1rem;
  color: var(--muted);
  max-width: 660px;
  line-height: 1.8;
}

/* section (inner page generic) */
.section {
  padding: 68px 40px;
  border-top: 1px solid var(--border);
  max-width: 1180px;
  margin: 0 auto;
}
.section h2 {
  font-size: clamp(1.5rem,2.8vw,2.1rem);
  font-weight: 800;
  margin-bottom: 22px;
  letter-spacing: -.02em;
}
.section p { font-size: .9375rem; color: var(--muted); line-height: 1.8; margin-bottom: 14px; }
.section ul, .section ol { display: flex; flex-direction: column; gap: 8px; margin: 14px 0 14px 18px; list-style: disc; }
.section ul li, .section ol li { font-size: .9rem; color: var(--muted); line-height: 1.65; }

/* tabs (inner pages) */
.tabs-nav {
  display: flex;
  gap: 4px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 30px;
  padding: 0 40px;
  overflow-x: auto;
  scrollbar-width: none;
}
.tabs-nav::-webkit-scrollbar { display: none; }
.tab-btn {
  padding: 12px 20px;
  font-family: var(--f);
  font-size: .875rem;
  font-weight: 600;
  color: var(--muted);
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: all .2s;
  margin-bottom: -1px;
}
.tab-btn:hover { color: var(--white); }
.tab-btn.active { color: var(--cyan); border-bottom-color: var(--cyan); }
.tab-content { display: none; padding: 0 40px; }
.tab-content.active { display: block; }

/* onion links */
.onion-card {
  background: var(--bg-glass);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 22px;
  margin-bottom: 14px;
}
.onion-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 10px;
}
.onion-label {
  font-size: .72rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--cyan);
}
.onion-url {
  font-family: 'JetBrains Mono','Courier New',monospace;
  font-size: .78rem;
  color: var(--muted);
  word-break: break-all;
  background: rgba(0,0,0,.2);
  padding: 12px 16px;
  border-radius: var(--r-sm);
  border: 1px solid var(--border);
  cursor: pointer;
  transition: border-color .2s, background .2s;
}
.onion-url:hover { border-color: var(--border-h); background: rgba(94,234,212,.04); }

.copy-btn {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: .73rem; font-weight: 600;
  color: var(--cyan);
  background: rgba(94,234,212,.1);
  border: 1px solid rgba(94,234,212,.2);
  border-radius: 999px;
  padding: 5px 12px;
  cursor: pointer;
  transition: all .2s;
}
.copy-btn:hover { background: rgba(94,234,212,.18); }

/* PGP block */
.pgp-block {
  font-family: 'JetBrains Mono','Courier New',monospace;
  font-size: .74rem;
  color: var(--mint);
  background: rgba(0,0,0,.3);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  padding: 18px;
  white-space: pre-wrap;
  word-break: break-all;
  line-height: 1.6;
  max-height: 280px;
  overflow-y: auto;
}

/* stat boxes */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.stat-box {
  background: var(--bg-glass);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 22px;
  text-align: center;
}
.stat-num {
  font-size: 2rem; font-weight: 900;
  color: var(--cyan); letter-spacing: -.03em; display: block;
}
.stat-label {
  font-size: .72rem; color: var(--muted); margin-top: 4px;
  text-transform: uppercase; letter-spacing: .05em;
}

/* table */
.data-table { width: 100%; border-collapse: collapse; font-size: .875rem; }
.data-table th {
  text-align: left; padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  color: var(--subtle); font-size: .72rem; font-weight: 600;
  letter-spacing: .05em; text-transform: uppercase;
}
.data-table td {
  padding: 14px 16px;
  border-bottom: 1px solid rgba(255,255,255,.04);
  color: var(--muted); vertical-align: middle;
}
.data-table tr:last-child td { border-bottom: none; }

/* trust badges */
.trust-badges { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.trust-badge {
  display: flex; align-items: center; gap: 8px;
  background: var(--bg-glass);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 7px 14px;
  font-size: .8rem; color: var(--muted);
}
.trust-badge .check { color: var(--cyan); }

/* steps */
.steps-list { display: flex; flex-direction: column; gap: 18px; }
.step-item { display: flex; gap: 18px; }
.step-num {
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(94,234,212,.1);
  border: 1px solid rgba(94,234,212,.2);
  display: flex; align-items: center; justify-content: center;
  font-size: .84rem; font-weight: 700; color: var(--cyan); flex-shrink: 0;
}
.step-content h4 { font-size: .93rem; font-weight: 700; margin-bottom: 5px; }
.step-content p { font-size: .85rem; color: var(--muted); line-height: 1.7; }

/* boxes */
.highlight-box {
  background: rgba(94,234,212,.05);
  border: 1px solid rgba(94,234,212,.15);
  border-radius: var(--r-md);
  padding: 22px;
  margin: 22px 0;
}
.warning-box-lg {
  background: rgba(239,68,68,.05);
  border: 1px solid rgba(239,68,68,.15);
  border-radius: var(--r-md);
  padding: 18px 22px;
  margin: 18px 0;
  font-size: .875rem;
  color: #fca5a5;
  line-height: 1.7;
}

/* chart */
.chart-container {
  position: relative;
  padding: 22px;
  background: var(--bg-glass);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
}

/* outbound link */
.outbound-link {
  display: inline-flex; align-items: center; gap: 4px;
  color: var(--cyan); font-size: .875rem;
  border-bottom: 1px solid rgba(94,234,212,.3); padding-bottom: 1px;
}
.outbound-link:hover { color: var(--mint); border-color: var(--mint); }

/* article page */
.article-image img { width: 100%; border-radius: var(--r-md); margin-bottom: 24px; }
.article-nav {
  display: flex; gap: 16px; flex-wrap: wrap; margin-top: 48px;
  padding-top: 24px; border-top: 1px solid var(--border);
}

/* ── UTILITY ────────────────────────────────────────────────── */
.text-cyan   { color: var(--cyan); }
.text-mint   { color: var(--mint); }
.text-muted  { color: var(--muted); }
.text-subtle { color: var(--subtle); }
.text-center { text-align: center; }
.font-mono   { font-family: 'JetBrains Mono','Courier New',monospace; }
.mt-4 { margin-top: 16px; }
.mt-6 { margin-top: 24px; }
.mt-8 { margin-top: 32px; }
.mb-4 { margin-bottom: 16px; }
.mb-6 { margin-bottom: 24px; }
.fw-bold { font-weight: 700; }
.d-flex { display: flex; }
.align-center { align-items: center; }
.gap-2 { gap: 8px; }
.gap-3 { gap: 12px; }
.w-100 { width: 100%; }
.separator { height: 1px; background: var(--border); margin: 36px 0; }

.tag-green {
  display: inline-block;
  background: rgba(94,234,212,.1); color: var(--cyan);
  padding: 2px 10px; border-radius: 999px;
  font-size: .73rem; font-weight: 600;
  border: 1px solid rgba(94,234,212,.2);
}
.tag-red {
  display: inline-block;
  background: rgba(239,68,68,.1); color: #fca5a5;
  padding: 2px 10px; border-radius: 999px;
  font-size: .73rem; font-weight: 600;
  border: 1px solid rgba(239,68,68,.2);
}

/* ── FADE ANIMATION ─────────────────────────────────────────── */
.fade-up { opacity: 0; transform: translateY(18px); transition: opacity .55s ease, transform .55s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ── SCROLLBAR ──────────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: rgba(255,255,255,.1); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: rgba(255,255,255,.2); }

/* ── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr; gap: 40px; padding-bottom: 40px; }
  .hero-3d { display: none; }
  .hero-dashboard { grid-column: 1; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .harm-grid { grid-template-columns: repeat(2, 1fr); }
  .news-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .phishing-inner { grid-template-columns: 1fr; }
  .opsec-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .page-wrapper { padding: 10px; }
  .container { padding: 0 20px; }

  .navbar { padding: 14px 20px; flex-wrap: wrap; }
  .navbar-logo { order: 1; }
  .navbar-actions { order: 2; margin-left: auto; }
  .nav-toggle { display: inline-flex; }
  .nav-links {
    order: 3;
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 14px 0 8px;
    border-top: 1px solid var(--border);
  }
  .nav-links.nav-open { display: flex; }

  .hero-content { padding: 40px 20px 30px; }
  .feature-strip { padding: 20px; justify-content: flex-start; gap: 20px; }
  .hero-dashboard { padding-bottom: 36px; }

  .market-info-section,
  .opsec-section,
  .phishing-section,
  .crypto-section,
  .harm-reduction-section,
  .news-section,
  .faq-section { padding: 52px 0; }

  .features-grid { grid-template-columns: 1fr; }
  .crypto-grid { grid-template-columns: 1fr; }
  .harm-grid { grid-template-columns: 1fr; }
  .news-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-nav { grid-template-columns: repeat(2, 1fr); }
  .section { padding: 52px 20px; }
  .tabs-nav { padding: 0 20px; }
  .tab-content { padding: 0 20px; }
  .page-hero { padding: 40px 20px 36px; }
  .breadcrumb { padding: 16px 20px 0; }
  .site-footer { padding: 40px 0 24px; }
}

@media (max-width: 480px) {
  .hero-headline { font-size: 2.4rem; }
  .news-tabs { overflow-x: auto; }
  .footer-nav { grid-template-columns: 1fr; }
}

/* ── INNER PAGE: page-hero ──────────────────────────────────── */
.page-hero {
  border-bottom: 1px solid var(--border);
  background: var(--bg-card);
}
.page-hero .container { padding-top: 40px; padding-bottom: 52px; }

.page-hero-title {
  font-size: clamp(2rem,4vw,3rem);
  font-weight: 900;
  letter-spacing: -.02em;
  line-height: 1.1;
  margin-bottom: 16px;
  margin-top: 20px;
}
.page-hero-sub {
  font-size: 1rem;
  color: var(--muted);
  max-width: 680px;
  line-height: 1.8;
}
.page-hero-sub strong { color: var(--white); }

/* global accent-text (gradient) */
.accent-text {
  background: linear-gradient(135deg, var(--cyan) 0%, var(--mint) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* breadcrumb as ol/li */
.breadcrumb ol {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  flex-wrap: wrap;
}
.breadcrumb li {
  font-size: .8rem;
  color: var(--subtle);
}
.breadcrumb li + li::before {
  content: '/';
  margin-right: 8px;
  color: var(--subtle);
}
.breadcrumb li a { color: var(--muted); }
.breadcrumb li a:hover { color: var(--cyan); }
.breadcrumb li[aria-current] { color: var(--white); }

/* ── MARKET OVERVIEW (market_features page) ─────────────────── */
.market-overview-section,
.features-full-section,
.stats-section,
.onion-links-section,
.entry-guide-section,
.trust-section,
.extra-info-section,
.security-overview-section,
.crypto-overview-section,
.news-index-section {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  padding: 72px 0;
}

.overview-card {
  background: var(--bg-glass);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 36px;
}
.overview-card h2 {
  font-size: clamp(1.4rem,2.5vw,2rem);
  font-weight: 800;
  letter-spacing: -.02em;
  margin-bottom: 16px;
}
.overview-card p {
  font-size: .9375rem;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 14px;
}
.overview-card p strong { color: var(--white); }

.overview-stats {
  display: flex;
  gap: 24px;
  margin-top: 28px;
  flex-wrap: wrap;
}
.o-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 16px 20px;
  background: rgba(94,234,212,.05);
  border: 1px solid rgba(94,234,212,.15);
  border-radius: var(--r-sm);
  min-width: 110px;
}
.o-stat span {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--cyan);
  letter-spacing: -.02em;
}
.o-stat em {
  font-size: .75rem;
  font-style: normal;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .05em;
}

/* full feature cards (market_features page) */
.features-full-grid {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.feature-full-card {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 32px;
  align-items: start;
  background: var(--bg-glass);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 32px;
  transition: border-color .2s;
}
.feature-full-card:hover { border-color: var(--border-h); }

.ffc-image {
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
.ffc-image img {
  width: 100px;
  height: 100px;
  object-fit: contain;
  border-radius: var(--r-sm);
  background: rgba(94,234,212,.06);
  padding: 10px;
  border: 1px solid var(--border);
}

.feature-number {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  color: var(--cyan);
  background: rgba(94,234,212,.08);
  border: 1px solid rgba(94,234,212,.18);
  border-radius: 999px;
  padding: 4px 12px;
  margin-bottom: 10px;
}

.ffc-content h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}
.ffc-content p {
  font-size: .875rem;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 12px;
}
.ffc-content p strong { color: var(--white); }

.feature-points {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 14px;
}
.feature-points li {
  font-size: .84rem;
  color: var(--muted);
  padding-left: 16px;
  position: relative;
  line-height: 1.5;
}
.feature-points li::before {
  content: '›';
  position: absolute;
  left: 0;
  color: var(--cyan);
  font-weight: 700;
}

@media (max-width: 680px) {
  .feature-full-card { grid-template-columns: 1fr; }
  .ffc-image { justify-content: flex-start; }
}

/* ── GO TO MARKETPLACE page ─────────────────────────────────── */
.tabs-container {
  background: var(--bg-glass);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
}

.tab-buttons {
  display: flex;
  gap: 0;
  border-bottom: 1px solid var(--border);
  overflow-x: auto;
  scrollbar-width: none;
}
.tab-buttons::-webkit-scrollbar { display: none; }
.tab-buttons .tab-btn {
  border-radius: 0;
  padding: 14px 22px;
  border-right: 1px solid var(--border);
}
.tab-buttons .tab-btn:last-child { border-right: none; }

.tabs-container .tab-content { padding: 28px; display: none; }
.tabs-container .tab-content.active { display: block; }

.onion-status {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .78rem;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: 10px;
}
.status-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.status-dot.online {
  background: #4ade80;
  box-shadow: 0 0 8px rgba(74,222,128,.6);
  animation: pulse 2.5s infinite;
}
.status-dot.warning {
  background: #fbbf24;
  box-shadow: 0 0 8px rgba(251,191,36,.5);
}

.onion-address {
  background: rgba(0,0,0,.25);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  padding: 14px 18px;
  margin: 12px 0;
  cursor: pointer;
  transition: border-color .2s, background .2s;
}
.onion-address:hover { border-color: var(--border-h); background: rgba(94,234,212,.04); }
.onion-address code {
  font-family: 'JetBrains Mono','Courier New',monospace;
  font-size: .78rem;
  color: var(--mint);
  word-break: break-all;
  line-height: 1.6;
}

.onion-note {
  font-size: .8rem;
  color: var(--subtle);
  line-height: 1.6;
  margin-top: 12px;
}

/* PGP block (go_to_marketplace usage — container style) */
.pgp-block h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}
.pgp-block > p {
  font-size: .875rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 16px;
}
.pgp-block .key-fingerprint {
  font-family: 'JetBrains Mono','Courier New',monospace;
  font-size: .78rem;
  color: var(--cyan);
  background: rgba(94,234,212,.08);
  padding: 2px 6px;
  border-radius: 4px;
}

.pgp-key-container { position: relative; }
.pgp-key {
  font-family: 'JetBrains Mono','Courier New',monospace;
  font-size: .73rem;
  color: var(--mint);
  background: rgba(0,0,0,.3);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  padding: 16px;
  white-space: pre-wrap;
  word-break: break-all;
  line-height: 1.55;
  max-height: 260px;
  overflow-y: auto;
  margin-bottom: 12px;
}

.pgp-instructions { margin-top: 20px; }
.pgp-instructions h4 {
  font-size: .9rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}
.pgp-instructions ol {
  list-style: decimal;
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.pgp-instructions li {
  font-size: .875rem;
  color: var(--muted);
  line-height: 1.65;
}
.pgp-instructions code {
  font-family: 'JetBrains Mono','Courier New',monospace;
  font-size: .78rem;
  color: var(--cyan);
  background: rgba(94,234,212,.08);
  padding: 1px 6px;
  border-radius: 4px;
}

/* ── FAQ PAGE specific ──────────────────────────────────────── */
.content-section {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  padding: 72px 0;
}

.faq-categories {
  display: flex;
  flex-direction: column;
  gap: 44px;
}

.faq-category > h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--cyan);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}

/* ── NEWS INDEX page ────────────────────────────────────────── */
.news-grid-full {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.news-card-full {
  background: var(--bg-glass);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: all .28s;
}
.news-card-full:hover {
  border-color: var(--border-h);
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0,0,0,.3);
}
.news-card-full a { display: block; color: inherit; text-decoration: none; }
.news-card-full img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  display: block;
}
.news-card-full .news-card-body {
  padding: 18px 20px 22px;
}
.news-card-full .news-card-body h3 {
  font-size: .95rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.4;
  margin-bottom: 8px;
  transition: color .2s;
}
.news-card-full:hover .news-card-body h3 { color: var(--cyan); }
.news-card-full .news-card-body p {
  font-size: .84rem;
  color: var(--muted);
  line-height: 1.6;
}

.news-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .72rem;
  color: var(--subtle);
  margin-bottom: 10px;
  flex-wrap: wrap;
}
.news-meta time { color: var(--subtle); }

.news-tag {
  background: rgba(94,234,212,.1);
  color: var(--cyan);
  padding: 2px 8px;
  border-radius: 999px;
  font-size: .68rem;
  font-weight: 600;
  border: 1px solid rgba(94,234,212,.2);
}

@media (max-width: 900px) {
  .news-grid-full { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .news-grid-full { grid-template-columns: 1fr; }
}

/* stat-card (go_to_marketplace) */
.stat-card {
  background: var(--bg-glass);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 24px;
  text-align: center;
  transition: border-color .2s;
}
.stat-card:hover { border-color: var(--border-h); }
.stat-number {
  font-size: 2rem;
  font-weight: 900;
  color: var(--cyan);
  letter-spacing: -.03em;
  display: block;
  margin-bottom: 4px;
}
/* .stat-label already defined above */
