:root {
  --green-950: #062d1a;
  --green-900: #0b3d25;
  --green-800: #105b37;
  --green-650: #2d7b56;
  --rust: #c84618;
  --rust-dark: #9f3513;
  --gold: #d5aa62;
  --ink: #171a18;
  --muted: #616862;
  --line: #d8ddd9;
  --paper: #f5f6f4;
  --mist: #e7efe9;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(6, 45, 26, 0.14);
  --radius: 8px;
  --content: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, "Helvetica Neue", Arial, Helvetica, sans-serif;
  line-height: 1.55;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
p, h1, h2, h3 { margin-top: 0; }
p:last-child { margin-bottom: 0; }

.skip-link {
  position: fixed;
  top: 8px;
  left: 50%;
  z-index: 100;
  padding: 10px 14px;
  color: var(--white);
  background: var(--green-950);
  transform: translate(-50%, -150%);
}
.skip-link:focus { transform: translate(-50%, 0); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  min-height: 76px;
  padding: 12px max(20px, calc((100vw - var(--content)) / 2));
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid rgba(6, 45, 26, 0.12);
  backdrop-filter: blur(14px);
  transition: min-height 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}
.site-header.is-scrolled { min-height: 68px; background: rgba(255, 255, 255, 0.98); box-shadow: 0 12px 36px rgba(6, 45, 26, 0.08); }
.brand img, .site-footer .footer-logo { width: 138px; height: auto; }
.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(18px, 2.5vw, 34px);
  color: var(--green-950);
  font-size: 0.94rem;
  font-weight: 750;
}
.nav-links a {
  position: relative;
  padding: 12px 0;
}
.nav-links a::after {
  position: absolute;
  right: 0;
  bottom: 5px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--rust);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.18s ease;
}
.nav-links a:hover::after,
.nav-links a[aria-current="page"]::after { transform: scaleX(1); transform-origin: left; }
.language-switch { display: inline-flex; align-items: center; gap: 3px; margin-left: 14px; padding: 3px; border: 1px solid var(--line); border-radius: 6px; background: rgba(255, 255, 255, .76); white-space: nowrap; }
.language-switch a { display: inline-flex; align-items: center; justify-content: center; width: 31px; height: 29px; padding: 0; border-radius: 4px; color: var(--green-950); font-size: 0; line-height: 1; text-decoration: none; }
.language-switch a::after { display: none; }
.language-switch a[aria-current="true"] { background: var(--green-950); color: #fff; }
.language-switch .language-flag { font-size: 1rem; line-height: 1; }
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  color: var(--green-950);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.menu-toggle span { display: block; width: 19px; height: 2px; margin: 5px auto; background: currentColor; }

.hero-page {
  position: relative;
  display: grid;
  min-height: min(72svh, 680px);
  isolation: isolate;
  overflow: hidden;
  color: var(--white);
  background-color: var(--green-950);
}
.hero-page::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  content: "";
  background-image: var(--hero-image);
  background-position: center;
  background-size: cover;
}
.hero-page::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background: linear-gradient(90deg, rgba(5, 29, 17, 0.93) 0%, rgba(5, 29, 17, 0.82) 34%, rgba(5, 29, 17, 0.18) 67%, rgba(5, 29, 17, 0.08) 100%);
}
.hero-home { --hero-image: url("assets/images/current/hero-rator-white-residents.png"); }
.hero-corporations { --hero-image: url("assets/images/current/hero-corporations-rator.png"); }
.hero-private { --hero-image: url("assets/images/current/hero-rator-white-residents.png"); }
.hero-investors { --hero-image: url("assets/images/current/hero-rator-white-residents.png"); }
.hero-contact { --hero-image: url("assets/images/current/hero-contact-rator.png"); min-height: min(62svh, 590px); }
.hero-inner {
  display: flex;
  width: min(var(--content), calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(66px, 9vw, 110px) 0 clamp(72px, 9vw, 118px);
  align-items: center;
}
.hero-copy { width: min(680px, 62%); }
.hero-copy > * { animation: hero-enter 0.72s both cubic-bezier(0.2, 0.75, 0.25, 1); }
.hero-copy > *:nth-child(2) { animation-delay: 0.07s; }
.hero-copy > *:nth-child(3) { animation-delay: 0.14s; }
.hero-copy > *:nth-child(4) { animation-delay: 0.21s; }
.hero-copy > *:nth-child(5) { animation-delay: 0.28s; }
.heat-flow { position: absolute; right: 12%; bottom: 23%; z-index: 0; width: 210px; height: 150px; pointer-events: none; }
.heat-flow span { position: absolute; right: 0; width: 165px; height: 42px; border-top: 1px solid rgba(255, 255, 255, 0.55); border-radius: 50%; opacity: 0; animation: heat-rise 4.8s infinite ease-out; }
.heat-flow span:nth-child(2) { right: 22px; bottom: 34px; width: 135px; animation-delay: 1.5s; }
.heat-flow span:nth-child(3) { right: 5px; bottom: 68px; width: 185px; animation-delay: 3s; }
.eyebrow {
  margin-bottom: 12px;
  color: var(--rust);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}
.hero-page .eyebrow { color: #f7b28f; }
h1 {
  max-width: 850px;
  margin-bottom: 22px;
  font-size: 4rem;
  line-height: 0.99;
  letter-spacing: 0;
  overflow-wrap: normal;
}
h2 {
  margin-bottom: 18px;
  color: var(--green-950);
  font-size: 3.35rem;
  line-height: 1.04;
  letter-spacing: 0;
}
h3 {
  margin-bottom: 10px;
  color: var(--green-950);
  font-size: 1.17rem;
  line-height: 1.25;
  letter-spacing: 0;
}
.hero-lede {
  max-width: 650px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.25rem;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  font-weight: 850;
  text-align: center;
  transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(6, 45, 26, 0.16); }
.btn-primary { color: var(--white); background: var(--rust); }
.btn-primary:hover { background: var(--rust-dark); }
.btn-secondary { color: var(--green-950); background: var(--white); border-color: rgba(255, 255, 255, 0.3); }
.btn-secondary:hover { background: var(--mist); }
.btn-ghost { color: var(--white); background: rgba(255, 255, 255, 0.08); border-color: rgba(255, 255, 255, 0.46); }
.btn-ghost:hover { background: rgba(255, 255, 255, 0.17); }
.hero-facts { display: flex; flex-wrap: wrap; gap: 10px 22px; margin-top: 28px; color: rgba(255, 255, 255, 0.82); font-size: 0.92rem; font-weight: 750; }
.hero-facts span::before { margin-right: 8px; color: #f7b28f; content: "•"; }

.band { padding: clamp(68px, 8vw, 112px) 20px; }
.band-tight { padding-top: 34px; padding-bottom: 34px; }
.band-white { background: var(--white); }
.band-paper { background: var(--paper); }
.band-mist { background: var(--mist); }
.band-dark { color: var(--white); background: var(--green-950); }
.container { width: min(var(--content), 100%); margin: 0 auto; }
.narrow { max-width: 790px; }
.center { margin-inline: auto; text-align: center; }
.section-lede { max-width: 720px; color: var(--muted); font-size: 1.08rem; }
.center .section-lede { margin-inline: auto; }
.band-dark h2, .band-dark h3 { color: var(--white); }
.band-dark .section-lede, .band-dark p { color: rgba(255, 255, 255, 0.76); }
.section-actions { display: flex; gap: 20px; margin-top: 34px; align-items: center; flex-wrap: wrap; }
.text-link { color: var(--green-800); font-weight: 850; text-decoration: underline; text-decoration-color: rgba(16, 91, 55, 0.28); text-underline-offset: 5px; }
.text-link:hover { color: var(--rust); text-decoration-color: currentColor; }
.text-link-light { color: rgba(255, 255, 255, 0.84); text-decoration-color: rgba(255, 255, 255, 0.3); }

.signal-strip { color: var(--white); background: var(--green-950); }
.signal-strip { position: relative; overflow: hidden; }
.signal-strip::after { position: absolute; inset: auto -10% 0; height: 1px; content: ""; background: linear-gradient(90deg, transparent, rgba(247, 178, 143, 0.85), transparent); animation: signal-sweep 5.5s infinite linear; }
.signal-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; }
.signal-grid div { min-height: 88px; padding: 18px 24px; border-right: 1px solid rgba(255, 255, 255, 0.14); }
.signal-grid div:last-child { border-right: 0; }
.signal-grid strong { display: block; margin-bottom: 2px; font-size: 1.14rem; }
.signal-grid span { color: rgba(255, 255, 255, 0.7); font-size: 0.88rem; }

.split { display: grid; grid-template-columns: minmax(0, 1fr) minmax(320px, 0.86fr); gap: clamp(38px, 7vw, 92px); align-items: center; }
.split-reverse .split-media { order: -1; }
.split-copy > p:not(.eyebrow) { color: var(--muted); }
.split-media img { width: 100%; border-radius: var(--radius); box-shadow: var(--shadow); }
.story-problem { border-left: 4px solid var(--rust); padding-left: 24px; }
.story-problem strong { color: var(--green-950); }

.value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; margin-top: 38px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.value-item { min-height: 230px; padding: 32px; border-right: 1px solid var(--line); }
.value-item:last-child { border-right: 0; }
.value-number { display: inline-block; margin-bottom: 34px; color: var(--rust); font-weight: 900; }
.value-item p { color: var(--muted); }
.value-item, .process-step, .audience-card, .contact-option { transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease; }
.value-item:hover, .process-step:hover, .audience-card:hover { z-index: 1; transform: translateY(-5px); box-shadow: 0 18px 44px rgba(6, 45, 26, 0.1); }

.process-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 38px; counter-reset: steps; }
.process-step { position: relative; min-height: 250px; padding: 30px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); counter-increment: steps; }
.process-step::before { display: block; margin-bottom: 40px; color: var(--rust); content: "0" counter(steps); font-weight: 900; }
.process-step p { color: var(--muted); }

.audience-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 36px; }
.audience-card { display: flex; min-height: 280px; padding: 30px; flex-direction: column; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); }
.audience-card p { color: var(--muted); }
.audience-card a { margin-top: auto; color: var(--rust); font-weight: 850; }
.audience-card:hover { border-color: rgba(200, 70, 24, 0.34); }

.tech-list { display: grid; gap: 0; margin-top: 24px; border-top: 1px solid var(--line); }
.tech-row { display: grid; grid-template-columns: 160px 1fr; gap: 22px; padding: 18px 0; border-bottom: 1px solid var(--line); }
.tech-row span { color: var(--rust); font-weight: 850; }
.tech-row strong { color: var(--green-950); }

.trust-layout { display: grid; grid-template-columns: 0.72fr 1.28fr; gap: 34px; align-items: stretch; }
.rvo-proof { display: grid; grid-template-columns: 62px 1fr; gap: 18px; align-items: center; padding: 24px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); }
.rvo-proof img { width: 56px; height: 126px; object-fit: contain; }
.rvo-proof strong { display: block; color: var(--green-950); }
.rvo-proof p { margin: 6px 0 0; color: var(--muted); font-size: 0.92rem; }
.partner-proof { min-height: 226px; overflow: hidden; background-color: var(--white); border: 1px solid var(--line); border-radius: var(--radius); }
.partner-proof-label { padding: 18px 22px 0; color: var(--green-950); font-weight: 850; text-align: center; }
.partner-logos { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); align-items: center; justify-items: center; gap: 24px 32px; min-height: 181px; padding: 24px 32px 28px; }
.partner-logos img { display: block; width: min(152px, 100%); max-height: 48px; object-fit: contain; }
.partner-wordmark { display: inline-flex; align-items: center; justify-content: center; width: min(152px, 100%); min-height: 48px; color: var(--green-950); text-align: center; line-height: 1.05; }
.partner-wordmark-rabo { color: #ea5b0c; font-family: Arial, sans-serif; font-size: 1.04rem; font-weight: 700; }
.partner-wordmark-gonh { color: #155a90; font-family: Arial, sans-serif; font-size: 1.12rem; font-weight: 800; letter-spacing: .02em; }
.visually-hidden { position: absolute; width: 1px; height: 1px; padding: 0; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }

.resource-layout { display: grid; grid-template-columns: 320px minmax(0, 1fr); gap: clamp(34px, 6vw, 72px); align-items: center; }
.brochure-preview { width: min(100%, 320px); aspect-ratio: 1240 / 1754; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow); }
.resource-copy p { color: rgba(255, 255, 255, 0.76); }

.roadmap-band { position: relative; overflow: hidden; }
.roadmap-layout { display: grid; grid-template-columns: minmax(0, 0.85fr) minmax(420px, 1.15fr); gap: clamp(40px, 7vw, 90px); align-items: start; }
.roadmap-layout > div:first-child > p:last-child { color: var(--muted); }
.roadmap-lines { display: grid; border-top: 1px solid var(--line); }
.roadmap-lines > div { display: grid; grid-template-columns: 116px 170px 1fr; gap: 20px; padding: 24px 0; align-items: start; border-bottom: 1px solid var(--line); }
.roadmap-lines span { color: var(--rust); font-size: 0.78rem; font-weight: 900; text-transform: uppercase; }
.roadmap-lines strong { color: var(--green-950); }
.roadmap-lines p { margin: 0; color: var(--muted); font-size: 0.94rem; }

.product-band { position: relative; overflow: hidden; color: var(--white); background: var(--green-950); }
.product-band::after { position: absolute; right: -8%; bottom: 17%; width: 46%; height: 1px; content: ""; background: rgba(247, 178, 143, 0.65); box-shadow: 0 -34px rgba(247, 178, 143, 0.2), 0 34px rgba(247, 178, 143, 0.2); transform: rotate(-6deg); animation: product-lines 7s infinite ease-in-out; }
.product-stage { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1.18fr); gap: clamp(44px, 8vw, 106px); align-items: center; }
.product-portrait { margin: 0; }
.product-portrait-crop { aspect-ratio: 4 / 3; overflow: hidden; border: 1px solid rgba(255, 255, 255, 0.16); border-radius: var(--radius); box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3); }
.product-portrait img { width: 100%; height: 100%; object-fit: cover; object-position: center 35%; transition: transform 0.8s cubic-bezier(0.2, 0.75, 0.25, 1); }
.product-portrait:hover img { transform: scale(1.035); }
.product-portrait figcaption { margin-top: 12px; color: rgba(255, 255, 255, 0.62); font-size: 0.82rem; }
.product-stage-copy h2 { color: var(--white); }
.product-stage-copy > p:not(.eyebrow) { color: rgba(255, 255, 255, 0.75); }
.roadmap-lines-dark { margin-top: 28px; border-color: rgba(255, 255, 255, 0.18); }
.roadmap-lines-dark > div { grid-template-columns: 100px 145px 1fr; border-color: rgba(255, 255, 255, 0.18); }
.roadmap-lines-dark strong { color: var(--white); }
.roadmap-lines-dark p { color: rgba(255, 255, 255, 0.68); }

.form-panel { padding: 28px; color: var(--ink); background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-grid label { display: grid; gap: 7px; color: var(--green-950); font-size: 0.9rem; font-weight: 800; }
.form-grid .full { grid-column: 1 / -1; }
.form-grid input, .form-grid select, .form-grid textarea {
  width: 100%;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 6px;
}
.form-grid input, .form-grid select { min-height: 48px; padding: 0 12px; }
.form-grid textarea { min-height: 126px; padding: 12px; resize: vertical; }
.form-note { grid-column: 1 / -1; min-height: 24px; margin: 0; color: var(--green-800); font-size: 0.9rem; font-weight: 750; }
.form-note a { color: var(--rust); text-decoration: underline; }
.form-meta { margin: 14px 0 0; color: var(--muted); font-size: 0.84rem; }
.download-form { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 12px; margin-top: 24px; }
.download-form input { min-height: 50px; padding: 0 13px; border: 1px solid var(--line); border-radius: 6px; }
.download-form .form-note { grid-column: 1 / -1; }

.faq-list { display: grid; max-width: 920px; gap: 0; margin: 36px auto 0; border-top: 1px solid var(--line); }
.faq-list details { padding: 22px 0; border-bottom: 1px solid var(--line); }
.faq-list summary { color: var(--green-950); cursor: pointer; font-size: 1.06rem; font-weight: 850; }
.faq-list p { max-width: 780px; margin: 14px 0 0; color: var(--muted); }

.metric-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; margin-top: 34px; background: rgba(255, 255, 255, 0.14); }
.metric-grid div { min-height: 142px; padding: 25px; background: var(--green-900); }
.metric-grid strong { display: block; margin-bottom: 7px; color: var(--white); font-size: 1.38rem; }
.metric-grid span { color: rgba(255, 255, 255, 0.7); font-size: 0.9rem; }

.contact-options { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-bottom: 38px; }
.contact-option { padding: 26px 0; border-top: 3px solid var(--rust); }
.contact-option p { color: var(--muted); }
.contact-option a { color: var(--green-800); font-weight: 850; }

.site-footer { padding: 42px 20px; color: rgba(255, 255, 255, 0.76); background: #041f12; }
.footer-inner { display: grid; width: min(var(--content), 100%); margin: 0 auto; grid-template-columns: 1fr auto auto; gap: 44px; align-items: start; }
.site-footer .footer-logo { filter: brightness(0) invert(1); }
.site-footer p { margin: 12px 0 0; }
.footer-links { display: grid; gap: 8px; }
.footer-links a:hover { color: var(--white); }
.site-footer address { font-style: normal; text-align: right; }
.site-footer address a { color: var(--white); font-weight: 800; }
.footer-bottom { width: min(var(--content), 100%); margin: 28px auto 0; padding-top: 18px; border-top: 1px solid rgba(255, 255, 255, 0.14); font-size: 0.82rem; }

.resource-page { min-height: 100vh; }
.resource-page .site-header { position: static; }
.resource-page-main { padding: clamp(48px, 8vw, 96px) 20px; }
.resource-page-layout { display: grid; width: min(980px, 100%); margin: 0 auto; grid-template-columns: 330px 1fr; gap: 56px; align-items: center; }
.datasheet-preview { display: flex; aspect-ratio: 0.72; padding: 34px; justify-content: flex-end; flex-direction: column; color: var(--white); background: var(--green-950); border-radius: var(--radius); box-shadow: var(--shadow); }
.datasheet-preview span { color: #f7b28f; font-size: 0.8rem; font-weight: 900; text-transform: uppercase; }
.datasheet-preview strong { margin: 12px 0 auto; font-size: 2rem; line-height: 1.08; }
.datasheet-preview small { padding-top: 18px; border-top: 1px solid rgba(255, 255, 255, 0.24); }
.resource-switch { color: var(--muted); font-size: 0.9rem; }
.resource-switch a { color: var(--rust); font-weight: 850; }

.motion-ready .reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.72s ease, transform 0.72s cubic-bezier(0.2, 0.75, 0.25, 1); transition-delay: var(--reveal-delay, 0ms); }
.motion-ready .reveal.is-visible { opacity: 1; transform: translateY(0); }
.mobile-cta { display: none; }

@keyframes hero-enter { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: translateY(0); } }
@keyframes heat-rise { 0% { opacity: 0; transform: translate3d(18px, 40px, 0) scaleX(0.78); } 24% { opacity: 0.65; } 100% { opacity: 0; transform: translate3d(-28px, -68px, 0) scaleX(1.08); } }
@keyframes signal-sweep { from { transform: translateX(-75%); } to { transform: translateX(75%); } }
@keyframes product-lines { 0%, 100% { transform: translateY(0) rotate(-6deg); opacity: 0.58; } 50% { transform: translateY(-18px) rotate(-6deg); opacity: 0.9; } }

@media (max-width: 980px) {
  .site-header { grid-template-columns: auto 1fr auto; padding-inline: 20px; }
  .menu-toggle { display: block; justify-self: end; }
  .language-switch { justify-self: end; margin-left: 0; gap: 0; }
  .language-switch a { width: 29px; height: 28px; }
  .nav-links {
    position: fixed;
    inset: 76px 0 auto;
    display: none;
    padding: 22px;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
  }
  .site-header.is-open .nav-links { display: flex; }
  .nav-links a { padding: 13px 0; }
  .hero-copy { width: min(670px, 78%); }
  h1 { font-size: 3.3rem; }
  h2 { font-size: 2.65rem; }
  .split, .resource-layout, .resource-page-layout, .roadmap-layout, .product-stage { grid-template-columns: 1fr; }
  .split-media { max-width: 680px; }
  .split-reverse .split-media { order: 0; }
  .signal-grid, .metric-grid { grid-template-columns: repeat(2, 1fr); }
  .value-grid, .process-grid, .audience-grid { grid-template-columns: 1fr; }
  .value-item { min-height: auto; border-right: 0; border-bottom: 1px solid var(--line); }
  .value-item:last-child { border-bottom: 0; }
  .trust-layout { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-inner > div:first-child { grid-column: 1 / -1; }
  .resource-page-layout .brochure-preview { margin-inline: auto; }
  .datasheet-preview { width: min(100%, 330px); margin-inline: auto; }
  .product-portrait { width: min(100%, 680px); }
}

@media (max-width: 680px) {
  .site-header { min-height: 68px; }
  .nav-links { top: 68px; }
  .hero-page { min-height: 620px; }
  .hero-page::before { background-position: 61% center; }
  .hero-page::after { background: linear-gradient(180deg, rgba(5, 29, 17, 0.22) 0%, rgba(5, 29, 17, 0.35) 31%, rgba(5, 29, 17, 0.94) 72%, rgba(5, 29, 17, 0.98) 100%); }
  .hero-inner { width: calc(100% - 36px); padding: 235px 0 42px; align-items: flex-end; }
  .hero-copy { width: 100%; }
  h1 { font-size: 2.125rem; }
  h2 { font-size: 2rem; }
  .hero-lede { margin-bottom: 22px; font-size: 1.05rem; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .hero-facts { display: none; }
  .heat-flow { display: none; }
  .band { padding: 58px 18px; }
  .band-tight { padding-top: 26px; padding-bottom: 26px; }
  .signal-grid, .metric-grid { grid-template-columns: 1fr 1fr; }
  .signal-grid div { min-height: 104px; padding: 16px; }
  .metric-grid div { min-height: 130px; padding: 20px 16px; }
  .value-item, .process-step, .audience-card { padding: 24px; }
  .tech-row { grid-template-columns: 1fr; gap: 4px; }
  .trust-layout { gap: 18px; }
  .rvo-proof { grid-template-columns: 48px 1fr; padding: 20px; }
  .rvo-proof img { width: 42px; height: 95px; }
  .partner-proof { min-height: 178px; }
  .partner-logos { min-height: 136px; gap: 16px 20px; padding: 20px 14px 24px; }
  .partner-logos img, .partner-wordmark { width: min(112px, 100%); max-height: 38px; min-height: 38px; }
  .partner-wordmark-rabo { font-size: .8rem; }
  .partner-wordmark-gonh { font-size: .86rem; }
  .resource-layout { gap: 34px; }
  .brochure-preview { width: 230px; margin-inline: auto; }
  .form-panel { padding: 20px; }
  .form-grid { grid-template-columns: 1fr; }
  .form-grid .full { grid-column: auto; }
  .download-form { grid-template-columns: 1fr; }
  .download-form .form-note { grid-column: auto; }
  .contact-options { grid-template-columns: 1fr; }
  .section-actions { align-items: stretch; flex-direction: column; }
  .section-actions .btn { width: 100%; }
  .roadmap-lines > div, .roadmap-lines-dark > div { grid-template-columns: 1fr; gap: 6px; }
  .product-portrait-crop { aspect-ratio: 1 / 1; }
  body.has-mobile-cta { padding-bottom: 72px; }
  .mobile-cta { position: fixed; right: 12px; bottom: 12px; left: 12px; z-index: 28; display: flex; min-height: 54px; align-items: center; justify-content: center; color: var(--white); background: var(--rust); border-radius: var(--radius); box-shadow: 0 18px 44px rgba(6, 45, 26, 0.28); font-weight: 900; opacity: 0; pointer-events: none; transform: translateY(90px); transition: opacity 0.25s ease, transform 0.25s ease; }
  .mobile-cta.is-visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-inner > div:first-child { grid-column: auto; }
  .site-footer address { text-align: left; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; }
  *, *::before, *::after { animation: none !important; }
  .motion-ready .reveal { opacity: 1; transform: none; }
}
