/* ============================================================
   WTN-MIRROR.INFO — GLOBAL DESIGN SYSTEM
   Modern Fashion eCommerce Interface
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&family=Inter:wght@300;400;500;600&display=swap');

/* ── Variables ───────────────────────────────────────────── */
:root {
  --yellow:      #FFC700;
  --yellow-dark: #FFB800;
  --pink:        #E889C6;
  --pink-dark:   #D97BBE;
  --dark:        #0F0F10;
  --dark-card:   #1A1A1A;
  --dark-border: #2A2A2A;
  --white:       #FFFFFF;
  --black:       #000000;
  --gray-light:  #F5F5F5;
  --gray-mid:    #888888;
  --gray-text:   #CCCCCC;

  --font-head: 'Space Grotesk', sans-serif;
  --font-body: 'Inter', sans-serif;

  --radius-sm:   8px;
  --radius-md:   12px;
  --radius-lg:   24px;
  --radius-pill: 999px;

  --shadow-sm: 0 2px 8px rgba(0,0,0,.10);
  --shadow-md: 0 4px 20px rgba(0,0,0,.15);
  --shadow-lg: 0 8px 40px rgba(0,0,0,.20);

  --transition: .25s ease;
  --max-w:      1280px;
}

/* ── 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(--white);
  color: var(--black);
  line-height: 1.65;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a  { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }
h1,h2,h3,h4,h5,h6 { font-family: var(--font-head); line-height: 1.2; }

/* ── Utility ─────────────────────────────────────────────── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.section-pad { padding: 80px 0; }
.section-pad-sm { padding: 48px 0; }
.visually-hidden { position: absolute; width:1px; height:1px; overflow:hidden; clip:rect(0,0,0,0); }
.text-yellow { color: var(--yellow); }
.text-pink   { color: var(--pink); }
.text-white  { color: var(--white); }
.text-center { text-align: center; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  font-family: var(--font-head);
  font-weight: 600; font-size: .95rem;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-dark {
  background: var(--black); color: var(--white);
}
.btn-dark:hover { background: #222; transform: translateY(-2px); box-shadow: var(--shadow-md); }

.btn-yellow {
  background: var(--yellow); color: var(--black);
}
.btn-yellow:hover { background: var(--yellow-dark); transform: translateY(-2px); box-shadow: var(--shadow-md); }

.btn-pink {
  background: var(--pink); color: var(--black);
}
.btn-pink:hover { background: var(--pink-dark); transform: translateY(-2px); }

.btn-outline {
  background: transparent; color: var(--white);
  border: 2px solid var(--white);
}
.btn-outline:hover { background: var(--white); color: var(--black); }

.btn-outline-dark {
  background: transparent; color: var(--black);
  border: 2px solid var(--black);
}
.btn-outline-dark:hover { background: var(--black); color: var(--white); }

.btn-sm { padding: 10px 20px; font-size: .85rem; }
.btn-lg { padding: 18px 40px; font-size: 1.1rem; }

/* ── Tags / Badges ───────────────────────────────────────── */
.tag {
  display: inline-block;
  padding: 4px 14px;
  border-radius: var(--radius-pill);
  font-size: .78rem; font-weight: 600;
  font-family: var(--font-head);
  letter-spacing: .03em;
}
.tag-yellow { background: var(--yellow); color: var(--black); }
.tag-pink   { background: var(--pink);   color: var(--black); }
.tag-dark   { background: var(--dark);   color: var(--white); }
.tag-white  { background: var(--white);  color: var(--black); }

/* ── Navigation ──────────────────────────────────────────── */
.site-nav {
  position: sticky; top: 0; z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid rgba(0,0,0,.08);
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
  max-width: var(--max-w); margin: 0 auto; padding: 0 24px;
}
.nav-logo img { height: 48px; width: auto; object-fit: contain; }
.nav-logo { flex-shrink: 0; }

.nav-links {
  display: flex; align-items: center; gap: 4px;
}
.nav-links a {
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  font-family: var(--font-head);
  font-size: .9rem; font-weight: 500;
  color: var(--black);
  transition: var(--transition);
  white-space: nowrap;
}
.nav-links a:hover,
.nav-links a.active { background: var(--yellow); color: var(--black); }

.nav-right { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }

.hamburger {
  display: none;
  flex-direction: column; gap: 5px;
  padding: 8px;
  border-radius: var(--radius-sm);
  cursor: pointer;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--black); border-radius: 2px;
  transition: var(--transition);
}

/* ── Hero Section ────────────────────────────────────────── */
.hero {
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: 600px;
  overflow: hidden;
}
.hero-left {
  background: var(--yellow);
  padding: 80px 60px;
  display: flex; flex-direction: column; justify-content: center;
}
.hero-right {
  background: var(--pink);
  display: flex; align-items: center; justify-content: center;
  padding: 40px;
  position: relative; overflow: hidden;
}
.hero-tag {
  display: inline-block;
  background: var(--black); color: var(--white);
  padding: 6px 18px; border-radius: var(--radius-pill);
  font-family: var(--font-head); font-size: .8rem; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase;
  margin-bottom: 24px;
}
.hero-heading {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 700; line-height: 1.1;
  color: var(--black);
  margin-bottom: 20px;
}
.hero-desc {
  font-size: 1.05rem; color: rgba(0,0,0,.75);
  max-width: 440px; margin-bottom: 36px; line-height: 1.7;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }

.hero-img-wrap {
  border-radius: 48px 80px 48px 80px;
  overflow: hidden;
  max-width: 520px; width: 100%;
  box-shadow: var(--shadow-lg);
}
.hero-img-wrap img { width: 100%; height: auto; display: block; }

/* ── Promo Strip ─────────────────────────────────────────── */
.promo-strip {
  background: var(--yellow);
  padding: 16px 0;
  overflow: hidden;
}
.promo-strip-inner {
  display: flex; align-items: center; justify-content: center;
  transform: rotate(-1deg);
}
.promo-strip-text {
  font-family: var(--font-head);
  font-size: 1rem; font-weight: 700;
  color: var(--black);
  letter-spacing: .04em; text-transform: uppercase;
  display: flex; align-items: center; gap: 24px;
  white-space: nowrap;
}
.promo-strip-text span.dot {
  width: 6px; height: 6px;
  background: var(--black); border-radius: 50%;
  flex-shrink: 0;
}

/* ── Section Headings ────────────────────────────────────── */
.section-label {
  font-family: var(--font-head); font-size: .8rem; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--gray-mid); margin-bottom: 8px;
}
.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 700; line-height: 1.15;
}
.section-desc {
  font-size: 1rem; color: var(--gray-mid);
  max-width: 560px; line-height: 1.7;
  margin-top: 12px;
}

/* ── Feature Cards (Homepage) ────────────────────────────── */
.features-section { background: var(--white); }
.features-header { margin-bottom: 48px; }
.features-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }

.feature-card {
  background: var(--dark-card);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  display: flex; flex-direction: column; gap: 16px;
  transition: var(--transition);
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.feature-card:nth-child(odd) { background: var(--yellow); }
.feature-card:nth-child(2), .feature-card:nth-child(6) { background: var(--pink); }
/* 3–5: full dark (4 was missing before → black text on dark-card) */
.feature-card:nth-child(3),
.feature-card:nth-child(4),
.feature-card:nth-child(5) { background: var(--dark); }

.feature-card:nth-child(odd) .feature-title,
.feature-card:nth-child(2) .feature-title,
.feature-card:nth-child(6) .feature-title { color: var(--black); }
.feature-card:nth-child(3) .feature-title,
.feature-card:nth-child(4) .feature-title,
.feature-card:nth-child(5) .feature-title { color: var(--white); }

.feature-card:nth-child(odd) .feature-desc,
.feature-card:nth-child(2) .feature-desc,
.feature-card:nth-child(6) .feature-desc { color: rgba(0,0,0,.7); }
.feature-card:nth-child(3) .feature-desc,
.feature-card:nth-child(5) .feature-desc { color: var(--gray-text); }
/* Vendor Verification: body copy pure white on dark */
.feature-card:nth-child(4) .feature-desc { color: var(--white); }

/* Icon badge: pink ring so yellow artwork contrasts with card + neighbors */
.feature-card:nth-child(4) .feature-img {
  box-shadow: 0 0 0 3px var(--pink);
}

.feature-img {
  width: 64px; height: 64px;
  border-radius: var(--radius-sm);
  object-fit: cover;
}
.feature-title {
  font-family: var(--font-head); font-size: 1.1rem; font-weight: 700;
}
.feature-desc { font-size: .9rem; line-height: 1.6; }

/* ── Dark Product / Info Section ─────────────────────────── */
.dark-section { background: var(--dark); color: var(--white); }
.dark-section .section-title { color: var(--white); }
.dark-section .section-label { color: var(--yellow); }
.dark-section .section-desc  { color: var(--gray-text); }

/* ── Card Grid (dark bg) ─────────────────────────────────── */
.card-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }

.info-card {
  background: var(--dark-card);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
  border: 1px solid var(--dark-border);
}
.info-card:hover { transform: translateY(-4px) scale(1.01); box-shadow: 0 8px 32px rgba(0,0,0,.4); }

.info-card-img {
  width: 100%; aspect-ratio: 4/3;
  object-fit: cover; display: block;
}
.info-card-body { padding: 16px; }
.info-card-title {
  font-family: var(--font-head); font-weight: 600; font-size: .95rem;
  color: var(--white); margin-bottom: 6px;
}
.info-card-meta { font-size: .82rem; color: var(--gray-mid); }
.info-card-price { font-family: var(--font-head); font-weight: 700; color: var(--yellow); font-size: 1rem; }

/* ── Pink Category / Section ─────────────────────────────── */
.pink-section { background: var(--pink); }
.pink-section .section-title { color: var(--black); }
.pink-section .section-desc  { color: rgba(0,0,0,.65); }

.category-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.cat-card {
  background: var(--dark);
  border-radius: var(--radius-md);
  padding: 20px 16px;
  display: flex; flex-direction: column; align-items: center; gap: 14px;
  transition: var(--transition);
  text-align: center;
}
.cat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.cat-card img { width: 100%; max-height: 140px; object-fit: cover; border-radius: var(--radius-sm); }
.cat-card-label {
  background: var(--pink); color: var(--black);
  padding: 4px 16px; border-radius: var(--radius-pill);
  font-family: var(--font-head); font-size: .8rem; font-weight: 600;
}
.cat-card-name { color: var(--white); font-family: var(--font-head); font-weight: 600; }

/* ── News Cards ──────────────────────────────────────────── */
.news-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.news-card {
  background: var(--dark-card);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
  border: 1px solid var(--dark-border);
}
.news-card:hover { transform: translateY(-4px); box-shadow: 0 8px 32px rgba(0,0,0,.4); }
.news-card-img { width: 100%; aspect-ratio: 16/9; object-fit: cover; display: block; }
.news-card-body { padding: 20px; }
.news-card-tag  { margin-bottom: 10px; }
.news-card-title {
  font-family: var(--font-head); font-weight: 700; font-size: 1rem;
  color: var(--white); margin-bottom: 10px; line-height: 1.3;
}
.news-card-excerpt { font-size: .88rem; color: var(--gray-text); line-height: 1.6; margin-bottom: 14px; }
.news-card-date { font-size: .8rem; color: var(--gray-mid); }
.news-card a { display: flex; align-items: center; gap: 6px; color: var(--yellow); font-size: .85rem; font-weight: 600; font-family: var(--font-head); }
.news-card a:hover { color: var(--yellow-dark); }

/* ── Crypto Section ──────────────────────────────────────── */
.crypto-section { background: var(--yellow); }
.crypto-section .section-title { color: var(--black); }
.crypto-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.crypto-coins { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 24px; }

/* Privacy chart: white card on yellow so % values are never washed-out */
.crypto-privacy-panel {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 28px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: var(--shadow-sm);
}
.crypto-privacy-panel__title {
  color: var(--black);
  font-family: var(--font-head);
  margin-bottom: 20px;
  font-size: 1rem;
  font-weight: 700;
}
.crypto-privacy-panel .stat-bar-label.crypto-privacy-panel__row {
  color: inherit;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.crypto-privacy-panel__label {
  color: rgba(0, 0, 0, 0.62);
  font-size: 0.82rem;
  font-family: var(--font-head);
  font-weight: 500;
}
/* Pink accent % — strong contrast vs yellow page and white card */
.crypto-privacy-panel__pct {
  color: var(--pink-dark);
  font-weight: 700;
  font-size: 0.95rem;
  font-family: var(--font-head);
}
.crypto-privacy-panel__track {
  background: rgba(0, 0, 0, 0.1);
}
.coin-badge {
  display: flex; align-items: center; gap: 10px;
  background: var(--black); color: var(--white);
  padding: 12px 20px; border-radius: var(--radius-pill);
  font-family: var(--font-head); font-weight: 600; font-size: .95rem;
}
.coin-badge .coin-icon { font-size: 1.4rem; }

/* ── OPSEC / Text Content ────────────────────────────────── */
.content-section { background: var(--white); }
.content-block { max-width: 860px; margin: 0 auto; }
.content-block h2 { font-family: var(--font-head); font-size: 1.6rem; font-weight: 700; margin: 40px 0 16px; color: var(--black); }
.content-block h3 { font-family: var(--font-head); font-size: 1.25rem; font-weight: 600; margin: 28px 0 12px; color: var(--black); }
.content-block p  { margin-bottom: 16px; color: #333; font-size: 1rem; line-height: 1.8; }
.content-block ul, .content-block ol { margin: 16px 0 16px 24px; }
.content-block li { margin-bottom: 8px; color: #333; font-size: 1rem; line-height: 1.7; }
.content-block ul li { list-style: disc; }
.content-block ol li { list-style: decimal; }
.content-block strong { font-weight: 600; }
.content-block a { color: var(--black); text-decoration: underline; }
.content-block a:hover { color: var(--pink-dark); }

.highlight-box {
  background: var(--yellow);
  border-radius: var(--radius-md);
  padding: 24px 28px;
  margin: 24px 0;
}
.highlight-box.pink { background: var(--pink); }
.highlight-box.dark { background: var(--dark); color: var(--white); }
.highlight-box.dark p, .highlight-box.dark li { color: var(--gray-text); }
.highlight-box.dark h3 { color: var(--white); }
.highlight-box h3 { margin-top: 0; }

.warning-box {
  border-left: 4px solid #E53E3E;
  background: #FFF5F5;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 16px 20px; margin: 20px 0;
}
.warning-box p { color: #822727; margin: 0; }

.info-box {
  border-left: 4px solid var(--yellow);
  background: #FFFBEB;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 16px 20px; margin: 20px 0;
}

/* ── Market Feature Grid ─────────────────────────────────── */
.mfeature-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.mfeature-card {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  text-align: center;
  transition: var(--transition);
}
.mfeature-card:hover { transform: translateY(-4px); border-color: var(--yellow); box-shadow: 0 0 0 1px var(--yellow); }
.mfeature-card img { width: 72px; height: 72px; margin: 0 auto 16px; border-radius: var(--radius-sm); object-fit: cover; }
.mfeature-card h3 { font-family: var(--font-head); font-size: 1rem; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.mfeature-card p  { font-size: .86rem; color: var(--gray-text); line-height: 1.6; }

/* ── Onion Link / Access ─────────────────────────────────── */
.onion-box {
  background: var(--dark-card);
  border: 2px solid var(--yellow);
  border-radius: var(--radius-md);
  padding: 28px 32px;
  text-align: center;
}
.onion-url {
  font-family: monospace; font-size: .9rem;
  color: var(--yellow); word-break: break-all;
  background: rgba(255,199,0,.08);
  padding: 12px 16px; border-radius: var(--radius-sm);
  margin: 16px 0;
  user-select: all;
}
.copy-btn {
  background: var(--yellow); color: var(--black);
  padding: 10px 24px; border-radius: var(--radius-pill);
  font-family: var(--font-head); font-weight: 600; font-size: .9rem;
  cursor: pointer; transition: var(--transition); border: none;
}
.copy-btn:hover { background: var(--yellow-dark); }
.copy-btn.copied { background: #22C55E; color: var(--white); }

/* ── Tabs ────────────────────────────────────────────────── */
.tabs { display: flex; gap: 4px; flex-wrap: wrap; margin-bottom: 24px; }
.tab-btn {
  padding: 10px 20px; border-radius: var(--radius-pill);
  font-family: var(--font-head); font-size: .88rem; font-weight: 500;
  background: transparent; color: var(--gray-mid);
  border: 1px solid var(--dark-border); cursor: pointer;
  transition: var(--transition);
}
.tab-btn.active, .tab-btn:hover { background: var(--yellow); color: var(--black); border-color: var(--yellow); }
.tab-panel { display: none; }
.tab-panel.active { display: block; }

/* ── FAQ ─────────────────────────────────────────────────── */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid rgba(0,0,0,.10);
  overflow: hidden;
}
.faq-question {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 0; cursor: pointer;
  font-family: var(--font-head); font-weight: 600; font-size: 1.02rem;
  color: var(--black); gap: 16px;
}
.faq-icon {
  width: 28px; height: 28px; flex-shrink: 0;
  background: var(--yellow); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; font-weight: 700;
  transition: var(--transition);
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--black); color: var(--white); }
.faq-answer {
  max-height: 0; overflow: hidden; transition: max-height .35s ease, padding .35s ease;
}
.faq-answer-inner {
  padding: 0 0 20px;
  font-size: .97rem; color: #444; line-height: 1.75;
}
.faq-item.open .faq-answer { max-height: 600px; }

/* ── Stats / Counters ────────────────────────────────────── */
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.stat-box {
  background: var(--dark-card); border-radius: var(--radius-md);
  padding: 28px 20px; text-align: center;
  border: 1px solid var(--dark-border);
}
.stat-number {
  font-family: var(--font-head); font-size: 2.2rem; font-weight: 700;
  color: var(--pink); line-height: 1;
}
.stat-label { font-size: .85rem; color: var(--gray-text); margin-top: 8px; }

/* ── PGP Box ─────────────────────────────────────────────── */
.pgp-box {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-md);
  padding: 24px;
}
.pgp-key {
  font-family: monospace; font-size: .78rem; color: var(--gray-text);
  white-space: pre-wrap; word-break: break-all;
  background: var(--dark); padding: 16px; border-radius: var(--radius-sm);
  margin-top: 12px; max-height: 220px; overflow-y: auto;
  line-height: 1.5;
}

/* ── Breadcrumb ──────────────────────────────────────────── */
.breadcrumb {
  padding: 16px 0;
  display: flex; align-items: center; gap: 8px;
  font-size: .85rem; color: var(--gray-mid);
  font-family: var(--font-head);
}
.breadcrumb a { color: var(--gray-mid); }
.breadcrumb a:hover { color: var(--black); }
.breadcrumb .sep { color: var(--gray-mid); }
.breadcrumb .current { color: var(--black); font-weight: 500; }

/* ── Harm Reduction / Health ─────────────────────────────── */
.harm-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.harm-card {
  background: var(--white); border-radius: var(--radius-md);
  padding: 24px; border: 1px solid rgba(0,0,0,.08);
  box-shadow: var(--shadow-sm);
}
.harm-card h3 { font-family: var(--font-head); font-size: 1rem; font-weight: 700; margin-bottom: 10px; }
.harm-card p  { font-size: .9rem; color: #555; line-height: 1.65; }

/* ── News Post ───────────────────────────────────────────── */
.post-hero { background: var(--dark); padding: 60px 0; }
.post-hero h1 { font-family: var(--font-head); font-size: clamp(1.8rem,3vw,2.6rem); font-weight: 700; color: var(--white); max-width: 760px; }
.post-meta { display: flex; align-items: center; gap: 16px; margin-top: 16px; color: var(--gray-text); font-size: .88rem; }
.post-meta .tag { font-size: .75rem; }
.post-body { max-width: 760px; margin: 0 auto; padding: 48px 24px; }
.post-body p { margin-bottom: 20px; color: #333; font-size: 1rem; line-height: 1.85; }
.post-body h2 { font-family: var(--font-head); font-size: 1.5rem; font-weight: 700; margin: 36px 0 14px; }
.post-body h3 { font-family: var(--font-head); font-size: 1.2rem; font-weight: 600; margin: 24px 0 10px; }
.post-body ul { margin: 12px 0 16px 24px; }
.post-body li { list-style: disc; margin-bottom: 8px; color: #333; font-size: 1rem; line-height: 1.75; }
.post-body img { border-radius: var(--radius-md); margin: 24px 0; box-shadow: var(--shadow-md); }
.post-body a { color: var(--black); font-weight: 500; text-decoration: underline; }
.post-body a:hover { color: var(--pink-dark); }

/* ── Footer ──────────────────────────────────────────────── */
.site-footer {
  background: var(--dark);
  color: var(--white);
  padding: 64px 0 0;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 48px; }
.footer-brand .footer-logo img { height: 48px; margin-bottom: 16px; }
.footer-brand p { font-size: .88rem; color: var(--gray-text); line-height: 1.7; max-width: 280px; }

.footer-col h4 {
  font-family: var(--font-head); font-size: .85rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase; color: var(--yellow);
  margin-bottom: 16px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { font-size: .88rem; color: var(--gray-text); transition: var(--transition); }
.footer-col ul li a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid var(--dark-border);
  padding: 20px 0;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
  font-size: .82rem; color: var(--gray-mid);
}
.footer-disclaimer {
  background: rgba(255,199,0,.08);
  border: 1px solid rgba(255,199,0,.2);
  border-radius: var(--radius-sm);
  padding: 12px 20px;
  font-size: .82rem; color: var(--gray-text);
  margin: 0 0 20px;
  text-align: center;
}

/* ── Page Header (Inner Pages) ───────────────────────────── */
.page-header {
  background: var(--dark);
  padding: 64px 0 48px;
}
.page-header .section-label { color: var(--yellow); }
.page-header h1 {
  font-family: var(--font-head); font-size: clamp(2rem,3.5vw,3rem);
  font-weight: 700; color: var(--white); max-width: 720px;
  margin: 8px 0 16px;
}
.page-header p { font-size: 1.05rem; color: var(--gray-text); max-width: 600px; line-height: 1.7; }

/* ── Charts / Stats Bar ──────────────────────────────────── */
.stat-bar { margin: 8px 0 20px; }
.stat-bar-label { display: flex; justify-content: space-between; font-size: .82rem; color: var(--gray-text); margin-bottom: 6px; font-family: var(--font-head); font-weight: 500; }
.stat-bar-track { height: 8px; background: var(--dark-border); border-radius: var(--radius-pill); overflow: hidden; }
.stat-bar-fill { height: 100%; background: var(--yellow); border-radius: var(--radius-pill); transition: width 1s ease; }
.stat-bar-fill.pink { background: var(--pink); }

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 1100px) {
  .features-grid { grid-template-columns: repeat(2,1fr); }
  .card-grid, .mfeature-grid { grid-template-columns: repeat(2,1fr); }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .category-grid { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; }
  .hero-left { padding: 60px 32px; }
  .hero-right { min-height: 320px; }
  .grid-2 { grid-template-columns: 1fr; }
  .crypto-grid { grid-template-columns: 1fr; }
  .news-grid { grid-template-columns: repeat(2,1fr); }
  .harm-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: absolute; top: 72px; left: 0; right: 0;
    background: var(--white); padding: 16px 24px;
    border-bottom: 1px solid rgba(0,0,0,.08);
    box-shadow: var(--shadow-md); z-index: 999;
    gap: 4px;
  }
  .features-grid { grid-template-columns: 1fr; }
  .card-grid, .mfeature-grid, .category-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .news-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .section-pad { padding: 56px 0; }
  .hero-heading { font-size: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .harm-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .card-grid, .mfeature-grid, .category-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .container { padding: 0 16px; }
}

/* ── Animations ──────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp .5s ease both; }
.fade-up-1 { animation-delay: .1s; }
.fade-up-2 { animation-delay: .2s; }
.fade-up-3 { animation-delay: .3s; }

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.marquee-track { display: flex; animation: marquee 20s linear infinite; }

/* ── Scrollbar ───────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--yellow); border-radius: 3px; }

/* ── Print ───────────────────────────────────────────────── */
@media print {
  .site-nav, .site-footer, .promo-strip { display: none; }
}
