/* ============================================================
   WeTheNorth Mirror — Design System
   Swiss Editorial Minimal Portfolio Style
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;500;600;700;800&family=Barlow:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&display=swap');

/* ============================================================
   CSS Custom Properties
   ============================================================ */
:root {
  /* Colors */
  --bg-primary: #F5F5F5;
  --bg-secondary: #EFEFEF;
  --bg-white: #FFFFFF;
  --bg-dark: #0E0E0E;
  --bg-dark-2: #111111;

  --accent-beige: #E8E0B5;
  --accent-gray: #D9D9D9;
  --accent-gray-2: #CFCFCF;

  --text-primary: #111111;
  --text-secondary: #6B6B6B;
  --text-light: #9A9A9A;
  --text-white: #F5F5F5;

  --border: #E5E5E5;
  --border-dark: #2A2A2A;

  /* Typography */
  --font-head: 'Syne', sans-serif;
  --font-body: 'Barlow', sans-serif;

  /* Spacing */
  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 24px;
  --space-lg: 40px;
  --space-xl: 64px;
  --space-2xl: 100px;
  --space-3xl: 140px;

  /* Grid */
  --container-max: 1280px;
  --container-pad: 60px;

  /* Transitions */
  --transition: opacity 0.2s ease, color 0.2s ease;
}

/* ============================================================
   Reset & Base
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-primary);
  background-color: var(--bg-primary);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}

/* ============================================================
   Container
   ============================================================ */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

/* ============================================================
   Typography
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-head);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}

h1 { font-size: clamp(2.2rem, 5vw, 4rem); font-weight: 700; }
h2 { font-size: clamp(1.6rem, 3vw, 2.6rem); font-weight: 600; }
h3 { font-size: clamp(1.2rem, 2vw, 1.7rem); font-weight: 600; }
h4 { font-size: 1.15rem; font-weight: 600; }
h5 { font-size: 1rem; font-weight: 600; }
h6 { font-size: 0.875rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; }

p {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-secondary);
  max-width: 68ch;
}

p.wide { max-width: none; }

.label {
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-light);
}

.text-sm { font-size: 0.875rem; }
.text-xs { font-size: 0.75rem; }

/* Dark section text overrides */
.dark-section h1,
.dark-section h2,
.dark-section h3,
.dark-section h4,
.dark-section p,
.dark-section .label {
  color: var(--text-white);
}
.dark-section p { color: rgba(245,245,245,0.7); }
.dark-section .label { color: rgba(245,245,245,0.45); }

/* ============================================================
   Header / Navigation
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: var(--bg-white);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  padding: 0 var(--container-pad);
  max-width: var(--container-max);
  margin: 0 auto;
}

.site-logo img {
  height: 40px;
  width: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.nav-links a {
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-primary);
  opacity: 0.7;
  transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  opacity: 1;
}

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 10px 22px;
  border: 1px solid var(--text-primary);
  background: transparent;
  color: var(--text-primary);
  cursor: pointer;
  transition: var(--transition), background 0.2s ease;
}

.btn:hover {
  background: var(--text-primary);
  color: var(--bg-white);
}

.btn-sm {
  padding: 7px 16px;
  font-size: 0.72rem;
}

.btn-white {
  border-color: var(--bg-white);
  color: var(--bg-white);
}
.btn-white:hover {
  background: var(--bg-white);
  color: var(--text-primary);
}

.btn-dark {
  border-color: var(--text-primary);
  background: var(--text-primary);
  color: var(--bg-white);
}
.btn-dark:hover {
  background: transparent;
  color: var(--text-primary);
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  width: 22px;
  height: 1.5px;
  background: var(--text-primary);
  display: block;
  transition: 0.2s;
}

/* ============================================================
   Section Base
   ============================================================ */
.section {
  padding: var(--space-2xl) 0;
}

.section-sm {
  padding: var(--space-xl) 0;
}

.section-lg {
  padding: var(--space-3xl) 0;
}

.dark-section {
  background-color: var(--bg-dark);
  color: var(--text-white);
}

.light-section {
  background-color: var(--bg-white);
}

.gray-section {
  background-color: var(--bg-secondary);
}

/* Section header */
.section-header {
  margin-bottom: var(--space-xl);
}

.section-header .label {
  margin-bottom: var(--space-sm);
}

.section-header h2 {
  margin-bottom: var(--space-md);
}

.section-header p {
  max-width: 60ch;
}

.section-header.centered {
  text-align: center;
}
.section-header.centered p {
  margin: 0 auto;
}

/* ============================================================
   Grid Systems
   ============================================================ */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
}

.grid-2-1 {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.grid-1-2 {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: var(--space-xl);
  align-items: center;
}

/* ============================================================
   Cards
   ============================================================ */
.card {
  background: var(--bg-white);
  padding: var(--space-lg);
  border-top: 1px solid var(--border);
}

.card-dark {
  background: var(--bg-dark-2);
  padding: var(--space-lg);
  border-top: 1px solid var(--border-dark);
}

.card-img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  margin-bottom: var(--space-md);
}

.card-img-sq {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  margin-bottom: var(--space-md);
}

.card h3 {
  margin-bottom: var(--space-sm);
}

.card p {
  font-size: 0.9rem;
}

.card-dark h3,
.card-dark h4 {
  color: var(--text-white);
}
.card-dark p,
.card-dark .label {
  color: rgba(245,245,245,0.6);
}

/* Feature card */
.feature-card {
  padding: var(--space-lg);
  border-top: 1px solid var(--border);
  background: var(--bg-white);
}

.feature-card .feature-icon {
  width: 56px;
  height: 56px;
  object-fit: contain;
  margin-bottom: var(--space-md);
}

.feature-card h3 {
  font-size: 1.1rem;
  margin-bottom: var(--space-sm);
}

.feature-card p {
  font-size: 0.875rem;
  max-width: none;
}

/* News card */
.news-card {
  border-top: 1px solid var(--border);
  background: var(--bg-white);
  overflow: hidden;
}

.news-card .news-img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  display: block;
}

.news-card-body {
  padding: var(--space-md) var(--space-lg);
}

.news-card .label {
  margin-bottom: 8px;
}

.news-card h3 {
  font-size: 1.05rem;
  margin-bottom: var(--space-sm);
  line-height: 1.3;
}

.news-card p {
  font-size: 0.875rem;
  max-width: none;
}

.news-date {
  font-size: 0.75rem;
  color: var(--text-light);
  margin-top: var(--space-sm);
  font-family: var(--font-head);
  letter-spacing: 0.05em;
}

.news-card a:hover h3 {
  opacity: 0.6;
}

/* ============================================================
   Hero Section
   ============================================================ */
.hero {
  padding: var(--space-3xl) 0 var(--space-2xl);
  background: var(--bg-primary);
  border-bottom: 1px solid var(--border);
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.hero-content {
  padding-right: var(--space-xl);
}

.hero-label {
  margin-bottom: var(--space-md);
}

.hero h1 {
  margin-bottom: var(--space-md);
}

.hero .hero-desc {
  font-size: 1.1rem;
  margin-bottom: var(--space-lg);
  max-width: 52ch;
}

.hero-actions {
  display: flex;
  gap: var(--space-md);
  align-items: center;
  flex-wrap: wrap;
}

.hero-visual {
  position: relative;
}

.hero-visual img {
  width: 100%;
  border: 1px solid var(--border);
}

/* ============================================================
   Breadcrumb
   ============================================================ */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: var(--space-md) 0;
  border-bottom: 1px solid var(--border);
  margin-bottom: var(--space-xl);
}

.breadcrumb a,
.breadcrumb span {
  font-size: 0.78rem;
  font-family: var(--font-head);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-light);
}

.breadcrumb a:hover { color: var(--text-primary); }
.breadcrumb .sep { color: var(--accent-gray-2); }
.breadcrumb .current { color: var(--text-primary); }

/* ============================================================
   Onion Link Box
   ============================================================ */
.onion-box {
  background: var(--bg-dark);
  padding: var(--space-xl);
  border-top: 3px solid var(--accent-beige);
  margin: var(--space-xl) 0;
}

.onion-box .label {
  color: var(--accent-beige);
  margin-bottom: var(--space-md);
}

.onion-link {
  font-family: 'Courier New', Courier, monospace;
  font-size: 0.9rem;
  color: var(--accent-beige);
  word-break: break-all;
  line-height: 1.6;
  background: rgba(255,255,255,0.04);
  padding: var(--space-md);
  border: 1px solid rgba(232,224,181,0.2);
  margin: var(--space-sm) 0;
  cursor: pointer;
  transition: background 0.2s;
  user-select: all;
}

.onion-link:hover {
  background: rgba(232,224,181,0.08);
}

.copy-hint {
  font-size: 0.72rem;
  color: rgba(245,245,245,0.4);
  font-family: var(--font-head);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ============================================================
   PGP Block
   ============================================================ */
.pgp-block {
  background: #0A0A0A;
  border: 1px solid var(--border-dark);
  padding: var(--space-md) var(--space-lg);
  font-family: 'Courier New', Courier, monospace;
  font-size: 0.75rem;
  color: rgba(245,245,245,0.75);
  line-height: 1.7;
  overflow-x: auto;
  white-space: pre-wrap;
  word-break: break-all;
}

/* ============================================================
   Stats / Metrics
   ============================================================ */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin: var(--space-xl) 0;
}

.stat-item {
  background: var(--bg-white);
  padding: var(--space-lg) var(--space-md);
  text-align: center;
}

.stat-value {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 0.78rem;
  color: var(--text-light);
  font-family: var(--font-head);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.dark-section .stats-grid {
  background: var(--border-dark);
  border-color: var(--border-dark);
}
.dark-section .stat-item {
  background: var(--bg-dark-2);
}
.dark-section .stat-value { color: var(--text-white); }
.dark-section .stat-label { color: rgba(245,245,245,0.4); }

/* ============================================================
   FAQ
   ============================================================ */
.faq-list {
  border-top: 1px solid var(--border);
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-md) 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  transition: var(--transition);
}

.faq-question:hover { opacity: 0.65; }

.faq-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  position: relative;
  margin-left: var(--space-md);
}
.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background: var(--text-primary);
  transition: transform 0.2s, opacity 0.2s;
}
.faq-icon::before { width: 12px; height: 1px; top: 50%; left: 50%; transform: translate(-50%,-50%); }
.faq-icon::after  { width: 1px; height: 12px; top: 50%; left: 50%; transform: translate(-50%,-50%); }

.faq-item.open .faq-icon::after { transform: translate(-50%,-50%) rotate(90deg); opacity: 0; }

.faq-answer {
  display: none;
  padding-bottom: var(--space-md);
}
.faq-item.open .faq-answer { display: block; }

.faq-answer p {
  font-size: 0.925rem;
  max-width: none;
}

/* ============================================================
   Table
   ============================================================ */
.table-wrap {
  overflow-x: auto;
  margin: var(--space-lg) 0;
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
}

th {
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-light);
  border-bottom: 1px solid var(--border);
  padding: var(--space-sm) var(--space-md) var(--space-sm) 0;
  text-align: left;
}

td {
  border-bottom: 1px solid var(--border);
  padding: var(--space-sm) var(--space-md) var(--space-sm) 0;
  color: var(--text-secondary);
  vertical-align: top;
}

/* ============================================================
   Pill / Badge
   ============================================================ */
.pill {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 10px;
  border: 1px solid var(--border);
  color: var(--text-light);
}

.pill-dark {
  border-color: var(--border-dark);
  background: var(--bg-dark-2);
  color: rgba(245,245,245,0.5);
}

.pill-accent {
  border-color: var(--accent-beige);
  color: #9A8B4A;
  background: rgba(232,224,181,0.15);
}

/* ============================================================
   Highlight / Callout
   ============================================================ */
.callout {
  border-left: 3px solid var(--text-primary);
  padding: var(--space-md) var(--space-lg);
  background: var(--bg-secondary);
  margin: var(--space-lg) 0;
}

.callout.warning {
  border-left-color: #B08A3E;
  background: rgba(176,138,62,0.06);
}

.callout.danger {
  border-left-color: #8B2020;
  background: rgba(139,32,32,0.05);
}

.callout p { max-width: none; }

/* ============================================================
   Lists (Styled)
   ============================================================ */
.list-editorial {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.list-editorial li {
  display: flex;
  gap: var(--space-md);
  padding: var(--space-md) 0;
  border-top: 1px solid var(--border);
  font-size: 0.925rem;
  color: var(--text-secondary);
  line-height: 1.6;
  align-items: flex-start;
}

.list-editorial li:last-child {
  border-bottom: 1px solid var(--border);
}

.list-editorial .li-num {
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text-light);
  min-width: 30px;
  letter-spacing: 0.05em;
  padding-top: 2px;
}

.list-check li {
  padding-left: 1.4em;
  position: relative;
  font-size: 0.925rem;
  color: var(--text-secondary);
  margin-bottom: 8px;
}
.list-check li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--text-light);
}

/* ============================================================
   Divider
   ============================================================ */
.divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: var(--space-xl) 0;
}

.divider-dark {
  border-top-color: var(--border-dark);
}

/* ============================================================
   Footer
   ============================================================ */
.site-footer {
  background: var(--bg-dark);
  color: var(--text-white);
  padding: var(--space-xl) 0 var(--space-lg);
  border-top: 1px solid var(--border-dark);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

.footer-brand img {
  height: 36px;
  width: auto;
  margin-bottom: var(--space-md);
  opacity: 0.85;
}

.footer-brand p {
  font-size: 0.85rem;
  color: rgba(245,245,245,0.5);
  max-width: 38ch;
}

.footer-col h5 {
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245,245,245,0.4);
  margin-bottom: var(--space-md);
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul a {
  font-size: 0.875rem;
  color: rgba(245,245,245,0.65);
  transition: var(--transition);
}

.footer-col ul a:hover {
  color: var(--text-white);
}

.footer-bottom {
  border-top: 1px solid var(--border-dark);
  padding-top: var(--space-lg);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.footer-disclaimer {
  font-size: 0.75rem;
  color: rgba(245,245,245,0.35);
  max-width: 70ch;
  line-height: 1.6;
}

.footer-meta {
  font-family: var(--font-head);
  font-size: 0.7rem;
  color: rgba(245,245,245,0.3);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}

/* ============================================================
   Page Hero (inner pages)
   ============================================================ */
.page-hero {
  padding: var(--space-xl) 0 var(--space-lg);
  border-bottom: 1px solid var(--border);
  background: var(--bg-white);
}

.page-hero .label { margin-bottom: var(--space-sm); }
.page-hero h1 { margin-bottom: var(--space-md); }
.page-hero p { font-size: 1.05rem; }

/* ============================================================
   Content Body (long-form text)
   ============================================================ */
.content-body h2 {
  margin-top: var(--space-xl);
  margin-bottom: var(--space-md);
}
.content-body h3 {
  margin-top: var(--space-lg);
  margin-bottom: var(--space-sm);
}
.content-body p {
  margin-bottom: var(--space-md);
  max-width: 72ch;
}
.content-body ul, .content-body ol {
  margin-bottom: var(--space-md);
  padding-left: 1.5em;
}
.content-body ul li, .content-body ol li {
  list-style: disc;
  font-size: 0.925rem;
  color: var(--text-secondary);
  margin-bottom: 6px;
  line-height: 1.65;
}
.content-body ol li { list-style: decimal; }
.content-body a {
  text-decoration: underline;
  text-underline-offset: 3px;
  opacity: 0.8;
}
.content-body a:hover { opacity: 1; }

/* ============================================================
   Harm Reduction Section
   ============================================================ */
.harm-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
}

.harm-item {
  background: var(--bg-white);
  padding: var(--space-lg);
}

.harm-item h4 {
  font-size: 0.95rem;
  margin-bottom: var(--space-sm);
}

.harm-item p {
  font-size: 0.85rem;
  max-width: none;
}

/* ============================================================
   OPSEC Section
   ============================================================ */
.opsec-step {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: var(--space-md);
  padding: var(--space-lg) 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
}

.opsec-num {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent-gray);
  line-height: 1;
}

.opsec-content h4 {
  margin-bottom: 8px;
  font-size: 1.05rem;
}

.opsec-content p {
  font-size: 0.875rem;
  max-width: none;
}

/* ============================================================
   Crypto Section
   ============================================================ */
.coin-compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  margin: var(--space-lg) 0;
}

.coin-col {
  background: var(--bg-white);
  padding: var(--space-xl);
}

.coin-col.featured {
  background: var(--bg-dark);
}

.coin-col.featured h3,
.coin-col.featured p,
.coin-col.featured li {
  color: var(--text-white);
}
.coin-col.featured p,
.coin-col.featured li { color: rgba(245,245,245,0.7); }

.coin-col h3 {
  font-size: 1.3rem;
  margin-bottom: var(--space-md);
}

.coin-col ul {
  margin-top: var(--space-md);
}

.coin-col ul li {
  font-size: 0.875rem;
  color: var(--text-secondary);
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  gap: 8px;
}
.coin-col.featured ul li { border-bottom-color: var(--border-dark); }

/* ============================================================
   Phishing Section
   ============================================================ */
.phishing-rules {
  display: flex;
  flex-direction: column;
}

.phishing-rule {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: var(--space-md);
  padding: var(--space-md) 0;
  border-bottom: 1px solid var(--border);
  align-items: flex-start;
}

.phishing-icon-wrap {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  flex-shrink: 0;
}

.phishing-rule h4 { margin-bottom: 4px; font-size: 0.95rem; }
.phishing-rule p { font-size: 0.875rem; max-width: none; }

/* ============================================================
   Access / Login page
   ============================================================ */
.access-wrap {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-2xl) var(--container-pad);
}

/* ============================================================
   Tag / Category
   ============================================================ */
.tag {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 2px 8px;
  background: var(--bg-secondary);
  color: var(--text-light);
}

/* ============================================================
   Print
   ============================================================ */
@media print {
  .site-header, .site-footer, .btn { display: none; }
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1100px) {
  :root { --container-pad: 40px; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--space-lg); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  :root {
    --container-pad: 24px;
    --space-2xl: 64px;
    --space-3xl: 80px;
  }

  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }

  .hero-inner { grid-template-columns: 1fr; }
  .hero-content { padding-right: 0; order: 2; }
  .hero-visual { order: 1; }

  .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .grid-2-1, .grid-1-2 { grid-template-columns: 1fr; }
  .harm-grid { grid-template-columns: 1fr; }
  .coin-compare { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); }

  .nav-links { display: none; }
  .nav-toggle { display: flex; }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--bg-white);
    border-bottom: 1px solid var(--border);
    padding: var(--space-md) var(--container-pad);
    gap: var(--space-md);
    z-index: 99;
  }

  .opsec-step { grid-template-columns: 40px 1fr; }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
}
