/* =============================================================
   Onset — Variant A ("Orbit") landing page
   Static HTML + CSS + vanilla JS
   Design target: 1440px wide, sensible mobile fallback below.
   ============================================================= */

/* Brand fonts — loaded from Google Fonts in <head>:
   · Inter (body/UI) — neutral, premium, very readable
   · Manrope (display headings) — geometric humanist, complements the Onset wordmark
   The local "EightOne" face is kept as a fallback for legacy use only. */
@font-face {
  font-family: "EightOne";
  src: url("brand/fonts/EightOne.ttf") format("truetype");
  font-weight: 100 900;
  font-display: swap;
}

:root {
  /* Official Onset brand colors (Brandguide PDF) */
  --onset-green: #008661;           /* primary green */
  --onset-green-soft: #d6e4a8;      /* soft yellow-green */
  --onset-deep: #004742;            /* deep teal */
  --onset-deep-2: #003634;
  --onset-forest: #00554d;
  --onset-yellow: #cad405;          /* felgeel-groen (compliant accent) */
  --onset-yellow-soft: #e6ee5a;
  --onset-blue: #bdfdff;            /* lichtblauw (futureproof accent) */
  --onset-blue-soft: #d8feff;
  --onset-off-white: #f4feff;
  --onset-magenta: #e61981;         /* roze (Get Onset / accent) */
  --onset-magenta-soft: #ff4d9a;

  /* Backwards-compat aliases used throughout the codebase */
  --onset-teal: var(--onset-green);
  --onset-mint: var(--onset-green-soft);
  --onset-mint-soft: var(--onset-green-soft);
  --onset-cream: #EEEFD4;
  --onset-cream-2: #F5F4E6;
  --onset-bone: #FAF8EE;
  --onset-ink: #091F19;
  --onset-ink-2: #2A3B34;
  --onset-line: rgba(9, 31, 25, 0.12);
  --onset-line-dark: rgba(238, 239, 212, 0.14);

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-pill: 999px;

  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);

  --font-ui: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-display: "Manrope", "Inter", system-ui, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }
html, body {
  margin: 0;
  padding: 0;
  background: var(--onset-bone);
  color: var(--onset-ink);
  font-family: var(--font-body);
  font-weight: 400;
  letter-spacing: -0.005em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.08;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

img { max-width: 100%; display: block; }

/* === Shared section bigword pattern === */
.section-bigword,
.a-wiifm-bigword,
.a-what-bigword,
.a-report-bigword,
.a-compare-bigword,
.a-preorder-bigword,
.a-testimonial-quote-mark {
  position: absolute;
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.06em;
  line-height: 0.85;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

/* Light-section bigwords — very subtle, atmospheric only */
.a-wiifm-bigword,
.a-what-bigword,
.a-report-bigword {
  background: linear-gradient(135deg, rgba(14, 58, 46, 0.05) 0%, rgba(46, 138, 115, 0.04) 50%, rgba(229, 0, 110, 0.03) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.a-wiifm-bigword {
  left: -20px; top: 60px;
  font-size: clamp(160px, 18vw, 260px);
}
.a-what-bigword {
  right: -30px; top: 100px;
  font-size: clamp(140px, 16vw, 230px);
}
.a-report-bigword {
  right: -40px; top: 80px;
  font-size: clamp(140px, 16vw, 240px);
}

/* Ensure inner content sits above bigword */
.a-wiifm-inner,
.a-what-inner,
.a-report-inner,
.a-compare-inner,
.a-testimonial-inner,
.a-preorder-card { position: relative; z-index: 1; }

/* === WIIFM (What's in it for us) === */
.a-wiifm {
  background: var(--onset-bone);
  padding: 120px 72px;
  position: relative;
  overflow: hidden;
}
.a-wiifm-inner { max-width: 1280px; margin: 0 auto; }
.a-wiifm-header { max-width: 720px; margin: 0 auto 64px; text-align: center; }
.a-wiifm-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 4.6vw, 68px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.05;
  margin: 0;
  color: var(--onset-ink);
}
.a-wiifm-title .accent { color: var(--onset-magenta); font-style: normal; }
.a-wiifm-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: stretch;
}
.wiifm-card {
  position: relative;
  background: white;
  border-radius: 22px;
  padding: 40px 32px 36px;
  border: 1px solid var(--onset-line);
  box-shadow: 0 16px 40px rgba(14, 58, 46, 0.04);
  transition: transform 0.5s cubic-bezier(.2,.8,.2,1), box-shadow 0.5s, border-color 0.4s;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.wiifm-card::before { content: none; }
.wiifm-card:hover {
  transform: translateY(-6px);
  border-color: rgba(229, 0, 110, 0.25);
  box-shadow: 0 26px 60px rgba(14, 58, 46, 0.10);
}
.wiifm-card:hover::before { transform: scaleX(1); opacity: 1; }
.wiifm-card-num { display: none; }
.wiifm-card-title {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.05;
  margin: 18px 0 14px;
  color: var(--onset-ink);
}
.wiifm-accent {
  background: linear-gradient(90deg, var(--onset-magenta), #FF6FB0);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
/* All 3 wiifm accents stay within brand spectrum (magenta + 2 greens) */
.wiifm-card-attractive .wiifm-accent {
  background: linear-gradient(90deg, var(--onset-magenta), var(--onset-magenta-soft));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.wiifm-card-futureproof .wiifm-accent {
  background: linear-gradient(90deg, var(--onset-deep), var(--onset-green));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.wiifm-card-compliant .wiifm-accent {
  background: linear-gradient(90deg, var(--onset-green), #5fc09a);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.wiifm-card-desc {
  margin: 0;
  font-family: var(--font-body);
  font-size: 15.5px;
  line-height: 1.6;
  color: rgba(14, 58, 46, 0.72);
}

/* === Heatmap === */
.heatmap {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 4px;
}
.heatmap-row {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 16px;
  align-items: center;
}
.heatmap-row-label {
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: rgba(14, 58, 46, 0.65);
}
.heatmap-cells {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
.heatmap-cell {
  padding: 14px 14px;
  border-radius: 10px;
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--onset-ink);
  border: 1px solid transparent;
  transition: transform 0.3s, border-color 0.3s;
}
.heatmap-cell:hover { transform: translateY(-2px); border-color: rgba(14, 58, 46, 0.12); }
.heatmap-cell.h-strong   { background: linear-gradient(160deg, rgba(46, 138, 115, 0.20), rgba(170, 220, 195, 0.40)); color: var(--onset-deep); }
.heatmap-cell.h-base     { background: linear-gradient(160deg, rgba(232, 188, 70, 0.18), rgba(232, 238, 159, 0.30)); color: #6e5500; }
.heatmap-cell.h-attention { background: linear-gradient(160deg, rgba(217, 100, 89, 0.18), rgba(229, 0, 110, 0.18)); color: #8a1e3a; }
.heatmap-legend {
  display: flex;
  gap: 22px;
  margin-top: 8px;
  padding-left: 156px;
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(14, 58, 46, 0.55);
}
.heatmap-legend span { display: inline-flex; align-items: center; gap: 6px; }
.legend-dot { width: 10px; height: 10px; border-radius: 50%; }
.legend-dot.h-strong   { background: var(--onset-teal); }
.legend-dot.h-base     { background: #E8BC46; }
.legend-dot.h-attention { background: var(--onset-magenta); }

/* === Action narrative blocks === */
.action-narrative {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--onset-line);
}
.narrative-block {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.narrative-label {
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(14, 58, 46, 0.55);
}
.narrative-block ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.narrative-block li {
  position: relative;
  padding-left: 14px;
  font-size: 13.5px;
  line-height: 1.5;
  color: rgba(14, 58, 46, 0.78);
}
.narrative-block li::before {
  content: '';
  position: absolute;
  left: 0; top: 9px;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--onset-teal);
}
.action-card[data-pillar="s"] .narrative-block li::before { background: #8aa829; }
.action-card[data-pillar="g"] .narrative-block li::before { background: var(--onset-deep); }

/* Hide the side delta block when narrative is used (full-width action) */
.action-card:has(.action-narrative) {
  grid-template-columns: 72px 1fr;
}
.action-card:has(.action-narrative) .action-card-aside { display: none; }

/* === FUTURE band (replaces forest env) === */
.a-future {
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, var(--onset-deep) 0%, #003634 60%, #002624 100%);
  color: var(--onset-cream);
  padding: 140px 72px 160px;
  isolation: isolate;
}
.a-future::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 15% 25%, rgba(202, 212, 5, 0.10), transparent 50%),
    radial-gradient(ellipse at 85% 75%, rgba(230, 25, 129, 0.10), transparent 55%),
    radial-gradient(ellipse at 50% 100%, rgba(189, 253, 255, 0.07), transparent 55%);
  pointer-events: none;
  z-index: 0;
}
.a-future-orbs {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  z-index: 0;
  opacity: 0.65;
}
.a-future-orb {
  position: absolute;
  width: 540px;
  max-width: 48vw;
  height: auto;
  filter: brightness(1.05);
  animation: future-orb-float 8s ease-in-out infinite;
}
.a-future-orb-e { left: 18%; top: 50%; transform: translateY(-50%); animation-delay: 0s; }
.a-future-orb-s { left: 50%; top: 50%; transform: translate(-50%, -50%); animation-delay: -2.6s; z-index: 1; }
.a-future-orb-g { right: 18%; top: 50%; transform: translateY(-50%); animation-delay: -5.2s; }
@keyframes future-orb-float {
  0%, 100% { transform: translateY(-50%) scale(1); }
  50%      { transform: translateY(-54%) scale(1.04); }
}
.a-future-orb-s {
  animation-name: future-orb-float-center;
}
@keyframes future-orb-float-center {
  0%, 100% { transform: translate(-50%, -50%) scale(1); }
  50%      { transform: translate(-50%, -54%) scale(1.04); }
}
.a-future-inner {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}
.a-future-title {
  font-family: var(--font-display);
  font-size: clamp(48px, 7.5vw, 120px);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1.0;
  margin: 0;
  color: var(--onset-cream);
  text-wrap: balance;
}

/* === Env quote (Cruyff) === */
.env-quote {
  margin: 28px 0 0;
  padding: 18px 24px;
  border-left: 2px solid rgba(170, 220, 195, 0.55);
  display: flex;
  flex-direction: column;
  gap: 6px;
  max-width: 580px;
}
.env-quote-text {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: 17px;
  line-height: 1.45;
  color: rgba(238, 239, 212, 0.92);
  letter-spacing: -0.005em;
}
.env-quote-author {
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(238, 239, 212, 0.55);
}

/* Hide legacy guarantee section */
.a-guarantee { display: none !important; }

/* Compare card — remove badge "Voor het MKB" */
.compare-badge { display: none !important; }

/* Accessible focus rings — keyboard only */
:focus { outline: none; }
:focus-visible {
  outline: 2px solid var(--onset-mint);
  outline-offset: 3px;
  border-radius: 4px;
}
.btn:focus-visible {
  outline-offset: 4px;
}
input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--onset-teal);
  outline-offset: 1px;
}
::selection { background: var(--onset-mint); color: var(--onset-deep); }

/* Scroll progress bar — sits at very top of viewport */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--onset-mint), var(--onset-teal), var(--onset-cream));
  transform: scaleX(0);
  transform-origin: left center;
  z-index: 100;
  pointer-events: none;
  transition: transform 0.1s linear;
  box-shadow: 0 0 10px rgba(170, 220, 195, 0.55);
}

/* ======================  Typography  ====================== */
.eyebrow {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.7;
}
.h1 {
  font-size: 88px; line-height: 0.95; font-weight: 600;
  letter-spacing: -0.035em; margin: 0; text-wrap: balance;
}
.h2 {
  font-size: 56px; line-height: 1.0; font-weight: 600;
  letter-spacing: -0.03em; margin: 0; text-wrap: balance;
}
.h3 {
  font-size: 28px; line-height: 1.1; font-weight: 600;
  letter-spacing: -0.02em; margin: 0;
}
.lead {
  font-size: 20px; line-height: 1.45; font-weight: 400;
  opacity: 0.85; text-wrap: pretty;
}
.body { font-size: 16px; line-height: 1.55; font-weight: 400; }
.small { font-size: 13px; line-height: 1.45; opacity: 0.7; }

em.accent { font-style: normal; color: var(--onset-teal); }

.gradient-text {
  background: linear-gradient(90deg, #AADDC4, #6FBDA4, #AADDC4);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: hero-gradient-shift 6s ease-in-out infinite;
  display: inline-block;
  font-style: normal;
}
.gradient-text-static {
  background: linear-gradient(90deg, #AADDC4, #6FBDA4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-style: normal;
}

/* ======================  Buttons  ====================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 28px;
  border-radius: var(--radius-pill);
  font-family: inherit;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.01em;
  border: none;
  cursor: pointer;
  transition: transform 0.35s cubic-bezier(.2,.8,.2,1), background 0.25s, box-shadow 0.4s cubic-bezier(.2,.8,.2,1);
  text-decoration: none;
  color: inherit;
  position: relative;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); transition-duration: 0.1s; }
.btn .btn-arrow { transition: transform 0.35s cubic-bezier(.2,.8,.2,1); }
.btn:hover .btn-arrow { transform: translateX(3px); }

.btn-primary {
  background: var(--onset-cream);
  color: var(--onset-deep);
  box-shadow: 0 8px 24px rgba(238, 239, 212, 0.18);
}
.btn-primary:hover {
  background: #F8F7D6;
  box-shadow: 0 14px 36px rgba(238, 239, 212, 0.32);
}

.btn-dark { background: var(--onset-deep); color: var(--onset-cream); }
.btn-dark:hover {
  background: #145041;
  box-shadow: 0 14px 32px rgba(14, 58, 46, 0.22);
}

.btn-ghost {
  background: transparent;
  color: inherit;
  border: 1px solid currentColor;
  opacity: 0.9;
}
.btn-ghost:hover { opacity: 1; background: rgba(255, 255, 255, 0.05); }

.btn-arrow {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--onset-deep);
  color: var(--onset-cream);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}
.btn-primary .btn-arrow { background: var(--onset-deep); color: var(--onset-cream); }
.btn-dark .btn-arrow    { background: var(--onset-cream); color: var(--onset-deep); }

/* ======================  Badge  ====================== */
.badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px; border-radius: var(--radius-pill);
  font-size: 13px; font-weight: 500; letter-spacing: 0.02em;
  border: 1px solid currentColor; opacity: 0.92;
}
.badge .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: currentColor; animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0.35; }
}

/* ======================  Nav  ====================== */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 72px;
}
.nav-logo { height: 52px; width: auto; display: block; }
.nav-links {
  display: flex;
  gap: 36px;
  font-size: 15px;
  font-weight: 400;
}
.nav-links a {
  color: inherit;
  text-decoration: none;
  opacity: 0.85;
  position: relative;
  transition: opacity 0.25s, color 0.25s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 1px;
  background: currentColor;
  opacity: 0;
  transform: scaleX(0.4);
  transform-origin: left center;
  transition: opacity 0.3s, transform 0.4s cubic-bezier(.2,.8,.2,1);
}
.nav-links a:hover { opacity: 1; }
.nav-links a:hover::after { opacity: 0.6; transform: scaleX(1); }
.nav-cta { padding: 14px 24px; font-size: 15px; }

.nav-dark { color: var(--onset-cream); }

/* Mobile menu toggle (hidden on desktop) */
.nav-toggle {
  display: none;
  background: transparent; border: 1px solid currentColor;
  border-radius: var(--radius-pill);
  padding: 10px 14px; color: inherit;
  font-family: inherit; font-size: 14px; cursor: pointer;
}

/* ======================  Footer  ====================== */
.footer {
  background: var(--onset-deep-2);
  color: var(--onset-cream);
}
.foot {
  padding: 56px 72px 36px;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 48px;
  border-top: 1px solid var(--onset-line-dark);
}
.foot h4 {
  margin: 0 0 18px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.6;
}
.foot a {
  display: block;
  padding: 6px 0;
  color: inherit;
  text-decoration: none;
  font-size: 15px;
  opacity: 0.85;
}
.foot a:hover { opacity: 1; }
.foot-link-btn {
  display: block;
  padding: 6px 0;
  background: none;
  border: 0;
  color: inherit;
  font: inherit;
  font-size: 15px;
  text-align: left;
  cursor: pointer;
  opacity: 0.85;
  font-family: inherit;
}
.foot-link-btn:hover { opacity: 1; }
.foot-blurb {
  margin-top: 20px; opacity: 0.75; max-width: 300px;
}
.foot-meta {
  padding: 20px 72px 36px;
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  opacity: 0.55;
}

/* ======================  Legal modals  ====================== */
.legal-modal {
  position: fixed; inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.legal-modal[hidden] { display: none; }
.legal-modal-backdrop {
  position: absolute; inset: 0;
  background: rgba(11, 26, 24, 0.72);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  animation: legalFadeIn 0.25s ease-out;
}
.legal-modal-panel {
  position: relative;
  background: var(--onset-bone, #eeefd4);
  color: var(--onset-deep-2, #0b1a18);
  max-width: 720px;
  width: 100%;
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  border-radius: 20px;
  padding: 40px 48px 44px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
  animation: legalSlideIn 0.32s cubic-bezier(.2,.8,.2,1);
}
.legal-modal-close {
  position: absolute;
  top: 14px; right: 18px;
  width: 36px; height: 36px;
  border: 0;
  background: transparent;
  font-size: 26px;
  line-height: 1;
  color: inherit;
  cursor: pointer;
  opacity: 0.55;
  border-radius: 50%;
  transition: opacity 0.2s, background 0.2s;
}
.legal-modal-close:hover { opacity: 1; background: rgba(11, 26, 24, 0.08); }
.legal-modal-panel h3 {
  margin: 0 0 24px;
  font-family: var(--font-display, 'Manrope', sans-serif);
  font-size: 30px;
  font-weight: 600;
  letter-spacing: -0.02em;
}
.legal-modal-body h4 {
  margin: 22px 0 8px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.01em;
}
.legal-modal-body p {
  margin: 0 0 10px;
  font-size: 14.5px;
  line-height: 1.6;
  opacity: 0.85;
}
body.legal-modal-open { overflow: hidden; }

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

@media (max-width: 600px) {
  .legal-modal { padding: 16px; }
  .legal-modal-panel { padding: 32px 24px 28px; border-radius: 16px; }
  .legal-modal-panel h3 { font-size: 24px; }
}

/* ======================  Shared reveal  ====================== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
  will-change: opacity, transform;
}
.reveal.is-visible { opacity: 1; transform: none; }

/* =====================================================================
   HERO  (dark, animated "orbit")
   ===================================================================== */
.a-hero {
  position: relative;
  background: #050B09;
  color: var(--onset-cream);
  overflow: hidden;
  min-height: 780px;
  max-height: 1040px;
  height: 100vh;
  padding-top: 100px;
  display: flex;
  flex-direction: column;
}
.a-hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.a-hero-orb-light-a,
.a-hero-orb-light-b {
  position: absolute;
  pointer-events: none;
  filter: blur(30px);
  transition: transform 1.2s cubic-bezier(.2,.8,.2,1);
}
.a-hero-orb-light-a {
  right: -18%; top: -20%;
  width: 1400px; height: 1400px;
  background: radial-gradient(circle at 35% 45%,
              rgba(170, 220, 195, 0.85) 0%,
              rgba(111, 189, 164, 0.55) 18%,
              rgba(46, 138, 115, 0.28) 38%,
              rgba(14, 58, 46, 0) 68%);
  animation: hero-breathe 9s ease-in-out infinite;
}
.a-hero-orb-light-b {
  left: -10%; bottom: -30%;
  width: 900px; height: 900px;
  background: radial-gradient(circle, rgba(238, 239, 212, 0.14) 0%, transparent 70%);
  filter: blur(40px);
  animation: hero-breathe-alt 11s ease-in-out infinite;
  transition: transform 1.4s cubic-bezier(.2,.8,.2,1);
}
.a-hero-wave {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.55;
  mix-blend-mode: screen;
  pointer-events: none;
  animation: hero-wave-drift 18s ease-in-out infinite;
  transform-origin: center;
}
.a-hero-grain {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(rgba(238, 239, 212, 0.02) 1px, transparent 1px);
  background-size: 3px 3px;
}
.a-hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.a-hero-particle {
  position: absolute;
  border-radius: 50%;
  background: rgba(170, 220, 195, 0.6);
  box-shadow: 0 0 6px rgba(170, 220, 195, 0.4);
}
.a-hero-nav-wrap {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 30;
  transition: background-color 0.4s, backdrop-filter 0.4s, border-color 0.4s, padding 0.4s;
  border-bottom: 1px solid transparent;
}
.a-hero-nav-wrap.is-scrolled {
  background: rgba(10, 35, 28, 0.72);
  backdrop-filter: saturate(150%) blur(14px);
  -webkit-backdrop-filter: saturate(150%) blur(14px);
  border-bottom: 1px solid rgba(238, 239, 212, 0.08);
}
.a-hero-nav-wrap.is-scrolled .nav { padding-top: 16px; padding-bottom: 16px; }
.a-hero-nav-wrap.is-scrolled .nav-logo { height: 38px; transition: height 0.4s; }
.nav-logo { transition: height 0.4s; }

/* Nav CTA is magenta from the start, deeper magenta when scrolled */
.nav-cta {
  background: var(--onset-magenta) !important;
  color: #ffffff !important;
  box-shadow: 0 10px 26px rgba(230, 25, 129, 0.32);
  transition: background 0.3s, box-shadow 0.4s, transform 0.35s cubic-bezier(.2,.8,.2,1);
}
.nav-cta:hover {
  background: var(--onset-magenta-soft) !important;
  box-shadow: 0 14px 36px rgba(230, 25, 129, 0.45);
}
.a-hero-nav-wrap.is-scrolled .nav-cta {
  box-shadow: 0 14px 32px rgba(230, 25, 129, 0.38);
}

.a-hero-main {
  position: relative;
  z-index: 1;
  padding: 20px 72px 60px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 40px;
  align-items: center;
  flex: 1;
}
.a-hero-title {
  color: var(--onset-cream);
  font-size: clamp(56px, 6vw, 96px);
  line-height: 0.97;
  font-weight: 700;
  letter-spacing: -0.038em;
  margin: 0;
  text-wrap: balance;
}
.hero-accent-pink {
  font-style: normal;
  color: var(--onset-magenta-soft);
  background: linear-gradient(90deg, #FF4D9A, var(--onset-magenta));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
}

/* Hero rotator: one-time fade sequence that ends on "Onset." */
.hero-rotator {
  display: inline-block;
  position: relative;
  vertical-align: top;
  height: 1em;
  line-height: 1;
}
.hero-rotator-track {
  position: relative;
  display: inline-block;
}
/* Hidden sizer holds container width for the widest word so layout doesn't jump */
.hero-rotator-sizer {
  display: inline-block;
  visibility: hidden;
  white-space: nowrap;
  line-height: 1;
}
.hero-rotator-word {
  position: absolute;
  left: 0; top: 0;
  white-space: nowrap;
  color: var(--onset-cream);
  opacity: 0;
  animation-fill-mode: forwards;
}
.hero-rotator-word.hero-rotator-onset {
  background: linear-gradient(90deg, #FF4D9A, var(--onset-magenta));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Sizer is span 1, so .hero-rotator-word elements are spans 2-5 */
/* Each word gets an equal slot in a 14s loop; 4 words = 3.5s per word */
.hero-rotator-word { animation: rot-loop 14s ease-in-out infinite; }
.hero-rotator-word:nth-of-type(2) { animation-delay: 0s; }
.hero-rotator-word:nth-of-type(3) { animation-delay: 3.5s; }
.hero-rotator-word:nth-of-type(4) { animation-delay: 7s; }
.hero-rotator-word:nth-of-type(5) { animation-delay: 10.5s; }

@keyframes rot-loop {
  0%   { opacity: 0; transform: translateY(0.4em); }
  4%   { opacity: 1; transform: translateY(0); }
  22%  { opacity: 1; transform: translateY(0); }
  27%, 100% { opacity: 0; transform: translateY(-0.4em); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-rotator-word { animation: none !important; opacity: 0; }
  .hero-rotator-word.hero-rotator-onset { opacity: 1 !important; }
}
.a-hero-kicker {
  margin: 22px 0 0;
  font-family: var(--font-ui);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: rgba(238, 239, 212, 0.78);
  max-width: 560px;
  line-height: 1.5;
}
.a-hero-kicker strong { font-weight: 700; }
.a-hero-lead {
  margin-top: 22px;
  max-width: 540px;
  color: rgba(238, 239, 212, 0.72);
  font-size: 17px;
  line-height: 1.55;
}
.a-hero-lead em { font-style: normal; color: var(--onset-cream); font-weight: 600; }
.a-hero-ctas {
  display: flex;
  gap: 16px;
  margin-top: 36px;
  align-items: center;
  flex-wrap: wrap;
}
.a-hero-ctas .btn-primary { padding: 20px 32px; font-size: 17px; }
.a-hero-ctas .btn-ghost {
  color: var(--onset-cream);
  padding: 20px 28px;
}
.a-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 14px 7px 12px;
  border: 1px solid rgba(238, 239, 212, 0.18);
  background: rgba(238, 239, 212, 0.04);
  border-radius: 999px;
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: rgba(238, 239, 212, 0.85);
  margin-bottom: 26px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.hero-eyebrow-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--onset-mint);
  box-shadow: 0 0 0 4px rgba(170, 220, 195, 0.18), 0 0 12px rgba(170, 220, 195, 0.6);
  animation: hero-eyebrow-pulse 2.4s ease-in-out infinite;
}
@keyframes hero-eyebrow-pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(170, 220, 195, 0.18), 0 0 12px rgba(170, 220, 195, 0.6); }
  50%      { box-shadow: 0 0 0 7px rgba(170, 220, 195, 0.05), 0 0 18px rgba(170, 220, 195, 0.85); }
}

.a-hero-finepr {
  margin-top: 24px;
  color: rgba(238, 239, 212, 0.55);
  font-size: 14px;
  line-height: 1.5;
  max-width: 480px;
}

.a-hero-cohort {
  margin-top: 22px;
  max-width: 380px;
}
.cohort-bar {
  height: 5px;
  border-radius: 999px;
  background: rgba(238, 239, 212, 0.10);
  overflow: hidden;
  position: relative;
}
.cohort-fill {
  position: absolute;
  inset: 0 auto 0 0;
  background: linear-gradient(90deg, var(--onset-mint), var(--onset-cream));
  border-radius: inherit;
  box-shadow: 0 0 14px rgba(170, 220, 195, 0.45);
}
.cohort-meta {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
  font-family: var(--font-ui);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 500;
}
.cohort-count { color: var(--onset-cream); }
.cohort-count strong {
  color: var(--onset-mint);
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}
.cohort-status { color: rgba(238, 239, 212, 0.45); }

.a-hero-orb-wrap {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  transition: transform 1s cubic-bezier(.2,.8,.2,1);
}
.a-hero-orb {
  position: relative;
  width: 100%;
  max-width: 560px;
  aspect-ratio: 1 / 1;
  margin: 0 auto;
}
.a-hero-orb svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.a-hero-orb .hero-rotate-slow         { animation: hero-rotate-cw 90s linear infinite; transform-origin: center; }
.a-hero-orb .hero-rotate-medium-reverse { animation: hero-rotate-ccw 60s linear infinite; transform-origin: center; }
.a-hero-orb .hero-rotate-fast         { animation: hero-rotate-cw 40s linear infinite; transform-origin: center; }

.a-hero-orb img {
  position: absolute;
  width: 50%;
  filter: brightness(1.25) saturate(1.1) drop-shadow(0 12px 40px rgba(46, 138, 115, 0.35));
}
.a-hero-orb .orb-e { left: 12%; top: 25%; animation: hero-converge-e 9s cubic-bezier(.45,.05,.55,.95) infinite; }
.a-hero-orb .orb-s { left: 25%; top: 25%; animation: hero-converge-s 9s cubic-bezier(.45,.05,.55,.95) infinite;
                     filter: brightness(1.25) saturate(1.1) drop-shadow(0 12px 40px rgba(170, 220, 195, 0.3));
                     z-index: 2; }
.a-hero-orb .orb-g { left: 38%; top: 25%; animation: hero-converge-g 9s cubic-bezier(.45,.05,.55,.95) infinite; }

/* Per-orb labels: spread under the orb cluster, each clearly readable */
.a-hero-orb-labels {
  position: relative;
  width: 100%;
  height: 78px;
  margin-top: 12px;
  z-index: 4;
}
.orb-label {
  position: absolute;
  top: 0;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-align: center;
}
/* Spread wider than orb centers (37/50/63) for breathing room while staying linked */
.orb-label-e { left: 28%; }
.orb-label-s { left: 50%; }
.orb-label-g { left: 72%; }

.orb-label-letter {
  font-family: var(--font-ui);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
  text-transform: uppercase;
}
.orb-label-rule {
  width: 14px;
  height: 1px;
  background: currentColor;
  opacity: 0.30;
}
.orb-label-word {
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(238, 239, 212, 0.72);
}

.orb-label-e .orb-label-letter { color: var(--onset-mint); text-shadow: 0 0 22px rgba(170, 220, 195, 0.40); }
.orb-label-s .orb-label-letter { color: #d8e29a; text-shadow: 0 0 22px rgba(232, 238, 159, 0.38); }
.orb-label-g .orb-label-letter { color: var(--onset-cream); text-shadow: 0 0 22px rgba(238, 239, 212, 0.30); }

.a-hero-glow {
  position: absolute;
  inset: 30% 30%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.55) 0%, rgba(170, 220, 195, 0.25) 35%, transparent 70%);
  filter: blur(24px);
  pointer-events: none;
  animation: hero-unity-pulse 9s cubic-bezier(.45,.05,.55,.95) infinite;
}
.a-hero-scroll {
  padding: 0 72px 28px;
  color: rgba(238, 239, 212, 0.35);
  font-size: 13px;
  position: relative;
  z-index: 2;
}
.a-hero-scroll span {
  display: inline-block;
  animation: hero-scroll-bounce 2s ease-in-out infinite;
}

/* Hero keyframes */
@keyframes hero-rotate-cw { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@keyframes hero-rotate-ccw { from { transform: rotate(0deg); } to { transform: rotate(-360deg); } }
@keyframes hero-breathe {
  0%, 100% { opacity: 0.85; transform: scale(1); }
  50%      { opacity: 1;    transform: scale(1.04); }
}
@keyframes hero-breathe-alt {
  0%, 100% { opacity: 0.7; transform: scale(1.02); }
  50%      { opacity: 1;   transform: scale(1); }
}
@keyframes hero-glow {
  0%, 100% { opacity: 0.45; transform: scale(0.85); }
  50%      { opacity: 1;    transform: scale(1.25); }
}
@keyframes hero-converge-e {
  0%, 100% { transform: translate(-22px, 6px) scale(0.97); }
  50%      { transform: translate(0, -4px) scale(1.02); }
}
@keyframes hero-converge-s {
  0%, 100% { transform: translate(0, -10px) scale(0.97); }
  50%      { transform: translate(0, -2px) scale(1.04); }
}
@keyframes hero-converge-g {
  0%, 100% { transform: translate(22px, 6px) scale(0.97); }
  50%      { transform: translate(0, -4px) scale(1.02); }
}
@keyframes hero-unity-pulse {
  0%, 100% { opacity: 0.4; transform: scale(0.85); }
  50%      { opacity: 0.9; transform: scale(1.08); }
}
@keyframes hero-drift {
  0%   { transform: translate(0, 0); opacity: 0; }
  10%  { opacity: 1; }
  50%  { transform: translate(30px, -40px); }
  90%  { opacity: 1; }
  100% { transform: translate(-20px, -80px); opacity: 0; }
}
@keyframes hero-pulse-dot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(111, 189, 164, 0.55); }
  50%      { box-shadow: 0 0 0 8px rgba(111, 189, 164, 0); }
}
@keyframes hero-gradient-shift {
  0%, 100% { background-position: 0% 50%; }
  50%      { background-position: 100% 50%; }
}
@keyframes hero-scroll-bounce {
  0%, 100% { transform: translateY(0); opacity: 0.7; }
  50%      { transform: translateY(4px); opacity: 1; }
}
@keyframes hero-wave-drift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%      { transform: translate(-30px, 10px) scale(1.02); }
}

/* Hero internal fade-up (runs on page load) */
.hero-fade-up {
  opacity: 0;
  animation: hero-fade-up 0.9s cubic-bezier(.2,.8,.2,1) forwards;
}
.hero-fade-up:nth-child(1) { animation-delay: 0.1s; }
.hero-fade-up:nth-child(2) { animation-delay: 0.25s; }
.hero-fade-up:nth-child(3) { animation-delay: 0.4s; }
.hero-fade-up:nth-child(4) { animation-delay: 0.55s; }
@keyframes hero-fade-up {
  0%   { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* =====================================================================
   STRIP  (4 image cards, data-dots)
   ===================================================================== */
.a-strip {
  background: var(--onset-bone);
  padding: 40px 72px 0;
}
.a-strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.strip-card {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: #0E3A2E;
  transition: transform 0.5s cubic-bezier(.2,.8,.2,1), box-shadow 0.5s cubic-bezier(.2,.8,.2,1);
}
.strip-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 70px rgba(14, 58, 46, 0.25);
}
.strip-card img { transition: transform 1s cubic-bezier(.2,.8,.2,1); }
.strip-card:hover img { transform: scale(1.06); }
.strip-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.95) contrast(1.02);
}
.strip-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(5, 11, 9, 0.8) 100%);
}
.strip-dot {
  position: absolute;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: rgba(170, 220, 195, 0.95);
  border: 2px solid var(--onset-cream);
  transform: translate(-50%, -50%);
  z-index: 3;
}
.strip-tooltip {
  position: absolute;
  background: rgba(5, 11, 9, 0.92);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(170, 220, 195, 0.25);
  color: var(--onset-cream);
  padding: 8px 12px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: -0.005em;
  white-space: nowrap;
  pointer-events: none;
  z-index: 4;
  opacity: 0;
  transform: translate(-50%, -140%);
  transition: opacity 0.35s ease, transform 0.35s cubic-bezier(.2,.8,.2,1);
}
.strip-card:hover .strip-tooltip {
  opacity: 1;
  transform: translate(-50%, -160%);
}
.strip-label {
  position: absolute;
  left: 24px; right: 24px; bottom: 24px;
  color: var(--onset-cream);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.15;
  z-index: 2;
}
@keyframes strip-dot-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(111, 189, 164, 0.55); transform: translate(-50%, -50%) scale(1); }
  50%      { box-shadow: 0 0 0 10px rgba(111, 189, 164, 0); transform: translate(-50%, -50%) scale(1.12); }
}
@keyframes strip-dot-fade-in {
  from { opacity: 0; transform: translate(-50%, -50%) scale(0.5); }
  to   { opacity: 1; transform: translate(-50%, -50%) scale(1); }
}
.strip-dot {
  animation: strip-dot-pulse 2.2s ease-out infinite, strip-dot-fade-in 0.6s cubic-bezier(.2,.8,.2,1) both;
}

/* =====================================================================
   WHAT  (3 ESG pillar cards)
   ===================================================================== */
.a-what {
  background: var(--onset-bone);
  color: var(--onset-ink);
  position: relative;
  overflow: hidden;
  padding: 160px 72px 1px;
  /* Subtle dot-grid pattern for futuristic feel */
  background-image:
    radial-gradient(circle at 1px 1px, rgba(14, 58, 46, 0.07) 1px, transparent 0);
  background-size: 28px 28px;
  background-position: 0 0;
}
/* Soft mesh gradient overlay for depth */
.a-what::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 0%, rgba(46, 138, 115, 0.08), transparent 55%),
    radial-gradient(ellipse at 80% 90%, rgba(229, 0, 110, 0.05), transparent 55%),
    radial-gradient(ellipse at 95% 40%, rgba(232, 217, 0, 0.05), transparent 55%);
  pointer-events: none;
}
.a-what-blob {
  position: absolute;
  right: -200px; top: -100px;
  width: 800px; height: 800px;
  opacity: 0.9;
  pointer-events: none;
}
.a-what-inner {
  position: relative;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
  align-items: start;
}
.a-what-sticky { position: sticky; top: 40px; }
.a-what-sticky h2 {
  font-size: 72px;
  line-height: 0.95;
  margin: 0;
  letter-spacing: -0.035em;
  font-weight: 500;
  text-wrap: balance;
}
.a-what-sticky .lead { margin-top: 28px; max-width: 440px; }
.a-what-cards { display: grid; gap: 16px; position: relative; }

.pillar-card {
  position: relative;
  border-radius: 22px;
  padding: 40px;
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 32px;
  align-items: center;
  overflow: hidden;
  /* All pillar cards now share the lit-up dark green look so they
     align visually with the rest of the site (like deep-dive, mkb, env) */
  background: linear-gradient(135deg, var(--onset-deep) 0%, var(--onset-green) 100%);
  color: var(--onset-cream);
  border: 1px solid rgba(170, 220, 195, 0.25);
  box-shadow: 0 30px 80px rgba(14, 58, 46, 0.18);
  min-height: 220px;
  transition: transform 0.5s cubic-bezier(.2,.8,.2,1), box-shadow 0.5s cubic-bezier(.2,.8,.2,1), border-color 0.3s;
}
.pillar-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 40px 100px rgba(14, 58, 46, 0.28);
  border-color: rgba(170, 220, 195, 0.45);
}
/* Per-pillar tinted glow accent */
.a-what-cards .pillar-card:nth-child(2) {
  background: linear-gradient(135deg, var(--onset-deep) 0%, #7a8a14 110%);
}
.a-what-cards .pillar-card:nth-child(3) {
  background: linear-gradient(135deg, var(--onset-deep) 0%, var(--onset-deep-2) 100%);
}
.pillar-card.is-highlight {
  /* Override default — kept for legacy class */
  background: linear-gradient(135deg, var(--onset-deep) 0%, var(--onset-green) 100%);
}
.pillar-card-glow {
  position: absolute;
  right: -80px; bottom: -80px;
  width: 260px; height: 260px;
  background: radial-gradient(circle, rgba(170, 220, 195, 0.3), transparent 65%);
  filter: blur(30px);
  pointer-events: none;
}
.pillar-corner {
  position: absolute;
  top: 24px; right: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 2;
}
.pillar-corner .n {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--onset-ink-2);
  opacity: 0.5;
}
.pillar-card.is-highlight .pillar-corner .n {
  color: rgba(238, 239, 212, 0.6);
  opacity: 1;
}
.pillar-corner .chip {
  flex: 0 0 auto;
  min-width: 36px; height: 28px;
  padding: 0 10px;
  border-radius: 8px;
  background: rgba(46, 138, 115, 0.10);
  color: var(--onset-teal);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  font-variant-numeric: tabular-nums;
}
.pillar-card.is-highlight .pillar-corner .chip {
  background: rgba(170, 220, 195, 0.18);
  color: var(--onset-mint);
}
.pillar-icon {
  position: relative;
  width: 110px; height: 110px;
  z-index: 1;
}
.pillar-icon::before {
  content: "";
  position: absolute;
  inset: -45px;
  border-radius: 50%;
  background: radial-gradient(circle at center,
    rgba(170, 220, 195, 0.55) 0%,
    rgba(170, 220, 195, 0.25) 35%,
    transparent 70%);
  filter: blur(18px);
  pointer-events: none;
  animation: pillar-orb-glow 5.5s ease-in-out infinite;
  z-index: 0;
}
.a-what-cards .pillar-card:nth-child(2) .pillar-icon::before {
  background: radial-gradient(circle at center,
    rgba(202, 212, 5, 0.55) 0%,
    rgba(202, 212, 5, 0.22) 35%,
    transparent 70%);
  animation-delay: -1.8s;
}
.a-what-cards .pillar-card:nth-child(3) .pillar-icon::before {
  background: radial-gradient(circle at center,
    rgba(189, 253, 255, 0.55) 0%,
    rgba(189, 253, 255, 0.22) 35%,
    transparent 70%);
  animation-delay: -3.6s;
}
@keyframes pillar-orb-glow {
  0%, 100% { opacity: 0.55; transform: scale(1); }
  50%      { opacity: 1;    transform: scale(1.12); }
}
.pillar-icon img {
  position: relative;
  display: block;
  width: 160px; height: 160px;
  max-width: none;
  margin: -25px;
  filter: saturate(1.15) brightness(1.1) drop-shadow(0 0 18px rgba(170, 220, 195, 0.35));
  z-index: 1;
}
.a-what-cards .pillar-card:nth-child(2) .pillar-icon img {
  filter: saturate(1.15) brightness(1.1) drop-shadow(0 0 18px rgba(202, 212, 5, 0.35));
}
.a-what-cards .pillar-card:nth-child(3) .pillar-icon img {
  filter: saturate(1.15) brightness(1.1) drop-shadow(0 0 18px rgba(189, 253, 255, 0.35));
}
.pillar-letter {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-ui);
  font-size: 48px;
  font-weight: 600;
  color: var(--onset-cream);
  letter-spacing: -0.04em;
  text-transform: uppercase;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
  z-index: 2;
}
.pillar-body { position: relative; z-index: 1; }
.pillar-body h3 {
  font-size: 30px;
  font-weight: 600;
  margin: 0;
  letter-spacing: -0.02em;
}
.pillar-body p {
  margin-top: 12px;
  opacity: 0.78;
  max-width: 520px;
  font-size: 16px;
  line-height: 1.55;
}
.pillar-card.is-highlight .pillar-body p {
  opacity: 0.85;
  color: rgba(238, 239, 212, 0.85);
}

/* =====================================================================
   STEPS  ("Van vragenlijst naar actieplan")
   ===================================================================== */
.a-steps {
  background: var(--onset-cream-2);
  color: var(--onset-ink);
  position: relative;
  overflow: hidden;
  padding: 100px 72px 160px;
}
/* Futuristic mesh-gradient backdrop */
.a-steps::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 10% 30%, rgba(229, 0, 110, 0.06), transparent 50%),
    radial-gradient(ellipse at 85% 75%, rgba(46, 138, 115, 0.10), transparent 55%),
    radial-gradient(ellipse at 50% 100%, rgba(232, 217, 0, 0.06), transparent 55%);
  pointer-events: none;
  z-index: 0;
}
.a-steps-esg-bg {
  position: absolute;
  right: -40px; bottom: -120px;
  font-size: 480px;
  font-weight: 500;
  letter-spacing: -0.05em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(14, 58, 46, 0.08);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}
.a-steps-inner { position: relative; }
.a-steps-title {
  font-size: 72px;
  line-height: 0.95;
  margin: 0;
  letter-spacing: -0.035em;
  font-weight: 500;
  max-width: 820px;
  text-wrap: balance;
}
.a-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 80px;
  position: relative;
}
/* Decorative SVG connector path with traveling light */
.a-steps-grid::before {
  content: '';
  position: absolute;
  top: 70px; left: 14%; right: 14%;
  height: 2px;
  background:
    repeating-linear-gradient(90deg, rgba(46, 138, 115, 0.30) 0 6px, transparent 6px 14px);
  z-index: 0;
  pointer-events: none;
  opacity: 0.7;
}
.a-steps-grid::after {
  content: '';
  position: absolute;
  top: 65px; left: 14%; width: 12px; height: 12px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--onset-mint), var(--onset-teal));
  box-shadow: 0 0 18px rgba(170, 220, 195, 0.7), 0 0 40px rgba(170, 220, 195, 0.4);
  z-index: 1;
  pointer-events: none;
  animation: steps-flow 6s linear infinite;
}
@keyframes steps-flow {
  0%   { left: 14%; opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 1; }
  100% { left: 86%; opacity: 0; }
}
@media (max-width: 1200px) {
  .a-steps-grid::before, .a-steps-grid::after { display: none; }
}
.step-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.6));
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 22px;
  padding: 40px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.9) inset, 0 12px 32px rgba(14, 58, 46, 0.04);
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: transform 0.5s cubic-bezier(.2,.8,.2,1), box-shadow 0.5s, border-color 0.4s;
}
.step-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(170, 220, 195, 0.10), transparent 60%);
  pointer-events: none;
  opacity: 0.7;
}
.step-card > * { position: relative; z-index: 1; }
.step-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 50px rgba(14, 58, 46, 0.08);
  border-color: rgba(46, 138, 115, 0.25);
}
.step-card-n {
  position: absolute;
  top: 24px; right: 28px;
  font-family: var(--font-ui);
  font-size: 88px;
  font-weight: 700;
  color: rgba(14, 58, 46, 0.06);
  line-height: 1;
  letter-spacing: -0.04em;
  pointer-events: none;
  font-variant-numeric: tabular-nums;
}
.step-card img {
  width: 96px; height: 96px;
  margin-left: -14px; margin-top: -14px;
  filter: saturate(1.1);
}
.step-card h3 {
  font-size: 28px;
  font-weight: 600;
  margin: 20px 0 0;
  letter-spacing: -0.02em;
}
.step-card p { margin-top: 14px; opacity: 0.78; }

/* =====================================================================
   REPORT  (Zo ziet jouw rapport eruit — mock dashboard)
   ===================================================================== */
.a-report {
  background: var(--onset-cream-2);
  color: var(--onset-ink);
  padding: 140px 72px 160px;
  position: relative;
  overflow: hidden;
}
.a-report-inner { max-width: 1200px; margin: 0 auto; }
.a-report-header { max-width: 760px; margin: 0 auto 64px; text-align: center; }
.a-report-header .eyebrow { color: var(--onset-teal); margin-bottom: 16px; }
.a-report-header h2 {
  font-size: clamp(40px, 4.4vw, 64px);
  font-weight: 500;
  line-height: 1.05;
  margin: 0;
  letter-spacing: -0.02em;
}
.a-report-header h2 .accent { color: var(--onset-teal); font-style: normal; }
.a-report-header .lead {
  margin-top: 20px;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
  font-size: 18px;
  line-height: 1.55;
  opacity: 0.78;
}

/* When deep-dive iframe is visible + loaded, pause heavy
   background animations so the iframe gets all the GPU/CPU. */
body.is-deepdive-active .a-hero-orb img,
body.is-deepdive-active .a-hero-orb svg,
body.is-deepdive-active .a-hero-glow,
body.is-deepdive-active .a-hero-particle,
body.is-deepdive-active .a-hero-orb-light-a,
body.is-deepdive-active .a-hero-orb-light-b,
body.is-deepdive-active .a-hero-wave,
body.is-deepdive-active .orbital-ring,
body.is-deepdive-active .orbital-center,
body.is-deepdive-active .orbital-sub,
body.is-deepdive-active .a-mkb-bigword,
body.is-deepdive-active .strip-dot {
  animation-play-state: paused !important;
}

/* === DEEP DIVE embedded demo === */
.a-deepdive {
  margin-top: 36px;
  position: relative;
  z-index: 1;
}
.a-deepdive-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}
.a-deepdive-title {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.6vw, 32px);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 6px 0 0;
  color: var(--onset-ink);
}
.a-deepdive-fs {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--onset-deep);
  color: var(--onset-cream);
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  border: 1px solid var(--onset-deep);
  cursor: pointer;
  transition: transform 0.3s cubic-bezier(.2,.8,.2,1), box-shadow 0.4s, background 0.3s;
}
.a-deepdive-fs:hover {
  transform: translateY(-2px);
  background: #134739;
  box-shadow: 0 14px 32px rgba(14, 58, 46, 0.22);
}
.a-deepdive-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--onset-line);
  background: var(--onset-deep);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.85) inset,
    0 40px 100px rgba(14, 58, 46, 0.14),
    0 8px 24px rgba(14, 58, 46, 0.05);
  /* Isolate iframe rendering from parent — fixes jank caused by
     orb-explorer animations competing for main thread / compositor. */
  contain: layout paint style;
  isolation: isolate;
  transform: translateZ(0);
  will-change: transform;
}
.a-deepdive-frame iframe,
.a-deepdive-frame .a-deepdive-video {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  object-fit: cover;
  background: var(--onset-deep);
  /* Force onto its own GPU layer so video decoding/animations don't
     get re-rasterized when the parent page repaints. */
  transform: translateZ(0);
  will-change: transform;
  contain: strict;
}

/* When frame is fullscreen, kill the radius and remove shadow */
.a-deepdive-frame:fullscreen,
.a-deepdive-frame:-webkit-full-screen {
  border-radius: 0;
  border: 0;
  width: 100vw;
  height: 100vh;
  aspect-ratio: auto;
  box-shadow: none;
}
.a-deepdive-frame:fullscreen iframe,
.a-deepdive-frame:-webkit-full-screen iframe,
.a-deepdive-frame:fullscreen .a-deepdive-video,
.a-deepdive-frame:-webkit-full-screen .a-deepdive-video {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* === ORB EXPLORER — interactive pillar zoom === */
.orb-explorer {
  position: relative;
  z-index: 1;
  margin-top: 56px;
}

/* Tab orbs at top */
.orb-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 28px;
}
.orb-tab {
  position: relative;
  background: white;
  border: 1px solid var(--onset-line);
  border-radius: 22px;
  padding: 18px 22px;
  display: grid;
  grid-template-columns: 56px 1fr;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  font: inherit;
  text-align: left;
  color: var(--onset-ink);
  transition: transform 0.5s cubic-bezier(.2,.8,.2,1), border-color 0.4s, box-shadow 0.5s, background 0.4s;
  overflow: hidden;
}
.orb-tab::before {
  content: '';
  position: absolute;
  inset: auto 0 0 0;
  height: 3px;
  background: linear-gradient(90deg, var(--onset-mint), var(--onset-teal));
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.5s cubic-bezier(.2,.8,.2,1);
}
.orb-tab[data-pillar="s"]::before { background: linear-gradient(90deg, #c5d34a, #8aa829); }
.orb-tab[data-pillar="g"]::before { background: linear-gradient(90deg, #FF4D9A, var(--onset-magenta)); }
.orb-tab:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 44px rgba(14, 58, 46, 0.06);
  border-color: rgba(46, 138, 115, 0.30);
}
.orb-tab.is-active {
  border-color: rgba(46, 138, 115, 0.40);
  box-shadow: 0 22px 52px rgba(46, 138, 115, 0.12);
}
.orb-tab.is-active[data-pillar="s"] { border-color: rgba(138, 168, 41, 0.50); box-shadow: 0 22px 52px rgba(138, 168, 41, 0.14); }
.orb-tab.is-active[data-pillar="g"] { border-color: rgba(229, 0, 110, 0.36); box-shadow: 0 22px 52px rgba(229, 0, 110, 0.14); }
.orb-tab.is-active::before { transform: scaleX(1); }

.orb-tab-orb {
  position: relative;
  width: 56px; height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.orb-tab-orb img {
  position: absolute;
  inset: -16px;
  width: 88px; height: 88px;
  max-width: none;
  filter: saturate(1.1);
  transition: transform 0.6s cubic-bezier(.2,.8,.2,1);
}
.orb-tab.is-active .orb-tab-orb img { transform: scale(1.05); }
.orb-tab-letter {
  position: relative;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--onset-deep);
  z-index: 1;
}
.orb-tab-meta { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.orb-tab-name {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--onset-ink);
}
.orb-tab-score {
  font-family: var(--font-ui);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--onset-teal);
  font-variant-numeric: tabular-nums;
}
.orb-tab-score span {
  font-size: 11px;
  font-weight: 500;
  color: rgba(14, 58, 46, 0.45);
  letter-spacing: 0;
  margin-left: 1px;
}
.orb-tab[data-pillar="s"] .orb-tab-score { color: #5a7a1f; }
.orb-tab[data-pillar="g"] .orb-tab-score { color: var(--onset-magenta); }

/* Stage holds all 3 scenes; only active is visible */
.orb-stage {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.85) inset,
    0 50px 120px rgba(14, 58, 46, 0.14),
    0 12px 32px rgba(14, 58, 46, 0.05);
  background: white;
  border: 1px solid var(--onset-line);
  min-height: 580px;
}

.orb-scene {
  position: absolute;
  inset: 0;
  padding: 48px 48px 44px;
  opacity: 0;
  transform: scale(0.96);
  pointer-events: none;
  transition: opacity 0.5s cubic-bezier(.2,.8,.2,1), transform 0.6s cubic-bezier(.2,.8,.2,1);
  display: grid;
  align-items: stretch;
  overflow: hidden;
}
.orb-scene.is-active {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
  position: relative;
  inset: auto;
}

/* Big background orb (per-pillar) */
.orb-scene-bg {
  position: absolute;
  right: -240px; top: -240px;
  width: 720px; height: 720px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.85;
  filter: blur(0.5px);
}
.orb-scene[data-pillar="e"] .orb-scene-bg { background: radial-gradient(circle at 30% 30%, rgba(170, 220, 195, 0.85) 0%, rgba(46, 138, 115, 0.55) 40%, rgba(46, 138, 115, 0.0) 70%); }
.orb-scene[data-pillar="s"] .orb-scene-bg { background: radial-gradient(circle at 30% 30%, rgba(232, 238, 159, 0.85) 0%, rgba(138, 168, 41, 0.55) 40%, rgba(138, 168, 41, 0.0) 70%); }
.orb-scene[data-pillar="g"] .orb-scene-bg { background: radial-gradient(circle at 30% 30%, rgba(255, 109, 154, 0.75) 0%, rgba(229, 0, 110, 0.45) 40%, rgba(229, 0, 110, 0.0) 70%); }

.orb-scene-glow {
  position: absolute;
  left: -160px; bottom: -160px;
  width: 460px; height: 460px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.6;
  filter: blur(60px);
}
.orb-scene[data-pillar="e"] .orb-scene-glow { background: radial-gradient(circle, rgba(46, 138, 115, 0.45), transparent 70%); }
.orb-scene[data-pillar="s"] .orb-scene-glow { background: radial-gradient(circle, rgba(138, 168, 41, 0.40), transparent 70%); }
.orb-scene[data-pillar="g"] .orb-scene-glow { background: radial-gradient(circle, rgba(229, 0, 110, 0.40), transparent 70%); }

/* === Orbital scene === */
.orb-scene-orbital {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 1.5 / 1;
  max-height: 540px;
  margin: 0 auto;
}
.orbital-ring {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  color: var(--onset-teal);
  animation: orbital-rotate 90s linear infinite;
  transform-origin: center;
}
.orb-scene[data-pillar="s"] .orbital-ring { color: #8aa829; }
.orb-scene[data-pillar="g"] .orbital-ring { color: var(--onset-magenta); }
@keyframes orbital-rotate {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* Central pillar orb */
.orbital-center {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: 320px; height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: orbital-breathe 6s ease-in-out infinite;
  z-index: 2;
}
@keyframes orbital-breathe {
  0%, 100% { transform: translate(-50%, -50%) scale(1); }
  50%      { transform: translate(-50%, -50%) scale(1.04); }
}
.orbital-center-img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  max-width: none;
  filter: saturate(1.15) brightness(1.05);
  pointer-events: none;
}
.orbital-center-content {
  position: relative;
  z-index: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.orbital-center-letter {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--onset-deep);
  opacity: 0.75;
}
.orb-scene[data-pillar="s"] .orbital-center-letter { color: #5a7a1f; }
.orb-scene[data-pillar="g"] .orbital-center-letter { color: var(--onset-magenta); }
.orbital-center-score {
  font-family: var(--font-display);
  font-size: 88px;
  font-weight: 800;
  letter-spacing: -0.06em;
  line-height: 0.85;
  color: var(--onset-ink);
  font-variant-numeric: tabular-nums;
}
.orbital-center-status {
  margin-top: 8px;
  display: inline-block;
  padding: 5px 14px;
  border-radius: 999px;
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: rgba(46, 138, 115, 0.14);
  color: var(--onset-teal);
}
.orb-scene[data-pillar="s"] .orbital-center-status { background: rgba(138, 168, 41, 0.16); color: #5a7a1f; }
.orb-scene[data-pillar="g"] .orbital-center-status { background: rgba(229, 0, 110, 0.12); color: var(--onset-magenta); }

/* Subtheme orbs orbiting around center */
.orbital-sub {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 3;
  transition: transform 0.4s cubic-bezier(.2,.8,.2,1);
}
.orbital-sub:hover { transform: scale(1.05); }
.orbital-sub-1 { top: 8%;  left: 12%; animation: sub-float 6s ease-in-out infinite; }
.orbital-sub-2 { top: 12%; right: 10%; flex-direction: row-reverse; text-align: right; animation: sub-float 6s ease-in-out -1.5s infinite; }
.orbital-sub-3 { bottom: 18%; left: 8%; animation: sub-float 6s ease-in-out -3s infinite; }
.orbital-sub-4 { bottom: 12%; right: 8%; flex-direction: row-reverse; text-align: right; animation: sub-float 6s ease-in-out -4.5s infinite; }
@keyframes sub-float {
  0%, 100% { transform: translate(0, 0); }
  25%      { transform: translate(6px, -8px); }
  50%      { transform: translate(0, -12px); }
  75%      { transform: translate(-6px, -4px); }
}

.sub-orb {
  width: 56px; height: 56px;
  border-radius: 50%;
  flex-shrink: 0;
  position: relative;
  background: radial-gradient(circle at 35% 35%, rgba(255,255,255,0.85) 0%, rgba(255,255,255,0.30) 30%, transparent 70%);
}
.sub-orb::before {
  content: '';
  position: absolute;
  inset: -16px;
  border-radius: 50%;
  background: radial-gradient(circle, currentColor 0%, transparent 65%);
  opacity: 0.55;
  filter: blur(8px);
  z-index: -1;
}
.sub-strong .sub-orb { color: var(--onset-mint); }
.sub-base .sub-orb   { color: #E8BC46; }
.sub-attention .sub-orb { color: var(--onset-magenta); }

.sub-data {
  display: flex;
  flex-direction: column;
  gap: 0;
  line-height: 1.1;
}
.sub-name {
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 600;
  color: rgba(14, 58, 46, 0.75);
  letter-spacing: 0.02em;
}
.sub-score {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.04em;
  font-variant-numeric: tabular-nums;
}
.sub-strong .sub-score   { color: var(--onset-teal); }
.sub-base .sub-score     { color: #8a6510; }
.sub-attention .sub-score { color: var(--onset-magenta); }

/* Foot row: pillar info + advice */
.orb-scene-foot {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.9fr 1.4fr;
  gap: 36px;
  align-items: start;
  margin-top: 20px;
  padding-top: 24px;
  border-top: 1px solid var(--onset-line);
}
.scene-foot-pillar { display: flex; flex-direction: column; gap: 8px; }

/* Legacy grid still used elsewhere if present */
.orb-scene-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 1.4fr;
  grid-template-rows: auto auto;
  grid-template-areas:
    "hero heatmap"
    "hero advice";
  gap: 28px 36px;
  align-items: start;
}
.orb-scene-hero { grid-area: hero; padding-right: 18px; }
.orb-scene-heatmap { grid-area: heatmap; }
.orb-scene-advice { grid-area: advice; }

.scene-eyebrow {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: rgba(14, 58, 46, 0.55);
}
.orb-scene[data-pillar="e"] .scene-eyebrow { color: var(--onset-teal); }
.orb-scene[data-pillar="s"] .scene-eyebrow { color: #5a7a1f; }
.orb-scene[data-pillar="g"] .scene-eyebrow { color: var(--onset-magenta); }

.scene-score {
  margin-top: 14px;
  display: flex;
  align-items: baseline;
  gap: 14px;
}
.scene-score-num {
  font-family: var(--font-display);
  font-size: clamp(96px, 11vw, 160px);
  font-weight: 800;
  letter-spacing: -0.06em;
  line-height: 0.85;
  color: var(--onset-ink);
  font-variant-numeric: tabular-nums;
}
.orb-scene[data-pillar="e"] .scene-score-num {
  background: linear-gradient(180deg, var(--onset-teal), var(--onset-deep));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.orb-scene[data-pillar="s"] .scene-score-num {
  background: linear-gradient(180deg, #8aa829, #5a7a1f);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.orb-scene[data-pillar="g"] .scene-score-num {
  background: linear-gradient(180deg, var(--onset-magenta), #8a1e3a);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.scene-score-rest {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-bottom: 8px;
}
.scene-score-max {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: rgba(14, 58, 46, 0.4);
}
.scene-status {
  display: inline-flex;
  align-items: center;
  padding: 5px 12px;
  border-radius: 999px;
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.status-strong   { background: rgba(46, 138, 115, 0.14); color: var(--onset-teal); }
.status-flat     { background: rgba(138, 168, 41, 0.16); color: #5a7a1f; }
.status-attention { background: rgba(229, 0, 110, 0.12); color: var(--onset-magenta); }

.scene-title {
  margin: 24px 0 12px;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--onset-ink);
  line-height: 1.2;
}
.scene-lede {
  margin: 0;
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.55;
  color: rgba(14, 58, 46, 0.7);
  max-width: 38ch;
}

.scene-section-label {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(14, 58, 46, 0.55);
  margin-bottom: 14px;
}

/* Heatmap cells in scene */
.scene-cells {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.scene-cell {
  position: relative;
  padding: 18px 18px 16px;
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  border: 1px solid transparent;
  transition: transform 0.4s cubic-bezier(.2,.8,.2,1), box-shadow 0.4s;
  overflow: hidden;
}
.scene-cell::after {
  content: '';
  position: absolute;
  right: -30px; top: -30px;
  width: 100px; height: 100px;
  border-radius: 50%;
  filter: blur(30px);
  opacity: 0.5;
  pointer-events: none;
}
.scene-cell:hover { transform: translateY(-3px); box-shadow: 0 14px 30px rgba(14, 58, 46, 0.08); }

.scene-cell.h-strong   { background: linear-gradient(135deg, rgba(46, 138, 115, 0.14), rgba(170, 220, 195, 0.30)); border-color: rgba(46, 138, 115, 0.18); }
.scene-cell.h-strong::after { background: var(--onset-mint); }
.scene-cell.h-base     { background: linear-gradient(135deg, rgba(232, 188, 70, 0.14), rgba(232, 238, 159, 0.30)); border-color: rgba(232, 188, 70, 0.22); }
.scene-cell.h-base::after { background: #E8BC46; }
.scene-cell.h-attention { background: linear-gradient(135deg, rgba(229, 0, 110, 0.10), rgba(255, 109, 154, 0.20)); border-color: rgba(229, 0, 110, 0.22); }
.scene-cell.h-attention::after { background: var(--onset-magenta); }

.cell-name {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--onset-ink);
  position: relative; z-index: 1;
}
.cell-score {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  font-variant-numeric: tabular-nums;
  position: relative; z-index: 1;
}
.scene-cell.h-strong .cell-score   { color: var(--onset-teal); }
.scene-cell.h-base .cell-score     { color: #8a6510; }
.scene-cell.h-attention .cell-score { color: var(--onset-magenta); }

/* Advies list */
.scene-advice-list {
  list-style: none;
  margin: 0; padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.scene-advice-list li {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 12px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 12px;
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.5;
  color: var(--onset-ink);
}
.advice-num {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--onset-teal);
  font-variant-numeric: tabular-nums;
}
.orb-scene[data-pillar="s"] .advice-num { color: #5a7a1f; }
.orb-scene[data-pillar="g"] .advice-num { color: var(--onset-magenta); }

/* === EDITORIAL REPORT DOCUMENT (legacy, hidden) === */
.a-report-doc[hidden] { display: none; }
.a-report-doc {
  position: relative;
  z-index: 1;
  margin-top: 56px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  perspective: 1800px;
}
.doc-cover, .doc-page {
  position: relative;
  background: white;
  border-radius: 28px;
  border: 1px solid var(--onset-line);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.85) inset,
    0 40px 100px rgba(14, 58, 46, 0.10),
    0 8px 24px rgba(14, 58, 46, 0.04);
  overflow: hidden;
  transition: transform 0.6s cubic-bezier(.2,.8,.2,1), box-shadow 0.6s;
}
.doc-cover:hover, .doc-page:hover {
  transform: translateY(-2px);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.85) inset,
    0 56px 120px rgba(14, 58, 46, 0.13),
    0 12px 30px rgba(14, 58, 46, 0.05);
}

/* COVER PAGE */
.doc-cover {
  background: linear-gradient(150deg, var(--onset-deep) 0%, #134739 60%, #0A2A22 100%);
  color: var(--onset-cream);
  padding: 64px 64px 56px;
  min-height: 460px;
  display: flex;
  flex-direction: column;
}
.doc-cover-bg { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.doc-cover-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.4;
}
.doc-cover-orb-1 { width: 380px; height: 380px; background: radial-gradient(circle, rgba(170,220,195,0.55), transparent 65%); right: -80px; top: -80px; }
.doc-cover-orb-2 { width: 280px; height: 280px; background: radial-gradient(circle, rgba(232,217,0,0.30), transparent 65%); left: 30%; bottom: -100px; }
.doc-cover-orb-3 { width: 220px; height: 220px; background: radial-gradient(circle, rgba(229,0,110,0.30), transparent 65%); right: 20%; bottom: 20%; }
.doc-cover-content { position: relative; z-index: 1; display: flex; flex-direction: column; height: 100%; flex: 1; }

.doc-cover-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: rgba(238, 239, 212, 0.55);
}
.doc-cover-stamp {
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(170, 220, 195, 0.10);
  border: 1px solid rgba(170, 220, 195, 0.25);
  color: var(--onset-mint);
}
.doc-cover-title { margin-top: 36px; }
.doc-cover-eyebrow {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(238, 239, 212, 0.5);
  margin-bottom: 8px;
}
.doc-cover-company {
  font-family: var(--font-display);
  font-size: clamp(38px, 4.4vw, 56px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1;
  margin: 0;
  color: var(--onset-cream);
}

.doc-cover-score {
  margin-top: auto;
  padding-top: 64px;
  display: flex;
  align-items: flex-end;
  gap: 22px;
}
.doc-cover-score-num {
  font-family: var(--font-display);
  font-size: clamp(140px, 18vw, 260px);
  font-weight: 800;
  letter-spacing: -0.06em;
  line-height: 0.82;
  background: linear-gradient(180deg, var(--onset-cream), var(--onset-mint) 70%, var(--onset-teal));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-variant-numeric: tabular-nums;
}
.doc-cover-score-rest { display: flex; flex-direction: column; gap: 6px; padding-bottom: 18px; }
.doc-cover-score-max {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: rgba(238, 239, 212, 0.55);
  letter-spacing: -0.02em;
}
.doc-cover-score-label {
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(238, 239, 212, 0.55);
}

.doc-cover-tagline {
  margin-top: 24px;
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 500;
  line-height: 1.45;
  color: rgba(238, 239, 212, 0.85);
  max-width: 540px;
  letter-spacing: -0.005em;
}
.doc-cover-tagline em {
  font-style: normal;
  background: linear-gradient(90deg, var(--onset-mint), var(--onset-cream));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 600;
}

.doc-cover-pageno {
  position: absolute;
  right: 32px; bottom: 24px;
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.20em;
  color: rgba(238, 239, 212, 0.45);
  z-index: 2;
}

/* INNER PAGES */
.doc-page {
  background: white;
  padding: 56px 56px 52px;
}
.doc-page-tinted {
  background: linear-gradient(160deg, var(--onset-bone) 0%, var(--onset-cream-2) 100%);
}
.doc-page-head {
  display: flex;
  align-items: flex-start;
  gap: 32px;
  margin-bottom: 36px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--onset-line);
}
.doc-page-no {
  font-family: var(--font-display);
  font-size: 64px;
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 0.85;
  color: rgba(14, 58, 46, 0.10);
  font-variant-numeric: tabular-nums;
  flex-shrink: 0;
  min-width: 80px;
}
.doc-page-section { flex: 1; min-width: 0; }
.doc-page-section-label {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--onset-teal);
  display: block;
  margin-bottom: 8px;
}
.doc-page-section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.2vw, 42px);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.05;
  margin: 0;
  color: var(--onset-ink);
}

/* SCORE GRID */
.doc-score-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.doc-score-card {
  position: relative;
  border-radius: 20px;
  padding: 30px 28px 26px;
  background: var(--onset-bone);
  border: 1px solid var(--onset-line);
  overflow: hidden;
  transition: transform 0.5s cubic-bezier(.2,.8,.2,1);
}
.doc-score-card:hover { transform: translateY(-4px); }
.doc-score-card-bg {
  position: absolute;
  right: -60px; top: -60px;
  width: 200px; height: 200px;
  border-radius: 50%;
  filter: blur(50px);
  opacity: 0.45;
  pointer-events: none;
}
.doc-score-card[data-pillar="e"] .doc-score-card-bg { background: radial-gradient(circle, var(--onset-mint), transparent 65%); }
.doc-score-card[data-pillar="s"] .doc-score-card-bg { background: radial-gradient(circle, #d8e29a, transparent 65%); }
.doc-score-card[data-pillar="g"] .doc-score-card-bg { background: radial-gradient(circle, #FF6FB0, transparent 65%); }

.doc-score-card-letter {
  font-family: var(--font-display);
  font-size: 64px;
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 0.85;
  color: rgba(14, 58, 46, 0.18);
  position: relative; z-index: 1;
}
.doc-score-card[data-pillar="e"] .doc-score-card-letter { color: rgba(46, 138, 115, 0.32); }
.doc-score-card[data-pillar="s"] .doc-score-card-letter { color: rgba(138, 168, 41, 0.36); }
.doc-score-card[data-pillar="g"] .doc-score-card-letter { color: rgba(229, 0, 110, 0.34); }

.doc-score-card-num {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-top: 6px;
  position: relative; z-index: 1;
}
.doc-score-card-num .doc-num {
  font-family: var(--font-display);
  font-size: 64px;
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 1;
  color: var(--onset-ink);
  font-variant-numeric: tabular-nums;
}
.doc-score-card-num .doc-num-max {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: rgba(14, 58, 46, 0.4);
}
.doc-score-card-domain {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  margin-top: 6px;
  color: var(--onset-ink);
  letter-spacing: -0.01em;
  position: relative; z-index: 1;
}
.doc-score-card-status {
  display: inline-block;
  margin-top: 10px;
  padding: 4px 10px;
  border-radius: 999px;
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.doc-status-up   { background: rgba(46, 138, 115, 0.14); color: var(--onset-teal); }
.doc-status-flat { background: rgba(138, 168, 41, 0.16); color: #5a7a1f; }
.doc-status-down { background: rgba(229, 0, 110, 0.12); color: var(--onset-magenta); }

.doc-score-card-bar {
  margin-top: 16px;
  height: 6px;
  background: rgba(14, 58, 46, 0.06);
  border-radius: 999px;
  overflow: hidden;
  position: relative; z-index: 1;
}
.doc-score-card-bar > span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--onset-mint), var(--onset-teal));
  border-radius: inherit;
}
.doc-score-card-note {
  margin-top: 12px;
  font-family: var(--font-ui);
  font-size: 12px;
  color: rgba(14, 58, 46, 0.55);
  position: relative; z-index: 1;
}

/* HEATMAP */
.doc-heatmap { display: flex; flex-direction: column; gap: 14px; }
.doc-heat-row {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 18px;
  align-items: center;
}
.doc-heat-row-head {
  display: flex;
  align-items: center;
  gap: 12px;
}
.doc-heat-row-letter {
  width: 36px; height: 36px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -0.02em;
  flex-shrink: 0;
}
.doc-heat-letter-e { background: rgba(46, 138, 115, 0.14); color: var(--onset-teal); }
.doc-heat-letter-s { background: rgba(138, 168, 41, 0.18); color: #5a7a1f; }
.doc-heat-letter-g { background: rgba(229, 0, 110, 0.12); color: var(--onset-magenta); }
.doc-heat-row-name {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  color: var(--onset-ink);
  letter-spacing: -0.01em;
}
.doc-heat-cells {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
}
.doc-heat-cell {
  position: relative;
  padding: 14px 16px;
  border-radius: 12px;
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.01em;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  border: 1px solid transparent;
  transition: transform 0.3s, border-color 0.3s;
}
.doc-heat-cell i {
  width: 8px; height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.doc-heat-cell:hover { transform: translateY(-2px); }
.doc-heat-cell.h-strong   { background: linear-gradient(135deg, rgba(46, 138, 115, 0.16), rgba(170, 220, 195, 0.30)); color: var(--onset-deep); }
.doc-heat-cell.h-strong i { background: var(--onset-teal); box-shadow: 0 0 8px rgba(46,138,115,0.5); }
.doc-heat-cell.h-base     { background: linear-gradient(135deg, rgba(232, 188, 70, 0.14), rgba(232, 238, 159, 0.28)); color: #6e5500; }
.doc-heat-cell.h-base i { background: #E8BC46; box-shadow: 0 0 8px rgba(232,188,70,0.5); }
.doc-heat-cell.h-attention { background: linear-gradient(135deg, rgba(229, 0, 110, 0.12), rgba(255, 109, 154, 0.18)); color: var(--onset-magenta); }
.doc-heat-cell.h-attention i { background: var(--onset-magenta); box-shadow: 0 0 8px rgba(229,0,110,0.5); }

.doc-heat-legend {
  display: flex;
  gap: 28px;
  margin-top: 12px;
  padding-left: 218px;
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: rgba(14, 58, 46, 0.55);
}
.doc-heat-legend span { display: inline-flex; align-items: center; gap: 6px; }
.doc-leg { width: 10px; height: 10px; border-radius: 50%; }
.doc-leg.h-strong   { background: var(--onset-teal); }
.doc-leg.h-base     { background: #E8BC46; }
.doc-leg.h-attention { background: var(--onset-magenta); }

/* PRIORITY PAGES — magazine spread feel */
.doc-priority {
  position: relative;
}
.doc-priority::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 6px;
  background: linear-gradient(180deg, var(--onset-teal), var(--onset-mint));
}
.doc-priority[data-pillar="s"]::before { background: linear-gradient(180deg, #c5d34a, #8aa829); }
.doc-priority[data-pillar="g"]::before { background: linear-gradient(180deg, #FF4D9A, var(--onset-magenta)); }

.doc-priority .doc-page-head { position: relative; align-items: center; }
.doc-priority-tag {
  position: absolute;
  right: 0; top: 0;
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(46, 138, 115, 0.10);
  color: var(--onset-teal);
}
.doc-priority[data-pillar="s"] .doc-priority-tag { background: rgba(138, 168, 41, 0.16); color: #5a7a1f; }
.doc-priority[data-pillar="g"] .doc-priority-tag { background: rgba(229, 0, 110, 0.10); color: var(--onset-magenta); }

.doc-priority-body {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}
.doc-priority-lede {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: -0.015em;
  color: var(--onset-ink);
  margin: 0;
  max-width: 80ch;
}
.doc-priority-lede strong {
  font-weight: 700;
  color: var(--onset-teal);
}
.doc-priority[data-pillar="s"] .doc-priority-lede strong { color: #5a7a1f; }
.doc-priority[data-pillar="g"] .doc-priority-lede strong { color: var(--onset-magenta); }

.doc-priority-quote {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.4vw, 28px);
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.02em;
  color: var(--onset-ink);
  padding: 26px 32px;
  border-radius: 16px;
  background: var(--onset-cream-2);
  border-left: 3px solid var(--onset-teal);
  position: relative;
}
.doc-priority[data-pillar="s"] .doc-priority-quote { border-left-color: #8aa829; }
.doc-priority[data-pillar="g"] .doc-priority-quote { border-left-color: var(--onset-magenta); }

.doc-priority-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.doc-col-label {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(14, 58, 46, 0.55);
  margin-bottom: 14px;
}
.doc-col-list {
  list-style: none;
  margin: 0; padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.doc-col-list li {
  position: relative;
  padding-left: 18px;
  font-size: 14.5px;
  line-height: 1.55;
  color: rgba(14, 58, 46, 0.78);
}
.doc-col-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 9px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--onset-teal);
}
.doc-priority[data-pillar="s"] .doc-col-list li::before { background: #8aa829; }
.doc-priority[data-pillar="g"] .doc-col-list li::before { background: var(--onset-magenta); }

/* Hide legacy mock-card classes that are no longer rendered */
.a-report-mock {
  background: white;
  border-radius: 24px;
  border: 1px solid var(--onset-line);
  box-shadow: 0 60px 140px rgba(14, 58, 46, 0.14), 0 12px 32px rgba(14, 58, 46, 0.06);
  overflow: hidden;
  position: relative;
}
/* Subtle ambient glow behind the dashboard */
.a-report-mock::before {
  content: '';
  position: absolute;
  inset: -120px;
  background: radial-gradient(ellipse at top, rgba(170, 220, 195, 0.18), transparent 60%);
  pointer-events: none;
  z-index: -1;
}

/* Faux browser bar */
.report-mock-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 20px;
  background: var(--onset-bone);
  border-bottom: 1px solid var(--onset-line);
}
.report-mock-bar > span {
  width: 11px; height: 11px;
  border-radius: 50%;
  background: rgba(14, 58, 46, 0.15);
}
.report-mock-bar > span:nth-child(1) { background: rgba(217, 100, 89, 0.6); }
.report-mock-bar > span:nth-child(2) { background: rgba(232, 188, 70, 0.6); }
.report-mock-bar > span:nth-child(3) { background: rgba(111, 189, 164, 0.7); }
.report-mock-url {
  margin-left: 16px;
  padding: 6px 14px;
  background: white;
  border: 1px solid var(--onset-line);
  border-radius: 8px;
  font-family: var(--font-ui);
  font-size: 12px;
  color: rgba(14, 58, 46, 0.65);
  letter-spacing: 0.02em;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.url-lock { font-size: 9px; opacity: 0.6; }

/* Dashboard header bar */
.report-mock-header {
  padding: 22px 44px;
  border-bottom: 1px solid var(--onset-line);
  background: linear-gradient(180deg, rgba(46, 138, 115, 0.04), transparent);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.report-company {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--onset-ink);
  letter-spacing: -0.02em;
}
.report-company-meta {
  font-family: var(--font-ui);
  font-size: 12px;
  color: rgba(14, 58, 46, 0.55);
  letter-spacing: 0.01em;
  margin-top: 2px;
}
.report-mock-actions { display: flex; gap: 8px; }
.report-mock-btn {
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 600;
  padding: 9px 16px;
  border-radius: 8px;
  border: 1px solid transparent;
  cursor: default;
  transition: background 0.2s;
}
.report-mock-btn.ghost {
  background: transparent;
  color: var(--onset-ink);
  border-color: var(--onset-line);
}
.report-mock-btn.primary {
  background: var(--onset-teal);
  color: white;
}

.report-mock-body {
  padding: 36px 44px 48px;
  display: grid;
  gap: 44px;
}

.report-section { position: relative; }
.report-section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}
.report-section-label {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(14, 58, 46, 0.55);
  margin: 0 0 18px;
}
.report-section-head .report-section-label { margin: 0; }
.report-section-meta {
  font-family: var(--font-ui);
  font-size: 12px;
  color: rgba(14, 58, 46, 0.55);
  letter-spacing: 0.01em;
}

/* === HERO OVERVIEW === */
.report-overview {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 36px;
  align-items: stretch;
}
.overview-hero {
  background: linear-gradient(160deg, var(--onset-deep) 0%, #134739 100%);
  color: var(--onset-cream);
  border-radius: 18px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  overflow: hidden;
}
.overview-hero::after {
  content: '';
  position: absolute;
  right: -80px; top: -80px;
  width: 220px; height: 220px;
  background: radial-gradient(circle, rgba(170, 220, 195, 0.30), transparent 65%);
  pointer-events: none;
}
.overview-eyebrow {
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(238, 239, 212, 0.55);
}
.overview-gauge {
  position: relative;
  width: 220px; height: 220px;
  margin: 0 auto;
}
.overview-gauge-svg { width: 100%; height: 100%; }
.overview-value {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.overview-value-num {
  font-family: var(--font-display);
  font-size: 76px;
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 1;
  color: var(--onset-cream);
  font-variant-numeric: tabular-nums;
  background: linear-gradient(180deg, var(--onset-cream), var(--onset-mint));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.overview-value-max {
  font-family: var(--font-ui);
  font-size: 16px;
  font-weight: 500;
  color: rgba(238, 239, 212, 0.5);
  margin-top: -6px;
}
.overview-value-label {
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(238, 239, 212, 0.45);
  margin-top: 10px;
}
.overview-status {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
  position: relative;
}
.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.status-badge.status-up {
  background: rgba(170, 220, 195, 0.18);
  color: var(--onset-mint);
  border: 1px solid rgba(170, 220, 195, 0.28);
}
.overview-summary {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: rgba(238, 239, 212, 0.78);
}
.overview-summary strong { color: var(--onset-mint); font-weight: 700; }

/* Breakdown — horizontal score rows on right */
.overview-breakdown {
  display: flex;
  flex-direction: column;
}
.score-stack {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}
.score-row {
  background: var(--onset-bone);
  border: 1px solid var(--onset-line);
  border-radius: 14px;
  padding: 18px 22px;
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 22px;
  align-items: center;
  transition: transform 0.4s cubic-bezier(.2,.8,.2,1), border-color 0.3s, box-shadow 0.4s;
  position: relative;
}
.score-row:hover {
  transform: translateY(-2px);
  border-color: rgba(46, 138, 115, 0.30);
  box-shadow: 0 16px 40px rgba(14, 58, 46, 0.08);
}
.score-row-ring {
  position: relative;
  width: 60px; height: 60px;
}
.score-row-ring .score-ring { width: 60px; height: 60px; }
.score-row-letter {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--onset-deep);
  line-height: 1;
}
.score-row-info { min-width: 0; }
.score-row-label {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  color: var(--onset-ink);
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}
.score-row-bar {
  height: 5px;
  background: rgba(14, 58, 46, 0.06);
  border-radius: 999px;
  overflow: hidden;
}
.score-row-bar-fill {
  height: 100%;
  background: var(--onset-teal);
  border-radius: inherit;
  transition: width 1.2s cubic-bezier(.2,.8,.2,1);
}
.score-row-stat {
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
}
.score-row-num {
  font-family: var(--font-ui);
  font-size: 28px;
  font-weight: 700;
  color: var(--onset-ink);
  letter-spacing: -0.04em;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.score-row-bench {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 3px 8px;
  border-radius: 6px;
}
.score-row-bench-up   { background: rgba(46, 138, 115, 0.14); color: var(--onset-teal); }
.score-row-bench-flat { background: rgba(14, 58, 46, 0.06); color: rgba(14, 58, 46, 0.55); }
.score-row-bench-down { background: rgba(185, 115, 36, 0.14); color: #b97324; }

/* Legacy score-card (still used in inspect/older state) — keep minimal */
.score-card { display: none; }

/* Benchmark */
.benchmark { padding: 8px 4px 0; position: relative; }
.benchmark-track {
  display: flex;
  height: 16px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(14, 58, 46, 0.04);
  box-shadow: inset 0 1px 2px rgba(14, 58, 46, 0.06);
}
.benchmark-zone { flex: 1; position: relative; }
.benchmark-zone-low { background: linear-gradient(90deg, rgba(185, 115, 36, 0.30), rgba(185, 115, 36, 0.10)); }
.benchmark-zone-avg { background: linear-gradient(90deg, rgba(232, 188, 70, 0.28), rgba(46, 138, 115, 0.20)); }
.benchmark-zone-top { background: linear-gradient(90deg, rgba(170, 220, 195, 0.45), rgba(46, 138, 115, 0.55)); }

.benchmark-avg {
  position: relative;
  height: 0;
  transform: translateX(-50%);
}
.benchmark-avg-line {
  position: absolute;
  left: 50%;
  top: -22px;
  width: 1px;
  height: 22px;
  background: rgba(14, 58, 46, 0.25);
  border-left: 1px dashed rgba(14, 58, 46, 0.35);
  background: transparent;
}

.benchmark-marker {
  position: relative;
  height: 0;
  transform: translateX(-50%);
}
.marker-line {
  position: absolute;
  left: 50%;
  top: -22px;
  width: 2px;
  height: 22px;
  background: var(--onset-deep);
  transform: translateX(-1px);
}
.marker-dot {
  position: absolute;
  left: 50%;
  top: -32px;
  width: 22px; height: 22px;
  background: linear-gradient(135deg, var(--onset-mint), var(--onset-teal));
  border: 4px solid var(--onset-cream-2);
  border-radius: 50%;
  transform: translateX(-50%);
  box-shadow: 0 8px 22px rgba(46, 138, 115, 0.45), 0 0 0 1px rgba(46, 138, 115, 0.18);
}
.marker-dot::after {
  content: '';
  position: absolute;
  inset: 4px;
  background: var(--onset-cream-2);
  border-radius: 50%;
}
.marker-label {
  position: absolute;
  left: 50%;
  top: 12px;
  transform: translateX(-50%);
  white-space: nowrap;
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 700;
  color: var(--onset-deep);
  font-variant-numeric: tabular-nums;
}
.benchmark-axis {
  display: flex;
  justify-content: space-between;
  margin-top: 44px;
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 500;
  color: rgba(14, 58, 46, 0.55);
  letter-spacing: 0.10em;
  text-transform: uppercase;
}
.benchmark-axis span { flex: 1; text-align: center; }
.benchmark-axis span:first-child { text-align: left; }
.benchmark-axis span:last-child { text-align: right; }

/* === Top-3 actions: editorial cards === */
.report-actions {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.action-card {
  position: relative;
  background: white;
  border: 1px solid var(--onset-line);
  border-radius: 18px;
  padding: 26px 28px 24px 28px;
  display: grid;
  grid-template-columns: 72px 1fr 120px;
  gap: 28px;
  align-items: start;
  overflow: hidden;
  transition: border-color 0.4s, transform 0.5s cubic-bezier(.2,.8,.2,1), box-shadow 0.5s;
}
.action-card::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--onset-teal), rgba(46, 138, 115, 0.3));
  opacity: 0.9;
}
.action-card[data-pillar="e"]::before { background: linear-gradient(180deg, var(--onset-mint), var(--onset-teal)); }
.action-card[data-pillar="s"]::before { background: linear-gradient(180deg, #c5d34a, #8aa829); }
.action-card[data-pillar="g"]::before { background: linear-gradient(180deg, var(--onset-teal), var(--onset-deep)); }
.action-card:hover {
  border-color: rgba(46, 138, 115, 0.35);
  transform: translateY(-2px);
  box-shadow: 0 22px 48px rgba(14, 58, 46, 0.08);
}

/* Big number on left */
.action-card-num {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 0.85;
  color: rgba(14, 58, 46, 0.18);
  font-variant-numeric: tabular-nums;
  padding-top: 4px;
}
.action-card[data-pillar="e"] .action-card-num { color: rgba(46, 138, 115, 0.30); }
.action-card[data-pillar="s"] .action-card-num { color: rgba(138, 168, 41, 0.32); }
.action-card[data-pillar="g"] .action-card-num { color: rgba(14, 58, 46, 0.28); }

/* Main content column */
.action-card-main {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 0;
}
.action-card-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.action-card-pillar { color: var(--onset-teal); }
.action-card[data-pillar="s"] .action-card-pillar { color: #5a7a1f; }
.action-card[data-pillar="g"] .action-card-pillar { color: var(--onset-deep); }
.action-card-dot {
  width: 3px; height: 3px;
  border-radius: 50%;
  background: rgba(14, 58, 46, 0.25);
}
.action-card-cat {
  color: rgba(14, 58, 46, 0.55);
  font-weight: 500;
  letter-spacing: 0.12em;
}

.action-card-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--onset-ink);
  letter-spacing: -0.025em;
  line-height: 1.2;
  margin: 2px 0 0;
}
.action-card-desc {
  margin: 4px 0 0;
  font-family: var(--font-body);
  font-size: 14.5px;
  line-height: 1.55;
  color: rgba(14, 58, 46, 0.72);
  max-width: 60ch;
}
.action-card-desc strong {
  color: var(--onset-ink);
  font-weight: 600;
}

/* Visual meters (impact + inspanning) */
.action-card-meters {
  display: flex;
  gap: 28px;
  margin-top: 14px;
  flex-wrap: wrap;
}
.meter {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 130px;
  flex: 1;
  max-width: 180px;
}
.meter-label {
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(14, 58, 46, 0.55);
}
.meter-track {
  position: relative;
  height: 6px;
  border-radius: 999px;
  background: rgba(14, 58, 46, 0.06);
  overflow: hidden;
}
.meter-fill {
  position: absolute;
  inset: 0 auto 0 0;
  background: linear-gradient(90deg, var(--onset-mint), var(--onset-teal));
  border-radius: inherit;
  box-shadow: 0 0 10px rgba(170, 220, 195, 0.55);
  transition: width 1.4s cubic-bezier(.2,.8,.2,1);
}
.meter-fill-warm {
  background: linear-gradient(90deg, #e8c34d, #b97324);
  box-shadow: 0 0 10px rgba(232, 188, 70, 0.45);
}

/* Right column: prominent delta + timing */
.action-card-aside {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
  padding-top: 6px;
  border-left: 1px dashed var(--onset-line);
  padding-left: 24px;
  height: 100%;
  justify-content: center;
  align-self: stretch;
}
.action-card-delta {
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
  color: var(--onset-teal);
}
.delta-plus {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.delta-plus::before {
  content: '+';
  font-weight: 500;
  font-size: 0.7em;
  margin-right: 2px;
  vertical-align: 0.15em;
  opacity: 0.7;
}
.delta-unit {
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(46, 138, 115, 0.7);
}
.action-card-time {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: rgba(14, 58, 46, 0.55);
}

.report-foot {
  margin-top: 28px;
  text-align: center;
  color: rgba(14, 58, 46, 0.55);
}

/* =====================================================================
   COMPARE  (Adviesbureau vs Onset)
   ===================================================================== */
.a-compare {
  background: var(--onset-bone);
  color: var(--onset-ink);
  padding: 160px 72px;
  position: relative;
  overflow: hidden;
}
.a-compare-inner { max-width: 1280px; margin: 0 auto; }
.a-compare-title {
  font-size: 64px;
  line-height: 0.95;
  margin: 0;
  letter-spacing: -0.035em;
  font-weight: 500;
  text-wrap: balance;
  max-width: 900px;
}
.a-compare-lead { margin-top: 24px; max-width: 560px; opacity: 0.8; }
.a-compare-grid {
  margin-top: 64px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

/* === New row-based compare table === */
.compare-table {
  margin-top: 64px;
  border-radius: 24px;
  overflow: hidden;
  background: white;
  border: 1px solid var(--onset-line);
  box-shadow: 0 30px 80px rgba(14, 58, 46, 0.06);
}
.compare-row {
  display: grid;
  grid-template-columns: 1.1fr 1.1fr 1.4fr;
  align-items: center;
  border-bottom: 1px solid var(--onset-line);
  transition: background 0.3s;
}
.compare-row:hover { background: var(--onset-bone); }
.compare-row.compare-head { background: var(--onset-cream-2); }
.compare-row.compare-head:hover { background: var(--onset-cream-2); }
.compare-row-last { border-bottom: none; }
.compare-col {
  padding: 24px 28px;
  position: relative;
}
.compare-col-aspect {
  display: flex;
  align-items: center;
  gap: 14px;
  border-right: 1px solid var(--onset-line);
}
.compare-aspect-icon {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: var(--onset-cream-2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--onset-teal);
  flex-shrink: 0;
}
.compare-aspect-label {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--onset-ink);
}
.compare-col-old {
  border-right: 1px solid var(--onset-line);
  background: rgba(217, 100, 89, 0.025);
}
.compare-col-onset {
  background: linear-gradient(135deg, rgba(46, 138, 115, 0.06), rgba(170, 220, 195, 0.10));
  position: relative;
}
.compare-row.compare-head .compare-col-onset {
  background: linear-gradient(135deg, var(--onset-deep), #134739);
  color: var(--onset-cream);
}
.compare-row.compare-head .compare-col-old {
  background: white;
}
.compare-col-eyebrow {
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(14, 58, 46, 0.5);
  margin-bottom: 6px;
}
.compare-row.compare-head .compare-col-onset .compare-col-eyebrow { color: var(--onset-mint); }
.compare-col-title {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.compare-col-badge {
  position: absolute;
  top: 14px;
  right: 16px;
  display: inline-flex;
  align-items: center;
  padding: 5px 12px;
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border-radius: 999px;
  background: var(--onset-magenta);
  color: white;
  box-shadow: 0 6px 18px rgba(229, 0, 110, 0.32);
  z-index: 2;
}
.compare-cell-stat {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
}
.compare-cell-old { color: rgba(14, 58, 46, 0.40); }
.compare-cell-new {
  background: linear-gradient(90deg, var(--onset-teal), var(--onset-mint));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.compare-cell-text {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--onset-ink);
}
.compare-col-old .compare-cell-text { color: rgba(14, 58, 46, 0.55); }
.compare-cell-meta {
  margin-top: 4px;
  font-family: var(--font-ui);
  font-size: 12px;
  color: rgba(14, 58, 46, 0.5);
  letter-spacing: 0.02em;
}
.compare-card {
  border-radius: 22px;
  padding: 40px;
  position: relative;
}
.compare-card.traditional {
  background: white;
  border: 1px solid var(--onset-line);
}
.compare-card.onset {
  background: var(--onset-deep);
  color: var(--onset-cream);
  overflow: hidden;
}
.compare-glow {
  position: absolute;
  right: -80px; top: -80px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(170, 220, 195, 0.35), transparent 65%);
  filter: blur(30px);
  pointer-events: none;
}
.compare-badge {
  position: absolute;
  top: 22px; right: 22px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 12px;
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  border-radius: 999px;
  background: var(--onset-mint);
  color: var(--onset-deep);
  box-shadow: 0 8px 24px rgba(170, 220, 195, 0.45);
  z-index: 2;
}
.compare-eyebrow {
  font-size: 14px;
  color: var(--onset-ink-2);
  opacity: 0.6;
  margin-bottom: 12px;
}
.compare-card.onset .compare-eyebrow {
  color: var(--onset-mint);
  opacity: 1;
}
.compare-card h3 {
  font-size: 26px;
  font-weight: 500;
  margin: 0;
  letter-spacing: -0.02em;
}
.compare-card.onset h3 { color: var(--onset-cream); }
.compare-stats {
  margin-top: 32px;
  display: flex;
  gap: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--onset-line);
}
.compare-card.onset .compare-stats { border-bottom-color: rgba(238, 239, 212, 0.15); }
.compare-stat-value {
  font-family: var(--font-ui);
  font-size: 34px;
  font-weight: 600;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}
.compare-card.traditional .compare-stat-value {
  color: var(--onset-ink-2);
  opacity: 0.85;
}
.compare-card.onset .compare-stat-value {
  background: linear-gradient(90deg, #AADDC4, #6FBDA4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.compare-stat-label {
  opacity: 0.6;
  margin-top: 4px;
}
.compare-card.onset .compare-stat-label {
  opacity: 0.7;
  color: rgba(238, 239, 212, 0.7);
}
.compare-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: grid;
  gap: 12px;
}
.compare-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
}
.compare-card.traditional .compare-list li { opacity: 0.7; }
.compare-card.onset .compare-list li { color: rgba(238, 239, 212, 0.9); }
.compare-dash {
  margin-top: 7px;
  width: 14px; height: 1.5px;
  background: currentColor;
  flex-shrink: 0;
  opacity: 0.5;
}
.compare-foot {
  margin-top: 32px;
  opacity: 0.6;
  text-align: center;
}

/* =====================================================================
   MID CTA  (dark band)
   ===================================================================== */
.a-midcta {
  background: var(--onset-deep);
  color: var(--onset-cream);
  padding: 80px 72px;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(238, 239, 212, 0.08);
  border-bottom: 1px solid rgba(238, 239, 212, 0.08);
}
.a-midcta-glow {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: 800px; height: 400px;
  background: radial-gradient(ellipse, rgba(111, 189, 164, 0.18), transparent 65%);
  filter: blur(40px);
  pointer-events: none;
}
.a-midcta-inner {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.a-midcta h3 {
  font-size: 36px;
  line-height: 1.15;
  margin: 0;
  font-weight: 500;
  letter-spacing: -0.025em;
  color: var(--onset-cream);
  max-width: 600px;
  text-wrap: balance;
}
.a-midcta p {
  margin-top: 12px;
  color: rgba(238, 239, 212, 0.7);
  font-size: 16px;
  line-height: 1.5;
  max-width: 520px;
}

/* =====================================================================
   TESTIMONIAL  (portrait + quote)
   ===================================================================== */
.a-testimonial {
  background: var(--onset-bone);
  padding: 160px 72px;
  color: var(--onset-ink);
  position: relative;
  overflow: hidden;
}
.a-testimonial-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}
.a-testimonial-portrait {
  position: relative;
}
.a-testimonial-portrait-img {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: 0 40px 100px rgba(14, 58, 46, 0.15);
}
.a-testimonial-portrait-img img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.a-testimonial-orb {
  position: absolute;
  right: -40px; top: -40px;
  width: 180px; height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #E8EE9F 0%, #6FBDA4 45%, #2E8A73 100%);
  box-shadow: 0 20px 60px rgba(111, 189, 164, 0.4);
}
.a-testimonial-quote svg { margin-bottom: 24px; }
.a-testimonial-quote p {
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.18;
  font-weight: 400;
  margin: 0;
  letter-spacing: -0.025em;
  text-wrap: balance;
}
.a-testimonial-person {
  margin-top: 32px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.a-testimonial-person-name { font-size: 16px; font-weight: 500; }
.a-testimonial-person-role { opacity: 0.65; }

/* =====================================================================
   ENV IMAGE  (forest band — "De CSRD is geen storm...")
   ===================================================================== */
.a-env {
  background: var(--onset-deep);
  padding: 0;
  position: relative;
  overflow: hidden;
  height: 520px;
}
.a-env > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.1) contrast(1.05);
}
.a-env-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(5, 11, 9, 0.85) 0%, rgba(5, 11, 9, 0.5) 50%, rgba(5, 11, 9, 0.2) 100%);
}
.a-env-inner {
  position: relative;
  padding: 80px 72px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: var(--onset-cream);
  max-width: 720px;
}
.a-env-inner h2 {
  font-size: 64px;
  line-height: 1.0;
  margin: 0;
  letter-spacing: -0.03em;
  font-weight: 500;
  color: var(--onset-cream);
  text-wrap: balance;
}
.a-env-inner p {
  margin-top: 24px;
  color: rgba(238, 239, 212, 0.85);
  font-size: 19px;
  max-width: 560px;
}

/* =====================================================================
   MKB  (Vier redenen om nu te beginnen)
   ===================================================================== */
.a-mkb {
  background: var(--onset-deep);
  color: var(--onset-cream);
  padding: 160px 72px;
  position: relative;
  overflow: hidden;
}
.a-mkb-glow-a,
.a-mkb-glow-b {
  position: absolute;
  pointer-events: none;
}
.a-mkb-glow-a {
  right: -15%; top: -10%;
  width: 900px; height: 900px;
  background: radial-gradient(circle, rgba(170, 220, 195, 0.35) 0%, rgba(111, 189, 164, 0.15) 30%, transparent 65%);
  filter: blur(30px);
}
.a-mkb-glow-b {
  left: -10%; bottom: -20%;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(232, 238, 159, 0.18) 0%, transparent 65%);
  filter: blur(40px);
}
.a-mkb-bigword {
  position: absolute;
  left: -30px; top: 40px;
  font-family: var(--font-display);
  font-size: clamp(180px, 24vw, 340px);
  font-weight: 800;
  letter-spacing: -0.06em;
  /* No yellow per feedback — softer mint-only watermark */
  background: linear-gradient(135deg, rgba(170, 220, 195, 0.12) 0%, rgba(0, 134, 97, 0.08) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  pointer-events: none;
  user-select: none;
  opacity: 0.7;
}
.a-mkb-inner {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
}
.a-mkb-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 80px;
}
.a-mkb-header h2 {
  font-size: 80px;
  line-height: 0.95;
  margin: 0;
  letter-spacing: -0.035em;
  font-weight: 500;
  color: var(--onset-cream);
  text-wrap: balance;
}
.a-mkb-header p {
  color: rgba(238, 239, 212, 0.82);
  font-size: 19px;
  max-width: 420px;
  margin: 0;
}
.a-mkb-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.mkb-card {
  background: linear-gradient(160deg, rgba(238, 239, 212, 0.06), rgba(238, 239, 212, 0.02));
  border: 1px solid rgba(238, 239, 212, 0.12);
  border-radius: 22px;
  padding: 32px;
  position: relative;
  overflow: hidden;
  min-height: 340px;
  display: flex;
  flex-direction: column;
  transition: transform 0.5s cubic-bezier(.2,.8,.2,1), border-color 0.4s, background 0.4s;
}
.mkb-card:hover {
  transform: translateY(-6px);
  border-color: rgba(170, 220, 195, 0.35);
  background: linear-gradient(160deg, rgba(238, 239, 212, 0.10), rgba(238, 239, 212, 0.04));
}
.mkb-card:hover .mkb-card-glow { opacity: 1.4; }
.mkb-card-glow {
  position: absolute;
  right: -40px; top: -40px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(111, 189, 164, 0.25), transparent 70%);
  filter: blur(20px);
  pointer-events: none;
}
.mkb-card img {
  position: relative;
  width: 72px; height: 72px;
  margin-bottom: 20px;
  filter: brightness(1.2) saturate(1.1);
}
/* Brand orb icons — match the cirkel style from steps */
.mkb-card-orb {
  width: 88px !important;
  height: 88px !important;
  max-width: none;
  margin: -8px 0 14px -8px !important;
  filter: brightness(1.15) saturate(1.15) !important;
}
.mkb-card h3 {
  margin: 0;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--onset-cream);
  line-height: 1.15;
  min-height: calc(22px * 1.15 * 2);
}
.mkb-card p {
  margin-top: 14px;
  color: rgba(238, 239, 212, 0.72);
  font-size: 15px;
  line-height: 1.5;
}

/* =====================================================================
   FAQ
   ===================================================================== */
.a-faq {
  background: var(--onset-bone);
  padding: 160px 72px;
  color: var(--onset-ink);
}
.a-faq-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 80px;
  align-items: start;
}
.a-faq-sticky { position: sticky; top: 40px; }
.a-faq-sticky h2 {
  font-size: 64px;
  line-height: 0.95;
  margin: 0;
  letter-spacing: -0.035em;
  font-weight: 500;
  text-wrap: balance;
}
.a-faq-sticky p {
  margin-top: 20px;
  opacity: 0.7;
  max-width: 320px;
}
.a-faq-sticky a { color: var(--onset-teal); font-weight: 500; }

.faq-item { border-bottom: 1px solid var(--onset-line); }
.faq-q {
  width: 100%;
  background: transparent;
  border: none;
  padding: 28px 0;
  text-align: left;
  cursor: pointer;
  font-family: inherit;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: var(--onset-ink);
  transition: color 0.25s;
}
.faq-q:hover { color: var(--onset-teal); }
.faq-q:hover .faq-plus { border-color: var(--onset-teal); color: var(--onset-teal); }
.faq-item.is-open .faq-plus { background: var(--onset-teal); color: white; border-color: var(--onset-teal); }
.faq-q-label {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.3;
}
.faq-plus {
  flex-shrink: 0;
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid var(--onset-line);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s cubic-bezier(.2,.8,.2,1), background 0.3s, border-color 0.3s, color 0.3s;
}
.faq-item.is-open .faq-plus { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(.2,.8,.2,1);
}
.faq-item.is-open .faq-a { max-height: 500px; }
.faq-a p {
  padding: 0 0 28px;
  margin: 0;
  opacity: 0.75;
  max-width: 620px;
  line-height: 1.6;
}

/* =====================================================================
   PREORDER
   ===================================================================== */
.a-preorder {
  background: var(--onset-bone);
  padding: 140px 72px;
  color: var(--onset-ink);
  position: relative;
  overflow: hidden;
}
.a-preorder-card {
  background: var(--onset-deep);
  color: var(--onset-cream);
  border-radius: 32px;
  padding: 80px 72px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 72px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
/* Old single beeldmerk decoration — replaced by overlapping orbs */
.a-preorder-mark { display: none; }
/* New corner: 2 overlapping pillar orbs partially outside the card */
.a-preorder-corner {
  position: absolute;
  right: -140px; bottom: -140px;
  width: 540px; height: 540px;
  pointer-events: none;
  z-index: 0;
  overflow: visible;
}
.a-preorder-corner-orb {
  position: absolute;
  width: 380px;
  height: auto;
  max-width: none;
  filter: brightness(1.08) saturate(1.2);
  opacity: 0.95;
}
.a-preorder-corner-orb-a { right: 140px; bottom: 120px; animation: preorder-orb-float 9s ease-in-out infinite; }
.a-preorder-corner-orb-b { right: 0;     bottom: 0;     animation: preorder-orb-float 9s ease-in-out -4.5s infinite; z-index: 1; }
@keyframes preorder-orb-float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%      { transform: translate(-8px, -12px) scale(1.03); }
}
.a-preorder-text { position: relative; }
.a-preorder-text h2 { color: var(--onset-cream); }
.a-preorder-text .lead {
  margin-top: 20px;
  color: rgba(238, 239, 212, 0.82);
  max-width: 440px;
}
.a-preorder-text .lead strong { color: var(--onset-cream); font-weight: 500; }
.a-preorder-list {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
  display: grid;
  gap: 10px;
}
.a-preorder-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(238, 239, 212, 0.9);
}

.a-preorder-form {
  position: relative;
  background: rgba(238, 239, 212, 0.06);
  border: 1px solid var(--onset-line-dark);
  backdrop-filter: blur(8px);
  border-radius: 22px;
  padding: 32px;
  display: grid;
  gap: 16px;
}
.a-preorder-form label {
  display: grid;
  gap: 6px;
}
.a-preorder-form .field-label {
  font-size: 13px;
  color: rgba(238, 239, 212, 0.7);
}
.a-preorder-form input,
.a-preorder-form select {
  background: rgba(238, 239, 212, 0.06);
  border: 1px solid rgba(238, 239, 212, 0.15);
  border-radius: 10px;
  padding: 14px 16px;
  color: var(--onset-cream);
  font-family: inherit;
  font-size: 15px;
  outline: none;
  appearance: none;
  transition: border-color 0.25s, background-color 0.25s, box-shadow 0.25s;
}
.a-preorder-form input:hover,
.a-preorder-form select:hover {
  border-color: rgba(238, 239, 212, 0.30);
}
.a-preorder-form input:focus,
.a-preorder-form select:focus {
  border-color: var(--onset-mint);
  background: rgba(238, 239, 212, 0.10);
  box-shadow: 0 0 0 4px rgba(170, 220, 195, 0.18);
}
.a-preorder-form input::placeholder { color: rgba(238, 239, 212, 0.35); }
.a-preorder-form select option { color: var(--onset-ink); }
.a-preorder-form button[type="submit"] {
  margin-top: 8px;
  justify-content: center;
  padding: 20px;
  width: 100%;
}
.a-preorder-form .form-foot {
  margin: 0;
  text-align: center;
  color: rgba(238, 239, 212, 0.55);
}

/* =====================================================================
   GUARANTEE  (3 items strip)
   ===================================================================== */
.a-guarantee {
  background: var(--onset-bone);
  border-top: 1px solid var(--onset-line);
  border-bottom: 1px solid var(--onset-line);
  padding: 48px 72px;
  color: var(--onset-ink);
}
.a-guarantee-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}
.a-guarantee-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.a-guarantee-item svg { flex-shrink: 0; margin-top: 2px; }
.a-guarantee-item-title {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.01em;
  margin-bottom: 4px;
}
.a-guarantee-item-body {
  opacity: 0.7;
  font-size: 15px;
}

/* =====================================================================
   REDUCED MOTION
   ===================================================================== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .strip-dot,
  .a-hero-orb-light-a,
  .a-hero-orb-light-b,
  .a-hero-wave,
  .a-hero-orb .hero-rotate-slow,
  .a-hero-orb .hero-rotate-medium-reverse,
  .a-hero-orb .hero-rotate-fast,
  .a-hero-glow,
  .a-hero-orb .orb-e,
  .a-hero-orb .orb-s,
  .a-hero-orb .orb-g,
  .a-hero-particle {
    animation: none !important;
  }
}

/* =====================================================================
   RESPONSIVE  (below 1440, sensible fallback)
   ===================================================================== */

/* Tablet breakpoint — 1024px and below */
@media (max-width: 1200px) {
  .nav { padding: 20px 40px; }
  .a-hero-main { padding: 20px 40px 48px; grid-template-columns: 1fr; gap: 48px; }
  .a-hero-scroll { padding: 0 40px 24px; }
  .a-hero { height: auto; min-height: 0; max-height: none; padding-bottom: 40px; }
  .a-hero-title { font-size: clamp(48px, 7vw, 72px); }
  .a-hero-orb-wrap { max-width: 420px; margin: 0 auto; transform: none !important; }

  .a-strip { padding: 32px 40px 0; }
  .a-strip-grid { grid-template-columns: repeat(2, 1fr); }

  .a-what { padding: 100px 40px 1px; }
  .a-what-inner { grid-template-columns: 1fr; gap: 48px; }
  .a-what-sticky { position: static; }
  .a-what-sticky h2 { font-size: 56px; }
  .a-what-blob { right: -260px; top: -140px; opacity: 0.5; }

  .a-steps { padding: 80px 40px 120px; }
  .a-steps-title { font-size: 56px; }
  .a-steps-grid { grid-template-columns: 1fr; gap: 20px; margin-top: 56px; }
  .a-steps-esg-bg { font-size: 300px; }

  .a-compare { padding: 120px 40px; }
  .a-compare-title { font-size: 48px; }
  .a-compare-grid { grid-template-columns: 1fr; }

  .a-midcta { padding: 64px 40px; }
  .a-midcta h3 { font-size: 28px; }

  .a-testimonial { padding: 120px 40px; }
  .a-testimonial-inner { grid-template-columns: 1fr; gap: 48px; }
  .a-testimonial-quote p { font-size: 28px; }

  .a-env { height: 420px; }
  .a-env-inner { padding: 56px 40px; }
  .a-env-inner h2 { font-size: 44px; }

  .a-mkb { padding: 120px 40px; }
  .a-mkb-header { grid-template-columns: 1fr; gap: 32px; align-items: start; margin-bottom: 56px; }
  .a-mkb-header h2 { font-size: 60px; }
  .a-mkb-grid { grid-template-columns: repeat(2, 1fr); }
  .a-mkb-bigword { font-size: 220px; }

  .a-faq { padding: 120px 40px; }
  .a-faq-inner { grid-template-columns: 1fr; gap: 40px; }
  .a-faq-sticky { position: static; }
  .a-faq-sticky h2 { font-size: 52px; }

  .a-preorder { padding: 100px 40px; }
  .a-preorder-card {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 56px 40px;
  }
  .a-preorder-mark { width: 380px; right: -80px; bottom: -80px; }

  .a-guarantee { padding: 40px; }
  .a-guarantee-inner { grid-template-columns: 1fr; gap: 28px; }

  .foot { padding: 48px 40px 28px; grid-template-columns: 1fr 1fr; }
  .foot-meta { padding: 16px 40px 28px; flex-direction: column; gap: 8px; }
}

/* Tablet/medium — 1200px and below */
@media (max-width: 1200px) {
  /* Hero gets top-padding to clear fixed nav */
  .a-hero { padding-top: 96px; }

  /* WIIFM: 1-col on tablet for breathing room, 3-col only on wide */
  .a-wiifm { padding: 96px 40px; }
  .a-wiifm-grid { grid-template-columns: 1fr; gap: 16px; max-width: 720px; margin: 0 auto; }
  .wiifm-card { padding: 32px 28px; }
  .wiifm-card-title { font-size: 28px; }

  /* Heatmap: stack label above cells on tablet */
  .heatmap-row { grid-template-columns: 1fr; gap: 8px; }
  .heatmap-legend { padding-left: 0; }

  /* Narrative blocks: 1-col on tablet */
  .action-narrative { grid-template-columns: 1fr; gap: 18px; }

  /* Voorbeeldrapport responsive (legacy + new doc) */
  .a-report { padding: 100px 40px 120px; }

  /* Orb explorer responsive (tablet) */
  .orb-explorer { margin-top: 40px; }
  .orb-stage { min-height: 0; }
  .orb-scene { padding: 36px 32px; }
  .orb-scene-orbital { aspect-ratio: 1.4 / 1; max-height: 460px; }
  .orbital-center { width: 240px; height: 240px; }
  .orbital-center-score { font-size: 70px; }
  .orb-scene-foot { grid-template-columns: 1fr; gap: 18px; }
  .orb-scene-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "hero"
      "heatmap"
      "advice";
    gap: 24px 0;
  }
  .orb-scene-hero { padding-right: 0; }
  .scene-score-num { font-size: clamp(80px, 14vw, 130px); }

  /* legacy doc */
  .a-report-doc { gap: 20px; margin-top: 40px; }
  .doc-cover { padding: 48px 40px 44px; min-height: 380px; }
  .doc-page { padding: 44px 40px; }
  .doc-page-head { gap: 24px; margin-bottom: 28px; padding-bottom: 22px; }
  .doc-page-no { font-size: 48px; min-width: 60px; }
  .doc-cover-score-num { font-size: clamp(120px, 16vw, 200px); }
  .doc-score-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .doc-score-grid > .doc-score-card:nth-child(3) { grid-column: 1 / -1; }
  .doc-priority-cols { grid-template-columns: 1fr 1fr; gap: 24px; }
}

/* Mobile — 720px and below */
@media (max-width: 720px) {
  /* Nav: fixed compact bar with mobile menu drawer */
  .a-hero-nav-wrap {
    background: rgba(10, 35, 28, 0.78);
    backdrop-filter: saturate(150%) blur(14px);
    -webkit-backdrop-filter: saturate(150%) blur(14px);
    border-bottom: 1px solid rgba(238, 239, 212, 0.08);
  }
  .nav {
    padding: 14px 20px;
    flex-wrap: wrap;
    row-gap: 0;
    align-items: center;
  }
  .nav > a:first-child { order: 1; }
  .nav-toggle {
    order: 2;
    margin-left: auto;
    display: inline-flex;
    padding: 10px 14px;
    font-size: 14px;
    border-radius: 999px;
  }
  .nav-cta { display: none; }
  .nav-logo { height: 32px; }
  .nav-links {
    order: 3;
    display: none;
    flex-basis: 100%;
    flex-direction: column;
    gap: 0;
    padding: 8px 0 8px;
    margin-top: 12px;
    border-top: 1px solid rgba(238, 239, 212, 0.10);
  }
  .nav-links.is-open { display: flex; }
  .nav-links a {
    padding: 14px 4px;
    border-bottom: 1px solid rgba(238, 239, 212, 0.08);
    font-size: 16px;
    opacity: 1;
  }
  .nav-links a:last-child { border-bottom: none; }
  .nav-links a::after { display: none; }

  /* Hero: orb on top (visual hook), then text — tight composition */
  .a-hero { padding-top: 76px; padding-bottom: 24px; min-height: 0; height: auto; }
  .a-hero-main {
    padding: 16px 20px 28px;
    grid-template-columns: 1fr;
    gap: 4px;
  }
  .a-hero-main > div:first-child { display: contents; }
  .a-hero-main > div:first-child > * { order: 2; }
  .a-hero-scroll { display: none; }

  /* Order: orb (visual) → title → lead → ctas → fineprint → cohort */
  .a-hero-title { order: 2; font-size: clamp(40px, 10.5vw, 54px); line-height: 1.02; margin: 14px 0 0; }
  .a-hero-lead { order: 3; font-size: 15px; line-height: 1.5; margin-top: 14px; }
  .a-hero-ctas { order: 4; gap: 10px; flex-wrap: wrap; margin-top: 22px; }
  .a-hero-ctas .btn { padding: 14px 22px; font-size: 15px; }
  .a-hero-ctas .btn-primary { width: 100%; justify-content: center; }
  .a-hero-ctas .btn-ghost { width: 100%; justify-content: center; }
  .a-hero-finepr { order: 5; font-size: 13px; margin-top: 18px; line-height: 1.5; }

  /* Cohort progress: compact, integrated */
  .a-hero-cohort { order: 6; margin-top: 18px; max-width: none; }
  .cohort-meta {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 6px 12px;
    margin-top: 10px;
    font-size: 10.5px;
  }
  .cohort-status { letter-spacing: 0.06em; }

  /* Hero orb: TOP of hero, full visual hook */
  .a-hero-orb-wrap {
    order: 1;
    width: 100%;
    max-width: 360px;
    margin: 0 auto;
    transform: none !important;
    align-items: stretch;
  }
  .a-hero-orb { aspect-ratio: 1.5 / 1; max-width: 360px; width: 100%; margin: 0 auto; }
  .a-hero-orb img { width: 56%; }
  .a-hero-orb .orb-e { left: 8%; top: 12%; }
  .a-hero-orb .orb-s { left: 22%; top: 12%; }
  .a-hero-orb .orb-g { left: 36%; top: 12%; }
  .a-hero-orb svg { display: none; }

  /* Per-orb labels on mobile: keep letters, hide long words to prevent overlap */
  .a-hero-orb-labels { height: auto; min-height: 48px; margin-top: 4px; }
  .orb-label { gap: 4px; }
  .orb-label-letter { font-size: 26px; }
  .orb-label-rule { width: 12px; opacity: 0.5; }
  .orb-label-word { display: none; }

  /* And a single-row caption below */
  .a-hero-orb-labels::after {
    content: 'Environment · Social · Governance';
    position: absolute;
    left: 0; right: 0; top: 56px;
    text-align: center;
    font-family: var(--font-ui);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: rgba(238, 239, 212, 0.55);
  }

  /* Strip */
  .a-strip { padding: 32px 20px 0; }
  .a-strip-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .strip-card { aspect-ratio: 4 / 5; }
  .strip-label { font-size: 14px; padding: 12px 14px; }

  /* What/pillars */
  .a-what { padding: 72px 20px 1px; }
  .a-what-inner { grid-template-columns: 1fr; gap: 32px; }
  .a-what-sticky { position: static; }
  .a-what-sticky h2 { font-size: clamp(34px, 9vw, 44px); }
  .a-what-blob { display: none; }
  .pillar-card {
    grid-template-columns: 1fr;
    padding: 26px;
    gap: 16px;
    text-align: left;
  }
  .pillar-icon { margin: 0; }
  .pillar-corner { top: 18px; right: 18px; }
  .pillar-body h3 { font-size: 22px; }
  .pillar-body p { font-size: 15px; }

  /* Steps */
  .a-steps { padding: 64px 20px 80px; }
  .a-steps-title { font-size: clamp(34px, 9vw, 44px); }
  .a-steps-grid { grid-template-columns: 1fr; gap: 14px; margin-top: 40px; }
  .a-steps-esg-bg { font-size: 200px; right: -20px; bottom: -80px; opacity: 0.6; }
  .step-card { padding: 28px; }
  .step-card-n { font-size: 64px; top: 20px; right: 22px; }
  .step-card h3 { font-size: 22px; }

  /* WIIFM mobile */
  .a-wiifm { padding: 72px 20px; }
  .a-wiifm-title { font-size: clamp(32px, 8.5vw, 44px); }
  .a-wiifm-grid { gap: 12px; }
  .wiifm-card { padding: 28px 24px; }
  .wiifm-card-title { font-size: 24px; margin: 14px 0 10px; }
  .wiifm-card-desc { font-size: 14.5px; }

  /* Heatmap mobile: 2 cells per row */
  .heatmap-cells { grid-template-columns: 1fr 1fr; gap: 6px; }
  .heatmap-cell { padding: 12px 10px; font-size: 11px; }
  .heatmap-legend { gap: 14px; font-size: 10px; flex-wrap: wrap; }
  .heatmap-row-label { font-size: 11px; }

  /* Narrative blocks already 1-col from tablet */
  .narrative-block li { font-size: 13px; }

  /* Voorbeeldrapport: full mobile rework */
  .a-report { padding: 72px 20px 80px; }
  .a-report-header { margin-bottom: 36px; }
  .a-report-header h2 { font-size: clamp(32px, 8.5vw, 44px); }
  .a-report-header .lead { font-size: 16px; }

  /* Deep dive on mobile */
  .a-deepdive { margin-top: 24px; }
  .a-deepdive-head { flex-direction: column; align-items: flex-start; gap: 10px; }
  .a-deepdive-fs { padding: 9px 14px; font-size: 12px; }
  /* Keep landscape 16:9 (matches deep-dive content) so it doesn't letterbox */
  .a-deepdive-frame { aspect-ratio: 16 / 9; max-height: 60vh; }

  /* Orb explorer on mobile */
  .orb-explorer { margin-top: 28px; }
  .orb-tabs { grid-template-columns: 1fr; gap: 8px; margin-bottom: 16px; }
  .orb-tab { padding: 14px 16px; grid-template-columns: 48px 1fr; gap: 14px; }
  .orb-tab-orb { width: 48px; height: 48px; }
  .orb-tab-orb img { inset: -14px; width: 76px; height: 76px; }
  .orb-tab-letter { font-size: 18px; }
  .orb-tab-name { font-size: 15px; }
  .orb-tab-score { font-size: 16px; }

  .orb-stage { border-radius: 22px; }
  .orb-scene { padding: 28px 22px 26px; }
  .orb-scene-bg { right: -180px; top: -180px; width: 480px; height: 480px; }
  .orb-scene-glow { left: -100px; bottom: -100px; width: 280px; height: 280px; }

  /* Orbital scene on mobile: smaller orbit + corner subthemes */
  .orb-scene-orbital { aspect-ratio: 1 / 1; max-height: 360px; }
  .orbital-ring { display: none; }
  .orbital-center { width: 180px; height: 180px; }
  .orbital-center-letter { font-size: 22px; }
  .orbital-center-score { font-size: 56px; }
  .orbital-center-status { font-size: 9px; letter-spacing: 0.12em; padding: 3px 10px; }
  .orbital-sub-1 { top: 0; left: 0; }
  .orbital-sub-2 { top: 0; right: 0; }
  .orbital-sub-3 { bottom: 0; left: 0; }
  .orbital-sub-4 { bottom: 0; right: 0; }
  .sub-orb { width: 38px; height: 38px; }
  .sub-orb::before { inset: -10px; }
  .sub-name { font-size: 10px; }
  .sub-score { font-size: 20px; }
  .orbital-sub { gap: 8px; }

  /* Foot stack */
  .orb-scene-foot { grid-template-columns: 1fr; gap: 18px; padding-top: 18px; margin-top: 12px; }
  .scene-foot-pillar { gap: 6px; }

  /* Legacy classes that still need mobile values */
  .orb-scene-grid { gap: 22px 0; }
  .scene-score { gap: 10px; margin-top: 10px; }
  .scene-score-num { font-size: clamp(70px, 22vw, 100px); }
  .scene-score-max { font-size: 14px; }
  .scene-status { font-size: 9px; padding: 4px 10px; }
  .scene-title { font-size: 17px; margin: 0; line-height: 1.2; letter-spacing: -0.015em; }
  .scene-lede { font-size: 14px; }
  .scene-section-label { font-size: 10px; letter-spacing: 0.14em; }
  .scene-cells { gap: 8px; }
  .scene-cell { padding: 14px 14px 12px; }
  .cell-name { font-size: 13px; }
  .cell-score { font-size: 24px; }
  .scene-advice-list li { padding: 12px 14px; font-size: 13px; gap: 10px; grid-template-columns: 26px 1fr; }
  .advice-num { font-size: 13px; }

  /* New report doc on mobile */
  .a-report-doc { gap: 16px; margin-top: 32px; }
  .doc-cover { padding: 36px 26px 32px; min-height: 0; border-radius: 22px; }
  .doc-cover-meta { font-size: 9px; letter-spacing: 0.16em; flex-wrap: wrap; gap: 8px; }
  .doc-cover-stamp { padding: 5px 10px; }
  .doc-cover-eyebrow { font-size: 10px; }
  .doc-cover-company { font-size: 32px; }
  .doc-cover-title { margin-top: 28px; }
  .doc-cover-score { padding-top: 36px; gap: 14px; align-items: flex-end; }
  .doc-cover-score-num { font-size: 110px; }
  .doc-cover-score-max { font-size: 16px; }
  .doc-cover-score-label { font-size: 10px; letter-spacing: 0.14em; }
  .doc-cover-tagline { font-size: 15px; margin-top: 18px; }
  .doc-cover-pageno { right: 20px; bottom: 14px; font-size: 9px; }

  .doc-page { padding: 32px 22px 30px; border-radius: 22px; }
  .doc-page-head { flex-direction: column; align-items: flex-start; gap: 12px; padding-bottom: 18px; margin-bottom: 22px; }
  .doc-page-no { font-size: 36px; min-width: 0; }
  .doc-page-section-label { font-size: 10px; letter-spacing: 0.16em; }
  .doc-page-section-title { font-size: 24px; }

  /* Score grid: stack to 1-col on mobile for breathing */
  .doc-score-grid { grid-template-columns: 1fr; gap: 12px; }
  .doc-score-grid > .doc-score-card:nth-child(3) { grid-column: auto; }
  .doc-score-card { padding: 24px 22px 22px; }
  .doc-score-card-letter { font-size: 48px; }
  .doc-score-card-num .doc-num { font-size: 52px; }
  .doc-score-card-num .doc-num-max { font-size: 15px; }
  .doc-score-card-domain { font-size: 17px; }
  .doc-score-card-status { font-size: 9px; letter-spacing: 0.10em; }
  .doc-score-card-note { font-size: 11px; }

  /* Heatmap: stack head + cells, 2-col cells */
  .doc-heat-row { grid-template-columns: 1fr; gap: 8px; }
  .doc-heat-cells { grid-template-columns: 1fr 1fr; gap: 5px; }
  .doc-heat-cell { padding: 11px 12px; font-size: 11px; }
  .doc-heat-row-letter { width: 30px; height: 30px; font-size: 14px; }
  .doc-heat-row-name { font-size: 14px; }
  .doc-heat-legend { padding-left: 0; flex-wrap: wrap; gap: 12px; font-size: 10px; }

  /* Priority pages */
  .doc-priority-tag { position: static; align-self: flex-start; font-size: 10px; padding: 5px 11px; }
  .doc-priority-body { gap: 22px; }
  .doc-priority-lede { font-size: 16px; }
  .doc-priority-quote { font-size: 18px; padding: 20px 22px; border-radius: 12px; }
  .doc-priority-cols { grid-template-columns: 1fr; gap: 22px; }
  .doc-col-label { font-size: 10px; letter-spacing: 0.14em; margin-bottom: 10px; }
  .doc-col-list li { font-size: 13.5px; padding-left: 16px; }

  .report-mock-bar { padding: 12px 14px; }
  .report-mock-bar > span { width: 9px; height: 9px; }
  .report-mock-url { font-size: 11px; padding: 5px 10px; margin-left: 10px; max-width: 60%; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

  .report-mock-header { padding: 16px 18px; flex-direction: column; align-items: flex-start; gap: 12px; }
  .report-company { font-size: 17px; }
  .report-company-meta { font-size: 11px; }
  .report-mock-actions { width: 100%; justify-content: flex-start; }

  .report-mock-body { padding: 22px 18px 28px; gap: 28px; }
  .report-section-head { flex-direction: column; align-items: flex-start; gap: 4px; margin-bottom: 14px; }
  .report-section-label { font-size: 10px; margin-bottom: 0; letter-spacing: 0.14em; }
  .report-section-meta { font-size: 11px; }

  /* Overview: stack hero + breakdown */
  .report-overview { grid-template-columns: 1fr; gap: 18px; }
  .overview-hero { padding: 22px; gap: 14px; }
  .overview-gauge { width: 180px; height: 180px; }
  .overview-value-num { font-size: 60px; }
  .overview-value-max { font-size: 13px; }
  .overview-value-label { font-size: 9px; letter-spacing: 0.18em; }
  .overview-summary { font-size: 13px; }

  /* Score rows */
  .score-row { grid-template-columns: 56px 1fr auto; gap: 16px; padding: 16px 18px; }
  .score-row-ring { width: 52px; height: 52px; }
  .score-row-ring .score-ring { width: 52px; height: 52px; }
  .score-row-letter { font-size: 18px; }
  .score-row-label { font-size: 15px; margin-bottom: 6px; }
  .score-row-num { font-size: 24px; }
  .score-row-bench { font-size: 10px; padding: 2px 6px; }

  /* Benchmark */
  .benchmark { padding: 4px 0 0; }
  .benchmark-track { height: 12px; }
  .benchmark-axis { margin-top: 30px; font-size: 9px; letter-spacing: 0.06em; gap: 4px; }
  .marker-label { font-size: 11px; }
  .marker-dot { width: 18px; height: 18px; top: -28px; }

  /* Actions: stacked editorial cards */
  .action-card {
    grid-template-columns: 48px 1fr;
    gap: 14px 18px;
    padding: 22px 22px 20px;
  }
  .action-card-num { font-size: 38px; padding-top: 2px; }
  .action-card-title { font-size: 18px; }
  .action-card-desc { font-size: 13.5px; }
  .action-card-eyebrow { font-size: 10px; gap: 6px; }
  .action-card-meters { gap: 16px; margin-top: 12px; }
  .meter { min-width: 110px; max-width: none; }
  .meter-label { font-size: 9px; letter-spacing: 0.12em; }

  .action-card-aside {
    grid-column: 1 / -1;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    border-left: none;
    border-top: 1px dashed var(--onset-line);
    padding: 14px 0 0;
    margin-top: 6px;
    align-self: auto;
    height: auto;
  }
  .delta-plus { font-size: 30px; }
  .delta-unit { font-size: 11px; }
  .action-card-time { font-size: 10px; }

  /* Compare */
  .a-compare { padding: 72px 20px 80px; }
  .a-compare-title { font-size: clamp(30px, 8vw, 40px); }
  .a-compare-grid { grid-template-columns: 1fr; gap: 16px; }
  .compare-card { padding: 28px; }
  .compare-stats { gap: 24px; }
  .compare-stat-value { font-size: 26px; }

  /* New row table → mobile: aspect on top, 2 cells below */
  .compare-table { margin-top: 32px; border-radius: 18px; }
  .compare-row {
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "aspect aspect"
      "old onset";
    border-bottom: 1px solid var(--onset-line);
  }
  .compare-row.compare-head {
    grid-template-areas:
      "old onset";
  }
  .compare-row.compare-head .compare-col-aspect { display: none; }
  .compare-col { padding: 16px 18px; }
  .compare-col-aspect {
    grid-area: aspect;
    border-right: none;
    border-bottom: 1px solid var(--onset-line);
    background: var(--onset-cream-2);
    padding: 12px 18px;
  }
  .compare-col-old {
    grid-area: old;
    border-right: 1px solid var(--onset-line);
  }
  .compare-col-onset { grid-area: onset; }
  .compare-aspect-icon { width: 30px; height: 30px; }
  .compare-aspect-label { font-size: 13px; }
  .compare-col-title { font-size: 18px; }
  .compare-col-eyebrow { font-size: 9px; letter-spacing: 0.14em; margin-bottom: 4px; }
  /* Inline the badge as a chip above the title — no overlap on narrow mobile */
  .compare-col-badge {
    position: static;
    display: inline-flex;
    margin-bottom: 8px;
    font-size: 9px;
    padding: 4px 10px;
  }
  .compare-row.compare-head .compare-col-onset .compare-col-eyebrow { display: none; }
  .compare-cell-stat { font-size: 26px; }
  .compare-cell-text { font-size: 14px; }
  .compare-cell-meta { font-size: 11px; }

  /* Mid CTA */
  .a-midcta { padding: 56px 20px; text-align: center; }
  .a-midcta-inner { flex-direction: column; align-items: stretch; gap: 24px; }
  .a-midcta h3 { font-size: 24px; }

  /* Testimonial */
  .a-testimonial { padding: 72px 20px 80px; }
  .a-testimonial-inner { grid-template-columns: 1fr; gap: 32px; }
  .a-testimonial-portrait { max-width: 280px; margin: 0 auto; }
  .a-testimonial-orb { width: 120px; height: 120px; right: -20px; top: -20px; }
  .a-testimonial-quote p { font-size: clamp(20px, 5.6vw, 28px); }

  /* Env image — auto height so title fits */
  .a-env { height: auto; min-height: 320px; }
  .a-env-inner { padding: 56px 20px; height: auto; justify-content: flex-start; }
  .a-env-inner h2 { font-size: clamp(26px, 7.4vw, 34px); }
  .a-env-inner p { font-size: 15px; }
  .env-quote { padding: 14px 18px; margin: 22px 0 0; }
  .env-quote-text { font-size: 15px; }
  .env-quote-author { font-size: 11px; }

  /* MKB */
  .a-mkb { padding: 72px 20px 80px; }
  .a-mkb-header { grid-template-columns: 1fr; gap: 24px; align-items: start; margin-bottom: 36px; }
  .a-mkb-header h2 { font-size: clamp(32px, 9vw, 44px); }
  .a-mkb-bigword { font-size: 140px; top: 40px; }
  .a-mkb-grid { grid-template-columns: 1fr; gap: 14px; }
  .mkb-card { min-height: 0; padding: 26px; }
  .mkb-card h3 { font-size: 20px; min-height: 0; }

  /* FAQ */
  .a-faq { padding: 72px 20px 80px; }
  .a-faq-inner { grid-template-columns: 1fr; gap: 28px; }
  .a-faq-sticky { position: static; }
  .a-faq-sticky h2 { font-size: clamp(32px, 8vw, 40px); }
  .faq-q { padding: 22px 0; gap: 16px; }
  .faq-q-label { font-size: 16px; }
  .faq-plus { width: 30px; height: 30px; }
  .faq-a p { padding-bottom: 22px; font-size: 15px; }

  /* Preorder */
  .a-preorder { padding: 64px 20px 80px; }
  .a-preorder-card {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 36px 24px;
    border-radius: 22px;
  }
  .a-preorder-mark { width: 280px; right: -60px; bottom: -60px; }
  .a-preorder-text h2 { font-size: clamp(28px, 8vw, 36px); }
  .a-preorder-text .lead { font-size: 16px; }
  .a-preorder-list li { font-size: 14px; }
  .a-preorder-form { padding: 24px; }
  .a-preorder-form input,
  .a-preorder-form select { font-size: 16px; padding: 12px 14px; }

  /* Guarantee */
  .a-guarantee { padding: 28px 20px; }
  .a-guarantee-inner { grid-template-columns: 1fr; gap: 18px; }

  /* Footer */
  .foot { padding: 48px 20px 24px; grid-template-columns: 1fr 1fr; gap: 32px 16px; }
  .foot > div:first-child { grid-column: 1 / -1; margin-bottom: 8px; }
  .foot-meta { padding: 16px 20px 24px; font-size: 11px; flex-direction: column; gap: 6px; align-items: flex-start; }
}

/* Tiny phones — 380px and below */
@media (max-width: 380px) {
  .a-hero-title { font-size: 36px; }
  .compare-stats { flex-direction: column; gap: 14px; }
  .orb-label-letter { font-size: 22px; }
}
