/* =============================================================
   NRGStorage — v3.5
   Editorial · industrial · confident · contemporary
   ============================================================= */

/* ---------- Tokens ---------- */
:root {
  --paper: #FAFAF8;
  --cream: #F4F1EA;
  --white: #FFFFFF;
  --ink: #0F1411;
  --ink-muted: #525752;
  --ink-soft: #8A8F8A;
  --line: #E8E6DE;
  --line-strong: #D0CEC5;

  --night: #0A0E0B;
  --night-soft: #11171A;
  --night-line: rgba(255,255,255,0.09);
  --night-text: #D6D6D0;
  --night-muted: #94948E;

  --green: #3DB54A;
  --green-dark: #1F6128;
  --green-glow: #5CD46C;
  --green-bg: #F0F7F1;

  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, SFMono-Regular, monospace;

  --pad-x: clamp(1.25rem, 4vw, 2.5rem);
  --section-y: clamp(4.5rem, 9vw, 8rem);
  --max-w: 1320px;
  --max-narrow: 880px;
  --max-prose: 680px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);

  --sh-sm: 0 1px 2px rgba(15,20,17,0.05);
  --sh-md: 0 8px 24px rgba(15,20,17,0.07);
  --sh-lg: 0 20px 48px rgba(15,20,17,0.09);
  --sh-xl: 0 32px 72px rgba(15,20,17,0.14);
}

/* ---------- Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
  font-feature-settings: "ss01", "ss02", "cv01", "cv04";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: transparent; color: inherit; }
ul, ol { padding: 0; margin: 0; list-style: none; }
p { margin: 0 0 1rem; }
h1, h2, h3, h4, h5, h6 { margin: 0; font-weight: 500; line-height: 1.15; letter-spacing: -0.01em; }

.skip-link {
  position: absolute; top: -100px; left: 1rem;
  background: var(--ink); color: var(--white); padding: 0.75rem 1rem;
  z-index: 100; border-radius: 6px;
  transition: top 160ms var(--ease);
}
.skip-link:focus { top: 1rem; }

/* ---------- Typography scale ---------- */
.display {
  font-family: var(--font-display);
  font-weight: 450;
  font-variation-settings: "SOFT" 40, "opsz" 144;
  letter-spacing: -0.025em;
  line-height: 0.96;
  font-size: clamp(2.75rem, 8.5vw, 6.25rem);
  color: var(--ink);
}
.h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-variation-settings: "SOFT" 30, "opsz" 48;
  font-size: clamp(1.875rem, 3.6vw, 3rem);
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--ink);
}
.h3 {
  font-family: var(--font-display);
  font-weight: 450;
  font-variation-settings: "opsz" 36;
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  letter-spacing: -0.015em;
  line-height: 1.15;
}
.h4 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1.175rem;
  letter-spacing: -0.01em;
  line-height: 1.25;
  color: var(--ink);
}
.h5 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: -0.005em;
  line-height: 1.3;
  color: var(--ink);
}
.lead {
  font-size: clamp(1.05rem, 1.25vw, 1.2rem);
  line-height: 1.55;
  color: var(--ink-muted);
  max-width: 58ch;
}
.lead.light { color: var(--night-muted); }
.prose {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--ink-muted);
  max-width: var(--max-prose);
}
.prose p + p { margin-top: 1rem; }

/* Eyebrow — small mono label with a leading rule */
.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--green-dark);
  margin: 0 0 1.25rem;
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: currentColor;
  display: inline-block;
  opacity: 0.65;
}
.eyebrow.light { color: var(--green-glow); }
.eyebrow.no-rule::before { display: none; }

em {
  font-style: italic;
  font-variation-settings: "SOFT" 60;
  color: var(--green-dark);
}
.dark em, .hero em, .big-stat em, .final-cta em { color: var(--green-glow); }

/* ---------- Layout utilities ---------- */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  width: 100%;
}
.container.narrow { max-width: var(--max-narrow); }
.container.prose-width { max-width: var(--max-prose); }

.section {
  padding: var(--section-y) 0;
  position: relative;
}
.section.alt { background: var(--cream); }
.section.dark {
  background: var(--night);
  color: var(--night-text);
}
.section.dark .h2, .section.dark .h3, .section.dark .h4, .section.dark .h5 { color: var(--white); }
.section.dark p { color: var(--night-muted); }
.section.dark .eyebrow { color: var(--green-glow); }

.two-col-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
}
.two-col-split.narrow { max-width: var(--max-narrow); margin: 0 auto; padding: 0 var(--pad-x); }
.split-col h4 { margin-bottom: 1.25rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.35rem;
  font-size: 0.925rem;
  font-weight: 500;
  letter-spacing: -0.005em;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  transition: all 200ms var(--ease);
  white-space: nowrap;
  line-height: 1;
}
.btn-primary {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}
.btn-primary:hover { background: var(--green-dark); border-color: var(--green-dark); transform: translateY(-1px); box-shadow: var(--sh-md); }

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line-strong);
}
.btn-ghost:hover { background: var(--ink); color: var(--white); border-color: var(--ink); }

.btn-ghost-dark {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.28);
}
.btn-ghost-dark:hover { background: var(--white); color: var(--ink); border-color: var(--white); }

.arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--ink);
  transition: gap 200ms var(--ease), color 200ms var(--ease);
  border-bottom: 1px solid var(--line-strong);
  padding-bottom: 2px;
}
.arrow-link:hover { gap: 0.85rem; color: var(--green-dark); border-color: var(--green-dark); }
.arrow-link.light { color: var(--white); border-color: rgba(255,255,255,0.28); }
.arrow-link.light:hover { color: var(--green-glow); border-color: var(--green-glow); }

/* ---------- Site header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250,250,248,0.88);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: background 250ms var(--ease), border-color 250ms var(--ease), color 250ms var(--ease);
}
body.dark-header-start .site-header {
  background: rgba(10,14,11,0.6);
  color: var(--white);
  border-bottom-color: rgba(255,255,255,0.06);
}
body.dark-header-start .site-header .btn-ghost {
  color: var(--white); border-color: rgba(255,255,255,0.25);
}
body.dark-header-start .site-header .btn-ghost:hover { background: var(--white); color: var(--ink); }
body.dark-header-start .site-header .brand-name,
body.dark-header-start .site-header .nav-list a { color: var(--white); }
body.dark-header-start .site-header .brand-tag,
body.dark-header-start .site-header .lang-switch a { color: rgba(255,255,255,0.6); }
body.dark-header-start .site-header .lang-switch a[aria-current="true"] { color: var(--green-glow); }

.site-header.scrolled {
  background: rgba(250,250,248,0.96);
  color: var(--ink) !important;
  border-bottom-color: var(--line);
}
.site-header.scrolled .brand-name,
.site-header.scrolled .nav-list a,
.site-header.scrolled .btn-ghost { color: var(--ink); }
.site-header.scrolled .brand-tag { color: var(--ink-muted); }
.site-header.scrolled .btn-ghost { border-color: var(--line-strong); }
.site-header.scrolled .lang-switch a { color: var(--ink-muted); }
.site-header.scrolled .lang-switch a[aria-current="true"] { color: var(--green-dark); }

.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 1rem var(--pad-x);
  display: flex;
  align-items: center;
  gap: 2rem;
}
.brand {
  display: flex; align-items: center; gap: 0.75rem; flex-shrink: 0;
}
.brand img { width: 32px; height: 32px; }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name { font-weight: 600; font-size: 1rem; letter-spacing: -0.01em; }
.brand-tag {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-top: 2px;
}

.site-nav { flex: 1; }
.nav-list {
  display: flex; gap: 2rem; justify-content: center;
}
.nav-list a {
  font-size: 0.925rem;
  font-weight: 450;
  color: var(--ink);
  padding: 0.5rem 0;
  position: relative;
  transition: color 200ms var(--ease);
}
.nav-list a::after {
  content: "";
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 1px; background: currentColor;
  transform: scaleX(0); transform-origin: left;
  transition: transform 200ms var(--ease);
}
.nav-list a:hover::after, .nav-list a.active::after { transform: scaleX(1); }
.nav-list a.active { color: var(--green-dark); }
body.dark-header-start .nav-list a.active { color: var(--green-glow); }
.site-header.scrolled .nav-list a.active { color: var(--green-dark); }

.header-right { display: flex; align-items: center; gap: 1rem; flex-shrink: 0; }
.lang-switch {
  display: inline-flex; gap: 0.4rem; align-items: center;
  font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.12em;
}
.lang-switch a { color: var(--ink-muted); transition: color 200ms var(--ease); }
.lang-switch a:hover { color: var(--ink); }
.lang-switch a[aria-current="true"] { color: var(--green-dark); }
.lang-switch .sep { color: var(--ink-soft); }

.nav-toggle {
  display: none;
  width: 40px; height: 40px;
  flex-direction: column; justify-content: center; align-items: center; gap: 4px;
}
.nav-toggle span {
  display: block; width: 22px; height: 1.5px; background: currentColor;
  transition: transform 200ms var(--ease), opacity 200ms var(--ease);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(5.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-5.5px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: var(--night);
  color: var(--night-text);
  overflow: hidden;
  isolation: isolate;
  padding: clamp(5rem, 11vw, 9rem) 0 clamp(5rem, 10vw, 8rem);
}
.hero.compact { padding: clamp(4rem, 8vw, 6rem) 0 clamp(3rem, 6vw, 5rem); }
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse at 70% 30%, black 10%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at 70% 30%, black 10%, transparent 70%);
  z-index: -2;
}
.hero::after {
  content: "";
  position: absolute;
  top: -200px; right: -200px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(93,212,108,0.18) 0%, transparent 60%);
  z-index: -1;
  pointer-events: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.hero-inner.center { grid-template-columns: 1fr; text-align: center; }
.hero-inner.center .hero-copy { margin: 0 auto; }
.hero-copy { max-width: 680px; }
.hero-copy.full { max-width: 900px; }
.hero .eyebrow { color: var(--green-glow); margin-bottom: 2rem; }
.hero-title {
  color: var(--white);
  margin: 0 0 1.5rem;
}
.hero-title em {
  color: var(--green-glow);
  font-variation-settings: "SOFT" 80;
  font-style: italic;
}
.hero-lead {
  font-size: clamp(1.1rem, 1.3vw, 1.3rem);
  line-height: 1.5;
  color: var(--night-text);
  max-width: 58ch;
  margin: 0 0 2rem;
}
.hero-inner.center .hero-lead { margin-left: auto; margin-right: auto; }
.hero-cta {
  display: flex; flex-wrap: wrap; gap: 0.85rem;
  margin-bottom: 3rem;
}
.hero-inner.center .hero-cta { justify-content: center; margin-bottom: 0; }
.hero-meta {
  display: flex; flex-wrap: wrap; gap: 1.5rem 3rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--night-line);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  color: var(--night-muted);
  text-transform: uppercase;
}
.hero-visual {
  position: relative;
}
.hero-visual img {
  width: 100%;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.4));
}

/* ---------- Marquee ---------- */
.marquee-section {
  background: var(--night);
  color: var(--night-muted);
  padding: 1.25rem 0;
  border-top: 1px solid var(--night-line);
  border-bottom: 1px solid var(--night-line);
  overflow: hidden;
}
.marquee {
  display: flex;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
}
.marquee-track {
  display: inline-flex;
  align-items: center;
  gap: 1.5rem;
  flex-shrink: 0;
  animation: marquee-scroll 55s linear infinite;
  white-space: nowrap;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-item {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.7);
}
.marquee-dot {
  color: var(--green-glow);
  font-size: 0.5rem;
  opacity: 0.6;
}
@keyframes marquee-scroll {
  to { transform: translateX(-50%); }
}

/* ---------- Triage (3-card audience router) ---------- */
.triage-section { background: var(--paper); }
.triage-section .eyebrow { margin-bottom: 1rem; }
.triage-section .h2 { margin-bottom: 0.75rem; max-width: 24ch; }
.triage-section .lead { margin-bottom: 3rem; max-width: 56ch; }
.triage-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.triage-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 2.5rem 2rem 1.75rem;
  color: var(--ink);
  transition: all 260ms var(--ease);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.triage-card::before {
  content: "";
  position: absolute; inset: 0 0 auto 0; height: 3px;
  background: linear-gradient(90deg, var(--green) 0%, var(--green-dark) 100%);
  transform: scaleX(0); transform-origin: left;
  transition: transform 360ms var(--ease);
}
.triage-card::after {
  content: "";
  position: absolute;
  top: -40px; right: -40px;
  width: 180px; height: 180px;
  background: radial-gradient(circle, rgba(61, 181, 74, 0.07) 0%, transparent 65%);
  z-index: -1;
  opacity: 0;
  transition: opacity 360ms var(--ease);
}
.triage-card:hover {
  border-color: var(--ink);
  transform: translateY(-4px);
  box-shadow: var(--sh-lg);
}
.triage-card:hover::before { transform: scaleX(1); }
.triage-card:hover::after { opacity: 1; }
.triage-index {
  position: absolute;
  top: 1.5rem;
  right: 1.75rem;
  font-family: var(--font-display);
  font-weight: 400;
  font-variation-settings: "opsz" 144, "SOFT" 50;
  font-size: 2.25rem;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--line-strong);
  transition: color 280ms var(--ease);
}
.triage-card:hover .triage-index { color: var(--green-dark); }
.triage-role {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green-dark);
  margin: 0;
  padding-right: 3rem;
}
.triage-card .h4 {
  margin: 0;
  font-size: clamp(1.2rem, 1.6vw, 1.45rem);
  line-height: 1.2;
  padding-right: 1rem;
}
.triage-card p {
  color: var(--ink-muted);
  font-size: 0.95rem;
  line-height: 1.55;
  margin: 0;
  flex: 1;
}
.triage-foot {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  margin-top: 0.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}
.triage-proof {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
}
.triage-cta {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--green-dark);
  display: inline-flex; gap: 0.5rem; align-items: center;
  transition: gap 220ms var(--ease);
}
.triage-card:hover .triage-cta { gap: 0.85rem; }

/* ---------- Fact ribbon ---------- */
.fact-ribbon-section { background: var(--cream); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: clamp(3.5rem, 7vw, 5.5rem) 0; }
.fact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1.5rem, 3vw, 3rem);
}
.fact {
  display: flex; flex-direction: column; gap: 0.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line-strong);
  min-width: 0;
}
.fact-num {
  font-family: var(--font-display);
  font-weight: 400;
  font-variation-settings: "opsz" 72, "SOFT" 40;
  font-size: clamp(2rem, 3.2vw, 2.75rem);
  line-height: 1;
  letter-spacing: -0.025em;
  color: var(--ink);
  white-space: nowrap;
}
.fact-label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-muted);
  max-width: 22ch;
  line-height: 1.45;
}

/* ---------- Manifesto ---------- */
.manifesto-section { background: var(--paper); padding: clamp(5rem, 9vw, 7rem) 0; }
.manifesto {
  max-width: 980px;
  margin: 0 auto;
}
.manifesto-lead {
  font-family: var(--font-display);
  font-weight: 350;
  font-variation-settings: "SOFT" 50, "opsz" 96;
  font-size: clamp(1.5rem, 2.9vw, 2.35rem);
  line-height: 1.25;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin: 1.5rem 0 1.5rem;
}
.drop-cap {
  float: left;
  font-family: var(--font-display);
  font-weight: 450;
  font-variation-settings: "opsz" 144, "SOFT" 30;
  font-size: clamp(3.5rem, 8vw, 6rem);
  line-height: 0.85;
  padding-right: 0.5rem;
  padding-top: 0.35rem;
  color: var(--green-dark);
}
.manifesto-meta {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin: 0;
}

/* ---------- Pillars (bento grid) ---------- */
.pillars-section .eyebrow { margin-bottom: 1rem; }
.pillars-section .h2 { max-width: 22ch; margin-bottom: 0.75rem; }
.pillars-section .lead { margin-bottom: 3rem; }

.bento {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 1.25rem;
  grid-template-areas:
    "feat  p2  p3"
    "feat  p4  p4";
}
.bento-item {
  position: relative;
  padding: 1.75rem 1.75rem 1.5rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  color: var(--ink);
  transition: all 240ms var(--ease);
  overflow: hidden;
  isolation: isolate;
}
.bento-item:hover {
  border-color: var(--line-strong);
  transform: translateY(-3px);
  box-shadow: var(--sh-lg);
}
.bento-item .eyebrow { margin-bottom: 0.5rem; }
.bento-item .pillar-icon {
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  background: var(--green-bg);
  border-radius: 10px;
  flex-shrink: 0;
}
.bento-item .pillar-icon img { width: 28px; height: 28px; }
.bento-item h3 { margin: 0; }
.bento-item p {
  color: var(--ink-muted);
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.55;
  flex: 1;
}
.bento-item .arrow-link { margin-top: 0.5rem; align-self: flex-start; }

.bento-item.bento-featured {
  grid-area: feat;
  background: var(--night);
  color: var(--night-text);
  border-color: var(--night);
  padding: clamp(2rem, 3.5vw, 3rem);
  min-height: 420px;
  position: relative;
}
.bento-item.bento-featured::before {
  content: "";
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(93,212,108,0.22) 0%, transparent 60%);
  z-index: -1;
  pointer-events: none;
}
.bento-item.bento-featured h3 { color: var(--white); font-size: clamp(1.75rem, 2.8vw, 2.25rem); font-family: var(--font-display); font-weight: 450; font-variation-settings: "opsz" 48, "SOFT" 40; letter-spacing: -0.02em; }
.bento-item.bento-featured p { color: var(--night-muted); font-size: 1.05rem; }
.bento-item.bento-featured .eyebrow { color: var(--green-glow); }
.bento-item.bento-featured .pillar-icon { background: rgba(93,212,108,0.12); }
.bento-item.bento-featured:hover {
  border-color: var(--night);
  transform: translateY(-4px);
  box-shadow: 0 30px 70px rgba(0,0,0,0.35);
}
.bento-item.bento-featured .check-list li { color: var(--night-text); }
.bento-item.bento-featured .check-list li::before { color: var(--green-glow); }

.bento-item.area-p2 { grid-area: p2; }
.bento-item.area-p3 { grid-area: p3; }
.bento-item.area-p4 { grid-area: p4; }

/* Large serif corner number for small bento cells */
.bento-item .bento-num {
  position: absolute;
  top: 1.1rem;
  right: 1.4rem;
  font-family: var(--font-display);
  font-weight: 350;
  font-variation-settings: "opsz" 144, "SOFT" 30;
  font-size: 3.25rem;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--line-strong);
  opacity: 0.55;
  transition: color 280ms var(--ease), opacity 280ms var(--ease);
  pointer-events: none;
  z-index: 0;
}
.bento-item:hover .bento-num {
  color: var(--green-dark);
  opacity: 0.85;
}

/* Dot-prefixed spec list for smaller bento cells */
.bento-item .spec-list {
  list-style: none;
  margin: 0.25rem 0 0.5rem;
  padding: 0.9rem 0 0;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}
.bento-item .spec-list li {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  position: relative;
  padding-left: 1rem;
  line-height: 1.5;
}
.bento-item .spec-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.45em;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--green-dark);
}

/* Featured head: icon + corner num badge */
.bento-item.bento-featured .bento-featured-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.25rem;
}
.bento-item.bento-featured .bento-num-badge {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--green-glow);
  padding: 0.4rem 0.75rem;
  border: 1px solid rgba(93, 212, 108, 0.35);
  border-radius: 999px;
  background: rgba(93, 212, 108, 0.06);
}

/* Ribbon of 3 proof pills on featured */
.bento-item.bento-featured .bento-ribbon {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin-top: auto;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.bento-item.bento-featured .bento-ribbon > * {
  flex: 1 1 auto;
  min-width: 120px;
  padding: 0.2rem 1.1rem;
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--night-text);
  border-left: 1px solid rgba(255, 255, 255, 0.1);
  line-height: 1.5;
}
.bento-item.bento-featured .bento-ribbon > *:first-child {
  padding-left: 0;
  border-left: 0;
}

/* ---------- Legacy fallback pillar layout (used on some pages) ---------- */
.pillar-layout {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 1.25rem;
}
.pillar-featured {
  background: var(--night); color: var(--night-text);
  border-radius: 14px;
  padding: clamp(2rem, 3.5vw, 3rem);
  display: flex; flex-direction: column; gap: 1rem;
  position: relative; overflow: hidden; isolation: isolate;
  min-height: 460px;
}
.pillar-featured::before {
  content: ""; position: absolute;
  top: -120px; right: -120px; width: 440px; height: 440px;
  background: radial-gradient(circle, rgba(93,212,108,0.22) 0%, transparent 60%);
  z-index: -1;
}
.pillar-featured h3 { color: var(--white); font-family: var(--font-display); font-size: clamp(1.75rem, 3vw, 2.25rem); font-weight: 450; letter-spacing: -0.02em; }
.pillar-featured p { color: var(--night-muted); }
.pillar-featured .eyebrow { color: var(--green-glow); }
.pillar-featured-body { display: flex; flex-direction: column; gap: 1rem; }
.pillar-featured-visual { display: none; }
.pillar-stack { display: flex; flex-direction: column; gap: 1.25rem; }
.pillar-card {
  background: var(--white); border: 1px solid var(--line);
  border-radius: 14px; padding: 1.5rem;
  display: flex; flex-direction: column; gap: 0.75rem;
  transition: all 240ms var(--ease);
}
.pillar-card:hover { border-color: var(--line-strong); transform: translateY(-2px); box-shadow: var(--sh-md); }
.pillar-card .pillar-icon { width: 44px; height: 44px; background: var(--green-bg); border-radius: 9px; display: flex; align-items: center; justify-content: center; }
.pillar-card .pillar-icon img { width: 24px; height: 24px; }

/* ---------- Check / cross lists ---------- */
.check-list, .cross-list {
  margin: 0.5rem 0;
  display: flex; flex-direction: column; gap: 0.6rem;
}
.check-list li, .cross-list li {
  position: relative;
  padding-left: 1.6rem;
  line-height: 1.5;
  color: inherit;
}
.check-list li::before {
  content: "";
  position: absolute; left: 0; top: 0.55em;
  width: 12px; height: 6px;
  border-left: 1.5px solid var(--green-dark);
  border-bottom: 1.5px solid var(--green-dark);
  transform: rotate(-45deg);
}
.cross-list li::before {
  content: "×";
  position: absolute; left: 0; top: 0;
  font-size: 1.1rem;
  color: var(--ink-soft);
  font-weight: 500;
}
.take-list {
  margin: 0.5rem 0;
  display: flex; flex-direction: column; gap: 0.6rem;
}
.take-list li {
  position: relative;
  padding-left: 1.6rem;
  line-height: 1.5;
  color: inherit;
}
.take-list li::before {
  content: "+";
  position: absolute; left: 0.15rem; top: -0.05rem;
  font-size: 1.05rem;
  color: var(--green-dark);
  font-weight: 600;
  line-height: 1.5;
}

/* ---------- Compare (legacy — wordt nu door .audience-* vervangen) ---------- */
.compare-section { background: var(--paper); }
.compare-section .eyebrow { margin-bottom: 1rem; }
.compare-section .h2 { margin-bottom: 3rem; max-width: 28ch; }
.compare-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.compare-side { border-radius: 14px; padding: clamp(2rem, 3vw, 2.5rem); display: flex; flex-direction: column; gap: 1.25rem; }
.compare-side.negative, .compare-side.take { background: var(--white); border: 1px solid var(--line); color: var(--ink); }
.compare-side.positive { background: var(--night); color: var(--night-text); }
.compare-side.positive .h3 { color: var(--white); }
.compare-label { font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; margin: 0; }
.compare-side.negative .compare-label, .compare-side.take .compare-label { color: var(--green-dark); }
.compare-side.positive .compare-label { color: var(--green-glow); }
.compare-side.positive .check-list li::before { border-color: var(--green-glow); }
.compare-side.positive .check-list li { color: var(--night-text); }

/* ---------- Audience panels (twee doelgroepen, even gewicht) ---------- */
.audience-section {
  background: var(--paper);
}
.audience-section .eyebrow { margin-bottom: 1rem; }
.audience-section .h2 {
  margin: 0 0 3rem 0;
  max-width: 30ch;
}
.audience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  align-items: stretch;
}
@media (max-width: 820px) {
  .audience-grid { grid-template-columns: 1fr; gap: 1rem; }
}
.audience-card {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: clamp(2rem, 3.2vw, 2.75rem);
  color: var(--ink);
  text-decoration: none;
  position: relative;
  transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
  isolation: isolate;
}
.audience-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--green);
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
}
.audience-card:hover {
  border-color: var(--line-strong, #cfd3ca);
  transform: translateY(-2px);
  box-shadow: var(--sh-md, 0 10px 30px rgba(15,20,17,0.06));
}
.audience-label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin: 0;
  color: var(--green-dark);
}
.audience-title {
  font-family: var(--font-display, serif);
  font-size: clamp(1.25rem, 1.6vw, 1.5rem);
  line-height: 1.25;
  letter-spacing: -0.01em;
  margin: 0;
  color: var(--ink);
  font-weight: 500;
}
.audience-list {
  margin: 0;
  flex: 1 1 auto;
}
.audience-list li {
  font-size: 0.98rem;
  line-height: 1.55;
  color: var(--ink);
}
.audience-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  width: 100%;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-dark);
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  font-weight: 500;
}
.audience-cta > span[aria-hidden] {
  transition: transform .2s ease;
}
.audience-card:hover .audience-cta > span[aria-hidden] {
  transform: translateX(4px);
}
.audience-card:hover .audience-cta { color: var(--green); }

/* ---------- Big stat ---------- */
.big-stat {
  background: var(--night);
  color: var(--night-text);
  padding: clamp(5rem, 10vw, 8rem) 0;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.big-stat::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse at 50% 50%, black 20%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 50%, black 20%, transparent 75%);
  z-index: -1;
}
.big-stat .eyebrow { color: var(--green-glow); margin-bottom: 1.5rem; }
.big-stat-number {
  font-family: var(--font-display);
  font-weight: 350;
  font-variation-settings: "SOFT" 40, "opsz" 144;
  font-size: clamp(5rem, 17vw, 13rem);
  line-height: 0.9;
  letter-spacing: -0.045em;
  color: var(--white);
  margin: 0 0 2rem;
}
.big-stat-caption {
  font-family: var(--font-display);
  font-weight: 400;
  font-variation-settings: "opsz" 36;
  font-size: clamp(1.15rem, 1.7vw, 1.5rem);
  line-height: 1.45;
  color: var(--night-text);
  max-width: 60ch;
  letter-spacing: -0.01em;
}

/* ---------- Timeline ---------- */
.timeline-section { background: var(--cream); }
.timeline-section .eyebrow { margin-bottom: 1rem; }
.timeline-section .h2 { margin-bottom: 3rem; max-width: 24ch; }
.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.timeline-line {
  position: absolute;
  top: 24px; left: 0; right: 0; height: 1px;
  background: var(--line-strong);
}
.timeline-step {
  position: relative;
  padding-top: 4rem;
  padding-right: 1rem;
}
.timeline-step::before {
  content: "";
  position: absolute;
  top: 18px; left: 0;
  width: 13px; height: 13px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--green-dark);
}
.timeline-step .timeline-num {
  position: absolute;
  top: -5px; left: 0;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  color: var(--green-dark);
}
.timeline-step h3 { margin-bottom: 0.5rem; }
.timeline-step p { font-size: 0.95rem; color: var(--ink-muted); }

/* ---------- Pullquote ---------- */
.pullquote-section { background: var(--paper); padding: clamp(4rem, 9vw, 7rem) 0; }
.pullquote {
  max-width: 960px;
  margin: 0 auto;
  padding: 0;
  position: relative;
}
.pullquote-mark {
  font-family: var(--font-display);
  font-size: clamp(4rem, 10vw, 7rem);
  line-height: 0.5;
  color: var(--green);
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 400;
}
.pullquote p {
  font-family: var(--font-display);
  font-weight: 350;
  font-variation-settings: "SOFT" 60, "opsz" 72;
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  line-height: 1.25;
  color: var(--ink);
  letter-spacing: -0.015em;
  margin: 0 0 1.5rem;
}
.pullquote cite {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-muted);
  font-style: normal;
}

/* ---------- FAQ ---------- */
.faq-section { background: var(--paper); }
.faq-container {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: clamp(2rem, 5vw, 5rem);
}
.faq-head .eyebrow { margin-bottom: 1rem; }
.faq-head .h2 { max-width: 14ch; }
.faq-list { display: flex; flex-direction: column; }
.faq-item {
  border-top: 1px solid var(--line);
  padding: 0;
}
.faq-item:last-child { border-bottom: 1px solid var(--line); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.25rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  font-weight: 500;
  font-size: 1.05rem;
  color: var(--ink);
  transition: color 200ms var(--ease);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--green-dark); }
.faq-q { flex: 1; }
.faq-icon {
  position: relative;
  width: 18px; height: 18px;
  flex-shrink: 0;
}
.faq-icon::before, .faq-icon::after {
  content: "";
  position: absolute;
  background: currentColor;
  transition: transform 240ms var(--ease);
}
.faq-icon::before {
  top: 50%; left: 0; right: 0; height: 1.5px; transform: translateY(-50%);
}
.faq-icon::after {
  left: 50%; top: 0; bottom: 0; width: 1.5px; transform: translateX(-50%);
}
.faq-item[open] .faq-icon::after { transform: translateX(-50%) rotate(90deg); }
.faq-a {
  padding: 0 0 1.5rem;
  max-width: 56ch;
}
.faq-a p {
  color: var(--ink-muted);
  font-size: 0.98rem;
  line-height: 1.55;
  margin: 0;
}

/* ---------- Final CTA + ladder ---------- */
.final-cta {
  position: relative; overflow: hidden; isolation: isolate;
}
.final-cta::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse at 30% 50%, black 10%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at 30% 50%, black 10%, transparent 70%);
  z-index: -1;
}
.final-cta .eyebrow { margin-bottom: 1.25rem; }
.final-cta .h2 { color: var(--white); margin-bottom: 1rem; max-width: 22ch; }
.final-cta .lead { margin-bottom: 2.5rem; }
.cta-actions { display: flex; gap: 0.85rem; flex-wrap: wrap; }

.cta-ladder {
  margin: 0 0 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--night-line);
}
.cta-ladder li {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1.75rem;
  align-items: center;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--night-line);
}
.cta-ladder .step-num {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  color: var(--green-glow);
}
.cta-ladder .step-body h3 {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 1.05rem;
  color: var(--white);
  margin: 0 0 0.3rem;
}
.cta-ladder .step-body p {
  font-size: 0.93rem;
  color: var(--night-muted);
  margin: 0;
  max-width: 56ch;
}
.cta-ladder .step-time {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--night-muted);
  white-space: nowrap;
}

/* ---------- Model cards (takeover page) ---------- */
.model-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}
.model-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 2rem 1.75rem;
  display: flex; flex-direction: column; gap: 0.85rem;
  transition: all 240ms var(--ease);
}
.model-card:hover { border-color: var(--line-strong); transform: translateY(-2px); box-shadow: var(--sh-md); }
.model-label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green-dark);
  margin: 0;
}
.model-card h3 { margin: 0; }
.model-card p { color: var(--ink-muted); margin: 0; font-size: 0.95rem; line-height: 1.55; }

/* ---------- Info grid (why / what / ops cards) ---------- */
.info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}
.info-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.info-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 1.75rem;
  display: flex; flex-direction: column; gap: 0.6rem;
  transition: all 240ms var(--ease);
}
.info-card:hover { border-color: var(--line-strong); transform: translateY(-2px); box-shadow: var(--sh-sm); }
.info-card h3 { margin: 0; }
.info-card p { color: var(--ink-muted); margin: 0; font-size: 0.95rem; line-height: 1.55; }

.section.alt .info-card, .section.alt .model-card { background: var(--white); }

/* ---------- Legal / Contact ---------- */
.legal-section { background: var(--paper); padding-top: clamp(4rem, 7vw, 6rem); }
.legal-section .h2 { margin-bottom: 2rem; }

.contact-channels .h4 { margin-bottom: 1.25rem; }
.contact-dl {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.75rem 1.5rem;
  margin: 0;
  font-size: 0.95rem;
}
.contact-dl dt {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-muted);
  align-self: center;
}
.contact-dl dd { margin: 0; color: var(--ink); }
.contact-dl dd a:hover { color: var(--green-dark); }

.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.contact-form .h4 { margin: 0 0 0.5rem; }
.field { display: flex; flex-direction: column; gap: 0.4rem; font-size: 0.9rem; }
.field > span {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-muted);
}
.field input, .field select, .field textarea {
  font: inherit;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  padding: 0.75rem 0.85rem;
  width: 100%;
  transition: border-color 180ms var(--ease), box-shadow 180ms var(--ease);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--green-dark);
  box-shadow: 0 0 0 3px rgba(31,97,40,0.15);
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.contact-form button { margin-top: 0.5rem; align-self: flex-start; }
.form-feedback {
  margin-top: 0.75rem;
  padding: 1rem 1.25rem;
  background: var(--green-bg);
  border: 1px solid var(--green);
  color: var(--green-dark);
  border-radius: 10px;
  font-size: 0.95rem;
}
.form-feedback[hidden] { display: none; }
.form-feedback.error {
  background: #fdecec;
  border-color: #d88;
  color: #8a1f1f;
}
.form-feedback.visible { display: block; }
.hp-field {
  position: absolute !important;
  left: -9999px !important;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.field input[aria-invalid="true"],
.field textarea[aria-invalid="true"],
.field select[aria-invalid="true"] {
  border-color: #b42626;
  box-shadow: 0 0 0 3px rgba(180,38,38,0.10);
}
.field-error {
  color: #b42626;
  font-size: 0.78rem;
  font-family: var(--font-mono);
  letter-spacing: 0.04em;
  margin-top: 0.35rem;
}
.contact-form.sent .form-success-msg {
  display: block;
}
.form-privacy {
  font-size: 0.85rem;
  color: var(--ink-muted);
  margin: 0;
}
.form-privacy a { text-decoration: underline; }
.contact-form-section { background: var(--cream); }
.contact-form-section.compact { padding-top: 0; }
.contact-form-section.compact .form-head { margin-bottom: 1.5rem; }
.contact-form-section .form-head {
  text-align: center;
  max-width: 56ch;
  margin: 0 auto 2.5rem;
}
.contact-form-section .form-head .h2 { margin-bottom: 0.75rem; }
.contact-form-section .contact-form {
  background: var(--white);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--sh-sm);
}
.contact-channels-section {
  text-align: center;
}
.contact-channels-section .contact-dl {
  justify-content: center;
  text-align: left;
  max-width: 34rem;
  margin: 0 auto;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--night);
  color: var(--night-text);
  padding: clamp(4rem, 7vw, 6rem) 0 2rem;
  margin-top: auto;
}
.footer-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  margin-bottom: 3rem;
}
.footer-brand img { margin-bottom: 1rem; }
.footer-name { font-weight: 600; font-size: 1.1rem; color: var(--white); margin-bottom: 0.75rem; }
.footer-brand p { color: var(--night-muted); font-size: 0.92rem; line-height: 1.55; max-width: 36ch; }
.site-footer h3 {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green-glow);
  margin-bottom: 1rem;
  font-weight: 500;
}
.site-footer nav ul, .site-footer .contact-list {
  display: flex; flex-direction: column; gap: 0.55rem;
}
.site-footer nav li, .site-footer .contact-list li { list-style: none; }
.site-footer a {
  color: var(--night-muted);
  font-size: 0.92rem;
  transition: color 200ms var(--ease);
}
.site-footer a:hover { color: var(--green-glow); }

.footer-bar {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 2rem var(--pad-x) 0;
  border-top: 1px solid var(--night-line);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  color: var(--night-muted);
}
.footer-lang a { color: var(--night-muted); transition: color 200ms var(--ease); }
.footer-lang a:hover { color: var(--green-glow); }
.footer-lang a[aria-current="true"] { color: var(--green-glow); }

/* ---------- Language picker landing ---------- */
body.lang-picker {
  display: flex; align-items: center; justify-content: center;
  min-height: 100vh;
  background: var(--night);
  color: var(--night-text);
  padding: 2rem;
}
.picker-main {
  text-align: center;
  display: flex; flex-direction: column; gap: 1.25rem; align-items: center;
}
.picker-main img { margin-bottom: 0.5rem; }
.picker-main h1 {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 450;
  color: var(--white);
  letter-spacing: -0.02em;
  margin: 0;
}
.picker-main p {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--night-muted);
  margin: 0;
}
.picker-links {
  margin-top: 1.5rem;
  display: flex; gap: 1.25rem;
}
.picker-links a {
  padding: 0.85rem 1.5rem;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 999px;
  color: var(--white);
  transition: all 200ms var(--ease);
}
.picker-links a:hover { background: var(--white); color: var(--ink); border-color: var(--white); }

/* ---------- Scroll reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 700ms var(--ease), transform 700ms var(--ease);
  will-change: opacity, transform;
}
.reveal.visible { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 1100px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .triage-grid { grid-template-columns: 1fr; gap: 1rem; }
  .fact-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
  .bento {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    grid-template-areas:
      "feat feat"
      "p2 p3"
      "p4 p4";
  }
  .bento-item.bento-featured { min-height: 340px; }
  .model-grid, .info-grid, .info-grid.cols-3 { grid-template-columns: 1fr 1fr; }
  .timeline { grid-template-columns: 1fr 1fr; }
  .timeline-line { display: none; }
  .pillar-layout { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .faq-container { grid-template-columns: 1fr; }
  .faq-head .h2 { max-width: none; }
}

@media (max-width: 720px) {
  .nav-list { display: none; }
  .nav-toggle { display: flex; }
  .nav-list.open {
    display: flex;
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    gap: 0;
    background: var(--paper);
    padding: 1rem var(--pad-x);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--sh-md);
  }
  body.dark-header-start .nav-list.open { background: var(--night); border-bottom-color: var(--night-line); }
  .nav-list.open li { padding: 0.75rem 0; border-bottom: 1px solid var(--line); }
  .nav-list.open li:last-child { border-bottom: 0; }
  .header-right .btn { display: none; }
  .compare-grid { grid-template-columns: 1fr; }
  .bento {
    grid-template-columns: 1fr;
    grid-template-areas:
      "feat"
      "p2"
      "p3"
      "p4";
  }
  .bento-item.bento-featured { min-height: auto; }
  .model-grid, .info-grid, .info-grid.cols-3 { grid-template-columns: 1fr; }
  .timeline { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .field-row { grid-template-columns: 1fr; }
  .two-col-split { grid-template-columns: 1fr; gap: 2rem; }
  .fact-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .cta-ladder li { grid-template-columns: auto 1fr; }
  .cta-ladder .step-time { grid-column: 1 / -1; grid-row: 2; margin-left: 2.5rem; }
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .marquee-track { animation: none; }
  html { scroll-behavior: auto; }
}

/* ---------- 404 ---------- */
.notfound-page .site-header { background: var(--night); color: var(--night-text); }
.notfound-page .site-header .brand-name,
.notfound-page .site-header .brand-tag { color: var(--night-text); }
.notfound-hero {
  background: var(--night);
  color: var(--night-text);
  padding-block: clamp(4rem, 10vw, 8rem);
}
.notfound-hero .hero-title {
  color: var(--night-text);
  max-width: 24ch;
}
.nf-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.nf-col {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1.75rem 1.5rem;
}
.nf-col .h4 { margin-top: 0.5rem; }
.nf-links {
  list-style: none;
  padding: 0;
  margin: 1.25rem 0 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.nf-links a {
  color: var(--ink);
  border-bottom: 1px solid var(--line-strong);
  padding-bottom: 0.2rem;
  font-size: 0.95rem;
}
.nf-links a:hover { color: var(--green-dark); border-color: var(--green-dark); }
.site-footer.minimal { padding-block: 1.5rem; }
.site-footer.minimal .footer-bottom { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }

@media (max-width: 900px) {
  .nf-grid { grid-template-columns: 1fr; }
}
