/* ══════════════════════════════════════
   VERDANT DESIGN SYSTEM — v2
   Psilocybine.nl — Gedeeld Stylesheet
   ══════════════════════════════════════ */

/* ─── CUSTOM PROPERTIES ─── */
:root {
  --psi-primary: #3A9E7A;
  --psi-primary-deep: #2D7A5E;
  --psi-secondary: #081410;
  --psi-sec-mid: #243D32;
  --psi-sec-light: #2F5040;
  --psi-accent: #D4A24C;
  --psi-accent-soft: #F5E8CC;
  --psi-highlight: #7DD4AC;
  --psi-warm: #E8C07A;
  --psi-success: #4AB87E;
  --psi-danger: #D47060;
  --psi-bg: #F8FCF9;
  --psi-text: #1A3028;
  --psi-text-muted: #7A9888;
  --psi-glow: rgba(58, 158, 122, 0.25);
  --psi-glow-accent: rgba(212, 162, 76, 0.18);
}

/* ─── RESET & BASE ─── */
* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.75;
  color: var(--psi-text);
  background: var(--psi-bg);
  -webkit-font-smoothing: antialiased;
}

/* ─── TYPOGRAPHY ─── */
h1, h2, h3 { font-family: 'DM Serif Display', Georgia, serif; font-weight: 400; }
h1 { font-size: clamp(32px, 5vw, 48px); letter-spacing: -1px; line-height: 1.1; }
h2 { font-size: clamp(24px, 3vw, 32px); letter-spacing: -0.5px; line-height: 1.2; }
h3 { font-size: clamp(18px, 2.5vw, 24px); line-height: 1.3; }

a { color: var(--psi-primary); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--psi-primary-deep); text-decoration: underline; }

/* ─── CONTAINERS ─── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container--mid { max-width: 1080px; margin: 0 auto; padding: 0 24px; }
.container--narrow { max-width: 800px; margin: 0 auto; padding: 0 24px; }

/* ─── BADGE ─── */
.badge {
  font-family: 'JetBrains Mono', monospace;
  font-weight: 600; font-size: 10px; letter-spacing: 3px;
  text-transform: uppercase; color: var(--psi-accent);
  background: rgba(212, 162, 76, 0.08);
  display: inline-block; padding: 4px 12px; border-radius: 4px; margin-bottom: 12px;
}
.badge--light {
  color: var(--psi-accent);
  background: rgba(212, 162, 76, 0.15);
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: 10px;
  font-family: 'DM Sans', sans-serif; font-size: 15px; font-weight: 700;
  text-decoration: none; transition: all 0.2s; border: none; cursor: pointer;
}
.btn--primary {
  background: var(--psi-accent); color: #fff;
  box-shadow: 0 4px 16px var(--psi-glow-accent);
}
.btn--primary:hover {
  background: #c8962f; color: #fff; text-decoration: none;
  transform: translateY(-1px); box-shadow: 0 6px 24px rgba(212,162,76,0.35);
}
.btn--green {
  background: var(--psi-primary); color: #fff;
  box-shadow: 0 4px 16px var(--psi-glow);
}
.btn--green:hover {
  background: var(--psi-primary-deep); color: #fff; text-decoration: none;
  transform: translateY(-1px);
}
.btn--secondary {
  background: transparent; color: var(--psi-primary-deep);
  border: 2px solid var(--psi-primary);
}
.btn--secondary:hover { background: var(--psi-primary); color: #fff; text-decoration: none; }
.btn--outline {
  background: transparent; color: var(--psi-primary);
  border: 2px solid var(--psi-primary);
}
.btn--outline:hover { background: var(--psi-primary); color: #fff; text-decoration: none; }
.btn--danger {
  background: var(--psi-danger); color: #fff;
  box-shadow: 0 4px 16px rgba(212,112,96,0.25);
}
.btn--danger:hover { background: #b85848; color: #fff; text-decoration: none; transform: translateY(-1px); }

/* ─── HEADER (licht) ─── */
.site-header {
  background: #F4FAF7;
  position: sticky; top: 0; z-index: 100;
  border-bottom: none;
}
.site-header::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, var(--psi-primary) 15%, var(--psi-highlight) 50%, var(--psi-primary) 85%, transparent 100%);
  opacity: 0.7;
}
.site-header .container {
  display: flex; align-items: center; justify-content: space-between; height: 92px;
  max-width: 1320px;
}
.site-header__logo img { height: 68px; width: auto; }
.site-nav { display: flex; gap: 22px; list-style: none; align-items: center; flex-wrap: nowrap; }
.site-nav a {
  color: var(--psi-text); font-size: 15px; font-weight: 600;
  letter-spacing: 0.15px; transition: color 0.25s, transform 0.2s; white-space: nowrap;
  position: relative;
}
.site-nav a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px;
  background: linear-gradient(90deg, var(--psi-primary), var(--psi-accent));
  transition: width 0.3s ease; border-radius: 2px;
}
.site-nav a:hover::after { width: 100%; }
.site-nav a:hover { color: var(--psi-primary); text-decoration: none; }
.site-nav a[aria-current="page"]::after { width: 100%; }

/* ─── DROPDOWN NAVIGATION ─── */
.site-nav li { position: relative; }
.has-dropdown > a::before {
  content: '';
  display: inline-block; width: 0; height: 0; margin-left: 4px; vertical-align: middle;
  border-left: 4px solid transparent; border-right: 4px solid transparent;
  border-top: 4px solid currentColor; transition: transform 0.25s;
}
.has-dropdown:hover > a::before { transform: rotate(180deg); }
.dropdown {
  position: absolute; top: 100%; left: 50%; transform: translateX(-50%);
  min-width: 220px; padding: 12px 0; margin-top: 12px;
  background: #fff; border-radius: 12px;
  box-shadow: 0 8px 32px rgba(26,48,40,0.12), 0 0 0 1px rgba(58,158,122,0.08);
  list-style: none; opacity: 0; visibility: hidden;
  transition: opacity 0.25s, visibility 0.25s, transform 0.25s;
  transform: translateX(-50%) translateY(8px);
  z-index: 200;
}
.dropdown::before {
  content: ''; position: absolute; top: -8px; left: 50%; transform: translateX(-50%);
  width: 0; height: 0;
  border-left: 8px solid transparent; border-right: 8px solid transparent;
  border-bottom: 8px solid #fff;
}
.dropdown::after {
  content: ''; position: absolute; top: -12px; left: 0; right: 0; height: 12px;
}
.has-dropdown:hover .dropdown {
  opacity: 1; visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.dropdown li { margin: 0; }
.dropdown a {
  display: block; padding: 10px 20px; font-size: 14px !important; font-weight: 500 !important;
  color: var(--psi-text) !important; white-space: nowrap;
  transition: background 0.2s, color 0.2s, padding-left 0.2s;
}
.dropdown a::after { display: none !important; }
.dropdown a:hover {
  background: rgba(58,158,122,0.06); color: var(--psi-primary) !important;
  padding-left: 24px;
}
.dropdown .dropdown-header {
  display: block; padding: 8px 20px 4px; font-size: 10px !important; font-weight: 700 !important;
  letter-spacing: 2px; text-transform: uppercase; color: var(--psi-text-muted) !important;
  pointer-events: none;
}

.nav-cta {
  background: linear-gradient(135deg, var(--psi-primary), var(--psi-primary-deep));
  color: #fff !important;
  padding: 9px 18px; border-radius: 10px; font-weight: 700; font-size: 14px;
  box-shadow: 0 2px 8px var(--psi-glow);
  transition: all 0.25s;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: linear-gradient(135deg, var(--psi-primary-deep), #245F49); box-shadow: 0 4px 16px var(--psi-glow); transform: translateY(-1px); }
.site-nav a[aria-current="page"] { color: var(--psi-primary); }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--psi-text); margin: 5px 0; }

/* ─── BREADCRUMB ─── */
.breadcrumb { padding: 16px 0; font-size: 13px; color: var(--psi-text-muted); }
.breadcrumb a { color: var(--psi-text-muted); }
.breadcrumb a:hover { color: var(--psi-primary); }
.breadcrumb span { margin: 0 8px; opacity: 0.5; }

/* ─── HERO (donker — homepage) ─── */
.hero--dark {
  background:
    linear-gradient(168deg, rgba(26,48,40,0.86) 0%, rgba(36,61,50,0.82) 50%, rgba(47,80,64,0.78) 100%),
    url('../img/_Photorealistic_editorial_phot_Nano_Banana_Pro_88976.jpg') center/cover no-repeat;
  position: relative; overflow: hidden; padding: 100px 0 120px;
  background-color: var(--psi-secondary);
}
.hero--dark::before {
  content: ''; position: absolute; top: -30%; right: -15%; width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(58,158,122,0.15) 0%, transparent 55%); pointer-events: none;
}
.hero--dark::after {
  content: ''; position: absolute; bottom: -25%; left: -8%; width: 400px; height: 400px;
  background: radial-gradient(circle, var(--psi-glow-accent) 0%, transparent 55%); pointer-events: none;
}
.hero__content { position: relative; z-index: 1; max-width: 680px; }
.hero__tagline {
  font-family: 'JetBrains Mono', monospace; font-size: 11px; font-weight: 600;
  letter-spacing: 3px; text-transform: uppercase; color: var(--psi-accent); margin-bottom: 20px;
}
.hero--dark h1 { color: #fff; margin-bottom: 24px; }
.hero__sub {
  color: rgba(255,255,255,0.85); font-size: 18px; line-height: 1.7;
  max-width: 540px; margin-bottom: 40px;
}
.hero__buttons { display: flex; gap: 16px; flex-wrap: wrap; }

/* ─── HERO (licht — hub pagina's) ─── */
.hero--light {
  position: relative; overflow: hidden;
  padding: 80px 0 60px;
  background: var(--psi-bg);
}
.hero--light::before {
  content: ''; position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 30%, rgba(58,158,122,0.18) 0%, transparent 60%),
    radial-gradient(ellipse 70% 80% at 75% 60%, rgba(212,162,76,0.14) 0%, transparent 55%),
    radial-gradient(ellipse 60% 50% at 50% 80%, rgba(125,212,172,0.12) 0%, transparent 50%);
}
.hero--light .hero__content { text-align: center; max-width: 700px; margin: 0 auto; }
.hero--light h1 { color: var(--psi-text); margin-bottom: 20px; }
.hero--light .hero__sub {
  color: var(--psi-text-muted); font-size: 18px; line-height: 1.7;
  max-width: 560px; margin: 0 auto 32px;
}

/* ─── BLOG HERO ─── */
.blog-hero {
  background:
    linear-gradient(168deg, rgba(26,48,40,0.88) 0%, rgba(36,61,50,0.84) 50%, rgba(47,80,64,0.80) 100%),
    url('../img/_Photorealistic_editorial_phot_Nano_Banana_Pro_88976.jpg') center/cover no-repeat;
  position: relative; overflow: hidden; padding: 48px 0 36px;
  background-color: var(--psi-secondary);
}
.blog-hero::before {
  content: ''; position: absolute; top: -30%; right: -15%; width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(58,158,122,0.15) 0%, transparent 55%); pointer-events: none;
}
.blog-hero__content { position: relative; z-index: 1; max-width: 720px; }
.blog-hero__meta { display: flex; align-items: center; gap: 16px; margin-bottom: 20px; flex-wrap: wrap; }
.blog-hero__date { font-family: 'JetBrains Mono', monospace; font-size: 12px; color: rgba(255,255,255,0.6); }
.blog-hero__reading { font-family: 'JetBrains Mono', monospace; font-size: 12px; color: rgba(255,255,255,0.5); }
.blog-hero h1 { color: #fff; margin-bottom: 12px; font-size: clamp(24px, 4vw, 36px); }
.blog-hero__excerpt { color: rgba(255,255,255,0.85); font-size: 16px; line-height: 1.7; max-width: 600px; }

/* ─── PAGE HERO (simple centered) ─── */
.page-hero {
  padding: 60px 0 40px;
  text-align: center;
}
.page-hero h1 { margin-bottom: 16px; }
.page-hero__sub {
  color: var(--psi-text-muted); font-size: 17px;
  max-width: 560px; margin: 0 auto;
}

/* ─── CRISIS BAR ─── */
.crisis-bar {
  background: var(--psi-secondary); padding: 12px 0;
}
.crisis-bar .container {
  display: flex; align-items: center; justify-content: center; gap: 24px; flex-wrap: wrap;
}
.crisis-bar__text { color: rgba(255,255,255,0.7); font-size: 13px; }
.crisis-bar__link { color: var(--psi-danger) !important; font-weight: 700; font-size: 13px; }
.crisis-bar__link:hover { color: #fff !important; }

/* ─── CRISIS BLOCK (uitgebreid) ─── */
.crisis-block {
  background: rgba(212,112,96,0.04);
  border-left: 4px solid var(--psi-danger);
  border-radius: 0 14px 14px 0;
  padding: 28px 32px;
  margin-bottom: 40px;
}
.crisis-block h3 { color: var(--psi-danger); margin-bottom: 12px; font-size: 20px; }
.crisis-block__items { display: flex; flex-direction: column; gap: 10px; }
.crisis-block__item {
  display: flex; align-items: center; gap: 12px;
  font-size: 15px; color: var(--psi-text);
}
.crisis-block__number {
  font-family: 'JetBrains Mono', monospace; font-weight: 700;
  font-size: 18px; color: var(--psi-danger);
  min-width: 100px;
}
.crisis-block__desc { color: var(--psi-text-muted); font-size: 14px; }

/* Crisis block expanded (veiligheid hub) */
.crisis-block--expanded { background: rgba(212,112,96,0.04); border: 1px solid rgba(212,112,96,0.12); border-radius: 16px; padding: 40px; margin: 0; border-left: 4px solid var(--psi-danger); }
.crisis-block__inner { display: flex; gap: 24px; align-items: flex-start; }
.crisis-block__icon { flex-shrink: 0; color: var(--psi-danger); margin-top: 4px; }
.crisis-block__content { flex: 1; }
.crisis-block__title { font-family: 'DM Serif Display', Georgia, serif; font-size: 24px; color: var(--psi-danger); margin-bottom: 12px; font-weight: 400; }
.crisis-block__content p { color: var(--psi-text-muted); font-size: 16px; line-height: 1.7; margin-bottom: 20px; }
.crisis-block__actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ─── ROUTES ─── */
.routes { padding: 80px 0; position: relative; overflow: hidden; }
.routes__header { text-align: center; margin-bottom: 48px; }
.routes__header p { color: var(--psi-text-muted); max-width: 520px; margin: 12px auto 0; }
.routes__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.route-card {
  background: #fff; border-radius: 16px; overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04); transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none; color: inherit; display: flex; flex-direction: column;
}
.route-card:hover {
  transform: translateY(-2px); box-shadow: 0 8px 32px rgba(58,158,122,0.2);
  text-decoration: none; color: inherit;
}
.route-card__img { width: 100%; height: 180px; object-fit: cover; }
.route-card__body { padding: 28px 24px; flex-grow: 1; display: flex; flex-direction: column; }
.route-card__icon {
  width: 48px; height: 48px; border-radius: 12px; display: flex;
  align-items: center; justify-content: center; margin-bottom: 16px;
}
.route-card__icon--green { background: rgba(58,158,122,0.1); color: var(--psi-primary); }
.route-card__icon--gold { background: rgba(212,162,76,0.08); color: var(--psi-accent); }
.route-card__icon--red { background: rgba(212,112,96,0.08); color: var(--psi-danger); }
.route-card h3 { margin-bottom: 8px; }
.route-card p { color: var(--psi-text-muted); font-size: 15px; flex-grow: 1; }
.route-card__link {
  display: inline-flex; align-items: center; gap: 6px; margin-top: 16px;
  font-weight: 700; font-size: 14px; color: var(--psi-primary);
}

/* ─── HUB CARDS (voor hub-pagina subpagina links) ─── */
.hub-cards { padding: 60px 0 80px; }
.hub-cards__grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 24px; }
.hub-card {
  background: #fff; border-radius: 16px; padding: 32px 28px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04); transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none; color: inherit; display: block;
}
.hub-card:hover {
  transform: translateY(-2px); box-shadow: 0 8px 32px rgba(58,158,122,0.2);
  text-decoration: none; color: inherit;
}
.hub-card__icon {
  width: 48px; height: 48px; border-radius: 12px; display: flex;
  align-items: center; justify-content: center; margin-bottom: 16px;
  background: rgba(58,158,122,0.1); color: var(--psi-primary);
}
.hub-card h3 { margin-bottom: 8px; font-size: 20px; }
.hub-card p { color: var(--psi-text-muted); font-size: 15px; margin-bottom: 12px; }
.hub-card__link {
  display: inline-flex; align-items: center; gap: 6px;
  font-weight: 700; font-size: 14px; color: var(--psi-primary);
}

/* ─── PHOTO BANNER ─── */
.photo-banner { position: relative; height: 360px; overflow: hidden; }
.photo-banner img { width: 100%; height: 100%; object-fit: cover; display: block; }
.photo-banner__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(26,48,40,0.55) 0%, rgba(26,48,40,0.15) 40%, rgba(26,48,40,0.65) 100%);
  display: flex; align-items: center; justify-content: center; text-align: center;
}
.photo-banner__text { position: relative; z-index: 1; max-width: 600px; padding: 24px; }
.photo-banner__text h2 { color: #fff; margin-bottom: 12px; text-shadow: 0 2px 12px rgba(0,0,0,0.2); }
.photo-banner__text p { color: rgba(255,255,255,0.9); font-size: 17px; margin-bottom: 24px; }

/* ─── STATS ─── */
.stats {
  background: linear-gradient(168deg, #1A3028 0%, #243D32 50%, #2F5040 100%);
  padding: 64px 0; position: relative; overflow: hidden;
}
.stats::before {
  content: ''; position: absolute; top: -50%; left: 50%; transform: translateX(-50%);
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(58,158,122,0.15) 0%, transparent 50%);
  pointer-events: none;
}
.stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; position: relative; z-index: 1; }
.stat { text-align: center; position: relative; }
.stat__number {
  font-family: 'JetBrains Mono', monospace; font-weight: 600;
  font-size: 36px; color: var(--psi-accent); letter-spacing: -1px; line-height: 1; margin-bottom: 8px;
  position: relative; z-index: 1;
}
.stat__label { color: rgba(255,255,255,0.75); font-size: 14px; position: relative; z-index: 1; }

/* Stats light variant (hub pages) */
.stats--light { background: var(--psi-bg); }
.stats--light::before { display: none; }
.stats--light .stat {
  background: #fff; border-radius: 16px; padding: 28px 24px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04); border-top: 4px solid var(--psi-primary);
  transition: transform 0.2s, box-shadow 0.2s;
}
.stats--light .stat:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(58,158,122,0.12); }
.stats--light .stat:nth-child(2) { border-top-color: var(--psi-accent); }
.stats--light .stat:nth-child(3) { border-top-color: var(--psi-highlight); }
.stats--light .stat:nth-child(4) { border-top-color: var(--psi-danger); }
.stats--light .stat__number { color: var(--psi-primary-deep); }
.stats--light .stat:nth-child(2) .stat__number { color: var(--psi-accent); }
.stats--light .stat:nth-child(3) .stat__number { color: var(--psi-primary); }
.stats--light .stat:nth-child(4) .stat__number { color: var(--psi-danger); }
.stats--light .stat__label { color: var(--psi-text-muted); }

/* ─── ARTICLES ─── */
.articles { padding: 80px 0; position: relative; overflow: hidden; }
.articles__header {
  display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 40px;
  border-bottom: 2px solid rgba(58,158,122,0.12); padding-bottom: 20px;
}
.articles__header p { color: var(--psi-text-muted); max-width: 480px; margin-top: 8px; }
.articles__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.article-card {
  background: #fff; border-radius: 16px; overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04); transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none; color: inherit; position: relative;
}
.article-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--psi-primary), var(--psi-accent));
  opacity: 0; transition: opacity 0.2s; z-index: 1; border-radius: 16px 16px 0 0;
}
.article-card:hover::before { opacity: 1; }
.article-card:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(58,158,122,0.2); text-decoration: none; color: inherit; }
.article-card__img { width: 100%; height: 220px; object-fit: cover; }
.article-card__body { padding: 24px; }
.article-card__category {
  font-family: 'JetBrains Mono', monospace; font-weight: 600; font-size: 10px;
  letter-spacing: 2px; text-transform: uppercase; color: var(--psi-accent); margin-bottom: 8px;
}
.article-card h3 { font-size: 20px; margin-bottom: 8px; }
.article-card p { color: var(--psi-text-muted); font-size: 14px; line-height: 1.6; }

/* ─── SPLIT (tekst + foto) ─── */
.split { padding: 80px 0; background: #fff; position: relative; overflow: hidden; }
.split--alt { background: var(--psi-bg); }
.split__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; position: relative; z-index: 1; }
.split__img { border-radius: 20px; overflow: hidden; box-shadow: 0 8px 32px rgba(58,158,122,0.2); }
.split__img img { width: 100%; height: 400px; object-fit: cover; display: block; }
.split__text h2 { margin-bottom: 16px; }
.split__text p { color: var(--psi-text-muted); font-size: 16px; margin-bottom: 12px; }
.split__text .btn { margin-top: 16px; }

/* ─── RESEARCH ─── */
.research { background: var(--psi-bg); padding: 80px 0; position: relative; overflow: hidden; }
.research__header { text-align: center; margin-bottom: 48px; }
.research__header p { color: var(--psi-text-muted); max-width: 520px; margin: 12px auto 0; }
.research__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; max-width: 900px; margin: 0 auto; position: relative; z-index: 1; }
.research-card {
  background: #fff; border-radius: 16px; overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04); transition: transform 0.2s, box-shadow 0.2s;
}
.research-card:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(58,158,122,0.2); }
.research-card__img { width: 100%; height: 180px; object-fit: cover; }
.research-card__body { padding: 24px; }
.research-card__label {
  font-family: 'JetBrains Mono', monospace; font-weight: 600; font-size: 10px;
  letter-spacing: 2px; text-transform: uppercase; color: var(--psi-accent); margin-bottom: 8px;
}
.research-card__title { font-weight: 700; font-size: 17px; margin-bottom: 6px; }
.research-card__desc { font-size: 14px; color: var(--psi-text-muted); line-height: 1.6; }

/* ─── FAQ ─── */
.faq { padding: 80px 0; background: #fff; position: relative; overflow: hidden; }
.faq__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; position: relative; z-index: 1; }
.faq__left p { color: var(--psi-text-muted); max-width: 380px; margin: 12px 0 24px; }
.faq__img { border-radius: 16px; overflow: hidden; margin-top: 24px; box-shadow: 0 4px 20px rgba(0,0,0,0.06); }
.faq__img img { width: 100%; height: 240px; object-fit: cover; display: block; }
.faq-item { border-bottom: 1px solid rgba(58,158,122,0.1); }
.faq-item__question {
  width: 100%; background: none; border: none; padding: 20px 0;
  display: flex; align-items: center; justify-content: space-between;
  cursor: pointer; font-family: 'DM Sans', sans-serif; font-size: 16px;
  font-weight: 700; color: var(--psi-text); text-align: left;
}
.faq-item__question:hover { color: var(--psi-primary); }
.faq-item__icon {
  font-size: 20px; color: var(--psi-primary); transition: transform 0.3s;
  flex-shrink: 0; margin-left: 16px;
}
.faq-item.active .faq-item__icon { transform: rotate(45deg); }
.faq-item__answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease, padding 0.3s ease; }
.faq-item.active .faq-item__answer { max-height: 300px; padding-bottom: 20px; }
.faq-item__answer p { color: var(--psi-text-muted); font-size: 15px; line-height: 1.7; }

/* FAQ full-width variant (voor /faq/ pagina) */
.faq--full { padding: 0 0 80px; }
.faq--full .faq__inner { grid-template-columns: 1fr; }

/* ─── CONTACT CTA ─── */
.contact-cta {
  background:
    linear-gradient(168deg, rgba(26,48,40,0.9) 0%, rgba(36,61,50,0.87) 50%, rgba(47,80,64,0.84) 100%),
    url('../img/_Photorealistic_editorial_phot_Nano_Banana_Pro_88976.jpg') center/cover no-repeat;
  padding: 100px 0; position: relative; overflow: hidden;
}
.contact-cta::before {
  content: ''; position: absolute; top: -30%; right: -10%; width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(58,158,122,0.15) 0%, transparent 55%); pointer-events: none;
}
.contact-cta__inner { position: relative; z-index: 1; text-align: center; }
.contact-cta h2 { color: #fff; margin-bottom: 16px; }
.contact-cta__sub { color: rgba(255,255,255,0.8); max-width: 480px; margin: 0 auto 40px; font-size: 17px; }
.contact-cta__cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; max-width: 680px; margin: 0 auto; }
.cta-card {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px; padding: 32px 24px; text-align: center;
  transition: border-color 0.2s, background 0.2s; backdrop-filter: blur(8px);
}
.cta-card:hover { border-color: var(--psi-primary); background: rgba(255,255,255,0.1); }
.cta-card__icon { font-size: 32px; margin-bottom: 16px; }
.cta-card h3 { color: #fff; font-size: 20px; margin-bottom: 8px; }
.cta-card p { color: rgba(255,255,255,0.7); font-size: 14px; margin-bottom: 20px; }
.cta-card .btn { width: 100%; justify-content: center; }

/* ─── ARTICLE LAYOUT ─── */
.article { padding: 60px 0 80px; position: relative; overflow: hidden; }
.article__inner { display: grid; grid-template-columns: 1fr 300px; gap: 48px; align-items: start; }
.article__content { max-width: 720px; }
.article__content h2 { margin: 48px 0 16px; padding-top: 24px; border-top: 1px solid rgba(58,158,122,0.1); }
.article__content h2:first-child { margin-top: 0; padding-top: 0; border-top: none; }
.article__content h3 { margin: 32px 0 12px; }
.article__content p { margin-bottom: 16px; color: var(--psi-text); font-size: 16px; line-height: 1.8; }
.article__content ul, .article__content ol { margin: 0 0 16px 24px; }
.article__content li { margin-bottom: 8px; line-height: 1.7; }
.article__content blockquote { border-left: 3px solid var(--psi-accent); padding: 16px 24px; margin: 24px 0; background: rgba(212, 162, 76, 0.04); border-radius: 0 8px 8px 0; }
.article__content blockquote p { color: var(--psi-text-muted); font-style: italic; margin-bottom: 0; }
.article__content .info-box { background: rgba(58,158,122,0.04); border: 1px solid rgba(58,158,122,0.12); border-radius: 12px; padding: 24px; margin: 24px 0; }
.article__content .info-box h4 { font-family: 'DM Sans', sans-serif; font-weight: 700; font-size: 15px; color: var(--psi-primary); margin-bottom: 8px; }
.article__content .warning-box { background: rgba(212,112,96,0.04); border: 1px solid rgba(212,112,96,0.15); border-radius: 12px; padding: 24px; margin: 24px 0; }
.article__content .warning-box h4 { font-family: 'DM Sans', sans-serif; font-weight: 700; font-size: 15px; color: var(--psi-danger); margin-bottom: 8px; }

/* ─── SIDEBAR ─── */
.article__sidebar { position: sticky; top: 112px; }
.sidebar-toc { background: #fff; border-radius: 16px; padding: 24px; box-shadow: 0 2px 12px rgba(0,0,0,0.04); margin-bottom: 24px; }
.sidebar-toc h4 { font-family: 'DM Sans', sans-serif; font-weight: 700; font-size: 14px; margin-bottom: 16px; color: var(--psi-text); }
.sidebar-toc ul { list-style: none; margin: 0; padding: 0; }
.sidebar-toc li { margin-bottom: 8px; }
.sidebar-toc a { font-size: 13px; color: var(--psi-text-muted); line-height: 1.5; display: block; padding: 4px 0 4px 12px; border-left: 2px solid transparent; transition: all 0.2s; }
.sidebar-toc a:hover { color: var(--psi-primary); border-left-color: var(--psi-primary); text-decoration: none; }
.sidebar-related { background: #fff; border-radius: 16px; padding: 24px; box-shadow: 0 2px 12px rgba(0,0,0,0.04); }
.sidebar-related h4 { font-family: 'DM Sans', sans-serif; font-weight: 700; font-size: 14px; margin-bottom: 16px; }
.sidebar-related__item { display: block; padding: 12px 0; border-bottom: 1px solid rgba(0,0,0,0.04); text-decoration: none; color: inherit; }
.sidebar-related__item:last-child { border-bottom: none; }
.sidebar-related__item:hover { color: var(--psi-primary); }
.sidebar-related__cat { font-family: 'JetBrains Mono', monospace; font-size: 9px; letter-spacing: 2px; text-transform: uppercase; color: var(--psi-accent); }
.sidebar-related__title { font-size: 14px; font-weight: 700; margin-top: 4px; line-height: 1.4; }

/* ─── SOURCES ─── */
.sources { background: #fff; border-radius: 16px; padding: 32px; margin-top: 48px; box-shadow: 0 2px 12px rgba(0,0,0,0.04); }
.sources h3 { margin-bottom: 16px; font-size: 20px; }
.sources ol { margin: 0 0 0 20px; }
.sources li { font-size: 13px; color: var(--psi-text-muted); margin-bottom: 8px; line-height: 1.6; }

/* ─── RELATED ARTICLES (bottom) ─── */
.related-articles { padding: 80px 0; background: #fff; }
.related-articles__header { text-align: center; margin-bottom: 40px; }
.related-articles__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.related-card { background: var(--psi-bg); border-radius: 16px; overflow: hidden; text-decoration: none; color: inherit; transition: transform 0.2s, box-shadow 0.2s; }
.related-card:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(58,158,122,0.15); text-decoration: none; color: inherit; }
.related-card__img { width: 100%; height: 180px; object-fit: cover; }
.related-card__body { padding: 20px; }
.related-card__cat { font-family: 'JetBrains Mono', monospace; font-size: 9px; letter-spacing: 2px; text-transform: uppercase; color: var(--psi-accent); margin-bottom: 6px; }
.related-card h3 { font-size: 18px; margin-bottom: 8px; }
.related-card p { font-size: 13px; color: var(--psi-text-muted); line-height: 1.6; }

/* ─── FORM SECTION ─── */
.form-section { padding: 0 0 80px; }
.form-wrapper { max-width: 800px; margin: 0 auto; }
.route-selector { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 32px; }
.route-option {
  position: relative; background: #fff; border: 2px solid rgba(0,0,0,0.06);
  border-radius: 16px; padding: 28px 24px; cursor: pointer; transition: all 0.2s; text-align: center;
}
.route-option:hover { border-color: var(--psi-primary); box-shadow: 0 4px 16px var(--psi-glow); }
.route-option.active { border-color: var(--psi-primary); background: rgba(58,158,122,0.04); box-shadow: 0 4px 16px var(--psi-glow); }
.route-option input[type="radio"] { position: absolute; opacity: 0; pointer-events: none; }
.route-option__icon { width: 48px; height: 48px; border-radius: 12px; display: flex; align-items: center; justify-content: center; margin: 0 auto 14px; }
.route-option__icon--red { background: rgba(212,112,96,0.08); color: var(--psi-danger); }
.route-option__icon--gold { background: rgba(212,162,76,0.08); color: var(--psi-accent); }
.route-option h3 { font-size: 18px; margin-bottom: 6px; }
.route-option p { color: var(--psi-text-muted); font-size: 14px; line-height: 1.5; }
.route-option__check {
  position: absolute; top: 14px; right: 14px; width: 22px; height: 22px; border-radius: 50%;
  border: 2px solid rgba(0,0,0,0.1); display: flex; align-items: center; justify-content: center; transition: all 0.2s;
}
.route-option.active .route-option__check { background: var(--psi-primary); border-color: var(--psi-primary); }
.route-option.active .route-option__check::after { content: ''; width: 6px; height: 6px; background: #fff; border-radius: 50%; }
.form-card { background: #fff; border-radius: 20px; box-shadow: 0 2px 12px rgba(0,0,0,0.04); padding: 48px 56px; }
.form-group { margin-bottom: 28px; }
.form-group label { display: block; font-weight: 700; font-size: 15px; margin-bottom: 8px; color: var(--psi-text); }
.form-group__hint { display: block; font-size: 13px; color: var(--psi-text-muted); margin-bottom: 10px; font-weight: 400; }
.form-group input[type="text"],
.form-group input[type="email"],
.form-group select,
.form-group textarea {
  width: 100%; padding: 16px 18px; border: 2px solid rgba(0,0,0,0.06);
  border-radius: 10px; font-family: 'DM Sans', sans-serif; font-size: 16px;
  color: var(--psi-text); background: #fff; transition: border-color 0.2s; outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--psi-primary);
  box-shadow: 0 0 0 3px var(--psi-glow);
}
.form-group textarea { resize: vertical; min-height: 180px; }
.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%237A9888' stroke-width='2'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 16px center; padding-right: 40px;
}
.conditional-field { display: none; }
.conditional-field.visible { display: block; }
.form-checkbox { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 28px; cursor: pointer; }
.form-checkbox input[type="checkbox"] { width: 20px; height: 20px; margin-top: 2px; accent-color: var(--psi-primary); flex-shrink: 0; }
.form-checkbox span { font-size: 14px; color: var(--psi-text-muted); line-height: 1.5; }
.form-checkbox a { color: var(--psi-primary); }

/* ─── FORM SUBMIT ─── */
.form-submit {
  width: 100%; padding: 16px 32px;
  background: var(--psi-accent); color: #fff;
  border: none; border-radius: 10px;
  font-family: 'DM Sans', sans-serif;
  font-size: 16px; font-weight: 700;
  cursor: pointer; transition: all 0.2s;
  box-shadow: 0 4px 16px var(--psi-glow-accent);
}
.form-submit:hover {
  background: #c8962f;
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(212,162,76,0.35);
}
.form-submit:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }

/* ─── TRUST SIGNALS ─── */
.trust-signals { margin-top: 24px; display: flex; flex-direction: column; gap: 10px; }
.trust-signal { display: flex; align-items: center; gap: 10px; font-size: 13px; color: var(--psi-text-muted); }
.trust-signal svg { flex-shrink: 0; }

/* ─── TRUST BANNER ─── */
.trust-banner { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 32px; }
.trust-banner__item { background: #fff; border-radius: 14px; box-shadow: 0 2px 12px rgba(0,0,0,0.04); padding: 20px; text-align: center; }
.trust-banner__icon { font-size: 24px; margin-bottom: 8px; }
.trust-banner__title { font-weight: 700; font-size: 14px; margin-bottom: 4px; }
.trust-banner__desc { font-size: 13px; color: var(--psi-text-muted); line-height: 1.4; }

/* ─── FORM LAYOUT ─── */
.form-layout { max-width: 800px; margin: 0 auto; }

/* ─── RELATED LINKS ─── */
.related-links { max-width: 800px; margin: 40px auto 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.related-link {
  background: #fff; border-radius: 14px; box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  padding: 20px 24px; display: flex; align-items: center; gap: 14px;
  text-decoration: none; color: inherit; transition: all 0.2s;
}
.related-link:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(58,158,122,0.12); text-decoration: none; color: inherit; }
.related-link__icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: rgba(58,158,122,0.08); color: var(--psi-primary);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.related-link__text strong { display: block; font-size: 14px; margin-bottom: 2px; }
.related-link__text span { font-size: 13px; color: var(--psi-text-muted); }

/* ─── BEDANKT (thank you page) ─── */
.main--center { flex: 1; display: flex; align-items: center; justify-content: center; padding: 60px 24px; text-align: center; }
.card--thank { background: #fff; border-radius: 20px; box-shadow: 0 2px 12px rgba(0,0,0,0.04); padding: 60px 48px; max-width: 560px; }
.card--thank .icon { width: 64px; height: 64px; border-radius: 50%; background: rgba(74,184,126,0.1); display: flex; align-items: center; justify-content: center; margin: 0 auto 24px; }
.card--thank h1 { font-size: 28px; margin-bottom: 12px; letter-spacing: -0.5px; }
.card--thank .sub { color: var(--psi-text-muted); font-size: 16px; margin-bottom: 32px; max-width: 400px; margin-left: auto; margin-right: auto; }
.card--thank .links { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.card--thank .crisis { margin-top: 32px; padding-top: 24px; border-top: 1px solid rgba(0,0,0,0.05); font-size: 13px; color: var(--psi-text-muted); }
.card--thank .crisis a { color: var(--psi-danger); font-weight: 700; }

/* ─── DISCLAIMER ─── */
.disclaimer { background: var(--psi-bg); padding: 40px 0; border-top: 1px solid rgba(0,0,0,0.05); }
.disclaimer__inner { max-width: 720px; margin: 0 auto; padding: 24px; border-left: 3px solid var(--psi-text-muted); }
.disclaimer p { font-family: 'JetBrains Mono', monospace; font-size: 11px; line-height: 1.7; color: var(--psi-text-muted); }

/* ─── FOOTER ─── */
.site-footer { background: #081410; padding: 64px 0 32px; }
.footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
.footer__brand p { color: rgba(255,255,255,0.65); font-size: 14px; line-height: 1.7; margin-top: 16px; max-width: 280px; }
.footer__col h4 { color: #fff; font-family: 'DM Sans', sans-serif; font-size: 14px; font-weight: 700; margin-bottom: 16px; }
.footer__col ul { list-style: none; }
.footer__col li { margin-bottom: 8px; }
.footer__col a { color: rgba(255,255,255,0.6); font-size: 14px; transition: color 0.2s; }
.footer__col a:hover { color: var(--psi-highlight); text-decoration: none; }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08); padding-top: 24px;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px;
}
.footer__copy { color: rgba(255,255,255,0.4); font-size: 13px; }
.footer__legal { display: flex; gap: 24px; }
.footer__legal a { color: rgba(255,255,255,0.4); font-size: 13px; }
.footer__legal a:hover { color: rgba(255,255,255,0.7); }

/* ══════════════════════════════════════
   MAGAZINE / EDITORIAL LAYOUT
   ══════════════════════════════════════ */

/* ─── MAGAZINE HERO (with image column) ─── */
.hero--magazine {
  background: linear-gradient(135deg, #F0F7F3 0%, #F8FCF9 40%, #FBF6EC 100%);
  position: relative; overflow: hidden; padding: 80px 0 100px;
  border-left: 6px solid transparent;
  border-image: linear-gradient(180deg, var(--psi-primary), var(--psi-accent)) 1;
}
.hero--magazine::after {
  content: ''; position: absolute; top: -20%; right: -10%; width: 600px; height: 600px;
  border-radius: 50%; background: radial-gradient(circle, rgba(58,158,122,0.07) 0%, transparent 70%);
  pointer-events: none; z-index: 0;
}
.hero--magazine .container {
  position: relative; z-index: 3;
  display: grid; grid-template-columns: 55% 45%; gap: 48px; align-items: center;
}
.hero--magazine .hero__content { position: relative; z-index: 1; }
.hero--magazine h1 { color: var(--psi-text); margin-bottom: 24px; }
.hero--magazine .hero__sub { color: var(--psi-text-muted); font-size: 18px; line-height: 1.7; max-width: 540px; margin-bottom: 40px; }
.hero__buttons { display: flex; gap: 16px; flex-wrap: wrap; }
.hero__image { position: relative; z-index: 1; }
.hero__image::before {
  content: ''; position: absolute; top: -12px; left: -12px; right: 12px; bottom: 12px;
  border: 3px solid var(--psi-primary); border-radius: 24px; opacity: 0.25; pointer-events: none; z-index: 0;
}
.hero__image::after {
  content: ''; position: absolute; bottom: -8px; right: -8px; width: 80px; height: 80px;
  background-image: radial-gradient(circle, var(--psi-accent) 1.5px, transparent 1.5px);
  background-size: 10px 10px; opacity: 0.4; pointer-events: none; z-index: 0;
}
.hero__image img {
  width: 100%; height: 420px; object-fit: cover; border-radius: 24px;
  display: block; position: relative; z-index: 1;
  box-shadow: 0 24px 64px rgba(26,48,40,0.18);
}

/* ─── EDITORIAL GRID (featured + stacked) ─── */
.articles__grid--editorial {
  display: grid; grid-template-columns: 2fr 1fr; grid-template-rows: auto auto; gap: 24px;
}
.article-card--featured { grid-row: 1 / 3; grid-column: 1; }
.article-card--featured .article-card__img { height: 360px; }
.article-card--featured h3 { font-size: 24px; }
.article-card--featured p { font-size: 15px; }
.article-card--stacked { display: flex; flex-direction: column; }
.article-card--stacked .article-card__img { height: 140px; }
.article-card--stacked .article-card__body { padding: 18px 20px; }
.article-card--stacked h3 { font-size: 17px; margin-bottom: 4px; }
.article-card--stacked p { font-size: 13px; }

/* ─── HORIZONTAL MAGAZINE CARDS ─── */
.articles__grid--horizontal { display: flex; flex-direction: column; gap: 20px; }
.article-card--horizontal {
  display: grid; grid-template-columns: 260px 1fr; border-radius: 16px; overflow: hidden;
  background: #fff; box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  transition: transform 0.2s, box-shadow 0.2s; text-decoration: none; color: inherit;
}
.article-card--horizontal:hover {
  transform: translateY(-2px); box-shadow: 0 8px 32px rgba(58,158,122,0.2);
  text-decoration: none; color: inherit;
}
.article-card--horizontal .article-card__img { width: 100%; height: 100%; min-height: 180px; object-fit: cover; }
.article-card--horizontal .article-card__body { padding: 28px 32px; display: flex; flex-direction: column; justify-content: center; }
.article-card--horizontal h3 { font-size: 22px; margin-bottom: 10px; }
.article-card--horizontal p { font-size: 15px; color: var(--psi-text-muted); line-height: 1.65; }

/* ─── QUOTE ACCENT BAR ─── */
.quote-bar { background: var(--psi-primary); padding: 64px 0; position: relative; overflow: hidden; }
.quote-bar::before {
  content: '\201C'; position: absolute; top: -20px; left: 40px;
  font-family: 'DM Serif Display', Georgia, serif; font-size: 200px;
  color: rgba(255,255,255,0.08); line-height: 1; pointer-events: none;
}
.quote-bar::after {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.08) 1px, transparent 1px);
  background-size: 20px 20px; pointer-events: none;
}
.quote-bar__inner { position: relative; z-index: 2; text-align: center; max-width: 680px; margin: 0 auto; }
.quote-bar__inner h2 { color: #fff; margin-bottom: 12px; font-size: clamp(22px, 3vw, 30px); }
.quote-bar__inner p { color: rgba(255,255,255,0.88); font-size: 17px; margin-bottom: 24px; }
.quote-bar .btn--primary { background: #fff; color: var(--psi-primary-deep); box-shadow: 0 4px 16px rgba(0,0,0,0.1); }
.quote-bar .btn--primary:hover { background: var(--psi-accent-soft); color: var(--psi-primary-deep); text-decoration: none; }

/* ─── EDITORIAL COMPACT CARDS (circular thumbnail + text) ─── */
.editorial-card { padding: 64px 0; background: #fff; position: relative; overflow: hidden; }
.editorial-card--alt { background: var(--psi-bg); }
.editorial-card__inner { display: flex; align-items: flex-start; gap: 32px; }
.editorial-card__thumb {
  flex-shrink: 0; width: 140px; height: 140px; border-radius: 50%;
  overflow: hidden; box-shadow: 0 4px 20px rgba(58,158,122,0.15); position: relative;
}
.editorial-card__thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.editorial-card__thumb::after {
  content: ''; position: absolute; inset: -10px; border-radius: 50%;
  border: 1.5px solid rgba(58,158,122,0.15); pointer-events: none;
}
.editorial-card__text { flex: 1; }
.editorial-card__text h2 { margin-bottom: 14px; }
.editorial-card__text p { color: var(--psi-text-muted); font-size: 16px; margin-bottom: 10px; max-width: 600px; }
.editorial-card__text .btn { margin-top: 14px; }

/* ─── TABLE OF CONTENTS LIST ─── */
.toc-section { padding: 72px 0; background: #fff; position: relative; overflow: hidden; }
.toc-section__header { text-align: center; margin-bottom: 40px; }
.toc-section__header p { color: var(--psi-text-muted); max-width: 520px; margin: 12px auto 0; }
.toc-list { display: flex; flex-direction: column; gap: 0; max-width: 760px; margin: 0 auto; position: relative; }
.toc-item {
  display: flex; align-items: center; gap: 20px; padding: 24px;
  border-left: 4px solid var(--psi-primary); background: var(--psi-bg);
  text-decoration: none; color: inherit; transition: all 0.2s;
  border-bottom: 1px solid rgba(0,0,0,0.04); position: relative;
}
.toc-item:first-child { border-radius: 12px 12px 0 0; }
.toc-item:last-child { border-radius: 0 0 12px 12px; border-bottom: none; }
.toc-item:hover { background: #fff; box-shadow: 0 4px 20px rgba(58,158,122,0.1); text-decoration: none; color: inherit; transform: translateX(4px); }
.toc-item:nth-child(2) { border-left-color: var(--psi-accent); }
.toc-item:nth-child(3) { border-left-color: var(--psi-danger); }
.toc-item:nth-child(4) { border-left-color: var(--psi-highlight); }
.toc-item__icon {
  width: 48px; height: 48px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; position: relative;
}
.toc-item__icon--green { background: rgba(58,158,122,0.1); color: var(--psi-primary); }
.toc-item__icon--gold { background: rgba(212,162,76,0.08); color: var(--psi-accent); }
.toc-item__icon--red { background: rgba(212,112,96,0.08); color: var(--psi-danger); }
.toc-item__content { flex: 1; }
.toc-item__content h3 { font-size: 18px; margin-bottom: 4px; }
.toc-item__content p { color: var(--psi-text-muted); font-size: 14px; line-height: 1.5; margin: 0; }
.toc-item__arrow { font-size: 18px; color: var(--psi-text-muted); flex-shrink: 0; transition: transform 0.2s, color 0.2s; }
.toc-item:hover .toc-item__arrow { transform: translateX(4px); color: var(--psi-primary); }

/* ─── SECTION DIVIDERS ─── */
.hero-divider { height: 4px; background: linear-gradient(90deg, var(--psi-primary), var(--psi-accent), var(--psi-primary)); }
.divider-gradient-fade { height: 3px; margin: 24px auto; max-width: 70%; background: linear-gradient(90deg, transparent 0%, #2D7A5E 25%, #D4A24C 50%, #68C49A 75%, transparent 100%); border-radius: 2px; opacity: 0.35; }
.divider-spore-trail, .divider-organische-golf, .divider-molecuul-brug { position: relative; height: 48px; display: flex; align-items: center; justify-content: center; }

/* ─── ANIMATIONS ─── */
@keyframes moleculeRotate { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }
@keyframes nodeGlow { 0%, 100% { opacity: 0.15; transform: scale(1); } 50% { opacity: 0.3; transform: scale(1.3); } }
@keyframes ringPulse { 0%, 100% { transform: scale(1); opacity: 0.12; } 50% { transform: scale(1.03); opacity: 0.2; } }
@keyframes shimmer { 0% { background-position: -200% center; } 100% { background-position: 200% center; } }
@keyframes floatUp { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
@keyframes pulseGlow { 0%, 100% { box-shadow: 0 0 0 0 var(--psi-glow); } 50% { box-shadow: 0 0 20px 4px var(--psi-glow); } }
@keyframes gradientShift { 0% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } 100% { background-position: 0% 50%; } }

/* ─── ENHANCED VISUAL ACCENTS ─── */

/* Header shimmer line */
.site-header::after {
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--psi-primary), var(--psi-accent), var(--psi-highlight), var(--psi-primary), transparent);
  background-size: 200% 100%;
  animation: shimmer 6s ease-in-out infinite;
  opacity: 0.85;
}

/* Section accent glows */
.routes::before {
  content: ''; position: absolute; top: -100px; left: -100px; width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(58,158,122,0.08) 0%, transparent 70%);
  pointer-events: none; z-index: 0;
}
.routes::after {
  content: ''; position: absolute; bottom: -80px; right: -60px; width: 350px; height: 350px;
  background: radial-gradient(circle, rgba(212,162,76,0.06) 0%, transparent 65%);
  pointer-events: none; z-index: 0;
}

/* Article cards visual enhancement */
.article-card { border: 1px solid rgba(58,158,122,0.06); }
.article-card:hover { border-color: rgba(58,158,122,0.15); }
.article-card__img { position: relative; }

/* Hub cards glow on hover */
.hub-card:hover { box-shadow: 0 8px 32px rgba(58,158,122,0.2), 0 0 0 1px rgba(58,158,122,0.1); }

/* Route cards accent bar */
.route-card { border-top: 3px solid transparent; }
.route-card:nth-child(1) { border-top-color: var(--psi-primary); }
.route-card:nth-child(2) { border-top-color: var(--psi-accent); }
.route-card:nth-child(3) { border-top-color: var(--psi-danger); }

/* Stats section enhanced visuals */
.stats::after {
  content: ''; position: absolute; bottom: -40%; right: -10%; width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(212,162,76,0.1) 0%, transparent 50%);
  pointer-events: none;
}

/* Split section decorative dots */
.split::before {
  content: ''; position: absolute; top: 40px; right: 40px; width: 120px; height: 120px;
  background-image: radial-gradient(circle, rgba(58,158,122,0.15) 1.5px, transparent 1.5px);
  background-size: 12px 12px; pointer-events: none; z-index: 0; border-radius: 8px;
}
.split--alt::before { left: 40px; right: auto; }

/* Research section glow */
.research::before {
  content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 600px; height: 600px;
  background: radial-gradient(ellipse, rgba(58,158,122,0.06) 0%, transparent 60%);
  pointer-events: none; z-index: 0;
}

/* FAQ section accent */
.faq::before {
  content: ''; position: absolute; top: -80px; right: -60px; width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(212,162,76,0.05) 0%, transparent 65%);
  pointer-events: none; z-index: 0;
}

/* Footer enhanced visual */
.site-footer::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, transparent, var(--psi-primary), var(--psi-accent), var(--psi-highlight), transparent);
}
.site-footer { position: relative; }

/* Contact CTA enhanced glow */
.contact-cta::after {
  content: ''; position: absolute; bottom: -20%; left: -5%; width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(212,162,76,0.12) 0%, transparent 55%); pointer-events: none;
}

/* Quote bar dot pattern enhancement */
.quote-bar { background: linear-gradient(135deg, var(--psi-primary) 0%, var(--psi-primary-deep) 100%); }

/* Gradient border for info/warning boxes */
.article__content .info-box { border-left: 4px solid var(--psi-primary); border-width: 1px 1px 1px 4px; }
.article__content .warning-box { border-left: 4px solid var(--psi-danger); border-width: 1px 1px 1px 4px; }

/* Crisis bar enhanced */
.crisis-bar { background: linear-gradient(135deg, var(--psi-secondary) 0%, #0D1F18 100%); }

/* Badge shimmer */
.badge { position: relative; overflow: hidden; }

/* Photo banner enhanced overlay */
.photo-banner__overlay {
  background: linear-gradient(to bottom,
    rgba(26,48,40,0.55) 0%,
    rgba(26,48,40,0.1) 30%,
    rgba(26,48,40,0.15) 60%,
    rgba(26,48,40,0.7) 100%
  );
}

/* Sources section accent */
.sources { border-top: 3px solid var(--psi-primary); }

/* Sidebar TOC active line animation */
.sidebar-toc a:hover { background: rgba(58,158,122,0.04); border-radius: 0 6px 6px 0; }

/* Blog hero enhanced gradient */
.blog-hero {
  background:
    linear-gradient(168deg, rgba(26,48,40,0.92) 0%, rgba(36,61,50,0.86) 40%, rgba(47,80,64,0.82) 100%),
    url('../img/_Photorealistic_editorial_phot_Nano_Banana_Pro_88976.jpg') center/cover no-repeat;
}
.blog-hero::after {
  content: ''; position: absolute; bottom: -20%; left: 50%; transform: translateX(-50%);
  width: 500px; height: 300px;
  background: radial-gradient(ellipse, rgba(212,162,76,0.1) 0%, transparent 60%);
  pointer-events: none;
}

/* Hero dark enhanced visuals */

/* Disclaimer subtle accent */
.disclaimer__inner { border-left-color: var(--psi-primary); border-left-width: 3px; }

/* Form submit enhanced */
.form-submit {
  background: linear-gradient(135deg, var(--psi-accent), #c8962f);
  background-size: 200% 100%;
  transition: all 0.3s;
}
.form-submit:hover {
  background-position: 100% 0;
}

/* ══════════════════════════════════════
   DECORATIVE ELEMENTS — SVG/CSS
   ══════════════════════════════════════ */
.hero-mycelium { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.deco-float { position: absolute; pointer-events: none; z-index: 0; }
.deco-float--mushroom { width: 280px; height: 280px; top: -20px; right: -40px; opacity: 0.06; }
.topo-contours { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.deco-float--neural { width: 300px; height: 300px; bottom: -30px; left: -40px; opacity: 0.08; }
.topo-contours--articles { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.deco-float--molecule { width: 240px; height: 240px; top: 20px; right: -30px; opacity: 0.07; }
.deco-float--brain { width: 260px; height: 260px; bottom: 10px; left: -30px; opacity: 0.06; }
.deco-float--flask { width: 280px; height: 280px; top: 40px; right: -20px; opacity: 0.07; }
.sidebar-accent-nodes { position: absolute; left: 0; top: 50%; transform: translateY(-50%); pointer-events: none; z-index: 0; }
.deco-float--question { width: 240px; height: 240px; top: 30px; right: -20px; opacity: 0.06; }
.stats-accent-ring { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); pointer-events: none; z-index: 0; }
.stats-mycelium { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.cta-mycelium { position: absolute; inset: 0; pointer-events: none; z-index: 0; }

/* ─── RESPONSIVE ─── */
@media (max-width: 1200px) {
  .site-header .container { max-width: 100%; }
  .site-nav { gap: 16px; }
  .site-nav a { font-size: 14px; }
  .nav-cta { padding: 8px 14px; font-size: 13px; }
}
@media (max-width: 1060px) {
  .site-nav { gap: 12px; }
  .site-nav a { font-size: 13px; }
  .nav-cta { padding: 7px 12px; font-size: 12px; }
  .site-header__logo img { height: 56px; }
}
@media (max-width: 900px) {
  .routes__grid, .articles__grid { grid-template-columns: 1fr; }
  .stats__grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .contact-cta__cards { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .split__inner { grid-template-columns: 1fr; }
  .split__img img { height: 280px; }
  .faq__inner { grid-template-columns: 1fr; }
  .faq__img { display: none; }
  .research__grid { grid-template-columns: 1fr; }
  .site-nav { display: none; }
  .nav-toggle { display: block; }
  .site-nav.open {
    display: flex; flex-direction: column; position: absolute;
    top: 92px; left: 0; right: 0; background: #F4FAF7;
    padding: 16px 24px 24px; border-bottom: 1px solid rgba(0,0,0,0.05); gap: 4px;
    max-height: 80vh; overflow-y: auto;
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
  }
  /* Mobile dropdown */
  .has-dropdown > a::before { display: none; }
  .dropdown {
    position: static; transform: none; opacity: 1; visibility: visible;
    box-shadow: none; border-radius: 0; margin: 0; padding: 0 0 0 16px;
    min-width: auto; display: none; background: transparent;
  }
  .dropdown::before, .dropdown::after { display: none; }
  .has-dropdown.open .dropdown { display: block; }
  .dropdown a { padding: 8px 12px; font-size: 13px !important; }
  .dropdown a:hover { padding-left: 16px; }
  .has-dropdown > a { display: flex; align-items: center; justify-content: space-between; }
  .mobile-toggle-arrow {
    display: inline-block; width: 20px; height: 20px; text-align: center;
    font-size: 12px; line-height: 20px; color: var(--psi-text-muted);
    transition: transform 0.2s;
  }
  .has-dropdown.open .mobile-toggle-arrow { transform: rotate(180deg); }
  .hero--dark { padding: 60px 0 80px; }
  .hero--light { padding: 60px 0 40px; }
  .articles__header { flex-direction: column; align-items: flex-start; gap: 12px; }
  .photo-banner { height: 240px; }
  .article__inner { grid-template-columns: 1fr; }
  .article__sidebar { position: static; }
  .related-articles__grid { grid-template-columns: 1fr; }
  .blog-hero { padding: 36px 0 24px; }
  .hub-cards__grid { grid-template-columns: 1fr; }
  .route-selector { grid-template-columns: 1fr; }
  .form-card { padding: 32px 24px; }
  .trust-banner { grid-template-columns: 1fr; }
  .related-links { grid-template-columns: 1fr; }

  .deco-float,
  .deco-float--mushroom,
  .deco-float--neural,
  .deco-float--molecule,
  .deco-float--brain,
  .deco-float--flask,
  .deco-float--question,
  .sidebar-accent-nodes {
    display: none;
  }
  /* Magazine responsive */
  .hero--magazine { padding: 60px 0 72px; }
  .hero--magazine .container { grid-template-columns: 1fr; gap: 32px; }
  .hero__image { max-width: 520px; }
  .hero__image img { height: 320px; }
  .articles__grid--editorial { grid-template-columns: 1fr; grid-template-rows: auto; }
  .article-card--featured { grid-row: auto; grid-column: auto; }
  .article-card--featured .article-card__img { height: 240px; }
  .article-card--stacked .article-card__img { height: 200px; }
  .article-card--horizontal { grid-template-columns: 1fr; }
  .article-card--horizontal .article-card__img { height: 200px; }
  .editorial-card__inner { flex-direction: column; align-items: center; text-align: center; }
  .editorial-card__thumb { width: 120px; height: 120px; }
  .editorial-card__text p { max-width: none; }
  .toc-item { padding: 20px 16px; }
}

@media (max-width: 600px) {
  .footer__grid { grid-template-columns: 1fr; }
  .hero__buttons { flex-direction: column; }
  .btn { justify-content: center; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
  .photo-banner { height: 200px; }
  .stats__grid { grid-template-columns: 1fr 1fr; }
  .card--thank { padding: 40px 24px; }
  .card--thank .links { flex-direction: column; }
  .crisis-block { padding: 20px; }
  .crisis-block--expanded { padding: 24px; }
  .crisis-block__inner { flex-direction: column; gap: 16px; }
  .crisis-block__actions { flex-direction: column; }
  /* Magazine responsive */
  .hero--magazine { padding: 48px 0 56px; }
  .hero__image { max-width: 100%; }
  .hero__image img { height: auto; max-height: 280px; }
  .editorial-card__thumb { width: 100px; height: 100px; }
  .toc-item__content p { display: none; }
  .blog-grid__cards { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════
   BLOG INDEX PAGE
   ══════════════════════════════════════ */

/* ─── BLOG GRID ─── */
.blog-grid__cards {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}

/* ─── BLOG FEATURED (top section) ─── */
.blog-featured {
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 24px; margin-bottom: 48px;
}
.blog-featured__main {
  grid-row: 1 / 3;
}
.blog-featured__main .article-card__img { height: 380px; }
.blog-featured__main h3 { font-size: 24px; }
.blog-featured__main p { font-size: 15px; }
.blog-featured__side .article-card__img { height: 140px; }
.blog-featured__side .article-card__body { padding: 18px 20px; }
.blog-featured__side h3 { font-size: 17px; margin-bottom: 4px; }
.blog-featured__side p { font-size: 13px; }

@media (max-width: 900px) {
  .blog-featured { grid-template-columns: 1fr; }
  .blog-featured__main { grid-row: auto; }
  .blog-featured__main .article-card__img { height: 240px; }
  .blog-featured__side .article-card__img { height: 200px; }
}

/* ══════════════════════════════════════
   BLOG ARTICLE PAGES
   ══════════════════════════════════════ */

/* ─── BADGE HERO ─── */
.badge--hero {
  color: var(--psi-accent);
  background: rgba(212, 162, 76, 0.2);
}

/* ─── BLOG HERO ─── */
.blog-hero {
  background:
    linear-gradient(168deg, rgba(26,48,40,0.88) 0%, rgba(36,61,50,0.84) 50%, rgba(47,80,64,0.80) 100%),
    url('../img/foto-4.jpg') center/cover no-repeat;
  position: relative;
  overflow: hidden;
  padding: 80px 0 100px;
  background-color: var(--psi-secondary);
}
.blog-hero::before {
  content: ''; position: absolute; top: -30%; right: -15%; width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(58,158,122,0.15) 0%, transparent 55%);
  pointer-events: none;
}
.blog-hero::after {
  content: ''; position: absolute; bottom: -25%; left: -8%; width: 400px; height: 400px;
  background: radial-gradient(circle, var(--psi-glow-accent) 0%, transparent 55%);
  pointer-events: none;
}
.blog-hero__content { position: relative; z-index: 2; max-width: 720px; }
.blog-hero__meta { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; margin-bottom: 20px; }
.blog-hero__date {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px; color: rgba(255,255,255,0.6); letter-spacing: 0.5px;
}
.blog-hero__reading {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px; color: rgba(255,255,255,0.5); letter-spacing: 0.5px;
  display: flex; align-items: center; gap: 5px;
}
.blog-hero h1 { color: #fff; margin-bottom: 24px; }
.blog-hero__excerpt {
  color: rgba(255,255,255,0.8);
  font-size: 18px; line-height: 1.7; max-width: 640px;
}

/* ─── BREADCRUMB ─── */
.breadcrumb__list {
  list-style: none;
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: var(--psi-text-muted);
}
.breadcrumb__list li { display: flex; align-items: center; gap: 8px; }
.breadcrumb__list a { color: var(--psi-text-muted); font-weight: 600; }
.breadcrumb__list a:hover { color: var(--psi-primary); }
.breadcrumb__sep { color: rgba(122,152,136,0.4); }

/* ─── ARTICLE LAYOUT ─── */
.article-section {
  padding: 48px 0 80px;
  position: relative;
  overflow: hidden;
}
.article-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 64px;
  align-items: start;
}
.article-content { max-width: 720px; }
.article-content h2 {
  margin-top: 48px; margin-bottom: 16px;
  padding-top: 24px;
  border-top: 1px solid rgba(58,158,122,0.1);
}
.article-content h2:first-of-type { margin-top: 0; padding-top: 0; border-top: none; }
.article-content h3 { margin-top: 32px; margin-bottom: 12px; }
.article-content p { margin-bottom: 20px; color: var(--psi-text); font-size: 16px; line-height: 1.85; }
.article-content ul, .article-content ol { margin-bottom: 20px; padding-left: 24px; }
.article-content li { margin-bottom: 8px; line-height: 1.75; }
.article-content strong { font-weight: 700; color: var(--psi-text); }
.article-content blockquote {
  border-left: 3px solid var(--psi-accent);
  padding: 16px 24px; margin: 28px 0;
  background: rgba(212,162,76,0.04); border-radius: 0 8px 8px 0;
}
.article-content blockquote p { font-style: italic; color: var(--psi-sec-mid); font-size: 15px; }
.article-content code {
  font-family: 'JetBrains Mono', monospace; font-size: 14px;
  background: rgba(58,158,122,0.08); padding: 2px 6px; border-radius: 4px;
  color: var(--psi-primary-deep);
}

/* ─── INFO BOX ─── */
.info-box {
  background: rgba(58,158,122,0.04);
  border-left: 4px solid var(--psi-primary);
  border-radius: 0 14px 14px 0;
  padding: 24px 28px;
  margin: 28px 0;
}
.info-box h4 {
  font-family: 'DM Sans', sans-serif; font-weight: 700; font-size: 15px;
  color: var(--psi-primary-deep); margin-bottom: 10px;
  display: flex; align-items: center; gap: 8px;
}
.info-box p { font-size: 15px; color: var(--psi-text); margin-bottom: 8px; }
.info-box p:last-child { margin-bottom: 0; }

/* ─── WARNING BOX ─── */
.warning-box {
  background: rgba(212,112,96,0.04);
  border-left: 4px solid var(--psi-danger);
  border-radius: 0 14px 14px 0;
  padding: 24px 28px;
  margin: 28px 0;
}
.warning-box h4 {
  font-family: 'DM Sans', sans-serif; font-weight: 700; font-size: 15px;
  color: var(--psi-danger); margin-bottom: 10px;
  display: flex; align-items: center; gap: 8px;
}
.warning-box p { font-size: 15px; color: var(--psi-text); margin-bottom: 8px; }
.warning-box p:last-child { margin-bottom: 0; }

/* ─── COMPARISON TABLE ─── */
.comparison-table {
  width: 100%; border-collapse: collapse;
  margin: 24px 0 28px; font-size: 14px;
  border-radius: 12px; overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.comparison-table thead th {
  background: var(--psi-secondary); color: #fff;
  padding: 14px 16px; text-align: left;
  font-weight: 700; font-size: 13px; letter-spacing: 0.3px;
}
.comparison-table tbody td {
  padding: 12px 16px;
  border-bottom: 1px solid rgba(58,158,122,0.08);
  background: #fff; vertical-align: top;
}
.comparison-table tbody tr:last-child td { border-bottom: none; }
.comparison-table tbody tr:hover td { background: rgba(58,158,122,0.02); }
.status-legal { color: var(--psi-success); font-weight: 700; font-size: 12px; }
.status-illegal { color: var(--psi-danger); font-weight: 700; font-size: 12px; }
.status-grey { color: var(--psi-accent); font-weight: 700; font-size: 12px; }

/* ─── SIDEBAR ─── */
.article-sidebar { position: sticky; top: 120px; }

/* ─── TOC ─── */
.toc {
  background: #fff; border-radius: 16px;
  padding: 28px 24px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  margin-bottom: 24px;
}
.toc__title {
  font-family: 'DM Sans', sans-serif; font-weight: 800;
  font-size: 13px; letter-spacing: 1px; text-transform: uppercase;
  color: var(--psi-text-muted); margin-bottom: 16px;
  padding-bottom: 12px; border-bottom: 2px solid rgba(58,158,122,0.1);
}
.toc__list { list-style: none; }
.toc__list li { margin-bottom: 0; }
.toc__list a {
  display: block; padding: 7px 0 7px 14px;
  color: var(--psi-text-muted); font-size: 13px; font-weight: 600;
  line-height: 1.4; border-left: 2px solid transparent; transition: all 0.2s;
}
.toc__list a:hover {
  color: var(--psi-primary); border-left-color: var(--psi-primary);
  text-decoration: none; background: rgba(58,158,122,0.03);
}
.toc__list a.active {
  color: var(--psi-primary); border-left-color: var(--psi-primary);
  background: rgba(58,158,122,0.04);
}

/* ─── SIDEBAR RELATED ─── */
.sidebar-related__name {
  font-weight: 700; font-size: 14px; color: var(--psi-text);
  margin-top: 4px; line-height: 1.4; transition: color 0.2s;
}
.sidebar-related__item:hover .sidebar-related__name { color: var(--psi-primary); }

/* ─── SOURCES ─── */
.sources { margin-top: 48px; padding-top: 32px; border-top: 2px solid rgba(58,158,122,0.1); }
.sources h3 { margin-bottom: 20px; }
.sources ol { list-style: none; counter-reset: source-counter; padding-left: 0; }
.sources li {
  counter-increment: source-counter;
  padding: 8px 0 8px 36px; position: relative;
  font-size: 13px; color: var(--psi-text-muted); line-height: 1.6;
  border-bottom: 1px solid rgba(58,158,122,0.05);
}
.sources li::before {
  content: counter(source-counter);
  position: absolute; left: 0; top: 8px;
  font-family: 'JetBrains Mono', monospace; font-weight: 700; font-size: 11px;
  color: var(--psi-primary); background: rgba(58,158,122,0.08);
  width: 24px; height: 24px;
  display: flex; align-items: center; justify-content: center; border-radius: 6px;
}
.sources li a { color: var(--psi-primary); font-weight: 600; }

/* ─── RELATED ARTICLES ─── */
.related-section { padding: 64px 0; background: #fff; }
.related-section__header { text-align: center; margin-bottom: 40px; }
.related-section__header p { color: var(--psi-text-muted); margin-top: 8px; }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.related-card__category {
  font-family: 'JetBrains Mono', monospace;
  font-weight: 600; font-size: 10px; letter-spacing: 2px;
  text-transform: uppercase; color: var(--psi-accent); margin-bottom: 8px;
}

/* ─── DECORATIVE ─── */
.hero-mycelium { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.deco-float--document { width: 320px; height: 320px; top: 200px; right: -60px; opacity: 0.06; }
.topo-contours--article { position: absolute; inset: 0; pointer-events: none; z-index: 0; }

/* ─── SUP REFERENCES ─── */
sup a {
  font-family: 'JetBrains Mono', monospace; font-size: 10px; font-weight: 700;
  color: var(--psi-primary); text-decoration: none; padding: 0 2px;
}
sup a:hover { text-decoration: underline; }

/* ─── ARTICLE RESPONSIVE ─── */
@media (max-width: 960px) {
  .article-layout { grid-template-columns: 1fr; gap: 40px; }
  .article-sidebar { position: static; order: -1; }
  .toc { display: none; }
  .related-grid { grid-template-columns: 1fr; }
}
@media (max-width: 900px) {
  .blog-hero { padding: 60px 0 72px; }
  .comparison-table { font-size: 12px; }
  .comparison-table thead th,
  .comparison-table tbody td { padding: 10px 10px; }
}
@media (max-width: 600px) {
  .blog-hero__meta { gap: 10px; }
  .comparison-table { display: block; overflow-x: auto; }
}
