/* --- Self-hosted Fonts --- */
@font-face { font-family: 'Space Grotesk'; src: url('/fonts/SpaceGrotesk-Light.woff2') format('woff2'); font-weight: 300; font-style: normal; font-display: swap; }
@font-face { font-family: 'Space Grotesk'; src: url('/fonts/SpaceGrotesk-Regular.woff2') format('woff2'); font-weight: 400; font-style: normal; font-display: swap; }
@font-face { font-family: 'Space Grotesk'; src: url('/fonts/SpaceGrotesk-Medium.woff2') format('woff2'); font-weight: 500; font-style: normal; font-display: swap; }
@font-face { font-family: 'Space Grotesk'; src: url('/fonts/SpaceGrotesk-SemiBold.woff2') format('woff2'); font-weight: 600; font-style: normal; font-display: swap; }
@font-face { font-family: 'Space Grotesk'; src: url('/fonts/SpaceGrotesk-Bold.woff2') format('woff2'); font-weight: 700; font-style: normal; font-display: swap; }
@font-face { font-family: 'JetBrains Mono'; src: url('/fonts/JetBrainsMono-Light.woff2') format('woff2'); font-weight: 300; font-style: normal; font-display: swap; }
@font-face { font-family: 'JetBrains Mono'; src: url('/fonts/JetBrainsMono-Regular.woff2') format('woff2'); font-weight: 400; font-style: normal; font-display: swap; }
@font-face { font-family: 'JetBrains Mono'; src: url('/fonts/JetBrainsMono-Medium.woff2') format('woff2'); font-weight: 500; font-style: normal; font-display: swap; }

:root {
  --cream: #F0E4D0;
  --cream-light: #F5EDE1;
  --cream-dark: #E8D9C2;
  --navy: #1B2D3A;
  --navy-deep: #0F1C26;
  --navy-light: #2A4052;
  --terracotta: #A65D37;
  --terracotta-light: #C17A52;
  --gold: #D4A944;
  --gold-bright: #E8C84A;
  --copper: #B87333;
  --amber: #E8943A;
  --success: #27AE60;
  --danger: #C0392B;
  --mono: 'JetBrains Mono', monospace;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }

body {
  font-family: 'Space Grotesk', sans-serif;
  background: var(--navy-deep);
  color: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

/* Hexagonal bg pattern */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='52' viewBox='0 0 60 52' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 0L60 17.32v17.32L30 52 0 34.64V17.32z' fill='none' stroke='%23D4A944' stroke-width='0.5'/%3E%3C/svg%3E");
  background-size: 60px 52px;
  opacity: 0.02;
  pointer-events: none;
  z-index: 0;
}

/* Noise texture */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  opacity: 0.03;
  pointer-events: none;
  z-index: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 256px 256px;
}

.container { max-width: 800px; margin: 0 auto; padding: 0 24px; position: relative; z-index: 1; }
a { color: var(--cream); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--gold); }

/* --- Kente Stripe --- */
.kente-stripe {
  height: 6px;
  background: repeating-linear-gradient(90deg, var(--gold) 0px, var(--gold) 24px, var(--terracotta) 24px, var(--terracotta) 48px, var(--copper) 48px, var(--copper) 72px, var(--gold) 72px, var(--gold) 96px);
}

/* --- Nav --- */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(15, 28, 38, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(212, 169, 68, 0.08);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 56px;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 1rem;
  color: var(--cream);
}
.nav-logo svg { flex-shrink: 0; }
.nav-links { display: flex; align-items: center; gap: 20px; }
.nav-links a { font-size: 0.85rem; font-weight: 500; color: var(--cream-dark); }
.nav-links a:hover { color: var(--gold); }
.lang-switcher { display: flex; gap: 4px; font-family: var(--mono); font-size: 0.65rem; }
.lang-switcher button {
  background: none; border: 1px solid rgba(232, 217, 194, 0.15); color: var(--cream-dark);
  padding: 3px 7px; border-radius: 3px; cursor: pointer; font-family: inherit; font-size: inherit; transition: all 0.2s;
}
.lang-switcher button:hover { border-color: var(--gold); color: var(--gold); }
.lang-switcher button.active { background: var(--gold); color: var(--navy-deep); border-color: var(--gold); font-weight: 500; }

/* Nav dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown > a { cursor: pointer; }
.nav-dropdown-menu {
  display: none; position: absolute; top: 100%; left: 50%; transform: translateX(-50%);
  padding-top: 8px; min-width: 220px; z-index: 200;
}
.nav-dropdown-menu-inner {
  background: var(--navy); border: 1px solid rgba(212, 169, 68, 0.15); border-radius: 8px;
  padding: 6px 0; box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}
.nav-dropdown:hover .nav-dropdown-menu, .nav-dropdown:focus-within .nav-dropdown-menu, .nav-dropdown-menu:hover { display: block; }
.nav-dropdown-menu a {
  display: flex; align-items: center; gap: 10px; padding: 10px 16px;
  font-size: 0.82rem; font-weight: 500; color: var(--cream-dark);
  transition: background 0.15s, color 0.15s; white-space: nowrap;
}
.nav-dropdown-menu a:hover { background: rgba(212, 169, 68, 0.08); color: var(--gold); }
.nav-dropdown-menu .dd-dot { width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0; }
.nav-dropdown-menu .dd-dot.green { background: #4ade80; }
.nav-dropdown-menu .dd-dot.gold { background: var(--gold); }
.nav-dropdown-menu .dd-label {
  font-family: var(--mono); font-size: 0.6rem; color: var(--cream-dark);
  margin-left: auto; opacity: 0.6;
}
.nav-cta { color: var(--gold) !important; }

/* --- Hero --- */
.hero { padding: 32px 0 16px; text-align: center; position: relative; }
.hero::before {
  content: '';
  position: absolute;
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
  width: 500px;
  height: 350px;
  background: radial-gradient(ellipse, rgba(212, 169, 68, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

/* Badge */
.drop-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: var(--gold);
  background: rgba(212, 169, 68, 0.08);
  border: 1px solid rgba(212, 169, 68, 0.25);
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 14px;
}
.drop-badge .dot {
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse-gold 2s infinite;
}
@keyframes pulse-gold {
  0%, 100% { box-shadow: 0 0 0 0 rgba(212, 169, 68, 0.5); }
  50% { box-shadow: 0 0 0 6px rgba(212, 169, 68, 0); }
}

.hero h1 {
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.hero h1 .highlight { color: var(--gold-bright); }
.hero-tagline { font-size: 0.95rem; font-weight: 300; color: var(--cream-dark); margin-bottom: 18px; max-width: 560px; margin-left: auto; margin-right: auto; }

/* Stats row */
.stats-row {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.stat-item { text-align: center; }
.stat-val {
  display: block;
  font-family: var(--mono);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--gold-bright);
  line-height: 1.2;
}
.stat-lbl {
  display: block;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--cream-dark);
  text-transform: uppercase;
  margin-top: 2px;
}

/* --- Email Form --- */
.signup-block { margin-bottom: 12px; }
.email-form {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  max-width: 460px;
  margin: 0 auto 8px;
}
.email-form input[type="email"] {
  flex: 1;
  min-width: 0;
  padding: 11px 14px;
  background: var(--navy);
  border: 1px solid rgba(232, 217, 194, 0.12);
  border-radius: 8px;
  color: var(--cream);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.2s;
}
.email-form input[type="email"]::placeholder { color: rgba(232, 217, 194, 0.35); }
.email-form input[type="email"]:focus { border-color: var(--gold); }
.email-form .honeypot { position: absolute; left: -9999px; opacity: 0; height: 0; width: 0; pointer-events: none; }
.email-form button {
  padding: 11px 22px;
  background: var(--gold);
  color: var(--navy-deep);
  border: none;
  border-radius: 8px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s, transform 0.1s;
}
.email-form button:hover { background: var(--gold-bright); }
.email-form button:active { transform: scale(0.98); }
.email-form button:disabled { opacity: 0.7; cursor: not-allowed; }
.form-consent {
  text-align: center;
  font-size: 0.7rem;
  color: rgba(232, 217, 194, 0.45);
}
.form-consent a { color: rgba(232, 217, 194, 0.6); text-decoration: underline; }
.form-error { text-align: center; font-size: 0.8rem; color: var(--danger); margin-top: 8px; display: none; }

/* Success message */
.signup-success {
  text-align: center;
  padding: 20px;
  background: rgba(39, 174, 96, 0.06);
  border: 1px solid rgba(39, 174, 96, 0.2);
  border-radius: 10px;
  display: none;
  animation: fadeUp 0.3s ease-out;
}
.signup-success.visible { display: block; }
.signup-success .check { color: var(--success); font-size: 1.4rem; margin-bottom: 6px; }
.signup-success p { font-weight: 500; font-size: 0.95rem; }
.signup-success .email-display { color: var(--gold); font-family: var(--mono); font-size: 0.85rem; }
.success-share { margin-top: 16px; padding-top: 14px; border-top: 1px solid rgba(39, 174, 96, 0.15); }
.success-share-label { font-size: 0.8rem !important; font-weight: 400 !important; color: var(--cream-dark); opacity: 0.7; margin-bottom: 10px !important; }

.social-proof {
  font-family: var(--mono);
  font-size: 0.7rem;
  color: var(--cream-dark);
  margin-top: 16px;
  text-align: center;
  opacity: 0;
  transition: opacity 0.5s;
}
.social-proof.visible { opacity: 1; }
.social-proof .count { color: var(--gold-bright); font-weight: 600; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

/* --- Divider --- */
.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 169, 68, 0.15), transparent);
  margin: 24px 0;
}

/* --- Section Label --- */
.section-label {
  font-family: var(--mono);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 16px;
}

/* --- TOC Preview --- */
.toc-section { margin-bottom: 24px; }
.toc-section h2 { font-size: 1.2rem; font-weight: 700; margin-bottom: 16px; }
.toc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.toc-item {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 6px;
  transition: background 0.2s;
}
.toc-item:hover { background: rgba(232, 217, 194, 0.03); }
.toc-num {
  font-family: var(--mono);
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--gold);
  min-width: 24px;
}
.toc-title {
  font-size: 0.82rem;
  font-weight: 400;
  color: var(--cream-dark);
  line-height: 1.4;
}
.toc-more {
  grid-column: 1 / -1;
  text-align: center;
  padding: 12px;
  font-family: var(--mono);
  font-size: 0.7rem;
  color: var(--cream-dark);
  opacity: 0.6;
}

/* --- Key Findings --- */
.findings { margin-bottom: 24px; }
.findings h2 { font-size: 1.2rem; font-weight: 700; margin-bottom: 16px; }
.finding-card {
  padding: 14px 18px;
  background: rgba(27, 45, 58, 0.5);
  border-left: 3px solid var(--terracotta);
  border-radius: 0 8px 8px 0;
  margin-bottom: 8px;
}
.finding-card h4 {
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--cream);
}
.finding-card p {
  font-size: 0.78rem;
  color: var(--cream-dark);
  line-height: 1.6;
}
.finding-card .finding-stat {
  font-family: var(--mono);
  color: var(--gold-bright);
  font-weight: 600;
}

/* --- Audience --- */
.audience { margin-bottom: 24px; }
.audience h2 { font-size: 1.2rem; font-weight: 700; margin-bottom: 12px; }
.audience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.audience-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px;
  background: var(--navy);
  border: 1px solid rgba(212, 169, 68, 0.06);
  border-radius: 8px;
}
.audience-item .a-icon {
  font-size: 1.2rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.audience-item h4 { font-size: 0.85rem; font-weight: 600; margin-bottom: 2px; }
.audience-item p { font-size: 0.75rem; color: var(--cream-dark); line-height: 1.4; }

/* --- Quote --- */
.quote-block {
  position: relative;
  padding: 18px 22px;
  border-left: 3px solid var(--terracotta);
  background: rgba(27, 45, 58, 0.5);
  border-radius: 0 8px 8px 0;
  margin-bottom: 24px;
}
.quote-block p {
  font-size: 1rem;
  font-weight: 400;
  font-style: italic;
  line-height: 1.7;
  color: var(--cream);
}
.quote-block .quote-attr {
  font-style: normal;
  font-size: 0.75rem;
  color: var(--cream-dark);
  margin-top: 12px;
  font-family: var(--mono);
}

/* --- Second CTA --- */
.second-cta {
  text-align: center;
  padding: 20px 0;
  margin-bottom: 24px;
}
.second-cta h2 { font-size: 1.15rem; font-weight: 700; margin-bottom: 6px; }
.second-cta p { font-size: 0.85rem; color: var(--cream-dark); margin-bottom: 16px; }

/* --- Cross-sell card --- */
.cross-sell {
  background: var(--navy);
  border: 1px solid rgba(212, 169, 68, 0.08);
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  margin-bottom: 24px;
}
.cross-sell .cs-label {
  font-family: var(--mono);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 8px;
}
.cross-sell h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 8px; }
.cross-sell p { font-size: 0.85rem; color: var(--cream-dark); margin-bottom: 16px; line-height: 1.5; }
.cross-sell .cs-stats {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 16px;
  font-family: var(--mono);
  font-size: 0.7rem;
}
.cross-sell .cs-stats .cs-val { color: var(--gold-bright); font-weight: 600; }
.cross-sell a.cs-cta {
  display: inline-block;
  padding: 10px 24px;
  border: 1px solid rgba(212, 169, 68, 0.3);
  border-radius: 8px;
  color: var(--gold);
  font-weight: 600;
  font-size: 0.85rem;
  transition: all 0.2s;
}
.cross-sell a.cs-cta:hover { background: rgba(212, 169, 68, 0.08); border-color: var(--gold); }

/* --- Share --- */
.share-section { text-align: center; margin-bottom: 24px; }
.share-section h3 { font-size: 0.9rem; font-weight: 500; margin-bottom: 16px; color: var(--cream-dark); }
.share-grid {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}
.share-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 8px 14px;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  border: 1px solid rgba(232, 217, 194, 0.1);
  background: rgba(240, 228, 208, 0.03);
  color: var(--cream-dark);
  font-family: 'Space Grotesk', sans-serif;
}
.share-btn:hover { border-color: var(--gold); color: var(--gold); background: rgba(212, 169, 68, 0.05); }

/* --- Data Explorer --- */
.data-explorer { margin-bottom: 32px; }
.data-explorer h2 { font-size: 1.2rem; font-weight: 700; margin-bottom: 16px; }
.chart-grid { display: grid; grid-template-columns: 1fr; gap: 16px; }
.chart-card {
  background: rgba(27, 45, 58, 0.5);
  border: 1px solid rgba(212, 169, 68, 0.08);
  border-radius: 10px;
  padding: 16px;
  position: relative;
  overflow: hidden;
}
.chart-card h4 {
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--cream);
}
.chart-container {
  width: 100%;
  min-height: 300px;
  position: relative;
}
.chart-gated {
  position: relative;
}
.chart-gated .chart-container {
  filter: blur(8px);
  pointer-events: none;
  user-select: none;
}
.chart-gate-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(15, 28, 38, 0.7);
  border-radius: 10px;
  z-index: 5;
  text-align: center;
  padding: 24px;
}
.chart-gate-overlay h4 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--cream);
}
.chart-gate-overlay p {
  font-size: 0.78rem;
  color: var(--cream-dark);
  margin-bottom: 14px;
}
.chart-gate-overlay .gate-cta {
  display: inline-block;
  padding: 10px 24px;
  background: var(--gold);
  color: var(--navy-deep);
  font-weight: 600;
  font-size: 0.85rem;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}
.chart-gate-overlay .gate-cta:hover { background: var(--gold-bright); }
.chart-watermark {
  font-family: var(--mono);
  font-size: 0.6rem;
  color: rgba(232, 217, 194, 0.3);
  text-align: right;
  margin-top: 6px;
}

/* --- Footer --- */
footer {
  border-top: 1px solid rgba(212, 169, 68, 0.08);
  padding: 28px 0;
  text-align: center;
  font-size: 0.75rem;
  color: rgba(232, 217, 194, 0.45);
}
footer a { color: rgba(232, 217, 194, 0.6); }
footer a:hover { color: var(--gold); }
.footer-links { display: flex; justify-content: center; gap: 20px; margin-bottom: 12px; }

/* --- Cookie consent --- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: var(--navy);
  border-top: 1px solid rgba(212, 169, 68, 0.12);
  padding: 16px 24px;
  display: none;
}
.cookie-banner.visible { display: block; }
.cookie-inner {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.cookie-text { font-size: 0.78rem; color: var(--cream-dark); flex: 1; }
.cookie-btns { display: flex; gap: 8px; flex-shrink: 0; }
.cookie-btn {
  padding: 8px 18px;
  border-radius: 6px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  border: none;
}
.cookie-accept { background: var(--gold); color: var(--navy-deep); }
.cookie-accept:hover { background: var(--gold-bright); }
.cookie-refuse { background: transparent; color: var(--cream-dark); border: 1px solid rgba(232, 217, 194, 0.15); }
.cookie-refuse:hover { border-color: var(--cream); color: var(--cream); }

/* --- Reveal --- */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* --- Kente Divider --- */
.kente-divider {
  height: 6px;
  background: repeating-linear-gradient(90deg, var(--gold) 0px, var(--gold) 24px, var(--terracotta) 24px, var(--terracotta) 48px, var(--copper) 48px, var(--copper) 72px, var(--gold) 72px, var(--gold) 96px);
  opacity: 0.6;
  margin: 0;
}

/* --- Hamburger (mobile) --- */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  width: 22px;
  height: 2px;
  background: var(--cream);
  border-radius: 1px;
  transition: all 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

@media (prefers-reduced-motion: reduce) {
  .reveal { transition: none !important; opacity: 1 !important; transform: none !important; }
  * { animation-duration: 0s !important; transition-duration: 0s !important; }
}

/* --- Mobile --- */
@media (max-width: 640px) {
  .hero { padding: 20px 0 10px; }
  .drop-badge { margin-bottom: 10px; font-size: 0.6rem; padding: 4px 10px; }
  .hero h1 { font-size: 1.6rem; margin-bottom: 6px; }
  .hero-tagline { font-size: 0.82rem; margin-bottom: 12px; }
  .stats-row { gap: 12px; margin-bottom: 14px; }
  .stat-val { font-size: 0.95rem; }
  .stat-lbl { font-size: 0.55rem; }
  .signup-block { margin-bottom: 8px; }
  .email-form { flex-direction: column; gap: 6px; }
  .email-form input[type="email"] { width: 100%; padding: 10px 12px; font-size: 0.85rem; }
  .email-form button { width: 100%; padding: 10px 16px; font-size: 0.85rem; }
  .divider { margin: 16px 0; }
  .toc-grid { grid-template-columns: 1fr; }
  .toc-section { margin-bottom: 16px; }
  .findings { margin-bottom: 16px; }
  .finding-card { padding: 10px 14px; margin-bottom: 6px; }
  .audience { margin-bottom: 16px; }
  .audience-grid { grid-template-columns: 1fr; }
  .audience-item { padding: 10px; }
  .quote-block { padding: 14px 16px 14px 18px; margin-bottom: 16px; }
  .quote-block p { font-size: 0.88rem; }
  .second-cta { padding: 12px 0; margin-bottom: 16px; }
  .cross-sell { padding: 16px; margin-bottom: 16px; }
  .share-section { margin-bottom: 16px; }
  .cookie-inner { flex-direction: column; text-align: center; }
  .section-label { margin-bottom: 8px; }
  .hamburger { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 56px;
    left: 0;
    right: 0;
    background: rgba(15, 28, 38, 0.98);
    flex-direction: column;
    padding: 16px 24px;
    gap: 12px;
    border-bottom: 1px solid rgba(212,169,68,0.1);
  }
  body.nav-open .nav-links { display: flex; }
}
