/* ============================================================
   TorZon Market — Main Stylesheet
   torzon1market.info
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;600;700;800&family=DM+Sans:ital,wght@0,300;0,400;0,500;0,600;1,400&display=swap');

/* ── CUSTOM PROPERTIES ─────────────────────────────────────── */
:root {
  --primary:        #1F7DBE;
  --primary-dark:   #165e93;
  --secondary-bg:   #F5F5F5;
  --white:          #FFFFFF;
  --acc-pink:       #F25C7F;
  --acc-yellow:     #FFD400;
  --acc-soft:       #E6B7C1;
  --txt:            #111111;
  --txt-2:          #6B7280;
  --border:         #E5E7EB;
  --ff-head:        'Syne', sans-serif;
  --ff-body:        'DM Sans', sans-serif;
  --mw:             1200px;
}

/* ── RESET ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }
body { font-family: var(--ff-body); color: var(--txt); background: var(--white); line-height: 1.6; overflow-x: hidden; }
img { display: block; max-width: 100%; height: auto; }
a { color: var(--primary); text-decoration: none; transition: opacity .2s; }
a:hover { opacity: .75; }
ul, ol { list-style: none; }
button { cursor: pointer; font-family: var(--ff-body); }
p { margin-bottom: 1rem; color: var(--txt-2); }
p:last-child { margin-bottom: 0; }
strong { color: var(--txt); }

/* ── TYPOGRAPHY ─────────────────────────────────────────────── */
h1,h2,h3,h4,h5,h6 { font-family: var(--ff-head); line-height: 1.1; letter-spacing: -.02em; color: var(--txt); }
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 800; }
h2 { font-size: clamp(1.7rem, 3vw, 2.6rem); font-weight: 700; }
h3 { font-size: clamp(1.2rem, 2vw, 1.7rem); font-weight: 700; }
h4 { font-size: 1.1rem; font-weight: 700; }
h5 { font-size: .95rem; font-weight: 600; }

/* ── LAYOUT ─────────────────────────────────────────────────── */
.container { max-width: var(--mw); margin: 0 auto; padding: 0 20px; }
.section    { padding: 80px 0; }
.section--lg { padding: 120px 0; }
.section--sm { padding: 48px 0; }

.section--dark { background: var(--txt); }
.section--dark h1,.section--dark h2,.section--dark h3,.section--dark h4,.section--dark h5 { color: #fff; }
.section--dark p { color: rgba(255,255,255,.75); }

.section--blue { background: var(--primary); }
.section--blue h1,.section--blue h2,.section--blue h3 { color: #fff; }
.section--blue p { color: rgba(255,255,255,.82); }

.section--gray { background: var(--secondary-bg); }

.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.two-col--rev { direction: rtl; }
.two-col--rev > * { direction: ltr; }

/* ── REVEAL ANIMATION ───────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ── NAVIGATION ─────────────────────────────────────────────── */
.nav {
  position: sticky; top: 0; z-index: 200;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.nav__inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 64px; max-width: var(--mw); margin: 0 auto; padding: 0 20px;
}
.nav__logo img { height: 38px; width: auto; }
.nav__links {
  display: flex; align-items: center; gap: 28px; list-style: none;
}
.nav__links a {
  color: var(--txt); font-size: .82rem; font-weight: 600;
  letter-spacing: .06em; text-transform: uppercase;
  transition: color .2s;
}
.nav__links a:hover, .nav__links a.active { color: var(--primary); opacity: 1; }
.nav__cta {
  background: var(--primary); color: #fff !important;
  padding: 9px 22px; font-weight: 700 !important;
  transition: background .2s !important;
}
.nav__cta:hover { background: var(--primary-dark); opacity: 1 !important; }
.nav__hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; padding: 6px;
}
.nav__hamburger span { display: block; width: 22px; height: 2px; background: var(--txt); transition: transform .3s; }

/* ── HERO ───────────────────────────────────────────────────── */
.hero {
  background: var(--primary); color: #fff;
  padding: 96px 0 80px; overflow: hidden;
  position: relative; min-height: 520px; display: flex; align-items: center;
}
.hero__inner {
  max-width: var(--mw); margin: 0 auto; padding: 0 20px;
  display: grid; grid-template-columns: 1fr 1.1fr; gap: 56px; align-items: center;
}
.hero__image { position: relative; }
.hero__image img {
  width: 100%; border-radius: 4px;
  box-shadow: 0 32px 72px rgba(0,0,0,.28);
  transform: translateY(16px);
}
.hero__content { position: relative; z-index: 2; }
.hero__label {
  font-size: .7rem; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: rgba(255,255,255,.65);
  margin-bottom: 14px;
}
.hero__title { color: #fff; margin-bottom: 20px; }
.hero__text {
  color: rgba(255,255,255,.86); font-size: 1.05rem;
  line-height: 1.75; margin-bottom: 36px; max-width: 500px;
}
.hero__cta {
  display: inline-flex; align-items: center; gap: 8px;
  color: #fff; font-family: var(--ff-head); font-weight: 700;
  font-size: .88rem; letter-spacing: .08em; text-transform: uppercase;
  border-bottom: 2px solid rgba(255,255,255,.35); padding-bottom: 3px;
  transition: border-color .2s;
}
.hero__cta:hover { border-color: #fff; opacity: 1; }
.hero__badges { display: flex; gap: 14px; margin-top: 32px; flex-wrap: wrap; }
.hero__badge {
  font-size: .75rem; font-weight: 600; letter-spacing: .05em;
  padding: 6px 14px; border: 1px solid rgba(255,255,255,.3);
  color: rgba(255,255,255,.8); text-transform: uppercase;
}

/* ── ROTATING FACT BANNER ───────────────────────────────────── */
.fact-banner { background: var(--acc-yellow); padding: 14px 0; }
.fact-banner__inner {
  max-width: var(--mw); margin: 0 auto; padding: 0 20px;
  display: flex; align-items: center; gap: 12px; justify-content: center;
}
.fact-banner__label {
  font-size: .7rem; font-weight: 800; letter-spacing: .1em;
  text-transform: uppercase; color: var(--txt); flex-shrink: 0;
}
.fact-banner__text { font-size: .88rem; font-weight: 600; color: var(--txt); }

/* ── SECTION HEADER ─────────────────────────────────────────── */
.sec-head { text-align: center; margin-bottom: 60px; }
.sec-head--left { text-align: left; }
.sec-head__label {
  font-size: .7rem; font-weight: 800; letter-spacing: .12em;
  text-transform: uppercase; color: var(--primary); margin-bottom: 10px;
}
.sec-head h2 { color: var(--txt); margin-bottom: 14px; }
.sec-head p { max-width: 560px; margin: 0 auto; font-size: .97rem; }
.sec-head--left p { margin: 0; }

/* ── FEATURES GRID ──────────────────────────────────────────── */
.features-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 2px; background: var(--border);
}
.feat-card {
  background: var(--white); padding: 40px 36px;
  transition: background .2s;
}
.feat-card:hover { background: var(--secondary-bg); }
.feat-card__img { width: 72px; height: 72px; object-fit: contain; margin-bottom: 22px; }
.feat-card__title { color: var(--txt); margin-bottom: 10px; font-size: 1.05rem; }
.feat-card__text { font-size: .9rem; line-height: 1.65; margin: 0; }

/* ── STATS GRID ─────────────────────────────────────────────── */
.stats-grid {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 2px; background: var(--border); margin-bottom: 72px;
}
.stat-item { background: var(--white); padding: 36px 24px; text-align: center; }
.stat-item__num {
  font-family: var(--ff-head); font-size: 2.6rem; font-weight: 800;
  color: var(--primary); line-height: 1; margin-bottom: 8px;
}
.stat-item__lbl { font-size: .75rem; text-transform: uppercase; letter-spacing: .1em; color: var(--txt-2); }

/* ── NEWS GRID ──────────────────────────────────────────────── */
.filter-bar {
  display: flex; justify-content: center; gap: 28px;
  flex-wrap: wrap; margin-bottom: 48px;
}
.filter-bar__item {
  font-size: .75rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--txt-2); cursor: pointer;
  padding-bottom: 4px; border-bottom: 2px solid transparent;
  transition: color .2s, border-color .2s;
}
.filter-bar__item:hover, .filter-bar__item.active {
  color: var(--acc-pink); border-color: var(--acc-pink);
}
.news-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 24px;
}
.news-card { overflow: hidden; border-radius: 0; transition: transform .2s; }
.news-card:hover { transform: translateY(-5px); }
.news-card__img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.news-card__body { padding: 20px 22px 24px; background: var(--secondary-bg); }
.news-card__cat {
  font-size: .68rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--primary); margin-bottom: 8px;
}
.news-card__title {
  font-family: var(--ff-head); font-size: .97rem; font-weight: 700;
  color: var(--txt); line-height: 1.35; margin-bottom: 10px;
}
.news-card__date { font-size: .78rem; color: var(--txt-2); }
.news-card__link { color: inherit; display: block; }
.news-card__link:hover .news-card__title { color: var(--primary); }
.news-card__link:hover { opacity: 1; }

/* ── CRYPTO SECTION ─────────────────────────────────────────── */
.coin-row { display: flex; gap: 16px; margin-top: 28px; flex-wrap: wrap; }
.coin-badge {
  display: flex; align-items: center; gap: 10px;
  padding: 14px 22px; background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.18);
}
.coin-badge__sym {
  font-family: var(--ff-head); font-size: 1.2rem; font-weight: 800;
  color: var(--acc-yellow);
}
.coin-badge__nm { font-size: .82rem; color: rgba(255,255,255,.7); }

/* ── HARM REDUCTION CARDS ───────────────────────────────────── */
.harm-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 20px; }
.harm-card { padding: 32px; border-left: 4px solid var(--acc-pink); background: var(--white); }
.harm-card__num {
  font-family: var(--ff-head); font-size: 2.2rem; font-weight: 800;
  color: var(--acc-pink); opacity: .25; line-height: 1; margin-bottom: 10px;
}
.harm-card h4 { color: var(--txt); margin-bottom: 8px; }
.harm-card p { font-size: .9rem; margin: 0; }

/* ── OPSEC CARDS ────────────────────────────────────────────── */
.opsec-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.opsec-card { padding: 36px; background: var(--white); border-top: 4px solid var(--primary); }
.opsec-card__icon { font-size: 2rem; margin-bottom: 14px; }
.opsec-card h4 { color: var(--txt); margin-bottom: 10px; }
.opsec-card p { font-size: .9rem; margin: 0; }

/* ── WARNING BOXES ──────────────────────────────────────────── */
.warning-box {
  background: var(--acc-pink); color: #fff;
  padding: 24px 32px; margin-bottom: 28px;
}
.warning-box h3,.warning-box h4 { color: #fff; margin-bottom: 6px; }
.warning-box p { color: rgba(255,255,255,.9); margin: 0; }

.info-box {
  border-left: 4px solid var(--primary);
  background: rgba(31,125,190,.07);
  padding: 20px 28px; margin: 28px 0;
}
.info-box p { color: var(--txt); margin: 0; font-size: .95rem; }

/* ── ONION LINKS ────────────────────────────────────────────── */
.onion-link-box {
  background: var(--txt); color: #fff; padding: 18px 24px;
  margin-bottom: 10px; cursor: pointer; transition: background .2s;
  display: flex; align-items: flex-start; justify-content: space-between; gap: 20px;
}
.onion-link-box:hover { background: #1a1a1a; }
.onion-link-box__url {
  font-family: 'Courier New', monospace; font-size: .82rem;
  word-break: break-all; flex: 1; color: var(--acc-yellow); line-height: 1.6;
}
.onion-link-box__copy {
  flex-shrink: 0; font-size: .7rem; text-transform: uppercase;
  letter-spacing: .08em; color: rgba(255,255,255,.4); white-space: nowrap; padding-top: 2px;
}
.onion-link-box.copied .onion-link-box__copy { color: var(--acc-yellow); }

/* ── LGN TABS ───────────────────────────────────────────────── */
.lgn-tabs { display: flex; gap: 2px; background: var(--border); margin-bottom: 32px; flex-wrap: wrap; }
.lgn-tab {
  padding: 14px 26px; background: var(--white); border: none;
  font-family: var(--ff-head); font-size: .8rem; font-weight: 700;
  letter-spacing: .07em; text-transform: uppercase; color: var(--txt-2);
  transition: all .2s; cursor: pointer;
}
.lgn-tab.active { background: var(--primary); color: #fff; }
.lgn-panel { display: none; }
.lgn-panel.active { display: block; }

/* ── PGP BLOCK ──────────────────────────────────────────────── */
.pgp-block {
  background: #0d1117; color: #00ff41;
  font-family: 'Courier New', monospace; font-size: .75rem;
  padding: 28px 24px; overflow-x: auto; white-space: pre; line-height: 1.6;
  border: 1px solid #333; border-radius: 2px;
}

/* ── TRUST BAR ──────────────────────────────────────────────── */
.trust-bar {
  display: flex; justify-content: center; gap: 48px;
  flex-wrap: wrap; padding: 36px 0;
}
.trust-item { display: flex; align-items: center; gap: 10px; }
.trust-item__icon { font-size: 1.4rem; }
.trust-item__text { font-size: .85rem; font-weight: 600; color: var(--txt); }

/* ── FAQ ────────────────────────────────────────────────────── */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  display: flex; justify-content: space-between; align-items: center;
  padding: 22px 0; cursor: pointer; user-select: none;
  font-family: var(--ff-head); font-weight: 700; font-size: .97rem; color: var(--txt);
}
.faq-q::after { content: '+'; font-size: 1.4rem; color: var(--primary); transition: transform .3s; flex-shrink: 0; }
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s ease, padding .3s; }
.faq-item.open .faq-a { max-height: 600px; padding-bottom: 22px; }
.faq-a p { font-size: .93rem; line-height: 1.75; }

/* ── FOOTER ─────────────────────────────────────────────────── */
.footer { background: var(--txt); color: #fff; padding: 80px 0 0; }
.footer__grid {
  max-width: var(--mw); margin: 0 auto; padding: 0 20px 60px;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 56px;
}
.footer__brand img { height: 34px; width: auto; filter: brightness(0) invert(1); margin-bottom: 18px; }
.footer__brand p { font-size: .85rem; color: rgba(255,255,255,.45); line-height: 1.7; }
.footer__col-title {
  font-family: var(--ff-head); font-size: .68rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.38);
  margin-bottom: 20px;
}
.footer__links { display: flex; flex-direction: column; gap: 11px; }
.footer__links a { color: rgba(255,255,255,.58); font-size: .85rem; transition: color .2s; }
.footer__links a:hover { color: #fff; opacity: 1; }
.footer__bottom {
  max-width: var(--mw); margin: 0 auto;
  padding: 24px 20px; border-top: 1px solid rgba(255,255,255,.1);
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 14px;
}
.footer__disclaimer { font-size: .75rem; color: rgba(255,255,255,.32); line-height: 1.6; max-width: 620px; }
.footer__meta { font-size: .75rem; color: rgba(255,255,255,.32); }

/* ── BREADCRUMB ─────────────────────────────────────────────── */
.breadcrumb { padding: 16px 0; border-bottom: 1px solid var(--border); }
.breadcrumb__inner {
  max-width: var(--mw); margin: 0 auto; padding: 0 20px;
  display: flex; gap: 8px; align-items: center; font-size: .8rem; color: var(--txt-2);
}
.breadcrumb__inner a { color: var(--txt-2); }
.breadcrumb__inner a:hover { color: var(--primary); opacity: 1; }
.breadcrumb__sep { color: #D1D5DB; }

/* ── PAGE HERO (non-home) ───────────────────────────────────── */
.page-hero {
  background: var(--primary); color: #fff;
  padding: 72px 0 60px;
}
.page-hero__inner { max-width: var(--mw); margin: 0 auto; padding: 0 20px; max-width: 860px; }
.page-hero__cat {
  font-size: .7rem; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: rgba(255,255,255,.6); margin-bottom: 14px;
}
.page-hero h1 { color: #fff; margin-bottom: 18px; }
.page-hero__lead { font-size: 1.05rem; color: rgba(255,255,255,.82); line-height: 1.7; margin: 0; }

/* ── ARTICLE BODY ───────────────────────────────────────────── */
.article-wrap { max-width: 860px; margin: 0 auto; padding: 72px 20px; }
.article-wrap h2 { margin: 56px 0 20px; font-size: 1.6rem; }
.article-wrap h3 { margin: 36px 0 14px; font-size: 1.2rem; }
.article-wrap p { font-size: .98rem; line-height: 1.82; color: #374151; margin-bottom: 1.1rem; }
.article-wrap ul,.article-wrap ol { padding-left: 1.4rem; margin-bottom: 1.2rem; }
.article-wrap li { font-size: .98rem; line-height: 1.8; color: #374151; margin-bottom: .35rem; }
.article-wrap ul li { list-style: disc; }
.article-wrap ol li { list-style: decimal; }
.article-wrap img { width: 100%; margin: 32px 0; border-radius: 2px; }
.article-wrap a { color: var(--primary); text-decoration: underline; text-underline-offset: 3px; }
.article-wrap a:hover { opacity: .75; }

/* ── TABS (generic) ─────────────────────────────────────────── */
.tabs { display: flex; gap: 2px; background: var(--border); margin-bottom: 28px; flex-wrap: wrap; }
.tab-btn {
  padding: 12px 20px; background: var(--white); border: none;
  font-size: .82rem; font-weight: 600; color: var(--txt-2);
  font-family: var(--ff-body); cursor: pointer; transition: all .2s;
  letter-spacing: .03em;
}
.tab-btn.active,.tab-btn:hover { background: var(--primary); color: #fff; }
.tab-panel { display: none; }
.tab-panel.active { display: block; }

/* ── RESOURCE LINKS ─────────────────────────────────────────── */
.resource-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 14px; margin-top: 28px; }
.resource-link {
  display: flex; align-items: center; gap: 12px;
  padding: 18px 20px; background: var(--secondary-bg); color: var(--txt);
  font-weight: 500; font-size: .9rem; transition: background .2s;
  border-left: 3px solid var(--primary);
}
.resource-link:hover { background: var(--border); opacity: 1; color: var(--primary); }
.resource-link__icon { font-size: 1.1rem; flex-shrink: 0; }

/* ── DRUG GRID ──────────────────────────────────────────────── */
.drug-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.drug-card { background: var(--secondary-bg); padding: 28px; border-top: 4px solid var(--acc-pink); }
.drug-card h4 { color: var(--txt); margin-bottom: 10px; }
.drug-card p { font-size: .88rem; margin: 0; }

/* ── STEP LIST ──────────────────────────────────────────────── */
.step-list { counter-reset: steps; padding: 0; list-style: none; }
.step-item {
  counter-increment: steps; display: flex; gap: 24px;
  padding: 28px 0; border-bottom: 1px solid var(--border); align-items: flex-start;
}
.step-item::before {
  content: counter(steps, decimal-leading-zero);
  font-family: var(--ff-head); font-size: 2rem; font-weight: 800;
  color: var(--primary); opacity: .28; flex-shrink: 0; line-height: 1; width: 56px;
}
.step-item h4 { color: var(--txt); margin-bottom: 8px; }
.step-item p { font-size: .9rem; margin: 0; }

/* ── DIAGRAMS ───────────────────────────────────────────────── */
.chart-bar-wrap { margin: 12px 0; }
.chart-bar-lbl { font-size: .82rem; font-weight: 600; color: var(--txt); margin-bottom: 6px; }
.chart-bar-track { background: var(--border); height: 10px; border-radius: 0; overflow: hidden; }
.chart-bar-fill { height: 100%; background: var(--primary); transition: width 1.2s ease; }
.chart-bar-fill--yellow { background: var(--acc-yellow); }
.chart-bar-fill--pink { background: var(--acc-pink); }

/* ── MARKET STATS CHART ─────────────────────────────────────── */
.mstats-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2px; background: var(--border); margin: 32px 0; }
.mstats-item { background: var(--white); padding: 28px 20px; text-align: center; }
.mstats-item__val { font-family: var(--ff-head); font-size: 2rem; font-weight: 800; color: var(--primary); line-height: 1; margin-bottom: 6px; }
.mstats-item__lbl { font-size: .72rem; text-transform: uppercase; letter-spacing: .1em; color: var(--txt-2); }

/* ── CTR BUTTON ─────────────────────────────────────────────── */
.cta-block { padding: 72px 0; text-align: center; background: var(--primary); }
.cta-block h2,.cta-block p { color: rgba(255,255,255,.9); }
.cta-block h2 { color: #fff; margin-bottom: 14px; }
.cta-block p { margin-bottom: 36px; }
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 36px; background: #fff; color: var(--primary);
  font-family: var(--ff-head); font-weight: 800; font-size: .9rem;
  letter-spacing: .06em; text-transform: uppercase; transition: opacity .2s;
}
.btn:hover { opacity: .85; }
.btn--dark { background: var(--txt); color: #fff; }
.btn--outline { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,.5); }
.btn--outline:hover { border-color: #fff; opacity: 1; }

/* ── TABLE ──────────────────────────────────────────────────── */
.tbl-wrap { overflow-x: auto; margin: 24px 0; }
table { width: 100%; border-collapse: collapse; font-size: .9rem; }
th { background: var(--txt); color: #fff; padding: 12px 16px; text-align: left; font-family: var(--ff-head); font-weight: 700; font-size: .82rem; letter-spacing: .05em; text-transform: uppercase; }
td { padding: 12px 16px; border-bottom: 1px solid var(--border); color: var(--txt-2); }
tr:last-child td { border-bottom: none; }
tr:hover td { background: var(--secondary-bg); }

/* ── PAGE ARTICLE HERO IMAGE ────────────────────────────────── */
.article-hero-img { width: 100%; aspect-ratio: 16/9; object-fit: cover; display: block; }

/* ── GREEN/RED INDICATORS ───────────────────────────────────── */
.tag { display: inline-block; padding: 4px 10px; font-size: .7rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }
.tag--green { background: #d1fae5; color: #065f46; }
.tag--red { background: #fee2e2; color: #991b1b; }
.tag--blue { background: rgba(31,125,190,.12); color: var(--primary); }
.tag--yellow { background: #fef9c3; color: #854d0e; }

/* ── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .features-grid { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 768px) {
  .nav__links { display: none; }
  .nav__hamburger { display: flex; }
  .nav__links.open {
    display: flex; flex-direction: column;
    position: absolute; top: 64px; left: 0; right: 0;
    background: var(--white); padding: 20px;
    border-bottom: 1px solid var(--border); gap: 16px; z-index: 200;
  }
  .hero__inner { grid-template-columns: 1fr; }
  .hero__image { display: none; }
  .two-col { grid-template-columns: 1fr; gap: 40px; }
  .features-grid { grid-template-columns: 1fr; }
  .news-grid { grid-template-columns: repeat(2,1fr); }
  .opsec-grid { grid-template-columns: 1fr; }
  .harm-grid { grid-template-columns: 1fr; }
  .drug-grid { grid-template-columns: repeat(2,1fr); }
  .resource-grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .trust-bar { gap: 28px; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .mstats-grid { grid-template-columns: repeat(2,1fr); }
  .section { padding: 56px 0; }
  .section--lg { padding: 72px 0; }
}

@media (max-width: 480px) {
  .news-grid { grid-template-columns: 1fr; }
  .drug-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .mstats-grid { grid-template-columns: 1fr 1fr; }
}
