/* =====================================================
   zulegen.de – Style System
   Theme: Personal Development & Growth
   Fonts: Space Grotesk (headings) + Inter (body)
   Colors: Deep Black, Electric Mint, Off-White
   ===================================================== */

@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=Inter:wght@300;400;500;600;700;800&display=swap');

/* ===== DESIGN TOKENS ===== */
:root {
  --black: #0A0A0A;
  --black-mid: #141418;
  --black-soft: #1C1C24;
  --black-card: #1E1E28;
  --mint: #00E5A0;
  --mint-dark: #00C288;
  --mint-glow: rgba(0,229,160,0.12);
  --mint-faint: rgba(0,229,160,0.06);
  --offwhite: #F5F5F0;
  --gray-100: #E8E8E4;
  --gray-200: #D0D0CC;
  --gray-400: #8A8A86;
  --gray-600: #5A5A58;
  --white: #ffffff;
  --border: rgba(255,255,255,0.08);
  --border-light: #E0E0DC;
  --text: #1A1A1A;
  --text-mid: #555550;
  --text-light: #8A8A86;
  --text-inv: rgba(255,255,255,0.88);
  --text-inv-mid: rgba(255,255,255,0.55);

  --font-head: 'Space Grotesk', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;

  --radius: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 20px;

  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 8px 30px rgba(0,0,0,0.1);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.15);
  --shadow-glow: 0 0 30px rgba(0,229,160,0.15);

  --container: 1180px;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 16.5px;
  line-height: 1.75;
  color: var(--text);
  background: var(--offwhite);
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--mint-dark); text-decoration: none; }
a:hover { text-decoration: underline; }
ul, ol { padding-left: 1.5rem; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.15;
  color: var(--black);
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.4rem, 3vw, 2rem); margin-top: 2.5rem; margin-bottom: 1rem; }
h3 { font-size: 1.25rem; margin-top: 1.8rem; margin-bottom: 0.75rem; }
p { margin-bottom: 1.2rem; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }

/* ===== READ BAR ===== */
.read-bar {
  position: fixed; top: 0; left: 0; height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--mint), #00B8D4);
  z-index: 9999; transition: width 0.1s linear;
}

/* ===== HEADER ===== */
.site-header {
  position: sticky; top: 0; z-index: 900;
  background: var(--black);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 28px; height: 68px;
  transition: box-shadow 0.25s;
}
.site-header.is-scrolled { box-shadow: 0 4px 20px rgba(0,0,0,0.4); }
.header-logo { display: flex; align-items: center; }
.header-logo img { height: 38px; width: auto; }

.main-nav { list-style: none; display: flex; gap: 2px; padding: 0; }
.main-nav a {
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-inv-mid);
  text-decoration: none;
  padding: 7px 16px;
  border-radius: var(--radius);
  transition: color 0.2s, background 0.2s;
  letter-spacing: -0.01em;
}
.main-nav a:hover { color: var(--white); background: rgba(255,255,255,0.06); text-decoration: none; }
.main-nav .nav-highlight {
  background: var(--mint);
  color: var(--black) !important;
  font-weight: 700;
}
.main-nav .nav-highlight:hover { background: var(--mint-dark) !important; }

.nav-toggle {
  display: none;
  background: none; border: none;
  cursor: pointer; padding: 4px;
}
.nav-toggle span {
  display: block; width: 22px; height: 2px;
  background: var(--white); margin: 5px 0;
  transition: all 0.3s;
}

/* ===== HERO ===== */
.site-hero {
  background: var(--black);
  color: var(--white);
  padding: 96px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
  opacity: 0.22; display: block;
}
.site-hero::before {
  content: '';
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(160deg, rgba(10,10,10,0.96) 0%, rgba(20,20,24,0.9) 40%, rgba(0,229,160,0.08) 100%);
}
.site-hero::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--mint), transparent 70%);
  z-index: 3;
}
.site-hero .container { position: relative; z-index: 2; }

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mint);
  margin-bottom: 22px;
}
.hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 24px; height: 2px;
  background: var(--mint);
}
.site-hero h1 {
  color: var(--white);
  font-size: clamp(2.6rem, 6vw, 4.2rem);
  font-weight: 700;
  line-height: 1.05;
  margin-bottom: 24px;
  letter-spacing: -0.03em;
  max-width: 700px;
}
.site-hero h1 span {
  background: linear-gradient(90deg, var(--mint), #00B8D4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.site-hero p.lead {
  font-size: 1.1rem;
  color: var(--text-inv-mid);
  max-width: 540px;
  margin-bottom: 40px;
  line-height: 1.75;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.btn-primary {
  display: inline-block;
  background: var(--mint);
  color: var(--black);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: -0.01em;
  padding: 14px 32px;
  border-radius: var(--radius-lg);
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}
.btn-primary:hover { background: var(--mint-dark); text-decoration: none; transform: translateY(-1px); box-shadow: var(--shadow-glow); }
.btn-secondary {
  display: inline-block;
  border: 1.5px solid rgba(255,255,255,0.2);
  color: var(--text-inv);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.92rem;
  padding: 13px 28px;
  border-radius: var(--radius-lg);
  transition: border-color 0.2s, color 0.2s;
}
.btn-secondary:hover { border-color: var(--mint); color: var(--mint); text-decoration: none; }

.hero-stats {
  display: flex; gap: 48px; margin-top: 60px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}
.hero-stat-val {
  font-family: var(--font-head);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}
.hero-stat-val span { color: var(--mint); }
.hero-stat-desc {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-inv-mid);
  margin-top: 6px;
  font-family: var(--font-head);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ===== TOPIC BAND ===== */
.topic-band { background: var(--offwhite); padding: 68px 0; }
.topic-band.bg-dark { background: var(--black); color: var(--white); }
.topic-band.bg-dark h2 { color: var(--white); }

.band-header {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: 36px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-light);
}
.topic-band.bg-dark .band-header { border-bottom-color: var(--border); }
.band-header h2 { margin: 0; }
.band-eyebrow {
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mint-dark);
  margin-bottom: 4px;
}
.topic-band.bg-dark .band-eyebrow { color: var(--mint); }
.band-header a {
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--black);
  letter-spacing: -0.01em;
  padding-bottom: 2px;
  border-bottom: 2px solid var(--mint);
}
.topic-band.bg-dark .band-header a { color: var(--white); }
.band-header a:hover { text-decoration: none; color: var(--mint-dark); }

/* ===== ARTICLE CARDS ===== */
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

.zl-card {
  display: block;
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 24px;
  transition: box-shadow 0.2s, transform 0.2s;
  color: var(--text);
  position: relative;
  overflow: hidden;
}
.zl-card::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--mint), transparent);
  opacity: 0;
  transition: opacity 0.25s;
}
.zl-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  text-decoration: none;
}
.zl-card:hover::after { opacity: 1; }

.zl-card.card-dark {
  background: var(--black-card);
  border-color: rgba(255,255,255,0.06);
}
.topic-band.bg-dark .zl-card { background: var(--black-card); border-color: rgba(255,255,255,0.06); }
.zl-card-tag {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mint-dark);
  background: var(--mint-glow);
  padding: 3px 10px;
  border-radius: 4px;
  margin-bottom: 14px;
}
.card-dark .zl-card-tag, .topic-band.bg-dark .zl-card-tag { color: var(--mint); background: var(--mint-faint); }
.zl-card-title {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--black);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.card-dark .zl-card-title, .topic-band.bg-dark .zl-card-title { color: var(--white); }
.zl-card-excerpt {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.65;
  margin-bottom: 16px;
}
.card-dark .zl-card-excerpt, .topic-band.bg-dark .zl-card-excerpt { color: var(--text-inv-mid); }
.zl-card-meta {
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-light);
  letter-spacing: 0.02em;
}
.card-dark .zl-card-meta, .topic-band.bg-dark .zl-card-meta { color: rgba(255,255,255,0.3); }

/* ===== STATS BAND ===== */
.stats-band {
  background: var(--black-mid);
  padding: 56px 0;
  color: var(--white);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat-item {
  text-align: center;
  padding: 24px 16px;
  border-right: 1px solid var(--border);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: var(--font-head);
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 6px;
  letter-spacing: -0.03em;
}
.stat-num span { color: var(--mint); }
.stat-label {
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-inv-mid);
}

/* ===== CTA BAND ===== */
.cta-band {
  background: var(--black);
  padding: 76px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 400px; height: 400px;
  background: radial-gradient(circle, var(--mint-glow) 0%, transparent 70%);
  pointer-events: none;
}
.cta-band h2 { color: var(--white); margin-top: 0; margin-bottom: 14px; font-size: 2.2rem; position: relative; }
.cta-band p { color: var(--text-inv-mid); max-width: 480px; margin: 0 auto 32px; position: relative; }
.btn-cta-mint {
  display: inline-block;
  background: var(--mint);
  color: var(--black);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  padding: 16px 40px;
  border-radius: var(--radius-lg);
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  position: relative;
}
.btn-cta-mint:hover { background: var(--white); text-decoration: none; transform: translateY(-2px); box-shadow: var(--shadow-glow); }

/* ===== FOOTER ===== */
.site-footer {
  background: var(--black);
  color: var(--text-inv-mid);
  padding: 56px 0 28px;
  border-top: 1px solid var(--border);
}
.footer-top {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border);
}
.footer-brand p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.35);
  max-width: 280px;
  margin-top: 16px;
  line-height: 1.7;
}
.footer-col h4 {
  color: var(--mint);
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; padding: 0; }
.footer-col li { margin-bottom: 9px; }
.footer-col a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.4);
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--mint); text-decoration: none; }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
  padding-top: 24px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.2);
}
.footer-logo img { height: 36px; }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { color: rgba(255,255,255,0.25); }
.footer-legal a:hover { color: var(--mint); text-decoration: none; }

/* ===== BREADCRUMB ===== */
.breadcrumb-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border-light);
  padding: 10px 0;
}
.breadcrumb-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-mid);
  display: flex; align-items: center; gap: 6px; flex-wrap: wrap;
}
.breadcrumb-inner a { color: var(--text-mid); }
.breadcrumb-inner a:hover { color: var(--mint-dark); text-decoration: none; }
.crumb-sep { color: var(--gray-200); }
.crumb-cur { color: var(--black); font-weight: 700; }

/* ===== ARTICLE HERO ===== */
.art-hero {
  background: var(--black);
  padding: 56px 0 48px;
  position: relative;
  overflow: hidden;
}
.art-hero::before {
  content: '';
  position: absolute; top: 0; right: 0;
  width: 300px; height: 300px;
  background: radial-gradient(circle, var(--mint-glow) 0%, transparent 70%);
  pointer-events: none;
}
.art-hero::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--mint), transparent 60%);
}
.art-hero .container { position: relative; z-index: 1; }
.art-badge {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--mint);
  color: var(--black);
  padding: 5px 14px;
  border-radius: var(--radius);
  margin-bottom: 18px;
}
.art-hero h1 {
  color: var(--white);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.1;
  max-width: 800px;
  letter-spacing: -0.02em;
}
.art-hero p.lead {
  color: var(--text-inv-mid);
  font-size: 1.05rem;
  margin-top: 16px;
  max-width: 680px;
  margin-bottom: 0;
}

/* ===== META BAR ===== */
.meta-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border-light);
}
.meta-bar-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 12px 24px;
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-mid);
}
.meta-av {
  width: 32px; height: 32px; flex-shrink: 0;
  background: var(--black);
  color: var(--mint);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.72rem;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.meta-sep { color: var(--gray-200); }
.meta-updated { margin-left: auto; font-size: 0.72rem; color: var(--text-light); }

/* ===== ARTICLE LAYOUT ===== */
.art-layout {
  max-width: var(--container);
  margin: 0 auto;
  padding: 52px 24px 80px;
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 52px;
  align-items: start;
}

/* ===== ARTICLE BODY ===== */
.art-body h2 { color: var(--black); border-bottom: 1px solid var(--border-light); padding-bottom: 8px; }
.art-body ul li { margin-bottom: 0.5rem; }
.art-body a { color: var(--mint-dark); }
.art-body a:hover { color: var(--black); }
.art-body strong { font-weight: 700; color: var(--black); }

.pull-quote {
  margin: 36px 0;
  padding: 22px 28px;
  border-left: 3px solid var(--mint);
  background: var(--mint-glow);
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.45;
  color: var(--black);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.hl-box {
  background: var(--black);
  color: var(--white);
  border-radius: var(--radius-md);
  padding: 24px 28px;
  margin: 32px 0;
  position: relative;
  overflow: hidden;
}
.hl-box::before {
  content: '';
  position: absolute; top: 0; left: 0;
  width: 3px; height: 100%;
  background: var(--mint);
}
.hl-box-label {
  font-family: var(--font-head);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mint);
  margin-bottom: 12px;
}
.hl-box p { color: var(--text-inv); margin-bottom: 0; }
.hl-box ul { color: var(--text-inv); list-style: none; padding: 0; margin: 0; }
.hl-box ul li {
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.92rem;
}
.hl-box ul li:last-child { border-bottom: none; }
.hl-box ul li strong, .hl-box strong { color: var(--mint); }

.info-box {
  border: 1px solid var(--border-light);
  border-left: 3px solid var(--black);
  background: var(--white);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 18px 22px;
  margin: 28px 0;
  font-size: 0.95rem;
}
.info-box-title {
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 8px;
}
.info-box p { margin-bottom: 0; }

.verdict-box {
  background: var(--mint-glow);
  border: 1px solid rgba(0,229,160,0.2);
  border-top: 3px solid var(--mint);
  border-radius: var(--radius-md);
  padding: 26px;
  margin: 40px 0;
}
.verdict-title {
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mint-dark);
  margin-bottom: 10px;
}
.verdict-box p { margin-bottom: 0; font-size: 0.95rem; }
.verdict-box p + p { margin-top: 0.8rem; }

.sources-box {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 18px 22px;
  margin-top: 36px;
  font-size: 0.83rem;
}
.sources-title {
  font-family: var(--font-head);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-mid);
  margin-bottom: 8px;
}
.sources-box ul { padding-left: 1.1rem; }
.sources-box li { color: var(--text-mid); margin-bottom: 4px; }

/* ===== FAQ ===== */
.faq-list { margin-top: 28px; }
.faq-item {
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  margin-bottom: 8px;
  overflow: hidden;
}
.faq-q {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 15px 20px;
  background: var(--white);
  color: var(--black);
  cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
}
.faq-q::after { content: '+'; font-size: 1.3rem; color: var(--mint); font-weight: 400; flex-shrink: 0; }
.faq-a { padding: 0 20px 15px; font-size: 0.92rem; line-height: 1.75; }

/* ===== AUTHOR BOX ===== */
.art-author {
  display: flex; gap: 16px; align-items: flex-start;
  background: var(--white);
  border: 1px solid var(--border-light);
  border-left: 3px solid var(--mint);
  border-radius: var(--radius-md);
  padding: 22px;
  margin-top: 44px;
}
.author-av {
  width: 48px; height: 48px; flex-shrink: 0;
  background: var(--black);
  color: var(--mint);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.88rem;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.author-name { font-family: var(--font-head); font-weight: 700; font-size: 0.95rem; color: var(--black); margin-bottom: 2px; }
.author-role { font-size: 0.78rem; color: var(--text-mid); margin-bottom: 8px; }
.author-bio { font-size: 0.88rem; color: var(--text-mid); line-height: 1.65; margin: 0; }

/* ===== SIDEBAR ===== */
.art-side { position: sticky; top: 80px; }

.side-tldr {
  background: var(--black);
  border-radius: var(--radius-md);
  padding: 22px;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
}
.side-tldr::before {
  content: '';
  position: absolute; top: 0; left: 0;
  width: 3px; height: 100%;
  background: var(--mint);
}
.side-tldr-head {
  font-family: var(--font-head);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mint);
  margin-bottom: 14px;
}
.side-tldr ul {
  list-style: none; padding: 0; margin: 0;
  color: var(--text-inv);
}
.side-tldr ul li {
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.88rem;
  line-height: 1.5;
  display: flex; align-items: flex-start; gap: 8px;
}
.side-tldr ul li::before { content: '→'; color: var(--mint); flex-shrink: 0; font-size: 0.8rem; margin-top: 2px; }
.side-tldr ul li:last-child { border-bottom: none; }

.side-links {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-top: 2px solid var(--black);
  border-radius: var(--radius-md);
  padding: 20px;
  margin-bottom: 20px;
}
.side-links-head {
  font-family: var(--font-head);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-mid);
  margin-bottom: 14px;
}
.side-links ul { list-style: none; padding: 0; margin: 0; }
.side-links ul li { border-bottom: 1px solid var(--border-light); padding: 9px 0; }
.side-links ul li:last-child { border-bottom: none; }
.side-links ul li a {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
  font-family: var(--font-head);
  transition: color 0.2s;
  line-height: 1.4;
  letter-spacing: -0.01em;
}
.side-links ul li a:hover { color: var(--mint-dark); text-decoration: none; }

.side-cta {
  background: var(--black);
  border-radius: var(--radius-md);
  padding: 22px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.side-cta::before {
  content: '';
  position: absolute; top: -40px; right: -40px;
  width: 120px; height: 120px;
  background: radial-gradient(circle, var(--mint-glow) 0%, transparent 70%);
  pointer-events: none;
}
.side-cta-head {
  font-family: var(--font-head);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mint);
  margin-bottom: 10px;
  position: relative;
}
.side-cta p { font-size: 0.88rem; color: var(--text-inv-mid); margin-bottom: 16px; line-height: 1.55; position: relative; }
.btn-side {
  display: block;
  background: var(--mint);
  color: var(--black);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.88rem;
  padding: 12px 20px;
  border-radius: var(--radius);
  transition: background 0.2s, box-shadow 0.2s;
  position: relative;
}
.btn-side:hover { background: var(--white); text-decoration: none; box-shadow: var(--shadow-glow); }

/* ===== RELATED ===== */
.related-section {
  background: var(--white);
  border-top: 1px solid var(--border-light);
  padding: 56px 0;
}
.related-section h2 { font-size: 1.3rem; margin: 0 0 24px; border: none; }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.related-card {
  display: block;
  background: var(--offwhite);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 20px;
  transition: box-shadow 0.2s, transform 0.2s;
  color: var(--text);
}
.related-card:hover { box-shadow: var(--shadow-sm); transform: translateY(-2px); text-decoration: none; }
.related-card-tag {
  font-family: var(--font-head);
  font-size: 0.68rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.06em;
  color: var(--mint-dark); margin-bottom: 8px;
}
.related-card-title {
  font-family: var(--font-head);
  font-size: 0.92rem; font-weight: 700;
  line-height: 1.3; color: var(--black);
  letter-spacing: -0.01em;
}
.related-card-arrow { font-size: 0.82rem; color: var(--mint-dark); font-weight: 600; margin-top: 12px; display: block; }

/* ===== LEGAL PAGES ===== */
.legal-page { max-width: 820px; margin: 0 auto; padding: 56px 24px 80px; }
.legal-page h1 { font-size: 2.2rem; margin-bottom: 32px; }
.legal-page h2 { font-size: 1.3rem; border-bottom: 1px solid var(--border-light); padding-bottom: 8px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid .stat-item:nth-child(2) { border-right: none; }
}
@media (max-width: 768px) {
  .site-header { padding: 0 16px; }
  .main-nav { display: none; }
  .nav-toggle { display: block; }
  .main-nav.open {
    display: flex; flex-direction: column;
    position: fixed; top: 68px; left: 0; right: 0;
    background: var(--black);
    padding: 16px;
    gap: 4px;
    z-index: 800;
    box-shadow: var(--shadow-lg);
    border-top: 1px solid var(--border);
  }
  .main-nav.open a { color: var(--text-inv); padding: 10px 14px; }
  .card-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .art-layout { grid-template-columns: 1fr; }
  .art-side { position: static; }
  .related-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-direction: column; gap: 20px; }
  .hero-btns { flex-direction: column; align-items: flex-start; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}
