/* ============================================================
   NEXUS WEBSITE — NEON CYBER EDITORIAL DESIGN SYSTEM
   enter.market--nexus.com
   ============================================================ */

/* ---------- RESET & BASE ----------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background-color: #131318;
  color: #C0C0C8;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 14px;
  line-height: 1.85;
  min-height: 100vh;
}

a { color: #00E5CC; text-decoration: none; transition: color 0.15s; }
a:hover { color: #00FFDD; }

strong { font-weight: 700; color: #E8E8EC; }
em { font-style: italic; }

img { max-width: 100%; display: block; }

ul, ol { padding-left: 20px; }

/* ---------- TYPOGRAPHY ------------------------------------- */
/* Hero heading */
.hero-heading {
  font-family: 'Courier New', 'Share Tech Mono', monospace;
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  color: #00E5CC;
  text-shadow:
    0 0 12px rgba(0,229,204,0.7),
    0 0 28px rgba(0,229,204,0.4),
    0 0 56px rgba(0,229,204,0.2);
  letter-spacing: 0.03em;
  line-height: 1.15;
}

/* Section headings */
.h2-cyan {
  font-family: 'Courier New', monospace;
  font-size: clamp(16px, 2vw, 22px);
  font-weight: 700;
  text-transform: uppercase;
  color: #00E5CC;
  text-shadow:
    0 0 8px rgba(0,229,204,0.6),
    0 0 20px rgba(0,229,204,0.3);
  letter-spacing: 0.06em;
  margin-bottom: 16px;
}

.h2-magenta {
  font-family: 'Courier New', monospace;
  font-size: clamp(16px, 2vw, 22px);
  font-weight: 700;
  text-transform: uppercase;
  color: #E8008A;
  text-shadow:
    0 0 8px rgba(232,0,138,0.6),
    0 0 20px rgba(232,0,138,0.3);
  letter-spacing: 0.06em;
  margin-bottom: 16px;
}

.h2-green {
  font-family: 'Courier New', monospace;
  font-size: clamp(16px, 2vw, 22px);
  font-weight: 700;
  text-transform: uppercase;
  color: #00E84E;
  text-shadow:
    0 0 8px rgba(0,232,78,0.6),
    0 0 20px rgba(0,232,78,0.3);
  letter-spacing: 0.06em;
  margin-bottom: 16px;
}

/* H3 sub-headings */
.h3-cyan {
  font-family: 'Courier New', monospace;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  color: #00E5CC;
  text-shadow: 0 0 6px rgba(0,229,204,0.5);
  letter-spacing: 0.08em;
  margin-bottom: 10px;
  margin-top: 20px;
}

.h3-magenta {
  font-family: 'Courier New', monospace;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  color: #E8008A;
  text-shadow: 0 0 6px rgba(232,0,138,0.5);
  letter-spacing: 0.08em;
  margin-bottom: 10px;
  margin-top: 20px;
}

.h3-green {
  font-family: 'Courier New', monospace;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  color: #00E84E;
  text-shadow: 0 0 6px rgba(0,232,78,0.5);
  letter-spacing: 0.08em;
  margin-bottom: 10px;
  margin-top: 20px;
}

.body-text {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 14px;
  line-height: 1.85;
  color: #C0C0C8;
  text-align: center;
}

.body-text-left {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 14px;
  line-height: 1.85;
  color: #C0C0C8;
  text-align: left;
}

.text-muted { color: #888892; }
.text-ghost { color: #555560; }

/* ---------- NAVIGATION ------------------------------------- */
.site-nav {
  background: #131318;
  border-bottom: 1px solid rgba(0,229,204,0.12);
  padding: 0 40px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 52px;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-logo img {
  height: 32px;
  width: auto;
  display: block;
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.nav-logo-mark {
  font-family: 'Courier New', monospace;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.28em;
  color: #E8E8EC;
}

.nav-logo-mark span { color: #00E5CC; }

.nav-logo-sub {
  font-size: 8px;
  letter-spacing: 0.18em;
  color: #555560;
  text-transform: uppercase;
  margin-top: 3px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  padding: 0;
  flex-wrap: nowrap;
}

.nav-links a {
  color: #C0C0C8;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 10px;
  transition: color 0.15s;
  white-space: nowrap;
}

.nav-links a:hover { color: #00E5CC; }
.nav-links a.active { color: #00FFDD; }

.nav-links .nav-btn {
  background: rgba(0,229,204,0.08);
  border: 1px solid rgba(0,229,204,0.28);
  border-radius: 4px;
  padding: 5px 12px;
  color: #00E5CC;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: background 0.15s, color 0.15s;
}

.nav-links .nav-btn:hover {
  background: rgba(0,229,204,0.16);
  color: #00FFDD;
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.nav-toggle span {
  width: 22px;
  height: 2px;
  background: #C0C0C8;
  border-radius: 2px;
  display: block;
  transition: background 0.15s;
}

/* ---------- PAGE WRAPPER ----------------------------------- */
.page-wrapper {
  padding-top: 52px;
}

/* ---------- HERO BLOCK ------------------------------------- */
.hero-block {
  padding: 80px 60px 60px;
  text-align: center;
}

.hero-block .hero-heading {
  margin-bottom: 0;
}

/* ---------- PANEL SYSTEM ----------------------------------- */
.panel-row {
  margin: 0 32px 24px;
}

/* Full-width panel */
.panel {
  background: #1E1E24;
  border-radius: 10px;
  padding: 40px 48px;
}

.panel-cyan {
  border: 1px solid rgba(0,229,204,0.18);
}

.panel-magenta {
  border: 1px solid rgba(232,0,138,0.18);
}

.panel-green {
  border: 1px solid rgba(0,232,78,0.18);
}

.panel-default {
  border: 1px solid rgba(255,255,255,0.06);
}

/* Two-column grid */
.panel-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.panel-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* Centered panel modifier */
.panel-centered {
  text-align: center;
}

.panel-centered .body-text {
  max-width: 680px;
  margin: 0 auto;
}

/* ---------- SPLIT PANEL (screenshot + text) --------------- */
.split-panel {
  background: #1E1E24;
  border: 1px solid rgba(0,229,204,0.18);
  border-radius: 10px;
  margin: 0 32px 24px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.split-panel-left {
  background: #0E0E13;
  border-right: 1px solid rgba(255,255,255,0.06);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.split-panel-nav {
  background: #1A1A1F;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 0 14px;
  height: 36px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Courier New', monospace;
  font-size: 10px;
  color: #555560;
  flex-shrink: 0;
}

.split-panel-nav-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #333338;
  flex-shrink: 0;
}

.split-panel-nav-dot.green { background: rgba(0,232,78,0.5); }
.split-panel-nav-dot.yellow { background: rgba(255,200,0,0.4); }
.split-panel-nav-dot.red { background: rgba(255,60,60,0.4); }

.split-panel-img {
  flex: 1;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.split-panel-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.split-panel-right {
  padding: 44px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}

/* ---------- SECTION DIVIDER -------------------------------- */
.section-rule-cyan {
  border: none;
  border-top: 1px solid rgba(0,229,204,0.2);
  margin: 28px 0 0;
}

.section-rule-magenta {
  border: none;
  border-top: 1px solid rgba(232,0,138,0.2);
  margin: 28px 0 0;
}

.section-rule-green {
  border: none;
  border-top: 1px solid rgba(0,232,78,0.2);
  margin: 28px 0 0;
}

/* ---------- BULLET LISTS ----------------------------------- */
.bullet-list {
  list-style: disc;
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 16px;
  text-align: left;
}

.bullet-list li {
  color: #C0C0C8;
  font-size: 14px;
  line-height: 1.75;
}

.bullet-list .nested {
  list-style: disc;
  padding-left: 20px;
  margin-top: 6px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.bullet-list .nested li {
  font-size: 13px;
}

/* ---------- STAT STRIP ------------------------------------- */
.stat-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 28px;
  padding-top: 24px;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-family: 'Courier New', monospace;
  font-size: 28px;
  font-weight: 700;
  color: #00E5CC;
  text-shadow: 0 0 10px rgba(0,229,204,0.4);
  display: block;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #888892;
}

/* ---------- FEATURE CARDS ---------------------------------- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.feature-card {
  background: #1E1E24;
  border-radius: 10px;
  padding: 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.feature-card-img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: 6px;
  background: #111116;
}

.feature-card-title {
  font-family: 'Courier New', monospace;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 4px;
}

.feature-card-body {
  font-size: 13px;
  line-height: 1.7;
  color: #C0C0C8;
}

/* ---------- NEWS CARDS ------------------------------------- */
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.news-card {
  background: #1E1E24;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.15s;
}

.news-card:hover {
  border-color: rgba(0,229,204,0.2);
}

.news-card-img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  background: #111116;
}

.news-card-body {
  padding: 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.news-card-date {
  font-family: 'Courier New', monospace;
  font-size: 10px;
  color: #555560;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.news-card-title {
  font-family: 'Courier New', monospace;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #E8E8EC;
  line-height: 1.4;
}

.news-card-title a {
  color: #E8E8EC;
  transition: color 0.15s;
}

.news-card-title a:hover { color: #00E5CC; }

.news-card-excerpt {
  font-size: 12px;
  color: #888892;
  line-height: 1.65;
}

.news-card-tag {
  font-size: 10px;
  font-family: 'Courier New', monospace;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 3px 8px;
  border-radius: 3px;
  display: inline-block;
  margin-top: auto;
}

.tag-cyan { color: #00E5CC; background: rgba(0,229,204,0.08); border: 1px solid rgba(0,229,204,0.2); }
.tag-magenta { color: #E8008A; background: rgba(232,0,138,0.08); border: 1px solid rgba(232,0,138,0.2); }
.tag-green { color: #00E84E; background: rgba(0,232,78,0.08); border: 1px solid rgba(0,232,78,0.2); }

/* ---------- FAQ -------------------------------------------- */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 20px;
}

details.faq-item {
  background: #222228;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 8px;
  overflow: hidden;
}

details.faq-item[open] {
  border-color: rgba(0,229,204,0.18);
}

details.faq-item summary {
  font-family: 'Courier New', monospace;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #E8E8EC;
  padding: 16px 20px;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  user-select: none;
}

details.faq-item summary::after {
  content: '+';
  color: #00E5CC;
  font-size: 18px;
  font-weight: 400;
  flex-shrink: 0;
}

details.faq-item[open] summary::after {
  content: '−';
}

details.faq-item summary::-webkit-details-marker { display: none; }

.faq-answer {
  padding: 0 20px 18px;
  font-size: 14px;
  line-height: 1.75;
  color: #C0C0C8;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 16px;
  margin-top: 0;
}

/* ---------- ONION LINK CARDS ------------------------------- */
.onion-card {
  background: #111116;
  border: 1px solid rgba(0,229,204,0.18);
  border-radius: 8px;
  padding: 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.onion-label {
  font-family: 'Courier New', monospace;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #00E5CC;
}

.onion-link-text {
  font-family: 'Courier New', monospace;
  font-size: 12px;
  color: #E8E8EC;
  word-break: break-all;
  line-height: 1.6;
}

.copy-btn {
  font-family: 'Courier New', monospace;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #00E5CC;
  background: rgba(0,229,204,0.08);
  border: 1px solid rgba(0,229,204,0.2);
  border-radius: 4px;
  padding: 5px 12px;
  cursor: pointer;
  transition: background 0.15s;
  align-self: flex-start;
}

.copy-btn:hover { background: rgba(0,229,204,0.15); }
.copy-btn.copied { color: #00E84E; border-color: rgba(0,232,78,0.3); background: rgba(0,232,78,0.08); }

/* ---------- PGP KEY BLOCK ---------------------------------- */
.pgp-block {
  background: #0E0E13;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 6px;
  padding: 20px;
  font-family: 'Courier New', monospace;
  font-size: 11px;
  line-height: 1.6;
  color: #888892;
  overflow-x: auto;
  white-space: pre;
  word-break: break-all;
  white-space: pre-wrap;
}

/* ---------- BLOCKQUOTE ------------------------------------- */
blockquote {
  border-left: 3px solid #00E5CC;
  padding: 14px 20px;
  margin: 20px 0;
  background: rgba(0,229,204,0.04);
  border-radius: 0 6px 6px 0;
}

blockquote p {
  font-size: 14px;
  color: #C0C0C8;
  font-style: italic;
  margin: 0;
}

/* ---------- BREADCRUMB ------------------------------------- */
.breadcrumb {
  font-family: 'Courier New', monospace;
  font-size: 11px;
  color: #555560;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.breadcrumb a { color: #888892; transition: color 0.15s; }
.breadcrumb a:hover { color: #00E5CC; }
.breadcrumb span { color: #555560; }

/* ---------- ARTICLE POST ----------------------------------- */
.article-header {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.article-date {
  font-family: 'Courier New', monospace;
  font-size: 11px;
  color: #555560;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.article-img {
  width: 100%;
  aspect-ratio: 16/6;
  object-fit: cover;
  border-radius: 8px;
  margin: 24px 0;
  background: #111116;
}

.article-body p {
  font-size: 14px;
  line-height: 1.85;
  color: #C0C0C8;
  margin-bottom: 20px;
}

.article-body h2 { margin: 32px 0 14px; }
.article-body h3 { margin: 24px 0 10px; }

/* ---------- FOOTER ----------------------------------------- */
.site-footer {
  background: #0E0E13;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 40px 40px 28px;
  margin-top: 60px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 32px;
}

.footer-brand .nav-logo-mark {
  font-size: 16px;
}

.footer-brand p {
  font-size: 12px;
  color: #555560;
  line-height: 1.7;
  margin-top: 12px;
}

.footer-col h4 {
  font-family: 'Courier New', monospace;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #888892;
  margin-bottom: 14px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-col ul li a {
  font-size: 12px;
  color: #555560;
  transition: color 0.15s;
}

.footer-col ul li a:hover { color: #00E5CC; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-disclaimer {
  font-size: 11px;
  color: #555560;
  line-height: 1.6;
  max-width: 600px;
}

.footer-meta {
  font-family: 'Courier New', monospace;
  font-size: 10px;
  color: #333338;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ---------- MARKET STATS CHART ----------------------------- */
.chart-bar-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 20px;
}

.chart-bar-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.chart-bar-label {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  font-family: 'Courier New', monospace;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #888892;
}

.chart-bar-track {
  height: 6px;
  background: #111116;
  border-radius: 3px;
  overflow: hidden;
}

.chart-bar-fill {
  height: 100%;
  border-radius: 3px;
  transition: width 1.2s cubic-bezier(0.4,0,0.2,1);
}

.fill-cyan { background: #00E5CC; box-shadow: 0 0 8px rgba(0,229,204,0.5); }
.fill-magenta { background: #E8008A; box-shadow: 0 0 8px rgba(232,0,138,0.5); }
.fill-green { background: #00E84E; box-shadow: 0 0 8px rgba(0,232,78,0.5); }

/* ---------- OUTBOUND LINK CARDS ---------------------------- */
.resource-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 16px;
}

.resource-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: #111116;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 6px;
  padding: 14px 16px;
}

.resource-icon {
  font-family: 'Courier New', monospace;
  font-size: 16px;
  color: #00E5CC;
  flex-shrink: 0;
  width: 24px;
  text-align: center;
}

.resource-body {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.resource-title {
  font-family: 'Courier New', monospace;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #E8E8EC;
}

.resource-title a { color: #E8E8EC; }
.resource-title a:hover { color: #00E5CC; }

.resource-desc {
  font-size: 12px;
  color: #888892;
  line-height: 1.5;
}

/* ---------- WARNING BANNER --------------------------------- */
.warning-banner {
  background: rgba(232,0,138,0.06);
  border: 1px solid rgba(232,0,138,0.2);
  border-radius: 8px;
  padding: 16px 20px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin: 16px 0;
}

.warning-icon {
  font-family: 'Courier New', monospace;
  font-size: 16px;
  color: #E8008A;
  flex-shrink: 0;
  margin-top: 2px;
}

.warning-text {
  font-size: 13px;
  color: #C0C0C8;
  line-height: 1.65;
}

/* ---------- INFO BANNER ------------------------------------ */
.info-banner {
  background: rgba(0,229,204,0.04);
  border: 1px solid rgba(0,229,204,0.18);
  border-radius: 8px;
  padding: 16px 20px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin: 16px 0;
}

.info-icon {
  font-family: 'Courier New', monospace;
  font-size: 16px;
  color: #00E5CC;
  flex-shrink: 0;
  margin-top: 2px;
}

.info-text {
  font-size: 13px;
  color: #C0C0C8;
  line-height: 1.65;
}

/* ---------- CONTENT MAX WIDTH ------------------------------ */
.content-max {
  max-width: 800px;
  margin: 0 auto;
}

/* ---------- SPACING HELPERS -------------------------------- */
.mt-0 { margin-top: 0; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-20 { margin-top: 20px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mb-20 { margin-bottom: 20px; }
.gap-20 { gap: 20px; }

/* ---------- PAGE SECTION WRAPPER --------------------------- */
.page-section {
  margin: 0 32px 24px;
}

/* ---------- INLINE CODE ------------------------------------ */
code {
  font-family: 'Courier New', monospace;
  font-size: 12px;
  background: #111116;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 3px;
  padding: 1px 6px;
  color: #00E5CC;
}

pre {
  background: #0E0E13;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 6px;
  padding: 20px;
  overflow-x: auto;
  font-family: 'Courier New', monospace;
  font-size: 12px;
  color: #C0C0C8;
  line-height: 1.6;
  margin: 16px 0;
}

/* ---------- DRUG CARDS ------------------------------------- */
.drug-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 20px;
}

.drug-card {
  background: #222228;
  border-radius: 8px;
  padding: 24px 26px;
  border: 1px solid rgba(255,255,255,0.06);
}

/* ---------- SKIP LINK (accessibility) ---------------------- */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: #00E5CC;
  color: #131318;
  padding: 8px 16px;
  z-index: 9999;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  transition: top 0.15s;
}

.skip-link:focus { top: 0; }

/* ---------- RESPONSIVE ------------------------------------- */
@media (max-width: 960px) {
  .site-nav { padding: 0 20px; }
  .nav-links { display: none; }
  .nav-links.open { display: flex; flex-direction: column; position: absolute; top: 52px; left: 0; right: 0; background: #131318; border-bottom: 1px solid rgba(0,229,204,0.12); padding: 16px 20px; gap: 4px; }
  .nav-toggle { display: flex; }

  .hero-block { padding: 60px 24px 40px; }
  .panel-row { margin: 0 16px 20px; }
  .split-panel { margin: 0 16px 20px; grid-template-columns: 1fr; }
  .split-panel-left { min-height: 220px; }
  .panel { padding: 28px 24px; }
  .panel-grid-2 { grid-template-columns: 1fr; }
  .panel-grid-3 { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .news-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-strip { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .drug-grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .feature-grid { grid-template-columns: 1fr; }
  .news-grid { grid-template-columns: 1fr; }
  .stat-strip { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .page-section { margin: 0 12px 16px; }
  .panel { padding: 20px 18px; }
}
