/* ============================================================
   NEXUS DARKNET STORE — BRUTALIST CREATIVE AGENCY CSS
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Barlow+Condensed:ital,wght@0,700;0,900;1,700&family=Inter:wght@400;500;600;700&display=swap');

/* ─── CSS Variables ─── */
:root {
  --orange: #FF5A2F;
  --orange-alt: #FF4D2E;
  --orange-light: #FF6A3D;
  --black: #000000;
  --dark: #1A1A1A;
  --white: #FFFFFF;
  --gray: #888888;
  --light-gray: #F0F0F0;
  --font-display: 'Bebas Neue', 'Barlow Condensed', Impact, sans-serif;
  --font-body: 'Inter', -apple-system, sans-serif;
  --frame-size: 10px;
  --blob-radius: 60px;
  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ─── Reset ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--black);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ─── Page Frame ─── */
.page-frame {
  min-height: 100vh;
  border: var(--frame-size) solid var(--black);
  position: relative;
  overflow: hidden;
}

/* ─── Navigation ─── */
.nav-bar {
  position: fixed;
  top: var(--frame-size);
  left: var(--frame-size);
  right: var(--frame-size);
  z-index: 1000;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 40px;
  border-bottom: 2px solid rgba(255,255,255,0.1);
}
.nav-logo img { height: 40px; width: auto; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--orange); }
.nav-links a.active { color: var(--white); }
.nav-login {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--orange);
  color: var(--white);
  padding: 9px 22px;
  border-radius: 999px;
  transition: background var(--transition), transform var(--transition);
  border: none;
  cursor: pointer;
  display: inline-block;
}
.nav-login:hover { background: var(--orange-alt); transform: translateY(-1px); }

.nav-mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav-mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
}

/* ─── Page Content Offset ─── */
.page-content {
  padding-top: 70px;
}

/* ─── Hero Section ─── */
.hero {
  background: var(--orange);
  min-height: calc(100vh - 70px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  position: relative;
  overflow: hidden;
}

.hero-left {
  display: flex;
  align-items: center;
  padding: 100px 60px 100px 60px;
  position: relative;
  z-index: 2;
}

.hero-blob {
  background: var(--black);
  border-radius: 80px 80px 80px 20px;
  padding: 56px 52px;
  max-width: 540px;
  width: 100%;
}

.hero-blob .eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-blob .eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--orange);
}

.hero-blob h1 {
  font-family: var(--font-display);
  font-size: clamp(52px, 5.5vw, 86px);
  line-height: 0.92;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 24px;
}
.hero-blob h1 span { color: var(--orange); }

.hero-blob p {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255,255,255,0.75);
  margin-bottom: 36px;
  max-width: 380px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  color: var(--black);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: 999px;
  transition: background var(--transition), color var(--transition), transform var(--transition);
  border: 2px solid var(--white);
  cursor: pointer;
}
.btn-primary:hover {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
  transform: translateY(-2px);
}
.btn-primary svg { width: 16px; height: 16px; }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: 999px;
  transition: background var(--transition), color var(--transition), transform var(--transition);
  border: 2px solid var(--black);
  cursor: pointer;
}
.btn-secondary:hover {
  background: var(--dark);
  transform: translateY(-2px);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--black);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 12px 30px;
  border-radius: 999px;
  border: 2px solid var(--black);
  transition: background var(--transition), color var(--transition), transform var(--transition);
  cursor: pointer;
}
.btn-outline:hover {
  background: var(--black);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  color: var(--black);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: 999px;
  border: 2px solid var(--white);
  transition: var(--transition);
  cursor: pointer;
}
.btn-white:hover { background: var(--orange); border-color: var(--orange); color: var(--white); transform: translateY(-2px); }

.hero-right {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-screenshot {
  position: relative;
  z-index: 2;
  width: 90%;
  max-width: 600px;
  border-radius: 12px;
  box-shadow: -20px 20px 60px rgba(0,0,0,0.5);
  transform: perspective(1000px) rotateY(-5deg) rotateX(2deg);
  transition: transform 0.5s ease;
}
.hero-screenshot:hover {
  transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}

.hero-3d {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 1;
}
#sculpture-canvas { width: 100%; height: 100%; }

.hero-stats {
  position: absolute;
  bottom: 40px;
  left: 60px;
  z-index: 3;
  display: flex;
  gap: 40px;
}
.hero-stat { }
.hero-stat .num {
  font-family: var(--font-display);
  font-size: 36px;
  color: var(--white);
  line-height: 1;
}
.hero-stat .label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-top: 4px;
}

/* ─── Organic Divider Shape ─── */
.organic-divider {
  position: relative;
  height: 120px;
  overflow: hidden;
  background: var(--orange);
}
.organic-divider::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 100%;
  background: var(--white);
  clip-path: ellipse(60% 100% at 50% 100%);
}
.organic-divider.dark-to-light {
  background: var(--black);
}
.organic-divider.dark-to-light::after {
  background: var(--white);
}
.organic-divider.light-to-dark {
  background: var(--white);
}
.organic-divider.light-to-dark::after {
  background: var(--black);
}
.organic-divider.orange-to-dark {
  background: var(--orange);
}
.organic-divider.orange-to-dark::after {
  background: var(--dark);
}
.organic-divider.dark-to-orange {
  background: var(--dark);
}
.organic-divider.dark-to-orange::after {
  background: var(--orange);
}
.organic-divider.orange-to-white {
  background: var(--orange);
}
.organic-divider.orange-to-white::after {
  background: var(--white);
}

/* ─── Section Common ─── */
.section {
  padding: 100px 60px;
}
.section-dark {
  background: var(--dark);
  color: var(--white);
}
.section-black {
  background: var(--black);
  color: var(--white);
}
.section-orange {
  background: var(--orange);
  color: var(--black);
}

.section-header {
  margin-bottom: 64px;
}
.section-eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.section-eyebrow::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--orange);
}
.section-dark .section-eyebrow,
.section-black .section-eyebrow { color: var(--orange); }
.section-dark .section-eyebrow::before,
.section-black .section-eyebrow::before { background: var(--orange); }
.section-orange .section-eyebrow { color: var(--black); }
.section-orange .section-eyebrow::before { background: var(--black); }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(42px, 4.5vw, 72px);
  line-height: 0.95;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  max-width: 700px;
}
.section-dark .section-title,
.section-black .section-title { color: var(--white); }
.section-orange .section-title { color: var(--black); }

.section-subtitle {
  font-size: 16px;
  line-height: 1.7;
  color: var(--gray);
  max-width: 580px;
  margin-top: 20px;
}
.section-dark .section-subtitle,
.section-black .section-subtitle { color: rgba(255,255,255,0.6); }

.section-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.section-3col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

/* ─── Features Grid ─── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  border: 2px solid var(--black);
}
.feature-card {
  background: var(--white);
  border: none;
  padding: 40px 36px;
  border-right: 2px solid var(--black);
  border-bottom: 2px solid var(--black);
  transition: background var(--transition);
  position: relative;
  overflow: hidden;
}
.feature-card:nth-child(3n) { border-right: none; }
.feature-card:nth-last-child(-n+3) { border-bottom: none; }
.feature-card:hover { background: var(--orange); }
.feature-card:hover .feature-icon-wrap { border-color: rgba(0,0,0,0.3); }
.feature-card:hover .feature-title { color: var(--black); }
.feature-card:hover .feature-text { color: rgba(0,0,0,0.75); }

.feature-img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 24px;
  filter: grayscale(20%);
  transition: filter var(--transition);
}
.feature-card:hover .feature-img { filter: grayscale(0%); }

.feature-icon-wrap {
  width: 52px;
  height: 52px;
  border: 2px solid var(--black);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: border-color var(--transition);
}
.feature-icon-wrap svg { width: 24px; height: 24px; }

.feature-num {
  font-family: var(--font-display);
  font-size: 72px;
  color: rgba(0,0,0,0.06);
  position: absolute;
  top: 20px;
  right: 24px;
  line-height: 1;
  pointer-events: none;
}
.feature-card:hover .feature-num { color: rgba(0,0,0,0.08); }

.feature-title {
  font-family: var(--font-display);
  font-size: 26px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--black);
  margin-bottom: 12px;
  line-height: 1.1;
}
.feature-text {
  font-size: 14px;
  color: var(--dark);
  line-height: 1.65;
  color: #555;
}

/* ─── Crypto Section ─── */
.crypto-section {
  background: var(--black);
  color: var(--white);
  padding: 100px 60px;
}
.crypto-coins {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 56px;
}
.crypto-coin {
  background: var(--dark);
  padding: 44px 36px;
  border: 2px solid rgba(255,255,255,0.08);
  border-radius: 4px;
  transition: border-color var(--transition), background var(--transition);
  text-decoration: none;
  color: var(--white);
  display: block;
}
.crypto-coin:hover { border-color: var(--orange); background: #222; }
.crypto-coin.featured { border-color: var(--orange); }
.crypto-coin-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: var(--orange);
  color: var(--white);
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 20px;
}
.crypto-ticker {
  font-family: var(--font-display);
  font-size: 56px;
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.crypto-name {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 20px;
}
.crypto-desc {
  font-size: 14px;
  line-height: 1.65;
  color: rgba(255,255,255,0.65);
  margin-bottom: 24px;
}
.crypto-link {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ─── News Grid ─── */
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  border: 2px solid var(--black);
}
.news-card {
  background: var(--white);
  border-right: 2px solid var(--black);
  border-bottom: 2px solid var(--black);
  overflow: hidden;
  transition: background var(--transition);
  text-decoration: none;
  color: var(--black);
  display: block;
}
.news-card:nth-child(3n) { border-right: none; }
.news-card:nth-last-child(-n+3) { border-bottom: none; }
.news-card:hover { background: var(--light-gray); }
.news-card-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}
.news-card-body { padding: 28px 28px 32px; }
.news-card-date {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 10px;
}
.news-card-title {
  font-family: var(--font-display);
  font-size: 22px;
  line-height: 1.1;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.news-card-excerpt {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.6;
}

/* Large featured news card */
.news-card.featured {
  grid-column: span 2;
}
.news-card.featured .news-card-img { height: 260px; }
.news-card.featured .news-card-title { font-size: 32px; }

/* ─── Harm Reduction ─── */
.harm-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  border: 2px solid var(--white);
  margin-top: 56px;
}
.harm-rule {
  padding: 36px 32px;
  border-right: 2px solid rgba(255,255,255,0.15);
  border-bottom: 2px solid rgba(255,255,255,0.15);
}
.harm-rule:nth-child(2n) { border-right: none; }
.harm-rule:nth-last-child(-n+2) { border-bottom: none; }
.harm-rule-num {
  font-family: var(--font-display);
  font-size: 52px;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 12px;
}
.harm-rule-title {
  font-family: var(--font-display);
  font-size: 22px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 10px;
}
.harm-rule-text {
  font-size: 14px;
  line-height: 1.65;
  color: rgba(255,255,255,0.65);
}

/* ─── OPSEC Section ─── */
.opsec-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-top: 56px;
}
.opsec-block { }
.opsec-block-title {
  font-family: var(--font-display);
  font-size: 28px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid rgba(255,90,47,0.3);
}
.opsec-list { }
.opsec-list li {
  display: flex;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255,255,255,0.75);
}
.opsec-list li::before {
  content: '→';
  color: var(--orange);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ─── Anti-Phishing CTA ─── */
.antiphish-section {
  background: var(--orange);
  padding: 100px 60px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: center;
}
.antiphish-title {
  font-family: var(--font-display);
  font-size: clamp(42px, 4vw, 68px);
  line-height: 0.95;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 20px;
}
.antiphish-text {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(0,0,0,0.75);
  max-width: 560px;
}
.antiphish-cta {
  flex-shrink: 0;
  text-align: center;
}

/* ─── FAQ Section ─── */
.faq-list { margin-top: 20px; }
.faq-item {
  border-bottom: 2px solid var(--black);
  overflow: hidden;
}
.faq-item:first-child { border-top: 2px solid var(--black); }
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  text-align: left;
  gap: 20px;
}
.faq-question-text {
  font-family: var(--font-display);
  font-size: 22px;
  text-transform: uppercase;
  color: var(--black);
  line-height: 1.1;
}
.faq-icon {
  width: 32px;
  height: 32px;
  border: 2px solid var(--black);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background var(--transition), border-color var(--transition);
}
.faq-icon svg { width: 14px; height: 14px; transition: transform 0.3s ease; }
.faq-item.open .faq-icon { background: var(--orange); border-color: var(--orange); }
.faq-item.open .faq-icon svg { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0;
}
.faq-item.open .faq-answer {
  max-height: 500px;
  padding-bottom: 28px;
}
.faq-answer p {
  font-size: 15px;
  line-height: 1.75;
  color: #444;
  max-width: 760px;
}
.faq-answer a { color: var(--orange); text-decoration: underline; }

/* Dark FAQ variant */
.section-dark .faq-item { border-color: rgba(255,255,255,0.15); }
.section-dark .faq-item:first-child { border-color: rgba(255,255,255,0.15); }
.section-dark .faq-question-text { color: var(--white); }
.section-dark .faq-icon { border-color: rgba(255,255,255,0.3); }
.section-dark .faq-icon svg path { stroke: var(--white); }
.section-dark .faq-answer p { color: rgba(255,255,255,0.65); }

/* ─── Footer ─── */
.footer {
  background: var(--black);
  color: var(--white);
  padding: 80px 60px 40px;
  border-top: 3px solid var(--orange);
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand .logo { height: 44px; width: auto; margin-bottom: 20px; }
.footer-brand p {
  font-size: 13px;
  line-height: 1.7;
  color: rgba(255,255,255,0.5);
  max-width: 300px;
  margin-bottom: 24px;
}
.footer-col-title {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 20px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--white); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-disclaimer {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  max-width: 600px;
  line-height: 1.6;
}
.footer-updated {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
}

/* ─── Breadcrumb ─── */
.breadcrumb {
  background: var(--black);
  padding: 14px 60px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.breadcrumb a, .breadcrumb span {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  transition: color var(--transition);
}
.breadcrumb a:hover { color: var(--orange); }
.breadcrumb .sep { color: rgba(255,255,255,0.2); }
.breadcrumb .current { color: var(--white); }

/* ─── Page Hero (Inner Pages) ─── */
.page-hero {
  background: var(--orange);
  padding: 100px 60px 80px;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: attr(data-bg-text);
  position: absolute;
  bottom: -20px;
  right: -10px;
  font-family: var(--font-display);
  font-size: 200px;
  color: rgba(0,0,0,0.06);
  line-height: 1;
  pointer-events: none;
  white-space: nowrap;
  text-transform: uppercase;
}
.page-hero-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.5);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.page-hero-eyebrow::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: rgba(0,0,0,0.4);
}
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(52px, 6vw, 100px);
  line-height: 0.92;
  text-transform: uppercase;
  color: var(--black);
  letter-spacing: -0.01em;
  max-width: 900px;
  margin-bottom: 28px;
}
.page-hero p {
  font-size: 17px;
  line-height: 1.7;
  color: rgba(0,0,0,0.7);
  max-width: 640px;
}

/* ─── Access Page ─── */
.tab-system {}
.tab-nav {
  display: flex;
  gap: 0;
  border-bottom: 2px solid var(--black);
  margin-bottom: 48px;
  overflow-x: auto;
  flex-wrap: nowrap;
}
.tab-btn {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 16px 28px;
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  cursor: pointer;
  white-space: nowrap;
  color: var(--gray);
  transition: color var(--transition), border-color var(--transition);
}
.tab-btn:hover { color: var(--black); }
.tab-btn.active { color: var(--black); border-bottom-color: var(--orange); }
.tab-pane { display: none; }
.tab-pane.active { display: block; }

.onion-link-card {
  background: var(--dark);
  border: 2px solid rgba(255,90,47,0.3);
  border-radius: 12px;
  padding: 32px 36px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  transition: border-color var(--transition);
}
.onion-link-card:hover { border-color: var(--orange); }
.onion-link-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 8px;
}
.onion-link-url {
  font-family: 'Courier New', monospace;
  font-size: 13px;
  color: rgba(255,255,255,0.85);
  word-break: break-all;
  line-height: 1.5;
}
.copy-btn {
  background: var(--orange);
  color: var(--white);
  border: none;
  border-radius: 999px;
  padding: 10px 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  white-space: nowrap;
  transition: background var(--transition);
  flex-shrink: 0;
}
.copy-btn:hover { background: var(--orange-alt); }
.copy-btn.copied { background: #22c55e; }

.pgp-block {
  background: var(--dark);
  border: 2px solid rgba(255,90,47,0.2);
  border-radius: 8px;
  padding: 28px 32px;
  font-family: 'Courier New', monospace;
  font-size: 12px;
  line-height: 1.7;
  color: rgba(255,255,255,0.75);
  white-space: pre-wrap;
  word-break: break-all;
  overflow-x: auto;
  max-height: 360px;
  overflow-y: auto;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}
.stat-card {
  background: var(--dark);
  border: 2px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  padding: 28px 24px;
  text-align: center;
}
.stat-num {
  font-family: var(--font-display);
  font-size: 48px;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}

/* ─── Chart placeholder ─── */
.chart-container {
  background: var(--dark);
  border: 2px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  padding: 28px;
  margin-bottom: 32px;
  height: 280px;
  position: relative;
}
.chart-container canvas { width: 100% !important; height: 100% !important; }

/* ─── News Single ─── */
.news-article { padding: 80px 60px; max-width: 900px; margin: 0 auto; }
.news-article-meta {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.news-article-date {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--orange);
}
.news-article-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--black);
  color: var(--white);
  padding: 4px 14px;
  border-radius: 999px;
}
.news-article h1 {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 64px);
  line-height: 0.95;
  text-transform: uppercase;
  margin-bottom: 32px;
}
.news-article .featured-img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 48px;
}
.news-article-body h2 {
  font-family: var(--font-display);
  font-size: 32px;
  text-transform: uppercase;
  margin: 40px 0 16px;
  color: var(--black);
}
.news-article-body h3 {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 700;
  margin: 28px 0 12px;
}
.news-article-body p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--dark);
  margin-bottom: 20px;
}
.news-article-body ul, .news-article-body ol {
  padding-left: 24px;
  margin-bottom: 20px;
}
.news-article-body li {
  font-size: 15px;
  line-height: 1.7;
  color: var(--dark);
  margin-bottom: 8px;
  list-style: disc;
}
.news-article-body a { color: var(--orange); text-decoration: underline; }
.news-article-body blockquote {
  border-left: 4px solid var(--orange);
  padding: 16px 24px;
  margin: 32px 0;
  background: var(--light-gray);
  font-size: 17px;
  font-style: italic;
  color: var(--dark);
}

/* ─── Trust Indicators ─── */
.trust-badges {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 28px;
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,90,47,0.1);
  border: 1px solid rgba(255,90,47,0.3);
  border-radius: 999px;
  padding: 8px 18px;
  font-size: 12px;
  font-weight: 600;
  color: var(--orange);
}
.trust-badge svg { width: 14px; height: 14px; }

/* ─── Guide Article Style ─── */
.guide-content {
  max-width: 800px;
}
.guide-content h2 {
  font-family: var(--font-display);
  font-size: 36px;
  text-transform: uppercase;
  margin: 56px 0 20px;
  padding-top: 48px;
  border-top: 2px solid var(--black);
}
.guide-content h3 {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 700;
  margin: 32px 0 12px;
  color: var(--dark);
}
.guide-content p {
  font-size: 16px;
  line-height: 1.8;
  color: #333;
  margin-bottom: 18px;
}
.guide-content ul, .guide-content ol {
  padding-left: 0;
  margin-bottom: 20px;
}
.guide-content li {
  display: flex;
  gap: 14px;
  font-size: 15px;
  line-height: 1.7;
  color: #333;
  padding: 10px 0;
  border-bottom: 1px solid rgba(0,0,0,0.07);
  list-style: none;
}
.guide-content li::before { content: '→'; color: var(--orange); font-weight: 700; flex-shrink: 0; }
.guide-content a { color: var(--orange); text-decoration: underline; }
.guide-content blockquote {
  border-left: 4px solid var(--orange);
  padding: 16px 24px;
  margin: 32px 0;
  background: #FFF4F0;
  font-size: 16px;
  color: var(--dark);
  border-radius: 0 8px 8px 0;
}
.guide-content .highlight-box {
  background: var(--orange);
  color: var(--black);
  padding: 28px 32px;
  border-radius: 12px;
  margin: 32px 0;
}
.guide-content .highlight-box p { color: var(--black); margin-bottom: 0; }

.guide-sidebar {
  position: sticky;
  top: 90px;
  background: var(--light-gray);
  padding: 32px 28px;
  border-radius: 8px;
  border: 2px solid var(--black);
}
.guide-sidebar-title {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 20px;
  color: var(--gray);
}
.guide-toc { display: flex; flex-direction: column; gap: 4px; }
.guide-toc a {
  font-size: 13px;
  color: var(--dark);
  padding: 7px 12px;
  border-radius: 6px;
  transition: background var(--transition), color var(--transition);
}
.guide-toc a:hover { background: var(--black); color: var(--white); }
.guide-toc a.active { background: var(--orange); color: var(--white); }

/* ─── Two-Column Layout With Sidebar ─── */
.layout-with-sidebar {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 60px;
  align-items: start;
  padding: 80px 60px;
}

/* ─── Responsive ─── */
@media (max-width: 1100px) {
  .hero { grid-template-columns: 1fr; }
  .hero-right { min-height: 400px; }
  .hero-stats { position: static; padding: 0 40px 40px; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid .feature-card:nth-child(2n) { border-right: none; }
  .features-grid .feature-card:nth-child(3n) { border-right: 2px solid var(--black); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .layout-with-sidebar { grid-template-columns: 1fr; }
  .guide-sidebar { position: static; }
}

@media (max-width: 768px) {
  :root { --frame-size: 0px; }
  .section { padding: 64px 24px; }
  .nav-bar { padding: 12px 20px; }
  .nav-links { display: none; flex-direction: column; position: absolute; top: 70px; left: 0; right: 0; background: var(--black); padding: 20px; gap: 16px; border-top: 1px solid rgba(255,255,255,0.1); }
  .nav-links.open { display: flex; }
  .nav-mobile-toggle { display: flex; }
  .hero { padding: 0; }
  .hero-left { padding: 60px 24px 40px; }
  .hero-blob { padding: 36px 28px; }
  .hero-blob h1 { font-size: 48px; }
  .section-2col { grid-template-columns: 1fr; gap: 40px; }
  .section-3col { grid-template-columns: 1fr; }
  .crypto-coins { grid-template-columns: 1fr; }
  .news-grid { grid-template-columns: 1fr; }
  .news-card.featured { grid-column: span 1; }
  .features-grid { grid-template-columns: 1fr; }
  .features-grid .feature-card { border-right: none; }
  .footer-top { grid-template-columns: 1fr; gap: 40px; }
  .antiphish-section { grid-template-columns: 1fr; }
  .breadcrumb { padding: 12px 24px; }
  .page-hero { padding: 60px 24px 48px; }
  .layout-with-sidebar { padding: 48px 24px; }
  .harm-grid { grid-template-columns: 1fr; }
  .opsec-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .tab-nav { padding-bottom: 0; }
  .onion-link-card { flex-direction: column; align-items: flex-start; }
  .news-article { padding: 48px 24px; }
}

/* ─── Utilities ─── */
.text-orange { color: var(--orange); }
.text-white { color: var(--white); }
.text-center { text-align: center; }
.mt-sm { margin-top: 16px; }
.mt-md { margin-top: 32px; }
.mt-lg { margin-top: 56px; }
.mb-sm { margin-bottom: 16px; }
.mb-md { margin-bottom: 32px; }
.mb-lg { margin-bottom: 56px; }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.gap-md { gap: 20px; }
.gap-lg { gap: 40px; }
.w-full { width: 100%; }

/* Progress bars for stats */
.stat-bar-wrap { margin-top: 8px; }
.stat-bar-label { display: flex; justify-content: space-between; font-size: 12px; margin-bottom: 6px; }
.stat-bar { height: 6px; background: rgba(255,255,255,0.1); border-radius: 3px; overflow: hidden; }
.stat-bar-fill { height: 100%; background: var(--orange); border-radius: 3px; transition: width 1s ease; }

/* Warning box */
.warning-box {
  background: rgba(255,90,47,0.1);
  border: 2px solid rgba(255,90,47,0.4);
  border-radius: 8px;
  padding: 20px 24px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin: 20px 0;
}
.warning-box-icon { color: var(--orange); font-size: 20px; flex-shrink: 0; }
.warning-box-text { font-size: 14px; line-height: 1.65; }

/* Info box */
.info-box {
  background: rgba(0,0,0,0.04);
  border-left: 4px solid var(--orange);
  padding: 20px 24px;
  border-radius: 0 8px 8px 0;
  margin: 20px 0;
}
.info-box p { font-size: 14px; line-height: 1.65; margin: 0; }

/* Step list */
.step-list { margin: 24px 0; }
.step-item {
  display: flex;
  gap: 20px;
  margin-bottom: 24px;
}
.step-num {
  width: 36px;
  height: 36px;
  background: var(--orange);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 20px;
  flex-shrink: 0;
}
.step-content h4 {
  font-weight: 700;
  margin-bottom: 6px;
  font-size: 15px;
}
.step-content p { font-size: 14px; line-height: 1.65; color: #444; margin: 0; }

/* Horizontal scroll news for mobile */
@media (max-width: 640px) {
  .news-grid { display: flex; overflow-x: auto; snap-type: x mandatory; }
  .news-card { min-width: 280px; snap-align: start; }
}

/* ─── Animations ─── */
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
}
.float-anim { animation: float 4s ease-in-out infinite; }

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-in-up { animation: fadeInUp 0.7s ease forwards; }

/* Scroll reveal */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ─── Drug Cards (Harm Reduction) ─── */
.drug-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.drug-card {
  background: var(--dark);
  border: 2px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  padding: 28px 24px;
  cursor: pointer;
  transition: border-color var(--transition);
}
.drug-card:hover { border-color: var(--orange); }
.drug-card-name {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--white);
  margin-bottom: 8px;
}
.drug-card-class {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 16px;
}
.drug-card-risk {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 12px;
  color: rgba(255,255,255,0.5);
}
.risk-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}
.risk-high { background: #ef4444; }
.risk-medium { background: #f59e0b; }
.risk-low { background: #22c55e; }

/* ─── Print / No-Script ─── */
@media print {
  .nav-bar, .nav-login, .tab-nav { display: none; }
  .page-frame { border: none; }
  .page-content { padding-top: 0; }
}

/* ─── Custom Scrollbar ─── */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--orange); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--orange-alt); }
