@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap");

:root {
  color-scheme: light;
  --blue: #385193;
  --hero-blue: #5f7cff;
  --blue-deep: #15285f;
  --blue-dark: #091127;
  --blue-ink: #050b1d;
  --ice: #eef2f8;
  --ice-soft: #f7f9fc;
  --ink: #141724;
  --muted: #717785;
  --paper: #f7f8fb;
  --panel: #ffffff;
  --mist: #d8dde7;
  --line: #e2e6ee;
  --white: #ffffff;
  --green: #9bb36e;
  --radius: 8px;
  --shadow: 0 22px 70px rgba(14, 24, 55, 0.16);
  --header-height: 74px;
  /* Typography contract: Poppins is used consistently for titles and body copy. */
  --font-h1: "Poppins", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-h1-weight: 300;
  --font-body: "Poppins", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-sans: var(--font-body);
  --font-display: var(--font-h1);
  --wave-pattern: url("assets/brand/wave-blue.svg?v=3");
  --hero-wave-pattern: url("assets/brand/wave-hero-blue.svg?v=2");
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--paper);
  letter-spacing: 0;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
}

h1 {
  font-family: var(--font-h1) !important;
  font-weight: var(--font-h1-weight) !important;
}

h1 :is(span, em, strong) {
  font-family: inherit !important;
  font-weight: inherit !important;
}

h2,
h3,
h4 {
  font-family: var(--font-display);
}

.main-nav a,
.mobile-menu a,
.icon-button,
.primary-link,
.secondary-link,
.home-outline-button,
.home-project-card__cta,
.home-product-card strong,
.home-team-card h3 {
  font-family: var(--font-body);
}

body::before {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 80;
  width: calc(var(--scroll, 0) * 100%);
  height: 3px;
  content: "";
  background: var(--blue);
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.sr-only,
.skip-link {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  top: 16px;
  left: 16px;
  z-index: 100;
  width: auto;
  height: auto;
  padding: 12px 16px;
  margin: 0;
  overflow: visible;
  clip: auto;
  color: var(--white);
  background: var(--blue-dark);
  border-radius: var(--radius);
}

.section-inner {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  /* Keep the navigation above mobile overlays and open panels. */
  z-index: 1100;
  padding-top: 12px;
  background: transparent;
  border-bottom: 0;
  backdrop-filter: none;
  transition:
    padding 240ms ease,
    opacity 200ms ease,
    transform 240ms ease;
}

.site-header.is-auto-hidden:not(.is-menu-open) {
  opacity: 0;
  pointer-events: none;
  transform: translateY(calc(-100% - 18px));
}

.nav-shell {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  justify-content: normal;
  width: min(1220px, calc(100% - 32px));
  height: var(--header-height);
  padding: 0 18px;
  margin: 0 auto;
  gap: 24px;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 999px;
  box-shadow: none;
  transition:
    width 260ms ease,
    height 260ms ease,
    padding 260ms ease,
    background 260ms ease,
    border-color 260ms ease,
    box-shadow 260ms ease,
    transform 260ms ease,
    border-radius 260ms ease;
}

.brand-link {
  grid-column: 1;
  justify-self: start;
  display: inline-flex;
  align-items: center;
  width: 230px;
  min-width: 180px;
  transition: width 260ms ease, min-width 260ms ease;
}

.brand-link img {
  width: 100%;
  height: auto;
}

.main-nav {
  grid-column: 2;
  justify-self: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: gap 260ms ease;
}

.nav-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 18px 0;
  margin: -18px 0;
}

.nav-dropdown::before {
  position: absolute;
  top: 100%;
  right: -22px;
  left: -22px;
  height: 22px;
  content: "";
}

.nav-dropdown > a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.nav-dropdown > a:not([href]) {
  cursor: default;
  pointer-events: none;
}

.nav-dropdown > a::after {
  width: 7px;
  height: 7px;
  content: "";
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  opacity: 0.66;
  transform: translateY(-2px) rotate(45deg);
  transition: transform 180ms ease;
}

.nav-dropdown:hover > a::after,
.nav-dropdown:focus-within > a::after {
  transform: translateY(1px) rotate(225deg);
}

.nav-dropdown__menu {
  position: absolute;
  top: calc(100% - 2px);
  left: 50%;
  z-index: 90;
  display: grid;
  width: max-content;
  min-width: 220px;
  padding: 8px;
  pointer-events: none;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(24, 36, 76, 0.12);
  border-radius: 18px;
  box-shadow: 0 22px 48px rgba(7, 14, 36, 0.14);
  opacity: 0;
  transform: translate(-50%, 8px);
  transition: opacity 160ms ease, transform 160ms ease;
  backdrop-filter: blur(14px);
}

.nav-dropdown:hover .nav-dropdown__menu,
.nav-dropdown:focus-within .nav-dropdown__menu {
  pointer-events: auto;
  opacity: 1;
  transform: translate(-50%, 0);
}

.main-nav .nav-dropdown__menu a {
  display: flex;
  align-items: center;
  min-height: 44px;
  padding: 0 14px;
  color: #111930;
  font-size: 0.92rem;
  font-weight: 800;
  text-shadow: none;
  white-space: nowrap;
  border-radius: 12px;
}

.main-nav .nav-dropdown__menu a:hover,
.main-nav .nav-dropdown__menu a:focus-visible,
.main-nav .nav-dropdown__menu a.is-current {
  color: #385193;
  background: rgba(56, 81, 147, 0.08);
  outline: none;
}

.main-nav a,
.mobile-menu a {
  padding: 10px 13px;
  color: #252a36;
  font-size: 0.92rem;
  font-weight: 800;
  border-radius: var(--radius);
  transition: color 180ms ease, background 180ms ease, padding 260ms ease, border-radius 260ms ease;
}

.main-nav a:hover,
.main-nav a:focus-visible,
.mobile-menu a:hover,
.mobile-menu a:focus-visible {
  color: var(--blue);
  background: rgba(56, 81, 147, 0.08);
  outline: none;
}

.main-nav .nav-dropdown > a:not([href]):hover {
  background: transparent;
}

.main-nav a.is-current,
.mobile-menu a.is-current,
.footer-grid a.is-current {
  color: var(--blue);
}

.nav-actions {
  grid-column: 3;
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 10px;
}

.icon-button,
.primary-link,
.secondary-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  gap: 10px;
  padding: 0 16px;
  font-weight: 800;
  border-radius: var(--radius);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease;
}

.icon-button,
.primary-link {
  color: var(--white);
}

.icon-button {
  background: linear-gradient(135deg, #4d68b5 0%, #314b92 60%, #22376e 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow:
    0 14px 28px rgba(33, 52, 106, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.primary-link {
  background: var(--blue);
  box-shadow: 0 12px 28px rgba(56, 81, 147, 0.28);
}

.icon-button:hover,
.icon-button:focus-visible {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #5772bf 0%, #344d96 56%, #1f315f 100%);
  outline: none;
}

.primary-link:hover,
.primary-link:focus-visible {
  transform: translateY(-2px);
  background: var(--blue-deep);
  outline: none;
}

.secondary-link {
  color: var(--blue-dark);
  background: var(--white);
  border: 1px solid var(--line);
}

.secondary-link:hover,
.secondary-link:focus-visible {
  color: var(--blue);
  border-color: rgba(56, 81, 147, 0.28);
  outline: none;
}

.icon-button svg,
.primary-link svg,
.project-feature a svg,
.product-card button svg {
  width: 19px;
  height: 19px;
  stroke: currentColor;
  stroke-width: 2.3;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.icon-button__people {
  width: 22px;
  height: 22px;
  stroke-width: 1.95;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  background: var(--blue);
  border: 1px solid var(--blue);
  border-radius: var(--radius);
  box-shadow: 0 10px 24px rgba(56, 81, 147, 0.24);
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--white);
  border-radius: 999px;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.mobile-menu {
  width: min(1220px, calc(100% - 32px));
  padding: 10px 18px 14px;
  margin: 10px auto 0;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(24, 36, 76, 0.1);
  border-radius: 26px;
  box-shadow: 0 18px 36px rgba(7, 14, 36, 0.1);
  backdrop-filter: blur(16px);
}

.mobile-menu:not([hidden]) {
  display: grid;
  gap: 4px;
}

.site-header.is-condensed {
  padding-top: 10px;
}

.site-header.is-condensed .nav-shell {
  width: min(1280px, calc(100% - 56px));
  height: 66px;
  padding: 0 26px;
  background: rgba(255, 255, 255, 0.94);
  border-color: rgba(24, 36, 76, 0.1);
  box-shadow:
    0 18px 36px rgba(7, 14, 36, 0.1),
    0 2px 8px rgba(7, 14, 36, 0.05);
  backdrop-filter: blur(16px);
}

.site-header.is-condensed .brand-link {
  width: 250px;
  min-width: 250px;
}

.site-header.is-condensed .main-nav {
  gap: 12px;
}

.site-header.is-condensed .main-nav a {
  padding: 9px 12px;
  border-radius: 999px;
}

.site-header.is-condensed .main-nav a.is-current {
  padding-inline: 18px;
  background: rgba(56, 81, 147, 0.1);
}

.site-header.is-condensed .icon-button {
  min-height: 48px;
  padding: 0 18px;
  font-size: 0.96rem;
  box-shadow: 0 10px 22px rgba(56, 81, 147, 0.2);
}

.site-header.is-condensed .icon-button svg {
  width: 17px;
  height: 17px;
}

body:not([data-page="home"]) {
  background: #f8fbff;
}

body:not([data-page="home"]) .site-header {
  padding-top: 18px;
  padding-bottom: 14px;
  background:
    linear-gradient(180deg, rgba(248, 251, 255, 0.96), rgba(248, 251, 255, 0.68));
}

body:not([data-page="home"]) .nav-shell,
body:not([data-page="home"]) .site-header.is-condensed .nav-shell {
  grid-template-columns: 80px minmax(0, 1fr) auto;
  width: min(1840px, calc(100% - clamp(36px, 10vw, 208px)));
  height: 96px;
  padding: 0 34px;
  gap: clamp(24px, 3.5vw, 72px);
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(9, 17, 39, 0.98), rgba(43, 62, 116, 0.97));
  border-color: rgba(174, 190, 238, 0.38);
  border-radius: 999px;
  box-shadow:
    0 22px 54px rgba(7, 14, 36, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);
}

body:not([data-page="home"]) .site-header .brand-link,
body:not([data-page="home"]) .site-header.is-condensed .brand-link {
  width: 66px;
  min-width: 66px;
  height: 66px;
  padding: 0;
}

body:not([data-page="home"]) .site-header .brand-link__icon,
body:not([data-page="home"]) .site-header.is-condensed .brand-link__icon {
  width: 62px;
  height: 62px;
  object-fit: contain;
}

body:not([data-page="home"]) .site-header .main-nav,
body:not([data-page="home"]) .site-header.is-condensed .main-nav {
  position: absolute;
  top: 50%;
  left: 50%;
  grid-column: 1 / -1;
  width: max-content;
  gap: clamp(28px, 2.6vw, 54px);
  transform: translate(-50%, -50%);
}

body:not([data-page="home"]) .site-header .main-nav a,
body:not([data-page="home"]) .site-header.is-condensed .main-nav a {
  color: rgba(255, 255, 255, 0.88);
  padding: 13px 18px;
  font-size: clamp(1.08rem, 1.08vw, 1.36rem);
  text-shadow: none;
  white-space: nowrap;
  border-radius: 999px;
}

body:not([data-page="home"]) .site-header .main-nav a:hover,
body:not([data-page="home"]) .site-header .main-nav a:focus-visible,
body:not([data-page="home"]) .site-header .main-nav a.is-current,
body:not([data-page="home"]) .site-header.is-condensed .main-nav a:hover,
body:not([data-page="home"]) .site-header.is-condensed .main-nav a:focus-visible,
body:not([data-page="home"]) .site-header.is-condensed .main-nav a.is-current {
  color: #f5f8ff;
  background: rgba(159, 180, 226, 0.22);
}

body:not([data-page="home"]) .site-header .nav-actions,
body:not([data-page="home"]) .site-header.is-condensed .nav-actions {
  gap: 24px;
}

body:not([data-page="home"]) .site-header .language-toggle {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding-left: 28px;
}

body:not([data-page="home"]) .site-header .language-toggle::before {
  position: absolute;
  left: 0;
  width: 1px;
  height: 34px;
  content: "";
  background: rgba(201, 235, 255, 0.24);
}

body:not([data-page="home"]) .site-header .language-toggle a {
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.95rem;
  font-weight: 800;
  text-shadow: none;
}

body:not([data-page="home"]) .site-header .language-toggle a[aria-current="true"] {
  color: #ffffff;
}

body:not([data-page="home"]) .site-header .icon-button--desktop,
body:not([data-page="home"]) .site-header.is-condensed .icon-button--desktop {
  min-height: 66px;
  padding: 0 34px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.58);
  border-radius: 999px;
  box-shadow: none;
  font-size: clamp(1.14rem, 1.15vw, 1.42rem);
}

body:not([data-page="home"]) .site-header .icon-button--desktop:hover,
body:not([data-page="home"]) .site-header .icon-button--desktop:focus-visible {
  color: #111930;
  background: #ffffff;
  border-color: #ffffff;
}

body:not([data-page="home"]) .site-header .mobile-menu {
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(9, 17, 39, 0.98), rgba(32, 56, 111, 0.96));
  border-color: rgba(184, 221, 255, 0.18);
}

body:not([data-page="home"]) .site-header.is-menu-open .nav-shell,
body:not([data-page="home"]) .site-header:has(.menu-toggle[aria-expanded="true"]) .nav-shell {
  grid-template-columns: 58px minmax(0, 1fr) auto;
  width: min(680px, calc(100% - 36px));
  height: 76px;
  padding: 0 18px;
  gap: 12px;
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(9, 17, 39, 0.98), rgba(32, 56, 111, 0.96)) !important;
  border-color: rgba(184, 221, 255, 0.2) !important;
  border-bottom-color: rgba(184, 221, 255, 0.08) !important;
  border-radius: 34px 34px 0 0 !important;
  border-bottom-right-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
  box-shadow:
    0 20px 44px rgba(7, 14, 36, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.08) !important;
  backdrop-filter: blur(18px);
  transition:
    color 120ms ease,
    width 220ms cubic-bezier(0.22, 0.72, 0.24, 1),
    height 220ms cubic-bezier(0.22, 0.72, 0.24, 1),
    padding 220ms cubic-bezier(0.22, 0.72, 0.24, 1),
    gap 220ms cubic-bezier(0.22, 0.72, 0.24, 1),
    background-color 120ms ease,
    border-color 120ms ease,
    box-shadow 120ms ease,
    border-radius 120ms ease;
}

body:not([data-page="home"]) .site-header.is-menu-open .brand-link,
body:not([data-page="home"]) .site-header:has(.menu-toggle[aria-expanded="true"]) .brand-link {
  width: 54px;
  min-width: 54px;
  height: 54px;
}

body:not([data-page="home"]) .site-header.is-menu-open .brand-link__icon,
body:not([data-page="home"]) .site-header:has(.menu-toggle[aria-expanded="true"]) .brand-link__icon {
  width: 54px;
  height: 54px;
}

body:not([data-page="home"]) .site-header.is-menu-open .nav-actions,
body:not([data-page="home"]) .site-header:has(.menu-toggle[aria-expanded="true"]) .nav-actions {
  gap: 16px;
}

body:not([data-page="home"]) .site-header.is-menu-open .menu-toggle,
body:not([data-page="home"]) .site-header:has(.menu-toggle[aria-expanded="true"]) .menu-toggle {
  background: rgba(201, 235, 255, 0.1);
  border-color: rgba(201, 235, 255, 0.12);
  border-radius: 14px;
  box-shadow: none;
}

body:not([data-page="home"]) .site-header.is-menu-open .menu-toggle span,
body:not([data-page="home"]) .site-header:has(.menu-toggle[aria-expanded="true"]) .menu-toggle span {
  background: #ffffff !important;
}

body:not([data-page="home"]) .mobile-menu {
  width: min(680px, calc(100% - 36px));
  padding: 18px 22px 22px;
  margin: -1px auto 0;
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(9, 17, 39, 0.98), rgba(32, 56, 111, 0.96));
  border: 1px solid rgba(184, 221, 255, 0.18);
  border-top: 0;
  border-radius: 0 0 34px 34px;
  box-shadow:
    0 20px 44px rgba(7, 14, 36, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(18px);
  transform-origin: top center;
  will-change: transform, opacity, clip-path;
}

body:not([data-page="home"]) .mobile-menu:not([hidden]) {
  display: grid;
  gap: 2px;
  animation: home-mobile-menu-in 220ms cubic-bezier(0.22, 0.72, 0.24, 1) both;
}

body:not([data-page="home"]) .mobile-menu a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 58px;
  padding: 0 8px;
  color: #ffffff;
  font-size: clamp(1.08rem, 1.22vw, 1.42rem);
  font-weight: 800;
  background: transparent;
  border-bottom: 1px solid rgba(201, 235, 255, 0.1);
  border-radius: 14px;
}

body:not([data-page="home"]) .mobile-menu a:last-child {
  border-bottom: 0;
}

body:not([data-page="home"]) .mobile-menu a::after {
  width: 9px;
  height: 9px;
  margin-left: 18px;
  content: "";
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  opacity: 0.62;
  transform: rotate(45deg);
}

body:not([data-page="home"]) .mobile-menu a:hover,
body:not([data-page="home"]) .mobile-menu a:focus-visible,
body:not([data-page="home"]) .mobile-menu a.is-current {
  color: #ffffff;
  background: rgba(201, 235, 255, 0.1);
  outline: none;
}

body[data-page="producten"] main > :not(.build-screen) {
  display: none;
}

.about-page {
  color: #111930;
  background: #f8fbff;
}

.about-frame {
  position: relative;
  width: min(1400px, calc(100% - clamp(36px, 8vw, 148px)));
  margin: 0 auto;
}

.about-story-section {
  min-height: 100svh;
}

.about-story-section {
  position: relative;
  overflow: hidden;
  padding: clamp(176px, 18vh, 230px) 0 clamp(92px, 12vh, 132px);
  background:
    radial-gradient(circle at 82% 22%, rgba(201, 235, 255, 0.72), transparent 32%),
    radial-gradient(circle at 12% 82%, rgba(56, 81, 147, 0.08), transparent 32%),
    linear-gradient(rgba(56, 81, 147, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(56, 81, 147, 0.045) 1px, transparent 1px),
    #f8fbff;
  background-size: auto, auto, 54px 54px, 54px 54px, auto;
}

.about-story-section::before {
  position: absolute;
  inset: 138px 4vw 42px;
  content: "";
  border: 1px dashed rgba(56, 81, 147, 0.15);
  border-radius: 24px;
  pointer-events: none;
}

.about-story-section .about-frame {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.42fr);
  gap: clamp(44px, 7vw, 104px);
  align-items: center;
}

.about-story-copy {
  min-width: 0;
}

.about-story-section h1 {
  display: grid;
  gap: 18px;
  max-width: 9ch;
  margin: 0;
  color: #111930;
  font-family: var(--font-display);
  font-size: clamp(4.1rem, 8.4vw, 8.2rem);
  font-weight: 880;
  letter-spacing: -0.055em;
  line-height: 0.86;
  text-align: left;
}

.about-story-section h1::before {
  content: "Blauwe Bagger";
  color: #385193;
  font-family: var(--font-sans);
  font-size: 0.84rem;
  font-weight: 950;
  letter-spacing: 0.14em;
  line-height: 1;
  text-transform: uppercase;
}

.about-story-section h1::after {
  width: 210px;
  height: 12px;
  content: "";
  background: var(--wave-pattern) left bottom / 42px 12px repeat-x;
}

.about-team-section h2 {
  margin: 0;
  color: #111930;
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5vw, 5.4rem);
  font-weight: 820;
  letter-spacing: -0.045em;
  line-height: 0.95;
  text-align: center;
}

.about-story-text {
  max-width: 930px;
  margin: clamp(34px, 5vh, 54px) 0 0;
  color: rgba(17, 25, 48, 0.78);
  font-size: clamp(1.08rem, 1.45vw, 1.58rem);
  font-weight: 500;
  letter-spacing: -0.018em;
  line-height: 1.38;
}

.about-story-visual {
  position: relative;
  display: grid;
  align-content: end;
  min-height: clamp(390px, 36vw, 530px);
  padding: clamp(24px, 3vw, 38px);
  overflow: hidden;
  background:
    radial-gradient(circle at 74% 20%, rgba(201, 235, 255, 0.82), transparent 34%),
    rgba(255, 255, 255, 0.58);
  border: 1px dashed rgba(56, 81, 147, 0.24);
  border-radius: 28px;
  box-shadow:
    0 24px 52px rgba(7, 14, 36, 0.08),
    inset 0 0 0 1px rgba(255, 255, 255, 0.62);
}

.about-story-visual::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(rgba(56, 81, 147, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(56, 81, 147, 0.045) 1px, transparent 1px);
  background-size: 36px 36px;
}

.about-story-visual::after {
  position: absolute;
  right: -80px;
  bottom: -80px;
  width: 220px;
  aspect-ratio: 1;
  content: "";
  border: 1px solid rgba(56, 81, 147, 0.14);
  border-radius: 50%;
  box-shadow:
    inset 0 0 0 36px rgba(56, 81, 147, 0.032),
    inset 0 0 0 72px rgba(56, 81, 147, 0.022);
}

.about-story-visual img {
  position: absolute;
  top: clamp(24px, 3vw, 38px);
  right: clamp(22px, 3vw, 36px);
  z-index: 1;
  width: clamp(90px, 10vw, 132px);
  filter: drop-shadow(0 18px 28px rgba(7, 14, 36, 0.12));
}

.about-story-visual span,
.about-story-visual strong,
.about-story-visual small {
  position: relative;
  z-index: 1;
}

.about-story-visual span {
  color: rgba(56, 81, 147, 0.68);
  font-family: var(--font-display);
  font-size: clamp(4.2rem, 8vw, 7rem);
  font-weight: 850;
  letter-spacing: -0.07em;
  line-height: 0.78;
}

.about-story-visual strong {
  max-width: 9ch;
  margin-top: 22px;
  color: #111930;
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 2.6vw, 2.65rem);
  font-weight: 850;
  letter-spacing: -0.025em;
  line-height: 1.02;
}

.about-story-visual small {
  max-width: 30ch;
  margin-top: 18px;
  color: rgba(17, 25, 48, 0.68);
  font-size: 0.98rem;
  font-weight: 650;
  line-height: 1.42;
}

.about-team-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 12%, rgba(201, 235, 255, 0.48), transparent 30%),
    linear-gradient(rgba(56, 81, 147, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(56, 81, 147, 0.028) 1px, transparent 1px),
    #ffffff;
  background-size: auto, 54px 54px, 54px 54px, auto;
  padding: clamp(88px, 10vh, 112px) 0 clamp(72px, 9vh, 104px);
}

.about-team-section::before {
  position: absolute;
  inset: 52px 4vw auto;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(56, 81, 147, 0.22), transparent);
}

.about-team-section h2::before {
  display: block;
  margin-bottom: 16px;
  color: #385193;
  font-family: var(--font-sans);
  font-size: 0.84rem;
  font-weight: 950;
  letter-spacing: 0.14em;
  line-height: 1;
  text-transform: uppercase;
  content: "Blauwe Bagger";
}

.about-team-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(18px, 1.6vw, 28px);
  margin-top: clamp(84px, 12vh, 124px);
}

.about-team-card {
  display: grid;
  justify-items: center;
  min-width: 0;
  padding: 10px 10px 24px;
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(56, 81, 147, 0.12);
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(7, 14, 36, 0.06);
  text-align: center;
}

.about-team-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  object-position: center 25%;
  filter: grayscale(1) sepia(0.12) saturate(0.7) hue-rotate(185deg);
  background: #b8c0d1;
  border-radius: 6px;
}

.about-team-card h3 {
  margin: 22px 0 5px;
  color: #111930;
  font-family: var(--font-display);
  font-size: clamp(1.18rem, 1.38vw, 1.58rem);
  font-weight: 820;
  letter-spacing: -0.025em;
  line-height: 1.18;
}

.about-team-card p {
  margin: 0;
  color: rgba(17, 25, 48, 0.62);
  font-size: clamp(0.98rem, 1.08vw, 1.18rem);
  font-weight: 650;
  line-height: 1.24;
}

.about-team-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: min(680px, 100%);
  min-height: 58px;
  gap: 8px;
  padding: 0 34px;
  margin-top: clamp(64px, 8vh, 78px);
  color: rgba(56, 81, 147, 0.72);
  font-size: clamp(1.05rem, 1.22vw, 1.3rem);
  font-weight: 800;
  border: 1px solid rgba(56, 81, 147, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.54);
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease;
}

.about-team-link:hover,
.about-team-link:focus-visible {
  color: #ffffff;
  background: #385193;
  border-color: #385193;
  outline: none;
}

.about-board-section {
  position: relative;
  overflow: hidden;
  padding: clamp(86px, 11vh, 132px) 0 clamp(92px, 12vh, 148px);
  scroll-margin-top: 110px;
  background:
    radial-gradient(circle at 84% 12%, rgba(201, 235, 255, 0.58), transparent 32%),
    linear-gradient(rgba(56, 81, 147, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(56, 81, 147, 0.035) 1px, transparent 1px),
    #f8fbff;
  background-size: auto, 54px 54px, 54px 54px, auto;
}

.about-board-section::before {
  position: absolute;
  inset: 54px 4vw;
  content: "";
  border: 1px dashed rgba(56, 81, 147, 0.16);
  border-radius: 28px;
  pointer-events: none;
}

.about-board-head {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  margin-bottom: clamp(36px, 6vh, 72px);
  text-align: center;
}

.about-board-kicker {
  margin: 0 0 16px;
  color: #385193;
  font-family: var(--font-sans);
  font-size: 0.84rem;
  font-weight: 950;
  letter-spacing: 0.14em;
  line-height: 1;
  text-transform: uppercase;
}

.about-board-head h2 {
  margin: 0;
  color: #111930;
  font-family: var(--font-display);
  font-size: clamp(3rem, 5.7vw, 6.2rem);
  font-weight: 840;
  letter-spacing: -0.05em;
  line-height: 0.95;
}

.about-board-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  min-height: clamp(430px, 34vw, 560px);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.52);
  border: 1px dashed rgba(56, 81, 147, 0.24);
  border-radius: 28px;
  box-shadow:
    0 28px 72px rgba(7, 14, 36, 0.08),
    inset 0 0 0 1px rgba(255, 255, 255, 0.66);
}

.about-board-card {
  position: relative;
  display: grid;
  grid-template-rows: auto minmax(clamp(110px, 10vw, 150px), 1fr) minmax(104px, auto) minmax(112px, auto) auto;
  min-width: 0;
  min-height: clamp(430px, 34vw, 560px);
  padding: clamp(28px, 3vw, 44px);
  overflow: hidden;
  isolation: isolate;
}

.about-board-card:not(:last-child) {
  border-right: 1px dashed rgba(56, 81, 147, 0.24);
}

.about-board-card::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  content: "";
  background:
    linear-gradient(rgba(56, 81, 147, 0.034) 1px, transparent 1px),
    linear-gradient(90deg, rgba(56, 81, 147, 0.034) 1px, transparent 1px);
  background-size: 42px 42px;
  opacity: 0.72;
}

.about-board-card::after {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: -1;
  width: min(220px, 44%);
  aspect-ratio: 1;
  content: "";
  border: 1px solid rgba(56, 81, 147, 0.12);
  border-radius: 50%;
  opacity: 0.42;
  transform: translate(-50%, -50%);
  box-shadow:
    inset 0 0 0 36px rgba(201, 235, 255, 0.16),
    0 24px 64px rgba(201, 235, 255, 0.22);
}

.about-board-card span {
  position: relative;
  grid-row: 1;
  top: auto;
  left: auto;
  align-self: start;
  width: fit-content;
  color: rgba(56, 81, 147, 0.62);
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.35vw, 1.28rem);
  font-weight: 900;
  letter-spacing: 0.18em;
  line-height: 1;
}

.about-board-card h3 {
  grid-row: 3;
  align-self: end;
  max-width: 100%;
  margin: 0;
  overflow: visible;
  color: #111930;
  font-family: var(--font-display);
  font-size: clamp(2rem, 2.6vw, 3.05rem);
  font-weight: 880;
  letter-spacing: -0.045em;
  line-height: 1.02;
  overflow-wrap: anywhere;
  text-wrap: balance;
}

.about-board-card p {
  grid-row: 4;
  align-self: start;
  max-width: 34ch;
  margin: 22px 0 0;
  color: rgba(17, 25, 48, 0.68);
  font-size: clamp(0.96rem, 1.04vw, 1.08rem);
  font-weight: 650;
  line-height: 1.48;
}

.about-board-card a {
  grid-row: 5;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 48px;
  padding: 0 20px;
  margin-top: 8px;
  color: rgba(56, 81, 147, 0.84);
  font-family: var(--font-display);
  font-size: 0.98rem;
  font-weight: 850;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(56, 81, 147, 0.22);
  border-radius: 999px;
  transition:
    color 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
}

.about-board-card a:hover,
.about-board-card a:focus-visible {
  color: #ffffff;
  background: #385193;
  border-color: #385193;
  outline: none;
  transform: translateY(-2px);
}

.about-board-section--openings {
  background: #f8fbff;
}

.about-vacancy-head {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: clamp(24px, 4vw, 42px);
  border-bottom: 1px solid rgba(17, 25, 48, 0.12);
}

.about-vacancy-head h2 {
  margin: 0;
  color: #111930;
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 5.8vw, 6.5rem);
  font-weight: 840;
  letter-spacing: -0.05em;
  line-height: 0.95;
}

.about-vacancy-head p {
  margin: 0 0 8px;
  color: rgba(17, 25, 48, 0.56);
  font-size: clamp(0.98rem, 1.08vw, 1.15rem);
  font-weight: 650;
  line-height: 1.3;
  white-space: nowrap;
}

.about-vacancy-list {
  position: relative;
  z-index: 1;
  display: grid;
}

.about-vacancy-row {
  display: grid;
  grid-template-columns: minmax(300px, 1.5fr) minmax(130px, 0.64fr) minmax(120px, 0.56fr) auto;
  gap: clamp(20px, 4vw, 72px);
  align-items: center;
  min-height: clamp(118px, 11vw, 156px);
  padding: clamp(24px, 3vw, 38px) 10px;
  border-bottom: 1px solid rgba(17, 25, 48, 0.1);
}

.about-vacancy-row__main {
  min-width: 0;
}

.about-vacancy-row h3 {
  margin: 0 0 10px;
  color: #111930;
  font-family: var(--font-body);
  font-size: clamp(1.28rem, 1.6vw, 1.9rem);
  font-weight: 560;
  letter-spacing: 0;
  line-height: 1.15;
}

.about-vacancy-row p {
  max-width: 42ch;
  margin: 0;
  color: rgba(17, 25, 48, 0.62);
  font-size: clamp(0.98rem, 1.02vw, 1.08rem);
  font-weight: 520;
  line-height: 1.32;
}

.about-vacancy-row > span {
  color: rgba(17, 25, 48, 0.58);
  font-size: clamp(0.98rem, 1.02vw, 1.08rem);
  font-weight: 650;
  line-height: 1.25;
}

.about-vacancy-row a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  justify-self: end;
  min-height: 42px;
  color: #385193;
  font-family: var(--font-display);
  font-size: 0.98rem;
  font-weight: 850;
  letter-spacing: 0.01em;
  white-space: nowrap;
  transition:
    color 180ms ease,
    transform 180ms ease;
}

.about-vacancy-row a:hover,
.about-vacancy-row a:focus-visible {
  color: #111930;
  outline: none;
  transform: translateX(4px);
}

.about-vacancy-note {
  position: relative;
  z-index: 1;
  margin: clamp(28px, 4vw, 48px) 0 0;
  color: rgba(17, 25, 48, 0.62);
  font-size: clamp(0.98rem, 1.04vw, 1.12rem);
  font-weight: 560;
  line-height: 1.45;
}

.about-vacancy-note a {
  color: #385193;
  font-weight: 850;
}

.about-vacancy-note a:hover,
.about-vacancy-note a:focus-visible {
  color: #111930;
  outline: none;
}

@media (max-width: 980px) {
  .about-board-grid {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .about-board-card {
    grid-template-rows: auto auto auto auto;
    min-height: 340px;
  }

  .about-board-card span,
  .about-board-card h3,
  .about-board-card p,
  .about-board-card a {
    grid-row: auto;
  }

  .about-board-card:not(:last-child) {
    border-right: 0;
    border-bottom: 1px dashed rgba(56, 81, 147, 0.24);
  }

  .about-vacancy-head {
    display: grid;
    align-items: start;
  }

  .about-vacancy-head p {
    margin: 0;
    white-space: normal;
  }

  .about-vacancy-row {
    grid-template-columns: 1fr auto;
    gap: 16px 24px;
  }

  .about-vacancy-row__main {
    grid-column: 1 / -1;
  }

  .about-vacancy-row a {
    justify-self: end;
  }
}

@media (max-width: 760px) {
  .about-board-section {
    padding: 66px 0;
  }

  .about-board-section::before {
    inset: 28px 14px;
    border-radius: 20px;
  }

  .about-board-head {
    margin-bottom: 32px;
  }

  .about-board-head h2 {
    font-size: clamp(2.8rem, 14vw, 4.8rem);
  }

  .about-board-grid {
    border-radius: 20px;
  }

  .about-board-card {
    min-height: 320px;
    padding: 24px;
  }

  .about-board-card span {
    top: auto;
    left: auto;
  }

  .about-board-card h3 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .about-vacancy-head h2 {
    font-size: clamp(2.8rem, 14vw, 4.8rem);
  }

  .about-vacancy-row {
    grid-template-columns: 1fr;
    min-height: 0;
    padding: 24px 0;
  }

  .about-vacancy-row a {
    justify-self: start;
  }
}

.service-detail-page {
  color: #111930;
  background: #f8fbff;
}

.service-index-hero {
  min-height: 100svh;
  padding: clamp(152px, 18vh, 190px) 0 clamp(96px, 12vh, 142px);
  background:
    radial-gradient(circle at 20% 18%, rgba(201, 235, 255, 0.72), transparent 30%),
    linear-gradient(rgba(56, 81, 147, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(56, 81, 147, 0.035) 1px, transparent 1px),
    #f7f8fb;
  background-size: auto, 54px 54px, 54px 54px, auto;
}

.service-index-routes {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(20px, 2.8vw, 36px);
  margin-top: clamp(70px, 10vh, 110px);
}

.service-detail-frame {
  width: min(1420px, calc(100% - clamp(36px, 14vw, 208px)));
  margin: 0 auto;
}

.service-detail-hero {
  position: relative;
  display: grid;
  align-items: center;
  overflow: hidden;
  min-height: 100svh;
  padding: calc(var(--header-height) + clamp(28px, 4vh, 58px)) 0 clamp(58px, 8vh, 96px);
  background:
    radial-gradient(circle at 82% 22%, rgba(201, 235, 255, 0.72), transparent 32%),
    radial-gradient(circle at 12% 82%, rgba(56, 81, 147, 0.08), transparent 32%),
    linear-gradient(rgba(56, 81, 147, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(56, 81, 147, 0.045) 1px, transparent 1px),
    #f8fbff;
  background-size: auto, auto, 54px 54px, 54px 54px, auto;
}

.service-detail-hero::before {
  position: absolute;
  inset: 132px 4vw 42px;
  content: "";
  border: 1px solid rgba(56, 81, 147, 0.1);
  border-radius: 24px;
  pointer-events: none;
}

.service-detail-hero__layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(34px, 5vw, 58px);
  align-items: center;
  justify-items: center;
}

.service-detail-hero__head {
  display: grid;
  gap: 16px;
  min-width: 0;
  max-width: 980px;
  justify-items: center;
  text-align: center;
}

.service-detail-kicker {
  margin: 0;
  color: #385193;
  font-size: 0.84rem;
  font-weight: 950;
  letter-spacing: 0.14em;
  line-height: 1;
  text-transform: uppercase;
}

.service-detail-hero__head h1 {
  max-width: 900px;
  margin: 0;
  color: #111930;
  font-family: var(--font-display);
  font-size: clamp(3rem, 5.4vw, 5.5rem);
  font-weight: 880;
  letter-spacing: -0.045em;
  line-height: 0.95;
}

.service-detail-hero__head h1 em {
  color: #385193;
  font-style: italic;
  font-weight: 880;
}

.service-detail-hero__head > p:not(.service-detail-kicker):not(.service-detail-hero__copy) {
  margin: 0;
  color: rgba(17, 25, 48, 0.66);
  font-size: clamp(1.05rem, 1.28vw, 1.32rem);
  font-style: italic;
  font-weight: 650;
}

.service-detail-hero__copy {
  max-width: 720px;
  margin: clamp(18px, 3vh, 30px) auto 0;
  color: rgba(17, 25, 48, 0.78);
  font-size: clamp(1rem, 1.18vw, 1.18rem);
  font-weight: 500;
  letter-spacing: -0.012em;
  line-height: 1.52;
}

.service-detail-path {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  width: fit-content;
  margin-top: clamp(10px, 2.4vh, 22px);
  padding: 10px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(56, 81, 147, 0.14);
  border-radius: 999px;
  box-shadow: 0 18px 38px rgba(7, 14, 36, 0.06);
}

.service-detail-path span {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 16px;
  color: #111930;
  font-size: 0.9rem;
  font-weight: 850;
  line-height: 1;
  background: #ffffff;
  border: 1px solid rgba(56, 81, 147, 0.12);
  border-radius: 999px;
}

.service-detail-path span + span::before {
  position: absolute;
  left: -15px;
  color: rgba(56, 81, 147, 0.54);
  content: "->";
  font-weight: 900;
}

.service-detail-visual {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: clamp(18px, 3vw, 42px);
  width: min(820px, 100%);
  min-height: auto;
  padding: clamp(24px, 3vw, 36px);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(56, 81, 147, 0.16);
  border-radius: 18px;
  box-shadow:
    0 24px 52px rgba(7, 14, 36, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.service-detail-visual::before {
  display: none;
  content: none;
}

.service-detail-visual::after {
  position: absolute;
  right: -80px;
  bottom: -80px;
  width: 220px;
  aspect-ratio: 1;
  content: "";
  border: 1px solid rgba(56, 81, 147, 0.08);
  border-radius: 50%;
  box-shadow:
    inset 0 0 0 36px rgba(56, 81, 147, 0.022),
    inset 0 0 0 72px rgba(56, 81, 147, 0.014);
}

.service-detail-visual img {
  position: relative;
  top: auto;
  right: auto;
  z-index: 1;
  grid-row: 1 / span 3;
  width: clamp(82px, 8vw, 118px);
  filter: drop-shadow(0 18px 28px rgba(7, 14, 36, 0.12));
}

.service-detail-visual span,
.service-detail-visual strong,
.service-detail-visual ul {
  position: relative;
  z-index: 1;
}

.service-detail-visual span {
  grid-column: 2;
  width: fit-content;
  padding: 8px 12px;
  color: #385193;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  line-height: 1;
  background: rgba(56, 81, 147, 0.08);
  border-radius: 999px;
}

.service-detail-visual strong {
  grid-column: 2;
  max-width: 18ch;
  margin-top: 0;
  color: #111930;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2vw, 2rem);
  font-weight: 850;
  letter-spacing: -0.025em;
  line-height: 1.04;
}

.service-detail-visual ul {
  display: grid;
  gap: 10px;
  grid-column: 2;
  padding: 0;
  margin: 0;
  color: rgba(17, 25, 48, 0.68);
  font-size: 0.96rem;
  font-weight: 650;
  line-height: 1.35;
  list-style: none;
}

.service-detail-visual li {
  position: relative;
  padding-left: 18px;
}

.service-detail-visual li::before {
  position: absolute;
  top: 0.58em;
  left: 0;
  width: 6px;
  height: 6px;
  content: "";
  background: #385193;
  border-radius: 50%;
}

.service-route-section {
  padding: clamp(86px, 11vh, 128px) 0;
  background:
    radial-gradient(circle at 78% 18%, rgba(201, 235, 255, 0.72), transparent 30%),
    linear-gradient(rgba(56, 81, 147, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(56, 81, 147, 0.04) 1px, transparent 1px),
    #ffffff;
  background-size: auto, 46px 46px, 46px 46px, auto;
}

.service-route-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.62fr) minmax(420px, 1fr);
  gap: clamp(36px, 6vw, 86px);
  align-items: start;
}

.service-route-copy {
  display: grid;
  gap: 14px;
}

.service-route-copy--center {
  max-width: 780px;
  margin: 0 auto clamp(38px, 6vh, 68px);
  text-align: center;
}

.service-route-copy p {
  margin: 0;
  color: #385193;
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.service-route-copy h2 {
  margin: 0;
  color: #111930;
  font-size: clamp(2rem, 3vw, 3.2rem);
  font-weight: 850;
  letter-spacing: 0;
  line-height: 1.04;
}

.service-route-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.service-route-grid--media {
  grid-template-columns: minmax(0, 0.72fr) minmax(420px, 0.9fr);
  align-items: center;
}

.service-route-steps {
  display: grid;
  margin-top: clamp(28px, 4vh, 46px);
  border-top: 1px solid rgba(56, 81, 147, 0.16);
}

.service-route-step {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: clamp(18px, 2.4vw, 30px);
  padding: clamp(20px, 2.6vw, 30px) 0;
  border-bottom: 1px solid rgba(56, 81, 147, 0.16);
}

.service-route-step span {
  color: rgba(56, 81, 147, 0.62);
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.service-route-step h3 {
  margin: 0 0 8px;
  color: #111930;
  font-family: var(--font-display);
  font-size: clamp(1.08rem, 1.35vw, 1.35rem);
  font-weight: 850;
  letter-spacing: 0;
  line-height: 1.12;
}

.service-route-step p {
  max-width: 48ch;
  margin: 0;
  color: rgba(17, 25, 48, 0.68);
  font-size: clamp(0.95rem, 1vw, 1.05rem);
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.5;
  text-transform: none;
}

.service-route-media {
  position: relative;
  min-height: clamp(440px, 48vw, 680px);
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(56, 81, 147, 0.14);
  border-radius: 8px;
  box-shadow: 0 28px 64px rgba(7, 14, 36, 0.14);
}

.service-route-media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.service-route-card,
.service-material-card {
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(56, 81, 147, 0.14);
  box-shadow: 0 22px 48px rgba(7, 14, 36, 0.08);
}

.service-route-card {
  display: grid;
  gap: 14px;
  min-height: 260px;
  padding: 24px;
  border-radius: 8px;
}

.service-route-card span {
  display: grid;
  width: 44px;
  height: 44px;
  color: #ffffff;
  font-weight: 900;
  background: #385193;
  border-radius: 50%;
  place-items: center;
}

.service-route-card h3,
.service-material-card h3 {
  margin: 0;
  color: #111930;
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 1.55vw, 1.55rem);
  font-weight: 850;
  letter-spacing: 0;
  line-height: 1.1;
}

.service-route-card p,
.service-material-card p {
  margin: 0;
  color: rgba(17, 25, 48, 0.68);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.45;
}

.service-widget-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(92px, 12vh, 140px) 0 clamp(108px, 14vh, 168px);
  background:
    radial-gradient(circle at 84% 22%, rgba(201, 235, 255, 0.64), transparent 31%),
    radial-gradient(circle at 14% 80%, rgba(56, 81, 147, 0.08), transparent 34%),
    linear-gradient(rgba(56, 81, 147, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(56, 81, 147, 0.035) 1px, transparent 1px),
    #f8fbff;
  background-size: auto, auto, 54px 54px, 54px 54px, auto;
}

.service-widget-section::before {
  position: absolute;
  inset: 46px 4vw;
  content: "";
  border: 1px dashed rgba(56, 81, 147, 0.16);
  border-radius: 28px;
  pointer-events: none;
}

.service-widget-development-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  place-items: center;
  padding: clamp(24px, 5vw, 72px);
  color: #111930;
  text-align: center;
  pointer-events: auto;
  background: #f3f0e7;
  border-radius: inherit;
}

.service-widget-development-overlay span {
  max-width: 30ch;
  padding: 16px 24px;
  color: #385193;
  font-family: var(--font-body);
  font-size: clamp(1.1rem, 1.7vw, 1.65rem);
  font-weight: 700;
  line-height: 1.25;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(56, 81, 147, 0.18);
  border-radius: 999px;
  box-shadow: 0 16px 34px rgba(17, 25, 48, 0.1);
}

.service-widget-development-overlay small {
  display: block;
  margin-top: 6px;
  color: rgba(17, 25, 48, 0.58);
  font-size: 0.72em;
  font-weight: 600;
  letter-spacing: 0;
}

.service-widget-head {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 12px;
  margin-bottom: clamp(42px, 6vh, 64px);
  text-align: center;
}

.service-widget-head p {
  margin: 0;
  color: #385193;
  font-size: 0.84rem;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.service-widget-head h2 {
  max-width: 760px;
  margin: 0;
  color: #111930;
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 3.7vw, 4.2rem);
  font-weight: 780;
  letter-spacing: -0.04em;
  line-height: 1.02;
}

.service-widget-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(430px, 0.62fr);
  gap: clamp(30px, 4.6vw, 64px);
  align-items: stretch;
}

.service-widget-ladder {
  display: grid;
  align-self: stretch;
  gap: 12px;
  min-height: clamp(540px, 47vw, 660px);
  padding: clamp(18px, 2vw, 26px);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(56, 81, 147, 0.14);
  border-radius: 24px;
  box-shadow:
    0 24px 56px rgba(7, 14, 36, 0.08),
    inset 0 0 0 1px rgba(255, 255, 255, 0.72);
}

.service-widget-ladder__head,
.service-widget-impact {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr) 56px minmax(0, 1.12fr);
  align-items: center;
  gap: clamp(18px, 2.4vw, 34px);
  min-width: 0;
}

.service-widget-ladder__head {
  padding: 4px clamp(18px, 2.2vw, 34px) 10px;
  color: rgba(17, 25, 48, 0.46);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.service-widget-ladder__head span:nth-child(3) {
  grid-column: 4;
  color: rgba(56, 81, 147, 0.82);
}

.service-widget-impact {
  min-height: 86px;
  padding: clamp(18px, 2.2vw, 28px) clamp(18px, 2.2vw, 34px);
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(56, 81, 147, 0.1);
  border-radius: 18px;
}

.service-widget-impact__label {
  min-width: 0;
  padding-right: clamp(10px, 1vw, 16px);
  color: rgba(17, 25, 48, 0.72);
  font-size: clamp(0.95rem, 1.1vw, 1.1rem);
  font-weight: 850;
  line-height: 1.2;
  overflow-wrap: anywhere;
}

.service-widget-impact__from,
.service-widget-impact__to {
  min-width: 0;
  color: rgba(17, 25, 48, 0.58);
  font-size: clamp(0.95rem, 1.06vw, 1.08rem);
  font-weight: 700;
  line-height: 1.28;
  overflow-wrap: anywhere;
}

.service-widget-impact__to {
  color: #385193;
  font-weight: 850;
}

.service-widget-impact__arrow {
  display: grid;
  width: 56px;
  height: 32px;
  align-items: center;
  justify-items: center;
  justify-self: center;
  color: #385193;
  font-size: 1rem;
  font-weight: 950;
  background: rgba(56, 81, 147, 0.08);
  border: 1px solid rgba(56, 81, 147, 0.12);
  border-radius: 999px;
}

.service-widget-frame {
  position: relative;
  display: grid;
  align-self: stretch;
  min-height: clamp(620px, 42vw, 680px);
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(56, 81, 147, 0.14);
  border-radius: 24px;
  box-shadow: 0 24px 56px rgba(7, 14, 36, 0.08);
}

.service-widget-frame::before {
  display: none;
  content: none;
}

.service-widget-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 100%;
  overflow: hidden;
  background: #ffffff;
  border: 0;
  border-radius: 0;
  scrollbar-width: none;
}

.service-widget-frame iframe::-webkit-scrollbar {
  display: none;
}

@media (max-width: 1120px) {
  .service-widget-head,
  .service-widget-layout {
    grid-template-columns: 1fr;
  }

  .service-widget-ladder {
    min-height: auto;
  }

  .service-widget-frame {
    justify-self: center;
    width: min(100%, 720px);
    height: clamp(620px, 82vw, 740px);
    max-height: 740px;
  }
}

@media (max-width: 720px) {
  .service-widget-section {
    padding: 66px 0;
  }

  .service-widget-section::before {
    inset: 28px 14px;
    border-radius: 20px;
  }

  .service-widget-head {
    gap: 14px;
    margin-bottom: 30px;
  }

  .service-widget-head h2 {
    font-size: clamp(2.7rem, 13vw, 4.8rem);
  }

  .service-widget-layout {
    gap: 26px;
  }

  .service-widget-ladder {
    gap: 12px;
    padding: 14px;
    border-radius: 20px;
  }

  .service-widget-ladder__head {
    display: none;
  }

  .service-widget-impact {
    grid-template-columns: 1fr;
    min-height: 0;
    padding: 18px;
    gap: 10px;
  }

  .service-widget-impact__label {
    font-size: 1.05rem;
  }

  .service-widget-impact__arrow {
    width: 36px;
    height: 28px;
    justify-self: start;
    transform: rotate(90deg);
  }

  .service-widget-impact__from::before {
    margin-right: 8px;
    color: rgba(17, 25, 48, 0.46);
    font-size: 0.72rem;
    font-weight: 950;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    content: "Traditioneel";
  }

  .service-widget-impact__to::before {
    margin-right: 8px;
    color: rgba(56, 81, 147, 0.72);
    font-size: 0.72rem;
    font-weight: 950;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    content: "Met Blauwe Bagger";
  }

  .service-widget-frame {
    min-height: clamp(610px, 138vw, 740px);
    border-radius: 16px;
  }

  .service-widget-frame iframe {
    height: clamp(610px, 138vw, 740px);
    min-height: clamp(610px, 138vw, 740px);
  }
}

.service-material-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2.4vw, 30px);
}

.service-material-card {
  overflow: hidden;
  border-radius: 8px;
}

.service-material-card img {
  width: 100%;
  aspect-ratio: 1.28;
  object-fit: cover;
}

.service-material-card h3,
.service-material-card p {
  padding-inline: 22px;
}

.service-material-card h3 {
  padding-top: 22px;
}

.service-material-card p {
  padding-bottom: 24px;
  margin-top: 10px;
}

.material-offer-section {
  position: relative;
  overflow: hidden;
  padding: clamp(92px, 12vh, 136px) 0 clamp(96px, 12vh, 148px);
  background:
    radial-gradient(circle at 78% 18%, rgba(201, 235, 255, 0.7), transparent 30%),
    radial-gradient(circle at 16% 78%, rgba(56, 81, 147, 0.08), transparent 34%),
    linear-gradient(rgba(56, 81, 147, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(56, 81, 147, 0.04) 1px, transparent 1px),
    #ffffff;
  background-size: auto, auto, 54px 54px, 54px 54px, auto;
}

.material-offer-section::before {
  position: absolute;
  inset: 42px 4vw;
  content: "";
  border: 1px dashed rgba(56, 81, 147, 0.14);
  border-radius: 24px;
  pointer-events: none;
}

.material-offer-head {
  position: relative;
  display: grid;
  grid-template-columns: minmax(220px, 0.36fr) minmax(0, 0.78fr);
  gap: clamp(28px, 6vw, 96px);
  align-items: end;
  margin-bottom: clamp(48px, 7vh, 78px);
}

.material-offer-head p {
  margin: 0;
  color: #385193;
  font-size: 0.9rem;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.material-offer-head h2 {
  max-width: 840px;
  margin: 0;
  color: #111930;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 5.6rem);
  font-weight: 850;
  letter-spacing: -0.052em;
  line-height: 0.92;
}

.material-offer-carousel {
  position: relative;
  min-width: 0;
  padding-inline: clamp(58px, 5vw, 78px);
}

.material-offer-controls {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0;
  margin: 0;
  pointer-events: none;
}

.material-carousel-button {
  display: grid;
  width: 56px;
  height: 56px;
  padding: 0;
  color: #385193;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(56, 81, 147, 0.22);
  border-radius: 50%;
  box-shadow:
    0 14px 32px rgba(7, 14, 36, 0.08),
    inset 0 0 0 1px rgba(255, 255, 255, 0.74);
  place-items: center;
  transition:
    color 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    opacity 180ms ease,
    transform 180ms ease;
  pointer-events: auto;
}

.material-carousel-button svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.6;
}

.material-carousel-button:hover,
.material-carousel-button:focus-visible {
  color: #ffffff;
  background: #385193;
  border-color: #385193;
  outline: none;
  transform: translateY(-2px);
}

.material-carousel-button:disabled {
  color: rgba(56, 81, 147, 0.28);
  cursor: default;
  background: rgba(255, 255, 255, 0.42);
  border-color: rgba(56, 81, 147, 0.12);
  box-shadow: none;
  transform: none;
}

.material-offer-grid {
  --material-offer-gap: clamp(18px, 2.2vw, 34px);
  position: relative;
  display: flex;
  gap: var(--material-offer-gap);
  min-width: 0;
  padding: 2px 0 18px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scroll-padding-inline: 0;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.material-offer-grid::-webkit-scrollbar {
  display: none;
}

.material-offer-grid:focus-visible {
  outline: 3px solid rgba(56, 81, 147, 0.22);
  outline-offset: 8px;
  border-radius: 16px;
}

.material-offer-card {
  --material-card-action-height: 52px;
  --material-card-sketch-height: 150px;
  flex: 0 0 calc((100% - (var(--material-offer-gap) * 2)) / 3);
  scroll-snap-align: start;
  display: grid;
  grid-template-rows: minmax(0, 1fr) var(--material-card-sketch-height) var(--material-card-action-height);
  gap: clamp(26px, 4vh, 42px);
  min-height: 600px;
  padding: clamp(24px, 2.4vw, 34px);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(56, 81, 147, 0.14);
  border-radius: 8px;
  box-shadow:
    0 22px 48px rgba(7, 14, 36, 0.08),
    inset 0 0 0 1px rgba(255, 255, 255, 0.62);
}

.material-offer-card > div {
  display: grid;
  grid-template-rows: auto auto 1fr;
  gap: 16px;
  min-width: 0;
  min-height: 0;
  align-content: start;
}

.material-offer-card > div > span:first-child {
  color: rgba(56, 81, 147, 0.72);
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.material-offer-card h3 {
  margin: 0;
  color: #111930;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 2.3vw, 2.45rem);
  font-weight: 850;
  letter-spacing: -0.035em;
  line-height: 1;
}

.material-offer-card p {
  margin: 0;
  color: rgba(17, 25, 48, 0.68);
  font-size: clamp(1rem, 1.08vw, 1.16rem);
  font-weight: 560;
  line-height: 1.42;
}

.material-sketch {
  align-self: center;
  width: 100%;
  height: var(--material-card-sketch-height);
  overflow: visible;
  fill: none;
  stroke: rgba(17, 25, 48, 0.38);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.material-sketch circle,
.material-sketch rect {
  fill: rgba(56, 81, 147, 0.5);
  stroke: none;
}

.material-offer-link {
  justify-self: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: min(100%, 240px);
  height: var(--material-card-action-height);
  min-height: var(--material-card-action-height);
  gap: 10px;
  padding: 0 22px;
  color: rgba(56, 81, 147, 0.78);
  font-size: 0.98rem;
  font-weight: 850;
  border: 1px solid rgba(56, 81, 147, 0.24);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
  line-height: 1;
  white-space: nowrap;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.material-offer-link:hover,
.material-offer-link:focus-visible {
  color: #ffffff;
  background: #385193;
  border-color: #385193;
  outline: none;
  transform: translateY(-2px);
}

@media (max-width: 1180px) {
  .about-story-section .about-frame {
    grid-template-columns: 1fr;
  }

  .about-story-visual {
    justify-self: start;
    width: min(100%, 560px);
    min-height: 360px;
  }

  .about-team-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .service-route-grid,
  .service-route-cards,
  .service-route-grid--media,
  .service-material-grid,
  .material-offer-head,
  .material-offer-grid,
  .service-index-routes {
    grid-template-columns: 1fr;
  }

  .service-detail-hero__layout {
    grid-template-columns: 1fr;
  }

  .service-detail-visual {
    justify-self: start;
    width: min(100%, 560px);
    min-height: 360px;
  }

  .service-route-media {
    width: min(100%, 620px);
    min-height: clamp(380px, 72vw, 560px);
  }

  .material-offer-card {
    flex-basis: calc((100% - var(--material-offer-gap)) / 2);
  }

}

@media (max-width: 760px) {
  .about-frame {
    width: min(100% - 32px, 1420px);
  }

  .about-story-section,
  .about-team-section {
    min-height: auto;
  }

  .about-story-section {
    padding-top: 132px;
  }

  .about-story-section::before {
    inset: 96px 14px 28px;
    border-radius: 18px;
  }

  .about-story-section h1 {
    font-size: clamp(3.25rem, 17vw, 5.3rem);
  }

  .about-story-text {
    margin-top: 28px;
    font-size: 1.08rem;
  }

  .about-story-visual {
    min-height: 320px;
    padding: 20px;
    border-radius: 22px;
  }

  .about-story-visual img {
    width: 88px;
  }

  .about-story-visual span {
    font-size: clamp(3.8rem, 18vw, 5.5rem);
  }

  .about-team-grid {
    grid-template-columns: 1fr;
    margin-top: 56px;
  }

  .about-team-card img {
    max-width: 360px;
  }

  .about-team-link {
    width: 100%;
    min-width: 0;
    min-height: 54px;
    padding: 0 18px;
    text-align: center;
  }

  .service-detail-frame {
    width: min(100% - 32px, 1420px);
  }

  .service-detail-hero {
    display: block;
    min-height: auto;
    padding-top: 132px;
  }

  .service-detail-hero::before {
    inset: 96px 14px 28px;
    border-radius: 18px;
  }

  .service-index-hero {
    min-height: auto;
    padding-top: 132px;
  }

  .service-detail-hero__head h1 {
    font-size: clamp(2.45rem, 13vw, 4.2rem);
  }

  .service-detail-hero__copy {
    margin-top: 14px;
    font-size: 1.05rem;
  }

  .service-detail-path {
    width: 100%;
    border-radius: 18px;
  }

  .service-detail-path span {
    flex: 1 1 auto;
    justify-content: center;
    min-width: 0;
    padding-inline: 12px;
  }

  .service-detail-visual {
    grid-template-columns: 1fr;
    justify-items: start;
    min-height: auto;
    padding: 20px;
    border-radius: 16px;
  }

  .service-detail-visual img {
    grid-row: auto;
    width: 82px;
  }

  .service-detail-visual span {
    grid-column: auto;
    font-size: 0.74rem;
  }

  .service-detail-visual strong,
  .service-detail-visual ul {
    grid-column: auto;
  }

  .material-offer-section {
    padding-block: 78px;
  }

  .material-offer-section::before {
    inset: 22px 14px;
    border-radius: 18px;
  }

  .material-offer-head {
    gap: 18px;
  }

  .material-offer-head h2 {
    font-size: clamp(2.35rem, 13vw, 4.4rem);
  }

  .material-offer-carousel {
    padding-inline: 0;
  }

  .material-offer-controls {
    position: relative;
    inset: auto;
    justify-content: flex-end;
    gap: 10px;
    margin: 0 0 16px;
    pointer-events: auto;
  }

  .material-carousel-button {
    width: 48px;
    height: 48px;
  }

  .material-offer-card {
    flex-basis: min(100%, 360px);
    grid-template-rows: auto var(--material-card-sketch-height) var(--material-card-action-height);
    min-height: auto;
    padding: 22px;
  }

  .material-offer-link {
    width: min(100%, 240px);
  }

  .material-sketch {
    max-height: 170px;
  }

}

.build-screen {
  position: relative;
  display: grid;
  min-height: calc(100svh - var(--header-height));
  overflow: hidden;
  padding: clamp(86px, 12vw, 150px) 0 clamp(96px, 12vw, 150px);
  background:
    radial-gradient(circle at 12% 20%, rgba(56, 81, 147, 0.12) 0 1px, transparent 2px),
    radial-gradient(circle at 88% 70%, rgba(56, 81, 147, 0.1) 0 1px, transparent 2px),
    linear-gradient(rgba(56, 81, 147, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(56, 81, 147, 0.04) 1px, transparent 1px),
    #ffffff;
  background-size: 120px 120px, 140px 140px, 54px 54px, 54px 54px, auto;
  place-items: center;
}

.build-screen::before {
  position: absolute;
  right: -18vw;
  bottom: -28vw;
  width: min(68vw, 860px);
  aspect-ratio: 1;
  content: "";
  border: 1px solid rgba(56, 81, 147, 0.1);
  border-radius: 50%;
  box-shadow:
    inset 0 0 0 64px rgba(56, 81, 147, 0.025),
    inset 0 0 0 128px rgba(56, 81, 147, 0.018);
  pointer-events: none;
}

.build-screen__inner {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  max-width: 980px;
  text-align: center;
}

.build-screen__inner p {
  margin: 0 0 16px;
  color: #385193;
  font-size: 0.82rem;
  font-weight: 950;
  letter-spacing: 0.14em;
  line-height: 1;
  text-transform: uppercase;
}

.build-screen__inner h1 {
  max-width: 10ch;
  margin: 0;
  color: #385193;
  font-size: clamp(3.2rem, 9vw, 8rem);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.92;
  text-wrap: balance;
}

.plan-intro-section {
  position: relative;
  overflow: hidden;
  padding: clamp(92px, 12vh, 150px) 0 clamp(78px, 10vh, 118px);
  background:
    radial-gradient(circle at 86% 28%, rgba(56, 81, 147, 0.08) 0 2px, transparent 3px),
    radial-gradient(circle at 15% 84%, rgba(56, 81, 147, 0.07) 0 2px, transparent 3px),
    radial-gradient(circle at 72% 12%, rgba(201, 235, 255, 0.58), transparent 32%),
    linear-gradient(rgba(56, 81, 147, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(56, 81, 147, 0.045) 1px, transparent 1px),
    #f8fbff;
  background-size: 240px 220px, 300px 260px, auto, 54px 54px, 54px 54px, auto;
}

.plan-intro-section::before {
  position: absolute;
  inset: 82px 4vw 36px;
  content: "";
  border: 1px dashed rgba(56, 81, 147, 0.14);
  border-radius: 22px;
  pointer-events: none;
}

.plan-intro-frame {
  position: relative;
  z-index: 1;
  display: grid;
  gap: clamp(34px, 5vw, 56px);
}

.plan-intro-head {
  display: grid;
  gap: 12px;
}

.plan-intro-head p {
  margin: 0;
  color: #111930;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.plan-intro-head h1 {
  margin: 0;
  color: #111930;
  font-size: clamp(2.35rem, 4vw, 4.45rem);
  font-weight: 750;
  letter-spacing: -0.035em;
  line-height: 1;
}

.plan-intro-head h1 span {
  color: #385193;
  font-style: italic;
  font-weight: 900;
}

.plan-intro-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(34px, 5vw, 56px);
  align-items: start;
}

.plan-intro-copy {
  display: grid;
  gap: clamp(32px, 4vw, 54px);
  max-width: min(1180px, 100%);
}

.plan-intro-copy p {
  margin: 0;
  color: #111930;
  font-size: clamp(1.12rem, 1.42vw, 1.42rem);
  font-weight: 500;
  letter-spacing: -0.012em;
  line-height: 1.7;
}

.plan-intro-copy .plan-intro-lead {
  max-width: 1120px;
  color: #111930;
  font-size: clamp(1.16rem, 1.42vw, 1.38rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.55;
}

.plan-intro-copy strong {
  color: #111930;
  font-weight: 850;
}

.plan-intro-copy em {
  color: #111930;
  font-style: italic;
}

.plan-principles {
  display: grid;
  gap: 0;
  margin-top: clamp(4px, 1vw, 10px);
  border-top: 1px solid rgba(56, 81, 147, 0.16);
  border-bottom: 1px solid rgba(56, 81, 147, 0.16);
}

.plan-principles article {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: clamp(16px, 2vw, 24px);
  padding: clamp(18px, 2.2vw, 24px) 0;
  border-bottom: 1px solid rgba(56, 81, 147, 0.12);
}

.plan-principles article:last-child {
  border-bottom: 0;
}

.plan-principles span {
  color: #385193;
  font-family: var(--font-display);
  font-size: 0.86rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  line-height: 1.2;
}

.plan-principles h2 {
  margin: 0;
  color: #111930;
  font-size: clamp(1.04rem, 1.2vw, 1.2rem);
  font-weight: 850;
  letter-spacing: -0.015em;
  line-height: 1.18;
}

.plan-principles p {
  max-width: 52ch;
  margin: 7px 0 0;
  color: rgba(17, 25, 48, 0.68);
  font-size: clamp(0.94rem, 1vw, 1.02rem);
  font-weight: 600;
  line-height: 1.42;
}

.plan-intro-body,
.plan-intro-support {
  max-width: 1120px;
}

.plan-intro-note {
  width: fit-content;
  padding: 12px 16px;
  color: #385193 !important;
  font-size: 0.9rem !important;
  font-weight: 850 !important;
  letter-spacing: 0 !important;
  background: rgba(56, 81, 147, 0.08);
  border: 1px solid rgba(56, 81, 147, 0.16);
  border-radius: 999px;
}

.plan-timeline-section {
  padding: clamp(72px, 9vw, 128px) 0 clamp(96px, 11vw, 150px);
  color: #111930;
  background: #f6f9fc;
}

.plan-timeline-frame {
  display: grid;
  gap: clamp(48px, 6vw, 88px);
}

.plan-timeline-title {
  margin: 0;
  color: #111930;
  font-size: clamp(2rem, 2.6vw, 3rem);
  font-weight: 850;
  letter-spacing: -0.035em;
  line-height: 1;
}

.plan-timeline-title em {
  color: #385193;
  font-style: italic;
}

.plan-timeline-map {
  display: grid;
  gap: clamp(28px, 4vw, 52px);
}

.plan-timeline-rail {
  display: grid;
  gap: inherit;
  min-width: 0;
}

.plan-timeline-axis {
  position: relative;
  min-height: clamp(178px, 18vw, 230px);
}

.plan-timeline-line {
  position: absolute;
  top: 50%;
  right: calc(100% - var(--timeline-end, 93%));
  left: var(--timeline-start, 7%);
  height: 2px;
  background: #d5dde7;
  transform: translateY(-50%);
}

.plan-timeline-progress {
  position: absolute;
  top: 50%;
  left: var(--timeline-period-start, 7%);
  z-index: 1;
  width: calc(var(--timeline-period-end, 19.286%) - var(--timeline-period-start, 7%));
  height: 4px;
  background: #aeb8c4;
  border-radius: 999px;
  box-shadow: none;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-50%);
  transition: opacity 180ms ease;
}

.plan-timeline-axis--period-visible .plan-timeline-progress {
  opacity: 1;
}

.plan-timeline-line::after {
  position: absolute;
  top: 50%;
  right: -2px;
  width: 0;
  height: 0;
  content: "";
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 12px solid #d5dde7;
  transform: translateY(-50%);
}

.plan-timeline-point {
  position: absolute;
  top: 50%;
  left: var(--timeline-pos);
  display: grid;
  justify-items: center;
  padding: 0;
  color: #8d9aa8;
  font-size: clamp(0.86rem, 1vw, 1.02rem);
  font-weight: 850;
  letter-spacing: -0.01em;
  text-align: center;
  cursor: pointer;
  background: transparent;
  border: 0;
  transform: translate(-50%, -50%);
}

.plan-timeline-period-label {
  position: absolute;
  top: 50%;
  left: var(--timeline-pos);
  display: grid;
  justify-items: center;
  color: #203a5d;
  font-size: clamp(0.86rem, 1vw, 1.02rem);
  font-weight: 850;
  letter-spacing: -0.01em;
  line-height: 1.1;
  text-align: center;
  pointer-events: none;
  transform: translate(-50%, -50%);
}

.plan-timeline-period-label::before {
  width: 1px;
  height: clamp(34px, 4vw, 48px);
  content: "";
  background: #203a5d;
}

.plan-timeline-period-label span {
  position: absolute;
  width: max-content;
  max-width: 230px;
  pointer-events: none;
}

.plan-timeline-period-label--bottom::before {
  margin-top: 10px;
}

.plan-timeline-period-label--bottom span {
  top: calc(100% + clamp(54px, 5.4vw, 72px));
}

.plan-timeline-point::before {
  width: 14px;
  height: 14px;
  content: "";
  background: #f6f9fc;
  border: 3px solid #aeb8c4;
  border-radius: 50%;
  box-shadow: none;
}

.plan-timeline-point::after {
  width: 1px;
  height: clamp(34px, 4vw, 48px);
  content: "";
  background: #d5dde7;
}

.plan-timeline-point span {
  position: absolute;
  left: 50%;
  width: max-content;
  max-width: 170px;
  pointer-events: none;
  transform: translateX(-50%);
}

.plan-timeline-point--label-left span {
  right: 0;
  left: auto;
  text-align: right;
  transform: none;
}

.plan-timeline-point--label-right span {
  left: 0;
  text-align: left;
  transform: none;
}

.plan-timeline-point--top::after {
  order: -1;
  margin-bottom: 10px;
}

.plan-timeline-point--top span {
  bottom: calc(100% + clamp(54px, 5.4vw, 72px));
}

.plan-timeline-point--bottom::after {
  margin-top: 10px;
}

.plan-timeline-point--bottom span {
  top: calc(100% + clamp(54px, 5.4vw, 72px));
}

.plan-timeline-point--active {
  color: #203a5d;
}

.plan-timeline-point:hover,
.plan-timeline-point:focus-visible {
  color: #203a5d;
  outline: none;
}

.plan-timeline-point:hover::before,
.plan-timeline-point:focus-visible::before {
  border-color: #385193;
  box-shadow:
    0 0 0 5px rgba(56, 81, 147, 0.08),
    0 8px 20px rgba(17, 25, 48, 0.12);
}

.plan-timeline-point--active::before {
  width: 18px;
  height: 18px;
  background: #203a5d;
  border: 4px solid #ffffff;
  box-shadow:
    0 0 0 3px #203a5d,
    0 8px 22px rgba(17, 25, 48, 0.16);
}

.plan-timeline-years {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  min-height: 1.25em;
  padding-top: 22px;
  border-top: 1px solid #e1e7ee;
}

.plan-timeline-years span {
  position: absolute;
  top: 22px;
  left: var(--timeline-year-pos, 7%);
  color: #a2adba;
  font-size: clamp(0.95rem, 1.1vw, 1.12rem);
  font-weight: 850;
  white-space: nowrap;
  text-align: center;
  transform: translateX(-50%);
}

.plan-timeline-feature {
  display: grid;
  grid-template-columns: minmax(120px, 0.18fr) minmax(0, 1fr);
  gap: clamp(38px, 6vw, 82px);
  padding: clamp(34px, 4.5vw, 58px);
  color: #111930;
  background: #ffffff;
  border: 1px solid #e1e7ee;
  border-radius: 8px;
  box-shadow: 0 20px 46px rgba(17, 25, 48, 0.08);
}

.plan-timeline-feature strong,
.plan-timeline-item__date strong {
  display: block;
  color: #385193;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4vw, 4.2rem);
  font-weight: 950;
  letter-spacing: -0.045em;
  line-height: 0.95;
}

.plan-timeline-feature span,
.plan-timeline-item__date span {
  display: block;
  margin-top: 9px;
  color: rgba(17, 25, 48, 0.42);
  font-size: clamp(0.88rem, 1vw, 1rem);
  font-weight: 850;
}

.plan-timeline-feature h3,
.plan-timeline-item__copy h3 {
  margin: 0 0 18px;
  color: #111930;
  font-size: clamp(1.45rem, 2vw, 2.18rem);
  font-weight: 880;
  letter-spacing: -0.032em;
  line-height: 1.08;
}

.plan-timeline-feature p,
.plan-timeline-item__copy p {
  max-width: 940px;
  margin: 0;
  color: rgba(17, 25, 48, 0.72);
  font-size: clamp(1rem, 1.24vw, 1.24rem);
  font-weight: 520;
  line-height: 1.7;
}

.plan-timeline-list {
  display: grid;
  gap: clamp(44px, 5.2vw, 76px);
}

.plan-timeline-item {
  display: grid;
  grid-template-columns: minmax(115px, 0.14fr) minmax(0, 1fr);
  gap: clamp(34px, 5vw, 72px);
  align-items: start;
}

.plan-timeline-item__date {
  padding-right: clamp(22px, 3vw, 42px);
  border-right: 1px solid rgba(56, 81, 147, 0.1);
}

@media (max-width: 680px) {
  .plan-intro-head h1 {
    font-size: clamp(2.1rem, 10.5vw, 3.15rem);
  }

  .plan-principles article {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 14px;
  }

  .plan-intro-note {
    width: 100%;
    border-radius: 18px;
  }

  .plan-timeline-map {
    overflow-x: auto;
    padding-bottom: 8px;
  }

  .plan-timeline-axis {
    min-width: 780px;
    min-height: 250px;
  }

  .plan-timeline-years {
    min-width: 780px;
  }

  .plan-timeline-feature,
  .plan-timeline-item {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .plan-timeline-item__date {
    padding-right: 0;
    padding-bottom: 16px;
    border-right: 0;
    border-bottom: 1px solid rgba(56, 81, 147, 0.1);
  }
}

.hero-editorial {
  min-height: calc(100svh - var(--header-height));
  padding: 50px 0 34px;
  background:
    radial-gradient(circle at 78% 22%, rgba(56, 81, 147, 0.18) 0 1px, transparent 2px),
    radial-gradient(circle at 30% 70%, rgba(9, 17, 39, 0.09) 0 1px, transparent 2px),
    linear-gradient(90deg, rgba(56, 81, 147, 0.08) 1px, transparent 1px),
    linear-gradient(0deg, rgba(56, 81, 147, 0.06) 1px, transparent 1px),
    var(--ice);
  background-size: 140px 140px, 110px 110px, 72px 72px, 72px 72px, auto;
}

.hero-editorial::after {
  display: none;
}

.hero-editorial .hero-grid {
  position: relative;
  display: block;
  min-height: 570px;
}

.hero-editorial .hero-copy {
  position: relative;
  z-index: 2;
  max-width: none;
  padding-top: 40px;
}

.hero-editorial .eyebrow {
  color: var(--blue);
  font-size: 0.86rem;
}

.hero-editorial h1 {
  max-width: 1120px;
  margin: 0;
  color: var(--blue-ink);
  font-size: 7.35rem;
  font-weight: 950;
  line-height: 0.78;
  text-transform: uppercase;
}

.hero-editorial h1 span {
  display: block;
}

.hero-editorial h1::after {
  display: block;
  width: 340px;
  height: 16px;
  margin-top: 22px;
  content: "";
  background: var(--wave-pattern) left bottom / 52px 16px repeat-x;
}

.hero-editorial .hero-lede {
  max-width: 520px;
  margin-top: 28px;
  color: #343947;
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.45;
}

.container-hero {
  position: absolute;
  right: -28px;
  bottom: 14px;
  z-index: 3;
  width: 660px;
  height: 420px;
  pointer-events: none;
  transform-style: preserve-3d;
  transition: transform 220ms ease-out;
  will-change: transform;
}

.container-shadow {
  position: absolute;
  right: 44px;
  bottom: 20px;
  width: 520px;
  height: 74px;
  background: rgba(9, 17, 39, 0.16);
  filter: blur(18px);
  border-radius: 50%;
  transform: rotate(-5deg);
}

.sea-container {
  position: absolute;
  top: 86px;
  left: 40px;
  width: 560px;
  height: 210px;
  transform: rotate(-5deg) skewX(-8deg);
  filter: drop-shadow(0 30px 34px rgba(9, 17, 39, 0.28));
  animation: container-float 7s ease-in-out infinite;
}

.container-side {
  position: absolute;
  inset: 36px 80px 0 0;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.2), transparent 12%, rgba(0, 0, 0, 0.12) 78%),
    var(--blue);
  border: 5px solid var(--blue-deep);
  border-radius: 6px 0 0 6px;
}

.container-side span {
  position: relative;
  display: inline-block;
  width: 13.9%;
  height: 100%;
  border-right: 4px solid rgba(21, 40, 95, 0.68);
  box-shadow:
    inset 8px 0 0 rgba(255, 255, 255, 0.13),
    inset -6px 0 0 rgba(0, 0, 0, 0.08);
}

.container-front {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 104px;
  height: 202px;
  background:
    linear-gradient(140deg, rgba(255, 255, 255, 0.24), transparent 40%),
    var(--blue-deep);
  border: 5px solid #10204f;
  border-radius: 0 6px 6px 0;
  transform: skewY(16deg);
}

.container-front span {
  position: absolute;
  top: 18px;
  bottom: 18px;
  width: 30px;
  border: 3px solid rgba(255, 255, 255, 0.22);
  border-top: 0;
  border-bottom: 0;
}

.container-front span:first-child {
  left: 15px;
}

.container-front span:last-child {
  right: 15px;
}

.container-roof {
  position: absolute;
  top: 0;
  left: 32px;
  right: 74px;
  height: 56px;
  background:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.15) 0 14px, rgba(21, 40, 95, 0.2) 14px 18px),
    #516bb0;
  border: 4px solid var(--blue-deep);
  border-bottom: 0;
  border-radius: 6px 5px 0 0;
  transform: skewX(26deg);
}

.container-label {
  position: absolute;
  top: 74px;
  left: 54px;
  padding: 6px 10px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.62rem;
  font-weight: 950;
  background: rgba(9, 17, 39, 0.34);
  border-radius: 3px;
}

.container-window {
  position: absolute;
  top: 83px;
  right: 126px;
  width: 56px;
  height: 38px;
  background: rgba(246, 249, 252, 0.86);
  border: 4px solid var(--blue-deep);
  border-radius: 4px;
}

.system-skid {
  position: absolute;
  left: 120px;
  bottom: 28px;
  width: 260px;
  height: 86px;
  background: rgba(255, 255, 255, 0.94);
  border: 4px solid #c6ccd6;
  border-radius: 5px;
  transform: skewX(5deg);
}

.system-tank {
  position: absolute;
  left: 28px;
  bottom: 14px;
  width: 58px;
  height: 58px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.7), transparent 48%),
    #d7dce5;
  border: 4px solid #aeb6c4;
  border-radius: 50%;
}

.system-pipe,
.system-belt,
.system-screen {
  position: absolute;
  display: block;
}

.system-pipe {
  height: 7px;
  background: var(--blue);
  border-radius: 999px;
}

.system-pipe--one {
  top: 28px;
  left: 92px;
  width: 108px;
}

.system-pipe--two {
  top: 52px;
  left: 72px;
  width: 146px;
}

.system-belt {
  right: -58px;
  bottom: 12px;
  width: 132px;
  height: 18px;
  background: repeating-linear-gradient(90deg, #0b132c 0 9px, #283968 9px 14px);
  border-radius: 999px;
  transform: rotate(-16deg);
}

.system-screen {
  top: 14px;
  right: 28px;
  width: 40px;
  height: 44px;
  background: var(--blue);
  border-radius: 4px;
  box-shadow: inset 0 0 0 8px rgba(255, 255, 255, 0.18);
}

.material-stream {
  position: absolute;
  right: 58px;
  bottom: 72px;
  display: flex;
  gap: 9px;
  transform: rotate(-13deg);
}

.material-stream span {
  width: 72px;
  height: 10px;
  background: rgba(255, 255, 255, 0.86);
  border-radius: 999px;
  animation: stream 1200ms ease-in-out infinite;
}

.material-stream span:nth-child(2) {
  animation-delay: 140ms;
}

.material-stream span:nth-child(3) {
  animation-delay: 280ms;
}

.hero-panel {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 24px;
  align-items: end;
  margin-top: -56px;
}

.hero-options {
  overflow: hidden;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(56, 81, 147, 0.16);
  border-radius: var(--radius);
  box-shadow: 0 18px 44px rgba(9, 17, 39, 0.14);
}

.hero-options a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 58px;
  padding: 0 20px;
  color: var(--blue-ink);
  font-weight: 950;
  border-bottom: 1px solid rgba(56, 81, 147, 0.14);
  transition: background 180ms ease, color 180ms ease;
}

.hero-options a:last-child {
  border-bottom: 0;
}

.hero-options a.is-active,
.hero-options a:hover,
.hero-options a:focus-visible {
  color: var(--white);
  background: var(--blue-dark);
  outline: none;
}

.hero-options svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.hero-editorial .hero-metrics {
  margin-top: 0;
  background: rgba(9, 17, 39, 0.08);
  box-shadow: 0 18px 44px rgba(9, 17, 39, 0.1);
}

.hero-editorial .metric {
  min-height: 126px;
  background: rgba(255, 255, 255, 0.86);
}

.page-hero {
  padding: 88px 0 54px;
  background:
    radial-gradient(circle at 78% 22%, rgba(56, 81, 147, 0.18) 0 1px, transparent 2px),
    linear-gradient(90deg, rgba(56, 81, 147, 0.08) 1px, transparent 1px),
    linear-gradient(0deg, rgba(56, 81, 147, 0.06) 1px, transparent 1px),
    var(--ice);
  background-size: 140px 140px, 72px 72px, 72px 72px, auto;
}

.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  gap: 36px;
  align-items: end;
}

.page-hero-copy h1 {
  max-width: 12ch;
  margin: 0;
  color: var(--blue-ink);
  font-size: 4.8rem;
  font-weight: 950;
  line-height: 0.92;
  text-transform: uppercase;
}

.page-hero-copy p:last-child {
  max-width: 760px;
  margin: 22px 0 0;
  color: #39404d;
  font-size: 1.12rem;
  font-weight: 760;
  line-height: 1.6;
}

.page-hero-aside {
  padding: 28px;
  color: var(--white);
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.08), transparent 48%),
    var(--blue-dark);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  box-shadow: 0 22px 56px rgba(9, 17, 39, 0.18);
}

.page-hero-aside p {
  margin: 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.page-hero-aside strong {
  display: block;
  margin-top: 10px;
  font-size: 1.8rem;
  line-height: 1.08;
}

.page-hero-aside span {
  display: block;
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 700;
  line-height: 1.6;
}

.page-hero-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 22px 0 0;
  list-style: none;
}

.page-hero-list li {
  padding-top: 10px;
  font-weight: 800;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

body:not([data-page="home"]) .page-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(92px, 10vw, 132px) 0 clamp(64px, 8vw, 94px);
  background:
    linear-gradient(rgba(56, 81, 147, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(56, 81, 147, 0.055) 1px, transparent 1px),
    radial-gradient(circle at 82% 34%, rgba(56, 81, 147, 0.1), transparent 30%),
    linear-gradient(180deg, #f8fbff 0%, #eef4ff 100%);
  background-size: 54px 54px, 54px 54px, auto, auto;
}

body:not([data-page="home"]) .page-hero::before {
  position: absolute;
  right: -12vw;
  bottom: -18vw;
  width: min(58vw, 820px);
  aspect-ratio: 1;
  content: "";
  border: 1px solid rgba(56, 81, 147, 0.12);
  border-radius: 50%;
  box-shadow:
    inset 0 0 0 58px rgba(56, 81, 147, 0.035),
    inset 0 0 0 116px rgba(255, 255, 255, 0.32);
  pointer-events: none;
}

body:not([data-page="home"]) .page-hero-grid {
  position: relative;
  z-index: 1;
  grid-template-columns: minmax(0, 0.98fr) minmax(320px, 0.62fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}

body:not([data-page="home"]) .page-hero-copy .eyebrow {
  color: #385193;
  letter-spacing: 0.13em;
}

body:not([data-page="home"]) .page-hero-copy h1 {
  max-width: 14ch;
  color: #07112a;
  font-size: clamp(2.8rem, 5.6vw, 5.9rem);
  font-weight: 850;
  line-height: 0.98;
  letter-spacing: 0;
  text-transform: none;
  text-wrap: balance;
  overflow-wrap: break-word;
}

body:not([data-page="home"]) .page-hero-copy p:last-child {
  max-width: 660px;
  color: #303a52;
  font-size: clamp(1.02rem, 1.25vw, 1.2rem);
  font-weight: 650;
}

body:not([data-page="home"]) .page-hero-aside {
  border-radius: 8px;
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.08), transparent 48%),
    linear-gradient(135deg, #070f24 0%, #132755 48%, #20386f 100%);
  border-color: rgba(201, 235, 255, 0.16);
  box-shadow: 0 22px 56px rgba(7, 14, 36, 0.18);
}

body:not([data-page="home"]) .page-hero-aside p {
  color: rgba(201, 235, 255, 0.72);
  letter-spacing: 0.1em;
}

body:not([data-page="home"]) .page-hero-aside strong {
  color: #ffffff;
  font-size: clamp(1.45rem, 2.1vw, 2.05rem);
}

@media (max-width: 1080px) {
  body:not([data-page="home"]) .page-hero-grid {
    grid-template-columns: 1fr;
    align-items: start;
  }
}

@media (max-width: 760px) {
  body:not([data-page="home"]) .page-hero {
    padding: 82px 0 46px;
  }

  body:not([data-page="home"]) .page-hero-copy h1 {
    max-width: 11ch;
    font-size: clamp(2.4rem, 13vw, 3.25rem);
    line-height: 1;
  }

  body:not([data-page="home"]) .page-hero-aside {
    padding: 22px;
  }
}

.page-directory,
.feature-section,
.stat-section,
.use-section,
.faq-section,
.contact-meta {
  padding: 108px 0;
  background: var(--white);
}

.page-directory--soft,
.feature-section--soft,
.use-section--soft,
.faq-section--soft,
.contact-meta--soft {
  background: var(--ice-soft);
}

.teaser-grid,
.feature-grid,
.info-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.teaser-grid--four,
.feature-grid--four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.teaser-card,
.feature-card,
.info-card {
  min-height: 240px;
  padding: 26px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.teaser-card:hover,
.teaser-card:focus-within,
.feature-card:hover,
.feature-card:focus-within,
.info-card:hover,
.info-card:focus-within {
  border-color: rgba(56, 81, 147, 0.32);
  box-shadow: 0 20px 44px rgba(9, 17, 39, 0.08);
  transform: translateY(-4px);
}

.teaser-card p,
.feature-card p,
.info-card p {
  margin: 0;
  color: #505766;
  font-weight: 700;
  line-height: 1.6;
}

.teaser-card h3,
.feature-card h3,
.info-card h3 {
  margin: 10px 0 14px;
  font-size: 1.6rem;
  line-height: 1.08;
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 42px;
  margin-top: 24px;
  color: var(--blue);
  font-weight: 900;
}

.link-arrow svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.stat-card {
  min-height: 170px;
  padding: 26px;
  color: var(--white);
  background: var(--blue-dark);
  border-radius: var(--radius);
}

.stat-card:nth-child(2) {
  background: var(--blue);
}

.stat-card:nth-child(3) {
  color: var(--blue-ink);
  background: var(--ice);
  border: 1px solid var(--line);
}

.stat-card strong {
  display: block;
  margin-bottom: 14px;
  font-size: 3rem;
  line-height: 1;
}

.stat-card p {
  margin: 0;
  font-weight: 750;
  line-height: 1.55;
}

.cta-band {
  padding: 82px 0;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    var(--blue-dark);
  background-size: 70px 70px;
}

.cta-band .section-inner {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

.cta-band h2 {
  max-width: 14ch;
  margin: 0;
  font-size: 3.1rem;
  line-height: 1.02;
}

.cta-band p {
  max-width: 520px;
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 700;
  line-height: 1.6;
}

.page-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.page-toolbar .secondary-link {
  min-width: 0;
}

.section-intro {
  max-width: 420px;
  margin: 0;
  color: #505766;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.6;
}

.project-board-section {
  padding: clamp(58px, 7vw, 94px) 0 clamp(82px, 10vw, 126px);
  background:
    radial-gradient(circle at 12% 16%, rgba(56, 81, 147, 0.12) 0 1px, transparent 2px),
    radial-gradient(circle at 84% 68%, rgba(56, 81, 147, 0.08) 0 1px, transparent 2px),
    radial-gradient(circle at 52% 12%, rgba(201, 235, 255, 0.62), transparent 34%),
    linear-gradient(rgba(56, 81, 147, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(56, 81, 147, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, #f7faff 0%, #ffffff 100%);
  background-size: 120px 120px, 140px 140px, auto, 50px 50px, 50px 50px, auto;
}

.project-board-section--index {
  min-height: calc(100svh - var(--header-height));
  margin-top: -10px;
}

.project-board-kicker {
  width: fit-content;
  margin: 0 auto 10px;
  color: #385193;
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
}

.project-board-title {
  margin: 0 0 clamp(28px, 4vw, 46px);
  color: #111930;
  font-size: clamp(2.3rem, 3.8vw, 3.8rem);
  font-weight: 820;
  line-height: 1;
  letter-spacing: 0;
  text-align: center;
}

.project-board {
  display: grid;
  width: min(100%, 1220px);
  margin: 0 auto;
  gap: clamp(34px, 4.4vw, 58px);
}

.project-board-row {
  display: grid;
  gap: 16px;
}

.project-board-carousel {
  position: relative;
}

.project-board-row__label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  color: #29324a;
  font-size: clamp(1rem, 1.4vw, 1.28rem);
  font-weight: 850;
  line-height: 1.2;
}

.project-board-row__label::before {
  width: 9px;
  height: 9px;
  content: "";
  background: #385193;
  border: 4px solid rgba(56, 81, 147, 0.14);
  border-radius: 50%;
  box-sizing: content-box;
}

.project-board-row__label::after {
  flex: 1;
  height: 1px;
  min-width: 42px;
  content: "";
  background: linear-gradient(90deg, rgba(56, 81, 147, 0.28), transparent);
}

.project-board-row__grid {
  position: relative;
  --project-board-gap: clamp(14px, 1.7vw, 22px);
  --project-board-pad-x: clamp(8px, 0.9vw, 12px);
  display: flex;
  align-items: flex-start;
  gap: var(--project-board-gap);
  min-width: 0;
  padding: clamp(10px, 1.3vw, 16px) var(--project-board-pad-x);
  overflow-x: auto;
  overflow-y: hidden;
  background: rgba(255, 255, 255, 0.42);
  border: 1px solid rgba(56, 81, 147, 0.12);
  border-radius: 18px;
  box-shadow:
    0 18px 46px rgba(7, 14, 36, 0.055),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

/* Keep exactly three cards in the first viewport. The track's percentage
   basis already uses its content width, so subtracting horizontal padding a
   second time makes a fourth card peek in with an uneven gap. */
.project-board-row__grid::after {
  flex: 0 0 var(--project-board-pad-x);
  content: "";
}

.project-board-row__grid::-webkit-scrollbar {
  display: none;
}

.project-board-row__grid::before {
  position: absolute;
  z-index: 2;
  inset: 12px;
  content: "";
  border: 1px dashed rgba(56, 81, 147, 0.08);
  border-radius: 14px;
  pointer-events: none;
}

.project-board-card {
  position: relative;
  display: grid;
  flex: 0 0 calc((100% - (var(--project-board-gap) * 2)) / 3);
  grid-template-rows: 1fr;
  min-width: 0;
  min-height: clamp(198px, 16vw, 260px);
  overflow: hidden;
  color: var(--blue-ink);
  background:
    linear-gradient(rgba(56, 81, 147, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(56, 81, 147, 0.028) 1px, transparent 1px),
    rgba(255, 255, 255, 0.9);
  background-size: 28px 28px, 28px 28px, auto;
  border: 1px solid rgba(56, 81, 147, 0.13);
  border-radius: 16px;
  box-shadow:
    0 18px 34px rgba(7, 14, 36, 0.055),
    inset 0 1px 0 rgba(255, 255, 255, 0.76);
  transition:
    background 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
  scroll-snap-align: start;
}

.project-board-arrow {
  position: absolute;
  top: 50%;
  z-index: 6;
  display: grid;
  width: 48px;
  height: 48px;
  padding: 0;
  color: #385193;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 250, 255, 0.92));
  border: 1px solid rgba(56, 81, 147, 0.22);
  border-radius: 50%;
  box-shadow:
    0 16px 34px rgba(7, 14, 36, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
  cursor: pointer;
  place-items: center;
  transform: translateY(-50%);
  transition:
    background 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    color 180ms ease,
    opacity 180ms ease,
    transform 180ms ease;
}

.project-board-arrow--prev {
  left: clamp(-68px, -4.4vw, -30px);
}

.project-board-arrow--next {
  right: clamp(-68px, -4.4vw, -30px);
}

.project-board-arrow svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.6;
}

.project-board-arrow:hover,
.project-board-arrow:focus-visible {
  color: #ffffff;
  background: #385193;
  border-color: #385193;
  box-shadow:
    0 18px 38px rgba(56, 81, 147, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
  outline: none;
  transform: translateY(-50%) scale(1.04);
}

.project-board-arrow:disabled {
  color: rgba(56, 81, 147, 0.42);
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(56, 81, 147, 0.12);
  box-shadow: 0 10px 22px rgba(7, 14, 36, 0.06);
  cursor: default;
  opacity: 0.72;
  transform: translateY(-50%);
}

.project-board-card--live:hover,
.project-board-card--live:focus-visible,
.project-board-card--placeholder:hover,
.project-board-card--placeholder:focus-visible {
  z-index: 1;
  background:
    linear-gradient(rgba(56, 81, 147, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(56, 81, 147, 0.05) 1px, transparent 1px),
    #ffffff;
  background-size: 28px 28px, 28px 28px, auto;
  border-color: rgba(56, 81, 147, 0.34);
  box-shadow:
    inset 0 0 0 1px rgba(56, 81, 147, 0.2),
    0 22px 42px rgba(7, 14, 36, 0.12);
  outline: none;
  transform: translateY(-4px);
}

.project-board-card__media {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background:
    linear-gradient(rgba(56, 81, 147, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(56, 81, 147, 0.06) 1px, transparent 1px),
    #eef4ff;
  background-size: 34px 34px, 34px 34px, auto;
}

.project-board-card__media::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.44), rgba(255, 255, 255, 0.74)),
    linear-gradient(90deg, rgba(255, 255, 255, 0.42), transparent 28%, transparent 72%, rgba(255, 255, 255, 0.5));
  pointer-events: none;
}

.project-board-card__media--empty::before {
  position: absolute;
  inset: 24px 40px;
  content: "";
  border: 1px dashed rgba(56, 81, 147, 0.2);
  border-radius: 50%;
}

.project-board-card__media--placeholder {
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 18% 20%, rgba(201, 235, 255, 0.74), transparent 28%),
    radial-gradient(circle at 80% 70%, rgba(56, 81, 147, 0.1), transparent 48%),
    linear-gradient(rgba(56, 81, 147, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(56, 81, 147, 0.04) 1px, transparent 1px),
    rgba(247, 250, 255, 0.76);
  background-size: auto, auto, 34px 34px, 34px 34px, auto;
}

.project-board-card__media--placeholder span {
  color: rgba(56, 81, 147, 0.11);
  font-size: clamp(3.2rem, 7vw, 7rem);
  font-weight: 950;
  letter-spacing: 0;
  line-height: 0.85;
}

.project-board-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.78;
  filter: saturate(0.86) contrast(0.98);
  transform: scale(1.02);
  transition: filter 220ms ease, opacity 220ms ease, transform 420ms ease;
}

.project-board-card--live:hover .project-board-card__media img,
.project-board-card--live:focus-visible .project-board-card__media img {
  opacity: 0.88;
  filter: saturate(0.98) contrast(1.02);
  transform: scale(1.07);
}

.project-board-card__body {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
  align-content: center;
  justify-items: center;
  min-width: 0;
  padding: clamp(20px, 3vw, 36px);
  text-align: center;
}

.project-board-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  color: rgba(56, 81, 147, 0.72);
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.project-board-card h3 {
  margin: 0;
  color: var(--blue-ink);
  font-size: clamp(1rem, 1.45vw, 1.45rem);
  line-height: 1.12;
  text-wrap: balance;
  overflow-wrap: anywhere;
}

.project-board-card p {
  margin: 0;
  color: #505766;
  font-size: 0.94rem;
  font-weight: 700;
  line-height: 1.48;
}

.project-board-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 4px;
  color: #385193;
  font-size: 0.9rem;
  font-weight: 900;
  transition: color 180ms ease, transform 180ms ease;
}

.project-board-card--live:hover .project-board-card__cta,
.project-board-card--live:focus-visible .project-board-card__cta,
.project-board-card--placeholder:hover .project-board-card__cta,
.project-board-card--placeholder:focus-visible .project-board-card__cta {
  color: #111930;
  transform: translateX(3px);
}

.project-board-card__cta svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.5;
}

.project-board-card--placeholder {
  color: rgba(17, 25, 48, 0.64);
  background:
    linear-gradient(rgba(56, 81, 147, 0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(56, 81, 147, 0.022) 1px, transparent 1px),
    rgba(250, 252, 255, 0.72);
  background-size: 28px 28px, 28px 28px, auto;
  border-color: rgba(56, 81, 147, 0.1);
  pointer-events: auto;
}

.project-board-card--placeholder h3 {
  color: rgba(17, 25, 48, 0.68);
  font-weight: 720;
}

.project-board-card--live h3 {
  font-weight: 830;
}

body.has-project-static-detail > .site-footer {
  display: block;
}

.project-static-page {
  --project-bg: #f5f6f8;
  --project-white: #ffffff;
  --project-text: #111111;
  --project-text-mid: #555555;
  --project-text-light: #999999;
  --project-border: #cccccc;
  --project-border-dashed: #bbbbbb;
  --project-blue: #2b3d8f;
  --project-accent: #3a4fa0;
  min-height: 100svh;
  padding-top: 112px;
  color: var(--project-text);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.7;
  background: var(--project-bg);
}

.project-static-page *,
.project-static-page *::before,
.project-static-page *::after {
  box-sizing: border-box;
}

.project-static-page a {
  color: inherit;
  text-decoration: none;
}

.project-static-page .breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 20px 64px;
  color: var(--project-text-light);
  font-size: 12px;
  background: var(--project-bg);
}

.project-static-page .breadcrumb span,
.project-static-page .breadcrumb a {
  cursor: pointer;
}

.project-static-page .breadcrumb span:hover,
.project-static-page .breadcrumb a:hover {
  color: var(--project-text);
}

.project-static-page .detail-hero {
  padding: 80px 64px 72px;
  text-align: center;
  background: var(--project-white);
}

.project-static-page .tag-pill {
  display: inline-block;
  padding: 4px 12px;
  margin-bottom: 24px;
  color: var(--project-text-mid);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 1px solid var(--project-border);
}

.project-static-page .detail-title {
  margin: 0 0 8px;
  font-family: var(--font-body);
  font-size: 44px;
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.project-static-page .detail-title em {
  font-family: var(--font-h1);
  font-style: italic;
  font-weight: 400;
}

.project-static-page .detail-subtitle {
  margin-top: 16px;
  color: var(--project-text-mid);
  font-size: 16px;
  font-style: italic;
  font-weight: 300;
}

.project-static-page .detail-section {
  padding: 64px 64px;
  margin-top: 2px;
  background: var(--project-white);
}

.project-static-page .detail-section + .detail-section {
  margin-top: 2px;
}

.project-static-page .detail-section.alt {
  background: var(--project-bg);
}

.project-static-page .section-title {
  margin-bottom: 28px;
  font-size: 22px;
  font-weight: 300;
  letter-spacing: -0.01em;
}

.project-static-page .section-title em {
  font-family: var(--font-h1);
  font-style: italic;
}

.project-static-page .body-text {
  max-width: 680px;
  color: var(--project-text);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.8;
}

.project-static-page .body-text + .body-text {
  margin-top: 20px;
}

.project-static-page .stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 2px;
  border: 1px solid #e0e0e0;
}

.project-static-page .stat-block {
  padding: 40px 36px;
  text-align: center;
  background: var(--project-white);
}

.project-static-page .stat-block + .stat-block {
  border-left: 1px solid #e0e0e0;
}

.project-static-page .stat-number {
  display: block;
  margin-bottom: 6px;
  color: var(--project-blue);
  font-family: var(--font-h1);
  font-size: 36px;
  font-style: italic;
  font-weight: 400;
}

.project-static-page .stat-label {
  color: var(--project-text-mid);
  font-size: 13px;
  font-weight: 300;
}

.project-static-page .step-list {
  margin-top: 8px;
}

.project-static-page .step {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  padding: 28px 0;
  border-bottom: 1px solid #ebebeb;
}

.project-static-page .step:last-child {
  border-bottom: none;
}

.project-static-page .step-num {
  min-width: 24px;
  padding-top: 2px;
  color: var(--project-text-light);
  font-size: 13px;
}

.project-static-page .step-title {
  margin-bottom: 6px;
  font-size: 15px;
  font-weight: 500;
}

.project-static-page .step-desc {
  max-width: 540px;
  color: var(--project-text-mid);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.7;
}

.project-static-page .highlight-list {
  margin-top: 20px;
}

.project-static-page .highlight-item {
  display: flex;
  gap: 16px;
  padding: 16px 0;
  font-size: 15px;
  font-weight: 300;
  border-bottom: 1px solid #ebebeb;
}

.project-static-page .highlight-item:last-child {
  border-bottom: none;
}

.project-static-page .highlight-label {
  min-width: 180px;
  font-weight: 500;
}

.project-static-page .highlight-dash {
  color: var(--project-text-light);
}

.project-static-page .detail-cta {
  padding: 64px 64px;
  margin-top: 2px;
  background: var(--project-white);
}

.project-static-page .cta-text {
  max-width: 520px;
  margin-bottom: 24px;
  font-size: 15px;
  font-weight: 300;
}

.project-static-page .cta-text strong {
  font-weight: 500;
}

.project-static-page .outline-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  color: var(--project-text-mid);
  font-family: inherit;
  font-size: 14px;
  font-weight: 300;
  text-decoration: none;
  cursor: pointer;
  background: none;
  border: 1px solid var(--project-border);
  transition: all 0.2s;
}

.project-static-page .outline-btn:hover,
.project-static-page .outline-btn:focus-visible {
  color: white;
  background: var(--project-text);
  border-color: var(--project-text);
  outline: none;
}

.project-static-page footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 40px 64px;
  margin-top: 2px;
  background: var(--project-white);
  border-top: 1px solid #e8e8e8;
}

.project-static-page footer .brand {
  color: var(--project-text-mid);
  font-size: 13px;
  font-weight: 300;
}

.project-static-page footer .footer-links {
  display: flex;
  gap: 32px;
}

.project-static-page footer .footer-links a {
  color: var(--project-text-light);
  font-size: 12px;
  font-weight: 300;
  text-decoration: none;
}

.project-static-page footer .footer-links a:hover,
.project-static-page footer .footer-links a:focus-visible {
  color: var(--project-text);
  outline: none;
}

@media (max-width: 760px) {
  .project-static-page {
    padding-top: 104px;
  }

  .project-static-page .breadcrumb,
  .project-static-page .detail-hero,
  .project-static-page .detail-section,
  .project-static-page .detail-cta,
  .project-static-page footer {
    padding-right: 24px;
    padding-left: 24px;
  }

  .project-static-page .detail-hero {
    padding-top: 56px;
    padding-bottom: 56px;
  }

  .project-static-page .detail-title {
    font-size: clamp(2.2rem, 12vw, 3.1rem);
  }

  .project-static-page .stats-row {
    grid-template-columns: 1fr;
  }

  .project-static-page .stat-block + .stat-block {
    border-top: 1px solid #e0e0e0;
    border-left: 0;
  }

  .project-static-page .highlight-item {
    display: grid;
    gap: 6px;
  }

  .project-static-page .highlight-label {
    min-width: 0;
  }

  .project-static-page footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }

  .project-static-page footer .footer-links {
    flex-wrap: wrap;
    gap: 18px;
  }
}

.project-static-page {
  --project-bg: #f8fbff;
  --project-white: rgba(255, 255, 255, 0.74);
  --project-text: #111930;
  --project-text-mid: rgba(17, 25, 48, 0.68);
  --project-text-light: rgba(56, 81, 147, 0.62);
  --project-border: rgba(56, 81, 147, 0.18);
  --project-border-dashed: rgba(56, 81, 147, 0.18);
  --project-blue: #385193;
  --project-accent: #c9ebff;
  padding-top: clamp(132px, 13vh, 176px);
  color: #111930;
  font-family: var(--font-sans);
  font-weight: 500;
  background:
    radial-gradient(circle at 82% 18%, rgba(201, 235, 255, 0.7), transparent 32%),
    radial-gradient(circle at 12% 78%, rgba(56, 81, 147, 0.08), transparent 34%),
    linear-gradient(rgba(56, 81, 147, 0.042) 1px, transparent 1px),
    linear-gradient(90deg, rgba(56, 81, 147, 0.042) 1px, transparent 1px),
    #f8fbff;
  background-size: auto, auto, 54px 54px, 54px 54px, auto;
}

.project-static-page .breadcrumb,
.project-static-page .detail-hero,
.project-static-page .detail-section,
.project-static-page .stats-row,
.project-static-page .detail-cta,
.project-static-page footer {
  width: min(1420px, calc(100% - clamp(36px, 10vw, 172px)));
  margin-right: auto;
  margin-left: auto;
}

.project-static-page .breadcrumb {
  padding: 0 0 clamp(24px, 4vh, 42px);
  color: rgba(56, 81, 147, 0.72);
  font-size: 0.82rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: transparent;
}

.project-static-page .breadcrumb a:hover,
.project-static-page .breadcrumb a:focus-visible {
  color: #111930;
  outline: none;
}

.project-static-page .detail-hero {
  position: relative;
  min-height: clamp(520px, 64svh, 760px);
  padding: clamp(56px, 8vh, 92px) clamp(28px, 5vw, 72px);
  overflow: hidden;
  text-align: left;
  background:
    radial-gradient(circle at 82% 12%, rgba(201, 235, 255, 0.78), transparent 34%),
    rgba(255, 255, 255, 0.42);
  border: 1px dashed rgba(56, 81, 147, 0.2);
  border-radius: 24px;
  box-shadow: 0 28px 70px rgba(7, 14, 36, 0.08);
}

.project-static-page .detail-hero::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(rgba(56, 81, 147, 0.044) 1px, transparent 1px),
    linear-gradient(90deg, rgba(56, 81, 147, 0.044) 1px, transparent 1px);
  background-size: 54px 54px;
  pointer-events: none;
}

.project-static-page .detail-hero > * {
  position: relative;
  z-index: 1;
}

.project-static-page .tag-pill {
  padding: 0;
  margin-bottom: clamp(28px, 5vh, 52px);
  color: #385193;
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 950;
  letter-spacing: 0.16em;
  background: transparent;
  border: 0;
}

.project-static-page .detail-title {
  max-width: 11ch;
  margin: 0;
  color: #111930;
  font-family: var(--font-display);
  font-size: clamp(4rem, 8.8vw, 9.2rem);
  font-weight: 880;
  letter-spacing: -0.058em;
  line-height: 0.88;
}

.project-static-page .detail-title + .detail-title {
  max-width: 24ch;
  margin-top: clamp(18px, 3vh, 28px) !important;
  color: rgba(17, 25, 48, 0.68);
  font-family: var(--font-sans);
  font-size: clamp(1.18rem, 1.45vw, 1.58rem) !important;
  font-weight: 850;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.project-static-page .detail-title em {
  color: #385193;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 880;
}

.project-static-page .detail-subtitle {
  max-width: 700px;
  margin-top: clamp(28px, 5vh, 52px);
  color: rgba(17, 25, 48, 0.72);
  font-size: clamp(1.2rem, 1.5vw, 1.7rem);
  font-style: italic;
  font-weight: 650;
}

.project-static-page .detail-section {
  padding: clamp(64px, 10vh, 108px) clamp(28px, 5vw, 72px);
  margin-top: clamp(26px, 4vh, 42px);
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(56, 81, 147, 0.12);
  border-radius: 8px;
  box-shadow:
    0 22px 48px rgba(7, 14, 36, 0.055),
    inset 0 0 0 1px rgba(255, 255, 255, 0.58);
}

.project-static-page .detail-section.alt {
  background:
    linear-gradient(rgba(56, 81, 147, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(56, 81, 147, 0.035) 1px, transparent 1px),
    rgba(255, 255, 255, 0.58);
  background-size: 46px 46px, 46px 46px, auto;
}

.project-static-page .section-title {
  margin: 0 0 clamp(28px, 5vh, 48px);
  color: #111930;
  font-family: var(--font-display);
  font-size: clamp(2.15rem, 3.8vw, 4.2rem);
  font-weight: 850;
  letter-spacing: -0.045em;
  line-height: 0.96;
}

.project-static-page .body-text {
  max-width: 980px;
  color: rgba(17, 25, 48, 0.76);
  font-size: clamp(1.08rem, 1.35vw, 1.52rem);
  font-weight: 500;
  letter-spacing: -0.018em;
  line-height: 1.42;
}

.project-static-page .body-text + .body-text {
  margin-top: 24px;
}

.project-static-page .stats-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 26px);
  margin-top: clamp(26px, 4vh, 42px);
  border: 0;
}

.project-static-page .stat-block {
  min-height: 180px;
  padding: clamp(24px, 3vw, 36px);
  text-align: left;
  background:
    linear-gradient(rgba(56, 81, 147, 0.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(56, 81, 147, 0.026) 1px, transparent 1px),
    rgba(255, 255, 255, 0.72);
  background-size: 30px 30px, 30px 30px, auto;
  border: 1px solid rgba(56, 81, 147, 0.14);
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(7, 14, 36, 0.055);
}

.project-static-page .stat-block + .stat-block {
  border-left: 1px solid rgba(56, 81, 147, 0.14);
}

.project-static-page .stat-number {
  margin-bottom: 18px;
  color: #385193;
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.4vw, 4rem);
  font-style: normal;
  font-weight: 850;
  letter-spacing: -0.048em;
  line-height: 0.92;
}

.project-static-page .stat-label {
  color: rgba(17, 25, 48, 0.66);
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1.35;
}

.project-static-page .step {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: clamp(18px, 4vw, 52px);
  padding: clamp(28px, 5vh, 44px) 0;
  border-bottom: 1px solid rgba(56, 81, 147, 0.14);
}

.project-static-page .step-num {
  display: grid;
  width: 52px;
  height: 52px;
  padding: 0;
  color: #ffffff;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 900;
  background: #385193;
  border-radius: 50%;
  place-items: center;
}

.project-static-page .step-title {
  margin-bottom: 10px;
  color: #111930;
  font-family: var(--font-display);
  font-size: clamp(1.22rem, 1.7vw, 1.75rem);
  font-weight: 850;
  letter-spacing: -0.025em;
}

.project-static-page .step-desc {
  max-width: 760px;
  color: rgba(17, 25, 48, 0.68);
  font-size: clamp(1rem, 1.12vw, 1.18rem);
  font-weight: 560;
  line-height: 1.52;
}

.project-static-page .highlight-item {
  display: grid;
  grid-template-columns: minmax(180px, 0.32fr) 18px minmax(0, 1fr);
  gap: clamp(14px, 2vw, 28px);
  padding: 22px 0;
  color: rgba(17, 25, 48, 0.68);
  font-size: clamp(1rem, 1.12vw, 1.18rem);
  font-weight: 560;
  border-bottom: 1px solid rgba(56, 81, 147, 0.14);
}

.project-static-page .highlight-label {
  min-width: 0;
  color: #111930;
  font-family: var(--font-display);
  font-size: clamp(1.16rem, 1.55vw, 1.6rem);
  font-weight: 850;
  letter-spacing: -0.02em;
}

.project-static-page .highlight-dash {
  color: rgba(56, 81, 147, 0.48);
}

.project-static-page .detail-cta {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) auto;
  gap: clamp(24px, 5vw, 72px);
  align-items: center;
  padding: clamp(42px, 7vh, 72px) clamp(28px, 5vw, 72px);
  margin-top: clamp(26px, 4vh, 42px);
  color: #ffffff;
  background:
    linear-gradient(rgba(201, 235, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 235, 255, 0.06) 1px, transparent 1px),
    linear-gradient(135deg, #091127, #25386f);
  background-size: 42px 42px, 42px 42px, auto;
  border: 1px solid rgba(201, 235, 255, 0.16);
  border-radius: 8px;
  box-shadow: 0 24px 56px rgba(7, 14, 36, 0.16);
}

.project-static-page .cta-text {
  max-width: 760px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1.08rem, 1.35vw, 1.45rem);
  font-weight: 600;
  line-height: 1.45;
}

.project-static-page .cta-text strong {
  display: block;
  margin-bottom: 10px;
  color: #ffffff;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.5vw, 2.6rem);
  font-weight: 850;
  letter-spacing: -0.035em;
  line-height: 1;
}

.project-static-page .outline-btn {
  min-height: 58px;
  padding: 0 28px;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 850;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
}

.project-static-page .outline-btn:hover,
.project-static-page .outline-btn:focus-visible {
  color: #111930;
  background: #ffffff;
  border-color: #ffffff;
}

.project-static-page footer {
  padding: clamp(34px, 5vh, 52px) 0 clamp(54px, 8vh, 78px);
  margin-top: clamp(42px, 7vh, 72px);
  color: rgba(17, 25, 48, 0.68);
  background: transparent;
  border-top: 1px solid rgba(56, 81, 147, 0.14);
}

.project-static-page footer .brand,
.project-static-page footer .footer-links a {
  font-size: 0.95rem;
  font-weight: 750;
}

.project-static-page footer .footer-links a:hover,
.project-static-page footer .footer-links a:focus-visible {
  color: #385193;
}

@media (max-width: 980px) {
  .project-static-page .stats-row,
  .project-static-page .detail-cta {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .project-static-page {
    padding-top: 116px;
  }

  .project-static-page .breadcrumb,
  .project-static-page .detail-hero,
  .project-static-page .detail-section,
  .project-static-page .stats-row,
  .project-static-page .detail-cta,
  .project-static-page footer {
    width: min(100% - 32px, 1420px);
    padding-right: 20px;
    padding-left: 20px;
  }

  .project-static-page .breadcrumb,
  .project-static-page .stats-row,
  .project-static-page footer {
    padding-right: 0;
    padding-left: 0;
  }

  .project-static-page .detail-hero {
    min-height: auto;
    padding-top: 42px;
    padding-bottom: 52px;
    border-radius: 18px;
  }

  .project-static-page .detail-title {
    max-width: 10ch;
    font-size: clamp(3.1rem, 16vw, 5.4rem);
  }

  .project-static-page .detail-title + .detail-title {
    max-width: 22ch;
  }

  .project-static-page .detail-section {
    padding-top: 46px;
    padding-bottom: 46px;
  }

  .project-static-page .stat-block + .stat-block {
    border-top: 1px solid rgba(56, 81, 147, 0.14);
  }

  .project-static-page .step {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .project-static-page .highlight-item {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .project-static-page .detail-cta {
    padding-top: 34px;
    padding-bottom: 34px;
  }
}

.project-builder-page {
  min-height: 100svh;
  position: relative;
  padding: 0 0 clamp(56px, 8vh, 96px);
  color: #111930;
  background: #f8fbff;
}

.project-builder-page a {
  color: inherit;
  text-decoration: none;
}

.project-builder-breadcrumb,
.project-builder-hero,
.project-builder-section,
.project-builder-metrics,
.project-builder-cta {
  width: min(1420px, calc(100% - clamp(36px, 10vw, 172px)));
  margin-right: auto;
  margin-left: auto;
}

.project-builder-hero {
  width: 100%;
  margin-right: 0;
  margin-left: 0;
}

.project-builder-breadcrumb {
  position: absolute;
  top: clamp(24px, 4vw, 42px);
  left: 50%;
  z-index: 7;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  width: min(1420px, calc(100% - clamp(36px, 10vw, 172px)));
  padding: 0;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transform: translateX(-50%);
}

body:not(.project-builder-admin) .project-builder-breadcrumb {
  top: clamp(132px, 9vw, 168px);
}

.project-builder-breadcrumb a::before {
  content: "< ";
}

.project-builder-breadcrumb a:hover,
.project-builder-breadcrumb a:focus-visible {
  color: #ffffff;
  outline: none;
}

.builder-preview-block,
.project-builder-font-scale {
  --block-font-scale: 1;
}

:is(.builder-preview-block, .project-builder-font-scale) .project-builder-hero__copy p {
  font-size: calc(clamp(0.82rem, 1vw, 1.08rem) * var(--block-font-scale));
}

:is(.builder-preview-block, .project-builder-font-scale) .project-builder-hero__copy h1 {
  font-size: calc(clamp(3.25rem, 6vw, 7.4rem) * var(--block-font-scale));
}

:is(.builder-preview-block, .project-builder-font-scale) .project-builder-hero__subtitle {
  font-size: calc(clamp(1rem, 1.28vw, 1.42rem) * var(--block-font-scale));
}

:is(.builder-preview-block, .project-builder-font-scale) .project-builder-kicker {
  font-size: calc(0.78rem * var(--block-font-scale));
}

:is(.builder-preview-block, .project-builder-font-scale) .project-builder-meta span {
  font-size: calc(0.72rem * var(--block-font-scale));
}

:is(.builder-preview-block, .project-builder-font-scale) .project-builder-meta p,
:is(.builder-preview-block, .project-builder-font-scale) .project-builder-meta strong {
  font-size: calc(clamp(0.95rem, 1.08vw, 1.1rem) * var(--block-font-scale));
}

:is(.builder-preview-block, .project-builder-font-scale) .project-builder-meta__status strong {
  font-size: calc(0.78rem * var(--block-font-scale));
}

:is(.builder-preview-block, .project-builder-font-scale) .project-builder-richtext {
  font-size: calc(clamp(1.05rem, 1.28vw, 1.34rem) * var(--block-font-scale));
}

:is(.builder-preview-block, .project-builder-font-scale) .project-builder-column-copy {
  font-size: calc(clamp(1.08rem, 1.34vw, 1.38rem) * var(--block-font-scale));
}

:is(.builder-preview-block, .project-builder-font-scale) .project-builder-column-note h3 {
  font-size: calc(clamp(1rem, 1.18vw, 1.22rem) * var(--block-font-scale));
}

:is(.builder-preview-block, .project-builder-font-scale) .project-builder-column-note__body {
  font-size: calc(clamp(1rem, 1.18vw, 1.24rem) * var(--block-font-scale));
}

:is(.builder-preview-block, .project-builder-font-scale) .project-builder-image-text h2 {
  font-size: calc(clamp(2rem, 3vw, 3.45rem) * var(--block-font-scale));
}

:is(.builder-preview-block, .project-builder-font-scale) .project-builder-image-text__body {
  font-size: calc(clamp(1.08rem, 1.34vw, 1.38rem) * var(--block-font-scale));
}

:is(.builder-preview-block, .project-builder-font-scale) .project-builder-feature-grid h2 {
  font-size: calc(clamp(2rem, 3vw, 3.45rem) * var(--block-font-scale));
}

:is(.builder-preview-block, .project-builder-font-scale) .project-builder-feature-cell h3 {
  font-size: calc(clamp(1.18rem, 1.46vw, 1.56rem) * var(--block-font-scale));
}

:is(.builder-preview-block, .project-builder-font-scale) .project-builder-feature-cell__body {
  font-size: calc(clamp(1.02rem, 1.2vw, 1.22rem) * var(--block-font-scale));
}

:is(.builder-preview-block, .project-builder-font-scale) .project-builder-metric strong {
  font-size: calc(clamp(2.05rem, 3.7vw, 4.4rem) * var(--block-font-scale));
}

:is(.builder-preview-block, .project-builder-font-scale) .project-builder-metric span {
  font-size: calc(0.9rem * var(--block-font-scale));
}

:is(.builder-preview-block, .project-builder-font-scale) .project-builder-stat-quote__stat strong {
  font-size: calc(clamp(4.1rem, 7vw, 7.5rem) * var(--block-font-scale));
}

:is(.builder-preview-block, .project-builder-font-scale) .project-builder-stat-quote__stat span,
:is(.builder-preview-block, .project-builder-font-scale) .project-builder-stat-quote__stat small {
  font-size: calc(clamp(0.86rem, 1vw, 1.05rem) * var(--block-font-scale));
}

:is(.builder-preview-block, .project-builder-font-scale) .project-builder-stat-quote__text {
  font-size: calc(clamp(1.08rem, 1.34vw, 1.38rem) * var(--block-font-scale));
}

:is(.builder-preview-block, .project-builder-font-scale) .project-builder-result-card strong {
  font-size: calc(clamp(2.3rem, 3.7vw, 4.4rem) * var(--block-font-scale));
}

:is(.builder-preview-block, .project-builder-font-scale) .project-builder-result-card h3 {
  font-size: calc(clamp(1.04rem, 1.2vw, 1.24rem) * var(--block-font-scale));
}

:is(.builder-preview-block, .project-builder-font-scale) .project-builder-result-card p {
  font-size: calc(clamp(0.94rem, 1.06vw, 1.08rem) * var(--block-font-scale));
}

:is(.builder-preview-block, .project-builder-font-scale) .project-builder-metal-science h2 {
  font-size: calc(clamp(2rem, 3vw, 3.35rem) * var(--block-font-scale));
}

:is(.builder-preview-block, .project-builder-font-scale) .project-builder-metal-science__body {
  font-size: calc(clamp(1.08rem, 1.34vw, 1.42rem) * var(--block-font-scale));
}

:is(.builder-preview-block, .project-builder-font-scale) .project-builder-metal-card strong {
  font-size: calc(clamp(2.6rem, 4vw, 4.85rem) * var(--block-font-scale));
}

:is(.builder-preview-block, .project-builder-font-scale) .project-builder-metal-card__name,
:is(.builder-preview-block, .project-builder-font-scale) .project-builder-metal-card__ph,
:is(.builder-preview-block, .project-builder-font-scale) .project-builder-metal-card__body {
  font-size: calc(var(--metal-card-font-size) * var(--block-font-scale));
}

:is(.builder-preview-block, .project-builder-font-scale) .project-builder-text h2,
:is(.builder-preview-block, .project-builder-font-scale) .project-builder-simple-text h2,
:is(.builder-preview-block, .project-builder-font-scale) .project-builder-process h2 {
  font-size: calc(clamp(2.1rem, 4vw, 4.6rem) * var(--block-font-scale));
}

:is(.builder-preview-block, .project-builder-font-scale) .project-builder-simple-text__body {
  font-size: calc(clamp(1.08rem, 1.34vw, 1.38rem) * var(--block-font-scale));
}

:is(.builder-preview-block, .project-builder-font-scale) .project-builder-process strong {
  font-size: calc(1.35rem * var(--block-font-scale));
}

:is(.builder-preview-block, .project-builder-font-scale) .project-builder-process p {
  font-size: calc(1rem * var(--block-font-scale));
}

:is(.builder-preview-block, .project-builder-font-scale) .project-builder-test-list h2 {
  font-size: calc(clamp(2rem, 3.2vw, 3.35rem) * var(--block-font-scale));
}

:is(.builder-preview-block, .project-builder-font-scale) .project-builder-test-list strong {
  font-size: calc(clamp(1rem, 1.14vw, 1.18rem) * var(--block-font-scale));
}

:is(.builder-preview-block, .project-builder-font-scale) .project-builder-test-list p {
  font-size: calc(clamp(1.02rem, 1.2vw, 1.22rem) * var(--block-font-scale));
}

:is(.builder-preview-block, .project-builder-font-scale) .project-builder-cta p {
  font-size: calc(clamp(1.12rem, 1.45vw, 1.58rem) * var(--block-font-scale));
}

.project-builder-hero {
  position: relative;
  display: flex;
  align-items: end;
  min-height: clamp(560px, 72svh, 860px);
  padding: clamp(46px, 7vw, 86px);
  overflow: hidden;
  color: #ffffff;
  background:
    linear-gradient(90deg, rgba(6, 10, 22, 0.76), rgba(6, 10, 22, 0.26) 54%, rgba(6, 10, 22, 0.08)),
    var(--project-hero-image, linear-gradient(135deg, #101a3b, #385193));
  background-position: center;
  background-size: cover;
  border-radius: 0;
  box-shadow: none;
}

.project-builder-hero::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(to top, rgba(6, 10, 22, 0.72), transparent 58%),
    linear-gradient(to right, rgba(6, 10, 22, 0.28), transparent 72%);
  pointer-events: none;
}

.project-builder-hero__copy {
  position: relative;
  z-index: 1;
  width: min(920px, 100%);
  margin-top: 0;
}

.project-builder-hero--center {
  align-items: center;
  justify-content: center;
  text-align: center;
}

.project-builder-hero--center .project-builder-hero__copy {
  margin-top: 0;
}

.project-builder-hero__copy p,
.project-builder-kicker {
  margin: 0 0 16px;
  color: rgba(56, 81, 147, 0.72);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.project-builder-hero__copy p {
  margin-bottom: clamp(14px, 2vw, 22px);
  color: rgba(255, 255, 255, 0.64);
  font-family: var(--font-sans);
  font-size: clamp(0.82rem, 1vw, 1.08rem);
  font-weight: 650;
  letter-spacing: 0.18em;
}

.project-builder-hero__copy h1 {
  max-width: 18ch;
  margin: 0;
  color: #ffffff;
  font-family: var(--font-sans);
  font-size: clamp(3.25rem, 6vw, 7.4rem);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.project-builder-hero__copy h1 em {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  letter-spacing: -0.035em;
}

.project-builder-hero__title-text {
  display: inline;
  max-width: none;
  margin-top: 0;
  color: inherit;
  font: inherit;
  letter-spacing: inherit;
  line-height: inherit;
}

.project-builder-hero__subtitle {
  display: block;
  max-width: 900px;
  margin-top: clamp(12px, 1.8vw, 22px);
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1rem, 1.28vw, 1.42rem);
  font-weight: 520;
  line-height: 1.35;
}

.project-builder-section {
  padding: clamp(56px, 9vh, 98px) clamp(28px, 5vw, 72px);
  margin-top: clamp(26px, 4vh, 42px);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(56, 81, 147, 0.12);
  box-shadow: 0 22px 48px rgba(7, 14, 36, 0.055);
}

.project-builder-meta {
  display: grid;
  grid-template-columns: 1.1fr 0.7fr 0.8fr 1.45fr 0.8fr;
  width: 100%;
  margin: 0;
  padding: 18px clamp(28px, 6vw, 88px) 22px;
  background: #ffffff;
  border-bottom: 1px solid rgba(17, 25, 48, 0.08);
  box-shadow: 0 10px 28px rgba(7, 14, 36, 0.045);
}

.project-builder-meta > div {
  min-width: 0;
  padding: 0 clamp(16px, 2.6vw, 42px);
  border-left: 1px solid rgba(17, 25, 48, 0.1);
}

.project-builder-meta > div:first-child {
  padding-left: 0;
  border-left: 0;
}

.project-builder-meta span {
  display: block;
  margin-bottom: 7px;
  color: rgba(17, 25, 48, 0.36);
  font-size: 0.72rem;
  font-weight: 820;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
}

.project-builder-meta p,
.project-builder-meta strong {
  display: inline-block;
  margin: 0;
  color: #111930;
  font-size: clamp(0.95rem, 1.08vw, 1.1rem);
  font-weight: 520;
  line-height: 1.55;
  white-space: normal;
}

.project-builder-meta__status strong {
  padding: 8px 14px;
  color: #4e966b;
  font-size: 0.78rem;
  font-weight: 820;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
  background: rgba(80, 151, 107, 0.1);
}

.project-builder-facts {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.72fr);
  gap: clamp(38px, 8vw, 110px);
}

.project-builder-richtext {
  display: grid;
  gap: 18px;
  color: rgba(17, 25, 48, 0.74);
  font-size: clamp(1.05rem, 1.28vw, 1.34rem);
  font-weight: 560;
  line-height: 1.58;
}

.project-builder-richtext p {
  margin: 0;
}

.project-builder-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(44px, 7vw, 118px);
  padding: clamp(58px, 8vw, 96px) clamp(34px, 7vw, 100px);
  background: #ffffff;
}

.project-builder-column {
  display: grid;
  align-content: start;
  gap: clamp(34px, 4vw, 58px);
  min-height: 0;
  padding: 0;
}

.project-builder-column + .project-builder-column {
  padding-left: clamp(32px, 4.6vw, 78px);
  border-left: 1px solid rgba(56, 81, 147, 0.14);
}

.project-builder-columns .project-builder-column-copy {
  display: grid;
  gap: clamp(20px, 2.4vw, 32px);
  color: rgba(17, 25, 48, 0.76);
  font-family: var(--font-body);
  font-size: clamp(1.18rem, 1.42vw, 1.52rem);
  font-weight: 520;
  letter-spacing: -0.005em;
  line-height: 1.54;
}

.project-builder-columns .project-builder-kicker {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #385193;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.project-builder-columns .project-builder-kicker::after {
  display: block;
  width: clamp(34px, 4vw, 64px);
  height: 1px;
  flex: 0 0 auto;
  content: "";
  background: currentColor;
  opacity: 0.34;
}

.project-builder-columns .project-builder-column:first-child .project-builder-column-copy {
  max-width: 52ch;
  color: rgba(17, 25, 48, 0.82);
}

.project-builder-columns .project-builder-column + .project-builder-column .project-builder-column-copy {
  max-width: 62ch;
}

.project-builder-page > .project-builder-hero + .project-builder-columns,
.builder-preview-block:has(.project-builder-hero) + .builder-preview-block .project-builder-columns {
  gap: clamp(58px, 8vw, 140px);
  align-items: start;
  min-height: clamp(390px, 35vw, 520px);
  padding: clamp(76px, 10vw, 128px) clamp(44px, 7vw, 116px);
}

.project-builder-page > .project-builder-hero + .project-builder-columns .project-builder-column,
.builder-preview-block:has(.project-builder-hero) + .builder-preview-block .project-builder-columns .project-builder-column {
  gap: clamp(36px, 4.8vw, 68px);
}

.project-builder-page > .project-builder-hero + .project-builder-columns .project-builder-kicker,
.builder-preview-block:has(.project-builder-hero) + .builder-preview-block .project-builder-columns .project-builder-kicker {
  font-size: clamp(0.82rem, 0.95vw, 1rem);
}

.project-builder-page > .project-builder-hero + .project-builder-columns .project-builder-column-copy,
.builder-preview-block:has(.project-builder-hero) + .builder-preview-block .project-builder-columns .project-builder-column-copy {
  max-width: 54ch;
  font-size: clamp(1.24rem, 1.62vw, 1.72rem);
  font-weight: 520;
  line-height: 1.52;
}

.project-builder-column-copy p,
.project-builder-column-note__body p {
  margin: 0;
}

.project-builder-column-note {
  display: grid;
  gap: 22px;
  margin-top: auto;
  padding-top: clamp(34px, 7vw, 96px);
}

.project-builder-column-note h3 {
  margin: 0;
  color: #111930;
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.18vw, 1.22rem);
  font-weight: 560;
  line-height: 1.35;
}

.project-builder-column-note h3 em {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 850;
}

.project-builder-column-note__body {
  display: grid;
  gap: 16px;
  color: rgba(17, 25, 48, 0.58);
  font-size: clamp(1rem, 1.18vw, 1.24rem);
  font-weight: 460;
  line-height: 1.6;
}

.project-builder-image-text {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 0;
  align-items: stretch;
  padding: 0;
  overflow: hidden;
  background: #ffffff;
}

.project-builder-image-text--reverse .project-builder-image-text__media {
  order: 2;
}

.project-builder-image-text--reverse .project-builder-image-text__copy {
  order: 1;
}

.project-builder-image-text__media {
  min-height: clamp(420px, 34vw, 620px);
  margin: 0;
  overflow: hidden;
  background: rgba(56, 81, 147, 0.08);
}

.project-builder-image-text__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-builder-image-text__copy {
  display: grid;
  align-content: start;
  gap: clamp(22px, 3vw, 36px);
  padding: clamp(54px, 7vw, 92px) clamp(38px, 6vw, 86px);
}

.project-builder-image-text--reverse .project-builder-image-text__copy {
  padding-right: clamp(38px, 6vw, 86px);
  padding-left: clamp(38px, 6vw, 86px);
}

.project-builder-image-text h2 {
  display: grid;
  gap: 4px;
  margin: 0;
  color: #111930;
  font-family: var(--font-body);
  font-size: clamp(2rem, 3vw, 3.45rem);
  font-weight: 760;
  letter-spacing: -0.035em;
  line-height: 1.06;
}

.project-builder-image-text h2 span {
  font: inherit;
  letter-spacing: inherit;
  line-height: inherit;
}

.project-builder-image-text__body {
  display: grid;
  gap: clamp(18px, 2.4vw, 30px);
  max-width: 62ch;
  color: rgba(17, 25, 48, 0.76);
  font-family: var(--font-body);
  font-size: clamp(1.08rem, 1.34vw, 1.38rem);
  font-weight: 560;
  letter-spacing: -0.01em;
  line-height: 1.56;
}

.project-builder-image-text__body p {
  margin: 0;
}

.project-builder-feature-grid {
  display: grid;
  gap: clamp(30px, 4.5vw, 52px);
  background: #ffffff;
}

.project-builder-feature-grid h2 {
  margin: 0;
  color: #111930;
  font-family: var(--font-body);
  font-size: clamp(2rem, 3vw, 3.45rem);
  font-weight: 760;
  letter-spacing: -0.035em;
  line-height: 1.06;
}

.project-builder-feature-grid__cells {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid rgba(56, 81, 147, 0.12);
}

.project-builder-feature-cell {
  display: grid;
  align-content: start;
  gap: clamp(18px, 2.4vw, 30px);
  min-height: clamp(250px, 24vw, 330px);
  padding: clamp(32px, 4.5vw, 58px);
  background: #ffffff;
  border-right: 1px solid rgba(56, 81, 147, 0.12);
  border-bottom: 1px solid rgba(56, 81, 147, 0.12);
}

.project-builder-feature-cell:nth-child(2n) {
  border-right: 0;
}

.project-builder-feature-cell:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.project-builder-feature-cell h3 {
  margin: 0;
  color: #111930;
  font-family: var(--font-body);
  font-size: clamp(1.18rem, 1.46vw, 1.56rem);
  font-weight: 780;
  letter-spacing: -0.02em;
  line-height: 1.18;
}

.project-builder-feature-cell__body {
  max-width: 48ch;
  margin: 0;
  color: rgba(17, 25, 48, 0.68);
  font-size: clamp(1.02rem, 1.2vw, 1.22rem);
  font-weight: 560;
  letter-spacing: -0.01em;
  line-height: 1.56;
}

.project-builder-facts dl {
  display: grid;
  margin: 0;
}

.project-builder-facts dl div {
  display: grid;
  grid-template-columns: minmax(110px, 0.42fr) minmax(0, 1fr);
  gap: 24px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(56, 81, 147, 0.14);
}

.project-builder-facts dt,
.project-builder-facts dd {
  margin: 0;
}

.project-builder-facts dt {
  color: #111930;
  font-weight: 900;
}

.project-builder-facts dd {
  color: rgba(17, 25, 48, 0.62);
  font-weight: 650;
}

.project-builder-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: clamp(26px, 4vh, 42px);
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(56, 81, 147, 0.12);
}

.project-builder-metrics--count-1 {
  grid-template-columns: minmax(0, 1fr);
}

.project-builder-metrics--count-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.project-builder-metric {
  display: grid;
  gap: 10px;
  min-height: 168px;
  padding: clamp(28px, 4vw, 48px);
  text-align: center;
  place-content: center;
}

.project-builder-metric + .project-builder-metric {
  border-left: 1px solid rgba(56, 81, 147, 0.12);
}

.project-builder-metric strong {
  color: #385193;
  font-family: var(--font-display);
  font-size: clamp(2.05rem, 3.7vw, 4.4rem);
  font-style: italic;
  font-weight: 850;
  letter-spacing: -0.045em;
  line-height: 0.95;
}

.project-builder-metric span {
  color: rgba(17, 25, 48, 0.56);
  font-size: 0.9rem;
  font-weight: 850;
}

.project-builder-stat-quote {
  display: grid;
  grid-template-columns: minmax(220px, 0.36fr) 2px minmax(0, 1fr);
  gap: clamp(34px, 5vw, 64px);
  align-items: center;
  min-height: clamp(250px, 22vw, 330px);
  padding: clamp(56px, 8vw, 96px) clamp(34px, 7vw, 100px);
  background: #ffffff;
  border: 1px solid rgba(56, 81, 147, 0.12);
  box-shadow: 0 22px 48px rgba(7, 14, 36, 0.055);
}

.project-builder-stat-quote__stat {
  display: grid;
  align-content: center;
  justify-items: start;
}

.project-builder-stat-quote__stat strong {
  display: block;
  margin: 0;
  color: #385193;
  font-family: var(--font-body);
  font-size: clamp(4.1rem, 7vw, 7.5rem);
  font-weight: 380;
  letter-spacing: -0.055em;
  line-height: 0.88;
}

.project-builder-stat-quote__stat span,
.project-builder-stat-quote__stat small {
  display: block;
  margin-top: 12px;
  color: rgba(17, 25, 48, 0.5);
  font-size: clamp(0.86rem, 1vw, 1.05rem);
  font-weight: 680;
  line-height: 1.24;
}

.project-builder-stat-quote__stat small {
  margin-top: 6px;
}

.project-builder-stat-quote__divider {
  width: 2px;
  height: clamp(120px, 11vw, 170px);
  background: #385193;
}

.project-builder-stat-quote__text {
  max-width: 62ch;
  margin: 0;
  color: rgba(17, 25, 48, 0.76);
  font-family: var(--font-body);
  font-size: clamp(1.08rem, 1.34vw, 1.38rem);
  font-weight: 560;
  letter-spacing: -0.01em;
  line-height: 1.56;
}

.project-builder-result-cards {
  display: grid;
  gap: clamp(26px, 3.5vw, 46px);
  background: #ffffff;
  border-color: transparent;
  box-shadow: none;
}

.project-builder-result-cards__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 28px);
}

.project-builder-result-card {
  display: grid;
  align-content: start;
  gap: clamp(14px, 1.6vw, 22px);
  min-height: clamp(205px, 15vw, 250px);
  padding: clamp(26px, 3.2vw, 44px);
  border: 1px solid rgba(17, 25, 48, 0.12);
  background: #ffffff;
}

.project-builder-result-card strong {
  display: block;
  margin: 0 0 4px;
  color: #385193;
  font-family: var(--font-display);
  font-size: clamp(2.3rem, 3.7vw, 4.4rem);
  font-style: italic;
  font-weight: 760;
  letter-spacing: -0.035em;
  line-height: 0.95;
  white-space: nowrap;
}

.project-builder-result-card h3 {
  margin: 0;
  color: #111930;
  font-family: var(--font-body);
  font-size: clamp(1.04rem, 1.2vw, 1.24rem);
  font-weight: 540;
  letter-spacing: 0.03em;
  line-height: 1.25;
}

.project-builder-result-card p {
  max-width: 32ch;
  margin: clamp(8px, 1vw, 14px) 0 0;
  color: rgba(17, 25, 48, 0.44);
  font-size: clamp(0.94rem, 1.06vw, 1.08rem);
  font-weight: 620;
  line-height: 1.42;
}

.project-builder-metal-science {
  display: grid;
  gap: clamp(34px, 5vw, 58px);
  background: #ffffff;
}

.project-builder-metal-science__intro {
  display: grid;
  gap: clamp(20px, 2.6vw, 32px);
  max-width: 980px;
}

.project-builder-metal-science h2 {
  max-width: 860px;
  margin: 0;
  color: #111930;
  font-family: var(--font-body);
  font-size: clamp(2rem, 3vw, 3.45rem);
  font-weight: 760;
  letter-spacing: -0.035em;
  line-height: 1.06;
}

.project-builder-metal-science__body {
  display: grid;
  gap: clamp(18px, 2.4vw, 30px);
  max-width: 62ch;
  color: rgba(17, 25, 48, 0.76);
  font-family: var(--font-body);
  font-size: clamp(1.08rem, 1.34vw, 1.38rem);
  font-weight: 560;
  letter-spacing: -0.01em;
  line-height: 1.56;
}

.project-builder-metal-science__body p {
  margin: 0;
}

.project-builder-metal-science__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 32px);
}

.project-builder-metal-card {
  display: grid;
  align-content: start;
  justify-items: start;
  min-height: clamp(320px, 28vw, 420px);
  padding: clamp(30px, 4vw, 56px);
  background: #ffffff;
  border: 1px solid rgba(17, 25, 48, 0.12);
}

.project-builder-metal-card strong {
  display: block;
  margin: 0;
  color: #385193;
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 4vw, 4.85rem);
  font-style: italic;
  font-weight: 780;
  letter-spacing: -0.035em;
  line-height: 0.92;
}

.project-builder-metal-card__name {
  --metal-card-font-size: clamp(0.98rem, 1.1vw, 1.18rem);
  display: block;
  margin: 8px 0 clamp(18px, 2.6vw, 30px);
  color: rgba(17, 25, 48, 0.74);
  font-size: var(--metal-card-font-size);
  font-weight: 520;
  line-height: 1.2;
}

.project-builder-metal-card__ph {
  --metal-card-font-size: clamp(0.98rem, 1.08vw, 1.18rem);
  display: inline-block;
  margin-bottom: clamp(22px, 2.8vw, 34px);
  padding: 8px 16px;
  color: #385193;
  font-size: var(--metal-card-font-size);
  font-weight: 560;
  letter-spacing: 0.02em;
  line-height: 1;
  background: rgba(56, 81, 147, 0.08);
}

.project-builder-metal-card__body {
  --metal-card-font-size: clamp(1rem, 1.12vw, 1.22rem);
  max-width: 34ch;
  margin: 0;
  color: rgba(17, 25, 48, 0.44);
  font-size: var(--metal-card-font-size);
  font-weight: 560;
  line-height: 1.42;
}

.project-builder-text h2,
.project-builder-process h2 {
  max-width: 920px;
  margin: 0 0 28px;
  color: #111930;
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 4vw, 4.6rem);
  font-weight: 850;
  letter-spacing: -0.048em;
  line-height: 0.96;
}

.project-builder-simple-text {
  display: grid;
  gap: clamp(22px, 3vw, 36px);
  max-width: none;
  min-height: auto;
  padding: clamp(56px, 9vh, 98px) clamp(28px, 5vw, 72px);
  margin-right: auto;
  margin-left: auto;
  align-content: start;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(56, 81, 147, 0.12);
  box-shadow: 0 22px 48px rgba(7, 14, 36, 0.055);
}

.project-builder-simple-text--wide {
  max-width: 1420px;
}

.project-builder-simple-text h2 {
  max-width: 900px;
  margin: 0;
  color: #111930;
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 4vw, 4.6rem);
  font-weight: 850;
  letter-spacing: -0.048em;
  line-height: 0.96;
}

.project-builder-simple-text__body {
  display: grid;
  gap: 16px;
  max-width: 940px;
  color: rgba(17, 25, 48, 0.72);
  font-size: clamp(1.08rem, 1.34vw, 1.38rem);
  font-weight: 560;
  letter-spacing: -0.01em;
  line-height: 1.56;
}

.project-builder-simple-text__body p {
  margin: 0;
}

.project-builder-section--dark {
  color: #ffffff;
  background:
    linear-gradient(rgba(201, 235, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 235, 255, 0.055) 1px, transparent 1px),
    #111b3a;
  background-size: 42px 42px, 42px 42px, auto;
}

.project-builder-section--dark .project-builder-kicker,
.project-builder-section--dark h2,
.project-builder-section--dark .project-builder-richtext {
  color: #ffffff;
}

.project-builder-process ol {
  display: grid;
  gap: 0;
  padding: 0;
  margin: 0;
  list-style: none;
}

.project-builder-process li {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: clamp(18px, 4vw, 46px);
  padding: 26px 0;
  border-top: 1px solid rgba(56, 81, 147, 0.14);
}

.project-builder-process li > span {
  display: grid;
  width: 46px;
  height: 46px;
  color: #ffffff;
  font-family: var(--font-display);
  font-weight: 950;
  background: #385193;
  border-radius: 50%;
  place-items: center;
}

.project-builder-process strong {
  color: #111930;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 850;
}

.project-builder-process p {
  max-width: 760px;
  margin: 8px 0 0;
  color: rgba(17, 25, 48, 0.66);
  font-weight: 620;
  line-height: 1.55;
}

.project-builder-test-list {
  display: grid;
  gap: clamp(28px, 4vw, 46px);
  padding: clamp(56px, 9vh, 98px) clamp(28px, 5vw, 72px);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(56, 81, 147, 0.12);
  box-shadow: 0 22px 48px rgba(7, 14, 36, 0.055);
}

.project-builder-test-list h2 {
  max-width: 820px;
  margin: 0;
  color: #111930;
  font-family: var(--font-body);
  font-size: clamp(2rem, 3.2vw, 3.35rem);
  font-weight: 760;
  letter-spacing: -0.02em;
  line-height: 1.04;
}

.project-builder-test-list ol {
  display: grid;
  padding: 0;
  margin: 0;
  list-style: none;
}

.project-builder-test-list li {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: clamp(18px, 3vw, 42px);
  padding: clamp(22px, 3.2vw, 34px) 0;
  border-top: 1px solid rgba(56, 81, 147, 0.12);
}

.project-builder-test-list li:first-child {
  border-top: 0;
}

.project-builder-test-list__number {
  display: grid;
  width: 34px;
  height: 34px;
  color: #385193;
  font-size: 0.88rem;
  font-weight: 850;
  line-height: 1;
  background: rgba(56, 81, 147, 0.08);
  border-radius: 50%;
  place-items: center;
}

.project-builder-test-list strong {
  display: block;
  margin: 0 0 12px;
  color: #111930;
  font-family: var(--font-sans);
  font-size: clamp(1rem, 1.14vw, 1.18rem);
  font-weight: 850;
  line-height: 1.35;
}

.project-builder-test-list p {
  max-width: 820px;
  margin: 0;
  color: rgba(17, 25, 48, 0.68);
  font-size: clamp(1.02rem, 1.2vw, 1.22rem);
  font-weight: 560;
  letter-spacing: -0.01em;
  line-height: 1.56;
}

.project-builder-gallery > div {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 0.9fr;
  gap: 12px;
}

.project-builder-gallery figure {
  min-height: clamp(220px, 28vw, 420px);
  margin: 0;
  overflow: hidden;
  background: rgba(56, 81, 147, 0.08);
}

.project-builder-gallery figure:first-child {
  grid-row: span 2;
}

.project-builder-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-builder-photo-collage {
  display: grid;
  gap: clamp(22px, 3vw, 38px);
  padding-right: 0;
  padding-left: 0;
  background: #ffffff;
  border: 0;
  box-shadow: none;
}

.project-builder-photo-collage .project-builder-kicker {
  padding-inline: clamp(28px, 5vw, 72px);
}

.project-builder-photo-collage__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(0, 0.98fr) minmax(0, 0.98fr);
  gap: clamp(12px, 1.6vw, 24px);
}

.project-builder-photo-collage figure {
  min-height: clamp(300px, 38vw, 560px);
  margin: 0;
  overflow: hidden;
  background: rgba(56, 81, 147, 0.08);
}

.project-builder-photo-collage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-builder-cta {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) auto;
  gap: clamp(24px, 5vw, 72px);
  align-items: center;
  padding: clamp(40px, 7vh, 72px) clamp(28px, 5vw, 72px);
  margin-top: clamp(26px, 4vh, 42px);
  margin-bottom: clamp(56px, 9vh, 108px);
  color: #ffffff;
  background:
    linear-gradient(rgba(201, 235, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 235, 255, 0.055) 1px, transparent 1px),
    linear-gradient(135deg, #091127, #25386f);
  background-size: 42px 42px, 42px 42px, auto;
}

.project-builder-cta p {
  max-width: 800px;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.12rem, 1.45vw, 1.58rem);
  font-weight: 720;
  line-height: 1.42;
}

@media (max-width: 980px) {
  .project-builder-meta {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 0;
  }

  .project-builder-meta > div:nth-child(odd) {
    padding-left: 0;
    border-left: 0;
  }

  .project-builder-facts,
  .project-builder-columns,
  .project-builder-feature-grid__cells,
  .project-builder-stat-quote,
  .project-builder-result-cards__grid,
  .project-builder-metal-science__grid,
  .project-builder-photo-collage__grid,
  .project-builder-cta {
    grid-template-columns: 1fr;
  }

  .project-builder-column {
    min-height: auto;
  }

  .project-builder-column + .project-builder-column {
    padding-left: 0;
    padding-top: 38px;
    border-top: 1px solid rgba(17, 25, 48, 0.12);
    border-left: 0;
  }

  .project-builder-feature-cell {
    min-height: auto;
  }

  .project-builder-result-card,
  .project-builder-metal-card,
  .project-builder-simple-text,
  .project-builder-photo-collage figure {
    min-height: auto;
  }

  .project-builder-test-list li {
    grid-template-columns: 30px minmax(0, 1fr);
    gap: 18px;
  }

  .project-builder-photo-collage figure {
    aspect-ratio: 16 / 10;
  }

  .project-builder-metrics {
    grid-template-columns: 1fr;
  }

  .project-builder-metric + .project-builder-metric {
    border-top: 1px solid rgba(56, 81, 147, 0.12);
    border-left: 0;
  }

  .project-builder-stat-quote {
    gap: 28px;
    justify-items: start;
  }

  .project-builder-stat-quote__divider {
    width: 100%;
    height: 2px;
  }

  .project-builder-gallery > div {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 760px) {
  .project-builder-page {
    padding-top: 116px;
  }

  .project-builder-breadcrumb,
  .project-builder-hero,
  .project-builder-section,
  .project-builder-metrics,
  .project-builder-cta {
    width: min(100% - 32px, 1420px);
  }

  .project-builder-hero {
    min-height: 520px;
    padding: 32px 24px;
  }

  .project-builder-hero__copy h1 {
    font-size: clamp(3.1rem, 15vw, 5rem);
  }

  .project-builder-section,
  .project-builder-cta {
    padding: 36px 22px;
  }

  .project-builder-simple-text {
    max-width: 100%;
    min-height: 0;
    padding: 36px 22px;
  }

  .project-builder-columns {
    padding: 0;
  }

  .project-builder-feature-grid {
    padding: 36px 0;
  }

  .project-builder-feature-grid h2 {
    padding: 0 22px;
  }

  .project-builder-image-text,
  .project-builder-image-text--reverse {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .project-builder-image-text--reverse .project-builder-image-text__media,
  .project-builder-image-text--reverse .project-builder-image-text__copy {
    order: initial;
  }

  .project-builder-image-text__media {
    min-height: auto;
    aspect-ratio: 16 / 10;
  }

  .project-builder-image-text__copy,
  .project-builder-image-text--reverse .project-builder-image-text__copy {
    padding: 36px 24px 44px;
  }

  .project-builder-column {
    padding: 32px 22px;
  }

  .project-builder-feature-cell {
    padding: 32px 22px;
  }

  .project-builder-meta {
    grid-template-columns: 1fr;
    padding: 24px 22px;
  }

  .project-builder-meta > div {
    padding: 0 0 16px;
    border-bottom: 1px solid rgba(17, 25, 48, 0.1);
    border-left: 0;
  }

  .project-builder-meta > div:last-child {
    padding-bottom: 0;
    border-bottom: 0;
  }

  .project-builder-facts dl div,
  .project-builder-process li {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .project-builder-gallery > div {
    grid-template-columns: 1fr;
  }

  .project-builder-gallery figure:first-child {
    grid-row: auto;
  }

  .admin-block-fields {
    grid-template-columns: 1fr;
  }
}

.blog-section,
.detail-section,
.admin-section {
  padding: 108px 0;
  background: var(--white);
}

.blog-shell {
  display: grid;
  gap: 26px;
}

.blog-featured {
  display: grid;
  grid-template-columns: minmax(320px, 1.2fr) minmax(320px, 0.8fr);
  overflow: hidden;
  background: var(--blue-dark);
  border-radius: var(--radius);
  box-shadow: 0 24px 54px rgba(9, 17, 39, 0.18);
}

.blog-featured__media,
.blog-card__media,
.detail-header__media {
  position: relative;
  min-height: 280px;
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.18) 0 2px, transparent 3px),
    linear-gradient(135deg, #4c66ab, #1a2b62 72%);
}

.blog-featured__media img,
.blog-card__media img,
.detail-header__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-featured__media::after,
.blog-card__media::after,
.detail-header__media::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(9, 17, 39, 0) 0%, rgba(9, 17, 39, 0.2) 100%);
  pointer-events: none;
}

.blog-featured__copy {
  display: grid;
  align-content: center;
  gap: 18px;
  padding: 34px;
}

.blog-meta,
.detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.pill {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  color: var(--blue-ink);
  font-size: 0.82rem;
  font-weight: 900;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 999px;
}

.pill--dark {
  color: rgba(255, 255, 255, 0.92);
  background: rgba(255, 255, 255, 0.12);
}

.blog-featured__copy h2,
.detail-header__copy h1 {
  margin: 0;
  color: var(--white);
  font-size: 3rem;
  line-height: 0.96;
}

.blog-featured__copy p:last-child,
.detail-header__copy p:last-child {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 700;
  line-height: 1.65;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.blog-card {
  display: grid;
  min-height: 100%;
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.blog-card:hover,
.blog-card:focus-visible {
  border-color: rgba(56, 81, 147, 0.32);
  box-shadow: 0 20px 44px rgba(9, 17, 39, 0.08);
  transform: translateY(-4px);
  outline: none;
}

.blog-card__media {
  min-height: 210px;
}

.blog-card__body {
  display: grid;
  gap: 14px;
  padding: 22px;
}

.blog-card__body h3 {
  margin: 0;
  color: var(--blue-ink);
  font-size: 1.65rem;
  line-height: 1.05;
}

.blog-card__body p {
  margin: 0;
  color: #505766;
  font-weight: 700;
  line-height: 1.6;
}

.detail-shell {
  display: grid;
  gap: 28px;
}

.detail-header {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(360px, 1fr);
  overflow: hidden;
  background: var(--blue-dark);
  border-radius: var(--radius);
  box-shadow: 0 24px 54px rgba(9, 17, 39, 0.18);
}

.detail-header__media {
  min-height: 420px;
}

.detail-header__copy {
  display: grid;
  align-content: center;
  gap: 20px;
  padding: 40px;
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.5fr);
  gap: 22px;
}

.detail-body,
.detail-sidebar {
  padding: 30px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.detail-body p {
  margin: 0 0 20px;
  color: #3f4656;
  font-size: 1.08rem;
  font-weight: 700;
  line-height: 1.75;
}

.detail-body p:last-child {
  margin-bottom: 0;
}

.detail-sidebar h2 {
  margin: 0 0 18px;
  color: var(--blue-ink);
  font-size: 1.4rem;
}

.detail-sidebar ul {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.detail-sidebar li {
  padding-top: 12px;
  color: #3f4656;
  font-weight: 800;
  line-height: 1.55;
  border-top: 1px solid var(--line);
}

.detail-loading,
.empty-state {
  padding: 26px;
  color: #505766;
  font-weight: 700;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.admin-shell {
  display: grid;
  grid-template-columns: minmax(320px, 1.15fr) minmax(280px, 0.85fr);
  gap: 24px;
  align-items: start;
}

.admin-heading {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: end;
  justify-content: space-between;
}

.admin-tabs {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 8px;
  margin: 0 0 24px;
  background: #eef2f8;
  border: 1px solid var(--line);
  border-radius: 999px;
}

.admin-tabs button {
  min-height: 42px;
  padding: 0 20px;
  color: rgba(17, 25, 48, 0.72);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
  background: transparent;
  border: 0;
  border-radius: 999px;
}

.admin-tabs button.is-active {
  color: #ffffff;
  background: var(--blue-dark);
}

.admin-tab-panel[hidden] {
  display: none;
}

.admin-panel,
.admin-list-panel {
  padding: 28px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.admin-panel h2,
.admin-list-panel h2 {
  margin: 0 0 18px;
  color: var(--blue-ink);
  font-size: 1.65rem;
}

.admin-form {
  display: grid;
  gap: 14px;
}

.admin-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.admin-form label {
  display: grid;
  gap: 8px;
  color: var(--blue-dark);
  font-size: 0.9rem;
  font-weight: 900;
}

.admin-form input,
.admin-form textarea,
.admin-form select {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.admin-form textarea {
  min-height: 150px;
  resize: vertical;
}

.admin-form input:focus,
.admin-form textarea:focus,
.admin-form select:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(56, 81, 147, 0.12);
}

.admin-checkbox {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 4px;
  font-weight: 900;
}

.admin-checkbox input {
  width: 18px;
  min-height: 18px;
  height: 18px;
  padding: 0;
}

.vacancy-open-application-setting {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.admin-switch {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  color: var(--blue-ink);
  font-weight: 800;
  cursor: pointer;
}

.admin-switch input {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.admin-switch__track {
  position: relative;
  flex: 0 0 auto;
  width: 46px;
  height: 26px;
  border-radius: 999px;
  background: rgba(56, 81, 147, 0.2);
  transition: background-color 160ms ease;
}

.admin-switch__track span {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 2px 6px rgba(17, 25, 48, 0.18);
  transition: transform 160ms ease;
}

.admin-switch input:checked + .admin-switch__track {
  background: var(--blue);
}

.admin-switch input:checked + .admin-switch__track span {
  transform: translateX(20px);
}

.admin-switch input:focus-visible + .admin-switch__track {
  outline: 3px solid rgba(56, 81, 147, 0.24);
  outline-offset: 3px;
}

.vacancy-open-application-setting .admin-status {
  margin: 0;
}

.admin-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.admin-actions button {
  border: 0;
}

.admin-status {
  min-height: 22px;
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.admin-status.is-error {
  color: #ab2d4c;
}

.admin-block-builder {
  display: grid;
  gap: 16px;
  padding: 20px;
  background:
    linear-gradient(rgba(56, 81, 147, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(56, 81, 147, 0.035) 1px, transparent 1px),
    #f8fbff;
  background-size: 28px 28px, 28px 28px, auto;
  border: 1px solid rgba(56, 81, 147, 0.16);
  border-radius: var(--radius);
}

.admin-block-builder__head {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: end;
  justify-content: space-between;
}

.admin-block-builder__head h3 {
  margin: 0;
  color: var(--blue-ink);
  font-size: 1.35rem;
}

.admin-block-builder__head select {
  width: min(100%, 240px);
}

.admin-block-builder__hint {
  color: rgba(17, 25, 48, 0.62);
  font-size: 0.86rem;
  font-weight: 750;
  line-height: 1.5;
}

.admin-block-list {
  display: grid;
  gap: 14px;
}

.admin-block-item {
  display: grid;
  gap: 16px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(56, 81, 147, 0.16);
  border-radius: 12px;
}

.admin-block-item.is-dragging {
  opacity: 0.46;
}

.admin-block-item.is-drop-target {
  border-color: #385193;
  box-shadow: 0 0 0 4px rgba(56, 81, 147, 0.12);
}

.admin-block-item__bar {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
}

.admin-block-item__bar > div:first-child {
  display: flex;
  gap: 10px;
  align-items: center;
}

.admin-block-item__index {
  color: rgba(56, 81, 147, 0.66);
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 950;
  letter-spacing: 0.08em;
}

.admin-block-item__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.admin-block-item__actions .button-ghost {
  min-height: 34px;
  padding: 0 11px;
  font-size: 0.82rem;
}

.admin-block-item__actions .button-ghost:disabled {
  color: rgba(17, 25, 48, 0.32);
  cursor: not-allowed;
  background: rgba(255, 255, 255, 0.5);
}

.admin-block-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.admin-block-fields label:has(textarea) {
  grid-column: 1 / -1;
}

.admin-project-list {
  display: grid;
  gap: 12px;
}

.admin-project-item {
  display: grid;
  gap: 12px;
  padding: 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.admin-project-item h3 {
  margin: 0;
  color: var(--blue-ink);
  font-size: 1.12rem;
  line-height: 1.15;
}

.admin-project-item p {
  margin: 0;
  color: #505766;
  font-weight: 700;
  line-height: 1.55;
}

.admin-project-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.button-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 14px;
  color: var(--blue-dark);
  font-weight: 800;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.button-ghost:hover,
.button-ghost:focus-visible {
  color: var(--blue);
  border-color: rgba(56, 81, 147, 0.3);
  outline: none;
}

.button-danger {
  color: #ab2d4c;
}

.project-builder-admin {
  overflow: hidden;
  background: #eef2f8;
}

.project-builder-admin > .site-header,
.project-builder-admin > .site-footer {
  display: none;
}

.builder-main {
  display: grid;
  grid-template-columns: clamp(520px, 32vw, 620px) minmax(0, 1fr);
  height: 100svh;
  color: #111930;
}

.builder-main.is-sidebar-collapsed,
.builder-main.is-preview-fullscreen {
  grid-template-columns: minmax(0, 1fr);
}

.builder-dashboard {
  grid-column: 1 / -1;
  min-height: 100svh;
  padding: clamp(20px, 4vw, 52px);
  overflow-y: auto;
  background:
    linear-gradient(rgba(56, 81, 147, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(56, 81, 147, 0.04) 1px, transparent 1px),
    #eef2f8;
  background-size: 32px 32px;
}

.builder-dashboard[hidden],
.builder-sidebar[hidden],
.builder-canvas[hidden] {
  display: none;
}

.builder-main.is-sidebar-collapsed .builder-sidebar,
.builder-main.is-preview-fullscreen .builder-sidebar {
  display: none;
}

.builder-dashboard__top,
.builder-dashboard__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: min(1320px, 100%);
  margin: 0 auto;
}

.builder-dashboard__top {
  margin-bottom: clamp(34px, 5vw, 70px);
}

.builder-dashboard__top .brand-link {
  position: static;
  transform: none;
}

.builder-dashboard__top .brand-link__icon {
  width: 58px;
  height: 58px;
}

.builder-dashboard__head {
  align-items: end;
  margin-bottom: 24px;
}

.builder-dashboard__head p {
  margin: 0 0 8px;
  color: rgba(56, 81, 147, 0.78);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.builder-dashboard__head h1 {
  margin: 0;
  color: #111930;
  font-size: clamp(2.4rem, 5vw, 5.8rem);
  letter-spacing: 0;
  line-height: 0.95;
}

.builder-dashboard-tabs {
  display: flex;
  width: fit-content;
  margin: 0 auto 28px;
}

.builder-dashboard > .admin-tab-panel {
  width: min(1320px, 100%);
  margin: 0 auto;
}

.builder-dashboard-panel {
  gap: 20px;
}

.builder-dashboard-panel .admin-panel,
.builder-dashboard-panel .admin-list-panel {
  box-shadow: 0 20px 50px rgba(17, 25, 48, 0.06);
}

.builder-dashboard__grid {
  display: grid;
  gap: 34px;
  width: 100%;
  margin: 0;
}

.admin-project-row {
  display: grid;
  gap: 12px;
}

.admin-project-row h2 {
  margin: 0;
  color: #111930;
  font-size: 1.05rem;
  font-weight: 950;
  letter-spacing: 0;
}

.admin-project-row__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(260px, 1fr));
  gap: 18px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.64);
  border: 1px solid rgba(56, 81, 147, 0.12);
  border-radius: 18px;
  box-shadow: 0 22px 52px rgba(7, 14, 36, 0.055);
}

.admin-project-row__grid--new {
  grid-template-columns: minmax(260px, 340px);
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.admin-project-empty {
  display: grid;
  min-height: 180px;
  color: rgba(17, 25, 48, 0.56);
  font-weight: 850;
  background: rgba(255, 255, 255, 0.58);
  border: 1px dashed rgba(56, 81, 147, 0.22);
  border-radius: 14px;
  place-items: center;
}

.admin-project-card {
  position: relative;
  min-height: 350px;
  overflow: hidden;
  color: #111930;
  text-align: left;
  background: #ffffff;
  border: 1px solid rgba(56, 81, 147, 0.14);
  border-radius: 18px;
  box-shadow: 0 24px 60px rgba(7, 14, 36, 0.08);
}

.admin-project-card--board {
  display: grid;
  grid-template-rows: 176px minmax(0, 1fr);
}

.admin-project-card__media {
  min-height: 176px;
  background: linear-gradient(135deg, #101936, #385193);
}

.admin-project-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.admin-project-card__body {
  display: grid;
  gap: 12px;
  padding: 18px;
}

.admin-project-card h3 {
  margin: 0;
  color: #111930;
  font-size: 1.28rem;
  line-height: 1.1;
}

.admin-project-card p {
  display: -webkit-box;
  margin: 0;
  overflow: hidden;
  color: rgba(17, 25, 48, 0.68);
  font-weight: 750;
  line-height: 1.45;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.admin-project-card__actions {
  position: absolute;
  top: 12px;
  right: 12px;
  display: flex;
  gap: 8px;
}

.admin-project-card__icon {
  display: grid;
  width: 42px;
  height: 42px;
  color: #385193;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(56, 81, 147, 0.16);
  border-radius: 999px;
  box-shadow: 0 12px 26px rgba(7, 14, 36, 0.12);
  place-items: center;
}

.admin-project-card__icon svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.admin-project-card__icon:hover,
.admin-project-card__icon:focus-visible {
  color: #ffffff;
  background: #385193;
  outline: none;
}

.admin-project-card__icon--danger {
  color: #a3374f;
}

.admin-project-card__icon--danger:hover,
.admin-project-card__icon--danger:focus-visible {
  background: #a3374f;
}

.admin-project-card--new {
  display: grid;
  grid-template-rows: none;
  align-content: center;
  justify-items: center;
  gap: 14px;
  min-height: 280px;
  color: #385193;
  font: inherit;
  font-size: 1.2rem;
  font-weight: 950;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.68);
  border-style: dashed;
}

.admin-project-card--new:hover,
.admin-project-card--new:focus-visible {
  color: #ffffff;
  background: #385193;
  outline: none;
}

.admin-project-card__plus {
  display: grid;
  width: 74px;
  height: 74px;
  font-size: 3.1rem;
  line-height: 1;
  border: 1px solid currentColor;
  border-radius: 999px;
  place-items: center;
}

.builder-sidebar {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  min-width: 0;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.94);
  border-right: 1px solid rgba(56, 81, 147, 0.14);
  box-shadow: 18px 0 44px rgba(7, 14, 36, 0.08);
  z-index: 2;
}

.builder-sidebar__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  min-height: 68px;
  padding: 12px 16px;
  border-bottom: 1px solid rgba(56, 81, 147, 0.12);
}

.builder-sidebar__nav {
  display: flex;
  flex: 1;
  flex-wrap: nowrap;
  justify-content: flex-end;
  gap: 8px;
  min-width: 0;
}

.builder-sidebar__top .button-ghost {
  min-height: 40px;
  padding: 0 12px;
  font-size: 0.78rem;
  white-space: nowrap;
}

.builder-sidebar__top .builder-icon-button {
  display: inline-grid;
  width: 42px;
  min-width: 42px;
  height: 42px;
  min-height: 42px;
  padding: 0;
  color: #385193;
  border-radius: 10px;
  place-items: center;
}

.builder-sidebar__top .builder-icon-button svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.builder-sidebar__top .builder-icon-button:hover,
.builder-sidebar__top .builder-icon-button:focus-visible {
  color: #ffffff;
  background: #385193;
  border-color: #385193;
}

.builder-sidebar__top .brand-link {
  position: static;
  transform: none;
}

.builder-sidebar__top .brand-link__icon {
  width: 48px;
  height: 48px;
}

.builder-sidebar-form {
  align-content: start;
  gap: 12px;
  min-height: 0;
  padding: 14px;
  overflow-x: hidden;
  overflow-y: auto;
}

.builder-sidebar-form details {
  display: grid;
  overflow: visible;
  background: #ffffff;
  border: 1px solid rgba(56, 81, 147, 0.14);
  border-radius: 12px;
}

.builder-sidebar-form summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 44px;
  padding: 0 16px;
  color: rgba(17, 25, 48, 0.72);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  background: #ffffff;
}

.builder-sidebar-form summary::after {
  content: "+";
  color: #385193;
  font-size: 1.1rem;
}

.builder-sidebar-form details[open] summary::after {
  content: "-";
}

.builder-field-stack,
.builder-inspector,
.admin-block-builder {
  display: grid;
  gap: 11px;
  padding: 2px 16px 16px;
  min-height: 0;
  overflow: visible;
}

.builder-field-stack {
  max-height: none;
}

.builder-inspector {
  max-height: none;
}

.builder-control-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
}

.builder-control-row select {
  min-height: 44px;
}

.builder-palette {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  padding: 2px 16px 16px;
  overflow: visible;
}

.builder-palette button {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 8px;
  align-items: center;
  min-height: 48px;
  padding: 0 12px;
  color: #385193;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 950;
  text-align: left;
  cursor: pointer;
  background: #f8fbff;
  border: 1px solid rgba(56, 81, 147, 0.16);
  border-radius: 10px;
  transition:
    color 0.18s ease,
    background 0.18s ease,
    border-color 0.18s ease,
    transform 0.18s ease;
}

.builder-palette button svg {
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.builder-palette button span {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.builder-palette button:hover,
.builder-palette button:focus-visible {
  color: #ffffff;
  background: #385193;
  border-color: #385193;
  outline: none;
  transform: translateY(-1px);
}

.builder-palette button.is-dragging {
  opacity: 0.48;
}

.project-builder-admin .admin-block-builder {
  max-height: none;
  padding-top: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
}

.project-builder-admin .admin-block-list {
  gap: 8px;
}

.builder-sidebar-form details::-webkit-scrollbar,
.builder-field-stack::-webkit-scrollbar,
.builder-inspector::-webkit-scrollbar,
.builder-palette::-webkit-scrollbar,
.project-builder-admin .admin-block-builder::-webkit-scrollbar {
  width: 8px;
}

.builder-sidebar-form details::-webkit-scrollbar-thumb,
.builder-field-stack::-webkit-scrollbar-thumb,
.builder-inspector::-webkit-scrollbar-thumb,
.builder-palette::-webkit-scrollbar-thumb,
.project-builder-admin .admin-block-builder::-webkit-scrollbar-thumb {
  background: rgba(56, 81, 147, 0.28);
  border-radius: 999px;
}

.project-builder-admin .admin-block-item {
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  width: 100%;
  min-height: 46px;
  padding: 0 12px;
  color: #111930;
  font: inherit;
  text-align: left;
  cursor: grab;
  background: #f8fbff;
  border: 1px solid rgba(56, 81, 147, 0.14);
  border-radius: 12px;
}

.project-builder-admin .admin-block-item:active {
  cursor: grabbing;
}

.project-builder-admin .admin-block-item.is-active {
  color: #ffffff;
  background: #385193;
  border-color: #385193;
  box-shadow: 0 14px 28px rgba(56, 81, 147, 0.2);
}

.project-builder-admin .admin-block-item__index {
  color: currentColor;
  opacity: 0.6;
}

.admin-block-item__drag {
  color: currentColor;
  font-weight: 950;
  letter-spacing: -0.16em;
  opacity: 0.42;
  transform: rotate(90deg);
}

.builder-inspector__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.builder-inspector__head strong {
  color: #111930;
  font-size: 1rem;
}

.builder-inspector__head .button-ghost {
  min-height: 34px;
  padding: 0 10px;
  font-size: 0.82rem;
}

.builder-upload-field {
  display: grid;
  gap: 10px;
}

.builder-upload-label {
  color: #111930;
  font-size: 0.94rem;
  font-weight: 950;
}

.builder-upload-control {
  position: relative;
  display: grid;
  min-height: 76px;
  padding: 14px;
  color: #385193;
  font-size: 0.9rem;
  font-weight: 900;
  text-align: center;
  cursor: pointer;
  background: #f8fbff;
  border: 1px dashed rgba(56, 81, 147, 0.34);
  border-radius: 12px;
  place-items: center;
  transition:
    color 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease;
}

.builder-upload-control span {
  display: block;
}

.builder-upload-control small {
  display: block;
  margin-top: 4px;
  color: rgba(17, 25, 48, 0.52);
  font-size: 0.72rem;
  font-weight: 800;
}

.builder-upload-control:hover,
.builder-upload-control:focus-within {
  color: #ffffff;
  background: #385193;
  border-color: #385193;
}

.builder-upload-control:hover small,
.builder-upload-control:focus-within small {
  color: rgba(255, 255, 255, 0.76);
}

.builder-upload-control input[type="file"] {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: 0;
  padding: 0;
  cursor: pointer;
  opacity: 0;
}

.builder-upload-preview {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border: 1px solid rgba(56, 81, 147, 0.14);
  border-radius: 12px;
}

.builder-gallery-field {
  display: grid;
  gap: 12px;
}

.builder-gallery-list {
  display: grid;
  gap: 10px;
}

.builder-gallery-empty {
  padding: 18px;
  color: rgba(17, 25, 48, 0.56);
  font-size: 0.9rem;
  font-weight: 800;
  text-align: center;
  background: #f8fbff;
  border: 1px solid rgba(56, 81, 147, 0.14);
  border-radius: 12px;
}

.builder-gallery-item {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 12px;
  padding: 10px;
  background: #ffffff;
  border: 1px solid rgba(56, 81, 147, 0.14);
  border-radius: 12px;
  box-shadow: 0 10px 24px rgba(7, 14, 36, 0.05);
}

.builder-gallery-item img {
  width: 100%;
  height: 78px;
  object-fit: cover;
  background: #f8fbff;
  border-radius: 8px;
}

.builder-gallery-item__body {
  display: grid;
  gap: 8px;
  min-width: 0;
}

.builder-gallery-item__body input {
  min-height: 38px;
  padding: 0 12px;
  font-size: 0.9rem;
  border-radius: 9px;
}

.builder-gallery-item__actions {
  display: flex;
  gap: 6px;
}

.builder-gallery-item__actions button {
  display: inline-grid;
  width: 36px;
  height: 34px;
  padding: 0;
  color: #385193;
  cursor: pointer;
  background: #f8fbff;
  border: 1px solid rgba(56, 81, 147, 0.16);
  border-radius: 9px;
  place-items: center;
}

.builder-gallery-item__actions button:hover,
.builder-gallery-item__actions button:focus-visible {
  color: #ffffff;
  background: #385193;
  border-color: #385193;
  outline: none;
}

.builder-gallery-item__actions button:disabled {
  color: rgba(17, 25, 48, 0.24);
  cursor: not-allowed;
  background: #f3f5f8;
  border-color: rgba(17, 25, 48, 0.08);
}

.builder-gallery-item__actions button svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.4;
}

.project-builder-admin .admin-block-fields {
  grid-template-columns: 1fr;
}

.project-builder-admin .admin-form input,
.project-builder-admin .admin-form textarea,
.project-builder-admin .admin-form select {
  min-height: 42px;
  padding: 10px 12px;
  border-radius: 10px;
  font-size: 0.9rem;
  line-height: 1.35;
}

.project-builder-admin .admin-form textarea {
  min-height: 104px;
}

.builder-actions {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}

.builder-actions .primary-link {
  width: 100%;
  min-height: 48px;
}

.project-builder-admin .admin-status {
  font-size: 0.86rem;
  line-height: 1.35;
}

.builder-sidebar__footer {
  display: grid;
  gap: 10px;
  padding: 12px 14px 14px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), #ffffff 30%);
  border-top: 1px solid rgba(56, 81, 147, 0.12);
  box-shadow: 0 -16px 32px rgba(7, 14, 36, 0.06);
}

.builder-status-toast {
  min-height: 0;
  padding: 10px 12px;
  color: #385193;
  background: rgba(56, 81, 147, 0.08);
  border: 1px solid rgba(56, 81, 147, 0.14);
  border-radius: 10px;
}

.builder-status-toast:empty {
  display: none;
}

.builder-status-toast.is-error {
  color: #ab2d4c;
  background: rgba(171, 45, 76, 0.08);
  border-color: rgba(171, 45, 76, 0.18);
}

.builder-canvas {
  position: relative;
  min-width: 0;
  height: 100svh;
  padding: clamp(18px, 2.2vw, 34px);
  overflow-y: auto;
  overflow-x: hidden;
  background:
    linear-gradient(rgba(56, 81, 147, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(56, 81, 147, 0.04) 1px, transparent 1px),
    #eef2f8;
  background-size: 32px 32px;
}

.builder-main.is-sidebar-collapsed .builder-canvas,
.builder-main.is-preview-fullscreen .builder-canvas {
  grid-column: 1 / -1;
}

.builder-main.is-preview-fullscreen .builder-canvas {
  padding: 0;
  background: #eef2f8;
}

.builder-canvas__tools {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  width: min(100%, 1320px);
  margin: 0 auto 12px;
  pointer-events: none;
}

.builder-canvas__tools .button-ghost {
  min-height: 40px;
  padding: 0 14px;
  pointer-events: auto;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 14px 32px rgba(7, 14, 36, 0.1);
}

.builder-canvas__tools [data-builder-sidebar-restore],
.builder-canvas__tools [data-builder-fullscreen-exit] {
  display: none;
}

.builder-main.is-sidebar-collapsed .builder-canvas__tools [data-builder-sidebar-restore],
.builder-main.is-preview-fullscreen .builder-canvas__tools [data-builder-fullscreen-exit] {
  display: inline-flex;
}

.builder-preview {
  width: min(100%, 1320px);
  min-height: 100svh;
  margin: 0 auto;
  overflow: hidden;
  background: #f8fbff;
  border: 1px solid rgba(56, 81, 147, 0.12);
  border-radius: 16px;
  box-shadow: 0 24px 70px rgba(7, 14, 36, 0.08);
}

.builder-main.is-preview-fullscreen .builder-preview {
  width: 100%;
  min-height: 100svh;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.builder-preview .project-builder-page {
  min-height: 100svh;
  padding-top: 0;
}

.builder-preview .project-builder-breadcrumb,
.builder-preview .project-builder-hero,
.builder-preview .project-builder-section,
.builder-preview .project-builder-meta,
.builder-preview .project-builder-metrics,
.builder-preview .project-builder-cta {
  width: min(1120px, calc(100% - clamp(32px, 6vw, 72px)));
}

.builder-preview .project-builder-hero {
  width: 100%;
  min-height: 560px;
}

.project-builder-admin .builder-preview .project-builder-hero {
  min-height: clamp(420px, 58svh, 640px);
  padding: clamp(34px, 5vw, 70px);
}

.project-builder-admin .builder-preview .project-builder-hero__copy {
  width: min(840px, 100%);
}

.project-builder-admin .builder-preview .project-builder-hero__copy h1 {
  max-width: min(12ch, 100%);
  font-size: clamp(2.8rem, 5.2vw, 5.8rem);
  letter-spacing: -0.045em;
  overflow-wrap: break-word;
  text-wrap: balance;
}

.project-builder-admin .builder-preview .project-builder-hero__subtitle {
  max-width: min(740px, 100%);
  font-size: clamp(1rem, 1.5vw, 1.28rem);
  overflow-wrap: break-word;
}

.builder-preview .project-builder-meta {
  width: 100%;
}

.project-builder-admin .builder-preview .project-builder-meta {
  grid-template-columns: 1.1fr 0.7fr 0.8fr 1.45fr 0.8fr;
  overflow-x: auto;
}

.project-builder-admin .builder-preview .project-builder-meta > div,
.project-builder-admin .builder-preview .project-builder-meta > div:nth-child(odd) {
  min-width: 136px;
  padding: 0 clamp(16px, 2.6vw, 42px);
  border-bottom: 0;
  border-left: 1px solid rgba(17, 25, 48, 0.1);
}

.project-builder-admin .builder-preview .project-builder-meta > div:first-child {
  padding-left: 0;
  border-left: 0;
}

.project-builder-admin .builder-preview .project-builder-metrics {
  overflow: hidden;
}

.project-builder-admin .builder-preview .project-builder-metric {
  min-width: 0;
  padding: clamp(24px, 3vw, 40px) clamp(18px, 2.8vw, 34px);
}

.project-builder-admin .builder-preview .project-builder-metric strong {
  max-width: 100%;
  font-size: clamp(1.5rem, 2.55vw, 3.2rem);
  letter-spacing: -0.035em;
  overflow-wrap: anywhere;
  text-wrap: balance;
}

.project-builder-admin .builder-preview .project-builder-metric span {
  max-width: 100%;
  overflow-wrap: break-word;
}

.builder-preview-block {
  position: relative;
  padding: 10px 0;
  cursor: pointer;
}

.builder-preview-block::before {
  position: absolute;
  inset: 0 18px;
  z-index: 3;
  content: "";
  pointer-events: none;
  border: 1px solid transparent;
  border-radius: 14px;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.builder-preview-block:hover::before {
  border-color: rgba(56, 81, 147, 0.34);
}

.builder-preview-block.is-selected::before {
  border-color: #385193;
  box-shadow: 0 0 0 4px rgba(56, 81, 147, 0.12);
}

.builder-preview-block.is-dragging {
  opacity: 0.42;
}

.builder-preview-block.is-drop-before::after,
.builder-preview-block.is-drop-after::after {
  position: absolute;
  left: 30px;
  right: 30px;
  z-index: 9;
  height: 6px;
  content: "";
  background: #385193;
  border-radius: 999px;
  box-shadow: 0 0 0 6px rgba(56, 81, 147, 0.14);
}

.builder-preview-block.is-drop-before::after {
  top: 0;
}

.builder-preview-block.is-drop-after::after {
  bottom: 0;
}

.builder-preview-toolbar {
  position: absolute;
  top: 2px;
  right: 34px;
  z-index: 8;
  display: none;
  gap: 2px;
  padding: 3px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(56, 81, 147, 0.16);
  border-radius: 0 0 10px 10px;
  box-shadow: 0 10px 22px rgba(7, 14, 36, 0.12);
  transform: translateY(-100%);
}

.builder-preview-block.is-selected > .builder-preview-toolbar,
.builder-preview-block:hover > .builder-preview-toolbar {
  display: flex;
}

.builder-preview-toolbar button {
  display: inline-grid;
  width: 32px;
  height: 30px;
  min-height: 30px;
  padding: 0;
  color: #385193;
  font: inherit;
  cursor: pointer;
  background: transparent;
  border: 0;
  border-radius: 7px;
  place-items: center;
}

.builder-preview-toolbar button svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.builder-preview-toolbar__type {
  color: currentColor;
  font-size: 0.78rem;
  font-weight: 950;
  line-height: 1;
  letter-spacing: -0.04em;
}

.builder-preview-toolbar__type--small {
  font-size: 0.7rem;
}

.builder-preview-toolbar button:hover,
.builder-preview-toolbar button:focus-visible {
  color: #ffffff;
  background: #385193;
  outline: none;
}

.builder-preview-toolbar [data-preview-remove]:hover,
.builder-preview-toolbar [data-preview-remove]:focus-visible {
  background: #a3374f;
}

.builder-preview [contenteditable="true"],
.builder-preview [data-preview-list-field] {
  cursor: text;
  outline: 0;
  border-radius: 6px;
}

.builder-preview [contenteditable="true"]:hover,
.builder-preview [data-preview-list-field]:hover {
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.22), 0 0 0 4px rgba(56, 81, 147, 0.18);
}

.builder-preview [contenteditable="true"]:focus,
.builder-preview [data-preview-list-field]:focus {
  background: rgba(255, 255, 255, 0.14);
  box-shadow: 0 0 0 2px #ffffff, 0 0 0 5px rgba(56, 81, 147, 0.34);
}

.builder-preview .project-builder-section [contenteditable="true"]:focus,
.builder-preview .project-builder-section [data-preview-list-field]:focus,
.builder-preview .project-builder-metrics [contenteditable="true"]:focus,
.builder-preview .project-builder-metrics [data-preview-list-field]:focus {
  background: rgba(56, 81, 147, 0.06);
  box-shadow: 0 0 0 2px #ffffff, 0 0 0 5px rgba(56, 81, 147, 0.22);
}

.builder-hidden-admin {
  display: none;
}

@media (max-width: 1280px) {
  .builder-main {
    grid-template-columns: minmax(460px, 0.36fr) minmax(0, 1fr);
  }

  .builder-main.is-sidebar-collapsed,
  .builder-main.is-preview-fullscreen {
    grid-template-columns: minmax(0, 1fr);
  }

  .builder-sidebar__top {
    align-items: flex-start;
    gap: 8px;
  }

  .builder-sidebar__nav {
    gap: 6px;
  }

  .builder-sidebar__top .button-ghost {
    min-height: 36px;
    padding: 0 10px;
    font-size: 0.72rem;
  }

  .builder-sidebar__top .builder-icon-button {
    width: 38px;
    min-width: 38px;
    height: 38px;
    min-height: 38px;
    padding: 0;
  }

  .builder-sidebar__top .builder-icon-button svg {
    width: 18px;
    height: 18px;
  }
}

@media (max-width: 980px) {
  .project-builder-admin {
    overflow: auto;
  }

  .builder-main {
    grid-template-columns: 1fr;
    height: auto;
    min-height: 100svh;
  }

  .builder-sidebar,
  .builder-canvas {
    height: auto;
    min-height: 0;
  }

  .builder-sidebar {
    position: relative;
  }

  .admin-project-row__grid {
    grid-template-columns: repeat(3, minmax(260px, 1fr));
    overflow-x: auto;
    scroll-snap-type: x proximity;
  }

  .admin-project-card {
    scroll-snap-align: start;
  }

  .builder-canvas {
    min-height: 70svh;
  }
}

.hero {
  position: relative;
  min-height: calc(92svh - var(--header-height));
  padding: 54px 0 28px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(56, 81, 147, 0.08) 1px, transparent 1px),
    linear-gradient(0deg, rgba(56, 81, 147, 0.06) 1px, transparent 1px),
    var(--paper);
  background-size: 72px 72px;
}

.hero::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 110px;
  content: "";
  background: var(--white);
  clip-path: polygon(0 54%, 100% 0, 100% 100%, 0 100%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(420px, 1.14fr);
  align-items: center;
  gap: 58px;
}

.hero-copy {
  max-width: 640px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 16px;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.section-kicker--light {
  color: rgba(255, 255, 255, 0.66);
}

.hero h1 {
  margin: 0;
  color: var(--blue-dark);
  font-size: 5.25rem;
  line-height: 0.94;
  letter-spacing: 0;
}

.hero-lede {
  max-width: 560px;
  margin: 26px 0 0;
  color: #3b4150;
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1.45;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 36px;
}

.hero-stage {
  position: relative;
  min-height: 520px;
  isolation: isolate;
}

.stage-shape {
  position: absolute;
  inset: 78px 0 40px 34px;
  z-index: -1;
  background: var(--blue);
  border-radius: 48% 38% 50% 36% / 36% 42% 43% 52%;
  box-shadow: var(--shadow);
}

.stage-shape::after {
  position: absolute;
  right: 36px;
  bottom: 30px;
  width: 64%;
  height: 35%;
  content: "";
  background: rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  transform: rotate(-8deg);
}

.machine {
  position: absolute;
  user-select: none;
  pointer-events: none;
  filter: drop-shadow(0 24px 34px rgba(7, 14, 36, 0.16));
  transition: transform 220ms ease-out;
  will-change: transform;
}

.machine--plant {
  top: 4px;
  right: -60px;
  width: 102%;
  animation: slow-lift 8s ease-in-out infinite;
}

.machine--truck {
  bottom: 6px;
  left: -12px;
  width: 48%;
  animation: slow-lift 7s ease-in-out 900ms infinite;
}

.flow-line {
  position: absolute;
  right: 52px;
  bottom: 104px;
  display: flex;
  gap: 10px;
  transform: rotate(-13deg);
}

.flow-line span {
  width: 52px;
  height: 8px;
  background: rgba(255, 255, 255, 0.86);
  border-radius: 999px;
  animation: stream 1200ms ease-in-out infinite;
}

.flow-line span:nth-child(2) {
  animation-delay: 120ms;
}

.flow-line span:nth-child(3) {
  animation-delay: 240ms;
}

.flow-line span:nth-child(4) {
  animation-delay: 360ms;
}

.hero-metrics {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 32px;
  overflow: hidden;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 16px 48px rgba(15, 24, 52, 0.08);
}

.metric {
  min-height: 132px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.92);
}

.metric strong {
  display: block;
  color: var(--blue);
  font-size: 2rem;
  line-height: 1.05;
}

.metric span:last-child {
  display: block;
  max-width: 280px;
  margin-top: 12px;
  color: var(--muted);
  font-weight: 700;
  line-height: 1.45;
}

.mission,
.products,
.contact {
  padding: 118px 0;
  background: var(--ice-soft);
}

.mission {
  border-top: 1px solid rgba(56, 81, 147, 0.12);
}

.mission-grid,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.8fr);
  gap: 72px;
  align-items: start;
}

.section-copy h2,
.section-heading h2,
.chain-copy h2,
.problem-intro h2,
.contact-copy h2 {
  margin: 0;
  font-size: 3.25rem;
  font-weight: 950;
  line-height: 1.06;
  letter-spacing: 0;
}

.mission-text p,
.chain-copy p,
.contact-copy p {
  margin: 0;
  color: #454b59;
  font-size: 1.08rem;
  font-weight: 500;
  line-height: 1.72;
}

.check-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 30px 0 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding: 14px 14px 14px 44px;
  font-weight: 700;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.check-list li::before {
  position: absolute;
  top: 13px;
  left: 14px;
  width: 18px;
  height: 18px;
  content: "";
  background: var(--blue);
  border-radius: 50%;
  box-shadow: inset 0 0 0 5px var(--white);
}

.problem-band {
  padding: 118px 0;
  color: var(--white);
  background:
    radial-gradient(circle at 12% 20%, rgba(255, 255, 255, 0.14) 0 1px, transparent 2px),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 14px),
    var(--blue-dark);
  background-size: 120px 120px, auto, auto;
}

.problem-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(440px, 1fr);
  gap: 68px;
  align-items: start;
}

.problem-intro h2 {
  max-width: 680px;
  color: var(--white);
}

.problem-story {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.problem-card {
  min-height: 360px;
  padding: 32px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius);
}

.problem-card--dark {
  margin-top: 74px;
  background: var(--blue-dark);
  border-color: rgba(255, 255, 255, 0.18);
}

.problem-number {
  display: block;
  margin-bottom: 28px;
  font-size: 5rem;
  font-weight: 950;
  line-height: 1;
}

.problem-card h3 {
  margin: 0 0 14px;
  font-size: 1.15rem;
}

.problem-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 700;
  line-height: 1.6;
}

.chain {
  padding: 124px 0;
  overflow: hidden;
  background: var(--white);
}

.chain-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.76fr) minmax(0, 1.24fr);
  gap: 68px;
  align-items: center;
}

.chain-copy p {
  margin-top: 24px;
}

.step-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 34px;
}

.step-button {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 12px;
  min-height: 72px;
  padding: 14px;
  color: var(--ink);
  text-align: left;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.step-button span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 950;
  background: rgba(56, 81, 147, 0.1);
  border-radius: 50%;
}

.step-button strong {
  font-size: 1rem;
}

.step-button:hover,
.step-button:focus-visible,
.step-button.is-active {
  color: var(--white);
  background: var(--blue);
  border-color: var(--blue);
  outline: none;
  transform: translateY(-2px);
}

.step-button:hover span,
.step-button:focus-visible span,
.step-button.is-active span {
  color: var(--blue);
  background: var(--white);
}

.chain-visual {
  position: relative;
  min-height: 600px;
  padding: 24px 0 0 42px;
}

.process-map {
  position: absolute;
  top: 42px;
  bottom: 42px;
  left: 0;
  width: 10px;
}

.process-track,
.process-fill {
  position: absolute;
  left: 4px;
  width: 2px;
  border-radius: 999px;
}

.process-track {
  top: 0;
  bottom: 0;
  background: var(--mist);
}

.process-fill {
  top: 0;
  height: 0%;
  background: var(--blue);
  transition: height 320ms ease;
}

.process-dot {
  position: absolute;
  left: -7px;
  width: 18px;
  height: 18px;
  background: var(--white);
  border: 2px solid var(--mist);
  border-radius: 50%;
  transition: background 220ms ease, border-color 220ms ease, transform 220ms ease;
}

.process-dot:nth-of-type(3) {
  top: 0;
}

.process-dot:nth-of-type(4) {
  top: 33.33%;
}

.process-dot:nth-of-type(5) {
  top: 66.66%;
}

.process-dot:nth-of-type(6) {
  top: 100%;
}

.process-dot.is-active {
  background: var(--blue);
  border-color: var(--blue);
  transform: scale(1.2);
}

.process-stage {
  position: relative;
  display: grid;
  min-height: 580px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.78) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.64) 1px, transparent 1px),
    var(--blue);
  background-size: 54px 54px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.process-stage::before {
  position: absolute;
  inset: 48px;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: var(--radius);
}

.process-stage img {
  position: absolute;
  right: -16%;
  bottom: -6%;
  width: 104%;
  max-width: none;
  filter: drop-shadow(0 32px 44px rgba(0, 0, 0, 0.22));
  transition: opacity 220ms ease, transform 380ms ease;
}

.process-card {
  position: absolute;
  left: 36px;
  bottom: 36px;
  width: min(360px, calc(100% - 72px));
  padding: 24px;
  color: var(--blue-dark);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: var(--radius);
  backdrop-filter: blur(16px);
}

.process-card p:first-child,
.product-detail p,
.project-feature p {
  margin: 0 0 10px;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.process-card h3 {
  margin: 0;
  font-size: 1.7rem;
  line-height: 1.12;
}

.process-card p:last-child {
  margin: 14px 0 0;
  color: #3f4656;
  font-weight: 700;
  line-height: 1.55;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 36px;
  max-width: 980px;
  margin-bottom: 42px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.product-card {
  position: relative;
  min-height: 350px;
  padding: 22px;
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.product-card::after {
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  content: "";
  background: linear-gradient(180deg, transparent, rgba(9, 17, 39, 0.08));
  pointer-events: none;
}

.product-card:hover,
.product-card:focus-within,
.product-card.is-selected {
  border-color: rgba(56, 81, 147, 0.42);
  box-shadow: 0 20px 42px rgba(15, 24, 52, 0.11);
  transform: translateY(-4px);
}

.product-card.is-selected {
  background: #eef2f8;
}

.product-card.is-selected button {
  background: var(--blue-dark);
}

.product-card h3 {
  position: relative;
  z-index: 1;
  margin: 170px 0 10px;
  font-size: 1.35rem;
}

.product-card p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #515765;
  font-weight: 700;
  line-height: 1.55;
}

.product-card button {
  position: absolute;
  right: 18px;
  bottom: 18px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--white);
  background: var(--blue);
  border: 0;
  border-radius: 50%;
  transition: transform 180ms ease, background 180ms ease;
}

.product-card button:hover,
.product-card button:focus-visible {
  background: var(--blue-deep);
  outline: none;
  transform: translateX(2px);
}

.material {
  position: absolute;
  top: 22px;
  left: 22px;
  right: 22px;
  height: 140px;
  overflow: hidden;
  border: 1px solid rgba(9, 17, 39, 0.12);
  border-radius: var(--radius);
  background: #ece7dc;
}

.material::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    radial-gradient(circle at 20% 74%, rgba(255, 255, 255, 0.5) 0 2px, transparent 3px),
    radial-gradient(circle at 80% 28%, rgba(255, 255, 255, 0.32) 0 2px, transparent 3px),
    radial-gradient(circle at 48% 48%, rgba(0, 0, 0, 0.18) 0 1px, transparent 2px),
    linear-gradient(160deg, var(--mat-a), var(--mat-b));
}

.material::after {
  position: absolute;
  right: -12%;
  bottom: -26%;
  width: 120%;
  height: 60%;
  content: "";
  background: rgba(255, 255, 255, 0.32);
  border-radius: 50% 50% 0 0;
  transform: rotate(-6deg);
}

.material img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 72%;
}

.material--photo::before,
.material--photo::after {
  content: none;
  display: none;
}

.material--zand img,
.material--leem img,
.material--klei img,
.material--organisch img {
  display: block;
}

.material--zand img {
  object-position: center 76%;
}

.material--leem img {
  object-position: center 78%;
}

.material--klei img {
  object-position: center 76%;
}

.material--organisch img {
  object-position: center 76%;
}

.material--zand {
  --mat-a: #d6d0c2;
  --mat-b: #9a9c96;
}

.material--leem {
  --mat-a: #a8a99f;
  --mat-b: #747870;
}

.material--klei {
  --mat-a: #9da1a0;
  --mat-b: #64696b;
}

.material--organisch {
  --mat-a: #777b69;
  --mat-b: #343d32;
}

.product-detail {
  display: grid;
  grid-template-columns: minmax(220px, 0.6fr) minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  margin-top: 18px;
  padding: 28px;
  color: var(--white);
  background: var(--blue-dark);
  border-radius: var(--radius);
}

.product-detail h3 {
  margin: 0;
  font-size: 1.8rem;
  line-height: 1.15;
}

.product-detail span {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 700;
  line-height: 1.6;
}

.projects {
  padding: 120px 0;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    var(--blue-dark);
  background-size: 70px 70px;
}

.project-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(260px, 0.6fr);
  gap: 16px;
}

.project-feature {
  position: relative;
  min-height: 520px;
  padding: 34px;
  overflow: hidden;
  background: var(--blue);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
}

.project-feature img {
  position: absolute;
  right: -120px;
  bottom: -100px;
  width: 92%;
  max-width: none;
  opacity: 0.66;
  filter: drop-shadow(0 28px 42px rgba(0, 0, 0, 0.28));
}

.project-feature div {
  position: relative;
  z-index: 1;
  max-width: 520px;
}

.project-feature h3 {
  margin: 0;
  font-size: 2.6rem;
  line-height: 1.05;
}

.project-feature a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 0 15px;
  margin-top: 28px;
  color: var(--blue-dark);
  font-weight: 900;
  background: var(--white);
  border-radius: var(--radius);
}

.project-side {
  min-height: 252px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
}

.project-side--blue {
  background: var(--white);
  color: var(--blue-dark);
}

.project-side h3 {
  margin: 0 0 14px;
  font-size: 1.55rem;
}

.project-side p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-weight: 700;
  line-height: 1.62;
}

.project-side--blue p {
  color: #4f5563;
}

.contact-grid {
  align-items: center;
}

.contact-form {
  display: grid;
  gap: 14px;
  padding: 28px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--blue-dark);
  font-size: 0.9rem;
  font-weight: 900;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.contact-form input {
  height: 48px;
  padding: 0 14px;
}

.contact-form textarea {
  min-height: 132px;
  padding: 12px 14px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(56, 81, 147, 0.12);
}

.contact-form button {
  width: fit-content;
  border: 0;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.site-footer {
  padding: 34px 0;
  background: var(--white);
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-grid img {
  width: 190px;
}

.footer-grid nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  color: var(--muted);
  font-weight: 800;
}

.footer-grid a:hover,
.footer-grid a:focus-visible {
  color: var(--blue);
  outline: none;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.hero .reveal {
  opacity: 1;
  transform: none;
}

.page-hero .reveal {
  opacity: 1;
  transform: none;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes slow-lift {
  0%,
  100% {
    translate: 0 0;
  }

  50% {
    translate: 0 -10px;
  }
}

@keyframes container-float {
  0%,
  100% {
    translate: 0 0;
  }

  50% {
    translate: 0 -12px;
  }
}

@keyframes stream {
  0%,
  100% {
    opacity: 0.35;
    transform: translateX(0);
  }

  50% {
    opacity: 1;
    transform: translateX(8px);
  }
}

.login-page {
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 32px;
  background: linear-gradient(135deg, #070f24 0%, #132755 52%, #20386f 100%);
}

.login-section {
  width: min(560px, 100%);
}

.login-card {
  display: grid;
  gap: 18px;
  padding: clamp(28px, 5vw, 46px);
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(201, 235, 255, 0.22);
  border-radius: 18px;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.26);
}

.login-card img {
  width: 112px;
  height: auto;
}

.login-card h1 {
  margin: 0;
  color: var(--blue-ink);
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 6vw, 4rem);
  letter-spacing: -0.05em;
  line-height: 0.98;
}

.login-card > p:not(.section-kicker) {
  margin: 0 0 8px;
  color: rgba(17, 25, 48, 0.68);
  font-weight: 700;
  line-height: 1.55;
}

@keyframes home-mobile-menu-in {
  from {
    opacity: 0;
    clip-path: inset(0 0 100% 0 round 0 0 32px 32px);
    transform: translateY(-6px) scaleY(0.98);
  }

  to {
    opacity: 1;
    clip-path: inset(0 0 0 0 round 0 0 32px 32px);
    transform: translateY(0) scaleY(1);
  }
}

@media (max-width: 1080px) {
  .site-header,
  body[data-page="home"] .site-header,
  body:not([data-page="home"]) .site-header {
    position: fixed;
    right: 0;
    left: 0;
    padding-bottom: 0;
    background: transparent;
    border-bottom: 0;
    box-shadow: none;
  }

  body:not([data-page="home"]):not([data-page="service-detail"]) main > section:first-child,
  body[data-page="het-plan"] .plan-intro-section,
  body[data-page="projecten"]:not(:has([data-project-admin])) .project-board-section--index,
  body[data-page="services"] .service-index-hero,
  body[data-page="over-ons"] .about-story-section,
  body[data-page="contact"] .contact-hero-section,
  body[data-page="product-spec"] .product-spec-section {
    padding-top: clamp(154px, 18vw, 210px);
  }

  body:not([data-page="home"]) .site-header .language-toggle {
    display: none;
  }

  .main-nav {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  body[data-page="home"] .nav-actions .icon-button--desktop {
    display: none;
  }

  .hero-grid,
  .mission-grid,
  .problem-grid,
  .chain-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-stage {
    min-height: 470px;
  }

  .problem-story,
  .product-grid,
  .project-layout {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .project-feature {
    grid-column: 1 / -1;
  }

  .chain-visual {
    min-height: auto;
  }

  .page-hero-grid,
  .cta-band .section-inner {
    grid-template-columns: 1fr;
  }

  .hero-editorial .hero-grid {
    min-height: 720px;
  }

  .hero-editorial h1 {
    max-width: 820px;
    font-size: 5.8rem;
  }

  .container-hero {
    right: -90px;
    bottom: 82px;
    width: 610px;
  }

  .hero-panel {
    grid-template-columns: 1fr;
    margin-top: -24px;
  }

  .teaser-grid,
  .feature-grid,
  .info-grid,
  .stat-grid,
  .teaser-grid--four,
  .feature-grid--four {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .blog-featured,
  .detail-header,
  .detail-layout,
  .project-board-row,
  .admin-shell {
    grid-template-columns: 1fr;
  }

  .blog-grid,
  .project-board-row__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .project-board-card {
    flex-basis: 50%;
    margin-top: 0;
    margin-bottom: 0;
  }

  .project-board-card:nth-child(3n + 1) {
    border-left: 1px solid rgba(56, 81, 147, 0.16);
  }

  .project-board-card:nth-child(odd) {
    border-left: 0;
  }

  .project-board-card:nth-child(n + 3) {
    border-top: 0;
  }

  .cta-band .section-inner {
    display: grid;
    align-items: start;
  }
}

@media (max-width: 760px) {
  :root {
    --header-height: 64px;
  }

  body:not([data-page="home"]):not([data-page="service-detail"]) main > section:first-child,
  body[data-page="het-plan"] .plan-intro-section,
  body[data-page="projecten"]:not(:has([data-project-admin])) .project-board-section--index,
  body[data-page="services"] .service-index-hero,
  body[data-page="over-ons"] .about-story-section,
  body[data-page="contact"] .contact-hero-section,
  body[data-page="product-spec"] .product-spec-section {
    padding-top: clamp(138px, 28vw, 176px);
  }

  .section-inner {
    width: min(100% - 28px, 1180px);
  }

  .nav-shell {
    width: min(100% - 24px, 1220px);
    gap: 12px;
  }

  .brand-link {
    width: 178px;
    min-width: 150px;
  }

  .icon-button--desktop {
    display: none;
  }

  .hero {
    padding-top: 44px;
  }

  .hero-editorial {
    padding: 34px 0 42px;
  }

  .page-hero {
    padding: 56px 0 34px;
  }

  .hero h1 {
    max-width: 9ch;
    font-size: 2.85rem;
    line-height: 1;
  }

  .hero-editorial .hero-grid {
    min-height: auto;
  }

  .hero-editorial .hero-copy {
    padding-top: 14px;
  }

  .hero-editorial h1 {
    max-width: 8ch;
    font-size: 3.45rem;
    line-height: 0.84;
  }

  .hero-editorial h1::after {
    width: 210px;
    height: 10px;
    margin-top: 16px;
    background-size: 26px 10px;
  }

  .hero-editorial .hero-lede {
    max-width: 100%;
    font-size: 1rem;
  }

  .container-hero {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    height: 330px;
    margin-top: 24px;
  }

  .sea-container {
    top: 48px;
    left: -34px;
    width: 500px;
    transform: scale(0.78) rotate(-5deg) skewX(-8deg);
    transform-origin: left top;
  }

  .container-shadow {
    right: 4px;
    bottom: 58px;
    width: 340px;
  }

  .material-stream {
    right: 24px;
    bottom: 104px;
  }

  .material-stream span {
    width: 42px;
  }

  .hero-lede {
    font-size: 1.08rem;
  }

  .hero-actions,
  .primary-link,
  .secondary-link {
    width: 100%;
  }

  .hero-stage {
    min-height: 340px;
  }

  .stage-shape {
    inset: 66px 0 40px 0;
  }

  .machine--plant {
    right: -40px;
    width: 118%;
  }

  .machine--truck {
    width: 58%;
  }

  .flow-line {
    right: 22px;
    bottom: 76px;
  }

  .flow-line span {
    width: 32px;
  }

  .hero-metrics,
  .problem-story,
  .product-grid,
  .project-layout,
  .product-detail {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    gap: 16px;
    margin-top: 8px;
  }

  .hero-options a {
    min-height: 54px;
  }

  .page-hero-copy h1 {
    font-size: 3.15rem;
    line-height: 0.94;
  }

  .page-hero-aside {
    padding: 22px;
  }

  .page-hero-aside strong {
    font-size: 1.5rem;
  }

  .page-directory,
  .feature-section,
  .stat-section,
  .use-section,
  .faq-section,
  .contact-meta,
  .project-board-section,
  .cta-band {
    padding: 76px 0;
  }

  .teaser-grid,
  .feature-grid,
  .info-grid,
  .stat-grid,
  .teaser-grid--four,
  .feature-grid--four,
  .blog-grid,
  .project-board-row__grid {
    grid-template-columns: 1fr;
  }

  .project-board-row__label {
    padding: 0;
  }

  .project-board-card {
    flex-basis: 100%;
    margin-top: 0;
    margin-bottom: 0;
    border-top: 1px solid rgba(56, 81, 147, 0.16);
    border-left: 0;
  }

  .project-board-card:nth-child(3n + 1),
  .project-board-card:nth-child(odd) {
    border-left: 0;
  }

  .project-board-card:first-child,
  .project-board-card:nth-child(n + 3) {
    border-top: 0;
  }

  .project-board-card:nth-child(n + 2) {
    border-top: 0;
  }

  .project-board-arrow {
    width: 42px;
    height: 42px;
  }

  .project-board-arrow--prev {
    left: 10px;
  }

  .project-board-arrow--next {
    right: 10px;
  }

  .project-board-card__body {
    min-height: 170px;
    padding: 24px;
  }

  .project-board-card__media--placeholder span {
    font-size: 4rem;
  }

  .section-heading {
    display: grid;
    gap: 16px;
  }

  .teaser-card,
  .feature-card,
  .info-card,
  .stat-card {
    min-height: auto;
  }

  .cta-band h2 {
    font-size: 2.35rem;
  }

  .blog-featured__copy,
  .detail-header__copy,
  .detail-body,
  .detail-sidebar,
  .admin-panel,
  .admin-list-panel {
    padding: 22px;
  }

  .admin-form-grid {
    grid-template-columns: 1fr;
  }

  .mission,
  .products,
  .contact,
  .problem-band,
  .chain,
  .projects {
    padding: 76px 0;
  }

  .section-copy h2,
  .section-heading h2,
  .chain-copy h2,
  .problem-intro h2,
  .contact-copy h2 {
    font-size: 2.2rem;
  }

  .step-list {
    grid-template-columns: 1fr;
  }

  .problem-card,
  .problem-card--dark {
    min-height: auto;
    margin-top: 0;
  }

  .process-stage {
    min-height: 520px;
  }

  .process-stage img {
    right: -30%;
    width: 145%;
  }

  .process-card {
    left: 18px;
    bottom: 18px;
    width: calc(100% - 36px);
  }

  .product-card {
    min-height: 300px;
  }

  .product-card h3 {
    margin-top: 154px;
  }

  .project-feature {
    min-height: 430px;
  }

  .project-feature h3 {
    font-size: 2rem;
  }

  .project-feature img {
    right: -130px;
    bottom: -52px;
    width: 130%;
  }

  .footer-grid {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 430px) {
  .brand-link {
    width: 154px;
  }

  .hero h1 {
    font-size: 2.62rem;
  }

  .hero-editorial h1 {
    font-size: 3.05rem;
  }

  .sea-container {
    left: -52px;
    transform: scale(0.68) rotate(-5deg) skewX(-8deg);
  }

  .metric {
    padding: 22px;
  }

  .metric strong {
    font-size: 1.65rem;
  }

  .contact-form {
    padding: 18px;
  }
}

body[data-page="home"] {
  background: #ffffff;
}

body[data-page="home"] .site-header {
  position: fixed;
  right: 0;
  left: 0;
  background: transparent;
  border-bottom: 0;
  box-shadow: none;
}

body[data-page="home"] .nav-shell {
  width: min(1400px, calc(100% - 36px));
  height: 112px;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: clamp(34px, 5vw, 88px);
}

body[data-page="home"] .brand-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 108px;
  min-width: 108px;
  height: 108px;
  padding: 0;
  margin-left: clamp(10px, 1.6vw, 28px);
  color: #111930;
  font-size: clamp(1.75rem, 2.6vw, 2.7rem);
  font-weight: 950;
  line-height: 1;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  backdrop-filter: none;
}

body[data-page="home"] .brand-link img {
  display: block;
}

body[data-page="home"] .brand-link__icon {
  width: 96px;
  height: 96px;
  object-fit: contain;
}

body[data-page="home"] .main-nav {
  position: static;
  grid-column: 2;
  justify-self: center;
  align-self: center;
  gap: clamp(34px, 4vw, 58px);
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  backdrop-filter: none;
  transform: none;
}

body[data-page="home"] .nav-actions {
  grid-column: 3;
  align-self: center;
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 28px;
}

body[data-page="home"] .nav-actions .icon-button--desktop {
  display: inline-flex;
}

body[data-page="home"] .main-nav a,
body[data-page="home"] .mobile-menu a {
  padding: 10px 0;
  color: #ffffff;
  font-size: clamp(1.08rem, 1.22vw, 1.42rem);
  font-weight: 800;
  background: transparent;
  border-radius: 0;
}

body[data-page="home"] .language-toggle {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding-left: 30px;
}

body[data-page="home"] .language-toggle::before {
  position: absolute;
  left: 0;
  width: 1px;
  height: 34px;
  content: "";
  background: rgba(255, 255, 255, 0.42);
}

body[data-page="home"] .language-toggle a {
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(1rem, 1vw, 1.18rem);
  font-weight: 800;
  text-shadow: 0 1px 18px rgba(0, 0, 0, 0.28);
}

body[data-page="home"] .language-toggle a[aria-current="true"] {
  color: #ffffff;
}

body[data-page="home"] .menu-toggle {
  background: transparent;
  border-color: transparent;
  box-shadow: none;
}

body[data-page="home"] .menu-toggle:focus-visible {
  outline: 3px solid rgba(201, 235, 255, 0.85);
  outline-offset: 5px;
}

body[data-page="home"] .site-header.is-menu-open .nav-shell,
body[data-page="home"] .site-header:has(.menu-toggle[aria-expanded="true"]) .nav-shell {
  background:
    linear-gradient(135deg, rgba(9, 17, 39, 0.98), rgba(32, 56, 111, 0.96));
  border-color: rgba(184, 221, 255, 0.2);
  border-bottom-color: rgba(184, 221, 255, 0.08);
  border-radius: 34px 34px 0 0 !important;
  box-shadow:
    0 20px 44px rgba(7, 14, 36, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
}

body[data-page="home"] .mobile-menu {
  width: min(680px, calc(100% - 36px));
  padding: 18px 22px 22px;
  margin: -1px auto 0;
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(9, 17, 39, 0.98), rgba(32, 56, 111, 0.96));
  border: 1px solid rgba(184, 221, 255, 0.18);
  border-top: 0;
  border-radius: 0 0 34px 34px;
  box-shadow:
    0 20px 44px rgba(7, 14, 36, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(18px);
  transform-origin: top center;
  will-change: transform, opacity, clip-path;
}

body[data-page="home"] .mobile-menu:not([hidden]) {
  display: grid;
  gap: 2px;
  animation: home-mobile-menu-in 220ms cubic-bezier(0.22, 0.72, 0.24, 1) both;
}

body[data-page="home"] .mobile-menu a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 58px;
  padding: 0 8px;
  border-bottom: 1px solid rgba(201, 235, 255, 0.1);
  border-radius: 14px;
}

body[data-page="home"] .mobile-menu a:last-child {
  border-bottom: 0;
}

body[data-page="home"] .mobile-menu a::after {
  width: 9px;
  height: 9px;
  margin-left: 18px;
  content: "";
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  opacity: 0.62;
  transform: rotate(45deg);
}

body[data-page="home"] .mobile-menu a:hover,
body[data-page="home"] .mobile-menu a:focus-visible {
  color: #ffffff;
  background: rgba(201, 235, 255, 0.1);
}

body[data-page="home"] .icon-button--desktop {
  min-height: 58px;
  padding: 0 32px;
  color: #ffffff;
  font-size: clamp(1rem, 1vw, 1.16rem);
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.84);
  border-radius: 999px;
  box-shadow: none;
}

body[data-page="home"] .icon-button--desktop:hover,
body[data-page="home"] .icon-button--desktop:focus-visible {
  color: #111930;
  background: #ffffff;
  outline: none;
  transform: translateY(-2px);
}

body[data-page="home"] .site-header:not(.is-condensed) .main-nav a {
  color: rgba(255, 255, 255, 0.92);
  text-shadow: 0 1px 18px rgba(0, 0, 0, 0.34);
}

body[data-page="home"] .site-header:not(.is-condensed) .main-nav {
  position: absolute;
  top: 50%;
  left: 50%;
  grid-column: 1 / -1;
  width: max-content;
  transform: translate(-50%, -50%);
}

body[data-page="home"] .site-header:not(.is-condensed) .main-nav a:hover,
body[data-page="home"] .site-header:not(.is-condensed) .main-nav a:focus-visible,
body[data-page="home"] .site-header:not(.is-condensed) .main-nav a.is-current {
  color: #385193;
  background: rgba(56, 81, 147, 0.08);
}

body[data-page="home"] .site-header:not(.is-condensed) .icon-button {
  color: #ffffff;
  background: rgba(20, 20, 24, 0.78);
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(10px);
}

body[data-page="home"] .site-header:not(.is-condensed) .menu-toggle span {
  background: #ffffff;
}

body[data-page="home"] .site-header.is-condensed .mobile-menu,
body[data-page="home"] .site-header.is-condensed.is-over-blue .mobile-menu {
  background:
    linear-gradient(135deg, rgba(9, 17, 39, 0.98), rgba(32, 56, 111, 0.96));
  border-color: rgba(184, 221, 255, 0.18);
}

body[data-page="home"] .site-header.is-condensed .nav-shell {
  width: min(1280px, calc(100% - 56px));
  height: 60px;
  grid-template-columns: 62px minmax(0, 1fr) auto;
  gap: 18px;
  padding: 0 22px;
  background:
    linear-gradient(135deg, rgba(9, 17, 39, 0.96), rgba(32, 56, 111, 0.94));
  border-color: rgba(184, 221, 255, 0.18);
  box-shadow:
    0 14px 26px rgba(7, 14, 36, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
}

body[data-page="home"] .site-header.is-condensed .brand-link {
  width: 48px;
  min-width: 48px;
  height: 48px;
  padding: 0;
  margin-left: 0;
  font-size: 1.1rem;
  font-weight: 900;
  background: transparent;
  border: 0;
  box-shadow: none;
}

body[data-page="home"] .site-header.is-condensed .brand-link img {
  display: block;
}

body[data-page="home"] .site-header.is-condensed .brand-link__icon {
  width: 46px;
  height: 46px;
}

body[data-page="home"] .site-header.is-condensed .main-nav {
  position: absolute;
  top: 50%;
  left: 50%;
  grid-column: 1 / -1;
  justify-self: center;
  width: max-content;
  gap: clamp(16px, 2.5vw, 34px);
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  backdrop-filter: none;
  transform: translate(-50%, -50%);
}

body[data-page="home"] .site-header.is-condensed .main-nav a {
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(0.9rem, 1vw, 1rem);
  text-shadow: none;
  white-space: nowrap;
}

body[data-page="home"] .site-header.is-condensed .language-toggle::before {
  background: rgba(201, 235, 255, 0.24);
}

body[data-page="home"] .site-header.is-condensed .language-toggle a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.95rem;
  text-shadow: none;
}

body[data-page="home"] .site-header.is-condensed .language-toggle a[aria-current="true"] {
  color: #ffffff;
}

body[data-page="home"] .site-header.is-condensed .menu-toggle span {
  background: #ffffff;
}

body[data-page="home"] .site-header.is-condensed .icon-button--desktop {
  min-height: 46px;
  padding: 0 24px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.54);
  box-shadow: none;
}

body[data-page="home"] .site-header.is-condensed .icon-button--desktop:hover,
body[data-page="home"] .site-header.is-condensed .icon-button--desktop:focus-visible {
  color: #111930;
  background: #ffffff;
  border-color: #ffffff;
}

body[data-page="home"] .site-header.is-condensed .main-nav a:hover,
body[data-page="home"] .site-header.is-condensed .main-nav a:focus-visible,
body[data-page="home"] .site-header.is-condensed .main-nav a.is-current {
  color: #c9ebff;
  background: rgba(201, 235, 255, 0.1);
}

body[data-page="home"] .site-header.is-condensed.is-over-blue .nav-shell {
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(9, 17, 39, 0.96), rgba(32, 56, 111, 0.94));
  border-color: rgba(184, 221, 255, 0.18);
  box-shadow:
    0 14px 26px rgba(7, 14, 36, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

body[data-page="home"] .site-header.is-condensed.is-over-blue .main-nav a {
  color: rgba(255, 255, 255, 0.88);
}

body[data-page="home"] .site-header.is-condensed.is-over-blue .main-nav a:hover,
body[data-page="home"] .site-header.is-condensed.is-over-blue .main-nav a:focus-visible,
body[data-page="home"] .site-header.is-condensed.is-over-blue .main-nav a.is-current {
  color: #c9ebff;
  background: rgba(201, 235, 255, 0.1);
}

body[data-page="home"] .site-header.is-condensed.is-over-blue .language-toggle::before {
  background: rgba(201, 235, 255, 0.24);
}

body[data-page="home"] .site-header.is-condensed.is-over-blue .language-toggle a {
  color: rgba(255, 255, 255, 0.5);
}

body[data-page="home"] .site-header.is-condensed.is-over-blue .language-toggle a[aria-current="true"] {
  color: #ffffff;
}

body[data-page="home"] .site-header.is-condensed.is-over-blue .menu-toggle span {
  background: #ffffff;
}

body[data-page="home"] .site-header.is-condensed.is-over-blue .icon-button--desktop {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.54);
}

body[data-page="home"] .site-header.is-condensed.is-over-blue .icon-button--desktop:hover,
body[data-page="home"] .site-header.is-condensed.is-over-blue .icon-button--desktop:focus-visible {
  color: #111930;
  background: #ffffff;
  border-color: #ffffff;
}

@media (max-width: 1220px) {
  body[data-page="home"] .site-header.is-condensed .nav-shell {
    width: min(1180px, calc(100% - 32px));
    gap: 14px;
    padding-inline: 18px;
  }

  body[data-page="home"] .site-header.is-condensed .main-nav {
    gap: 18px;
  }

  body[data-page="home"] .site-header.is-condensed .nav-actions {
    gap: 18px;
  }

  body[data-page="home"] .site-header.is-condensed .language-toggle {
    padding-left: 22px;
  }

  body[data-page="home"] .site-header.is-condensed .icon-button--desktop {
    padding-inline: 20px;
  }
}

@media (max-width: 1080px) {
  body[data-page="home"] .nav-actions .icon-button--desktop {
    display: none;
  }
}

@media (min-width: 1081px) {
  body[data-page="home"] .main-nav {
    position: absolute;
    top: 50%;
    left: 50%;
    grid-column: 1 / -1;
    width: max-content;
    transform: translate(-50%, -50%);
  }

  body[data-page="home"] .site-header.is-condensed .main-nav {
    position: absolute;
    top: 50%;
    left: 50%;
    grid-column: 1 / -1;
    width: max-content;
    transform: translate(-50%, -50%);
  }
}

body[data-page="home"] .icon-button {
  min-height: 54px;
  padding: 0 24px;
  border-radius: 999px;
  box-shadow: 0 16px 26px rgba(56, 81, 147, 0.22);
}

body[data-page="home"] .site-header.is-menu-open .nav-shell,
body[data-page="home"] .site-header:has(.menu-toggle[aria-expanded="true"]) .nav-shell {
  grid-template-columns: 58px minmax(0, 1fr) auto;
  width: min(680px, calc(100% - 36px));
  height: 76px;
  padding: 0 18px;
  gap: 12px;
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(9, 17, 39, 0.98), rgba(32, 56, 111, 0.96)) !important;
  border-color: rgba(184, 221, 255, 0.2) !important;
  box-shadow:
    0 20px 44px rgba(7, 14, 36, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.08) !important;
  border-bottom-right-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
  transition:
    color 120ms ease,
    background-color 120ms ease,
    border-color 120ms ease,
    box-shadow 120ms ease,
    border-radius 120ms ease;
}

body[data-page="home"] .site-header.is-menu-open .brand-link,
body[data-page="home"] .site-header:has(.menu-toggle[aria-expanded="true"]) .brand-link {
  width: 54px;
  min-width: 54px;
  height: 54px;
  margin-left: 0;
}

body[data-page="home"] .site-header.is-menu-open .brand-link__icon,
body[data-page="home"] .site-header:has(.menu-toggle[aria-expanded="true"]) .brand-link__icon {
  width: 54px;
  height: 54px;
}

body[data-page="home"] .site-header.is-menu-open .nav-actions,
body[data-page="home"] .site-header:has(.menu-toggle[aria-expanded="true"]) .nav-actions {
  gap: 16px;
}

body[data-page="home"] .site-header.is-menu-open .language-toggle::before,
body[data-page="home"] .site-header:has(.menu-toggle[aria-expanded="true"]) .language-toggle::before {
  background: rgba(201, 235, 255, 0.22);
}

body[data-page="home"] .site-header.is-menu-open .language-toggle a,
body[data-page="home"] .site-header:has(.menu-toggle[aria-expanded="true"]) .language-toggle a {
  color: rgba(255, 255, 255, 0.52);
  text-shadow: none;
}

body[data-page="home"] .site-header.is-menu-open .language-toggle a[aria-current="true"],
body[data-page="home"] .site-header:has(.menu-toggle[aria-expanded="true"]) .language-toggle a[aria-current="true"] {
  color: #ffffff;
}

body[data-page="home"] .site-header.is-menu-open .menu-toggle span,
body[data-page="home"] .site-header:has(.menu-toggle[aria-expanded="true"]) .menu-toggle span {
  background: #ffffff !important;
}

.home-main {
  position: relative;
  padding-bottom: 104px;
  background: #ffffff;
}

.home-frame {
  position: relative;
  width: min(1400px, calc(100% - 36px));
  padding-inline: 26px;
  margin: 0 auto;
  border-left: 1px dashed rgba(57, 79, 142, 0.22);
  border-right: 1px dashed rgba(57, 79, 142, 0.22);
}

.home-section {
  position: relative;
  padding: 0 0 clamp(72px, 9vh, 118px);
}

.home-section::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  content: "";
  background: rgba(57, 79, 142, 0.16);
}

.home-kicker {
  margin: 0 0 24px;
  color: #e2e2e2;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.home-title-row {
  margin-bottom: 28px;
}

.home-title-row h2,
.home-contact-copy h2 {
  margin: 0;
  color: #111930;
  font-size: clamp(2.6rem, 4.8vw, 4.15rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 0.98;
}

.home-title-row--wide h2 {
  max-width: 1080px;
  font-size: clamp(1.6rem, 2.4vw, 2.15rem);
  line-height: 1.35;
}

.home-outline-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 22px;
  color: #1a223d;
  font-weight: 800;
  background: #ffffff;
  border: 1px solid rgba(24, 36, 76, 0.18);
  border-radius: 999px;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.home-outline-button:hover,
.home-outline-button:focus-visible {
  border-color: rgba(56, 81, 147, 0.45);
  box-shadow: 0 16px 28px rgba(7, 14, 36, 0.08);
  outline: none;
  transform: translateY(-2px);
}

.home-outline-button svg,
.home-scroll-cue svg,
.home-solution-icon svg,
.home-project-card__cta svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.home-center-cta {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.home-hero {
  position: relative;
  min-height: 100svh;
  padding: 28px 0 54px;
  overflow: hidden;
  background: #060c1c;
  isolation: isolate;
}

.home-hero-card {
  position: relative;
  display: grid;
  align-items: center;
  justify-items: center;
  min-height: calc(100svh - 82px);
}

.home-hero .home-frame {
  border-color: transparent;
}

.home-hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
  background: url("assets/media/home-hero-aerial.jpg") center 44% / cover no-repeat;
}

.home-hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 44%;
  opacity: 0;
  transition: opacity 680ms ease-in-out;
}

.home-hero-video.is-active.is-loaded {
  opacity: 1;
}

.home-hero-media::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(6, 12, 28, 0.22) 0%, rgba(6, 12, 28, 0.08) 47%, rgba(6, 12, 28, 0.04) 100%),
    linear-gradient(0deg, rgba(6, 12, 28, 0.16) 0%, rgba(6, 12, 28, 0.03) 44%, rgba(6, 12, 28, 0.08) 100%);
}

.home-hero-media::after {
  content: none;
  display: none;
}

.home-hero-3d {
  position: absolute;
  right: max(-80px, -4vw);
  bottom: clamp(10px, 4vh, 52px);
  z-index: 1;
  width: min(920px, 62vw);
  height: clamp(260px, 38vw, 560px);
  pointer-events: none;
  opacity: 0.78;
  filter: drop-shadow(0 34px 48px rgba(3, 8, 22, 0.5));
}

.home-hero-3d::before {
  position: absolute;
  inset: 20% 10% 6%;
  content: "";
  background: radial-gradient(circle, rgba(95, 124, 255, 0.24), rgba(95, 124, 255, 0) 64%);
  filter: blur(18px);
}

.home-hero-3d__canvas {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
}

.home-hero-3d.is-unavailable {
  display: none;
}

.home-hero-copy {
  position: relative;
  z-index: 3;
  max-width: min(960px, 100%);
  padding-top: 0;
  text-align: center;
  transform: translateY(clamp(34px, 5vh, 78px));
}

.home-hero-copy h1 {
  margin: 0;
  color: #ffffff;
  font-family: var(--font-display);
  font-size: clamp(3.1rem, 6.1vw, 6.9rem);
  font-stretch: 108%;
  letter-spacing: -0.05em;
  line-height: 0.92;
  text-shadow: 0 18px 42px rgba(6, 12, 28, 0.38);
  text-transform: none;
}

.home-hero-copy h1 span {
  display: block;
  color: #ffffff;
  font-weight: 900;
  white-space: nowrap;
}

.home-hero-copy h1 .home-hero-connector {
  margin: clamp(0.02em, 0.5vw, 0.1em) 0 clamp(0.03em, 0.6vw, 0.12em);
  font-family: var(--font-sans);
  font-size: clamp(2rem, 3.1vw, 3.8rem);
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 0.9;
  opacity: 0.86;
  transform: translateY(clamp(0.16rem, 0.7vw, 0.52rem));
}

body[data-homepage-variant="bluebox-lab"] .site-header:not(.is-condensed) .nav-shell {
  width: min(1840px, calc(100% - clamp(36px, 7vw, 170px)));
  height: 118px;
  grid-template-columns: 112px minmax(0, 1fr) auto;
  padding: 0;
  color: #ffffff;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  backdrop-filter: none;
}

body[data-homepage-variant="bluebox-lab"] .site-header:not(.is-condensed) .brand-link {
  justify-content: flex-start;
  width: 112px;
  min-width: 112px;
  height: 112px;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

body[data-homepage-variant="bluebox-lab"] .site-header:not(.is-condensed) .brand-link__icon {
  width: 104px;
  height: 104px;
}

body[data-homepage-variant="bluebox-lab"] .site-header:not(.is-condensed) .main-nav {
  gap: clamp(38px, 4.4vw, 86px);
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  backdrop-filter: none;
}

body[data-homepage-variant="bluebox-lab"] .site-header:not(.is-condensed) .main-nav a,
body[data-homepage-variant="bluebox-lab"] .site-header:not(.is-condensed) .language-toggle a {
  color: rgba(255, 255, 255, 0.82);
  text-shadow: 0 1px 18px rgba(0, 0, 0, 0.34);
}

body[data-homepage-variant="bluebox-lab"] .site-header:not(.is-condensed) .language-toggle a[aria-current="true"] {
  color: #ffffff;
}

body[data-homepage-variant="bluebox-lab"] .site-header:not(.is-condensed) .language-toggle::before {
  background: rgba(255, 255, 255, 0.32);
}

body[data-homepage-variant="bluebox-lab"] .site-header:not(.is-condensed) .icon-button {
  min-height: 72px;
  padding: 0 42px;
  color: #ffffff;
  background: rgba(20, 20, 24, 0.78);
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(10px);
}

body[data-homepage-variant="bluebox-lab"] .site-header:not(.is-condensed) .icon-button:hover,
body[data-homepage-variant="bluebox-lab"] .site-header:not(.is-condensed) .icon-button:focus-visible,
body[data-homepage-variant="bluebox-lab"] .site-header:not(.is-condensed) .main-nav a:hover,
body[data-homepage-variant="bluebox-lab"] .site-header:not(.is-condensed) .main-nav a:focus-visible,
body[data-homepage-variant="bluebox-lab"] .site-header:not(.is-condensed) .main-nav a.is-current {
  color: #ffffff;
  background: transparent;
}

body[data-homepage-variant="bluebox-lab"] .site-header:not(.is-condensed) .menu-toggle span {
  background: #ffffff;
}

@media (min-width: 1081px) {
  body[data-page="home"] .site-header,
  body:not([data-page="home"]) .site-header {
    position: fixed;
    right: 0;
    left: 0;
    padding-top: 12px;
    padding-bottom: 0;
    background: transparent;
    border-bottom: 0;
    box-shadow: none;
  }

  body[data-page="home"] .site-header:not(.is-condensed) .nav-shell,
  body:not([data-page="home"]) .site-header:not(.is-condensed) .nav-shell,
  body[data-homepage-variant="bluebox-lab"] .site-header:not(.is-condensed) .nav-shell {
    grid-template-columns: auto minmax(0, 1fr) auto;
    width: min(1400px, calc(100% - 36px));
    height: 112px;
    padding: 0;
    gap: clamp(34px, 5vw, 88px);
    color: #111930;
    background: transparent;
    border-color: transparent;
    border-radius: 0;
    box-shadow: none;
    backdrop-filter: none;
  }

  body[data-page="home"] .site-header:not(.is-condensed) .brand-link,
  body:not([data-page="home"]) .site-header:not(.is-condensed) .brand-link,
  body[data-homepage-variant="bluebox-lab"] .site-header:not(.is-condensed) .brand-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 108px;
    min-width: 108px;
    height: 108px;
    padding: 0;
    margin-left: clamp(10px, 1.6vw, 28px);
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    backdrop-filter: none;
  }

  body[data-page="home"] .site-header:not(.is-condensed) .brand-link__icon,
  body:not([data-page="home"]) .site-header:not(.is-condensed) .brand-link__icon,
  body[data-homepage-variant="bluebox-lab"] .site-header:not(.is-condensed) .brand-link__icon {
    width: 96px;
    height: 96px;
    object-fit: contain;
  }

  body[data-page="home"] .site-header:not(.is-condensed) .main-nav,
  body:not([data-page="home"]) .site-header:not(.is-condensed) .main-nav,
  body[data-homepage-variant="bluebox-lab"] .site-header:not(.is-condensed) .main-nav {
    position: absolute;
    top: 50%;
    left: 50%;
    grid-column: 1 / -1;
    justify-self: center;
    width: max-content;
    gap: clamp(34px, 4vw, 58px);
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    backdrop-filter: none;
    transform: translate(-50%, -50%);
  }

  body[data-page="home"] .site-header:not(.is-condensed) .main-nav a,
  body:not([data-page="home"]) .site-header:not(.is-condensed) .main-nav a,
  body[data-homepage-variant="bluebox-lab"] .site-header:not(.is-condensed) .main-nav a {
    padding: 10px 0;
    font-size: clamp(1.08rem, 1.22vw, 1.42rem);
    font-weight: 800;
    background: transparent;
    border-radius: 0;
    white-space: nowrap;
  }

  body:not([data-page="home"]) .site-header:not(.is-condensed) .main-nav a,
  body[data-homepage-variant="bluebox-lab"] .site-header:not(.is-condensed) .main-nav a {
    color: rgba(255, 255, 255, 0.94);
    text-shadow: none;
  }

  body:not([data-page="home"]) .site-header:not(.is-condensed) .main-nav a:hover,
  body:not([data-page="home"]) .site-header:not(.is-condensed) .main-nav a:focus-visible,
  body:not([data-page="home"]) .site-header:not(.is-condensed) .main-nav a.is-current,
  body[data-homepage-variant="bluebox-lab"] .site-header:not(.is-condensed) .main-nav a:hover,
  body[data-homepage-variant="bluebox-lab"] .site-header:not(.is-condensed) .main-nav a:focus-visible,
  body[data-homepage-variant="bluebox-lab"] .site-header:not(.is-condensed) .main-nav a.is-current {
    color: #ffffff;
    background: transparent;
    box-shadow: none;
  }

  body[data-page="home"]:not([data-homepage-variant="bluebox-lab"]) .site-header:not(.is-condensed) .main-nav a {
    color: rgba(255, 255, 255, 0.92);
    text-shadow: 0 1px 18px rgba(0, 0, 0, 0.34);
  }

  body[data-page="home"] .site-header:not(.is-condensed) .nav-actions,
  body:not([data-page="home"]) .site-header:not(.is-condensed) .nav-actions,
  body[data-homepage-variant="bluebox-lab"] .site-header:not(.is-condensed) .nav-actions {
    grid-column: 3;
    align-self: center;
    justify-self: end;
    display: flex;
    align-items: center;
    gap: 28px;
  }

  body[data-page="home"] .site-header:not(.is-condensed) .language-toggle,
  body:not([data-page="home"]) .site-header:not(.is-condensed) .language-toggle,
  body[data-homepage-variant="bluebox-lab"] .site-header:not(.is-condensed) .language-toggle {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding-left: 30px;
  }

  body:not([data-page="home"]) .site-header:not(.is-condensed) .language-toggle::before,
  body[data-homepage-variant="bluebox-lab"] .site-header:not(.is-condensed) .language-toggle::before {
    position: absolute;
    left: 0;
    width: 1px;
    height: 34px;
    content: "";
    background: rgba(255, 255, 255, 0.36);
  }

  body:not([data-page="home"]) .site-header:not(.is-condensed) .language-toggle a,
  body[data-homepage-variant="bluebox-lab"] .site-header:not(.is-condensed) .language-toggle a {
    color: rgba(255, 255, 255, 0.68);
    font-size: clamp(1rem, 1vw, 1.18rem);
    font-weight: 800;
    text-shadow: none;
  }

  body:not([data-page="home"]) .site-header:not(.is-condensed) .language-toggle a[aria-current="true"],
  body[data-homepage-variant="bluebox-lab"] .site-header:not(.is-condensed) .language-toggle a[aria-current="true"] {
    color: #ffffff;
  }

  body[data-page="home"]:not([data-homepage-variant="bluebox-lab"]) .site-header:not(.is-condensed) .language-toggle::before {
    background: rgba(255, 255, 255, 0.42);
  }

  body[data-page="home"]:not([data-homepage-variant="bluebox-lab"]) .site-header:not(.is-condensed) .language-toggle a {
    color: rgba(255, 255, 255, 0.72);
    text-shadow: 0 1px 18px rgba(0, 0, 0, 0.28);
  }

  body[data-page="home"]:not([data-homepage-variant="bluebox-lab"]) .site-header:not(.is-condensed) .language-toggle a[aria-current="true"] {
    color: #ffffff;
  }

  body[data-page="home"] .site-header:not(.is-condensed) .icon-button--desktop,
  body:not([data-page="home"]) .site-header:not(.is-condensed) .icon-button--desktop,
  body[data-homepage-variant="bluebox-lab"] .site-header:not(.is-condensed) .icon-button--desktop {
    display: inline-flex;
    min-height: 58px;
    padding: 0 32px;
    color: #ffffff;
    font-size: clamp(1rem, 1vw, 1.16rem);
    background: rgba(20, 20, 24, 0.78);
    border: 1.5px solid rgba(255, 255, 255, 0.16);
    border-radius: 999px;
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.22);
    backdrop-filter: blur(10px);
  }

  body[data-page="home"] .site-header:not(.is-condensed) .icon-button--desktop:hover,
  body[data-page="home"] .site-header:not(.is-condensed) .icon-button--desktop:focus-visible,
  body:not([data-page="home"]) .site-header:not(.is-condensed) .icon-button--desktop:hover,
  body:not([data-page="home"]) .site-header:not(.is-condensed) .icon-button--desktop:focus-visible,
  body[data-homepage-variant="bluebox-lab"] .site-header:not(.is-condensed) .icon-button--desktop:hover,
  body[data-homepage-variant="bluebox-lab"] .site-header:not(.is-condensed) .icon-button--desktop:focus-visible {
    color: #111930;
    background: #ffffff;
    border-color: #ffffff;
    outline: none;
    transform: translateY(-2px);
  }

  body[data-page="home"] .site-header.is-condensed,
  body:not([data-page="home"]) .site-header.is-condensed {
    padding-top: 10px;
    padding-bottom: 0;
    background: transparent;
  }

  body[data-page="home"] .site-header.is-condensed .nav-shell,
  body:not([data-page="home"]) .site-header.is-condensed .nav-shell,
  body[data-homepage-variant="bluebox-lab"] .site-header.is-condensed .nav-shell {
    grid-template-columns: 62px minmax(0, 1fr) auto;
    width: min(1280px, calc(100% - 56px));
    height: 60px;
    padding: 0 22px;
    gap: 18px;
    color: #ffffff;
    background:
      linear-gradient(135deg, rgba(9, 17, 39, 0.96), rgba(32, 56, 111, 0.94));
    border-color: rgba(184, 221, 255, 0.18);
    border-radius: 999px;
    box-shadow:
      0 14px 26px rgba(7, 14, 36, 0.22),
      inset 0 1px 0 rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(18px);
  }

  body[data-page="home"] .site-header.is-condensed .brand-link,
  body:not([data-page="home"]) .site-header.is-condensed .brand-link,
  body[data-homepage-variant="bluebox-lab"] .site-header.is-condensed .brand-link {
    width: 48px;
    min-width: 48px;
    height: 48px;
    padding: 0;
    margin-left: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
  }

  body[data-page="home"] .site-header.is-condensed .brand-link__icon,
  body:not([data-page="home"]) .site-header.is-condensed .brand-link__icon,
  body[data-homepage-variant="bluebox-lab"] .site-header.is-condensed .brand-link__icon {
    width: 46px;
    height: 46px;
  }

  body[data-page="home"] .site-header.is-condensed .main-nav,
  body:not([data-page="home"]) .site-header.is-condensed .main-nav,
  body[data-homepage-variant="bluebox-lab"] .site-header.is-condensed .main-nav {
    position: absolute;
    top: 50%;
    left: 50%;
    grid-column: 1 / -1;
    justify-self: center;
    width: max-content;
    gap: clamp(16px, 2.5vw, 34px);
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
    backdrop-filter: none;
    transform: translate(-50%, -50%);
  }

  body[data-page="home"] .site-header.is-condensed .main-nav a,
  body:not([data-page="home"]) .site-header.is-condensed .main-nav a,
  body[data-homepage-variant="bluebox-lab"] .site-header.is-condensed .main-nav a {
    padding: 9px 12px;
    color: rgba(255, 255, 255, 0.88);
    font-size: clamp(0.9rem, 1vw, 1rem);
    text-shadow: none;
    white-space: nowrap;
    border-radius: 999px;
  }

  body[data-page="home"] .site-header.is-condensed .main-nav a:hover,
  body[data-page="home"] .site-header.is-condensed .main-nav a:focus-visible,
  body[data-page="home"] .site-header.is-condensed .main-nav a.is-current,
  body:not([data-page="home"]) .site-header.is-condensed .main-nav a:hover,
  body:not([data-page="home"]) .site-header.is-condensed .main-nav a:focus-visible,
  body:not([data-page="home"]) .site-header.is-condensed .main-nav a.is-current,
  body[data-homepage-variant="bluebox-lab"] .site-header.is-condensed .main-nav a:hover,
  body[data-homepage-variant="bluebox-lab"] .site-header.is-condensed .main-nav a:focus-visible,
  body[data-homepage-variant="bluebox-lab"] .site-header.is-condensed .main-nav a.is-current {
    color: #c9ebff;
    background: rgba(201, 235, 255, 0.1);
  }

  body[data-page="home"] .site-header.is-condensed .nav-actions,
  body:not([data-page="home"]) .site-header.is-condensed .nav-actions,
  body[data-homepage-variant="bluebox-lab"] .site-header.is-condensed .nav-actions {
    gap: 18px;
  }

  body[data-page="home"] .site-header.is-condensed .language-toggle,
  body:not([data-page="home"]) .site-header.is-condensed .language-toggle,
  body[data-homepage-variant="bluebox-lab"] .site-header.is-condensed .language-toggle {
    padding-left: 22px;
  }

  body[data-page="home"] .site-header.is-condensed .language-toggle::before,
  body:not([data-page="home"]) .site-header.is-condensed .language-toggle::before,
  body[data-homepage-variant="bluebox-lab"] .site-header.is-condensed .language-toggle::before {
    background: rgba(201, 235, 255, 0.24);
  }

  body[data-page="home"] .site-header.is-condensed .language-toggle a,
  body:not([data-page="home"]) .site-header.is-condensed .language-toggle a,
  body[data-homepage-variant="bluebox-lab"] .site-header.is-condensed .language-toggle a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.95rem;
    text-shadow: none;
  }

  body[data-page="home"] .site-header.is-condensed .language-toggle a[aria-current="true"],
  body:not([data-page="home"]) .site-header.is-condensed .language-toggle a[aria-current="true"],
  body[data-homepage-variant="bluebox-lab"] .site-header.is-condensed .language-toggle a[aria-current="true"] {
    color: #ffffff;
  }

  body[data-page="home"] .site-header.is-condensed .icon-button--desktop,
  body:not([data-page="home"]) .site-header.is-condensed .icon-button--desktop,
  body[data-homepage-variant="bluebox-lab"] .site-header.is-condensed .icon-button--desktop {
    min-height: 46px;
    padding: 0 24px;
    color: #ffffff;
    font-size: 0.96rem;
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.54);
    box-shadow: none;
  }

  body[data-page="home"] .site-header.is-condensed .icon-button--desktop:hover,
  body[data-page="home"] .site-header.is-condensed .icon-button--desktop:focus-visible,
  body:not([data-page="home"]) .site-header.is-condensed .icon-button--desktop:hover,
  body:not([data-page="home"]) .site-header.is-condensed .icon-button--desktop:focus-visible,
  body[data-homepage-variant="bluebox-lab"] .site-header.is-condensed .icon-button--desktop:hover,
  body[data-homepage-variant="bluebox-lab"] .site-header.is-condensed .icon-button--desktop:focus-visible {
    color: #111930;
    background: #ffffff;
    border-color: #ffffff;
  }

  body:not([data-page="home"]) .build-screen {
    padding-top: clamp(168px, 14vw, 220px);
  }

  body:not([data-page="home"]) .plan-intro-section {
    padding-top: clamp(176px, 18vh, 230px);
  }

  body:not([data-page="home"]) .page-hero {
    padding-top: clamp(160px, 14vw, 210px);
  }

  body:not([data-page="home"]) .project-board-section--index {
    padding-top: clamp(158px, 14vw, 210px);
  }

  body:not([data-page="home"]) .detail-section {
    padding-top: clamp(150px, 12vw, 190px);
  }

  .site-header .main-nav .nav-dropdown__menu a,
  body[data-page="home"] .site-header .main-nav .nav-dropdown__menu a,
  body:not([data-page="home"]) .site-header .main-nav .nav-dropdown__menu a,
  body[data-homepage-variant="bluebox-lab"] .site-header .main-nav .nav-dropdown__menu a {
    min-height: 44px;
    padding: 0 14px;
    color: #111930;
    font-size: 0.92rem;
    font-weight: 800;
    text-shadow: none;
    white-space: nowrap;
    background: transparent;
    border-radius: 12px;
    box-shadow: none;
  }

  .site-header .main-nav .nav-dropdown__menu a:hover,
  .site-header .main-nav .nav-dropdown__menu a:focus-visible,
  .site-header .main-nav .nav-dropdown__menu a.is-current,
  body[data-page="home"] .site-header .main-nav .nav-dropdown__menu a:hover,
  body[data-page="home"] .site-header .main-nav .nav-dropdown__menu a:focus-visible,
  body[data-page="home"] .site-header .main-nav .nav-dropdown__menu a.is-current,
  body:not([data-page="home"]) .site-header .main-nav .nav-dropdown__menu a:hover,
  body:not([data-page="home"]) .site-header .main-nav .nav-dropdown__menu a:focus-visible,
  body:not([data-page="home"]) .site-header .main-nav .nav-dropdown__menu a.is-current {
    color: #385193;
    background: rgba(56, 81, 147, 0.08);
    outline: none;
  }
}

.home-hero--blueprint-lab {
  min-height: 100svh;
  padding-top: 112px;
  background:
    radial-gradient(circle at 50% 42%, rgba(95, 124, 255, 0.16), rgba(95, 124, 255, 0) 30%),
    linear-gradient(rgba(207, 219, 238, 0.42) 1px, transparent 1px),
    linear-gradient(90deg, rgba(207, 219, 238, 0.42) 1px, transparent 1px),
    #f7fafc;
  background-size: auto, 78px 78px, 78px 78px, auto;
}

.home-hero--blueprint-lab::before,
.home-hero--blueprint-lab::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.home-hero--blueprint-lab::before {
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(circle at 14% 18%, rgba(57, 79, 142, 0.12) 0 2px, transparent 3px),
    radial-gradient(circle at 86% 28%, rgba(57, 79, 142, 0.11) 0 2px, transparent 3px),
    radial-gradient(circle at 72% 82%, rgba(57, 79, 142, 0.10) 0 2px, transparent 3px);
  background-size: 260px 210px, 330px 250px, 300px 260px;
}

.home-hero--blueprint-lab::after {
  inset: 116px 4vw 5vw;
  z-index: 0;
  border: 1px dashed rgba(57, 79, 142, 0.2);
  border-radius: 22px;
}

.home-hero--blueprint-lab .home-hero-3d {
  top: 49%;
  right: auto;
  bottom: auto;
  left: 50%;
  z-index: 2;
  width: min(1780px, 94vw);
  height: min(72vh, 720px);
  min-height: 520px;
  overflow: visible;
  opacity: 0;
  filter: drop-shadow(0 24px 34px rgba(24, 36, 76, 0.16));
  transform: translate(-50%, -40%);
  transition:
    opacity 620ms ease,
    transform 820ms cubic-bezier(0.16, 1, 0.3, 1);
}

.home-hero--blueprint-lab .home-hero-3d.is-ready {
  opacity: 1;
  transform: translate(-50%, -50%);
}

.home-hero--blueprint-lab .home-hero-3d::before {
  inset: 54% 14% 8%;
  background:
    radial-gradient(ellipse, rgba(57, 79, 142, 0.16), rgba(57, 79, 142, 0) 68%);
  filter: blur(12px);
}

.home-hero--blueprint-lab .home-hero-lab-frame {
  z-index: 4;
  min-height: calc(100svh - 112px);
}

.home-hero-lab-wordmark {
  position: absolute;
  top: 26%;
  left: 50%;
  z-index: 1;
  color: rgba(17, 25, 48, 0.15);
  font-family: var(--font-display);
  font-size: clamp(7.4rem, 20vw, 21rem);
  font-weight: 900;
  letter-spacing: -0.075em;
  line-height: 0.8;
  text-transform: none;
  white-space: nowrap;
  text-shadow: 0 18px 44px rgba(56, 81, 147, 0.08);
  transform: translate(-50%, -50%);
}

.home-hero-lab-wordmark span:first-child {
  color: rgba(56, 81, 147, 0.28);
}

.home-hero-lab-panel {
  position: absolute;
  z-index: 5;
  width: min(420px, 30vw);
  padding: 0;
  color: #111930;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  backdrop-filter: none;
}

.home-hero-lab-panel--left {
  top: auto;
  bottom: clamp(18px, 3.5vh, 42px);
  left: clamp(34px, 8vw, 150px);
  transform: none;
}

.home-hero-lab-panel--right {
  top: auto;
  right: clamp(34px, 8vw, 150px);
  bottom: clamp(18px, 3.5vh, 42px);
  text-align: right;
  transform: none;
}

.home-hero-lab-kicker {
  margin: 0 0 14px;
  color: #385193;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.home-hero-lab-panel h1,
.home-hero-lab-panel h2 {
  margin: 0;
  color: #111930;
  font-size: clamp(1.55rem, 2.4vw, 2.45rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 0.98;
  text-shadow:
    0 1px 0 rgba(255, 255, 255, 0.72),
    0 18px 34px rgba(24, 36, 76, 0.13);
}

.home-hero-lab-panel p:not(.home-hero-lab-kicker) {
  margin: 18px 0 0;
  color: rgba(17, 25, 48, 0.72);
  font-size: clamp(0.92rem, 1vw, 1.02rem);
  font-weight: 700;
  line-height: 1.45;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.66);
}

.home-hero-lab-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: auto;
  margin-top: 18px;
  padding: 0;
  color: #385193;
  font-weight: 900;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  transition: color 180ms ease, transform 180ms ease;
}

.home-hero-lab-link:hover,
.home-hero-lab-link:focus-visible {
  color: #111930;
  outline: none;
  transform: translateX(3px);
}

.home-hero-lab-link svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.home-hero-lab-actions {
  position: absolute;
  right: 0;
  bottom: clamp(28px, 5vh, 58px);
  left: 0;
  z-index: 5;
  display: flex;
  justify-content: center;
  gap: 14px;
}

.home-hero--blueprint-lab .home-hero-action--secondary {
  color: #111930;
  background: #ffffff;
  border: 1px solid rgba(24, 36, 76, 0.16);
  box-shadow: 0 18px 34px rgba(24, 36, 76, 0.1);
}

@media (max-width: 1040px) {
  .home-hero-lab-panel {
    width: min(300px, 34vw);
  }

  .home-hero-lab-panel--left {
    left: 28px;
  }

  .home-hero-lab-panel--right {
    right: 28px;
  }

  .home-hero-lab-panel h1,
  .home-hero-lab-panel h2 {
    font-size: clamp(1.35rem, 3vw, 2rem);
  }
}

@media (max-width: 760px) {
  .home-hero--blueprint-lab {
    min-height: auto;
    padding-top: 104px;
    padding-bottom: 52px;
  }

  .home-hero--blueprint-lab::after {
    inset: 92px 18px 34px;
    border-radius: 18px;
  }

  .home-hero--blueprint-lab .home-hero-lab-frame {
    display: grid;
    gap: 18px;
    min-height: auto;
    padding-top: 52px;
    padding-bottom: 46px;
  }

  .home-hero-lab-wordmark {
    top: 122px;
    font-size: clamp(4.2rem, 22vw, 7rem);
  }

  .home-hero-lab-panel,
  .home-hero-lab-panel--left,
  .home-hero-lab-panel--right,
  .home-hero-lab-actions {
    position: relative;
    inset: auto;
    width: 100%;
    transform: none;
  }

  .home-hero-lab-panel {
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    backdrop-filter: none;
  }

  .home-hero-lab-panel--right {
    text-align: left;
  }

  .home-hero-lab-actions {
    display: grid;
    gap: 12px;
  }
}

.home-hero-accent {
  position: relative;
  width: fit-content;
  margin: 0 auto;
  color: #6f89e8 !important;
  text-shadow:
    0 1px 0 rgba(255, 255, 255, 0.22),
    0 0 20px rgba(6, 12, 28, 0.24),
    0 18px 44px rgba(6, 12, 28, 0.74);
}

.home-hero-accent.wave-underline::after {
  bottom: -0.03em;
  height: 0.16em;
  background-image: var(--hero-wave-pattern);
  background-size: 0.58em 0.16em;
  animation: none;
  filter: drop-shadow(0 2px 0 rgba(255, 255, 255, 0.16));
}

.wave-underline {
  position: relative;
  display: inline-block;
  padding-bottom: 16px;
}

.wave-underline::after {
  position: absolute;
  right: 0;
  left: 0;
  bottom: 0;
  height: 18px;
  content: "";
  background-image: var(--wave-pattern);
  background-position: 0 center;
  background-repeat: repeat-x;
  background-size: 72px 18px;
  animation: none;
  will-change: auto;
}

@keyframes wave-current {
  to {
    background-position: 72px center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .wave-underline::after {
    animation: none;
  }
}

.home-hero-copy p {
  display: none;
  max-width: 540px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.35;
}

.home-hero-copy .home-hero-subtitle {
  display: block;
  max-width: min(680px, 92%);
  margin: clamp(18px, 2.4vw, 28px) auto 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(0.96rem, 1.2vw, 1.18rem);
  font-weight: 520;
  line-height: 1.5;
  text-shadow: 0 10px 28px rgba(6, 12, 28, 0.34);
}

.home-hero-subtitle em {
  color: #ffffff;
  font-style: italic;
  font-weight: 800;
}

.home-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: center;
  margin-top: clamp(24px, 3.6vw, 36px);
}

.home-hero-explore {
  display: inline-flex;
  align-items: center;
  min-height: 54px;
  overflow: hidden;
  color: #ffffff;
  background: #385193;
  border: 1px solid rgba(111, 137, 232, 0.42);
  border-radius: 999px;
  box-shadow:
    0 20px 38px rgba(6, 12, 28, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.14);
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.home-hero-explore > span:first-child {
  display: grid;
  min-height: 54px;
  padding: 0 30px;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 850;
  line-height: 1;
  background: #091127;
  border-radius: 999px;
  place-items: center;
}

.home-hero-explore > span:last-child {
  display: grid;
  width: 60px;
  height: 54px;
  color: #ffffff;
  background: #385193;
  place-items: center;
  transition: background 180ms ease;
}

.home-hero-explore svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.35;
  transition: transform 180ms ease;
}

.home-hero-explore:hover,
.home-hero-explore:focus-visible {
  border-color: rgba(255, 255, 255, 0.34);
  box-shadow:
    0 28px 54px rgba(6, 12, 28, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.14);
  outline: none;
  transform: translateY(-2px);
}

.home-hero-explore:hover > span:last-child,
.home-hero-explore:focus-visible > span:last-child {
  background: #4b64b2;
}

.home-hero-explore:hover svg,
.home-hero-explore:focus-visible svg {
  transform: translate(2px, 2px);
}

.home-hero-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  gap: 12px;
  padding: 0 26px;
  font-weight: 800;
  border-radius: 999px;
  box-shadow: 0 18px 32px rgba(6, 12, 28, 0.16);
}

.home-hero-action--primary {
  color: #ffffff;
  background: #385193;
}

.home-hero-action--secondary {
  color: #111930;
  background: #ffffff;
}

.home-hero-action svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.home-hero-contact {
  display: none;
}

.home-scroll-cue {
  display: none;
  place-items: center;
  width: 44px;
  height: 44px;
  margin: 14px auto 0;
  color: rgba(17, 25, 48, 0.45);
}

.home-mission-grid {
  display: grid;
  position: relative;
  grid-template-columns: 1fr;
  align-items: center;
  justify-items: center;
  min-height: clamp(520px, 72svh, 760px);
  padding-block: clamp(72px, 9vh, 112px);
  overflow: hidden;
}

.home-section--mission .home-frame {
  display: grid;
  align-items: center;
  justify-items: center;
  border-color: transparent;
}

.home-section--mission .home-frame::before {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 0;
  width: min(880px, 86vw);
  aspect-ratio: 1;
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='34' height='34' viewBox='0 0 34 34'%3E%3Cpath d='M17 5v24M5 17h24' stroke='%23111930' stroke-opacity='.13' stroke-width='3.2' stroke-linecap='round'/%3E%3Cpath d='M9 9l16 16M25 9 9 25' stroke='%23111930' stroke-opacity='.06' stroke-width='2.2' stroke-linecap='round'/%3E%3C/svg%3E");
  background-position: center;
  background-size: 34px 34px;
  -webkit-mask-image: radial-gradient(circle, #000 0 56%, transparent 72%);
  mask-image: radial-gradient(circle, #000 0 56%, transparent 72%);
  opacity: 0.5;
  transform: translate(-50%, -50%) rotate(-8deg);
}

.home-hero-info {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 4;
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(360px, 1.2fr);
  background: rgba(4, 18, 12, 0.18);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(2px);
}

.home-hero-info-card {
  min-height: 176px;
  padding: 34px 38px;
  color: #ffffff;
  background: transparent;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: none;
}

.home-hero-info-card:last-child {
  border-right: 0;
}

.home-hero-info-kicker {
  display: block;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.94rem;
  font-weight: 700;
}

.home-hero-info-card h2 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(1.1rem, 1.5vw, 1.35rem);
  line-height: 1.22;
}

.home-hero-info-card p {
  max-width: 440px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.95rem;
  line-height: 1.45;
}

.home-hero-info-card__body {
  display: grid;
  grid-template-columns: 156px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
}

.home-hero-info-card__body img {
  width: 156px;
  aspect-ratio: 1.5;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 5px;
}

.home-hero-info-card__body a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  min-width: 116px;
  margin-top: 22px;
  color: #ffffff;
  font-size: 0.88rem;
  font-weight: 800;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 999px;
  background: rgba(5, 20, 12, 0.16);
}

.home-section--mission .home-kicker {
  display: none;
}

.home-mission-copy {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: center;
  gap: clamp(20px, 3vh, 32px);
  width: min(1120px, 100%);
  min-height: auto;
  margin: 0 auto;
  text-align: center;
}

.home-mission-copy h2 {
  margin: 0;
  color: #111930;
  font-size: clamp(0.86rem, 1vw, 1rem);
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
}

.home-mission-copy p {
  margin: 0;
  color: #111930;
  font-size: clamp(2.1rem, 3.35vw, 3.85rem);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1.12;
  text-wrap: balance;
}

.home-mission-line {
  display: inline;
}

.home-mission-copy .is-strong {
  color: #121a32;
  font-weight: 900;
}

.home-mission-copy .is-link {
  position: relative;
  color: #385193;
  font-weight: 800;
  white-space: nowrap;
}

.home-mission-accent {
  color: #405aa2;
  font-weight: 400;
  white-space: nowrap;
}

.home-mission-accent.wave-underline {
  padding-bottom: 0.22em;
}

.home-mission-accent.wave-underline::after {
  height: 0.22em;
  background-image: var(--wave-pattern);
  background-size: 0.78em 0.22em;
  animation: none;
  filter: none;
  will-change: auto;
}

.home-flow-graphic {
  display: none;
}

.home-flow-graphic svg {
  display: block;
  width: 100%;
  height: auto;
  overflow: visible;
}

.home-flow-ring {
  fill: none;
  stroke: rgba(56, 81, 147, 0.72);
  stroke-linecap: round;
  stroke-width: 18;
  marker-end: url("#flow-arrow");
}

.home-flow-ring:nth-of-type(2) {
  stroke: rgba(17, 25, 48, 0.2);
}

.home-flow-ring:nth-of-type(3) {
  stroke: rgba(56, 81, 147, 0.44);
}

.home-flow-graphic marker path {
  fill: currentColor;
}

.home-flow-node circle {
  fill: rgba(255, 255, 255, 0.96);
  stroke: rgba(56, 81, 147, 0.32);
  stroke-width: 2;
  filter: drop-shadow(0 18px 30px rgba(7, 14, 36, 0.12));
}

.home-flow-node path {
  fill: none;
  stroke: #111930;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 8;
}

.home-flow-node text {
  fill: #111930;
  font-size: 28px;
  font-weight: 900;
  text-anchor: middle;
}

.home-flow-node--process circle {
  fill: #385193;
  stroke: rgba(56, 81, 147, 0.36);
}

.home-flow-node--process path,
.home-flow-node--process text {
  fill: none;
  stroke: #ffffff;
}

.home-flow-node--process text {
  fill: #385193;
  stroke: none;
}

.home-section--blue {
  position: relative;
  overflow: hidden;
  color: #ffffff;
  background:
    radial-gradient(circle at 18% 18%, rgba(201, 235, 255, 0.1), transparent 28%),
    radial-gradient(circle at 84% 72%, rgba(56, 81, 147, 0.22), transparent 30%),
    linear-gradient(135deg, #070f24 0%, #132755 48%, #20386f 100%);
}

.home-section--blue::before,
.home-section--blue::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
}

.home-section--blue::before {
  background-image:
    repeating-radial-gradient(
      ellipse at 18% 34%,
      rgba(201, 235, 255, 0.14) 0 1px,
      transparent 1px 34px
    ),
    repeating-radial-gradient(
      ellipse at 88% 64%,
      rgba(201, 235, 255, 0.09) 0 1px,
      transparent 1px 42px
    );
  opacity: 0.42;
  transform: rotate(-8deg) scale(1.08);
}

.home-section--blue::after {
  background:
    linear-gradient(90deg, transparent 0 49.92%, rgba(201, 235, 255, 0.1) 50%, transparent 50.08%),
    radial-gradient(circle at center, transparent 0 31%, rgba(201, 235, 255, 0.12) 31.2% 31.8%, transparent 32%),
    radial-gradient(circle at center, transparent 0 43%, rgba(255, 255, 255, 0.06) 43.2% 43.8%, transparent 44%);
  opacity: 0.54;
}

.home-problem-frame {
  display: grid;
  position: relative;
  z-index: 1;
  grid-template-rows: auto auto auto;
  min-height: auto;
  padding-top: clamp(76px, 9vh, 112px);
  padding-bottom: clamp(76px, 9vh, 112px);
  border-color: rgba(201, 235, 255, 0.18);
}

.home-problem-frame::before {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: -1;
  width: min(760px, 68vw);
  aspect-ratio: 1;
  content: "";
  border: 1px solid rgba(201, 235, 255, 0.18);
  border-radius: 50%;
  box-shadow:
    0 0 0 72px rgba(201, 235, 255, 0.045),
    inset 0 0 0 28px rgba(7, 14, 36, 0.05);
  transform: translate(-50%, -46%);
}

.home-problem-heading {
  margin: 0;
  color: #ffffff;
  font-size: clamp(2.2rem, 3.6vw, 3.8rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.1;
  text-align: center;
}

.home-problem-columns {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(34px, 6vw, 86px);
  align-self: center;
  width: min(1180px, 100%);
  margin: clamp(34px, 5vh, 58px) auto 0;
  padding-top: clamp(24px, 4vh, 42px);
  border-top: 1px solid rgba(201, 235, 255, 0.2);
}

.home-problem-columns::before {
  content: none;
}

.home-problem-panel {
  position: relative;
  display: grid;
  gap: 18px;
  grid-template-rows: auto auto 1fr;
  align-content: start;
  min-height: auto;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  backdrop-filter: none;
}

.home-problem-copy-image {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border: 1px solid rgba(201, 235, 255, 0.22);
  border-radius: 8px;
  box-shadow:
    0 18px 44px rgba(3, 8, 24, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.home-problem-panel h3 {
  margin: 0;
  color: rgba(201, 235, 255, 0.92);
  font-size: clamp(0.86rem, 1vw, 1rem);
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1.12;
  text-align: left;
  text-transform: uppercase;
}

.home-problem-panel p {
  align-self: start;
  max-width: 680px;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1rem, 1.1vw, 1.14rem);
  font-weight: 600;
  line-height: 1.62;
  text-align: left;
}

.home-problem-panel strong {
  color: #ffffff;
  font-weight: 800;
}

.home-problem-panel em {
  color: rgba(255, 255, 255, 0.82);
}

.home-problem-meter {
  display: grid;
  grid-template-columns: minmax(0, var(--meter-left, 40fr)) minmax(0, var(--meter-right, 30fr));
  gap: 0;
  width: min(74%, 1180px);
  min-height: auto;
  margin: clamp(34px, 5vh, 54px) 0 0;
  overflow: hidden;
  color: #ffffff;
  background: rgba(7, 14, 36, 0.24);
  border: 1px solid rgba(201, 235, 255, 0.34);
  border-radius: 6px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.09),
    0 24px 64px rgba(3, 8, 24, 0.18);
  backdrop-filter: blur(8px);
}

.home-problem-meter div {
  display: grid;
  align-items: center;
  justify-content: center;
  gap: clamp(8px, 1vw, 11px);
  min-height: clamp(94px, 8vw, 116px);
  padding: clamp(18px, 2vw, 26px) clamp(22px, 3vw, 38px);
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  font-weight: 900;
  line-height: 1;
  text-align: center;
}

.home-problem-meter__label {
  display: inline-flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.18em;
  color: #ffffff;
  font-size: clamp(1.55rem, 2.7vw, 2.85rem);
  font-weight: 950;
  letter-spacing: -0.065em;
  line-height: 0.9;
  text-shadow: 0 18px 46px rgba(3, 8, 24, 0.24);
  white-space: nowrap;
}

.home-problem-meter__label [data-count] {
  min-width: 1.05em;
  text-align: right;
}

.home-problem-meter__context {
  color: rgba(201, 235, 255, 0.82);
  font-size: clamp(0.72rem, 0.82vw, 0.84rem);
  font-weight: 900;
  letter-spacing: 0.09em;
  line-height: 1.2;
  text-transform: uppercase;
}

.home-problem-meter sup {
  position: relative;
  top: -0.42em;
  margin-left: 0.02em;
  font-size: 0.38em;
  letter-spacing: 0;
  line-height: 0;
}

.home-problem-meter div + div {
  border-left: 1px solid rgba(201, 235, 255, 0.34);
}

.home-problem-grid,
.home-issue-grid {
  display: grid;
  grid-template-columns: 176px minmax(0, 1fr);
  gap: 44px;
  padding-top: 40px;
}

.home-tower {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  min-height: 670px;
  padding: 36px 18px;
  text-align: center;
  border-radius: 22px;
}

.home-tower strong,
.home-stat-box strong {
  display: block;
  font-size: clamp(3rem, 5vw, 4.35rem);
  line-height: 0.9;
  font-weight: 900;
}

.home-tower span,
.home-stat-box span {
  display: block;
  margin-top: 10px;
  font-size: 0.96rem;
  font-weight: 800;
  line-height: 1.25;
}

.home-tower--striped {
  color: #ffffff;
  background:
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.58) 0 2px, transparent 2px 10px),
    rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(255, 255, 255, 0.8);
}

.home-tower--dark {
  justify-content: flex-end;
  color: #ffffff;
  background: #0b1029;
  border: 2px solid rgba(18, 26, 51, 0.34);
}

.home-problem-head {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(250px, 0.9fr);
  gap: 26px;
  align-items: start;
  margin-bottom: 38px;
}

.home-mini-machine {
  width: 180px;
  filter: saturate(0) brightness(1.65) sepia(0.18) hue-rotate(175deg);
}

.home-part-label {
  margin: 18px 0 14px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.45em;
  text-transform: uppercase;
}

.home-problem-title h2,
.home-issue-intro h2 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  line-height: 1.04;
}

.home-problem-copy {
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
}

.home-media-card {
  position: relative;
  min-height: 404px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 32px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 42%),
    rgba(255, 255, 255, 0.12);
}

.home-media-card__image {
  position: absolute;
  inset: 0;
}

.home-media-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(0.8) saturate(0.62) brightness(0.76);
}

.home-media-card__image--cover img {
  object-position: center;
}

.home-media-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(180deg, rgba(7, 14, 36, 0.02), rgba(7, 14, 36, 0.22)),
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.12) 0 1px, transparent 2px);
  background-size: auto, 5px 5px;
  pointer-events: none;
}

.home-glass-note {
  position: absolute;
  z-index: 2;
  top: 28px;
  left: 28px;
  width: min(290px, calc(100% - 56px));
  padding: 28px 22px;
  color: #1a223d;
  background: rgba(239, 242, 247, 0.84);
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 30px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(14px);
}

.home-glass-note h3 {
  margin: 0;
  color: #3652a1;
  font-size: 1.15rem;
  line-height: 1.2;
}

.home-glass-note p {
  margin: 18px 0 0;
  font-size: 0.9rem;
  line-height: 1.55;
}

.home-section--issue {
  background: #ffffff;
}

.home-issue-main {
  display: grid;
  gap: 34px;
}

.home-media-card--cool {
  min-height: 448px;
  border-color: rgba(57, 79, 142, 0.16);
}

.home-media-card--cool .home-media-card__image img {
  filter: contrast(0.9) saturate(0.7) brightness(0.88);
}

.home-issue-bottom {
  display: grid;
  grid-template-columns: minmax(220px, 0.6fr) minmax(0, 0.4fr) minmax(320px, 0.9fr);
  gap: 30px;
  align-items: end;
}

.home-issue-intro {
  display: grid;
  gap: 18px;
}

.home-issue-intro img {
  width: 180px;
  filter: grayscale(1) brightness(1.14);
}

.home-issue-intro .home-part-label {
  margin: 0 0 14px;
  color: #1c2440;
}

.home-issue-intro h2 {
  color: #121932;
}

.home-issue-copy {
  margin: 0;
  color: #17203c;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.55;
}

.home-section--approach {
  overflow: hidden;
  background:
    linear-gradient(rgba(56, 81, 147, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(56, 81, 147, 0.045) 1px, transparent 1px),
    linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  background-size: 44px 44px, 44px 44px, auto;
}

.home-approach-frame {
  display: grid;
  align-content: center;
  min-height: auto;
  padding-top: clamp(72px, 9vh, 112px);
  padding-bottom: clamp(72px, 9vh, 112px);
}

.home-approach-head {
  display: grid;
  justify-items: center;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.home-approach-head .home-kicker {
  margin-bottom: 14px;
  color: #385193;
}

.home-approach-heading {
  margin: 0;
  color: #111930;
  font-size: clamp(2rem, 3.1vw, 3.1rem);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.1;
}

.home-approach-lede {
  max-width: 560px;
  margin: 18px 0 0;
  color: #526079;
  font-size: clamp(1rem, 1.2vw, 1.14rem);
  font-weight: 600;
  line-height: 1.5;
}

.home-approach-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  align-items: stretch;
  margin-top: clamp(32px, 5vh, 54px);
  padding: clamp(18px, 2vw, 26px);
  background:
    linear-gradient(rgba(56, 81, 147, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(56, 81, 147, 0.07) 1px, transparent 1px),
    rgba(255, 255, 255, 0.82);
  background-size: 28px 28px, 28px 28px, auto;
  border: 1px solid rgba(56, 81, 147, 0.16);
  border-radius: 8px;
  box-shadow:
    0 24px 60px rgba(7, 14, 36, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.home-approach-flow {
  display: none;
}

.home-approach-flow__line {
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  height: 2px;
  background-image: linear-gradient(90deg, rgba(56, 81, 147, 0.28) 50%, transparent 0);
  background-position: 0 50%;
  background-size: 16px 2px;
  transform: translateY(-50%);
}

.home-approach-flow__line::before,
.home-approach-flow__line::after {
  position: absolute;
  top: 50%;
  width: 10px;
  height: 10px;
  content: "";
  background: #ffffff;
  border: 2px solid rgba(56, 81, 147, 0.5);
  border-radius: 50%;
  transform: translateY(-50%);
}

.home-approach-flow__line::before {
  left: 0;
}

.home-approach-flow__line::after {
  right: 0;
}

.home-approach-flow__pulse {
  position: absolute;
  top: 50%;
  left: 0;
  width: 14px;
  height: 14px;
  background: #385193;
  border: 3px solid #ffffff;
  border-radius: 50%;
  box-shadow:
    0 0 0 8px rgba(95, 124, 255, 0.12),
    0 10px 22px rgba(17, 25, 48, 0.16);
  opacity: 0;
  transform: translate(-50%, -50%);
}

.home-approach-flow::before,
.home-approach-flow::after {
  display: none;
}

.home-approach-grid.is-running .home-approach-flow__line {
  animation: approach-dash 2.8s linear infinite;
}

.home-approach-grid.is-running .home-approach-flow__pulse {
  opacity: 1;
  animation: approach-pulse 12s ease-in-out infinite;
}

.home-approach-card {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-rows: auto auto auto 1fr;
  min-height: 360px;
  padding: clamp(22px, 2vw, 30px);
  color: #111930;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(56, 81, 147, 0.14);
  border-radius: 8px;
  transition:
    background 320ms ease,
    border-color 420ms ease,
    box-shadow 420ms ease;
}

.home-approach-card + .home-approach-card {
  margin-left: -1px;
}

.home-approach-card::before {
  position: absolute;
  inset: 10px;
  z-index: -1;
  content: "";
  border: 1px dashed rgba(56, 81, 147, 0.18);
  border-radius: 5px;
  opacity: 0.72;
  transition: border-color 420ms ease, opacity 420ms ease;
}

.home-approach-card::after {
  position: absolute;
  top: 50%;
  right: -18px;
  z-index: 4;
  width: 36px;
  height: 36px;
  content: "";
  background:
    linear-gradient(45deg, transparent 45%, #385193 45%, #385193 55%, transparent 55%),
    linear-gradient(-45deg, transparent 45%, #385193 45%, #385193 55%, transparent 55%);
  opacity: 0.28;
  transform: translateY(-50%) rotate(45deg);
}

.home-approach-card:last-child::after {
  display: none;
}

.home-approach-card.is-active {
  background:
    radial-gradient(circle at 78% 76%, rgba(95, 124, 255, 0.13), transparent 34%),
    rgba(255, 255, 255, 0.98);
  border-color: rgba(56, 81, 147, 0.5);
  box-shadow:
    inset 0 0 0 1px rgba(56, 81, 147, 0.18),
    0 16px 36px rgba(7, 14, 36, 0.08);
}

.home-approach-card.is-active::before {
  border-color: rgba(56, 81, 147, 0.34);
  opacity: 1;
}

.home-approach-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 28px;
}

.home-approach-step {
  display: inline-grid;
  width: 44px;
  height: 44px;
  color: #385193;
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 900;
  background: #eef4ff;
  border: 1px solid rgba(56, 81, 147, 0.22);
  border-radius: 50%;
  place-items: center;
  transition: color 320ms ease, background 320ms ease, border-color 320ms ease;
}

.home-approach-tag {
  min-width: 0;
  color: rgba(56, 81, 147, 0.72);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.home-approach-card.is-active .home-approach-step {
  color: #ffffff;
  background: #385193;
  border-color: #385193;
}

.home-approach-card h3 {
  margin: 0;
  color: #111930;
  font-size: clamp(1.18rem, 1.55vw, 1.55rem);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: 0;
  text-align: left;
}

.home-approach-card p {
  max-width: 30ch;
  margin: 14px 0 0;
  color: #202844;
  font-size: clamp(0.96rem, 1vw, 1.04rem);
  font-weight: 600;
  line-height: 1.5;
}

.home-approach-visual {
  align-self: stretch;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: clamp(190px, 18vw, 260px);
  margin-top: clamp(26px, 3vw, 42px);
  color: rgba(56, 81, 147, 0.88);
}

.home-approach-visual img {
  display: block;
  width: min(280px, 88%);
  height: auto;
  max-height: 235px;
  object-fit: contain;
  opacity: 0.9;
  transition: opacity 420ms ease, transform 420ms ease;
}

.home-approach-visual--bluebox {
  min-height: clamp(210px, 20vw, 280px);
}

.home-approach-visual--bluebox img {
  width: min(410px, 100%);
  max-height: 265px;
}

.home-approach-visual img[src*="solution-analyse"] {
  width: min(310px, 92%);
  max-height: 235px;
}

.home-approach-visual img[src*="solution-hergebruik"] {
  width: min(330px, 94%);
  max-height: 210px;
}

.home-approach-visual svg {
  width: min(220px, 88%);
  height: auto;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 4;
  transition: color 420ms ease, transform 420ms ease;
}

.home-approach-card.is-active .home-approach-visual svg,
.home-approach-card.is-active .home-approach-visual img {
  color: #243d74;
  opacity: 1;
  transform: translateY(-3px);
}

.home-approach-visual circle {
  fill: #ffffff;
  stroke: #385193;
}

.home-visual-grid {
  stroke: rgba(56, 81, 147, 0.18);
  stroke-width: 2;
}

.home-visual-line {
  stroke: #385193;
}

.home-visual-line--soft {
  stroke: rgba(95, 124, 255, 0.5);
}

.home-visual-module {
  fill: rgba(95, 124, 255, 0.08);
  stroke: #385193;
}

.home-visual-arrow,
.home-visual-arrowhead {
  fill: #385193;
  stroke: #385193;
}

.home-approach-visual .home-visual-fill {
  fill: rgba(56, 81, 147, 0.08);
}

.home-approach-visual .home-visual-fill--solid {
  fill: rgba(56, 81, 147, 0.9);
  stroke: #385193;
}

@keyframes approach-dash {
  to {
    background-position: 18px 50%;
  }
}

@keyframes approach-pulse {
  0%,
  10% {
    left: 0;
  }

  33%,
  43% {
    left: 50%;
  }

  66%,
  76% {
    left: 100%;
  }

  100% {
    left: 0;
  }
}

.home-section--blueprint {
  overflow: hidden;
  color: #ffffff;
  background:
    radial-gradient(circle at 18% 12%, rgba(95, 124, 255, 0.18), transparent 30%),
    linear-gradient(135deg, #111930 0%, #243d74 100%);
}

.home-section--blueprint::after {
  background: rgba(255, 255, 255, 0.08);
}

.home-blueprint-frame {
  display: grid;
  align-content: center;
  min-height: auto;
  padding-top: clamp(82px, 10vh, 128px);
  padding-bottom: clamp(86px, 10vh, 132px);
  border-color: rgba(255, 255, 255, 0.12);
}

@media (min-width: 1221px) {
  .plan-blueprint-page {
    padding-bottom: 0;
  }

  .plan-blueprint-page .home-blueprint-frame {
    min-height: clamp(860px, 96svh, 1040px);
    padding-top: clamp(118px, 14vh, 176px);
    padding-bottom: clamp(118px, 14vh, 176px);
  }

  .plan-blueprint-page .home-blueprint-head {
    margin-bottom: clamp(50px, 8vh, 88px);
  }

  .plan-blueprint-page .home-blueprint-detail {
    margin-top: clamp(48px, 7vh, 76px);
  }
}

.home-blueprint-head {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: clamp(36px, 6vh, 62px);
}

.home-blueprint-head p,
.home-blueprint-head h1,
.home-blueprint-head h2 {
  margin: 0;
  color: #ffffff;
}

.home-blueprint-head p {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.3vw, 4.1rem);
  font-style: italic;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.home-blueprint-head h1,
.home-blueprint-head h2 {
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(1.8rem, 2.8vw, 3.3rem);
  font-weight: 500;
  letter-spacing: -0.04em;
}

.home-blueprint-head h1 span {
  color: #ffffff;
  font-style: italic;
  font-weight: 800;
}

.home-blueprint-timeline {
  position: relative;
  min-width: 0;
}

.home-blueprint-years {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(170px, 1fr));
  gap: clamp(26px, 3vw, 54px);
  padding: 0;
  margin: 0;
  list-style: none;
}

.home-blueprint-years::before {
  position: absolute;
  right: 0;
  left: 0;
  top: clamp(92px, 10vw, 128px);
  height: 3px;
  content: "";
  background: linear-gradient(90deg, rgba(184, 221, 255, 0.86), rgba(184, 221, 255, 0.2));
  box-shadow: 0 0 28px rgba(95, 124, 255, 0.22);
}

.home-blueprint-years li {
  position: relative;
  display: grid;
  align-content: start;
  min-height: 172px;
}

.home-blueprint-year {
  color: rgba(184, 221, 255, 0.28);
  font-family: var(--font-display);
  font-size: clamp(3.25rem, 6.3vw, 6.9rem);
  font-weight: 700;
  letter-spacing: -0.07em;
  line-height: 0.82;
  text-shadow: 0 10px 26px rgba(0, 0, 0, 0.22);
  transition: color 260ms ease, opacity 260ms ease, transform 260ms ease;
}

.home-blueprint-years li.is-active .home-blueprint-year {
  color: rgba(218, 241, 255, 0.9);
  opacity: 1;
  transform: translateY(-8px);
}

.home-blueprint-years li.is-active {
  z-index: 3;
}

.home-blueprint-dot {
  position: absolute;
  top: calc(clamp(92px, 10vw, 128px) - 8px);
  left: 6px;
  z-index: 2;
  width: 20px;
  height: 20px;
  padding: 0;
  cursor: pointer;
  background: #c9ebff;
  border: 0;
  border-radius: 50%;
  box-shadow: 0 0 0 8px rgba(201, 235, 255, 0.08);
  transition: background 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.home-blueprint-dot:hover,
.home-blueprint-dot:focus-visible,
.home-blueprint-years li.is-active .home-blueprint-dot {
  background: #ffffff;
  box-shadow:
    0 0 0 10px rgba(201, 235, 255, 0.14),
    0 0 34px rgba(95, 124, 255, 0.36);
  outline: none;
  transform: scale(1.16);
}

.home-blueprint-detail {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 6px 24px;
  width: min(760px, 100%);
  min-height: 132px;
  margin-top: clamp(18px, 3vh, 34px);
  padding: 24px 28px;
  color: #ffffff;
  background: rgba(7, 14, 36, 0.28);
  border: 1px solid rgba(201, 235, 255, 0.16);
  border-radius: 18px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
}

.home-blueprint-detail span {
  grid-row: 1 / span 2;
  color: rgba(201, 235, 255, 0.9);
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 3.6vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.06em;
  line-height: 0.95;
}

.home-blueprint-detail h3 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(1.2rem, 1.7vw, 1.75rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.05;
}

.home-blueprint-detail p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: clamp(0.98rem, 1.15vw, 1.12rem);
  font-weight: 500;
  line-height: 1.42;
}

.home-section--service-routes {
  padding-top: clamp(70px, 9vh, 112px);
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 14%, rgba(201, 235, 255, 0.72), transparent 30%),
    radial-gradient(circle at 82% 82%, rgba(56, 81, 147, 0.08), transparent 34%),
    linear-gradient(rgba(56, 81, 147, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(56, 81, 147, 0.045) 1px, transparent 1px),
    linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  background-size: auto, auto, 44px 44px, 44px 44px, auto;
}

.home-service-frame {
  display: grid;
  gap: clamp(30px, 4vw, 44px);
}

.home-service-head {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(280px, 0.48fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: end;
}

.home-service-head:has(> h2:only-child) {
  grid-template-columns: 1fr;
  gap: 0;
}

.home-service-head .home-kicker {
  grid-column: 1 / -1;
  margin-bottom: -12px;
  color: #385193;
}

.home-service-head h2 {
  max-width: 760px;
  margin: 0;
  color: #111930;
  font-size: clamp(2rem, 3.1vw, 3.1rem);
  font-weight: 850;
  letter-spacing: -0.025em;
  line-height: 1.07;
}

.home-service-head > p:last-child {
  margin: 0;
  color: #526079;
  font-size: clamp(0.98rem, 1.2vw, 1.12rem);
  font-weight: 650;
  line-height: 1.5;
}

.home-service-routes {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(16px, 2.2vw, 28px);
  padding-top: 22px;
  border-top: 1px solid rgba(56, 81, 147, 0.14);
}

.home-service-routes::before {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 0;
  width: 1px;
  height: calc(100% - 44px);
  content: "";
  background: rgba(56, 81, 147, 0.16);
  transform: translate(-50%, -50%);
}

.home-service-card {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  min-height: clamp(430px, 34vw, 560px);
  padding: 0;
  overflow: hidden;
  color: #111930;
  background: #ffffff;
  border: 1px solid rgba(56, 81, 147, 0.16);
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(7, 14, 36, 0.07);
  transition: border-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.home-service-card--materials {
  margin-top: 0;
}

.home-service-card::before {
  display: none;
}

.home-service-card:hover,
.home-service-card:focus-visible {
  border-color: rgba(56, 81, 147, 0.34);
  box-shadow: 0 24px 52px rgba(7, 14, 36, 0.11);
  outline: none;
  transform: translateY(-3px);
}

.home-service-card__media {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 8.6;
  overflow: hidden;
  background: rgba(201, 235, 255, 0.08);
  border-bottom: 1px solid rgba(56, 81, 147, 0.14);
}

.home-service-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 420ms ease, filter 420ms ease;
}

.home-service-card:hover .home-service-card__media img,
.home-service-card:focus-visible .home-service-card__media img {
  transform: scale(1.025);
}

.home-service-card__meta {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
  padding: clamp(22px, 2vw, 28px) clamp(24px, 2.6vw, 38px) 0;
}

.home-service-card__number {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  height: auto;
  margin: 0;
  padding: 0;
  color: #385193;
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 950;
  letter-spacing: 0.14em;
  background: transparent;
  border-bottom: 0;
  border-radius: 0;
}

.home-service-card__copy {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: none;
  padding: clamp(24px, 2.4vw, 34px) clamp(24px, 2.6vw, 38px) 0;
}

.home-service-card__label {
  margin: 0;
  color: rgba(56, 81, 147, 0.76);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.home-service-card h3 {
  max-width: 22ch;
  margin: 0;
  color: #111930;
  font-size: clamp(1.5rem, 2vw, 2.08rem);
  font-weight: 850;
  letter-spacing: -0.025em;
  line-height: 1.08;
}

.home-service-card__copy p:last-child {
  max-width: 36ch;
  margin: 18px 0 0;
  color: #2b344d;
  font-size: clamp(0.98rem, 1.1vw, 1.08rem);
  font-weight: 650;
  line-height: 1.48;
}

.home-service-card__diagram {
  display: none;
}

.home-service-card__diagram span {
  display: block;
  height: 10px;
  background: #385193;
  border-radius: 999px;
}

.home-service-card__diagram span:nth-child(2) {
  width: 72%;
}

.home-service-card__diagram span:nth-child(3) {
  width: 46%;
}

.home-service-card__cta {
  position: relative;
  z-index: 1;
  align-self: end;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  margin: 34px clamp(24px, 2.6vw, 38px) clamp(24px, 2.6vw, 38px);
  color: #385193;
  font-size: 0.96rem;
  font-weight: 900;
}

.home-service-card__cta svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.5;
  transition: transform 180ms ease;
}

.home-service-card:hover .home-service-card__cta svg,
.home-service-card:focus-visible .home-service-card__cta svg {
  transform: translateX(4px);
}

.home-section--solution {
  background: #ffffff;
}

.home-solution-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) 286px;
  gap: 54px;
  align-items: start;
  padding-top: 42px;
}

.home-solution-copy h2 {
  max-width: 840px;
  margin: 0;
  color: #111930;
  font-size: clamp(2.6rem, 4.7vw, 4.3rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.05;
}

.home-solution-copy .is-link {
  position: relative;
  color: #385193;
}

.home-solution-lede {
  max-width: 850px;
  margin: 26px 0 0;
  color: #111930;
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.32;
}

.home-solution-machine {
  margin-top: 52px;
}

.home-solution-machine__shell {
  position: relative;
  min-height: 216px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    #20386f;
  border: 4px solid #18284f;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.home-machine-block {
  position: absolute;
  display: block;
  background: linear-gradient(180deg, #dedede, #a3adb6);
  border: 2px solid rgba(20, 31, 64, 0.28);
}

.home-machine-block--motor {
  top: 34px;
  left: 24px;
  width: 150px;
  height: 56px;
  border-radius: 6px;
}

.home-machine-block--pump {
  left: 94px;
  bottom: 28px;
  width: 82px;
  height: 76px;
  border-radius: 10px;
}

.home-machine-block--tank {
  top: 22px;
  left: 218px;
  width: 126px;
  height: 132px;
  border-radius: 50%;
}

.home-machine-block--filter {
  top: 54px;
  right: 160px;
  width: 104px;
  height: 90px;
  border-radius: 8px;
}

.home-machine-block--press {
  right: 26px;
  bottom: 32px;
  width: 264px;
  height: 48px;
  border-radius: 999px 999px 14px 14px;
}

.home-machine-line {
  position: absolute;
  display: block;
  height: 5px;
  background: #1a223d;
  border-radius: 999px;
}

.home-machine-line--top {
  top: 72px;
  left: 166px;
  right: 192px;
}

.home-machine-line--bottom {
  top: 112px;
  left: 150px;
  right: 94px;
}

.home-solution-lower {
  display: grid;
  grid-template-columns: minmax(280px, 0.36fr) minmax(0, 0.64fr);
  gap: 28px;
  align-items: start;
  margin-top: 38px;
}

.home-solution-feature {
  display: grid;
  gap: 18px;
  align-content: start;
}

.home-solution-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: #111930;
}

.home-solution-feature h3 {
  margin: 0;
  color: #111930;
  font-size: 1.2rem;
}

.home-solution-feature p {
  margin: 0;
  color: #1f2743;
  font-size: 1rem;
  line-height: 1.45;
}

.home-vertical-media {
  min-height: 380px;
  overflow: hidden;
  border-radius: 32px;
  background:
    linear-gradient(180deg, rgba(7, 14, 36, 0.12), rgba(7, 14, 36, 0.02)),
    #d4d7dd;
}

.home-vertical-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(0.82) saturate(0.65) brightness(0.88);
}

.home-solution-side {
  min-height: 100%;
}

.home-stat-stack {
  position: sticky;
  top: calc(var(--header-height) + 34px);
  display: grid;
  gap: 0;
}

.home-stat-box {
  min-height: 330px;
  padding: 42px 20px;
  text-align: center;
  border: 2px solid rgba(24, 36, 76, 0.18);
  border-radius: 24px;
}

.home-stat-box--light {
  color: #385193;
  background: #ffffff;
}

.home-stat-box--dark {
  margin-top: -2px;
  color: #ffffff;
  background: #0b1029;
}

.home-section--products,
.home-section--projects,
.home-section--team,
.home-section--partners,
.home-section--contact {
  background: #ffffff;
}

.home-section--products {
  padding-top: clamp(56px, 8vh, 96px);
}

.home-product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.home-product-card {
  position: relative;
  display: grid;
  align-items: end;
  min-height: 482px;
  padding: 20px 24px;
  overflow: hidden;
  color: #ffffff;
  border: 1px solid rgba(24, 36, 76, 0.16);
  border-radius: 28px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.home-product-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(7, 14, 36, 0) 48%, rgba(7, 14, 36, 0.36) 100%);
}

.home-product-card strong {
  position: relative;
  z-index: 1;
  font-size: 1.05rem;
}

.home-product-visual {
  position: absolute;
  inset: 0;
  background: #ece7dc;
}

.home-product-visual img {
  display: block;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 68%;
}

.home-product-visual::before,
.home-product-visual::after {
  content: "";
  display: none;
}

.home-product-visual--photo {
  background: #ebe4d9;
}

.home-product-visual--photo::after,
.home-product-visual--photo::before {
  content: none;
  display: none;
}

.home-product-visual--sand img {
  object-position: center 70%;
}

.home-product-visual--loam img {
  object-position: center 70%;
}

.home-product-visual--clay img {
  object-position: center 74%;
}

.home-product-visual--organic img {
  object-position: center 72%;
}

.home-projects-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: 220px;
  gap: 18px;
}

.home-project-skeleton {
  min-height: 100%;
  border-radius: 28px;
  background: linear-gradient(135deg, #eef2f7, #dfe5ee);
  animation: slow-lift 5s ease-in-out infinite;
}

.home-project-card {
  position: relative;
  display: grid;
  align-content: end;
  min-height: 100%;
  padding: 26px;
  overflow: hidden;
  color: #ffffff;
  border: 1px solid rgba(24, 36, 76, 0.16);
  border-radius: 28px;
  isolation: isolate;
}

.home-project-card::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(180deg, rgba(7, 14, 36, 0.04), rgba(7, 14, 36, 0.64)),
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.12) 0 1px, transparent 2px);
  background-size: auto, 6px 6px;
}

.home-project-card__media {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: linear-gradient(160deg, #6f86b4, #3d527d);
}

.home-project-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(0.84) saturate(0.76) brightness(0.72);
}

.home-project-card__meta,
.home-project-card__cta {
  position: relative;
  z-index: 1;
}

.home-project-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.home-project-chip {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.74rem;
  font-weight: 800;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 999px;
}

.home-project-card h3 {
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: 1.35rem;
  line-height: 1.15;
}

.home-project-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  min-height: 44px;
  padding: 0 16px;
  margin-top: 18px;
  color: #ffffff;
  font-weight: 800;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;
}

.home-project-card--featured {
  grid-column: 1 / span 2;
  grid-row: 1;
}

.home-project-card--featured h3 {
  max-width: 760px;
  font-size: 2rem;
}

.home-project-card--tall {
  grid-column: 3;
  grid-row: 1 / span 2;
}

.home-project-card--small {
  min-height: 100%;
}

.home-team-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  margin-top: 48px;
}

.home-team-card {
  padding-bottom: 28px;
  border-bottom: 1px dashed rgba(57, 79, 142, 0.28);
}

.home-team-card h3 {
  margin: 24px 0 10px;
  color: #111930;
  font-size: 1.4rem;
}

.home-team-card a {
  color: rgba(17, 25, 48, 0.58);
  font-size: 0.92rem;
  font-weight: 700;
}

.home-portrait {
  position: relative;
  width: min(100%, 258px);
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 50%;
  background: linear-gradient(180deg, #a9adb4, #7f8289);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.18),
    0 12px 28px rgba(7, 14, 36, 0.08);
}

.home-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 28%;
  transform: scale(1.05);
}

.home-portrait::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    radial-gradient(circle at 32% 18%, rgba(255, 255, 255, 0.22) 0 8%, transparent 9%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(7, 14, 36, 0.08));
  pointer-events: none;
}

.home-portrait--one img {
  object-position: center 26%;
}

.home-portrait--two img {
  object-position: 58% 26%;
  transform: scale(1.08);
}

.home-portrait--three img {
  object-position: center 23%;
  transform: scale(1.06);
}

.home-partner-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 26px;
  padding-top: 36px;
}

.home-partner-card {
  display: grid;
  gap: 16px;
  place-items: center;
  min-height: 168px;
  text-align: center;
}

.home-partner-card span {
  color: rgba(17, 25, 48, 0.46);
  font-size: 0.96rem;
  font-weight: 800;
}

.home-partner-card strong {
  color: #171f39;
  font-size: 1rem;
}

.home-contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.78fr);
  gap: 56px;
  align-items: center;
  min-height: 540px;
}

.home-contact-copy p {
  margin: 26px 0 0;
  color: #17203c;
  font-size: 1.1rem;
  font-weight: 500;
}

.home-contact-form {
  display: grid;
  gap: 16px;
  padding: 28px;
  background: #ededee;
  border: 1px solid rgba(24, 36, 76, 0.14);
  border-radius: 32px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.52);
}

.home-contact-form__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.home-contact-form label {
  display: grid;
  gap: 8px;
  color: #111930;
  font-weight: 800;
}

.home-contact-form input,
.home-contact-form textarea {
  width: 100%;
  color: #111930;
  background: rgba(255, 255, 255, 0.34);
  border: 1px solid rgba(24, 36, 76, 0.08);
  border-radius: 18px;
  outline: none;
}

.home-contact-form input {
  height: 50px;
  padding: 0 16px;
}

.home-contact-form textarea {
  min-height: 120px;
  padding: 16px;
  resize: vertical;
}

.home-contact-form input:focus,
.home-contact-form textarea:focus {
  border-color: rgba(56, 81, 147, 0.42);
  box-shadow: 0 0 0 4px rgba(56, 81, 147, 0.1);
}

.home-contact-form .primary-link {
  width: 100%;
  border: 0;
  border-radius: 999px;
}

.site-footer--brand,
.site-footer--home {
  padding: clamp(64px, 6vw, 88px) 0 clamp(24px, 3vw, 38px);
  color: #111930;
  background:
    radial-gradient(circle at 0% 0%, rgba(201, 235, 255, 0.34), transparent 30%),
    linear-gradient(180deg, #f9fbff 0%, #f3f6fb 100%);
  border-top: 1px solid rgba(56, 81, 147, 0.12);
}

.site-footer--brand .home-frame,
.site-footer--home .home-frame {
  width: min(1420px, calc(100% - clamp(32px, 8vw, 144px)));
  border-right: 0;
  border-left: 0;
}

.home-footer-meta {
  display: grid;
  grid-template-columns: minmax(280px, 1.15fr) minmax(150px, 0.72fr) minmax(150px, 0.72fr) minmax(210px, 0.86fr);
  column-gap: clamp(36px, 4.5vw, 76px);
  row-gap: clamp(36px, 4vw, 52px);
  padding: 0 0 clamp(34px, 4vw, 48px);
  border-bottom: 1px solid rgba(56, 81, 147, 0.13);
}

.home-footer-meta::before {
  display: none;
  content: none;
}

.home-footer-meta::after {
  display: none;
  content: none;
}

.home-footer-meta p,
.home-footer-meta a,
.home-footer-bottom {
  margin: 0;
  color: rgba(17, 25, 48, 0.65);
  font-size: clamp(0.86rem, 0.88vw, 0.96rem);
  font-weight: 500;
  line-height: 1.5;
}

.home-footer-brand,
.home-footer-column,
.home-footer-links,
.home-footer-address,
.home-footer-contact {
  display: grid;
  align-content: start;
  gap: 8px;
}

.home-footer-brand {
  grid-column: 1;
  gap: clamp(20px, 2.5vw, 30px);
  min-width: 0;
  max-width: 340px;
}

.home-footer-logo {
  display: block;
  width: min(100%, 280px);
  aspect-ratio: 771 / 153;
  overflow: hidden;
  color: transparent !important;
  font-size: 0 !important;
  line-height: 0 !important;
  text-decoration: none;
  white-space: nowrap;
  background: url("/assets/brand/blauwe-bagger-logo.svg") left center / contain no-repeat;
}

.home-footer-brand p {
  max-width: 29ch;
  color: rgba(17, 25, 48, 0.62);
  font-size: clamp(0.92rem, 0.95vw, 1.02rem);
  line-height: 1.55;
}

.home-footer-column {
  min-width: 0;
}

.home-footer-links {
  grid-column: 4;
}

.home-footer-address {
  grid-column: 1 / span 2;
  padding-top: clamp(24px, 2.5vw, 34px);
  border-top: 1px solid rgba(56, 81, 147, 0.11);
}

.home-footer-contact {
  grid-column: 3 / span 2;
  padding-top: clamp(24px, 2.5vw, 34px);
  border-top: 1px solid rgba(56, 81, 147, 0.11);
}

.home-footer-heading {
  margin-bottom: 14px;
  color: #385193;
  font-size: 0.7rem !important;
  font-weight: 900 !important;
  letter-spacing: 0.17em;
  line-height: 1;
  text-transform: uppercase;
}

.home-footer-contact p {
  max-width: none;
}

.home-footer-partner {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: fit-content;
  min-width: 176px;
  min-height: 42px;
  padding: 0 14px;
  margin-bottom: 10px;
  gap: 22px;
  color: #385193 !important;
  font-size: 0.86rem !important;
  font-weight: 750 !important;
  background: rgba(56, 81, 147, 0.06);
  border: 1px solid rgba(56, 81, 147, 0.18);
  border-radius: 6px;
  box-shadow: none;
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease,
    transform 160ms ease;
}

.home-footer-partner:hover,
.home-footer-partner:focus-visible {
  color: #ffffff !important;
  background: #385193;
  border-color: #385193;
  box-shadow: 0 10px 24px rgba(56, 81, 147, 0.18);
  outline: none;
  transform: translateY(-2px);
}

.home-footer-meta a,
.home-footer-bottom a {
  text-decoration: none;
  transition: color 160ms ease, opacity 160ms ease;
}

.home-footer-meta a:hover,
.home-footer-meta a:focus-visible,
.home-footer-bottom a:hover,
.home-footer-bottom a:focus-visible {
  color: #385193;
}

.home-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: clamp(20px, 2.5vw, 28px) 0 0;
  color: rgba(17, 25, 48, 0.48);
  font-size: 0.76rem;
  font-weight: 500;
}

.home-footer-bottom__links {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px;
}

.site-footer--surface-light {
  color: #111930;
  background:
    radial-gradient(circle at 8% 0%, rgba(201, 235, 255, 0.56), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #f3f7ff 100%);
  border-top-color: rgba(56, 81, 147, 0.14);
}

.site-footer--surface-light .home-footer-meta {
  border-bottom-color: rgba(56, 81, 147, 0.16);
}

.site-footer--surface-light .home-footer-logo {
  color: #385193 !important;
}

.site-footer--surface-light .home-footer-meta p,
.site-footer--surface-light .home-footer-meta a,
.site-footer--surface-light .home-footer-bottom {
  color: rgba(17, 25, 48, 0.68);
}

.site-footer--surface-light .home-footer-heading {
  color: rgba(56, 81, 147, 0.68);
}

.site-footer--surface-light .home-footer-partner {
  color: #ffffff !important;
  background: linear-gradient(135deg, #385193 0%, #20386f 100%);
  border-color: rgba(56, 81, 147, 0.18);
  box-shadow:
    0 16px 30px rgba(56, 81, 147, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.site-footer--surface-light .home-footer-partner:hover,
.site-footer--surface-light .home-footer-partner:focus-visible {
  border-color: rgba(56, 81, 147, 0.34);
  box-shadow:
    0 20px 38px rgba(56, 81, 147, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.site-footer--surface-light .home-footer-meta a:hover,
.site-footer--surface-light .home-footer-meta a:focus-visible,
.site-footer--surface-light .home-footer-bottom a:hover,
.site-footer--surface-light .home-footer-bottom a:focus-visible {
  color: #385193;
}

.home-footer-wordmark {
  display: none;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: clamp(8px, 1.4vw, 18px);
  padding: clamp(24px, 4vw, 42px) 0 0;
  font-size: clamp(2.2rem, 5.8vw, 6.8rem);
  font-weight: 900;
  line-height: 0.82;
  letter-spacing: -0.07em;
  opacity: 0.9;
}

.home-footer-wordmark span:first-child {
  color: #385193;
}

.home-footer-wordmark span:last-child {
  color: #000000;
}

.home-floating-cta {
  position: fixed;
  left: 50%;
  bottom: 24px;
  z-index: 75;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 6px 10px 6px 6px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(24, 36, 76, 0.08);
  border-radius: 999px;
  box-shadow: 0 24px 36px rgba(7, 14, 36, 0.16);
  backdrop-filter: blur(10px);
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(18px);
  transition: opacity 220ms ease, transform 220ms ease;
}

body.is-past-hero .home-floating-cta {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.home-floating-avatars {
  display: flex;
}

.home-floating-avatars span {
  display: grid;
  place-items: center;
  overflow: hidden;
  width: 48px;
  height: 48px;
  margin-right: -10px;
  background: #0b1029;
  border: 3px solid rgba(255, 255, 255, 0.84);
  border-radius: 50%;
}

.home-floating-avatars img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 24%;
  transform: scale(1.08);
}

.home-floating-avatars span:nth-child(2) img {
  object-position: 58% 24%;
}

.home-floating-cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  color: #ffffff;
  font-weight: 900;
  background: #3652a1;
  border-radius: 999px;
}

@media (max-width: 1180px) {
  body[data-page="home"] .brand-link {
    width: auto;
  }

  body[data-page="home"] .site-header.is-condensed .brand-link {
    width: auto;
    min-width: 0;
  }

  .home-mission-grid,
  .home-contact-grid,
  .home-approach-grid,
  .home-solution-grid,
  .home-problem-head,
  .home-issue-bottom,
  .home-solution-lower {
    grid-template-columns: 1fr;
  }

  .home-product-grid,
  .home-partner-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-team-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .home-projects-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 240px;
  }

  .home-project-card--featured {
    grid-column: 1 / -1;
  }

  .home-project-card--tall {
    grid-column: 2;
    grid-row: auto / span 2;
  }

  .home-solution-side {
    order: -1;
  }

  .home-stat-stack {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-stat-box {
    min-height: 260px;
  }

  .home-approach-card {
    min-height: auto;
  }

  .home-approach-flow {
    display: none;
  }

  .home-approach-grid {
    gap: 28px;
  }

  .home-approach-card + .home-approach-card {
    margin-left: 0;
  }

  .home-approach-card::after {
    top: auto;
    right: 50%;
    bottom: -19px;
    transform: translateX(50%) rotate(135deg);
  }

  .home-blueprint-frame {
    min-height: auto;
  }

  .home-blueprint-timeline {
    overflow-x: visible;
    padding-bottom: 0;
  }

  .home-blueprint-years {
    min-width: 0;
    grid-template-columns: repeat(5, minmax(118px, 1fr));
    gap: 18px;
  }
}

@media (max-width: 880px) {
  .home-frame {
    width: min(100% - 28px, 1310px);
    padding-inline: 14px;
  }

  .home-service-head,
  .home-service-routes {
    grid-template-columns: 1fr;
    padding-top: 18px;
  }

  .home-service-head {
    gap: 16px;
  }

  .home-service-head .home-kicker {
    margin-bottom: 0;
  }

  .home-service-routes::before {
    display: none;
  }

  .home-service-card--materials {
    margin-top: 0;
  }

  body[data-page="home"] .nav-actions {
    display: flex;
  }

  body[data-page="home"] .nav-shell,
  body[data-page="home"] .site-header.is-condensed .nav-shell,
  body[data-page="home"] .site-header.is-condensed.is-over-blue .nav-shell {
    grid-template-columns: 58px minmax(0, 1fr) auto;
    width: min(100% - 36px, 680px);
    height: 76px;
    padding: 0 18px;
    gap: 12px;
    color: #ffffff;
    background:
      linear-gradient(135deg, rgba(9, 17, 39, 0.98), rgba(32, 56, 111, 0.96));
    border-color: rgba(184, 221, 255, 0.2);
    border-radius: 34px;
    box-shadow:
      0 20px 44px rgba(7, 14, 36, 0.22),
      inset 0 1px 0 rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(18px);
    transition:
      background-color 160ms ease,
      border-color 160ms ease,
      box-shadow 160ms ease,
      border-radius 120ms ease;
  }

  body[data-page="home"] .site-header.is-condensed.is-over-blue .language-toggle::before {
    background: rgba(201, 235, 255, 0.24);
  }

  body[data-page="home"] .site-header.is-condensed.is-over-blue .language-toggle a {
    color: rgba(255, 255, 255, 0.58);
  }

  body[data-page="home"] .site-header.is-condensed.is-over-blue .language-toggle a[aria-current="true"] {
    color: #ffffff;
  }

  body[data-page="home"] .site-header.is-condensed.is-over-blue .menu-toggle span {
    background: #ffffff;
  }

  body[data-page="home"] .site-header.is-menu-open .nav-shell,
  body[data-page="home"] .site-header:has(.menu-toggle[aria-expanded="true"]) .nav-shell {
    border-bottom-right-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
  }

  body[data-page="home"] .brand-link {
    width: 54px;
    min-width: 54px;
    height: 54px;
    padding: 0;
    margin-left: 0;
    font-size: 1.5rem;
  }

  body[data-page="home"] .site-header.is-condensed .brand-link {
    width: 54px;
    min-width: 54px;
    height: 54px;
    padding: 0;
  }

  body[data-page="home"] .brand-link__icon,
  body[data-page="home"] .site-header.is-condensed .brand-link__icon {
    width: 54px;
    height: 54px;
  }

  body[data-page="home"] .main-nav {
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
    backdrop-filter: none;
  }

  body[data-page="home"] .mobile-menu {
    width: min(100% - 36px, 680px);
    padding: 18px 22px 22px;
    margin-top: -1px;
    color: #ffffff;
    background:
      linear-gradient(135deg, rgba(9, 17, 39, 0.98), rgba(32, 56, 111, 0.96));
    border-color: rgba(184, 221, 255, 0.18);
    border-top: 0;
    border-radius: 0 0 32px 32px;
    box-shadow:
      0 20px 44px rgba(7, 14, 36, 0.22),
      inset 0 1px 0 rgba(255, 255, 255, 0.06);
  }

  body:not([data-page="home"]) .nav-shell,
  body:not([data-page="home"]) .site-header.is-condensed .nav-shell {
    grid-template-columns: 58px minmax(0, 1fr) auto;
    width: min(100% - 36px, 680px);
    height: 76px;
    padding: 0 18px;
    gap: 12px;
    border-radius: 34px;
  }

  body:not([data-page="home"]) .site-header .brand-link,
  body:not([data-page="home"]) .site-header.is-condensed .brand-link {
    width: 54px;
    min-width: 54px;
    height: 54px;
  }

  body:not([data-page="home"]) .site-header .brand-link__icon,
  body:not([data-page="home"]) .site-header.is-condensed .brand-link__icon {
    width: 54px;
    height: 54px;
  }

  body:not([data-page="home"]) .site-header .nav-actions,
  body:not([data-page="home"]) .site-header.is-condensed .nav-actions {
    gap: 16px;
  }

  body:not([data-page="home"]) .mobile-menu {
    width: min(100% - 36px, 680px);
    border-radius: 0 0 32px 32px;
  }

  .home-hero-card {
    min-height: calc(100svh - 70px);
  }

  .home-hero-copy {
    max-width: 500px;
    padding-top: 0;
  }

  .home-hero-3d {
    right: -120px;
    width: min(760px, 74vw);
    height: clamp(230px, 44vw, 480px);
    opacity: 0.62;
  }

  .home-hero-info {
    grid-template-columns: 1fr;
  }

  .home-hero-info-card {
    min-height: auto;
    padding: 22px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }

  .home-hero-info-card:last-child {
    border-bottom: 0;
  }

  .home-hero-contact {
    right: 18px;
    bottom: 42px;
  }

  .home-problem-columns {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 34px;
    padding-top: 30px;
  }

  .home-problem-columns::before {
    display: none;
  }

  .home-problem-panel {
    min-height: auto;
    gap: 14px;
    padding: 0;
  }

  .home-problem-copy-image {
    aspect-ratio: 4 / 3;
  }

  .home-problem-panel h3 {
    text-align: left;
  }

  .home-problem-meter {
    grid-template-columns: 1fr;
    width: 100%;
    border-radius: 6px;
  }

  .home-problem-meter div {
    min-height: 94px;
    padding: 18px;
  }

  .home-problem-meter div + div {
    border-top: 1px solid rgba(201, 235, 255, 0.34);
    border-left: 0;
  }

  .home-problem-meter__label {
    font-size: clamp(1.8rem, 9vw, 3rem);
    letter-spacing: -0.06em;
  }

  .home-problem-grid,
  .home-issue-grid {
    grid-template-columns: 1fr;
  }

  .home-tower {
    min-height: auto;
    padding: 26px 18px;
  }

  .home-tower--dark {
    justify-content: center;
  }

  .home-team-grid,
  .home-partner-grid,
  .home-product-grid,
  .home-contact-form__grid {
    grid-template-columns: 1fr;
  }

  .home-footer-meta {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 32px;
    row-gap: 36px;
  }

  .home-footer-meta > :nth-child(1) {
    grid-column: 1 / -1;
  }

  .home-footer-meta > :nth-child(2),
  .home-footer-meta > :nth-child(4) {
    grid-column: 1;
  }

  .home-footer-meta > :nth-child(3),
  .home-footer-meta > :nth-child(5) {
    grid-column: 2;
  }

  .home-footer-meta > :nth-child(6) {
    grid-column: 1 / -1;
  }

  .home-projects-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }

  .home-project-card,
  .home-project-card--featured,
  .home-project-card--tall,
  .home-project-card--small {
    grid-column: auto;
    grid-row: auto;
    min-height: 320px;
  }

  .home-footer-links {
    justify-items: start;
  }

  .home-footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 760px) {
  .home-main {
    padding-bottom: 92px;
  }

  .site-footer--brand,
  .site-footer--home {
    padding-top: 52px;
  }

  .home-footer-meta {
    grid-template-columns: 1fr;
    row-gap: 32px;
  }

  .home-footer-meta > :nth-child(n) {
    grid-column: 1;
  }

  .home-footer-address,
  .home-footer-contact {
    padding-top: 24px;
  }

  .home-section {
    padding-bottom: 48px;
  }

  .home-section--service-routes {
    padding-top: 56px;
  }

  .home-section--products {
    padding-top: 42px;
  }

  .home-kicker {
    margin-bottom: 18px;
    font-size: 0.9rem;
  }

  .home-service-frame {
    gap: 28px;
  }

  .home-service-head h2 {
    font-size: clamp(1.9rem, 8vw, 2.65rem);
  }

  .home-service-card {
    min-height: auto;
    padding: 24px;
  }

  .home-service-card__number {
    margin-bottom: 24px;
  }

  .home-service-card h3 {
    max-width: 14ch;
  }

  .home-service-card__diagram {
    right: 24px;
    bottom: 78px;
    width: 86px;
  }

  .home-approach-frame {
    min-height: auto;
    padding-top: 58px;
    padding-bottom: 58px;
  }

  .home-approach-card {
    padding: 24px;
  }

  .home-approach-card p {
    max-width: none;
    margin-top: 12px;
  }

  .home-approach-visual {
    min-height: 160px;
    margin-top: 20px;
  }

  .home-approach-card__top {
    margin-bottom: 20px;
  }

  .home-approach-tag {
    font-size: 0.68rem;
    text-align: right;
  }

  .home-blueprint-frame {
    min-height: auto;
    padding-top: 56px;
    padding-bottom: 62px;
  }

  .home-blueprint-head {
    display: block;
    margin-bottom: 24px;
  }

  .home-blueprint-head p,
  .home-blueprint-head h1,
  .home-blueprint-head h2 {
    display: inline;
  }

  .home-blueprint-years {
    min-width: 0;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .home-blueprint-years::before {
    display: none;
  }

  .home-blueprint-years li {
    display: grid;
    grid-template-columns: 72px minmax(0, 1fr) 34px;
    gap: 12px;
    align-items: center;
    min-height: auto;
    padding: 13px 14px;
    background: rgba(7, 14, 36, 0.24);
    border: 1px solid rgba(201, 235, 255, 0.14);
    border-radius: 16px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
    transition: background 220ms ease, border-color 220ms ease;
  }

  .home-blueprint-years li::after {
    grid-column: 2;
    grid-row: 1;
    min-width: 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.95rem;
    font-weight: 800;
    line-height: 1.18;
    content: attr(data-blueprint-title);
  }

  .home-blueprint-years li.is-active {
    background: rgba(201, 235, 255, 0.09);
    border-color: rgba(201, 235, 255, 0.3);
  }

  .home-blueprint-year {
    grid-column: 1;
    grid-row: 1;
    color: rgba(201, 235, 255, 0.66);
    font-size: 1.7rem;
    letter-spacing: -0.04em;
    line-height: 1;
    text-shadow: none;
  }

  .home-blueprint-years li.is-active .home-blueprint-year {
    color: #ffffff;
    transform: none;
  }

  .home-blueprint-dot {
    position: static;
    grid-column: 3;
    grid-row: 1;
    justify-self: end;
    width: 28px;
    height: 28px;
    background: rgba(201, 235, 255, 0.22);
    border: 1px solid rgba(201, 235, 255, 0.44);
    box-shadow: none;
  }

  .home-blueprint-dot:hover,
  .home-blueprint-dot:focus-visible,
  .home-blueprint-years li.is-active .home-blueprint-dot {
    background: #ffffff;
    box-shadow: 0 0 0 6px rgba(201, 235, 255, 0.11);
    transform: none;
  }

  .home-blueprint-detail {
    grid-template-columns: 1fr;
    gap: 8px;
    min-height: auto;
    margin-top: 14px;
    padding: 20px;
    border-radius: 16px;
  }

  .home-blueprint-detail span {
    grid-row: auto;
    font-size: 2rem;
  }

  .home-blueprint-detail h3 {
    font-size: 1.16rem;
  }

  .home-blueprint-detail p {
    font-size: 0.96rem;
  }

  .home-hero {
    padding: 20px 0 36px;
  }

  .home-hero-3d {
    display: none;
  }

  .home-hero-card {
    min-height: 100svh;
  }

  .home-hero-copy {
    padding-top: 0;
    padding-bottom: 0;
    transform: translateY(24px);
  }

  .home-hero-copy p {
    font-size: 0.98rem;
  }

  .home-hero-copy h1 .home-hero-connector {
    font-size: clamp(1.85rem, 9vw, 3rem);
  }

  .home-mission-grid {
    min-height: auto;
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .home-mission-copy h2 {
    font-size: 0.82rem;
    line-height: 1;
  }

  .home-mission-copy p {
    font-size: clamp(1.72rem, 7.2vw, 2.8rem);
    line-height: 1.14;
  }

  .home-mission-copy .is-link,
  .home-mission-accent {
    white-space: normal;
  }

  .home-flow-graphic {
    right: -8%;
    width: min(42vw, 380px);
    opacity: 0.26;
  }

  .home-problem-head {
    margin-bottom: 24px;
  }

  .home-mini-machine {
    width: 132px;
  }

  .home-media-card,
  .home-media-card--cool {
    min-height: 320px;
    border-radius: 24px;
  }

  .home-glass-note {
    width: calc(100% - 28px);
    top: 14px;
    left: 14px;
    padding: 20px 18px;
    border-radius: 24px;
  }

  .home-solution-machine__shell {
    min-height: 184px;
  }

  .home-machine-block--motor {
    width: 100px;
  }

  .home-machine-block--tank {
    left: 146px;
    width: 84px;
    height: 102px;
  }

  .home-machine-block--filter {
    right: 92px;
    width: 72px;
  }

  .home-machine-block--press {
    right: 16px;
    width: 150px;
  }

  .home-vertical-media {
    min-height: 280px;
  }

  .home-product-card {
    min-height: 360px;
  }

  .home-contact-form {
    padding: 20px;
    border-radius: 24px;
  }

  .home-floating-cta {
    left: 14px;
    right: 14px;
    bottom: 14px;
    justify-content: space-between;
    transform: translateY(18px);
  }

  body.is-past-hero .home-floating-cta {
    transform: translateY(0);
  }

  .home-floating-cta a {
    flex: 1;
  }

  .home-footer-logo {
    width: min(100%, 240px);
    font-size: 0 !important;
  }

  .home-footer-wordmark {
    padding-top: 44px;
  }
}

@media (max-width: 430px) {
  .home-hero-card {
    min-height: 100svh;
  }

  .home-hero-copy {
    padding-top: 0;
    padding-bottom: 0;
    transform: translateY(12px);
  }

  .home-hero-contact {
    right: 0;
    bottom: 34px;
    min-width: 140px;
  }

  .home-hero-info-card__body {
    grid-template-columns: 96px minmax(0, 1fr);
  }

  .home-hero-info-card__body img {
    width: 96px;
  }

  .wave-underline {
    padding-bottom: 12px;
  }

  .wave-underline::after {
    height: 10px;
    background-size: 30px 10px;
  }

  .home-flow-graphic {
    right: -22%;
    width: 78vw;
    opacity: 0.18;
  }

  .home-project-card {
    padding: 18px;
    min-height: 280px;
  }

  .home-floating-avatars span {
    width: 42px;
    height: 42px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 1ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  body[data-page="home"] .mobile-menu:not([hidden]) {
    animation: none;
  }
}

.site-header .main-nav .nav-dropdown .nav-dropdown__menu {
  background: rgba(248, 251, 255, 0.96);
  border-color: rgba(17, 25, 48, 0.16);
  box-shadow:
    0 22px 48px rgba(7, 14, 36, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.88);
}

.site-header .main-nav .nav-dropdown .nav-dropdown__menu a,
body[data-page="home"] .site-header:not(.is-condensed) .main-nav .nav-dropdown .nav-dropdown__menu a,
body:not([data-page="home"]) .site-header:not(.is-condensed) .main-nav .nav-dropdown .nav-dropdown__menu a,
body[data-homepage-variant="bluebox-lab"] .site-header:not(.is-condensed) .main-nav .nav-dropdown .nav-dropdown__menu a {
  min-height: 52px;
  padding: 0 18px;
  color: #111930 !important;
  font-size: 1rem;
  font-weight: 850;
  text-shadow: none !important;
  background: transparent;
  border-radius: 12px;
  box-shadow: none;
}

.site-header .main-nav .nav-dropdown .nav-dropdown__menu a:hover,
.site-header .main-nav .nav-dropdown .nav-dropdown__menu a:focus-visible,
.site-header .main-nav .nav-dropdown .nav-dropdown__menu a.is-current,
body[data-page="home"] .site-header:not(.is-condensed) .main-nav .nav-dropdown .nav-dropdown__menu a:hover,
body[data-page="home"] .site-header:not(.is-condensed) .main-nav .nav-dropdown .nav-dropdown__menu a:focus-visible,
body[data-page="home"] .site-header:not(.is-condensed) .main-nav .nav-dropdown .nav-dropdown__menu a.is-current,
body:not([data-page="home"]) .site-header:not(.is-condensed) .main-nav .nav-dropdown .nav-dropdown__menu a:hover,
body:not([data-page="home"]) .site-header:not(.is-condensed) .main-nav .nav-dropdown .nav-dropdown__menu a:focus-visible,
body:not([data-page="home"]) .site-header:not(.is-condensed) .main-nav .nav-dropdown .nav-dropdown__menu a.is-current,
body[data-homepage-variant="bluebox-lab"] .site-header:not(.is-condensed) .main-nav .nav-dropdown .nav-dropdown__menu a:hover,
body[data-homepage-variant="bluebox-lab"] .site-header:not(.is-condensed) .main-nav .nav-dropdown .nav-dropdown__menu a:focus-visible,
body[data-homepage-variant="bluebox-lab"] .site-header:not(.is-condensed) .main-nav .nav-dropdown .nav-dropdown__menu a.is-current {
  color: #385193 !important;
  background: rgba(56, 81, 147, 0.1);
  outline: none;
}

body:not([data-page="home"]) .site-header:not(.is-condensed) .main-nav > a:hover,
body:not([data-page="home"]) .site-header:not(.is-condensed) .main-nav > a:focus-visible,
body:not([data-page="home"]) .site-header:not(.is-condensed) .main-nav > a.is-current,
body:not([data-page="home"]) .site-header:not(.is-condensed) .main-nav > .nav-dropdown > a:hover,
body:not([data-page="home"]) .site-header:not(.is-condensed) .main-nav > .nav-dropdown > a:focus-visible,
body:not([data-page="home"]) .site-header:not(.is-condensed) .main-nav > .nav-dropdown > a.is-current,
body[data-homepage-variant="bluebox-lab"] .site-header:not(.is-condensed) .main-nav > a:hover,
body[data-homepage-variant="bluebox-lab"] .site-header:not(.is-condensed) .main-nav > a:focus-visible,
body[data-homepage-variant="bluebox-lab"] .site-header:not(.is-condensed) .main-nav > a.is-current,
body[data-homepage-variant="bluebox-lab"] .site-header:not(.is-condensed) .main-nav > .nav-dropdown > a:hover,
body[data-homepage-variant="bluebox-lab"] .site-header:not(.is-condensed) .main-nav > .nav-dropdown > a:focus-visible,
body[data-homepage-variant="bluebox-lab"] .site-header:not(.is-condensed) .main-nav > .nav-dropdown > a.is-current {
  color: #ffffff;
  background: transparent !important;
  box-shadow: none !important;
}

@media (min-width: 1081px) {
  body:not([data-page="home"]):not([data-page="service-detail"]) .site-header:not(.is-condensed) .main-nav > a,
  body:not([data-page="home"]):not([data-page="service-detail"]) .site-header:not(.is-condensed) .main-nav > .nav-dropdown > a {
    color: #111930;
    text-shadow: none;
  }

  body:not([data-page="home"]):not([data-page="service-detail"]) .site-header:not(.is-condensed) .main-nav > a:hover,
  body:not([data-page="home"]):not([data-page="service-detail"]) .site-header:not(.is-condensed) .main-nav > a:focus-visible,
  body:not([data-page="home"]):not([data-page="service-detail"]) .site-header:not(.is-condensed) .main-nav > a.is-current,
  body:not([data-page="home"]):not([data-page="service-detail"]) .site-header:not(.is-condensed) .main-nav > .nav-dropdown > a:hover,
  body:not([data-page="home"]):not([data-page="service-detail"]) .site-header:not(.is-condensed) .main-nav > .nav-dropdown > a:focus-visible,
  body:not([data-page="home"]):not([data-page="service-detail"]) .site-header:not(.is-condensed) .main-nav > .nav-dropdown > a.is-current {
    color: #385193;
    background: transparent !important;
    box-shadow: none !important;
  }

  body:not([data-page="home"]):not([data-page="service-detail"]) .site-header:not(.is-condensed) .language-toggle::before {
    background: rgba(17, 25, 48, 0.18);
  }

  body:not([data-page="home"]):not([data-page="service-detail"]) .site-header:not(.is-condensed) .language-toggle a {
    color: rgba(17, 25, 48, 0.52);
    text-shadow: none;
  }

  body:not([data-page="home"]):not([data-page="service-detail"]) .site-header:not(.is-condensed) .language-toggle a:hover,
  body:not([data-page="home"]):not([data-page="service-detail"]) .site-header:not(.is-condensed) .language-toggle a:focus-visible,
  body:not([data-page="home"]):not([data-page="service-detail"]) .site-header:not(.is-condensed) .language-toggle a[aria-current="true"] {
    color: #111930;
  }

  body[data-page="service-detail"] .site-header:not(.is-condensed) .main-nav > a,
  body[data-page="service-detail"] .site-header:not(.is-condensed) .main-nav > .nav-dropdown > a,
  body[data-page="service-detail"] .site-header:not(.is-condensed) .language-toggle a {
    text-shadow: 0 1px 18px rgba(0, 0, 0, 0.36);
  }
}

@media (min-width: 761px) {
  .plan-blueprint-page .home-blueprint-frame {
    min-height: clamp(760px, 92svh, 980px);
  }

  .plan-blueprint-page .home-blueprint-head {
    justify-content: flex-start;
    margin-bottom: clamp(18px, 3.4vh, 42px);
  }

  .plan-blueprint-page .home-blueprint-head p {
    display: none;
  }

  .plan-blueprint-page .home-blueprint-timeline {
    --timeline-axis: clamp(245px, 26vw, 320px);
    --timeline-bottom-label-top: calc(var(--timeline-axis) + clamp(84px, 7.4vw, 108px));
    --timeline-year-top: calc(var(--timeline-axis) + clamp(198px, 17vw, 238px));
    min-height: clamp(660px, 62vw, 760px);
    padding: 0 clamp(12px, 1.4vw, 26px);
  }

  .plan-blueprint-page .home-blueprint-years {
    position: relative;
    display: block;
    height: clamp(590px, 56vw, 680px);
    min-width: 0;
    padding: 0;
    margin: 0;
  }

  .plan-blueprint-page .home-blueprint-years::before {
    top: var(--timeline-axis);
    right: 4%;
    left: 4%;
    height: 3px;
    background: linear-gradient(90deg, rgba(201, 235, 255, 0.1), rgba(201, 235, 255, 0.92), rgba(201, 235, 255, 0.22));
    box-shadow: 0 0 30px rgba(201, 235, 255, 0.18);
  }

  .plan-blueprint-page .home-blueprint-years::after {
    position: absolute;
    top: calc(var(--timeline-axis) - 5px);
    right: calc(4% - 1px);
    width: 10px;
    height: 10px;
    content: "";
    border-top: 3px solid rgba(201, 235, 255, 0.92);
    border-right: 3px solid rgba(201, 235, 255, 0.92);
    transform: rotate(45deg);
  }

  .plan-blueprint-page .home-blueprint-years li {
    position: absolute;
    top: 0;
    left: var(--timeline-pos);
    display: block;
    width: clamp(160px, 16vw, 250px);
    height: 100%;
    min-height: 0;
    transform: translateX(-50%);
  }

  .plan-blueprint-page .home-blueprint-years li::before {
    position: absolute;
    left: 50%;
    width: 1px;
    content: "";
    background-image: linear-gradient(180deg, rgba(201, 235, 255, 0.42) 50%, transparent 0);
    background-size: 1px 12px;
    transform: translateX(-50%);
  }

  .plan-blueprint-page .home-blueprint-years li:not(.home-blueprint-step--below)::before,
  .plan-blueprint-page .home-blueprint-step--above::before {
    top: clamp(110px, 11vw, 138px);
    height: calc(var(--timeline-axis) - clamp(122px, 12vw, 152px));
  }

  .plan-blueprint-page .home-blueprint-step--below::before {
    top: calc(var(--timeline-axis) + 20px);
    height: clamp(62px, 6vw, 84px);
  }

  .plan-blueprint-page .home-blueprint-label {
    position: absolute;
    left: 50%;
    display: grid;
    justify-items: center;
    width: min(220px, 16vw);
    color: rgba(255, 255, 255, 0.72);
    text-align: center;
    transform: translateX(-50%);
    transition: color 220ms ease, opacity 220ms ease, transform 220ms ease;
  }

  .plan-blueprint-page .home-blueprint-label--top {
    top: clamp(46px, 5.2vw, 82px);
  }

  .plan-blueprint-page .home-blueprint-label--bottom {
    top: var(--timeline-bottom-label-top);
  }

  .plan-blueprint-page .home-blueprint-label strong,
  .plan-blueprint-page .home-blueprint-label small {
    display: block;
  }

  .plan-blueprint-page .home-blueprint-label strong {
    font-family: var(--font-display);
    font-size: clamp(0.98rem, 1.08vw, 1.22rem);
    font-weight: 780;
    letter-spacing: -0.02em;
    line-height: 1.08;
  }

  .plan-blueprint-page .home-blueprint-label small {
    margin-top: 4px;
    color: rgba(255, 255, 255, 0.58);
    font-size: clamp(0.78rem, 0.9vw, 0.94rem);
    font-weight: 650;
    line-height: 1.18;
  }

  .plan-blueprint-page .home-blueprint-years li.is-active .home-blueprint-label {
    color: #ffffff;
    opacity: 1;
    transform: translateX(-50%) translateY(-4px);
  }

  .plan-blueprint-page .home-blueprint-years li.is-active .home-blueprint-label small {
    color: rgba(201, 235, 255, 0.86);
  }

  .plan-blueprint-page .home-blueprint-dot {
    top: calc(var(--timeline-axis) - 18px);
    left: 50%;
    width: 36px;
    height: 36px;
    background: #111930;
    border: 7px solid rgba(201, 235, 255, 0.86);
    box-shadow:
      0 0 0 8px rgba(201, 235, 255, 0.08),
      0 16px 34px rgba(7, 14, 36, 0.28);
    transform: translateX(-50%);
  }

  .plan-blueprint-page .home-blueprint-dot:hover,
  .plan-blueprint-page .home-blueprint-dot:focus-visible,
  .plan-blueprint-page .home-blueprint-years li.is-active .home-blueprint-dot {
    background: #c9ebff;
    border-color: #ffffff;
    box-shadow:
      0 0 0 10px rgba(201, 235, 255, 0.16),
      0 0 36px rgba(201, 235, 255, 0.36);
    transform: translateX(-50%) scale(1.08);
  }

  .plan-blueprint-page .home-blueprint-year {
    position: absolute;
    top: var(--timeline-year-top);
    bottom: auto;
    left: 50%;
    color: rgba(255, 255, 255, 0.62);
    font-size: clamp(1rem, 1.28vw, 1.36rem);
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1;
    text-shadow: none;
    transform: translateX(-50%);
  }

  .plan-blueprint-page .home-blueprint-years li.is-active .home-blueprint-year {
    color: #c9ebff;
    transform: translateX(-50%);
  }

  .plan-blueprint-page .home-blueprint-detail {
    grid-template-columns: auto minmax(0, 1fr);
    width: min(720px, 100%);
    min-height: 112px;
    margin-top: clamp(30px, 4vh, 48px);
    margin-left: auto;
    margin-right: auto;
    background: rgba(7, 14, 36, 0.18);
    border-color: rgba(201, 235, 255, 0.18);
    border-radius: 999px;
  }

  .plan-blueprint-page .home-blueprint-detail span {
    font-size: clamp(1.7rem, 2.8vw, 3rem);
  }
}

@media (max-width: 760px) {
  .plan-blueprint-page .home-blueprint-head p,
  .plan-blueprint-page .home-blueprint-label {
    display: none;
  }
}

.product-spec-page {
  color: #111930;
  background: #f8fbff;
}

.product-spec-section {
  position: relative;
  min-height: 100svh;
  padding: clamp(152px, 17vh, 208px) 0 clamp(92px, 12vh, 140px);
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 18%, rgba(201, 235, 255, 0.72), transparent 30%),
    radial-gradient(circle at 14% 80%, rgba(56, 81, 147, 0.08), transparent 32%),
    linear-gradient(rgba(56, 81, 147, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(56, 81, 147, 0.04) 1px, transparent 1px),
    #f8fbff;
  background-size: auto, auto, 54px 54px, 54px 54px, auto;
}

.product-spec-section::before {
  position: absolute;
  inset: 132px 4vw 46px;
  content: "";
  border: 1px dashed rgba(56, 81, 147, 0.16);
  border-radius: 28px;
  pointer-events: none;
}

.product-spec-frame {
  position: relative;
  z-index: 1;
  width: min(1340px, calc(100% - clamp(36px, 10vw, 168px)));
  margin: 0 auto;
}

.product-spec-back {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 42px;
  padding: 0 18px;
  color: rgba(56, 81, 147, 0.82);
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 850;
  background: rgba(255, 255, 255, 0.64);
  border: 1px solid rgba(56, 81, 147, 0.16);
  border-radius: 999px;
  transition:
    color 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
}

.product-spec-back::before {
  margin-right: 8px;
  content: "<-";
}

.product-spec-back:hover,
.product-spec-back:focus-visible {
  color: #ffffff;
  background: #385193;
  border-color: #385193;
  outline: none;
  transform: translateY(-2px);
}

.product-spec-head {
  display: grid;
  justify-items: center;
  margin-top: clamp(42px, 6vh, 72px);
  text-align: center;
}

.product-spec-head p {
  margin: 0 0 14px;
  color: #385193;
  font-size: 0.86rem;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.product-spec-head h1 {
  margin: 0;
  color: #111930;
  font-family: var(--font-display);
  font-size: clamp(3.4rem, 7vw, 8rem);
  font-weight: 880;
  letter-spacing: -0.055em;
  line-height: 0.9;
}

.product-spec-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.76fr) minmax(420px, 0.9fr);
  gap: clamp(52px, 10vw, 150px);
  align-items: start;
  margin-top: clamp(68px, 10vh, 118px);
}

.product-spec-copy,
.product-spec-specs {
  min-width: 0;
}

.product-spec-copy h2,
.product-spec-specs h2 {
  margin: 0;
  color: #111930;
  font-family: var(--font-display);
  font-size: clamp(1.42rem, 2vw, 2.2rem);
  font-style: italic;
  font-weight: 650;
  letter-spacing: -0.02em;
  line-height: 1.05;
}

.product-spec-copy p {
  max-width: 520px;
  margin: clamp(42px, 6vh, 70px) 0 0;
  color: rgba(17, 25, 48, 0.74);
  font-size: clamp(1.08rem, 1.34vw, 1.35rem);
  font-weight: 500;
  line-height: 1.5;
}

.product-spec-specs dl {
  display: grid;
  margin: clamp(42px, 6vh, 62px) 0 0;
}

.product-spec-specs dl div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(140px, 0.68fr);
  gap: 24px;
  min-height: 78px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(17, 25, 48, 0.46);
}

.product-spec-specs dt,
.product-spec-specs dd {
  margin: 0;
  color: rgba(17, 25, 48, 0.72);
  font-size: clamp(0.98rem, 1.12vw, 1.14rem);
  line-height: 1.35;
}

.product-spec-specs dt {
  font-weight: 850;
}

.product-spec-specs dd {
  font-weight: 700;
  text-align: right;
}

.product-spec-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  gap: 10px;
  padding: 0 24px;
  margin-top: clamp(34px, 5vh, 56px);
  color: #ffffff;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 850;
  background: #385193;
  border: 1px solid rgba(56, 81, 147, 0.1);
  border-radius: 999px;
  box-shadow: 0 18px 42px rgba(56, 81, 147, 0.18);
  transition:
    background 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.product-spec-link:hover,
.product-spec-link:focus-visible {
  background: #111930;
  box-shadow: 0 22px 48px rgba(17, 25, 48, 0.2);
  outline: none;
  transform: translateY(-2px);
}

.home-section--mission {
  background: #ffffff;
}

.home-section--mission .home-frame::before,
.home-section--blue::before,
.home-section--blue::after,
.home-problem-frame::before {
  display: none;
}

.home-section--blue {
  background: linear-gradient(135deg, #070f24 0%, #132755 48%, #20386f 100%);
}

@media (max-width: 980px) {
  .product-spec-layout {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .product-spec-copy p {
    max-width: 780px;
  }
}

@media (max-width: 680px) {
  .product-spec-section {
    min-height: auto;
    padding-top: 136px;
  }

  .product-spec-section::before {
    inset: 104px 14px 28px;
    border-radius: 20px;
  }

  .product-spec-frame {
    width: min(100% - 32px, 1340px);
  }

  .product-spec-head h1 {
    font-size: clamp(3rem, 15vw, 5rem);
  }

  .product-spec-layout {
    margin-top: 52px;
  }

  .product-spec-specs dl div {
    grid-template-columns: 1fr;
    gap: 8px;
    min-height: 0;
  }

  .product-spec-specs dd {
    text-align: left;
  }
}

.contact-page {
  color: #111930;
  background: #f8fbff;
}

.contact-page-frame {
  position: relative;
  z-index: 1;
  width: min(1400px, calc(100% - clamp(36px, 8vw, 148px)));
  margin: 0 auto;
}

.contact-hero-section {
  position: relative;
  overflow: hidden;
  padding: clamp(148px, 15vh, 188px) 0 clamp(76px, 10vh, 118px);
  background:
    radial-gradient(circle at 80% 16%, rgba(201, 235, 255, 0.58), transparent 30%),
    linear-gradient(180deg, #f8fbff 0%, #ffffff 100%),
    #f8fbff;
  background-size: auto;
}

.contact-hero-section::before,
.contact-details-section::before,
.contact-form-section::before {
  position: absolute;
  content: "";
  border: 1px dashed rgba(56, 81, 147, 0.18);
  border-radius: 28px;
  pointer-events: none;
}

.contact-hero-section::before {
  inset: 138px 4vw 44px;
}

.contact-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.42fr);
  gap: clamp(36px, 7vw, 112px);
  align-items: center;
  min-height: clamp(390px, 50vh, 540px);
}

.contact-kicker {
  margin: 0 0 22px;
  color: #43579c;
  font-family: var(--font-display);
  font-size: clamp(0.84rem, 1vw, 1rem);
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.contact-hero-copy h1,
.contact-section-head h2,
.contact-form-copy h2 {
  margin: 0;
  color: #111930;
  font-family: var(--font-display);
  font-weight: 900;
  letter-spacing: 0;
}

.contact-hero-copy h1 {
  max-width: 760px;
  font-size: clamp(3rem, 5vw, 5.8rem);
  line-height: 0.98;
}

.contact-hero-copy > p:not(.contact-kicker) {
  max-width: 660px;
  margin: clamp(22px, 3vw, 34px) 0 0;
  color: #38445f;
  font-size: clamp(1.03rem, 1.35vw, 1.28rem);
  font-weight: 700;
  line-height: 1.62;
}

.contact-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: clamp(28px, 4vw, 44px);
}

.contact-hero-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 56px;
  padding: 0 24px;
  color: #ffffff;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 900;
  background: #111930;
  border: 1px solid #111930;
  border-radius: 999px;
  box-shadow: 0 18px 42px rgba(17, 25, 48, 0.14);
  transition:
    color 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
}

.contact-hero-link svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.5;
}

.contact-hero-link:hover,
.contact-hero-link:focus-visible {
  color: #ffffff;
  background: #385193;
  border-color: #385193;
  outline: none;
  transform: translateY(-2px);
}

.contact-hero-link--ghost {
  color: #385193;
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(56, 81, 147, 0.18);
  box-shadow: none;
}

.contact-hero-link--ghost:hover,
.contact-hero-link--ghost:focus-visible {
  color: #111930;
  background: #ffffff;
  border-color: rgba(17, 25, 48, 0.16);
}

.contact-hero-card {
  display: grid;
  gap: 16px;
  align-content: start;
  align-self: center;
  min-height: 0;
  padding: clamp(28px, 3.2vw, 42px);
  color: #ffffff;
  background:
    linear-gradient(145deg, #111a38 0%, #2f447f 100%);
  background-size: auto;
  border: 1px solid rgba(201, 235, 255, 0.22);
  border-radius: 24px;
  box-shadow: 0 30px 88px rgba(18, 30, 66, 0.2);
}

.contact-hero-card img {
  width: 88px;
  margin-bottom: clamp(18px, 2.4vw, 28px);
  filter: drop-shadow(0 14px 28px rgba(0, 0, 0, 0.24));
}

.contact-hero-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.contact-hero-card a {
  width: fit-content;
  color: #ffffff;
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2.2vw, 2.12rem);
  font-weight: 900;
  line-height: 1;
  overflow-wrap: anywhere;
}

.contact-hero-card__meta {
  display: grid;
  gap: 4px;
  margin-top: clamp(8px, 1.5vw, 16px);
  padding-top: 18px;
  border-top: 1px solid rgba(201, 235, 255, 0.18);
}

.contact-hero-card__meta span {
  color: rgba(255, 255, 255, 0.74);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.35;
}

.contact-details-section {
  position: relative;
  overflow: hidden;
  padding: clamp(84px, 11vw, 150px) 0;
  background:
    radial-gradient(circle at 86% 12%, rgba(201, 235, 255, 0.72), transparent 30%),
    linear-gradient(rgba(56, 81, 147, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(56, 81, 147, 0.035) 1px, transparent 1px),
    #ffffff;
  background-size: auto, 54px 54px, 54px 54px, auto;
}

.contact-details-section::before {
  inset: 54px 4vw;
}

.contact-section-head {
  display: grid;
  grid-template-columns: minmax(170px, 0.34fr) minmax(0, 1fr);
  gap: clamp(28px, 7vw, 120px);
  align-items: end;
  margin-bottom: clamp(34px, 5vw, 64px);
}

.contact-section-head h2 {
  max-width: 900px;
  font-size: clamp(3.4rem, 6.8vw, 7.4rem);
  line-height: 0.96;
}

.contact-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.contact-detail-card {
  display: grid;
  gap: 18px;
  align-content: start;
  min-height: 290px;
  padding: clamp(26px, 3vw, 38px);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(56, 81, 147, 0.16);
  border-radius: 24px;
  box-shadow: 0 26px 64px rgba(17, 25, 48, 0.08);
}

.contact-detail-card span {
  color: rgba(56, 81, 147, 0.66);
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 900;
  letter-spacing: 0.18em;
}

.contact-detail-card h3 {
  margin: 0;
  color: #111930;
  font-size: clamp(1.6rem, 2.4vw, 2.4rem);
  line-height: 1.02;
}

.contact-detail-card p {
  margin: 0;
  color: #5f6879;
  font-size: 1.03rem;
  font-weight: 700;
  line-height: 1.55;
}

.contact-form-section {
  position: relative;
  overflow: hidden;
  padding: clamp(92px, 12vw, 168px) 0;
  color: #ffffff;
  background:
    linear-gradient(rgba(201, 235, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 235, 255, 0.05) 1px, transparent 1px),
    linear-gradient(135deg, #101936 0%, #24376f 100%);
  background-size: 54px 54px, 54px 54px, auto;
}

.contact-form-section::before {
  inset: 52px 4vw;
  border-color: rgba(201, 235, 255, 0.18);
}

.contact-form-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.74fr) minmax(420px, 0.58fr);
  gap: clamp(40px, 7vw, 104px);
  align-items: start;
}

.contact-form-copy {
  position: sticky;
  top: 120px;
}

.contact-form-copy .contact-kicker,
.contact-form-section .contact-kicker {
  color: #c9ebff;
}

.contact-form-copy h2 {
  max-width: 720px;
  color: #ffffff;
  font-size: clamp(3.5rem, 6.7vw, 7.8rem);
  line-height: 0.94;
}

.contact-form-copy > p {
  max-width: 630px;
  margin: 30px 0 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: clamp(1.06rem, 1.4vw, 1.32rem);
  font-weight: 750;
  line-height: 1.62;
}

.contact-person-list {
  display: grid;
  max-width: 650px;
  margin-top: clamp(34px, 5vw, 58px);
  border-top: 1px solid rgba(201, 235, 255, 0.18);
}

.contact-person-list a {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1fr);
  gap: 18px;
  padding: 22px 0;
  color: rgba(255, 255, 255, 0.82);
  border-bottom: 1px solid rgba(201, 235, 255, 0.18);
}

.contact-person-list span,
.contact-person-list strong {
  display: block;
  font-size: 1rem;
  line-height: 1.4;
}

.contact-person-list span {
  color: #ffffff;
  font-family: var(--font-display);
  font-weight: 900;
}

.contact-person-list strong {
  font-weight: 750;
  overflow-wrap: anywhere;
}

.contact-form--page {
  gap: 16px;
  padding: clamp(24px, 3vw, 36px);
  background: rgba(248, 251, 255, 0.96);
  border: 1px solid rgba(201, 235, 255, 0.24);
  border-radius: 24px;
  box-shadow:
    0 36px 92px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.contact-form__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.contact-form--page label {
  color: #111930;
  font-size: 0.92rem;
  font-weight: 900;
}

.contact-form--page input,
.contact-form--page select,
.contact-form--page textarea {
  width: 100%;
  color: #111930;
  font: inherit;
  font-weight: 650;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(24, 36, 76, 0.12);
  border-radius: 16px;
  outline: none;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.contact-form--page input,
.contact-form--page select {
  height: 52px;
  padding: 0 16px;
}

.contact-form--page select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, #385193 50%),
    linear-gradient(135deg, #385193 50%, transparent 50%);
  background-position:
    calc(100% - 21px) 22px,
    calc(100% - 15px) 22px;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

.contact-form--page textarea {
  min-height: 154px;
  padding: 16px;
}

.contact-form--page input:focus,
.contact-form--page select:focus,
.contact-form--page textarea:focus {
  background: #ffffff;
  border-color: rgba(56, 81, 147, 0.52);
  box-shadow: 0 0 0 4px rgba(56, 81, 147, 0.12);
}

.contact-form--page .primary-link {
  justify-content: center;
  width: 100%;
  margin-top: 6px;
  color: #ffffff;
  background: #111930;
  border: 0;
  border-radius: 999px;
}

.contact-form--page .primary-link:hover,
.contact-form--page .primary-link:focus-visible {
  color: #ffffff;
  background: #385193;
}

.contact-form--page .form-note {
  color: #656d7f;
  font-size: 0.92rem;
  font-weight: 700;
  text-align: center;
}

@media (max-width: 1060px) {
  .contact-hero-grid,
  .contact-form-layout {
    grid-template-columns: 1fr;
  }

  .contact-hero-grid {
    min-height: 0;
  }

  .contact-hero-card {
    min-height: 0;
  }

  .contact-section-head {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .contact-detail-grid {
    grid-template-columns: 1fr;
  }

  .contact-form-copy {
    position: static;
  }
}

@media (max-width: 720px) {
  .contact-page-frame {
    width: min(100% - 28px, 1400px);
  }

  .contact-hero-section {
    padding: 142px 0 62px;
  }

  .contact-hero-section::before,
  .contact-details-section::before,
  .contact-form-section::before {
    right: 14px;
    left: 14px;
    border-radius: 20px;
  }

  .contact-hero-section::before {
    top: 118px;
    bottom: 24px;
  }

  .contact-hero-copy h1 {
    font-size: clamp(2.7rem, 12vw, 4.2rem);
  }

  .contact-hero-actions {
    display: grid;
  }

  .contact-hero-link {
    width: 100%;
  }

  .contact-section-head h2,
  .contact-form-copy h2 {
    font-size: clamp(3rem, 13vw, 5rem);
  }

  .contact-detail-card,
  .contact-form--page,
  .contact-hero-card {
    border-radius: 20px;
  }

  .contact-form__grid,
  .contact-person-list a {
    grid-template-columns: 1fr;
  }

  .contact-form-section,
  .contact-details-section {
    padding: 68px 0;
  }
}

/* Design pass: remove raster-style backgrounds from public pages. */
body:not([data-homepage-variant="bluebox-lab"]) {
  background: #ffffff;
}

body:not([data-homepage-variant="bluebox-lab"]) .home-frame {
  padding-inline: clamp(18px, 3vw, 42px);
  border-right: 0;
  border-left: 0;
}

body:not([data-homepage-variant="bluebox-lab"]) .home-section::after {
  background: rgba(24, 36, 76, 0.08);
}

body:not([data-homepage-variant="bluebox-lab"]) .home-section--mission,
body:not([data-homepage-variant="bluebox-lab"]) .home-section--issue,
body:not([data-homepage-variant="bluebox-lab"]) .home-section--solution,
body:not([data-homepage-variant="bluebox-lab"]) .home-section--products,
body:not([data-homepage-variant="bluebox-lab"]) .home-section--projects,
body:not([data-homepage-variant="bluebox-lab"]) .home-section--team,
body:not([data-homepage-variant="bluebox-lab"]) .home-section--partners,
body:not([data-homepage-variant="bluebox-lab"]) .home-section--contact {
  background: #ffffff !important;
  background-image: none !important;
  background-size: auto !important;
}

body:not([data-homepage-variant="bluebox-lab"]) .home-section--approach,
body:not([data-homepage-variant="bluebox-lab"]) .home-section--service-routes {
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%) !important;
  background-image: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%) !important;
  background-size: auto !important;
}

body:not([data-homepage-variant="bluebox-lab"]) .home-section--blue {
  background: linear-gradient(135deg, #070f24 0%, #132755 50%, #20386f 100%) !important;
  background-size: auto !important;
}

body:not([data-homepage-variant="bluebox-lab"]) .home-section--blueprint {
  background: linear-gradient(135deg, #111930 0%, #243d74 100%) !important;
  background-size: auto !important;
}

body:not([data-homepage-variant="bluebox-lab"]) .home-section--mission .home-frame::before,
body:not([data-homepage-variant="bluebox-lab"]) .home-section--blue::before,
body:not([data-homepage-variant="bluebox-lab"]) .home-section--blue::after,
body:not([data-homepage-variant="bluebox-lab"]) .home-problem-frame::before,
body:not([data-homepage-variant="bluebox-lab"]) .home-section--blueprint::after,
body:not([data-homepage-variant="bluebox-lab"]) .home-approach-card::before,
body:not([data-homepage-variant="bluebox-lab"]) .home-approach-card::after,
body:not([data-homepage-variant="bluebox-lab"]) .home-service-routes::before,
body:not([data-homepage-variant="bluebox-lab"]) .home-service-card::before {
  display: none !important;
  content: none !important;
  background: none !important;
  border: 0 !important;
}

body:not([data-homepage-variant="bluebox-lab"]) .home-section {
  padding-bottom: clamp(84px, 10vw, 142px);
}

body:not([data-homepage-variant="bluebox-lab"]) .home-section--mission .home-frame,
body:not([data-homepage-variant="bluebox-lab"]) .home-approach-frame,
body:not([data-homepage-variant="bluebox-lab"]) .home-service-frame,
body:not([data-homepage-variant="bluebox-lab"]) .home-blueprint-frame {
  padding-top: clamp(80px, 9vw, 128px);
  padding-bottom: clamp(80px, 9vw, 128px);
}

body:not([data-homepage-variant="bluebox-lab"]) .home-approach-grid {
  gap: clamp(18px, 2.2vw, 30px);
  padding: 0;
  background: transparent !important;
  border: 0;
  box-shadow: none;
}

body:not([data-homepage-variant="bluebox-lab"]) .home-approach-card,
body:not([data-homepage-variant="bluebox-lab"]) .home-service-card,
body:not([data-homepage-variant="bluebox-lab"]) .home-product-card,
body:not([data-homepage-variant="bluebox-lab"]) .home-project-card,
body:not([data-homepage-variant="bluebox-lab"]) .home-team-card,
body:not([data-homepage-variant="bluebox-lab"]) .home-contact-form {
  background: #ffffff !important;
  background-image: none !important;
  border-color: rgba(56, 81, 147, 0.14);
  border-radius: 18px;
  box-shadow: 0 24px 54px rgba(7, 14, 36, 0.08);
}

body:not([data-homepage-variant="bluebox-lab"]) .home-approach-card.is-active {
  background: #ffffff !important;
  border-color: rgba(56, 81, 147, 0.38);
  box-shadow: 0 28px 58px rgba(7, 14, 36, 0.1);
}

body:not([data-homepage-variant="bluebox-lab"]) .home-approach-card + .home-approach-card {
  margin-left: 0;
}

body:not([data-homepage-variant="bluebox-lab"]) .home-service-card--materials {
  margin-top: 0;
}

body:not([data-homepage-variant="bluebox-lab"]) .home-service-card__diagram {
  display: none;
  opacity: 0;
}

body:not([data-homepage-variant="bluebox-lab"]) .home-footer-wordmark {
  padding-top: clamp(24px, 4vw, 42px);
}

body:not([data-homepage-variant="bluebox-lab"]) .home-service-card {
  min-height: clamp(430px, 34vw, 560px);
  background: #ffffff !important;
  border-color: rgba(56, 81, 147, 0.16);
  border-radius: 18px;
  box-shadow: 0 18px 42px rgba(7, 14, 36, 0.07);
}

body:not([data-homepage-variant="bluebox-lab"]) .home-service-card::before {
  display: none !important;
}

body:not([data-page="home"]) .page-hero,
body[data-page="producten"] .build-screen,
body[data-page="het-plan"] .plan-intro-section,
body[data-page="service-detail"] .service-detail-hero,
body[data-page="service-detail"] .service-route-section,
body[data-page="service-detail"] .service-widget-section,
body[data-page="service-detail"] .material-offer-section,
body[data-page="services"] .service-index-hero,
body[data-page="projecten"]:not(:has([data-project-admin])) .project-board-section,
body[data-page="over-ons"] .about-story-section,
body[data-page="over-ons"] .about-team-section,
body[data-page="over-ons"] .about-board-section,
body[data-page="product-spec"] .product-spec-section,
body[data-page="contact"] .contact-hero-section,
body[data-page="contact"] .contact-details-section {
  background: #f8fbff !important;
  background-image: none !important;
  background-size: auto !important;
}

body[data-page="service-detail"] .service-detail-hero {
  min-height: 100svh;
}

body[data-page="service-detail"] .service-route-section,
body[data-page="over-ons"] .about-team-section,
body[data-page="contact"] .contact-details-section {
  background: #ffffff !important;
}

body[data-page="contact"] .contact-form-section {
  padding: clamp(132px, 16vh, 178px) 0 clamp(92px, 12vw, 168px);
  color: #111930;
  background: #ffffff !important;
  background-image: none !important;
  background-size: auto !important;
}

body[data-page="contact"] .contact-form-layout {
  grid-template-columns: minmax(0, 1fr) minmax(0, 520px);
  align-items: start;
}

body[data-page="contact"] .contact-form-copy .contact-kicker,
body[data-page="contact"] .contact-form-section .contact-kicker {
  color: #43579c;
}

body[data-page="contact"] .contact-form-copy h1 {
  max-width: 720px;
  margin: 0;
  color: #111930;
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 6.7vw, 7.8rem);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.94;
}

body[data-page="contact"] .contact-form-copy > p {
  color: rgba(17, 25, 48, 0.7);
}

body[data-page="contact"] .contact-person-list {
  border-color: rgba(17, 25, 48, 0.14);
}

body[data-page="contact"] .contact-person-list a {
  color: rgba(17, 25, 48, 0.72);
  border-color: rgba(17, 25, 48, 0.14);
}

body[data-page="contact"] .contact-person-list span {
  color: #111930;
}

body[data-page="contact"] .contact-form--page {
  width: 100%;
  max-width: 520px;
  justify-self: end;
}

@media (max-width: 1060px) {
  body[data-page="contact"] .contact-form-layout {
    grid-template-columns: 1fr;
  }

  body[data-page="contact"] .contact-form--page {
    justify-self: start;
  }
}

body[data-page="het-plan"] .plan-blueprint-page {
  background: linear-gradient(135deg, #111930 0%, #243d74 100%) !important;
  background-size: auto !important;
}

body:not([data-page="home"]) .page-hero::before,
body[data-page="producten"] .build-screen::before,
body[data-page="het-plan"] .plan-intro-section::before,
body[data-page="service-detail"] .service-detail-hero::before,
body[data-page="service-detail"] .service-widget-section::before,
body[data-page="projecten"]:not(:has([data-project-admin])) .project-board-row__label::before,
body[data-page="projecten"]:not(:has([data-project-admin])) .project-board-row__label::after,
body[data-page="projecten"]:not(:has([data-project-admin])) .project-board-row__grid::before,
body[data-page="projecten"]:not(:has([data-project-admin])) .project-board-card__media--empty::before,
body[data-page="over-ons"] .about-story-section::before,
body[data-page="over-ons"] .about-story-section h1::before,
body[data-page="over-ons"] .about-story-section h1::after,
body[data-page="over-ons"] .about-story-visual::before,
body[data-page="over-ons"] .about-story-visual::after,
body[data-page="over-ons"] .about-team-section::before,
body[data-page="over-ons"] .about-team-section h2::before,
body[data-page="over-ons"] .about-board-section::before,
body[data-page="vacatures"] .about-board-section::before,
body[data-page="over-ons"] .about-board-card::before,
body[data-page="over-ons"] .about-board-card::after,
body[data-page="product-spec"] .product-spec-section::before,
body[data-page="contact"] .contact-hero-section::before,
body[data-page="contact"] .contact-details-section::before,
body[data-page="contact"] .contact-form-section::before {
  display: none !important;
  content: none !important;
  background: none !important;
  border: 0 !important;
}

body[data-page="service-detail"] .service-detail-visual,
body[data-page="service-detail"] .service-widget-ladder,
body[data-page="service-detail"] .service-widget-frame,
body[data-page="service-detail"] .material-offer-card,
body[data-page="projecten"]:not(:has([data-project-admin])) .project-board-card,
body[data-page="projecten"]:not(:has([data-project-admin])) .project-board-card__media--placeholder,
body[data-page="over-ons"] .about-board-card,
body[data-page="product-spec"] .product-spec-back,
body[data-page="contact"] .contact-detail-card,
body[data-page="contact"] .contact-form--page {
  background: #ffffff !important;
  background-image: none !important;
  background-size: auto !important;
}

body[data-page="contact"] .contact-hero-card {
  background: linear-gradient(145deg, #111a38 0%, #2f447f 100%) !important;
  background-image: linear-gradient(145deg, #111a38 0%, #2f447f 100%) !important;
  background-size: auto !important;
}

body[data-page="home"] .home-section--service-routes {
  background: linear-gradient(135deg, #070f24 0%, #132755 52%, #20386f 100%) !important;
  background-image: linear-gradient(135deg, #070f24 0%, #132755 52%, #20386f 100%) !important;
  background-size: auto !important;
}

body[data-page="home"] .home-main {
  padding-bottom: 0;
}

body[data-page="home"] .home-section--service-routes .home-frame {
  border-color: rgba(201, 235, 255, 0.08);
}

body[data-page="home"] .home-section--service-routes .home-kicker {
  color: #c9ebff;
}

body[data-page="home"] .home-service-head h2 {
  color: #ffffff;
}

body[data-page="home"] .home-service-head > p:last-child {
  color: rgba(255, 255, 255, 0.72);
}

body[data-page="home"] .home-service-routes {
  border-top-color: rgba(201, 235, 255, 0.18);
}

body[data-page="home"] .home-service-routes::before {
  background: rgba(201, 235, 255, 0.16);
}

body[data-page="home"] .home-service-card {
  color: #ffffff;
  background: rgba(7, 14, 36, 0.34) !important;
  border-color: rgba(201, 235, 255, 0.2);
  border-radius: 18px;
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.16);
}

body[data-page="home"] .home-service-card::before {
  display: none !important;
}

body[data-page="home"] .home-service-card__media {
  border-bottom-color: rgba(201, 235, 255, 0.18);
}

body[data-page="home"] .home-service-card__media img {
  filter: saturate(1.06) contrast(1.03);
}

body[data-page="home"] .home-service-card:hover,
body[data-page="home"] .home-service-card:focus-visible {
  border-color: rgba(201, 235, 255, 0.42);
  box-shadow: 0 28px 64px rgba(0, 0, 0, 0.22);
}

body[data-page="home"] .home-service-card__number {
  color: #c9ebff;
  border-bottom-color: transparent;
}

body[data-page="home"] .home-service-card__label {
  color: rgba(201, 235, 255, 0.78);
}

body[data-page="home"] .home-service-card h3 {
  color: #ffffff;
}

body[data-page="home"] .home-service-card__copy p:last-child {
  color: rgba(255, 255, 255, 0.74);
}

body[data-page="home"] .home-service-card__cta {
  color: #c9ebff;
}

body[data-page="home"] .home-service-card__cta svg {
  stroke: currentColor;
}

/* Homepage spacing and light-surface foundation. */
body[data-page="home"]:not([data-homepage-variant="bluebox-lab"]) .home-section {
  padding-bottom: 0;
}

body[data-page="home"]:not([data-homepage-variant="bluebox-lab"]) .home-section--service-routes {
  padding-top: 0;
}

body[data-page="home"]:not([data-homepage-variant="bluebox-lab"]) .home-section--mission .home-frame,
body[data-page="home"]:not([data-homepage-variant="bluebox-lab"]) .home-problem-frame,
body[data-page="home"]:not([data-homepage-variant="bluebox-lab"]) .home-approach-frame,
body[data-page="home"]:not([data-homepage-variant="bluebox-lab"]) .home-service-frame {
  padding-top: clamp(56px, 6vw, 88px);
  padding-bottom: clamp(56px, 6vw, 88px);
}

body[data-page="home"] .home-section--blue,
body[data-page="home"] .home-section--approach,
body[data-page="home"] .home-section--service-routes {
  color: #111930;
  background: #ffffff !important;
  background-image: none !important;
}

body[data-page="home"] .home-problem-heading,
body[data-page="home"] .home-service-head h2 {
  color: #111930;
}

body[data-page="home"] .home-problem-columns,
body[data-page="home"] .home-service-routes {
  border-color: rgba(56, 81, 147, 0.16);
}

body[data-page="home"] .home-problem-panel h3 {
  color: #385193;
}

body[data-page="home"] .home-problem-panel p {
  color: rgba(17, 25, 48, 0.72);
}

body[data-page="home"] .home-problem-panel strong {
  color: #111930;
}

body[data-page="home"] .home-problem-panel em {
  color: rgba(17, 25, 48, 0.68);
}

body[data-page="home"] .home-problem-copy-image {
  border-color: rgba(56, 81, 147, 0.16);
  box-shadow: 0 18px 44px rgba(7, 14, 36, 0.1);
}

body[data-page="home"] .home-problem-meter {
  justify-self: start;
  color: #111930;
  background: #f7f9fc;
  border-color: rgba(56, 81, 147, 0.2);
  box-shadow: none;
  backdrop-filter: none;
  margin-right: 0;
  margin-left: calc(50% - min(42.285714%, 674.285714px));
}

@media (max-width: 760px) {
  body[data-page="home"] .home-problem-meter {
    justify-self: stretch;
    width: 100%;
    margin-right: 0;
    margin-left: 0;
  }
}

/* One continuous cream canvas across the homepage content. */
body[data-page="home"],
body[data-page="home"] .home-main {
  background: #f3f0e7;
}

body[data-page="home"] .home-main > .home-section {
  background: #f3f0e7 !important;
  background-image: none !important;
}

body[data-page="home"] .home-problem-meter__label {
  color: #111930;
  text-shadow: none;
}

body[data-page="home"] .home-problem-meter__context {
  color: #385193;
}

body[data-page="home"] .home-problem-meter div + div {
  border-color: rgba(56, 81, 147, 0.2);
}

body[data-page="home"] .home-service-card {
  color: #111930;
  background: #ffffff !important;
  border-color: rgba(56, 81, 147, 0.18);
  box-shadow: 0 18px 42px rgba(7, 14, 36, 0.08);
}

body[data-page="home"] .home-service-card:hover,
body[data-page="home"] .home-service-card:focus-visible {
  border-color: rgba(56, 81, 147, 0.4);
  box-shadow: 0 24px 54px rgba(7, 14, 36, 0.12);
}

body[data-page="home"] .home-service-card__media {
  border-bottom-color: rgba(56, 81, 147, 0.14);
}

body[data-page="home"] .home-service-card__number,
body[data-page="home"] .home-service-card__cta {
  color: #385193;
}

body[data-page="home"] .home-service-card__label {
  color: rgba(17, 25, 48, 0.58);
}

body[data-page="home"] .home-service-card h3 {
  color: #111930;
}

body[data-page="home"] .home-service-card__copy p:last-child {
  color: rgba(17, 25, 48, 0.68);
}

body[data-page="home"] .site-footer--brand {
  background: #ffffff;
  background-image: none;
}

/* Cohesive homepage system: warm content surfaces with one dark brand shell. */
body[data-page="home"] {
  --home-cohesive-dark: #0b111b;
  --home-cohesive-ink: #111930;
  --home-cohesive-warm: #f3f0e7;
  --home-cohesive-paper: #fbfaf6;
  --home-cohesive-line: rgba(17, 25, 48, 0.13);
  --home-partner-strip-height: 106px;
  background: var(--home-cohesive-warm);
}

body[data-page="home"] .home-hero {
  min-height: 100svh;
}

body[data-page="home"] .home-hero-card {
  min-height: calc(100svh - 82px);
}

body[data-page="home"] .home-hero-copy {
  transform: translateY(clamp(18px, 2.8vh, 42px));
}

body[data-page="home"] .home-hero-copy h1 {
  display: grid;
  grid-template-areas:
    "topline"
    "accent";
  grid-template-columns: auto;
  justify-content: center;
  width: fit-content;
  margin-inline: auto;
  row-gap: clamp(3px, 0.45vw, 8px);
  text-align: left;
}

body[data-page="home"] .home-hero-copy h1 .home-hero-topline {
  grid-area: topline;
  display: flex;
  gap: clamp(14px, 1.4vw, 26px);
  align-items: baseline;
  justify-self: start;
  font-size: 0.82em;
  line-height: 0.9;
}

body[data-page="home"] .home-hero-copy h1 .home-hero-connector {
  margin: 0 0 0.06em;
  font-size: clamp(2.2rem, 3vw, 3.5rem);
  line-height: 1;
  opacity: 0.88;
  transform: none;
}

body[data-page="home"] .home-hero-copy h1 .home-hero-accent {
  grid-area: accent;
  justify-self: start;
  margin: 0;
  font-size: 1.04em;
  line-height: 0.88;
}

body[data-page="home"] .home-partner-strip {
  position: relative;
  z-index: 4;
  height: var(--home-partner-strip-height);
  margin-top: 0;
  overflow: hidden;
  background: linear-gradient(180deg, #060c1c 0%, #0b142a 100%);
  border: 0;
  box-shadow: none;
}

body[data-page="home"] .home-partner-strip__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  grid-template-rows: auto minmax(0, 1fr);
  gap: 7px;
  align-items: center;
  height: 100%;
  padding-top: 8px;
  padding-bottom: 8px;
}

body[data-page="home"] .home-partner-strip__title {
  margin: 0;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.52rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
}

body[data-page="home"] .home-partner-strip__marquee {
  position: relative;
  min-width: 0;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
}

body[data-page="home"] .home-partner-strip__track {
  display: flex;
  width: max-content;
  will-change: transform;
  animation: home-partners-scroll 32s linear infinite;
}

body[data-page="home"] .home-partner-strip__marquee:hover .home-partner-strip__track {
  animation-play-state: paused;
}

body[data-page="home"] .home-partner-strip__list {
  display: flex;
  flex: none;
  gap: 12px;
  align-items: center;
  padding: 0 12px 0 0;
  margin: 0;
  list-style: none;
}

body[data-page="home"] .home-partner-strip__list li {
  display: grid;
  flex: 0 0 clamp(140px, 12vw, 190px);
  width: clamp(140px, 12vw, 190px);
  min-height: 54px;
  padding: 9px 16px;
  background: rgba(7, 14, 36, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 7px;
  box-shadow: none;
  backdrop-filter: blur(4px);
  place-items: center;
}

body[data-page="home"] .home-partner-strip__list img {
  display: block;
  width: 100%;
  height: 31px;
  object-fit: contain;
  opacity: 0.58;
  filter: grayscale(1) brightness(0) invert(1);
}

@keyframes home-partners-scroll {
  to {
    transform: translateX(-50%);
  }
}

body[data-page="home"] .home-main {
  background: var(--home-cohesive-warm);
}

body[data-page="home"] .home-frame {
  width: min(1360px, calc(100% - clamp(40px, 8vw, 152px)));
}

body[data-page="home"] .home-section::after {
  display: none;
}

body[data-page="home"] .home-section--mission,
body[data-page="home"] .home-section--approach {
  background: var(--home-cohesive-warm) !important;
  background-image: none !important;
}

body[data-page="home"] .home-section--blue,
body[data-page="home"] .home-section--service-routes {
  color: var(--home-cohesive-ink);
  background: var(--home-cohesive-paper) !important;
  background-image: none !important;
}

body[data-page="home"] .home-section--mission .home-frame,
body[data-page="home"] .home-problem-frame,
body[data-page="home"] .home-approach-frame,
body[data-page="home"] .home-service-frame {
  padding-top: clamp(48px, 4.5vw, 72px);
  padding-bottom: clamp(48px, 4.5vw, 72px);
}

body[data-page="home"] .home-section--mission .home-frame,
body[data-page="home"] .home-mission-grid {
  justify-items: center;
}

body[data-page="home"] .home-mission-copy {
  justify-items: center;
  width: min(1120px, 100%);
  margin: 0 auto;
  text-align: center;
}

body[data-page="home"] .home-mission-copy h2 {
  justify-content: center;
  width: auto;
  color: #385193;
  text-align: center;
}

body[data-page="home"] .home-mission-copy p {
  max-width: 29ch;
  color: var(--home-cohesive-ink);
  text-align: center;
  text-wrap: balance;
}

body[data-page="home"] .home-problem-heading,
body[data-page="home"] .home-approach-heading,
body[data-page="home"] .home-service-head h2 {
  color: var(--home-cohesive-ink);
  text-align: left;
}

body[data-page="home"] .home-problem-columns {
  width: 100%;
  margin-right: 0;
  margin-left: 0;
  border-top: 0;
}

body[data-page="home"] .home-problem-panel h3 {
  color: #385193;
}

body[data-page="home"] .home-problem-panel p {
  color: rgba(17, 25, 48, 0.72);
}

body[data-page="home"] .home-problem-copy-image {
  border-color: var(--home-cohesive-line);
  border-radius: 10px;
  box-shadow: 0 18px 44px rgba(17, 25, 48, 0.08);
}

body[data-page="home"] .home-approach-head {
  justify-items: start;
  width: 100%;
  max-width: none;
  margin: 0;
  text-align: left;
}

body[data-page="home"] .home-approach-lede {
  max-width: 48ch;
  color: rgba(17, 25, 48, 0.66);
}

body[data-page="home"] .home-approach-grid {
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

body[data-page="home"] .home-approach-card,
body[data-page="home"] .home-service-card {
  background: #ffffff !important;
  border: 1px solid var(--home-cohesive-line);
  border-radius: 10px;
  box-shadow: 0 16px 38px rgba(17, 25, 48, 0.07);
}

body[data-page="home"] .home-approach-card.is-active {
  border-color: rgba(56, 81, 147, 0.34);
  box-shadow: 0 20px 46px rgba(17, 25, 48, 0.1);
}

body[data-page="home"] .home-service-routes {
  border-top: 0;
}

body[data-page="home"] .home-service-card {
  color: var(--home-cohesive-ink);
}

body[data-page="home"] .home-service-card h3 {
  color: var(--home-cohesive-ink);
}

body[data-page="home"] .home-service-card__copy p:last-child {
  color: rgba(17, 25, 48, 0.66);
}

body[data-page="home"] .home-service-card__number,
body[data-page="home"] .home-service-card__cta {
  color: #385193;
}

body[data-page="home"] .home-service-card__label {
  color: rgba(17, 25, 48, 0.55);
}

body[data-page="home"] .home-service-card:hover,
body[data-page="home"] .home-service-card:focus-visible {
  border-color: rgba(56, 81, 147, 0.36);
  box-shadow: 0 24px 54px rgba(17, 25, 48, 0.11);
}

/* A quieter editorial hierarchy: section names act as labels, not hero titles. */
body[data-page="home"] .home-mission-copy h2,
body[data-page="home"] .home-problem-heading,
body[data-page="home"] .home-approach-heading,
body[data-page="home"] .home-service-head h2 {
  display: flex;
  gap: 14px;
  align-items: center;
  width: 100%;
  margin: 0;
  color: #385193;
  font-size: clamp(0.72rem, 0.8vw, 0.82rem);
  font-weight: 800;
  letter-spacing: 0.15em;
  line-height: 1.2;
  text-align: left;
  text-transform: uppercase;
}

body[data-page="home"] .home-mission-copy h2::after,
body[data-page="home"] .home-problem-heading::after,
body[data-page="home"] .home-approach-heading::after,
body[data-page="home"] .home-service-head h2::after {
  display: none;
}

body[data-page="home"] .home-mission-copy {
  gap: clamp(18px, 2.3vw, 30px);
}

body[data-page="home"] .home-mission-copy p {
  max-width: 30ch;
  font-size: clamp(1.7rem, 2.5vw, 2.8rem);
  letter-spacing: -0.025em;
  line-height: 1.16;
}

body[data-page="home"] .home-problem-columns {
  margin-top: clamp(24px, 3.2vw, 40px);
  padding-top: 0;
}

body[data-page="home"] .home-approach-lede {
  max-width: 24ch;
  margin-top: clamp(14px, 1.8vw, 22px);
  color: var(--home-cohesive-ink);
  font-size: clamp(1.7rem, 2.55vw, 2.75rem);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.14;
}

body[data-page="home"] .home-approach-grid {
  margin-top: clamp(52px, 6vw, 82px);
}

/* Editorial solution cards: visual first, copy beneath it. */
body[data-page="home"] .home-approach-head {
  justify-items: center;
  max-width: 900px;
  margin-inline: auto;
  text-align: center;
}

body[data-page="home"] .home-approach-heading {
  justify-content: center;
  width: auto;
  color: #385193;
  text-align: center;
}

body[data-page="home"] .home-approach-heading::after {
  display: none;
}

body[data-page="home"] .home-approach-lede {
  max-width: 24ch;
  margin-top: clamp(18px, 2vw, 26px);
  text-align: center;
  text-wrap: balance;
}

body[data-page="home"] .home-approach-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 1.8vw, 24px);
  align-items: stretch;
}

body[data-page="home"] .home-approach-card {
  display: flex;
  flex-direction: column;
  min-height: clamp(450px, 38vw, 540px);
  padding: 0 0 clamp(26px, 2.5vw, 38px);
  overflow: hidden;
  background: #eeece5 !important;
  border-color: rgba(17, 25, 48, 0.08);
  border-radius: 16px;
  box-shadow: none;
  transition: border-color 200ms ease, box-shadow 200ms ease, transform 200ms ease;
}

body[data-page="home"] .home-approach-card + .home-approach-card {
  margin-left: 0;
}

body[data-page="home"] .home-approach-card::before,
body[data-page="home"] .home-approach-card::after {
  display: none;
}

body[data-page="home"] .home-approach-card:hover {
  border-color: rgba(56, 81, 147, 0.2);
  box-shadow: 0 16px 36px rgba(17, 25, 48, 0.07);
  transform: translateY(-2px);
}

body[data-page="home"] .home-approach-card__top {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 2;
  margin: 0;
}

body[data-page="home"] .home-approach-step {
  width: 38px;
  height: 38px;
  color: #385193;
  font-size: 0.72rem;
  background: rgba(255, 255, 255, 0.86);
  border-color: rgba(56, 81, 147, 0.16);
  box-shadow: 0 8px 22px rgba(17, 25, 48, 0.08);
  backdrop-filter: blur(8px);
}

body[data-page="home"] .home-approach-visual,
body[data-page="home"] .home-approach-visual--bluebox {
  order: -1;
  width: 100%;
  min-height: clamp(260px, 23vw, 330px);
  margin: 0;
  padding: clamp(30px, 3.2vw, 50px);
  background: radial-gradient(circle at 50% 46%, rgba(201, 235, 255, 0.46), transparent 48%);
  border-bottom: 0;
}

body[data-page="home"] .home-approach-visual img,
body[data-page="home"] .home-approach-visual--bluebox img,
body[data-page="home"] .home-approach-visual img[src*="solution-analyse"],
body[data-page="home"] .home-approach-visual img[src*="solution-hergebruik"] {
  width: min(320px, 88%);
  max-height: 245px;
  object-fit: contain;
  mix-blend-mode: multiply;
}

body[data-page="home"] .home-approach-visual img[src*="solution-analyse"] {
  width: min(250px, 72%);
}

body[data-page="home"] .home-approach-visual--bluebox img {
  width: min(340px, 92%);
}

body[data-page="home"] .home-approach-visual img[src*="solution-hergebruik"] {
  width: min(310px, 86%);
  transform: scale(1.12);
}

body[data-page="home"] .home-approach-card h3 {
  order: 1;
  padding-inline: clamp(24px, 2.4vw, 34px);
  margin-top: clamp(24px, 2.5vw, 34px);
  color: var(--home-cohesive-ink);
  font-size: clamp(1.28rem, 1.6vw, 1.65rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

body[data-page="home"] .home-approach-card p {
  order: 2;
  max-width: 34ch;
  padding-right: clamp(76px, 6vw, 94px);
  padding-left: clamp(24px, 2.4vw, 34px);
  margin-top: 14px;
  color: rgba(17, 25, 48, 0.64);
  font-size: clamp(0.9rem, 0.95vw, 1rem);
  font-weight: 500;
  line-height: 1.55;
}

body[data-page="home"] .home-approach-card[data-solution-card] {
  cursor: pointer;
  outline: none;
}

body[data-page="home"] .home-approach-line-art {
  display: block;
  width: min(300px, 88%);
  height: auto;
  overflow: visible;
  color: #385193;
  stroke: currentColor;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: color 240ms ease, transform 380ms cubic-bezier(0.22, 1, 0.36, 1);
}

body[data-page="home"] .home-approach-line-art circle:not([opacity]) {
  fill: #eeece5;
  transition: fill 240ms ease;
}

body[data-page="home"] .home-approach-line-art__accent {
  stroke-width: 4;
}

body[data-page="home"] .home-approach-open {
  position: absolute;
  right: clamp(22px, 2vw, 30px);
  bottom: clamp(22px, 2vw, 30px);
  display: grid;
  width: 42px;
  height: 42px;
  color: #385193;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(56, 81, 147, 0.14);
  border-radius: 50%;
  place-items: center;
  transition: color 220ms ease, background 220ms ease, border-color 220ms ease, transform 220ms ease;
}

body[data-page="home"] .home-approach-open svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

body[data-page="home"] .home-approach-card[data-solution-card]:hover,
body[data-page="home"] .home-approach-card[data-solution-card]:focus-visible,
body[data-page="home"] .home-approach-card[data-solution-card].is-selected {
  color: #ffffff;
  background: #385193 !important;
  border-color: #385193;
  box-shadow: 0 22px 52px rgba(30, 48, 98, 0.24);
}

body[data-page="home"] .home-approach-card[data-solution-card]:hover h3,
body[data-page="home"] .home-approach-card[data-solution-card]:focus-visible h3,
body[data-page="home"] .home-approach-card[data-solution-card].is-selected h3,
body[data-page="home"] .home-approach-card[data-solution-card]:hover p,
body[data-page="home"] .home-approach-card[data-solution-card]:focus-visible p,
body[data-page="home"] .home-approach-card[data-solution-card].is-selected p {
  color: #ffffff;
}

body[data-page="home"] .home-approach-card[data-solution-card]:hover .home-approach-line-art,
body[data-page="home"] .home-approach-card[data-solution-card]:focus-visible .home-approach-line-art,
body[data-page="home"] .home-approach-card[data-solution-card].is-selected .home-approach-line-art {
  color: #c9ebff;
  transform: scale(1.035);
}

body[data-page="home"] .home-approach-card[data-solution-card]:hover .home-approach-line-art circle:not([opacity]),
body[data-page="home"] .home-approach-card[data-solution-card]:focus-visible .home-approach-line-art circle:not([opacity]),
body[data-page="home"] .home-approach-card[data-solution-card].is-selected .home-approach-line-art circle:not([opacity]) {
  fill: #385193;
}

body[data-page="home"] .home-approach-card[data-solution-card]:hover .home-approach-step,
body[data-page="home"] .home-approach-card[data-solution-card]:focus-visible .home-approach-step,
body[data-page="home"] .home-approach-card[data-solution-card].is-selected .home-approach-step {
  color: #ffffff;
  background: rgba(7, 14, 36, 0.24);
  border-color: rgba(255, 255, 255, 0.24);
}

body[data-page="home"] .home-approach-card[data-solution-card]:hover .home-approach-open,
body[data-page="home"] .home-approach-card[data-solution-card]:focus-visible .home-approach-open,
body[data-page="home"] .home-approach-card[data-solution-card].is-selected .home-approach-open {
  color: #111930;
  background: #c9ebff;
  border-color: #c9ebff;
  transform: translateX(3px);
}

.home-solution-expansion {
  width: min(1360px, calc(100% - clamp(40px, 8vw, 152px)));
  margin: clamp(34px, 4vw, 56px) auto 0;
  color: #ffffff;
  overflow: clip;
}

.home-solution-expansion[hidden] {
  display: none;
}

.home-solution-dialog__panel {
  position: relative;
  width: 100%;
  min-height: clamp(480px, 54vw, 670px);
  padding: clamp(34px, 5vw, 74px);
  overflow: hidden;
  color: #ffffff;
  background:
    radial-gradient(circle at 78% 28%, rgba(201, 235, 255, 0.16), transparent 30%),
    #385193;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 24px;
  box-shadow: 0 28px 72px rgba(17, 25, 48, 0.2);
  transform-origin: top left;
}

.home-solution-dialog__close {
  position: absolute;
  top: clamp(20px, 2.5vw, 32px);
  right: clamp(20px, 2.5vw, 32px);
  display: grid;
  width: 48px;
  height: 48px;
  padding: 0;
  color: #ffffff;
  cursor: pointer;
  background: rgba(7, 14, 36, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  place-items: center;
}

.home-solution-dialog__close:hover,
.home-solution-dialog__close:focus-visible {
  color: #111930;
  background: #c9ebff;
  border-color: #c9ebff;
  outline: none;
}

.home-solution-dialog__close svg {
  width: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
}

.home-solution-dialog__meta {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-bottom: clamp(50px, 8vh, 88px);
  color: #c9ebff;
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.home-solution-dialog__meta span:first-child {
  display: grid;
  width: 38px;
  height: 38px;
  color: #385193;
  background: #ffffff;
  border-radius: 50%;
  place-items: center;
}

.home-solution-dialog__layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1.15fr);
  gap: clamp(40px, 7vw, 110px);
  align-items: center;
}

.home-solution-dialog__copy h2 {
  max-width: 12ch;
  margin: 0;
  color: #ffffff;
  font-size: clamp(2.6rem, 5vw, 5.6rem);
  font-weight: 650;
  letter-spacing: -0.045em;
  line-height: 0.98;
  text-wrap: balance;
}

.home-solution-dialog__copy p {
  max-width: 38ch;
  margin: clamp(24px, 3vw, 38px) 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(1rem, 1.2vw, 1.2rem);
  font-weight: 500;
  line-height: 1.6;
}

.home-solution-dialog__visual {
  display: grid;
  min-height: clamp(300px, 34vw, 480px);
  color: #c9ebff;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  place-items: center;
}

.home-solution-dialog__visual .home-approach-line-art {
  width: min(500px, 82%);
  color: currentColor;
  stroke-width: 2.4;
}

.home-solution-dialog__visual .home-approach-line-art circle:not([opacity]) {
  fill: #385193;
}

.home-solution-dialog__content:not([hidden]) {
  grid-column: 1 / -1;
  padding-top: clamp(34px, 5vw, 64px);
  margin-top: clamp(18px, 3vw, 38px);
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.home-solution-detail {
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(0.96rem, 1vw, 1.08rem);
  line-height: 1.62;
}

.home-solution-detail p {
  margin: 0;
}

.home-solution-detail h3 {
  margin: 0 0 12px;
  color: #ffffff;
  font-size: clamp(1.12rem, 1.35vw, 1.4rem);
  font-style: italic;
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.2;
}

.home-solution-detail--analysis {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: clamp(36px, 6vw, 88px);
  align-items: start;
}

.home-solution-detail__lead {
  display: grid;
  gap: 22px;
  padding: clamp(24px, 3vw, 38px);
  background: rgba(7, 14, 36, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
}

.home-solution-detail__how h3 {
  margin-bottom: 18px;
}

.home-solution-detail__how ul {
  display: grid;
  gap: 18px;
  padding: 0;
  margin: 0 0 24px;
  list-style: none;
}

.home-solution-detail__how li {
  position: relative;
  padding-left: 25px;
}

.home-solution-detail__how li::before {
  position: absolute;
  top: 0.65em;
  left: 0;
  width: 7px;
  height: 7px;
  content: "";
  background: #c9ebff;
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(201, 235, 255, 0.09);
}

.home-solution-detail__columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2.4vw, 32px);
}

.home-solution-detail__column {
  display: grid;
  grid-template-rows: auto auto auto;
  align-content: start;
  min-height: 0;
  padding: clamp(24px, 3vw, 38px);
  background: rgba(7, 14, 36, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
}

.home-solution-detail__icon {
  width: 64px;
  height: 64px;
  margin: 34px auto 0;
  color: #c9ebff;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.home-solution-detail--reuse {
  display: grid;
  grid-template-columns: minmax(0, 1.28fr) minmax(260px, 0.72fr);
  gap: clamp(42px, 7vw, 110px);
  align-items: center;
}

.home-solution-detail__reuse-copy {
  display: grid;
  gap: clamp(28px, 3.5vw, 44px);
}

.home-solution-detail__reuse-copy section {
  display: grid;
  gap: 15px;
}

.home-solution-detail__reuse-art {
  width: min(420px, 100%);
  margin-inline: auto;
  color: #c9ebff;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

body[data-page="home"] .home-problem-copy-image,
body[data-page="home"] .home-service-card {
  border-radius: 14px;
}

body[data-page="home"] .home-service-card {
  box-shadow: none;
}

body[data-page="home"] .home-service-frame {
  gap: clamp(24px, 3vw, 36px);
}

body[data-page="home"] .home-service-routes {
  padding-top: 0;
}

/* The CTA acts as an intentional bridge into the footer. */
body[data-page="home"] .home-prefooter-cta {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: #ffffff;
  background:
    radial-gradient(circle at 78% 40%, rgba(56, 81, 147, 0.24), transparent 34%),
    radial-gradient(circle at 12% 0%, rgba(201, 235, 255, 0.06), transparent 30%),
    var(--home-cohesive-dark);
  border-bottom: 0;
}

body[data-page="home"] .home-prefooter-cta::before {
  position: absolute;
  inset: -42% -14% -76% 30%;
  z-index: -1;
  content: "";
  background: repeating-radial-gradient(
    ellipse at 72% 66%,
    transparent 0 52px,
    rgba(201, 235, 255, 0.1) 53px 54px,
    transparent 55px 88px
  );
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.42) 30%, #000 100%);
  mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.42) 30%, #000 100%);
  opacity: 0.74;
  transform: rotate(-7deg) scale(1.12);
}

body[data-page="home"] .home-prefooter-cta::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background: linear-gradient(180deg, transparent 54%, rgba(4, 9, 16, 0.44) 100%);
  pointer-events: none;
}

body[data-page="home"] .home-prefooter-cta__inner {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  padding-top: clamp(92px, 10vw, 148px);
  padding-bottom: clamp(92px, 10vw, 148px);
  text-align: center;
}

body[data-page="home"] .home-prefooter-cta__eyebrow {
  margin: 0 0 clamp(20px, 2.4vw, 32px);
  color: #c9ebff;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

body[data-page="home"] .home-prefooter-cta__content {
  display: flex;
  flex-direction: column;
  gap: clamp(28px, 3.5vw, 42px);
  align-items: center;
  padding-top: 0;
  border-top: 0;
}

body[data-page="home"] .home-prefooter-cta h2 {
  max-width: 19ch;
  margin: 0;
  color: #ffffff;
  font-size: clamp(1.9rem, 3.2vw, 3.6rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.08;
  text-align: center;
  text-wrap: balance;
}

body[data-page="home"] .home-prefooter-cta__content > a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 184px;
  min-height: 50px;
  padding: 0 20px;
  gap: 18px;
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 800;
  background: #385193;
  border: 1px solid #385193;
  border-radius: 8px;
  transition: color 160ms ease, background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

body[data-page="home"] .home-prefooter-cta__content > a:hover,
body[data-page="home"] .home-prefooter-cta__content > a:focus-visible {
  color: #111930;
  background: #c9ebff;
  border-color: #c9ebff;
  outline: none;
  transform: translateY(-2px);
}

body[data-page="home"] .site-footer--brand {
  padding-top: clamp(56px, 6vw, 82px);
  color: #ffffff;
  background: var(--home-cohesive-dark);
  background-image: none;
  border-top: 0;
}

body[data-page="home"] .site-footer--brand .home-footer-logo {
  background-image: url("/assets/brand/blauwe-bagger-logo-hero.svg");
}

body[data-page="home"] .site-footer--brand .home-footer-meta {
  grid-template-columns: minmax(250px, 1.35fr) repeat(3, minmax(140px, 0.72fr));
  column-gap: clamp(34px, 4vw, 72px);
  row-gap: clamp(34px, 3.5vw, 52px);
  border-bottom-color: rgba(255, 255, 255, 0.12);
}

body[data-page="home"] .site-footer--brand .home-footer-brand {
  grid-column: 1;
  grid-row: 1 / 3;
}

body[data-page="home"] .site-footer--brand .home-footer-column[aria-label="Footer navigatie"] {
  grid-column: 2;
  grid-row: 1 / 3;
}

body[data-page="home"] .site-footer--brand .home-footer-column[aria-label="Bedrijf"] {
  grid-column: 3;
  grid-row: 1;
}

body[data-page="home"] .site-footer--brand .home-footer-links {
  grid-column: 4;
  grid-row: 1;
}

body[data-page="home"] .site-footer--brand .home-footer-address {
  grid-column: 3;
  grid-row: 2;
}

body[data-page="home"] .site-footer--brand .home-footer-contact {
  grid-column: 4;
  grid-row: 2;
}

body[data-page="home"] .site-footer--brand .home-footer-meta p,
body[data-page="home"] .site-footer--brand .home-footer-meta a,
body[data-page="home"] .site-footer--brand .home-footer-bottom,
body[data-page="home"] .site-footer--brand .home-footer-brand p {
  color: rgba(255, 255, 255, 0.64);
}

body[data-page="home"] .site-footer--brand .home-footer-heading {
  color: #c9ebff;
}

body[data-page="home"] .site-footer--brand .home-footer-address,
body[data-page="home"] .site-footer--brand .home-footer-contact {
  padding-top: 0;
  border-top: 0;
}

body[data-page="home"] .site-footer--brand .home-footer-meta a:hover,
body[data-page="home"] .site-footer--brand .home-footer-meta a:focus-visible,
body[data-page="home"] .site-footer--brand .home-footer-bottom a:hover,
body[data-page="home"] .site-footer--brand .home-footer-bottom a:focus-visible {
  color: #ffffff;
}

@media (max-width: 980px) {
  body[data-page="home"] .home-approach-grid {
    grid-template-columns: 1fr;
    width: min(680px, 100%);
    margin-inline: auto;
  }

  body[data-page="home"] .home-approach-card {
    min-height: 0;
  }

  .home-solution-dialog__panel {
    min-height: 0;
  }

  .home-solution-dialog__layout {
    grid-template-columns: 1fr;
  }

  .home-solution-detail--analysis,
  .home-solution-detail--reuse {
    grid-template-columns: 1fr;
  }

  .home-solution-detail__columns {
    grid-template-columns: 1fr;
  }

  .home-solution-detail__column {
    min-height: 0;
  }

  .home-solution-detail__reuse-art {
    width: min(360px, 80%);
  }

  .home-solution-dialog__visual {
    min-height: 300px;
  }

  body[data-page="home"] .site-footer--brand .home-footer-meta {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body[data-page="home"] .site-footer--brand .home-footer-meta > * {
    grid-column: auto;
    grid-row: auto;
  }

  body[data-page="home"] .site-footer--brand .home-footer-brand,
  body[data-page="home"] .site-footer--brand .home-footer-contact {
    grid-column: 1 / -1;
  }
}

@media (max-width: 760px) {
  body[data-page="home"] {
    --home-partner-strip-height: 94px;
  }

  body[data-page="home"] .home-hero-copy h1 {
    row-gap: 4px;
  }

  body[data-page="home"] .home-hero-copy h1 .home-hero-topline {
    gap: clamp(10px, 3vw, 16px);
  }

  body[data-page="home"] .home-hero-copy h1 .home-hero-connector {
    margin-bottom: 0.06em;
    font-size: clamp(1.35rem, 7vw, 2rem);
  }

  body[data-page="home"] .home-hero-card {
    min-height: calc(100svh - 56px);
  }

  body[data-page="home"] .home-frame {
    width: calc(100% - 32px);
  }

  body[data-page="home"] .home-partner-strip__inner {
    display: grid;
    width: 100%;
    gap: 6px;
    padding: 7px 0;
  }

  body[data-page="home"] .home-partner-strip__title {
    display: block;
  }

  body[data-page="home"] .home-partner-strip__list li {
    flex-basis: 140px;
    width: 140px;
    min-height: 52px;
    padding: 8px 14px;
  }

  body[data-page="home"] .home-mission-copy p {
    max-width: none;
  }

  body[data-page="home"] .home-approach-visual,
  body[data-page="home"] .home-approach-visual--bluebox {
    min-height: 230px;
    padding: 28px;
  }

  .home-solution-expansion {
    width: calc(100% - 32px);
    margin-top: 28px;
  }

  .home-solution-dialog__panel {
    width: 100%;
    padding: 28px 22px 34px;
    border-radius: 18px;
  }

  .home-solution-dialog__meta {
    margin-bottom: 42px;
  }

  .home-solution-dialog__copy h2 {
    padding-right: 46px;
    font-size: clamp(2.3rem, 12vw, 3.6rem);
  }

  .home-solution-dialog__visual {
    min-height: 240px;
  }

  body[data-page="home"] .home-prefooter-cta__content {
    align-items: center;
  }

  body[data-page="home"] .home-prefooter-cta h2 {
    font-size: clamp(1.8rem, 8vw, 2.7rem);
    text-align: center;
  }

  body[data-page="home"] .home-prefooter-cta__inner {
    justify-items: center;
    text-align: center;
  }

  body[data-page="home"] .home-prefooter-cta__content > a {
    justify-content: center;
  }

  body[data-page="home"] .site-footer--brand .home-footer-meta {
    grid-template-columns: 1fr;
  }

  body[data-page="home"] .site-footer--brand .home-footer-meta > * {
    grid-column: 1;
  }
}

/* Keep the homepage footer readable on tablet-sized mobile layouts too. The
   desktop four-column grid is wider than these viewports and otherwise lets
   the right-hand columns run off-screen instead of stacking like other pages. */
@media (max-width: 1100px) {
  body[data-page="home"] .site-footer--brand .home-footer-meta {
    grid-template-columns: 1fr;
  }

  body[data-page="home"] .site-footer--brand .home-footer-meta > * {
    grid-column: 1;
    grid-row: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  body[data-page="home"] .home-partner-strip__marquee {
    overflow-x: auto;
    -webkit-mask-image: none;
    mask-image: none;
    scrollbar-width: none;
  }

  body[data-page="home"] .home-partner-strip__marquee::-webkit-scrollbar {
    display: none;
  }

  body[data-page="home"] .home-partner-strip__track {
    animation: none;
  }

  body[data-page="home"] .home-partner-strip__list[aria-hidden="true"] {
    display: none;
  }
}

body[data-page="service-detail"] .service-route-section--bluebox {
  background: linear-gradient(135deg, #070f24 0%, #132755 52%, #20386f 100%) !important;
  background-image: linear-gradient(135deg, #070f24 0%, #132755 52%, #20386f 100%) !important;
  background-size: auto !important;
}

body[data-page="service-detail"] .service-route-section--bluebox .service-route-copy p {
  color: #c9ebff;
}

body[data-page="service-detail"] .service-route-section--bluebox .service-route-copy h2 {
  color: #ffffff;
}

body[data-page="service-detail"] .service-route-section--bluebox .service-route-steps {
  border-top-color: rgba(201, 235, 255, 0.2);
}

body[data-page="service-detail"] .service-route-section--bluebox .service-route-step {
  border-bottom-color: rgba(201, 235, 255, 0.2);
}

body[data-page="service-detail"] .service-route-section--bluebox .service-route-step span {
  color: rgba(201, 235, 255, 0.72);
}

body[data-page="service-detail"] .service-route-section--bluebox .service-route-step h3 {
  color: #ffffff;
}

body[data-page="service-detail"] .service-route-section--bluebox .service-route-step p {
  color: rgba(255, 255, 255, 0.68);
}

body[data-page="service-detail"] .service-route-section--bluebox .service-route-media {
  border-color: rgba(201, 235, 255, 0.18);
  box-shadow: 0 32px 70px rgba(0, 0, 0, 0.24);
}

@media (min-width: 1181px) {
  body[data-page="service-detail"] .service-route-section--bluebox .service-route-grid--media {
    align-items: stretch;
  }

  body[data-page="service-detail"] .service-route-section--bluebox .service-route-copy {
    align-self: start;
    align-content: start;
  }

  body[data-page="service-detail"] .service-route-section--bluebox .service-route-media {
    height: auto;
    min-height: 0;
  }

  body[data-page="service-detail"] .service-route-section--bluebox .service-route-media img {
    position: absolute;
    inset: 0;
    height: 100%;
    min-height: 0;
    object-fit: cover;
  }
}

body[data-page="service-detail"] .service-route-section--bluebox .service-route-card {
  color: #ffffff;
  background: rgba(7, 14, 36, 0.34) !important;
  border-color: rgba(201, 235, 255, 0.2);
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.16);
}

body[data-page="service-detail"] .service-route-section--bluebox .service-route-card span {
  color: #ffffff;
  background: #385193;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.22);
}

body[data-page="service-detail"] .service-route-section--bluebox .service-route-card h3 {
  color: #ffffff;
}

body[data-page="service-detail"] .service-route-section--bluebox .service-route-card p {
  color: rgba(255, 255, 255, 0.74);
}

body[data-page="service-detail"] .material-offer-section {
  background: linear-gradient(135deg, #070f24 0%, #132755 52%, #20386f 100%) !important;
  background-image: linear-gradient(135deg, #070f24 0%, #132755 52%, #20386f 100%) !important;
  background-size: auto !important;
}

body[data-page="service-detail"] .material-offer-section::before {
  display: none !important;
  content: none !important;
}

body[data-page="service-detail"] .material-offer-head {
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(12px, 1.8vw, 20px);
  align-items: center;
  margin-bottom: clamp(34px, 5vh, 58px);
}

body[data-page="service-detail"] .material-offer-head p {
  color: #c9ebff;
}

body[data-page="service-detail"] .material-offer-head h2 {
  max-width: min(1480px, 100%);
  color: #ffffff;
  font-size: clamp(2.25rem, 4vw, 4.2rem);
  letter-spacing: -0.04em;
  line-height: 0.94;
  text-wrap: balance;
  white-space: normal;
}

body[data-page="service-detail"] .material-offer-carousel {
  padding-inline: 0;
}

body[data-page="service-detail"] .material-offer-controls {
  inset-inline: -72px;
}

@media (max-width: 980px) {
  body[data-page="service-detail"] .material-offer-head h2 {
    max-width: 760px;
    white-space: normal;
  }

  body[data-page="service-detail"] .material-offer-controls {
    inset-inline: auto;
  }
}

body[data-page="service-detail"] .material-carousel-button {
  color: #c9ebff;
  background: rgba(7, 14, 36, 0.34);
  border-color: rgba(201, 235, 255, 0.24);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.16);
}

body[data-page="service-detail"] .material-carousel-button:hover,
body[data-page="service-detail"] .material-carousel-button:focus-visible {
  color: #111930;
  background: #c9ebff;
  border-color: #c9ebff;
}

body[data-page="service-detail"] .material-carousel-button:disabled {
  color: rgba(201, 235, 255, 0.28);
  background: rgba(7, 14, 36, 0.22);
  border-color: rgba(201, 235, 255, 0.12);
}

body[data-page="service-detail"] .material-offer-card {
  background: rgba(255, 255, 255, 0.94) !important;
  border-color: rgba(201, 235, 255, 0.18);
  box-shadow: 0 24px 58px rgba(0, 0, 0, 0.18);
}

body[data-page="over-ons"] .about-team-section {
  background: linear-gradient(135deg, #070f24 0%, #132755 52%, #20386f 100%) !important;
  background-image: linear-gradient(135deg, #070f24 0%, #132755 52%, #20386f 100%) !important;
  background-size: auto !important;
}

body[data-page="over-ons"] .about-team-section h2 {
  color: #ffffff;
}

body[data-page="over-ons"] .about-team-section h2::before {
  color: #c9ebff;
}

body[data-page="over-ons"] .about-team-card {
  background: rgba(255, 255, 255, 0.94);
  border-color: rgba(201, 235, 255, 0.18);
  box-shadow: 0 24px 58px rgba(0, 0, 0, 0.18);
}

body[data-page="over-ons"] .about-team-link {
  color: #c9ebff;
  background: rgba(7, 14, 36, 0.34);
  border-color: rgba(201, 235, 255, 0.24);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.16);
}

body[data-page="over-ons"] .about-team-link:hover,
body[data-page="over-ons"] .about-team-link:focus-visible {
  color: #111930;
  background: #c9ebff;
  border-color: #c9ebff;
}

body[data-page="over-ons"] .about-page,
body[data-page="over-ons"] .about-story-section,
body[data-page="over-ons"] .about-statement-section,
body[data-page="over-ons"] .about-team-section,
body[data-page="over-ons"] .about-gallery-section {
  background: #ffffff !important;
  background-image: none !important;
}

body[data-page="over-ons"] .about-story-section {
  padding: clamp(128px, 16vh, 178px) 0 clamp(54px, 8vh, 88px);
}

body[data-page="over-ons"] .about-story-section .about-frame {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(58px, 8vw, 96px);
  align-items: start;
}

body[data-page="over-ons"] .about-kicker,
body[data-page="over-ons"] .about-team-card p,
body[data-page="over-ons"] .about-photo-placeholder span {
  margin: 0;
  color: rgba(56, 81, 147, 0.72);
  font-size: 0.72rem;
  font-weight: 820;
  letter-spacing: 0.14em;
  line-height: 1.2;
  text-transform: uppercase;
}

body[data-page="over-ons"] .about-story-section h1 {
  max-width: 11ch;
  margin-top: 0;
  color: #111930;
  font-family: var(--font-display);
  font-size: clamp(3rem, 5.2vw, 5.7rem);
  font-weight: 840;
  letter-spacing: -0.045em;
  line-height: 0.94;
}

body[data-page="over-ons"] .about-story-text {
  max-width: 1180px;
  margin-top: clamp(42px, 6vw, 66px);
  color: rgba(17, 25, 48, 0.74);
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.18vw, 1.24rem);
  font-weight: 560;
  letter-spacing: -0.01em;
  line-height: 1.55;
}

body[data-page="over-ons"] .about-photo-placeholder {
  position: relative;
  display: grid;
  place-items: center;
  min-height: clamp(230px, 23vw, 340px);
  overflow: hidden;
  background:
    repeating-linear-gradient(
      135deg,
      rgba(30, 27, 24, 0.035) 0,
      rgba(30, 27, 24, 0.035) 10px,
      rgba(255, 255, 255, 0.34) 10px,
      rgba(255, 255, 255, 0.34) 22px
    ),
    rgba(255, 255, 255, 0.34);
  border: 1px solid rgba(30, 27, 24, 0.04);
}

body[data-page="over-ons"] .about-photo-placeholder--wide {
  min-height: clamp(330px, 35vw, 520px);
}

body[data-page="over-ons"] .about-statement-section {
  padding: clamp(52px, 7vh, 82px) 0 clamp(58px, 8vh, 92px);
  border-bottom: 1px solid rgba(30, 27, 24, 0.08);
}

body[data-page="over-ons"] .about-statement {
  max-width: 980px;
  margin: 0;
  color: #111930;
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 3vw, 3.35rem);
  font-weight: 760;
  letter-spacing: -0.038em;
  line-height: 1.08;
}

body[data-page="over-ons"] .about-statement em {
  font-style: italic;
}

body[data-page="over-ons"] .about-statement strong {
  font-weight: 700;
}

body[data-page="over-ons"] .about-team-section {
  padding: clamp(82px, 11vh, 124px) 0 clamp(64px, 9vh, 104px);
}

body[data-page="over-ons"] .about-team-section h2 {
  width: 100%;
  max-width: none;
  margin: 0;
  color: #111930;
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 4.2vw, 4.6rem);
  font-weight: 820;
  letter-spacing: -0.045em;
  line-height: 0.98;
  text-align: left;
}

body[data-page="over-ons"] .about-team-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(24px, 2vw, 34px);
  width: 100%;
  max-width: none;
  margin: clamp(48px, 7vh, 72px) 0 0;
}

body[data-page="over-ons"] .about-team-card {
  justify-items: start;
  padding: 0;
  background: transparent !important;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}

body[data-page="over-ons"] .about-team-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 20%;
  filter: none;
  background: rgba(255, 255, 255, 0.34);
  border-radius: 2px;
}

body[data-page="over-ons"] .about-team-card h3 {
  margin: 16px 0 4px;
  color: #1e1b18;
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.12vw, 1.14rem);
  font-weight: 760;
  letter-spacing: -0.01em;
  line-height: 1.2;
}

body[data-page="over-ons"] .about-team-card p {
  color: rgba(30, 27, 24, 0.58);
  font-size: clamp(0.86rem, 0.96vw, 0.98rem);
  font-weight: 520;
  letter-spacing: 0;
  line-height: 1.35;
  text-transform: none;
}

body[data-page="over-ons"] .about-gallery-section {
  padding: 0 0 clamp(76px, 10vh, 116px);
}

body[data-page="over-ons"] .about-photo-collage {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(240px, 1fr);
  grid-template-rows: repeat(2, minmax(190px, 1fr));
  gap: clamp(22px, 2vw, 30px);
}

body[data-page="over-ons"] .about-photo-collage .about-photo-placeholder {
  min-height: clamp(220px, 22vw, 300px);
}

body[data-page="over-ons"] .about-photo-placeholder--large {
  grid-row: 1 / span 2;
  min-height: clamp(420px, 44vw, 590px);
}

body[data-page="over-ons"] .about-board-section--openings {
  margin-top: 0;
}

body[data-page="over-ons"] .about-partners-section {
  padding: clamp(24px, 4vh, 42px) 0 clamp(74px, 10vh, 118px);
  overflow: hidden;
  background: #ffffff;
}

body[data-page="over-ons"] .about-partners-title {
  margin: 0 0 clamp(28px, 4vw, 42px);
  color: rgba(17, 25, 48, 0.44);
  font-size: 0.72rem;
  font-weight: 820;
  letter-spacing: 0.14em;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
}

body[data-page="over-ons"] .about-partners-marquee {
  --partner-card-gap: clamp(14px, 1.6vw, 24px);
  position: relative;
  width: 100%;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
}

body[data-page="over-ons"] .about-partners-track {
  display: flex;
  width: max-content;
  will-change: transform;
  animation: about-partners-scroll 34s linear infinite;
}

/* Let visitors inspect a logo before opening its partner site. */
body[data-page="over-ons"] .about-partners-marquee:hover .about-partners-track,
body[data-page="over-ons"] .about-partners-marquee:focus-within .about-partners-track {
  animation-play-state: paused;
}

body[data-page="over-ons"] .about-partners-list {
  display: flex;
  flex: none;
  gap: var(--partner-card-gap);
  align-items: stretch;
  padding: 0 var(--partner-card-gap) 0 0;
  margin: 0;
  list-style: none;
}

body[data-page="over-ons"] .about-partners-list li {
  display: grid;
  flex: 0 0 clamp(210px, 22vw, 320px);
  width: clamp(210px, 22vw, 320px);
  min-height: clamp(92px, 9vw, 126px);
  padding: clamp(18px, 2vw, 26px);
  place-items: center;
  border: 1px solid rgba(17, 25, 48, 0.08);
  border-radius: 8px;
  background: #ffffff;
}

body[data-page="over-ons"] .about-partners-list li > a {
  display: grid;
  width: 100%;
  height: 100%;
  place-items: center;
  color: inherit;
  text-decoration: none;
}

body[data-page="over-ons"] .about-partners-list li > a:focus-visible {
  border-radius: 6px;
  outline: 3px solid rgba(56, 81, 147, 0.42);
  outline-offset: 4px;
}

body[data-page="over-ons"] .about-partners-list img {
  width: 100%;
  height: clamp(48px, 5vw, 68px);
  object-fit: contain;
  opacity: 0.72;
  filter: grayscale(1);
}

@keyframes about-partners-scroll {
  to {
    transform: translateX(-50%);
  }
}

body[data-page="over-ons"] .about-work-section {
  padding: clamp(44px, 7vh, 80px) 0 clamp(72px, 10vh, 118px);
  background: #ffffff;
}

body[data-page="over-ons"] .about-work-card {
  display: grid;
  justify-items: center;
  min-height: clamp(340px, 34vw, 470px);
  align-content: center;
  padding: clamp(52px, 7vw, 86px) clamp(28px, 5vw, 72px);
  color: #ffffff;
  text-align: center;
  background: #2e4385;
  border-radius: 4px;
}

body[data-page="over-ons"] .about-work-card h2 {
  margin: 0;
  color: #ffffff;
  font-family: var(--font-display);
  font-size: clamp(3rem, 5vw, 5.2rem);
  font-weight: 760;
  letter-spacing: -0.045em;
  line-height: 0.95;
}

body[data-page="over-ons"] .about-work-card p {
  max-width: 560px;
  margin: clamp(24px, 3vw, 34px) 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1rem, 1.15vw, 1.18rem);
  font-weight: 560;
  line-height: 1.55;
}

body[data-page="over-ons"] .about-work-card a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 124px;
  min-height: 48px;
  margin-top: clamp(28px, 4vw, 42px);
  padding: 0 24px;
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 800;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 3px;
  transition: background 180ms ease, border-color 180ms ease;
}

body[data-page="over-ons"] .about-work-card a:hover,
body[data-page="over-ons"] .about-work-card a:focus-visible {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.48);
  outline: none;
}

body[data-page="vacatures"] .about-page,
body[data-page="vacatures"] .vacancy-hero-section,
body[data-page="vacatures"] .about-board-section {
  background: #ffffff;
}

body[data-page="vacatures"] .vacancy-hero-section {
  padding: clamp(132px, 16vh, 182px) 0 clamp(54px, 8vh, 88px);
}

body[data-page="vacatures"] .vacancy-hero-section h1 {
  max-width: 11ch;
  margin: 0;
  color: #111930;
  font-family: var(--font-display);
  font-size: clamp(4.5rem, 8vw, 8rem);
  font-weight: 840;
  letter-spacing: -0.055em;
  line-height: 0.88;
}

body[data-page="vacatures"] .vacancy-hero-copy {
  max-width: 720px;
  margin: clamp(34px, 5vw, 56px) 0 0;
  color: rgba(17, 25, 48, 0.66);
  font-size: clamp(1.1rem, 1.5vw, 1.5rem);
  font-weight: 520;
  line-height: 1.55;
}

body[data-page="vacatures"] .about-board-section--openings {
  padding-top: clamp(20px, 4vh, 44px);
}

body[data-page="vacatures"] .about-board-section--openings::before {
  display: none;
}

body[data-page="vacatures"] .about-vacancy-head {
  display: block;
  padding-bottom: clamp(18px, 3vw, 28px);
}

body[data-page="vacatures"] .about-vacancy-head p {
  margin: 0;
  color: rgba(17, 25, 48, 0.54);
  font-size: clamp(0.95rem, 1.08vw, 1.1rem);
  font-weight: 720;
  white-space: normal;
}

@media (max-width: 980px) {
  body[data-page="over-ons"] .about-team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body[data-page="over-ons"] .about-photo-collage {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  body[data-page="over-ons"] .about-photo-placeholder--large {
    grid-row: auto;
  }
}

@media (max-width: 620px) {
  body[data-page="over-ons"] .about-team-grid {
    grid-template-columns: 1fr;
  }

  body[data-page="over-ons"] .about-partners-marquee {
    --partner-card-gap: 12px;
    width: calc(100% + 32px);
    margin-left: -16px;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  }

  body[data-page="over-ons"] .about-partners-list li {
    flex-basis: 210px;
    width: 210px;
    min-height: 88px;
    padding: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  body[data-page="over-ons"] .about-partners-marquee {
    overflow-x: auto;
    -webkit-mask-image: none;
    mask-image: none;
    scrollbar-width: none;
  }

  body[data-page="over-ons"] .about-partners-marquee::-webkit-scrollbar {
    display: none;
  }

  body[data-page="over-ons"] .about-partners-track {
    animation: none;
  }

  body[data-page="over-ons"] .about-partners-list[aria-hidden="true"] {
    display: none;
  }
}

body[data-page="het-plan"] .plan-intro-section {
  display: grid;
  min-height: 100svh;
  padding: clamp(64px, 8vh, 94px) 0 clamp(64px, 8vh, 92px) !important;
  align-items: center;
}

body[data-page="het-plan"] .plan-intro-frame,
body[data-page="het-plan"] .plan-intro-layout {
  gap: clamp(18px, 2.5vw, 32px);
}

body[data-page="het-plan"] .plan-intro-copy {
  gap: clamp(20px, 2.35vw, 34px);
  max-width: min(1460px, 100%);
}

body[data-page="het-plan"] .plan-intro-head {
  gap: clamp(8px, 1vw, 12px);
}

body[data-page="het-plan"] .plan-intro-head p {
  font-size: clamp(0.82rem, 1vw, 1rem);
  letter-spacing: 0.04em;
}

body[data-page="het-plan"] .plan-intro-head h1 {
  font-size: clamp(2.25rem, 3.4vw, 3.9rem);
  letter-spacing: -0.032em;
  line-height: 0.98;
}

body[data-page="het-plan"] .plan-intro-copy p {
  max-width: 1320px;
  color: #111930;
  font-size: clamp(1rem, 1.12vw, 1.14rem);
  line-height: 1.48;
}

body[data-page="het-plan"] .plan-intro-copy .plan-intro-lead {
  max-width: 1320px;
  font-size: clamp(1.05rem, 1.18vw, 1.22rem);
  line-height: 1.42;
}

@media (max-width: 1080px) {
  body[data-page="het-plan"] .plan-intro-section {
    min-height: 100svh;
    padding: clamp(172px, 19vw, 220px) 0 clamp(50px, 7vh, 78px) !important;
    align-items: start;
  }
}

@media (max-width: 760px) {
  body[data-page="het-plan"] .plan-intro-section {
    padding: 150px 0 48px !important;
  }

  body[data-page="het-plan"] .plan-intro-copy {
    gap: 22px;
  }

  body[data-page="het-plan"] .plan-intro-head h1 {
    font-size: clamp(2.15rem, 11vw, 3.15rem);
  }

  body[data-page="het-plan"] .plan-intro-copy p,
  body[data-page="het-plan"] .plan-intro-copy .plan-intro-lead {
    font-size: 1rem;
    line-height: 1.48;
  }
}

body[data-page="service-detail"] .service-detail-hero--bricks {
  background:
    linear-gradient(180deg, rgba(8, 14, 32, 0.18) 0%, rgba(8, 14, 32, 0.32) 100%),
    linear-gradient(90deg, rgba(17, 25, 48, 0.42) 0%, rgba(17, 25, 48, 0.18) 52%, rgba(17, 25, 48, 0.36) 100%),
    url("/assets/media/brickpile.webp") center / cover no-repeat !important;
}

body[data-page="service-detail"] .service-detail-hero--excavating {
  background:
    linear-gradient(180deg, rgba(8, 14, 32, 0.18) 0%, rgba(8, 14, 32, 0.34) 100%),
    linear-gradient(90deg, rgba(17, 25, 48, 0.44) 0%, rgba(17, 25, 48, 0.18) 52%, rgba(17, 25, 48, 0.38) 100%),
    url("/assets/media/waterexcavate.webp") center / cover no-repeat !important;
}

body[data-page="service-detail"] .service-detail-hero--excavating .service-detail-frame {
  width: min(1500px, calc(100% - clamp(42px, 10vw, 176px)));
}

body[data-page="service-detail"] .service-detail-hero--bricks .service-detail-frame {
  width: min(1500px, calc(100% - clamp(42px, 10vw, 176px)));
}

body[data-page="service-detail"] .service-detail-hero--bricks .service-detail-hero__layout,
body[data-page="service-detail"] .service-detail-hero--excavating .service-detail-hero__layout {
  min-height: calc(100svh - var(--header-height) - clamp(96px, 15vh, 154px));
  align-items: end;
  justify-items: start;
}

body[data-page="service-detail"] .service-detail-hero--bricks .service-detail-hero__head,
body[data-page="service-detail"] .service-detail-hero--excavating .service-detail-hero__head {
  max-width: min(980px, 100%);
  gap: clamp(10px, 1.1vw, 16px);
  padding-bottom: clamp(44px, 9vh, 96px);
  justify-items: start;
  text-align: left;
}

body[data-page="service-detail"] .service-detail-hero--bricks::before,
body[data-page="service-detail"] .service-detail-hero--excavating::before {
  display: none !important;
}

body[data-page="service-detail"] .service-detail-hero--bricks .service-detail-kicker,
body[data-page="service-detail"] .service-detail-hero--excavating .service-detail-kicker {
  color: #c9ebff;
}

body[data-page="service-detail"] .service-detail-hero--bricks .service-detail-kicker,
body[data-page="service-detail"] .service-detail-hero--excavating .service-detail-kicker {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 clamp(6px, 1vw, 12px);
  color: rgba(255, 255, 255, 0.66);
  font-family: var(--font-sans);
  font-size: clamp(0.72rem, 0.85vw, 0.9rem);
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1;
  text-transform: uppercase;
  text-shadow: 0 10px 28px rgba(0, 0, 0, 0.34);
}

body[data-page="service-detail"] .service-detail-hero--bricks .service-detail-kicker::before,
body[data-page="service-detail"] .service-detail-hero--excavating .service-detail-kicker::before {
  width: clamp(26px, 3vw, 42px);
  height: 1px;
  content: "";
  background: rgba(255, 255, 255, 0.46);
}

body[data-page="service-detail"] .service-detail-hero--bricks .service-detail-hero__head h1,
body[data-page="service-detail"] .service-detail-hero--bricks .service-detail-hero__head > p:not(.service-detail-kicker):not(.service-detail-hero__copy),
body[data-page="service-detail"] .service-detail-hero--bricks .service-detail-hero__copy,
body[data-page="service-detail"] .service-detail-hero--excavating .service-detail-hero__head h1,
body[data-page="service-detail"] .service-detail-hero--excavating .service-detail-hero__head > p:not(.service-detail-kicker):not(.service-detail-hero__copy),
body[data-page="service-detail"] .service-detail-hero--excavating .service-detail-hero__copy {
  color: #ffffff;
  text-shadow: 0 12px 34px rgba(0, 0, 0, 0.35);
}

body[data-page="service-detail"] .service-detail-hero--bricks .service-detail-hero__head h1,
body[data-page="service-detail"] .service-detail-hero--excavating .service-detail-hero__head h1 {
  max-width: 1080px;
}

body[data-page="service-detail"] .service-detail-hero--excavating .service-detail-hero__head h1 {
  max-width: 980px;
  font-family: var(--font-sans);
  font-size: clamp(3.4rem, 6vw, 6.35rem);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

body[data-page="service-detail"] .service-detail-hero--bricks .service-detail-hero__head h1 {
  max-width: 980px;
  font-family: var(--font-sans);
  font-size: clamp(3.4rem, 6vw, 6.35rem);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

body[data-page="service-detail"] .service-detail-hero--bricks .service-hero-accent,
body[data-page="service-detail"] .service-detail-hero--excavating .service-hero-accent {
  display: block;
  margin-top: clamp(2px, 0.5vw, 8px);
}

body[data-page="service-detail"] .service-detail-hero--bricks .service-detail-hero__head > p:not(.service-detail-kicker):not(.service-detail-hero__copy),
body[data-page="service-detail"] .service-detail-hero--excavating .service-detail-hero__head > p:not(.service-detail-kicker):not(.service-detail-hero__copy) {
  color: #ffffff;
  margin-top: clamp(6px, 1vw, 14px);
  font-size: clamp(1.02rem, 1.22vw, 1.32rem);
  font-style: normal;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

body[data-page="service-detail"] .service-detail-hero--bricks .service-detail-hero__copy {
  max-width: 780px;
  margin: clamp(18px, 3vh, 30px) 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1rem, 1.12vw, 1.16rem);
  font-style: normal;
  font-weight: 500;
  letter-spacing: -0.015em;
  line-height: 1.45;
}

body[data-page="service-detail"] .service-hero-accent {
  color: inherit !important;
  padding-bottom: 0;
  font-family: inherit;
  font-style: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  text-shadow: inherit;
}

body[data-page="service-detail"] .service-hero-accent.wave-underline::after {
  display: none;
  content: none;
}

body[data-page="service-detail"] .service-detail-hero--excavating .service-hero-accent {
  font-family: inherit;
  font-style: normal;
  font-weight: inherit;
  letter-spacing: inherit;
  line-height: inherit;
}

@media (max-width: 760px) {
  body[data-page="service-detail"] .service-detail-hero {
    min-height: auto;
  }

  body[data-page="service-detail"] .service-detail-hero--bricks,
  body[data-page="service-detail"] .service-detail-hero--excavating {
    display: grid;
    min-height: 78svh;
  }

  body[data-page="service-detail"] .service-detail-hero--bricks .service-detail-frame,
  body[data-page="service-detail"] .service-detail-hero--excavating .service-detail-frame {
    width: min(100% - 28px, 1420px);
  }

  body[data-page="service-detail"] .service-detail-hero--bricks .service-detail-hero__layout,
  body[data-page="service-detail"] .service-detail-hero--excavating .service-detail-hero__layout {
    min-height: calc(78svh - 132px);
    align-items: end;
    justify-items: start;
  }

  body[data-page="service-detail"] .service-detail-hero--bricks .service-detail-hero__head,
  body[data-page="service-detail"] .service-detail-hero--excavating .service-detail-hero__head {
    padding-bottom: clamp(26px, 8vh, 58px);
    text-align: left;
    justify-items: start;
  }

  body[data-page="service-detail"] .service-detail-hero--bricks .service-detail-hero__head h1,
  body[data-page="service-detail"] .service-detail-hero--excavating .service-detail-hero__head h1 {
    font-size: clamp(2.9rem, 13.4vw, 4.5rem);
  }

  body[data-page="service-detail"] .service-detail-hero--bricks .service-detail-hero__head > p:not(.service-detail-kicker):not(.service-detail-hero__copy),
  body[data-page="service-detail"] .service-detail-hero--excavating .service-detail-hero__head > p:not(.service-detail-kicker):not(.service-detail-hero__copy) {
    font-size: clamp(1.05rem, 5vw, 1.42rem);
  }

  body:not([data-homepage-variant="bluebox-lab"]) .home-section {
    padding-bottom: 72px;
  }

  body:not([data-homepage-variant="bluebox-lab"]) .home-section--mission .home-frame,
  body:not([data-homepage-variant="bluebox-lab"]) .home-approach-frame,
  body:not([data-homepage-variant="bluebox-lab"]) .home-service-frame,
  body:not([data-homepage-variant="bluebox-lab"]) .home-blueprint-frame {
    padding-top: 72px;
    padding-bottom: 72px;
  }
}

body[data-page="projecten"]:not(:has([data-project-admin])) .project-board-card {
  color: #ffffff !important;
  background: #111930 !important;
  background-image: none !important;
  border-color: rgba(56, 81, 147, 0.16);
  border-radius: 0;
}

body[data-page="projecten"]:not(:has([data-project-admin])) .project-board-row__grid {
  align-items: flex-start;
}

body[data-page="projecten"]:not(:has([data-project-admin])) .project-board-card {
  min-height: clamp(250px, 18.6vw, 350px);
}

body[data-page="projecten"]:not(:has([data-project-admin])) .project-board-card__media,
body[data-page="projecten"]:not(:has([data-project-admin])) .project-board-card__media--placeholder {
  height: 100%;
  background: #111930 !important;
  background-image: none !important;
}

body[data-page="projecten"]:not(:has([data-project-admin])) .project-board-card__media::after {
  background:
    linear-gradient(180deg, rgba(7, 14, 36, 0.08), rgba(7, 14, 36, 0.74)),
    linear-gradient(90deg, rgba(7, 14, 36, 0.54), rgba(7, 14, 36, 0.16) 58%, rgba(7, 14, 36, 0.4));
}

body[data-page="projecten"]:not(:has([data-project-admin])) .project-board-card__media img {
  opacity: 1;
  filter: saturate(0.94) contrast(1.02);
}

body[data-page="projecten"]:not(:has([data-project-admin])) .project-board-card:hover .project-board-card__media img,
body[data-page="projecten"]:not(:has([data-project-admin])) .project-board-card:focus-visible .project-board-card__media img {
  filter: saturate(1.03) contrast(1.04);
  transform: scale(1.07);
}

body[data-page="projecten"]:not(:has([data-project-admin])) .project-board-card__media--placeholder span {
  position: relative;
  z-index: 1;
  color: rgba(255, 255, 255, 0.16);
}

body[data-page="projecten"]:not(:has([data-project-admin])) .project-board-card__meta {
  color: rgba(255, 255, 255, 0.72);
}

body[data-page="projecten"]:not(:has([data-project-admin])) .project-board-card h3,
body[data-page="projecten"]:not(:has([data-project-admin])) .project-board-card--placeholder h3 {
  color: #ffffff;
}

body[data-page="projecten"]:not(:has([data-project-admin])) .project-board-card__cta {
  color: rgba(255, 255, 255, 0.84);
}

body[data-page="projecten"]:not(:has([data-project-admin])) .project-board-card:hover .project-board-card__cta,
body[data-page="projecten"]:not(:has([data-project-admin])) .project-board-card:focus-visible .project-board-card__cta {
  color: #ffffff;
}

/* Project overview titles follow the site's lightweight Poppins display style. */
body[data-page="projecten"]:not(:has([data-project-admin])) .project-board-row__label,
body[data-page="projecten"]:not(:has([data-project-admin])) .project-board-card h3 {
  font-family: var(--font-h1);
  font-weight: var(--font-h1-weight);
}

@media (min-width: 1081px) {
  :is(
    body[data-page="projecten"].has-project-static-detail,
    body[data-page="projecten"]:not(:has([data-project-admin])):has(.project-builder-page)
  ) .site-header:not(.is-condensed) .main-nav > a,
  :is(
    body[data-page="projecten"].has-project-static-detail,
    body[data-page="projecten"]:not(:has([data-project-admin])):has(.project-builder-page)
  ) .site-header:not(.is-condensed) .main-nav > .nav-dropdown > a,
  :is(
    body[data-page="projecten"].has-project-static-detail,
    body[data-page="projecten"]:not(:has([data-project-admin])):has(.project-builder-page)
  ) .site-header:not(.is-condensed) .language-toggle a {
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 1px 18px rgba(0, 0, 0, 0.38);
  }

  :is(
    body[data-page="projecten"].has-project-static-detail,
    body[data-page="projecten"]:not(:has([data-project-admin])):has(.project-builder-page)
  ) .site-header:not(.is-condensed) .main-nav > a:hover,
  :is(
    body[data-page="projecten"].has-project-static-detail,
    body[data-page="projecten"]:not(:has([data-project-admin])):has(.project-builder-page)
  ) .site-header:not(.is-condensed) .main-nav > a:focus-visible,
  :is(
    body[data-page="projecten"].has-project-static-detail,
    body[data-page="projecten"]:not(:has([data-project-admin])):has(.project-builder-page)
  ) .site-header:not(.is-condensed) .main-nav > a.is-current,
  :is(
    body[data-page="projecten"].has-project-static-detail,
    body[data-page="projecten"]:not(:has([data-project-admin])):has(.project-builder-page)
  ) .site-header:not(.is-condensed) .main-nav > .nav-dropdown > a:hover,
  :is(
    body[data-page="projecten"].has-project-static-detail,
    body[data-page="projecten"]:not(:has([data-project-admin])):has(.project-builder-page)
  ) .site-header:not(.is-condensed) .main-nav > .nav-dropdown > a:focus-visible,
  :is(
    body[data-page="projecten"].has-project-static-detail,
    body[data-page="projecten"]:not(:has([data-project-admin])):has(.project-builder-page)
  ) .site-header:not(.is-condensed) .main-nav > .nav-dropdown > a.is-current,
  :is(
    body[data-page="projecten"].has-project-static-detail,
    body[data-page="projecten"]:not(:has([data-project-admin])):has(.project-builder-page)
  ) .site-header:not(.is-condensed) .language-toggle a[aria-current="true"] {
    color: #ffffff;
  }

  :is(
    body[data-page="projecten"].has-project-static-detail,
    body[data-page="projecten"]:not(:has([data-project-admin])):has(.project-builder-page)
  ) .site-header:not(.is-condensed) .language-toggle::before {
    background: rgba(255, 255, 255, 0.26);
  }
}

/* Editorial problem story: alternating image-led rows replace the slide-like columns. */
body[data-page="home"] .home-problem-frame {
  overflow: visible;
}

body[data-page="home"] .home-problem-columns {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(72px, 8vw, 128px);
  width: min(1560px, 100%);
  margin: clamp(38px, 4vw, 62px) auto 0;
}

body[data-page="home"] .home-problem-panel {
  position: relative;
  display: block;
  min-height: 0;
}

body[data-page="home"] .home-problem-panel__stage {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 0;
  align-items: center;
  width: 100%;
}

body[data-page="home"] .home-problem-panel .home-problem-copy-image {
  grid-row: 1;
  grid-column: 1 / 9;
  width: 100%;
  height: clamp(360px, 28vw, 500px);
  aspect-ratio: auto;
  object-fit: cover;
  border: 0;
  border-radius: 18px;
  box-shadow: 0 24px 68px rgba(17, 25, 48, 0.12);
}

body[data-page="home"] .home-problem-panel__copy {
  position: relative;
  z-index: 1;
  grid-row: 1;
  grid-column: 8 / 13;
  display: grid;
  gap: clamp(16px, 1.8vw, 24px);
  padding: clamp(34px, 4vw, 58px);
  background: rgba(251, 250, 246, 0.96);
  border: 1px solid rgba(17, 25, 48, 0.1);
  border-radius: 16px;
  box-shadow: 0 24px 64px rgba(17, 25, 48, 0.1);
  backdrop-filter: blur(14px);
}

body[data-page="home"] .home-problem-panel:nth-of-type(even) .home-problem-copy-image {
  grid-column: 5 / 13;
}

body[data-page="home"] .home-problem-panel:nth-of-type(even) .home-problem-panel__copy {
  grid-column: 1 / 6;
}

body[data-page="home"] .home-problem-panel__copy::before {
  content: none;
}

body[data-page="home"] .home-problem-panel__copy h3 {
  margin: 0;
  color: #385193;
  font-size: clamp(0.78rem, 0.85vw, 0.9rem);
  font-weight: 850;
  letter-spacing: 0.13em;
  line-height: 1.2;
  text-transform: uppercase;
}

body[data-page="home"] .home-problem-panel__copy p {
  max-width: 44ch;
  margin: 0;
  color: rgba(17, 25, 48, 0.74);
  font-size: clamp(0.98rem, 1.05vw, 1.12rem);
  font-weight: 500;
  line-height: 1.68;
}

@media (max-width: 1000px) {
  body[data-page="home"] .home-problem-columns {
    gap: 64px;
  }

  body[data-page="home"] .home-problem-panel__stage {
    grid-template-columns: 1fr;
  }

  body[data-page="home"] .home-problem-panel .home-problem-copy-image,
  body[data-page="home"] .home-problem-panel:nth-of-type(even) .home-problem-copy-image {
    grid-row: 1;
    grid-column: 1;
    height: auto;
    aspect-ratio: 16 / 10;
  }

  body[data-page="home"] .home-problem-panel .home-problem-panel__copy,
  body[data-page="home"] .home-problem-panel:nth-of-type(even) .home-problem-panel__copy {
    grid-row: 2;
    grid-column: 1;
    width: calc(100% - clamp(24px, 8vw, 80px));
    margin-top: clamp(-64px, -6vw, -38px);
    justify-self: center;
  }
}

@media (max-width: 560px) {
  body[data-page="home"] .home-problem-columns {
    gap: 52px;
  }

  body[data-page="home"] .home-problem-panel .home-problem-copy-image,
  body[data-page="home"] .home-problem-panel:nth-of-type(even) .home-problem-copy-image {
    aspect-ratio: 4 / 3;
    border-radius: 14px;
  }

  body[data-page="home"] .home-problem-panel .home-problem-panel__copy,
  body[data-page="home"] .home-problem-panel:nth-of-type(even) .home-problem-panel__copy {
    width: calc(100% - 18px);
    padding: 28px 24px;
    margin-top: -32px;
    border-radius: 14px;
  }
}

/* The selected solution card morphs in place instead of opening a second container. */
body[data-page="home"] .home-approach-grid.has-expanded-card {
  grid-template-columns: 1fr;
  gap: 0;
}

body[data-page="home"] .home-approach-grid.has-expanded-card .home-approach-flow,
body[data-page="home"] .home-approach-grid.has-expanded-card .home-approach-card:not(.is-expanded) {
  display: none;
}

body[data-page="home"] .home-approach-card.is-expanded {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto auto auto;
  min-height: 0;
  padding: clamp(34px, 4.8vw, 72px);
  color: #ffffff;
  cursor: default;
  background:
    radial-gradient(circle at 88% 12%, rgba(201, 235, 255, 0.14), transparent 30%),
    #385193 !important;
  border-color: rgba(255, 255, 255, 0.18);
  border-radius: 20px;
  box-shadow: 0 30px 76px rgba(17, 25, 48, 0.2);
  transform: none;
}

body[data-page="home"] .home-approach-card.is-expanded:hover {
  transform: none;
}

body[data-page="home"] .home-approach-card.is-expanded .home-approach-card__top {
  top: clamp(24px, 3vw, 38px);
  left: clamp(24px, 3vw, 38px);
}

body[data-page="home"] .home-approach-card.is-expanded > h3 {
  grid-row: 1;
  order: 0;
  max-width: 18ch;
  padding: 0 clamp(62px, 7vw, 96px) 0 0;
  margin: clamp(56px, 5vw, 72px) 0 0;
  color: #ffffff;
  font-size: clamp(2rem, 3.5vw, 3.8rem);
  font-weight: 650;
  letter-spacing: -0.04em;
  line-height: 1;
  text-transform: none;
}

body[data-page="home"] .home-approach-card.is-expanded > p {
  grid-row: 2;
  order: 0;
  max-width: 56ch;
  padding: 0;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(0.98rem, 1.15vw, 1.16rem);
  font-weight: 500;
  line-height: 1.55;
}

body[data-page="home"] .home-approach-card.is-expanded > .home-approach-visual,
body[data-page="home"] .home-approach-card.is-expanded > .home-approach-open {
  display: none;
}

body[data-page="home"] .home-approach-card__close {
  position: absolute;
  top: clamp(22px, 2.6vw, 34px);
  right: clamp(22px, 2.6vw, 34px);
  z-index: 3;
  display: grid;
  width: 46px;
  height: 46px;
  padding: 0;
  color: #ffffff;
  cursor: pointer;
  background: rgba(7, 14, 36, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  place-items: center;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease;
}

body[data-page="home"] .home-approach-card__close:hover,
body[data-page="home"] .home-approach-card__close:focus-visible {
  color: #111930;
  background: #c9ebff;
  border-color: #c9ebff;
  outline: none;
}

body[data-page="home"] .home-approach-card__close svg {
  width: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
}

body[data-page="home"] .home-approach-card__detail:not([hidden]) {
  grid-row: 3;
  order: 0;
  display: block;
  padding-top: clamp(32px, 4.5vw, 62px);
  margin-top: clamp(28px, 4vw, 52px);
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

body[data-page="home"] .home-approach-card.is-expanded .home-solution-detail h3 {
  max-width: none;
  padding: 0;
  margin: 0 0 12px;
  color: #ffffff;
  font-size: clamp(1.12rem, 1.35vw, 1.4rem);
  font-style: italic;
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.2;
  text-transform: none;
}

body[data-page="home"] .home-approach-card.is-expanded .home-solution-detail p {
  max-width: none;
  padding: 0;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(0.96rem, 1vw, 1.08rem);
  font-weight: 500;
  line-height: 1.62;
}

@media (max-width: 760px) {
  body[data-page="home"] .home-approach-card.is-expanded {
    padding: 26px 22px 34px;
    border-radius: 16px;
  }

  body[data-page="home"] .home-approach-card.is-expanded > h3 {
    padding-right: 54px;
    margin-top: 54px;
    font-size: clamp(2rem, 10vw, 3rem);
  }

  body[data-page="home"] .home-approach-card__close {
    top: 20px;
    right: 20px;
    width: 42px;
    height: 42px;
  }

  body[data-page="home"] .home-approach-card__detail:not([hidden]) {
    padding-top: 30px;
    margin-top: 30px;
  }
}

/* Closed cards never show controls that only apply to the expanded state. */
body[data-page="home"] .home-approach-card__close[hidden],
body[data-page="home"] .home-approach-card__detail[hidden],
body[data-page="home"] .home-approach-card__top {
  display: none !important;
}

/* The expanded analysis card follows the supplied data-report composition. */
body[data-page="home"] .home-approach-card--analysis.is-expanded {
  padding: clamp(42px, 5.5vw, 78px);
  color: #111930;
  background: #fbfaf6 !important;
  border-color: rgba(17, 25, 48, 0.1);
  box-shadow: 0 30px 76px rgba(17, 25, 48, 0.12);
}

body[data-page="home"] .home-approach-card--analysis.is-expanded > h3 {
  max-width: none;
  padding: 0 58px;
  margin: 0;
  color: #111930;
  font-family: var(--font-sans);
  font-size: clamp(1.85rem, 2.5vw, 2.55rem);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.15;
  text-align: center;
}

body[data-page="home"] .home-approach-card--analysis.is-expanded > p {
  max-width: 62ch;
  margin: 12px auto 0;
  color: rgba(17, 25, 48, 0.72);
  font-size: clamp(1rem, 1.25vw, 1.24rem);
  font-weight: 400;
  line-height: 1.5;
  text-align: center;
}

body[data-page="home"] .home-approach-card--analysis .home-approach-card__close {
  color: #385193;
  background: rgba(56, 81, 147, 0.07);
  border-color: rgba(56, 81, 147, 0.16);
}

body[data-page="home"] .home-approach-card--analysis .home-approach-card__close:hover,
body[data-page="home"] .home-approach-card--analysis .home-approach-card__close:focus-visible {
  color: #ffffff;
  background: #385193;
  border-color: #385193;
}

body[data-page="home"] .home-approach-card--analysis .home-approach-card__detail:not([hidden]) {
  padding-top: 0;
  margin-top: clamp(34px, 4.5vw, 58px);
  border-top: 0;
}

body[data-page="home"] .home-approach-card--analysis .home-solution-detail--analysis {
  grid-template-areas:
    "chart lead"
    "how how";
  grid-template-columns: minmax(240px, 0.58fr) minmax(0, 1.42fr);
  gap: clamp(42px, 6vw, 88px) clamp(46px, 7vw, 104px);
  align-items: center;
  color: rgba(17, 25, 48, 0.76);
}

body[data-page="home"] .home-solution-detail__analysis-chart {
  grid-area: chart;
  width: 100%;
  max-width: 340px;
  margin-inline: auto;
}

body[data-page="home"] .home-solution-detail__analysis-chart svg {
  display: block;
  width: 100%;
  height: auto;
  overflow: visible;
}

body[data-page="home"] .analysis-chart__axis,
body[data-page="home"] .analysis-chart__ticks,
body[data-page="home"] .analysis-chart__bars {
  stroke: rgba(17, 25, 48, 0.58);
  stroke-width: 1.1;
  stroke-linecap: round;
  stroke-linejoin: round;
}

body[data-page="home"] .analysis-chart__bars {
  stroke: rgba(17, 25, 48, 0.78);
}

body[data-page="home"] .analysis-chart__line {
  fill: none;
  stroke-width: 1.45;
  stroke-linecap: round;
  stroke-linejoin: round;
}

body[data-page="home"] .analysis-chart__line--blue {
  stroke: #385193;
}

body[data-page="home"] .analysis-chart__line--green {
  stroke: #579b78;
  stroke-dasharray: 4 4;
}

body[data-page="home"] .analysis-chart__line--sand {
  stroke: #b8873d;
  stroke-dasharray: 3 3;
}

body[data-page="home"] .home-approach-card--analysis .home-solution-detail__lead {
  grid-area: lead;
  gap: 24px;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
}

body[data-page="home"] .home-approach-card--analysis .home-solution-detail__how {
  grid-area: how;
}

body[data-page="home"] .home-approach-card--analysis.is-expanded .home-solution-detail h3 {
  margin-bottom: 12px;
  color: #111930;
  font-size: clamp(1.08rem, 1.2vw, 1.28rem);
  font-weight: 400;
}

body[data-page="home"] .home-approach-card--analysis.is-expanded .home-solution-detail p,
body[data-page="home"] .home-approach-card--analysis.is-expanded .home-solution-detail li {
  color: rgba(17, 25, 48, 0.76);
  font-size: clamp(0.98rem, 1.08vw, 1.12rem);
  font-weight: 400;
  line-height: 1.58;
}

body[data-page="home"] .home-approach-card--analysis .home-solution-detail__how li::before {
  width: 6px;
  height: 6px;
  background: #111930;
  box-shadow: none;
}

@media (max-width: 820px) {
  body[data-page="home"] .home-approach-card--analysis.is-expanded {
    padding: 34px 24px 40px;
  }

  body[data-page="home"] .home-approach-card--analysis.is-expanded > h3 {
    padding-inline: 44px;
    font-size: clamp(1.75rem, 7vw, 2.3rem);
  }

  body[data-page="home"] .home-approach-card--analysis .home-solution-detail--analysis {
    grid-template-areas:
      "chart"
      "lead"
      "how";
    grid-template-columns: 1fr;
    gap: 36px;
  }

  body[data-page="home"] .home-solution-detail__analysis-chart {
    max-width: 320px;
  }
}

/* Keep the pre-footer CTA free of decorative line art. */
body[data-page="home"] .home-prefooter-cta::before {
  display: none;
  content: none;
}

/* All expanded solution cards use the same centred editorial header. */
body[data-page="home"] .home-approach-card.is-expanded {
  position: relative;
  display: block;
  padding: clamp(38px, 4.4vw, 68px);
  overflow: hidden;
}

body[data-page="home"] .home-approach-card.is-expanded > h3 {
  display: block;
  width: 100%;
  max-width: none;
  padding: 0 clamp(54px, 6vw, 88px);
  margin: 0 auto;
  color: #ffffff;
  font-size: clamp(2rem, 3vw, 3.15rem);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.08;
  text-align: center;
}

body[data-page="home"] .home-approach-card.is-expanded > p {
  display: block;
  max-width: 62ch;
  padding: 0;
  margin: 16px auto 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: clamp(1rem, 1.22vw, 1.22rem);
  line-height: 1.55;
  text-align: center;
}

body[data-page="home"] .home-approach-card.is-expanded .home-approach-card__close,
body[data-page="home"] .home-approach-card.is-expanded .home-approach-card__close[hidden] {
  position: absolute;
  top: clamp(24px, 3vw, 38px);
  right: clamp(24px, 3vw, 38px);
  width: 44px;
  height: 44px;
  margin: 0;
}

body[data-page="home"] .home-approach-card.is-expanded .home-approach-card__detail:not([hidden]) {
  display: block;
  width: 100%;
  padding-top: clamp(34px, 3.8vw, 54px);
  margin-top: clamp(34px, 4vw, 56px);
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

body[data-page="home"] .home-approach-card.is-expanded .home-solution-detail--processing,
body[data-page="home"] .home-approach-card.is-expanded .home-solution-detail--reuse {
  width: min(100%, 1360px);
  margin-inline: auto;
}

body[data-page="home"] .home-approach-card.is-expanded .home-solution-detail__columns {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2.2vw, 30px);
  width: 100%;
}

body[data-page="home"] .home-approach-card.is-expanded .home-solution-detail__column {
  min-height: 0;
  padding: clamp(26px, 3vw, 42px);
  background: rgba(7, 14, 36, 0.1);
}

body[data-page="home"] .home-approach-card.is-expanded .home-solution-detail__column > h3 {
  order: 1;
}

body[data-page="home"] .home-approach-card.is-expanded .home-solution-detail__column > p {
  order: 2;
}

body[data-page="home"] .home-approach-card.is-expanded .home-solution-detail__column > .home-solution-detail__icon {
  order: 3;
  justify-self: center;
}

body[data-page="home"] .home-approach-card.is-expanded .home-solution-detail--reuse {
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: clamp(42px, 6vw, 88px);
}

body[data-page="home"] .home-approach-card.is-expanded .home-solution-detail__reuse-copy section {
  padding: clamp(26px, 3vw, 40px);
  background: rgba(7, 14, 36, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 16px;
}

@media (max-width: 900px) {
  body[data-page="home"] .home-approach-card.is-expanded .home-solution-detail__columns {
    grid-template-columns: 1fr;
  }

  body[data-page="home"] .home-approach-card.is-expanded .home-solution-detail__column {
    min-height: 0;
  }

  body[data-page="home"] .home-approach-card.is-expanded .home-solution-detail--reuse {
    grid-template-columns: 1fr;
  }

  body[data-page="home"] .home-approach-card.is-expanded .home-solution-detail__reuse-art {
    width: min(320px, 76%);
  }
}

@media (max-width: 820px) {
  body[data-page="home"] .home-approach-card.is-expanded {
    padding: 30px 22px 38px;
  }

  body[data-page="home"] .home-approach-card.is-expanded > h3 {
    padding-inline: 48px;
    font-size: clamp(1.8rem, 8vw, 2.5rem);
  }

  body[data-page="home"] .home-approach-card.is-expanded > p {
    padding-inline: 8px;
    margin-top: 12px;
  }

  body[data-page="home"] .home-approach-card.is-expanded .home-approach-card__close,
  body[data-page="home"] .home-approach-card.is-expanded .home-approach-card__close[hidden] {
    top: 18px;
    right: 18px;
    width: 40px;
    height: 40px;
  }
}

/* Anchor the problem label to the editorial story instead of leaving it detached. */
body[data-page="home"] .home-problem-columns {
  position: relative;
}

body[data-page="home"] .home-problem-columns > .home-problem-heading {
  position: absolute;
  top: 0;
  left: clamp(18px, 2.2vw, 34px);
  z-index: 4;
  display: inline-flex;
  width: auto;
  margin: 0;
  padding: 11px 16px;
  color: #ffffff;
  background: #385193;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(17, 25, 48, 0.14);
  transform: translateY(-50%);
  font-size: clamp(0.66rem, 0.72vw, 0.76rem);
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1;
  text-align: left;
  text-transform: uppercase;
}

body[data-page="home"] .home-problem-columns > .home-problem-heading::after {
  display: none;
}

@media (max-width: 560px) {
  body[data-page="home"] .home-problem-columns > .home-problem-heading {
    left: 14px;
    padding: 10px 13px;
  }
}

/* Pinned editorial scrollytelling: the viewport releases only after both scenes complete. */
@media (min-width: 1001px) and (prefers-reduced-motion: no-preference) {
  body[data-page="home"] .home-problem-story {
    min-height: 300vh;
    min-height: 300svh;
    padding: 0 !important;
    overflow: visible;
  }

  body[data-page="home"] .home-problem-story .home-problem-frame {
    position: sticky;
    top: 0;
    z-index: 1;
    display: flex;
    align-items: center;
    width: 100%;
    max-width: none;
    height: 100vh;
    height: 100svh;
    padding: clamp(74px, 10vh, 110px) 0 clamp(34px, 5vh, 56px) !important;
    overflow: hidden;
  }

  body[data-page="home"] .home-problem-story .home-problem-columns {
    position: relative;
    display: block;
    width: min(1560px, calc(100% - clamp(72px, 9vw, 176px)));
    height: min(76vh, 680px);
    height: min(76svh, 680px);
    margin: 0 auto;
  }

  body[data-page="home"] .home-problem-story .home-problem-columns > .home-problem-heading {
    top: 0;
    left: 0;
    min-height: 22px;
    padding: 0 0 0 14px;
    color: #385193;
    background: transparent;
    border: 0;
    border-left: 2px solid #385193;
    border-radius: 0;
    box-shadow: none;
    transform: none;
    letter-spacing: 0.16em;
  }

  body[data-page="home"] .home-problem-story .home-problem-panel {
    position: absolute;
    inset: clamp(52px, 6.5vh, 68px) 0 0;
    z-index: 1;
    min-height: 0;
    opacity: var(--problem-scene-opacity, 0);
    transform: translate3d(0, var(--problem-scene-y, 0), 0) scale(var(--problem-scene-scale, 1));
    transform-origin: center;
    pointer-events: none;
    will-change: transform, opacity;
  }

  body[data-page="home"] .home-problem-story .home-problem-panel:nth-of-type(even) {
    z-index: 2;
  }

  body[data-page="home"] .home-problem-story .home-problem-panel__stage {
    position: relative;
    top: auto;
    height: 100%;
    overflow: visible;
  }

  body[data-page="home"] .home-problem-story .home-problem-copy-image {
    height: 100%;
    transform: translate3d(var(--problem-image-x, 0), 0, 0) scale(var(--problem-image-scale, 1));
    transform-origin: center;
    filter: saturate(var(--problem-image-saturation, 1));
    will-change: transform, filter;
  }

  body[data-page="home"] .home-problem-story .home-problem-panel__copy {
    opacity: var(--problem-copy-opacity, 0);
    transform: translate3d(var(--problem-copy-x, 0), var(--problem-copy-y, 0), 0)
      scale(var(--problem-copy-scale, 1));
    transform-origin: center;
    clip-path: none;
    will-change: transform, opacity;
  }
}

/* Expanded solution cards share one blue, high-contrast detail state. */
body[data-page="home"] .home-approach-card.is-expanded,
body[data-page="home"] .home-approach-card--analysis.is-expanded {
  color: #ffffff;
  background:
    radial-gradient(circle at 88% 12%, rgba(201, 235, 255, 0.14), transparent 30%),
    #385193 !important;
  border-color: rgba(255, 255, 255, 0.18);
  overflow: visible;
}

body[data-page="home"] .home-approach-card--analysis.is-expanded > h3 {
  color: #ffffff;
}

body[data-page="home"] .home-approach-card--analysis.is-expanded > p,
body[data-page="home"] .home-approach-card--analysis .home-solution-detail--analysis,
body[data-page="home"] .home-approach-card--analysis.is-expanded .home-solution-detail p,
body[data-page="home"] .home-approach-card--analysis.is-expanded .home-solution-detail li {
  color: rgba(255, 255, 255, 0.84);
}

body[data-page="home"] .home-approach-card--analysis.is-expanded .home-solution-detail h3 {
  color: #ffffff;
}

body[data-page="home"] .home-approach-card--analysis .analysis-chart__axis,
body[data-page="home"] .home-approach-card--analysis .analysis-chart__ticks {
  stroke: rgba(255, 255, 255, 0.5);
}

body[data-page="home"] .home-approach-card--analysis .analysis-chart__bars {
  stroke: rgba(255, 255, 255, 0.78);
}

body[data-page="home"] .home-approach-card--analysis .analysis-chart__line--blue {
  stroke: #ffffff;
}

body[data-page="home"] .home-approach-card--analysis .analysis-chart__line--green {
  stroke: rgba(201, 235, 255, 0.9);
}

body[data-page="home"] .home-approach-card--analysis .analysis-chart__line--sand {
  stroke: rgba(255, 255, 255, 0.68);
}

body[data-page="home"] .home-approach-card--analysis .home-solution-detail__how li::before {
  background: #c9ebff;
}

body[data-page="home"] .home-approach-card:not(.is-expanded) .home-approach-card__close {
  display: none !important;
}

body[data-page="home"] .home-approach-card.is-expanded .home-approach-card__close,
body[data-page="home"] .home-approach-card.is-expanded .home-approach-card__close[hidden] {
  position: sticky;
  top: 18px;
  z-index: 50;
  grid-row: 1;
  grid-column: 1;
  align-self: start;
  justify-self: end;
  display: grid !important;
  margin: 0;
  color: #ffffff;
  background: rgba(7, 14, 36, 0.22);
  border-color: rgba(255, 255, 255, 0.28);
}

body[data-page="home"] .home-approach-card.is-expanded .home-approach-card__close:hover,
body[data-page="home"] .home-approach-card.is-expanded .home-approach-card__close:focus-visible {
  color: #111930;
  background: #c9ebff;
  border-color: #c9ebff;
}

/* Keep the full closed solution composition clear of the floating desktop navigation. */
@media (min-width: 1001px) {
  body[data-page="home"] .home-approach-frame {
    padding-top: clamp(122px, 9vw, 148px);
    padding-bottom: clamp(58px, 6vw, 82px);
  }

  body[data-page="home"] .home-approach-grid:not(.has-expanded-card) {
    margin-top: clamp(32px, 3.6vw, 48px);
  }

  body[data-page="home"] .home-approach-grid:not(.has-expanded-card) .home-approach-card {
    min-height: clamp(390px, 31vw, 460px);
    padding-bottom: clamp(22px, 2vw, 30px);
  }

  body[data-page="home"] .home-approach-grid:not(.has-expanded-card) .home-approach-visual,
  body[data-page="home"] .home-approach-grid:not(.has-expanded-card) .home-approach-visual--bluebox {
    flex: 0 0 clamp(200px, 17vw, 250px);
    height: clamp(200px, 17vw, 250px);
    min-height: clamp(200px, 17vw, 250px);
    padding: clamp(24px, 2.5vw, 36px);
    overflow: hidden;
  }

  body[data-page="home"] .home-approach-grid:not(.has-expanded-card) .home-approach-line-art {
    width: min(250px, 76%);
  }

  body[data-page="home"] .home-approach-grid:not(.has-expanded-card) .home-approach-card h3 {
    margin-top: clamp(18px, 1.8vw, 24px);
    font-size: clamp(1.2rem, 1.4vw, 1.48rem);
  }

  body[data-page="home"] .home-approach-grid:not(.has-expanded-card) .home-approach-card p {
    margin-top: 10px;
    line-height: 1.48;
  }
}

/* Expanded solution detail views use the body typeface consistently. */
body[data-page="home"] .home-approach-card.is-expanded,
body[data-page="home"] .home-approach-card.is-expanded h2,
body[data-page="home"] .home-approach-card.is-expanded h3,
body[data-page="home"] .home-approach-card.is-expanded p,
body[data-page="home"] .home-approach-card.is-expanded li,
body[data-page="home"] .home-approach-card.is-expanded button {
  font-family: var(--font-body) !important;
}

/* Both editorial problem images keep exactly the same dimensions and crop. */
body[data-page="home"] .home-problem-panel .home-problem-copy-image,
body[data-page="home"] .home-problem-story .home-problem-panel .home-problem-copy-image {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  align-self: center;
  object-fit: cover;
  object-position: center;
}

/* Give the expanded analysis view one clear, balanced composition. */
body[data-page="home"] .home-approach-card--analysis.is-expanded {
  position: relative;
  display: block;
  padding: clamp(38px, 4.4vw, 68px);
  overflow: hidden;
}

body[data-page="home"] .home-approach-card--analysis.is-expanded > h3 {
  display: block;
  width: 100%;
  max-width: none;
  padding: 0 clamp(54px, 6vw, 88px);
  margin: 0 auto;
  font-size: clamp(2rem, 3vw, 3.15rem);
  font-weight: 500;
  line-height: 1.08;
  text-align: center;
}

body[data-page="home"] .home-approach-card--analysis.is-expanded > p {
  display: block;
  max-width: 62ch;
  margin: 16px auto 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: clamp(1rem, 1.22vw, 1.22rem);
  line-height: 1.55;
  text-align: center;
}

body[data-page="home"] .home-approach-card--analysis.is-expanded .home-approach-card__close,
body[data-page="home"] .home-approach-card--analysis.is-expanded .home-approach-card__close[hidden] {
  position: absolute;
  top: clamp(24px, 3vw, 38px);
  right: clamp(24px, 3vw, 38px);
  width: 44px;
  height: 44px;
  margin: 0;
}

body[data-page="home"] .home-approach-card--analysis .home-approach-card__detail:not([hidden]) {
  padding-top: clamp(34px, 3.8vw, 54px);
  margin-top: clamp(34px, 4vw, 56px);
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

body[data-page="home"] .home-approach-card--analysis .home-solution-detail--analysis {
  grid-template-areas:
    "chart lead"
    "how how";
  grid-template-columns: minmax(260px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(30px, 4vw, 58px) clamp(30px, 4.5vw, 68px);
  width: min(100%, 1360px);
  margin-inline: auto;
  align-items: stretch;
}

body[data-page="home"] .home-approach-card--analysis .home-solution-detail__analysis-chart,
body[data-page="home"] .home-approach-card--analysis .home-solution-detail__lead {
  min-height: clamp(250px, 25vw, 350px);
  background: rgba(7, 14, 36, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 16px;
}

body[data-page="home"] .home-approach-card--analysis .home-solution-detail__analysis-chart {
  display: grid;
  width: 100%;
  max-width: none;
  padding: clamp(26px, 3vw, 44px);
  place-items: center;
}

body[data-page="home"] .home-approach-card--analysis .home-solution-detail__analysis-chart svg {
  width: min(100%, 390px);
}

body[data-page="home"] .home-approach-card--analysis .home-solution-detail__lead {
  align-content: center;
  gap: clamp(20px, 2vw, 28px);
  padding: clamp(28px, 3.4vw, 52px);
}

body[data-page="home"] .home-approach-card--analysis .home-solution-detail__how {
  padding-top: clamp(8px, 1vw, 16px);
}

@media (max-width: 820px) {
  body[data-page="home"] .home-approach-card--analysis.is-expanded {
    padding: 30px 22px 38px;
    overflow: hidden;
  }

  body[data-page="home"] .home-approach-card--analysis.is-expanded > h3 {
    padding-inline: 48px;
    font-size: clamp(1.8rem, 8vw, 2.5rem);
  }

  body[data-page="home"] .home-approach-card--analysis.is-expanded > p {
    padding-inline: 8px;
    margin-top: 12px;
  }

  body[data-page="home"] .home-approach-card--analysis.is-expanded .home-approach-card__close,
  body[data-page="home"] .home-approach-card--analysis.is-expanded .home-approach-card__close[hidden] {
    top: 18px;
    right: 18px;
    width: 40px;
    height: 40px;
  }

  body[data-page="home"] .home-approach-card--analysis .home-solution-detail--analysis {
    grid-template-areas:
      "chart"
      "lead"
      "how";
    grid-template-columns: 1fr;
    gap: 24px;
  }

  body[data-page="home"] .home-approach-card--analysis .home-solution-detail__analysis-chart,
  body[data-page="home"] .home-approach-card--analysis .home-solution-detail__lead {
    min-height: 0;
  }
}

/* Final cascade guard: expanded-card controls must not participate in the content flow. */
body[data-page="home"] .home-approach-card.is-expanded {
  position: relative;
  display: block;
}

body[data-page="home"] .home-approach-card.is-expanded > h3 {
  display: block;
  width: 100%;
  max-width: none;
  padding: 0 clamp(54px, 6vw, 88px);
  margin: 0 auto;
  font-size: clamp(2rem, 3vw, 3.15rem);
  font-weight: 500;
  line-height: 1.08;
  text-align: center;
}

body[data-page="home"] .home-approach-card.is-expanded > p {
  display: block;
  max-width: 62ch;
  padding: 0;
  margin: 16px auto 0;
  text-align: center;
}

body[data-page="home"] .home-approach-card.is-expanded .home-approach-card__close,
body[data-page="home"] .home-approach-card.is-expanded .home-approach-card__close[hidden] {
  position: absolute;
  top: clamp(24px, 3vw, 38px);
  right: clamp(24px, 3vw, 38px);
  display: grid !important;
  width: 44px;
  height: 44px;
  margin: 0;
}

body[data-page="home"] .home-approach-card.is-expanded .home-approach-card__detail:not([hidden]) {
  display: block;
  width: 100%;
  padding-top: clamp(34px, 3.8vw, 54px);
  margin-top: clamp(34px, 4vw, 56px);
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

@media (max-width: 820px) {
  body[data-page="home"] .home-approach-card.is-expanded > h3 {
    padding-inline: 48px;
    font-size: clamp(1.8rem, 8vw, 2.5rem);
  }

  body[data-page="home"] .home-approach-card.is-expanded .home-approach-card__close,
  body[data-page="home"] .home-approach-card.is-expanded .home-approach-card__close[hidden] {
    top: 18px;
    right: 18px;
    width: 40px;
    height: 40px;
  }
}

/* Keep expanded solution details inside the current viewport. */
body.has-solution-dialog {
  overflow: hidden;
}

body.has-solution-dialog .home-section--approach {
  overflow: visible;
}

body[data-page="home"] .home-approach-card.is-expanded {
  --solution-dialog-inset: clamp(12px, 2vw, 24px);
  position: fixed;
  top: var(--solution-dialog-inset);
  right: max(var(--solution-dialog-inset), calc((100vw - 1360px) / 2));
  bottom: auto;
  left: max(var(--solution-dialog-inset), calc((100vw - 1360px) / 2));
  z-index: 100;
  width: auto;
  max-height: calc(100vh - clamp(24px, 4vw, 48px));
  max-height: calc(100svh - clamp(24px, 4vw, 48px));
  overflow: auto;
  overscroll-behavior: contain;
  border-radius: 18px;
  box-shadow:
    0 0 0 100vmax var(--home-cohesive-warm),
    0 28px 76px rgba(6, 12, 28, 0.28) !important;
  scrollbar-color: rgba(201, 235, 255, 0.48) transparent;
  scrollbar-width: thin;
}

body[data-page="home"] .home-approach-card.is-expanded .home-approach-card__close,
body[data-page="home"] .home-approach-card.is-expanded .home-approach-card__close[hidden] {
  position: absolute;
  top: clamp(16px, 2vw, 24px);
  right: clamp(16px, 2vw, 24px);
}

@media (min-width: 901px) {
  body[data-page="home"] .home-approach-card.is-expanded,
  body[data-page="home"] .home-approach-card.home-approach-card--analysis.is-expanded {
    padding: clamp(20px, 3vh, 30px) clamp(28px, 3.2vw, 46px);
  }

  body[data-page="home"] .home-approach-card.is-expanded > h3,
  body[data-page="home"] .home-approach-card.home-approach-card--analysis.is-expanded > h3 {
    padding-inline: 54px;
    margin: 0 auto;
    font-size: clamp(1.6rem, 4vh, 2.15rem);
    line-height: 1.05;
  }

  body[data-page="home"] .home-approach-card.is-expanded > p,
  body[data-page="home"] .home-approach-card.home-approach-card--analysis.is-expanded > p {
    margin-top: 8px;
    font-size: clamp(0.84rem, 0.9vw, 0.98rem);
    line-height: 1.35;
  }

  body[data-page="home"] .home-approach-card.is-expanded .home-approach-card__detail:not([hidden]),
  body[data-page="home"] .home-approach-card--analysis .home-approach-card__detail:not([hidden]) {
    padding-top: clamp(12px, 2vh, 18px);
    margin-top: clamp(12px, 2vh, 18px);
  }

  body[data-page="home"] .home-approach-card.is-expanded .home-solution-detail,
  body[data-page="home"] .home-approach-card.is-expanded .home-solution-detail p,
  body[data-page="home"] .home-approach-card.is-expanded .home-solution-detail li {
    font-size: clamp(0.74rem, 0.76vw, 0.86rem);
    line-height: 1.38;
  }

  body[data-page="home"] .home-approach-card.is-expanded .home-solution-detail h3 {
    margin-bottom: 7px;
    font-size: clamp(0.9rem, 0.95vw, 1rem);
    line-height: 1.15;
  }

  body[data-page="home"] .home-approach-card.is-expanded .home-solution-detail__columns {
    gap: clamp(12px, 1.5vw, 20px);
  }

  body[data-page="home"] .home-approach-card.is-expanded .home-solution-detail__column {
    min-height: 0;
    padding: clamp(16px, 2.3vh, 24px);
  }

  body[data-page="home"] .home-approach-card.is-expanded .home-solution-detail__icon {
    width: 44px;
    height: 44px;
    margin-top: clamp(10px, 2vh, 16px);
  }

  body[data-page="home"] .home-approach-card--analysis .home-solution-detail--analysis {
    gap: clamp(12px, 2vh, 18px) clamp(18px, 2.5vw, 34px);
  }

  body[data-page="home"] .home-approach-card--analysis .home-solution-detail__analysis-chart,
  body[data-page="home"] .home-approach-card--analysis .home-solution-detail__lead {
    height: min(26vh, 205px);
    min-height: 0;
  }

  body[data-page="home"] .home-approach-card--analysis .home-solution-detail__analysis-chart {
    padding: clamp(12px, 2vh, 18px);
  }

  body[data-page="home"] .home-approach-card--analysis .home-solution-detail__analysis-chart svg {
    width: min(100%, 300px);
    max-height: min(22vh, 168px);
  }

  body[data-page="home"] .home-approach-card--analysis .home-solution-detail__lead {
    gap: clamp(8px, 1.4vh, 12px);
    padding: clamp(14px, 2.2vh, 20px);
  }

  body[data-page="home"] .home-approach-card--analysis .home-solution-detail__how {
    padding-top: 0;
  }

  body[data-page="home"] .home-approach-card--analysis .home-solution-detail__how ul {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px clamp(16px, 2.2vw, 30px);
    margin: 0 0 8px;
  }

  body[data-page="home"] .home-approach-card--analysis .home-solution-detail__how li {
    padding-left: 16px;
  }

  body[data-page="home"] .home-approach-card.is-expanded .home-solution-detail--reuse {
    gap: clamp(22px, 3vw, 42px);
  }

  body[data-page="home"] .home-approach-card.is-expanded .home-solution-detail__reuse-copy {
    gap: clamp(10px, 1.8vh, 16px);
  }

  body[data-page="home"] .home-approach-card.is-expanded .home-solution-detail__reuse-copy section {
    gap: 8px;
    padding: clamp(14px, 2.2vh, 20px);
  }

  body[data-page="home"] .home-approach-card.is-expanded .home-solution-detail__reuse-art {
    width: min(300px, 82%);
    max-height: 42vh;
  }
}

@media (max-width: 900px) {
  body[data-page="home"] .home-approach-card.is-expanded {
    right: 12px;
    left: 12px;
    max-height: calc(100svh - 24px);
    padding: 26px 20px 32px;
  }

  body[data-page="home"] .home-approach-card.is-expanded .home-approach-card__detail:not([hidden]) {
    padding-top: 22px;
    margin-top: 22px;
  }
}

/* Het Plan uses the same warm editorial surface as the redesigned homepage. */
body[data-page="het-plan"],
body[data-page="het-plan"] main,
body[data-page="het-plan"] .plan-intro-section {
  background: #f3f0e7;
}

body[data-page="het-plan"] .plan-timeline-section {
  background: #ffffff;
}

body[data-page="het-plan"] .plan-intro-section {
  display: grid;
  min-height: 100svh;
  padding: clamp(152px, 17vh, 190px) 0 clamp(76px, 9vh, 110px) !important;
  align-items: center;
}

body[data-page="het-plan"] .plan-intro-section::before {
  display: none;
  content: none;
}

body[data-page="het-plan"] .plan-intro-frame {
  width: min(1420px, calc(100% - clamp(40px, 8vw, 144px)));
}

body[data-page="het-plan"] .plan-intro-layout {
  position: relative;
  isolation: isolate;
}

body[data-page="het-plan"] .plan-intro-schematic {
  position: absolute;
  top: clamp(-50px, -4vw, -20px);
  right: clamp(-80px, -5vw, -24px);
  z-index: -1;
  width: min(48vw, 720px);
  color: #385193;
  opacity: 0.12;
  pointer-events: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
}

body[data-page="het-plan"] .plan-intro-copy {
  max-width: none;
}

body[data-page="het-plan"] .plan-intro-head h1 {
  display: flex;
  gap: 0.18em;
  align-items: baseline;
  font-size: clamp(4rem, 7vw, 7.4rem);
  font-weight: 700;
  letter-spacing: -0.065em;
  line-height: 0.86;
}

body[data-page="het-plan"] .plan-intro-head h1 .plan-intro-title-prefix {
  color: #111930;
  font-size: 0.46em;
  font-style: normal;
  font-weight: var(--font-h1-weight);
  letter-spacing: -0.035em;
}

body[data-page="het-plan"] .plan-intro-head h1 .plan-intro-title-mark {
  color: #385193;
  font-style: italic;
  font-weight: 720;
}

body[data-page="het-plan"] .plan-intro-copy p,
body[data-page="het-plan"] .plan-intro-copy .plan-intro-lead {
  color: rgba(17, 25, 48, 0.78);
  font-family: var(--font-body);
  font-weight: 500;
}

body[data-page="het-plan"] .plan-intro-copy .plan-intro-lead {
  max-width: 50ch;
  color: #111930;
  font-size: clamp(1.15rem, 1.48vw, 1.48rem);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.55;
}

body[data-page="het-plan"] .plan-intro-body,
body[data-page="het-plan"] .plan-intro-support {
  max-width: 58ch;
  padding-top: clamp(24px, 3vw, 38px);
  border-top: 1px solid rgba(56, 81, 147, 0.2);
  font-size: clamp(1rem, 1.08vw, 1.12rem) !important;
  line-height: 1.62 !important;
}

body[data-page="het-plan"] .plan-timeline-section {
  color: #111930;
}

body[data-page="het-plan"] .plan-timeline-frame {
  width: min(1420px, calc(100% - clamp(40px, 8vw, 144px)));
  gap: clamp(24px, 3vw, 42px);
}

body[data-page="het-plan"] .plan-timeline-title {
  display: flex;
  gap: 0.24em;
  align-items: baseline;
  justify-self: center;
  font-size: clamp(1.8rem, 2.45vw, 2.75rem);
  font-weight: 650;
  letter-spacing: -0.045em;
  line-height: 1.05;
  text-align: center;
}

body[data-page="het-plan"] .plan-timeline-title em {
  font-weight: 700;
}

body[data-page="het-plan"] .plan-timeline-map {
  gap: clamp(14px, 2vw, 24px);
}

body[data-page="het-plan"] .plan-timeline-axis {
  min-height: clamp(190px, 18vw, 230px);
}

body[data-page="het-plan"] .plan-timeline-point,
body[data-page="het-plan"] .plan-timeline-period-label {
  font-size: clamp(0.76rem, 0.9vw, 0.96rem);
  font-weight: 650;
  line-height: 1.2;
}

body[data-page="het-plan"] .plan-timeline-point span,
body[data-page="het-plan"] .plan-timeline-period-label span {
  max-width: 172px;
}

body[data-page="het-plan"] .plan-timeline-point::after,
body[data-page="het-plan"] .plan-timeline-period-label::before {
  height: clamp(24px, 2.8vw, 34px);
}

body[data-page="het-plan"] .plan-timeline-point--top span {
  bottom: calc(100% + clamp(36px, 3.8vw, 46px));
}

body[data-page="het-plan"] .plan-timeline-point--bottom span,
body[data-page="het-plan"] .plan-timeline-period-label--bottom span {
  top: calc(100% + clamp(36px, 3.8vw, 46px));
}

body[data-page="het-plan"] .plan-timeline-line {
  height: 1px;
  background: rgba(56, 81, 147, 0.2);
}

body[data-page="het-plan"] .plan-timeline-line::after {
  border-left-color: rgba(56, 81, 147, 0.3);
}

body[data-page="het-plan"] .plan-timeline-travel {
  position: absolute;
  top: 50%;
  left: var(--timeline-start, 7%);
  z-index: 1;
  width: max(0px, calc(var(--timeline-scroll-position, 7%) - var(--timeline-start, 7%)));
  height: 3px;
  background: #385193;
  border-radius: 999px;
  pointer-events: none;
  transform: translateY(-50%);
  transition: width 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

body[data-page="het-plan"] .plan-timeline-point::before {
  background: #f3f0e7;
}

body[data-page="het-plan"] .plan-timeline-point--active::before {
  width: 14px;
  height: 14px;
  background: #f3f0e7;
  border: 3px solid #385193;
  box-shadow: 0 0 0 3px rgba(56, 81, 147, 0.1);
}

body[data-page="het-plan"] .plan-timeline-years {
  border-top-color: rgba(56, 81, 147, 0.12);
}

body[data-page="het-plan"] .plan-timeline-feature {
  width: min(1180px, 90%);
  min-height: clamp(190px, 21vw, 250px);
  justify-self: center;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.56);
  border-color: rgba(56, 81, 147, 0.13);
  border-radius: 16px;
  box-shadow: 0 22px 56px rgba(17, 25, 48, 0.08);
  backdrop-filter: blur(10px);
  will-change: opacity, transform;
}

body[data-page="het-plan"] .plan-timeline-feature strong {
  font-family: var(--font-body);
  font-size: clamp(2.35rem, 3.4vw, 3.75rem);
  font-weight: 650;
}

body[data-page="het-plan"] .plan-timeline-feature h3 {
  font-size: clamp(1.35rem, 1.72vw, 1.85rem);
}

body[data-page="het-plan"] .plan-timeline-feature p {
  font-size: clamp(0.94rem, 1.02vw, 1.06rem);
  line-height: 1.58;
}

body[data-page="het-plan"] .plan-timeline-feature h3,
body[data-page="het-plan"] .plan-timeline-feature p,
body[data-page="het-plan"] .plan-timeline-feature span {
  font-family: var(--font-body);
}

body[data-page="het-plan"] .plan-timeline-feature span[hidden] {
  display: none !important;
}

@media (min-width: 1001px) {
  body[data-page="het-plan"] .plan-intro-copy {
    grid-template-columns: repeat(12, minmax(0, 1fr));
    column-gap: clamp(28px, 3.4vw, 58px);
    row-gap: clamp(58px, 7vh, 88px);
    align-items: end;
  }

  body[data-page="het-plan"] .plan-intro-head {
    grid-column: 1 / 7;
  }

  body[data-page="het-plan"] .plan-intro-lead {
    grid-column: 7 / 13;
  }

  body[data-page="het-plan"] .plan-intro-body {
    grid-column: 1 / 7;
  }

  body[data-page="het-plan"] .plan-intro-support {
    grid-column: 7 / 13;
  }

  body[data-page="het-plan"] .plan-timeline-story.is-scroll-enabled {
    height: calc(100svh + 3300px);
    min-height: 0;
    padding: 0;
  }

  body[data-page="het-plan"] .plan-timeline-story.is-scroll-enabled .plan-timeline-frame {
    position: sticky;
    top: 0;
    display: grid;
    grid-template-rows: auto minmax(0, 1fr);
    gap: clamp(18px, 2.2vh, 26px);
    height: 100svh;
    padding-top: clamp(112px, 13vh, 142px);
    padding-bottom: clamp(24px, 4vh, 42px);
    overflow: hidden;
  }

  body[data-page="het-plan"] .plan-timeline-story.is-scroll-enabled .plan-timeline-map {
    display: grid;
    grid-template-rows: minmax(210px, 1fr) auto clamp(180px, 20vh, 228px);
    gap: clamp(12px, 1.8vh, 20px);
    min-height: 0;
    align-content: start;
  }

  body[data-page="het-plan"] .plan-timeline-story.is-scroll-enabled .plan-timeline-axis {
    height: 100%;
    min-height: 0;
  }

  body[data-page="het-plan"] .plan-timeline-story.is-scroll-enabled .plan-timeline-years {
    padding-top: clamp(10px, 1.5vh, 18px);
  }

  body[data-page="het-plan"] .plan-timeline-story.is-scroll-enabled .plan-timeline-feature {
    min-height: 0;
    height: 100%;
    padding: clamp(24px, 2.6vw, 38px);
    align-content: center;
    box-sizing: border-box;
  }

  body[data-page="het-plan"] .plan-timeline-story.is-scroll-enabled .plan-timeline-travel {
    transition: none;
  }
}

@media (max-width: 1000px) {
  body[data-page="het-plan"] .plan-intro-section {
    min-height: auto;
    padding: 142px 0 84px !important;
  }

  body[data-page="het-plan"] .plan-intro-copy {
    gap: 34px;
  }

  body[data-page="het-plan"] .plan-intro-schematic {
    top: 20px;
    right: -60px;
    width: min(76vw, 620px);
    opacity: 0.09;
  }

  body[data-page="het-plan"] .plan-timeline-section {
    padding-top: 72px;
  }

  body[data-page="het-plan"] .plan-timeline-feature {
    width: 100%;
  }
}

@media (max-width: 680px) {
  body[data-page="het-plan"] .plan-intro-frame,
  body[data-page="het-plan"] .plan-timeline-frame {
    width: min(100% - 32px, 1420px);
  }

  body[data-page="het-plan"] .plan-intro-section {
    padding: 116px 0 64px !important;
  }

  body[data-page="het-plan"] .plan-intro-head h1 {
    display: grid;
    gap: 2px;
    font-size: clamp(3.3rem, 18vw, 5.2rem);
  }

  body[data-page="het-plan"] .plan-intro-head h1 .plan-intro-title-prefix {
    font-size: 0.38em;
  }

  body[data-page="het-plan"] .plan-intro-schematic {
    top: 36px;
    right: -110px;
    width: 620px;
    opacity: 0.07;
  }

  body[data-page="het-plan"] .plan-timeline-feature {
    min-height: 0;
    padding: 28px 24px;
  }
}

/* Line-art circles stay outlined so hover never turns diagrams into solid blobs. */
body[data-page="home"] .home-approach-card .home-approach-line-art circle,
body[data-page="home"] .home-approach-card[data-solution-card]:hover .home-approach-line-art circle,
body[data-page="home"] .home-approach-card[data-solution-card]:focus-visible .home-approach-line-art circle,
body[data-page="home"] .home-approach-card[data-solution-card].is-selected .home-approach-line-art circle {
  fill: transparent !important;
}

body[data-page="home"] .home-approach-card[data-solution-card]:hover .home-approach-line-art,
body[data-page="home"] .home-approach-card[data-solution-card]:focus-visible .home-approach-line-art,
body[data-page="home"] .home-approach-card[data-solution-card].is-selected .home-approach-line-art {
  transform: none !important;
}

/* Service heroes share the homepage's three-part title rhythm. */
body[data-page="service-detail"] .service-detail-hero--bricks .service-detail-hero__layout,
body[data-page="service-detail"] .service-detail-hero--excavating .service-detail-hero__layout {
  min-height: calc(100svh - var(--header-height) - clamp(42px, 8vh, 84px));
  align-items: center;
  justify-items: center;
}

body[data-page="service-detail"] .service-detail-hero--bricks .service-detail-hero__head,
body[data-page="service-detail"] .service-detail-hero--excavating .service-detail-hero__head {
  max-width: min(1220px, 100%);
  gap: clamp(12px, 1.6vh, 20px);
  padding-bottom: 0;
  justify-items: center;
  text-align: center;
  transform: translateY(clamp(18px, 3vh, 38px));
}

body[data-page="service-detail"] .service-detail-hero--bricks .service-detail-kicker,
body[data-page="service-detail"] .service-detail-hero--excavating .service-detail-kicker {
  justify-content: center;
  margin-bottom: clamp(4px, 1vh, 10px);
}

body[data-page="service-detail"] .service-detail-hero--bricks .service-detail-kicker::before,
body[data-page="service-detail"] .service-detail-hero--excavating .service-detail-kicker::before {
  display: none;
  content: none;
}

body[data-page="service-detail"] .service-detail-hero--bricks .service-detail-hero__head h1,
body[data-page="service-detail"] .service-detail-hero--excavating .service-detail-hero__head h1 {
  display: grid;
  max-width: min(1180px, 100%);
  margin: 0;
  justify-items: center;
  color: #ffffff;
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 6.25vw, 7rem);
  font-weight: 900;
  letter-spacing: -0.055em;
  line-height: 0.86;
  text-align: center;
  text-shadow: 0 18px 42px rgba(6, 12, 28, 0.42);
}

body[data-page="service-detail"] .service-detail-hero__head h1 > span {
  display: block;
  width: fit-content;
}

body[data-page="service-detail"] .service-hero-topline {
  color: #ffffff;
}

body[data-page="service-detail"] .service-detail-hero__head h1 .service-hero-connector {
  margin: clamp(0.08em, 0.65vw, 0.14em) 0 clamp(0.1em, 0.75vw, 0.18em);
  color: rgba(255, 255, 255, 0.9);
  font-family: var(--font-sans);
  font-size: 0.38em;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 0.88;
}

body[data-page="service-detail"] .service-detail-hero__head h1 .service-hero-accent {
  margin-top: 0;
  color: #6f89e8 !important;
  font-family: var(--font-display);
  font-style: normal;
  font-weight: 900;
  letter-spacing: -0.055em;
  line-height: 0.86;
  text-shadow:
    0 1px 0 rgba(255, 255, 255, 0.2),
    0 0 20px rgba(6, 12, 28, 0.22),
    0 18px 44px rgba(6, 12, 28, 0.68);
}

body[data-page="service-detail"] .service-detail-hero--bricks .service-detail-hero__copy,
body[data-page="service-detail"] .service-detail-hero--excavating .service-detail-hero__copy {
  max-width: 760px;
  margin: clamp(16px, 2.4vh, 26px) auto 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(0.92rem, 1.04vw, 1.08rem);
  font-weight: 520;
  line-height: 1.55;
  text-align: center;
}

body[data-page="service-detail"] .service-detail-hero--bricks .service-detail-hero__head > p:not(.service-detail-kicker):not(.service-detail-hero__copy),
body[data-page="service-detail"] .service-detail-hero--excavating .service-detail-hero__head > p:not(.service-detail-kicker):not(.service-detail-hero__copy) {
  max-width: 680px;
  margin: clamp(16px, 2.4vh, 26px) auto 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(0.94rem, 1.08vw, 1.12rem);
  font-weight: 520;
  line-height: 1.45;
  text-align: center;
}

@media (max-width: 760px) {
  body[data-page="service-detail"] .service-detail-hero--bricks,
  body[data-page="service-detail"] .service-detail-hero--excavating {
    min-height: 88svh;
  }

  body[data-page="service-detail"] .service-detail-hero--bricks .service-detail-hero__layout,
  body[data-page="service-detail"] .service-detail-hero--excavating .service-detail-hero__layout {
    min-height: calc(88svh - 118px);
    align-items: center;
    justify-items: center;
  }

  body[data-page="service-detail"] .service-detail-hero--bricks .service-detail-hero__head,
  body[data-page="service-detail"] .service-detail-hero--excavating .service-detail-hero__head {
    padding-bottom: 0;
    justify-items: center;
    text-align: center;
    transform: translateY(18px);
  }

  body[data-page="service-detail"] .service-detail-hero--bricks .service-detail-hero__head h1,
  body[data-page="service-detail"] .service-detail-hero--excavating .service-detail-hero__head h1 {
    font-size: clamp(2.85rem, 14vw, 4.6rem);
  }
}

/* Cream service sections */
body[data-page="service-detail"] .service-route-section--bluebox,
body[data-page="service-detail"] .material-offer-section {
  background: #f3f0e7 !important;
  background-image: none !important;
}

body[data-page="service-detail"] .service-route-section--bluebox .service-route-copy > p,
body[data-page="service-detail"] .material-offer-head p {
  color: #385193;
}

body[data-page="service-detail"] .service-route-section--bluebox .service-route-copy h2,
body[data-page="service-detail"] .service-route-section--bluebox .service-route-step h3,
body[data-page="service-detail"] .material-offer-head h2 {
  color: #111930;
}

body[data-page="service-detail"] .service-route-section--bluebox .service-route-steps,
body[data-page="service-detail"] .service-route-section--bluebox .service-route-step {
  border-color: rgba(56, 81, 147, 0.2);
}

body[data-page="service-detail"] .service-route-section--bluebox .service-route-step > span {
  color: rgba(56, 81, 147, 0.72);
}

body[data-page="service-detail"] .service-route-section--bluebox .service-route-step p {
  color: rgba(17, 25, 48, 0.68);
}

body[data-page="service-detail"] .service-route-section--bluebox .service-route-media {
  border-color: rgba(56, 81, 147, 0.16);
  box-shadow: 0 28px 64px rgba(17, 25, 48, 0.14);
}

body[data-page="service-detail"] .material-carousel-button {
  color: #385193;
  background: rgba(251, 250, 246, 0.86);
  border-color: rgba(56, 81, 147, 0.24);
  box-shadow: 0 16px 34px rgba(17, 25, 48, 0.1);
}

body[data-page="service-detail"] .material-carousel-button:disabled {
  color: rgba(56, 81, 147, 0.28);
  background: rgba(251, 250, 246, 0.5);
  border-color: rgba(56, 81, 147, 0.12);
}

body[data-page="service-detail"] .material-offer-card {
  background: #fbfaf6 !important;
  border-color: rgba(56, 81, 147, 0.14);
  box-shadow: 0 24px 58px rgba(17, 25, 48, 0.1);
}

body[data-page="service-detail"] .service-widget-section {
  background: #f3f0e7 !important;
  background-image: none !important;
}

/* Problem scrollytelling: reveal both equally sized cases together in one viewport. */
@media (min-width: 1001px) {
  body[data-page="home"] .home-problem-columns {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: auto minmax(0, 1fr);
    gap: clamp(22px, 2.8vw, 44px);
    align-items: stretch;
  }

  body[data-page="home"] .home-problem-columns > .home-problem-heading {
    grid-column: 1 / -1;
  }

  body[data-page="home"] .home-problem-panel,
  body[data-page="home"] .home-problem-panel:nth-of-type(even) {
    position: relative;
    inset: auto;
    grid-row: 2;
    align-self: stretch;
    width: 100%;
    height: 100%;
    min-width: 0;
  }

  body[data-page="home"] .home-problem-panel__stage,
  body[data-page="home"] .home-problem-panel:nth-of-type(even) .home-problem-panel__stage {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows:
      minmax(min(280px, 32svh), 1fr)
      minmax(min(300px, 38svh), 1fr);
    gap: 0;
    height: 100%;
    overflow: hidden;
    background: #fbfaf6;
    border: 1px solid rgba(56, 81, 147, 0.14);
    border-radius: 18px;
    box-shadow: 0 24px 64px rgba(17, 25, 48, 0.1);
  }

  body[data-page="home"] .home-problem-panel .home-problem-copy-image,
  body[data-page="home"] .home-problem-panel:nth-of-type(even) .home-problem-copy-image {
    grid-row: 1;
    grid-column: 1;
    width: 100%;
    height: 100%;
    aspect-ratio: auto;
    object-fit: cover;
    object-position: center;
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }

  body[data-page="home"] .home-problem-panel .home-problem-panel__copy,
  body[data-page="home"] .home-problem-panel:nth-of-type(even) .home-problem-panel__copy {
    grid-row: 2;
    grid-column: 1;
    width: 100%;
    height: 100%;
    min-width: 0;
    align-content: center;
    padding: clamp(26px, 2.7vw, 42px);
    background: #fbfaf6;
    border: 0;
    border-top: 1px solid rgba(56, 81, 147, 0.12);
    border-radius: 0;
    box-shadow: none;
    backdrop-filter: none;
  }

  body[data-page="home"] .home-problem-panel__copy p {
    max-width: 54ch;
    font-size: clamp(0.9rem, 0.92vw, 1rem);
    line-height: 1.58;
  }
}

@media (min-width: 1001px) and (prefers-reduced-motion: no-preference) {
  body[data-page="home"] .home-problem-story {
    min-height: 175vh;
    min-height: 175svh;
  }

  body[data-page="home"] .home-problem-story .home-problem-columns {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: auto minmax(0, 1fr);
    gap: clamp(20px, 2.4vw, 38px);
    width: min(1560px, calc(100% - clamp(72px, 8vw, 152px)));
    height: min(82vh, 780px);
    height: min(82svh, 780px);
  }

  body[data-page="home"] .home-problem-story .home-problem-columns > .home-problem-heading {
    position: relative;
    top: auto;
    left: auto;
    grid-column: 1 / -1;
    grid-row: 1;
    align-self: start;
  }

  body[data-page="home"] .home-problem-story .home-problem-panel {
    position: relative;
    inset: auto;
    z-index: 1;
    grid-row: 2;
    height: 100%;
    opacity: var(--problem-scene-opacity, 1);
    transform: translate3d(var(--problem-scene-x, 0), var(--problem-scene-y, 0), 0)
      scale(var(--problem-scene-scale, 1));
    transform-origin: center;
  }

  body[data-page="home"] .home-problem-story .home-problem-panel:nth-of-type(even) {
    z-index: 1;
  }

  body[data-page="home"] .home-problem-story .home-problem-panel__stage {
    height: 100%;
  }

  body[data-page="home"] .home-problem-story .home-problem-panel .home-problem-copy-image,
  body[data-page="home"] .home-problem-story .home-problem-panel:nth-of-type(even) .home-problem-copy-image {
    height: 100%;
    aspect-ratio: auto;
  }

  body[data-page="home"] .home-problem-story .home-problem-panel .home-problem-panel__copy,
  body[data-page="home"] .home-problem-story .home-problem-panel:nth-of-type(even) .home-problem-panel__copy {
    height: 100%;
    opacity: var(--problem-copy-opacity, 0);
    transform-origin: center;
  }
}

/* Typography trial: use the former lightweight hero face for major editorial titles. */
body[data-page="home"] .home-mission-copy p,
body[data-page="home"] .home-approach-lede,
body[data-page="home"] .home-prefooter-cta h2,
body[data-page="service-detail"] .service-route-copy h2,
body[data-page="service-detail"] .service-widget-head h2,
body[data-page="het-plan"] .plan-timeline-title,
.contact-section-head h2,
.contact-form-copy h2 {
  font-family: var(--font-h1);
  font-weight: var(--font-h1-weight);
}

/* Small labels and interface copy intentionally retain Poppins. */
body[data-page="home"] :is(
    .home-mission-copy h2,
    .home-problem-heading,
    .home-approach-heading,
    .home-service-head h2
  ),
.service-detail-kicker,
.home-prefooter-cta__eyebrow {
  font-family: var(--font-body);
}

/* Keep the navigation calm and readable without bold typography. */
.site-header .main-nav > a,
.site-header .main-nav > .nav-dropdown > a,
.site-header .main-nav .nav-dropdown__menu a,
.site-header .mobile-menu a,
.site-header .language-toggle a,
.site-header .icon-button--desktop {
  font-weight: 500 !important;
}

/* Privacy policy */
body[data-page="privacy"] {
  color: #111930;
  background: #f3f0e7;
}

.privacy-page {
  padding-bottom: clamp(80px, 9vw, 140px);
  background: #f3f0e7;
}

.privacy-frame {
  width: min(1180px, calc(100% - clamp(32px, 8vw, 144px)));
  margin-inline: auto;
}

.privacy-hero {
  padding: clamp(176px, 18vw, 248px) 0 clamp(64px, 8vw, 112px);
  border-bottom: 1px solid rgba(56, 81, 147, 0.14);
}

.privacy-eyebrow {
  margin: 0 0 20px;
  color: #385193;
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.privacy-hero h1 {
  max-width: 12ch;
  margin: 0;
  color: #111930;
  font-family: var(--font-body);
  font-size: clamp(3.3rem, 7vw, 7rem);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.94;
}

.privacy-hero .privacy-frame > p:last-child {
  max-width: 760px;
  margin: clamp(34px, 4vw, 54px) 0 0;
  color: rgba(17, 25, 48, 0.7);
  font-size: clamp(1.05rem, 1.35vw, 1.28rem);
  line-height: 1.7;
}

.privacy-layout {
  display: grid;
  grid-template-columns: minmax(230px, 0.34fr) minmax(0, 0.66fr);
  gap: clamp(46px, 7vw, 104px);
  align-items: start;
  padding-top: clamp(56px, 7vw, 96px);
}

.privacy-contact-card {
  position: sticky;
  top: 122px;
  display: grid;
  gap: 14px;
  padding: 30px;
  background: #fbfaf6;
  border: 1px solid rgba(56, 81, 147, 0.14);
  border-radius: 16px;
  box-shadow: 0 20px 52px rgba(17, 25, 48, 0.07);
}

.privacy-contact-card h2 {
  margin: 0 0 8px;
  color: #111930;
  font-size: 1rem;
  font-weight: 800;
}

.privacy-contact-card p,
.privacy-contact-card address,
.privacy-contact-card a {
  margin: 0;
  color: rgba(17, 25, 48, 0.68);
  font-size: 0.9rem;
  font-style: normal;
  line-height: 1.65;
  overflow-wrap: anywhere;
}

.privacy-contact-card > a,
.privacy-contact-card p a {
  color: #385193;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.privacy-document {
  min-width: 0;
}

.privacy-document section {
  padding: 0 0 clamp(42px, 5vw, 64px);
}

.privacy-document section + section {
  padding-top: clamp(42px, 5vw, 64px);
  border-top: 1px solid rgba(56, 81, 147, 0.14);
}

.privacy-document h2 {
  max-width: 24ch;
  margin: 0 0 22px;
  color: #111930;
  font-family: var(--font-body);
  font-size: clamp(1.55rem, 2.25vw, 2.35rem);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.16;
}

.privacy-document p,
.privacy-document li {
  color: rgba(17, 25, 48, 0.72);
  font-size: clamp(0.98rem, 1.05vw, 1.08rem);
  line-height: 1.8;
}

.privacy-document p {
  margin: 0;
}

.privacy-document ul {
  display: grid;
  gap: 10px;
  margin: 22px 0 0;
  padding-left: 1.2em;
}

.privacy-document li::marker {
  color: #385193;
}

.privacy-document a {
  color: #385193;
  overflow-wrap: anywhere;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

@media (max-width: 820px) {
  .privacy-hero {
    padding-top: 150px;
  }

  .privacy-layout {
    grid-template-columns: 1fr;
  }

  .privacy-contact-card {
    position: static;
  }
}

@media (max-width: 560px) {
  .privacy-frame {
    width: min(100% - 28px, 1180px);
  }

  .privacy-hero {
    padding-top: 132px;
  }

  .privacy-contact-card {
    padding: 24px;
    border-radius: 14px;
  }
}

/* Over ons: align the page with the shared editorial frame used across the site. */
body[data-page="over-ons"] .about-frame {
  width: min(1360px, calc(100% - clamp(40px, 8vw, 152px)));
  padding-inline: clamp(18px, 3vw, 42px);
  box-sizing: border-box;
}

body[data-page="over-ons"] .about-story-section {
  min-height: auto;
  padding: clamp(132px, 12vw, 176px) 0 clamp(76px, 8vw, 116px);
  background: #ffffff !important;
  background-image: none !important;
}

body[data-page="over-ons"] .about-story-section .about-frame {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
  gap: clamp(40px, 6vw, 88px);
  align-items: center;
}

body[data-page="over-ons"] .about-story-copy {
  max-width: 650px;
}

body[data-page="over-ons"] .about-story-section h1 {
  max-width: 9ch;
  margin: 0;
  font-size: clamp(3.4rem, 6.2vw, 6.8rem);
  line-height: 0.9;
}

body[data-page="over-ons"] .about-story-text {
  max-width: 620px;
  margin-top: clamp(28px, 3.6vw, 46px);
  font-size: clamp(1.02rem, 1.22vw, 1.28rem);
  line-height: 1.58;
}

body[data-page="over-ons"] .about-photo-placeholder--wide {
  width: 100%;
  min-height: clamp(300px, 32vw, 460px);
  border: 1px solid rgba(56, 81, 147, 0.14);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(56, 81, 147, 0.08), rgba(201, 235, 255, 0.2)),
    #f8fbff;
  box-shadow: 0 20px 46px rgba(17, 25, 48, 0.08);
}

body[data-page="over-ons"] .about-statement-section {
  padding: clamp(76px, 9vw, 124px) 0;
  background: #f8fbff !important;
  border: 0;
}

body[data-page="over-ons"] .about-statement {
  max-width: 900px;
  margin: 0 auto;
  font-size: clamp(2rem, 3.4vw, 3.8rem);
  line-height: 1.08;
  text-align: center;
}

body[data-page="over-ons"] .about-team-section {
  padding: clamp(76px, 9vw, 116px) 0 clamp(72px, 8vw, 108px);
  background: #ffffff !important;
  background-image: none !important;
}

body[data-page="over-ons"] .about-team-section h2 {
  max-width: 8ch;
  font-size: clamp(2.8rem, 4.8vw, 5.2rem);
  line-height: 0.94;
}

body[data-page="over-ons"] .about-team-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(22px, 2.4vw, 34px);
  margin-top: clamp(48px, 6vw, 76px);
}

body[data-page="over-ons"] .about-team-card img {
  aspect-ratio: 1 / 1.12;
  border-radius: 10px;
}

body[data-page="over-ons"] .about-gallery-section,
body[data-page="over-ons"] .about-partners-section,
body[data-page="over-ons"] .about-work-section {
  background: #ffffff !important;
}

body[data-page="over-ons"] .about-gallery-section {
  padding: 0 0 clamp(76px, 8vw, 112px);
}

body[data-page="over-ons"] .about-photo-collage {
  gap: clamp(18px, 2vw, 28px);
}

body[data-page="over-ons"] .about-partners-section {
  padding: clamp(24px, 4vw, 44px) 0 clamp(72px, 8vw, 112px);
}

body[data-page="over-ons"] .about-partners-title {
  margin-bottom: clamp(22px, 3vw, 34px);
  text-align: left;
}

body[data-page="over-ons"] .about-work-section {
  padding: clamp(24px, 4vw, 44px) 0 clamp(76px, 8vw, 116px);
}

body[data-page="over-ons"] .about-work-card {
  min-height: clamp(300px, 31vw, 420px);
  border-radius: 18px;
}

@media (max-width: 1100px) {
  body[data-page="over-ons"] .about-story-section .about-frame {
    grid-template-columns: 1fr;
    align-items: start;
  }

  body[data-page="over-ons"] .about-story-copy {
    max-width: 760px;
  }

  body[data-page="over-ons"] .about-photo-placeholder--wide {
    max-width: 720px;
  }

  body[data-page="over-ons"] .about-team-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  body[data-page="over-ons"] .about-frame {
    width: min(100% - 28px, 1180px);
    padding-inline: 0;
  }

  body[data-page="over-ons"] .about-story-section {
    padding-top: 132px;
  }

  body[data-page="over-ons"] .about-story-section h1 {
    font-size: clamp(3.1rem, 16vw, 5.1rem);
  }

  body[data-page="over-ons"] .about-statement {
    text-align: left;
  }

  body[data-page="over-ons"] .about-team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 520px) {
  body[data-page="over-ons"] .about-team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 14px;
    margin-top: 36px;
  }

  body[data-page="over-ons"] .about-team-card img {
    max-width: 180px;
  }

  body[data-page="over-ons"] .about-team-card h3 {
    margin-top: 10px;
    font-size: clamp(0.86rem, 4vw, 1rem);
  }

  body[data-page="over-ons"] .about-team-card p {
    font-size: 0.8rem;
  }
}

/* Over ons navigation targets and embedded BluePrint plan. */
.mobile-menu .mobile-menu__sub-link {
  padding-left: 28px;
  color: rgba(37, 42, 54, 0.72);
  font-size: 0.86rem;
}

body[data-page="over-ons"] #het-team,
body[data-page="over-ons"] #werken-bij,
body[data-page="over-ons"] #het-plan {
  scroll-margin-top: 112px;
}

body[data-page="over-ons"] .about-plan-section {
  padding: clamp(88px, 10vw, 144px) 0 clamp(76px, 8vw, 112px);
  background: #f3f0e7;
  border-top: 1px solid rgba(56, 81, 147, 0.14);
}

body[data-page="over-ons"] .about-plan-heading {
  display: grid;
  gap: clamp(14px, 1.8vw, 22px);
}

body[data-page="over-ons"] .about-plan-heading > p {
  margin: 0;
  color: #385193;
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

body[data-page="over-ons"] .about-plan-heading h2 {
  max-width: 12ch;
  margin: 0;
  color: #111930;
  font-family: var(--font-body);
  font-size: clamp(3rem, 6.2vw, 6.4rem);
  font-weight: 500;
  letter-spacing: -0.06em;
  line-height: 0.92;
}

body[data-page="over-ons"] .about-plan-heading h2 em {
  color: #385193;
  font-style: italic;
  font-weight: 500;
}

body[data-page="over-ons"] .about-plan-heading h2 .about-plan-title-prefix {
  font-weight: var(--font-h1-weight);
}

body[data-page="over-ons"] .about-plan-copy {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(24px, 3vw, 42px);
  margin-top: clamp(48px, 6vw, 82px);
  padding-top: clamp(30px, 4vw, 48px);
  border-top: 1px solid rgba(56, 81, 147, 0.16);
}

body[data-page="over-ons"] .about-plan-copy p {
  margin: 0;
  color: rgba(17, 25, 48, 0.72);
  font-size: clamp(0.98rem, 1.08vw, 1.12rem);
  line-height: 1.72;
}

body[data-page="over-ons"] .about-plan-copy strong {
  color: #111930;
}

body[data-page="over-ons"] .about-plan-copy em {
  color: #385193;
}

body[data-page="over-ons"] .about-plan-timeline {
  padding-top: clamp(76px, 8vw, 112px);
  background: #fbfaf6;
  border-top: 1px solid rgba(56, 81, 147, 0.12);
}

body[data-page="over-ons"] .about-plan-timeline .plan-timeline-frame {
  width: min(1360px, calc(100% - clamp(40px, 8vw, 152px)));
  padding-inline: clamp(18px, 3vw, 42px);
  border: 0;
}

@media (max-width: 900px) {
  body[data-page="over-ons"] .about-plan-copy {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  body[data-page="over-ons"] .about-plan-section {
    padding-top: 72px;
  }

  body[data-page="over-ons"] .about-plan-heading h2 {
    font-size: clamp(2.8rem, 15vw, 4.8rem);
  }

  body[data-page="over-ons"] .about-plan-timeline .plan-timeline-frame {
    width: min(100% - 28px, 1180px);
    padding-inline: 0;
  }
}

/* Compact impact tool: let the content set the scale and remove the empty iframe area. */
body[data-page="service-detail"] .service-widget-section {
  padding: clamp(64px, 8vh, 88px) 0 clamp(72px, 9vh, 96px);
}

body[data-page="service-detail"] .service-widget-section .service-detail-frame {
  width: min(1180px, calc(100% - clamp(36px, 10vw, 152px)));
}

body[data-page="service-detail"] .service-widget-head {
  gap: 8px;
  margin-bottom: clamp(28px, 4vh, 40px);
}

body[data-page="service-detail"] .service-widget-head h2 {
  font-size: clamp(2.15rem, 3.15vw, 3.4rem);
}

body[data-page="service-detail"] .service-widget-layout {
  grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.72fr);
  gap: clamp(24px, 3vw, 38px);
  align-items: start;
}

body[data-page="service-detail"] .service-widget-ladder {
  align-content: start;
  align-self: start;
  gap: 9px;
  min-height: 0;
  padding: clamp(15px, 1.5vw, 20px);
  border-radius: 20px;
}

body[data-page="service-detail"] .service-widget-ladder__head,
body[data-page="service-detail"] .service-widget-impact {
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr) 42px minmax(0, 1.12fr);
  gap: clamp(12px, 1.5vw, 20px);
}

body[data-page="service-detail"] .service-widget-ladder__head {
  padding: 2px clamp(14px, 1.5vw, 20px) 7px;
  font-size: 0.66rem;
}

body[data-page="service-detail"] .service-widget-impact {
  min-height: 64px;
  padding: clamp(13px, 1.35vw, 17px) clamp(14px, 1.5vw, 20px);
  border-radius: 14px;
}

body[data-page="service-detail"] .service-widget-impact__label {
  font-size: clamp(0.84rem, 0.9vw, 0.96rem);
}

body[data-page="service-detail"] .service-widget-impact__from,
body[data-page="service-detail"] .service-widget-impact__to {
  font-size: clamp(0.82rem, 0.88vw, 0.94rem);
}

body[data-page="service-detail"] .service-widget-impact__arrow {
  width: 42px;
  height: 28px;
  font-size: 0.88rem;
}

body[data-page="service-detail"] .service-widget-frame {
  align-self: start;
  width: 100%;
  height: clamp(430px, 32vw, 470px);
  min-height: 0;
  border-radius: 20px;
}

@media (max-width: 1120px) {
  body[data-page="service-detail"] .service-widget-layout {
    grid-template-columns: 1fr;
  }

  body[data-page="service-detail"] .service-widget-ladder {
    width: 100%;
  }

  body[data-page="service-detail"] .service-widget-frame {
    width: min(100%, 620px);
    height: clamp(440px, 62vw, 500px);
    min-height: 0;
    max-height: none;
  }
}

@media (max-width: 720px) {
  body[data-page="service-detail"] .service-widget-section {
    padding: 56px 0 64px;
  }

  body[data-page="service-detail"] .service-widget-section .service-detail-frame {
    width: min(100% - 32px, 1180px);
  }

  body[data-page="service-detail"] .service-widget-head h2 {
    font-size: clamp(2.1rem, 11vw, 3.2rem);
  }

  body[data-page="service-detail"] .service-widget-layout {
    gap: 26px;
  }

  body[data-page="service-detail"] .service-widget-ladder {
    gap: 9px;
    padding: 12px;
    border-radius: 16px;
  }

  body[data-page="service-detail"] .service-widget-impact {
    grid-template-columns: 1fr;
    padding: 14px;
    gap: 8px;
  }

  body[data-page="service-detail"] .service-widget-impact__label {
    font-size: 0.98rem;
  }

  body[data-page="service-detail"] .service-widget-frame {
    height: clamp(520px, 150vw, 600px);
    min-height: 0;
    border-radius: 16px;
  }

  body[data-page="service-detail"] .service-widget-frame iframe {
    height: 100%;
    min-height: 100%;
  }
}

/* Static problem cards: equal rounding and no pinned scroll-reveal scene. */
@media (min-width: 1001px) {
  body[data-page="home"] .home-problem-story {
    min-height: 0 !important;
    padding: 0 !important;
    overflow: hidden;
  }

  body[data-page="home"] .home-problem-story .home-problem-frame {
    position: relative;
    top: auto;
    display: block;
    width: min(1720px, 100%);
    height: auto;
    min-height: 0;
    padding: clamp(72px, 7vw, 104px) clamp(36px, 5vw, 88px) !important;
    overflow: visible;
  }

  body[data-page="home"] .home-problem-story .home-problem-columns {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: auto auto;
    gap: clamp(20px, 2.4vw, 38px);
    align-items: stretch;
    width: min(1560px, 100%);
    height: auto;
    margin: 0 auto;
  }

  body[data-page="home"] .home-problem-story .home-problem-columns > .home-problem-heading {
    position: relative;
    top: auto;
    left: auto;
    grid-column: 1 / -1;
    grid-row: 1;
    align-self: start;
  }

  body[data-page="home"] .home-problem-story .home-problem-panel,
  body[data-page="home"] .home-problem-story .home-problem-panel:nth-of-type(even) {
    position: relative;
    inset: auto;
    z-index: 1;
    grid-row: 2;
    align-self: stretch;
    width: 100%;
    height: auto;
    min-width: 0;
    min-height: 0;
    overflow: hidden;
    opacity: 1 !important;
    background: #fbfaf6;
    border: 1px solid rgba(56, 81, 147, 0.14);
    border-radius: 20px !important;
    box-shadow: 0 24px 64px rgba(17, 25, 48, 0.1);
    transform: none !important;
    pointer-events: auto;
    isolation: isolate;
    will-change: auto;
  }

  body[data-page="home"] .home-problem-story .home-problem-panel__stage,
  body[data-page="home"] .home-problem-story .home-problem-panel:nth-of-type(even) .home-problem-panel__stage {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: clamp(240px, 24vw, 390px) 1fr;
    gap: 0;
    height: 100%;
    overflow: hidden;
    background: transparent;
    border: 0;
    border-radius: inherit !important;
    box-shadow: none;
  }

  body[data-page="home"] .home-problem-story .home-problem-panel .home-problem-copy-image,
  body[data-page="home"] .home-problem-story .home-problem-panel:nth-of-type(even) .home-problem-copy-image {
    grid-row: 1;
    grid-column: 1;
    width: 100%;
    height: 100%;
    aspect-ratio: auto;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    filter: none;
    transform: none !important;
    will-change: auto;
  }

  body[data-page="home"] .home-problem-story .home-problem-panel .home-problem-panel__copy,
  body[data-page="home"] .home-problem-story .home-problem-panel:nth-of-type(even) .home-problem-panel__copy {
    grid-row: 2;
    grid-column: 1;
    width: 100%;
    height: auto;
    min-width: 0;
    align-content: center;
    padding: clamp(26px, 2.7vw, 42px);
    opacity: 1 !important;
    background: transparent;
    border: 0;
    border-top: 1px solid rgba(56, 81, 147, 0.12);
    border-radius: 0;
    box-shadow: none;
    transform: none !important;
    backdrop-filter: none;
    will-change: auto;
  }
}

/* Keep the About statement editorial and regular-weight throughout. */
body[data-page="over-ons"] .about-statement,
body[data-page="over-ons"] .about-statement strong {
  font-family: var(--font-h1);
  font-weight: var(--font-h1-weight);
}

/* Keep the About partners carousel centered and vertically compact. */
body[data-page="over-ons"] .about-partners-section {
  padding: clamp(16px, 2vw, 28px) 0 clamp(28px, 3.5vw, 48px);
}

body[data-page="over-ons"] .about-partners-title {
  width: 100%;
  margin: 0 0 clamp(14px, 1.8vw, 22px);
  text-align: center;
}

/* Embedded BluePrint timeline: centered, compact, and scroll-controlled on desktop. */
body[data-page="over-ons"] .about-plan-timeline {
  padding: clamp(52px, 6vw, 76px) 0 clamp(62px, 7vw, 88px);
}

body[data-page="over-ons"] .about-plan-timeline .plan-timeline-frame {
  width: min(1420px, calc(100% - clamp(40px, 8vw, 144px)));
  gap: clamp(18px, 2.4vw, 30px);
  padding-inline: clamp(16px, 2.5vw, 34px);
}

body[data-page="over-ons"] .about-plan-timeline .plan-timeline-title {
  display: flex;
  gap: 0.24em;
  align-items: baseline;
  justify-content: center;
  justify-self: center;
  width: 100%;
  font-family: var(--font-h1);
  font-size: clamp(1.75rem, 2.35vw, 2.6rem);
  font-weight: var(--font-h1-weight);
  letter-spacing: -0.045em;
  line-height: 1.05;
  text-align: center;
}

body[data-page="over-ons"] .about-plan-timeline .plan-timeline-title em {
  font-weight: inherit;
}

body[data-page="over-ons"] .about-plan-timeline .plan-timeline-map {
  gap: clamp(12px, 1.7vw, 20px);
}

body[data-page="over-ons"] .about-plan-timeline .plan-timeline-axis {
  min-height: clamp(172px, 16vw, 210px);
}

body[data-page="over-ons"] .about-plan-timeline :is(.plan-timeline-point, .plan-timeline-period-label) {
  font-size: clamp(0.7rem, 0.8vw, 0.86rem);
  font-weight: 650;
  line-height: 1.16;
}

body[data-page="over-ons"] .about-plan-timeline :is(.plan-timeline-point, .plan-timeline-period-label) span {
  max-width: 160px;
}

body[data-page="over-ons"] .about-plan-timeline .plan-timeline-point::after,
body[data-page="over-ons"] .about-plan-timeline .plan-timeline-period-label::before {
  height: clamp(22px, 2.4vw, 30px);
}

body[data-page="over-ons"] .about-plan-timeline .plan-timeline-point--top span {
  bottom: calc(100% + clamp(32px, 3.2vw, 40px));
}

body[data-page="over-ons"] .about-plan-timeline :is(.plan-timeline-point--bottom, .plan-timeline-period-label--bottom) span {
  top: calc(100% + clamp(32px, 3.2vw, 40px));
}

body[data-page="over-ons"] .about-plan-timeline .plan-timeline-travel {
  position: absolute;
  top: 50%;
  left: var(--timeline-start, 7%);
  z-index: 1;
  width: max(0px, calc(var(--timeline-scroll-position, 7%) - var(--timeline-start, 7%)));
  height: 3px;
  background: #385193;
  border-radius: 999px;
  pointer-events: none;
  transform: translateY(-50%);
  transition: width 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

body[data-page="over-ons"] .about-plan-timeline .plan-timeline-point::before {
  background: #fbfaf6;
}

body[data-page="over-ons"] .about-plan-timeline .plan-timeline-point--active::before {
  width: 14px;
  height: 14px;
  background: #fbfaf6;
  border: 3px solid #385193;
  box-shadow: 0 0 0 3px rgba(56, 81, 147, 0.1);
}

body[data-page="over-ons"] .about-plan-timeline .plan-timeline-years {
  padding-top: clamp(8px, 1.2vw, 14px);
  border-top-color: rgba(56, 81, 147, 0.12);
}

body[data-page="over-ons"] .about-plan-timeline .plan-timeline-years span {
  top: clamp(8px, 1.2vw, 14px);
  font-size: clamp(0.8rem, 0.9vw, 0.96rem);
}

body[data-page="over-ons"] .about-plan-timeline .plan-timeline-feature {
  grid-template-columns: minmax(96px, 0.16fr) minmax(0, 1fr);
  gap: clamp(24px, 3.2vw, 44px);
  width: min(1120px, 90%);
  min-height: clamp(156px, 17vw, 190px);
  justify-self: center;
  padding: clamp(20px, 2.4vw, 30px);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.62);
  border-color: rgba(56, 81, 147, 0.13);
  border-radius: 16px;
  box-shadow: 0 18px 46px rgba(17, 25, 48, 0.08);
  backdrop-filter: blur(10px);
  will-change: opacity, transform;
}

body[data-page="over-ons"] .about-plan-timeline .plan-timeline-feature strong {
  font-family: var(--font-body);
  font-size: clamp(2rem, 2.8vw, 3rem);
  font-weight: 650;
}

body[data-page="over-ons"] .about-plan-timeline .plan-timeline-feature h3 {
  margin-bottom: clamp(7px, 1vw, 11px);
  font-family: var(--font-body);
  font-size: clamp(1.12rem, 1.4vw, 1.48rem);
}

body[data-page="over-ons"] .about-plan-timeline .plan-timeline-feature p {
  font-family: var(--font-body);
  font-size: clamp(0.82rem, 0.9vw, 0.94rem);
  line-height: 1.46;
}

body[data-page="over-ons"] .about-plan-timeline .plan-timeline-feature span {
  font-family: var(--font-body);
}

body[data-page="over-ons"] .about-plan-timeline .plan-timeline-feature span[hidden] {
  display: none !important;
}

@media (min-width: 1001px) and (min-height: 680px) {
  body[data-page="over-ons"] .about-plan-timeline.is-scroll-enabled {
    height: calc(100svh + 2600px);
    min-height: 0;
    padding: 0 !important;
    overflow: visible;
  }

  body[data-page="over-ons"] .about-plan-timeline.is-scroll-enabled .plan-timeline-frame {
    position: sticky;
    top: 0;
    display: grid;
    grid-template-rows: auto minmax(0, 1fr);
    gap: clamp(10px, 1.5vh, 16px);
    height: 100svh;
    padding-top: clamp(78px, 9vh, 94px);
    padding-bottom: clamp(14px, 2vh, 24px);
    overflow: hidden;
  }

  body[data-page="over-ons"] .about-plan-timeline.is-scroll-enabled .plan-timeline-map {
    display: grid;
    grid-template-rows: clamp(170px, 26vh, 210px) auto minmax(150px, 20vh, 185px);
    gap: clamp(8px, 1.2vh, 14px);
    min-height: 0;
    align-content: start;
    overflow: visible;
  }

  body[data-page="over-ons"] .about-plan-timeline.is-scroll-enabled .plan-timeline-axis {
    height: 100%;
    min-height: 0;
  }

  body[data-page="over-ons"] .about-plan-timeline.is-scroll-enabled .plan-timeline-years {
    padding-top: clamp(6px, 1vh, 10px);
  }

  body[data-page="over-ons"] .about-plan-timeline.is-scroll-enabled .plan-timeline-feature {
    min-height: 0;
    height: 100%;
    padding: clamp(16px, 2vw, 26px);
    align-content: center;
    box-sizing: border-box;
  }

  body[data-page="over-ons"] .about-plan-timeline.is-scroll-enabled .plan-timeline-travel {
    transition: none;
  }
}

/* Give the About timeline a taller vertical field and keep it clear of the fixed navigation. */
@media (min-width: 1001px) {
  body[data-page="over-ons"] .about-plan-timeline:not(.is-scroll-enabled) {
    padding: calc(var(--header-height) + clamp(48px, 7vh, 72px)) 0
      clamp(110px, 12vw, 160px) !important;
  }

  body[data-page="over-ons"] .about-plan-timeline:not(.is-scroll-enabled) .plan-timeline-map {
    row-gap: clamp(24px, 3vh, 36px);
  }

  body[data-page="over-ons"] .about-plan-timeline:not(.is-scroll-enabled) .plan-timeline-axis {
    min-height: clamp(300px, 30vw, 390px);
  }
}

@media (min-width: 1001px) and (min-height: 680px) {
  body[data-page="over-ons"] .about-plan-timeline.is-scroll-enabled .plan-timeline-frame {
    padding-top: calc(var(--header-height) + clamp(24px, 3vh, 40px));
  }

  body[data-page="over-ons"] .about-plan-timeline.is-scroll-enabled .plan-timeline-map {
    grid-template-rows: clamp(200px, 29vh, 240px) auto minmax(150px, 20vh, 185px);
    row-gap: clamp(16px, 2vh, 24px);
  }
}

/* Use the shared cream canvas on the public projects overview and detail pages. */
body[data-page="projecten"]:not(:has([data-project-admin])),
body[data-page="projecten"]:not(:has([data-project-admin])) > main,
body[data-page="projecten"]:not(:has([data-project-admin])) .project-board-section,
body[data-page="projecten"]:not(:has([data-project-admin])) .project-builder-page,
body[data-page="projecten"]:not(:has([data-project-admin])) .project-static-page {
  background: #f3f0e7 !important;
  background-image: none !important;
  background-size: auto !important;
}

/* Pin the four-person team grid and reveal each portrait in sequence. */
@media (min-width: 1001px) and (min-height: 680px) and (prefers-reduced-motion: no-preference) {
  body[data-page="over-ons"] .about-team-section.is-scroll-enabled {
    height: 360vh;
    height: 360svh;
    padding: 0 !important;
    overflow: visible;
  }

  body[data-page="over-ons"] .about-team-section.is-scroll-enabled > .about-frame {
    position: sticky;
    top: 0;
    z-index: 1;
    display: grid;
    grid-template-rows: auto auto;
    align-content: center;
    height: 100vh;
    height: 100svh;
    min-height: 0;
    padding-top: calc(var(--header-height) + clamp(22px, 3vh, 38px));
    padding-bottom: clamp(28px, 4vh, 52px);
    overflow: hidden;
  }

  body[data-page="over-ons"] .about-team-section.is-scroll-enabled .about-team-grid {
    margin-top: clamp(34px, 5vh, 58px);
  }

  body[data-page="over-ons"] .about-team-section.is-scroll-enabled .about-team-card {
    opacity: var(--team-card-opacity, 0);
    transform: translate3d(0, var(--team-card-y, 32px), 0)
      scale(var(--team-card-scale, 0.965));
    transform-origin: center bottom;
    filter: blur(var(--team-card-blur, 5px));
    will-change: opacity, transform, filter;
  }
}

/* Use one continuous cream canvas across the full About page; keep the branded footer intact. */
body[data-page="over-ons"],
body[data-page="over-ons"] main.about-page,
body[data-page="over-ons"] main.about-page > section {
  background: #f3f0e7 !important;
  background-image: none !important;
}

body[data-page="over-ons"] .about-plan-timeline .plan-timeline-point::before,
body[data-page="over-ons"] .about-plan-timeline .plan-timeline-point--active::before {
  background: #f3f0e7;
}

/* Reserve clearance for upward-extending milestone labels at every desktop viewport height. */
@media (min-width: 1001px) {
  body[data-page="over-ons"] .about-plan-timeline .plan-timeline-frame,
  body[data-page="over-ons"] .about-plan-timeline.is-scroll-enabled .plan-timeline-frame {
    row-gap: clamp(84px, 10vh, 104px);
  }

  body[data-page="over-ons"] .about-plan-timeline .plan-timeline-title {
    position: relative;
    z-index: 2;
  }
}

/* Use the shared lightweight display-title treatment throughout the materials offer. */
body[data-page="service-detail"] .material-offer-head h2,
body[data-page="service-detail"] .material-offer-card h3 {
  font-family: var(--font-h1);
  font-weight: var(--font-h1-weight);
}

body[data-page="service-detail"] .material-offer-card {
  box-shadow: none;
}

body[data-page="over-ons"] .about-team-section h2 {
  font-family: var(--font-h1);
  font-weight: var(--font-h1-weight);
}

/* Mirror the homepage mission reveal and wave treatment on the About statement. */
body[data-page="over-ons"] .about-statement-section {
  background: #f3f0e7 !important;
  background-image: none !important;
}

body[data-page="over-ons"] .about-statement-accent {
  color: #405aa2;
  font-weight: 700;
}

body[data-page="over-ons"] .about-statement-accent.wave-underline {
  padding-bottom: 0.22em;
}

body[data-page="over-ons"] .about-statement-accent.wave-underline::after {
  height: 0.22em;
  background-image: var(--wave-pattern);
  background-position: left center;
  background-size: 0.78em 0.22em;
  animation: none !important;
  filter: none;
}

@media (min-width: 1001px) and (prefers-reduced-motion: no-preference) {
  body[data-page="over-ons"] .about-statement-section {
    min-height: 220vh;
    min-height: 220svh;
    padding: 0 !important;
    overflow: visible;
  }

  body[data-page="over-ons"] .about-statement-section .about-frame {
    position: sticky;
    top: 0;
    z-index: 1;
    display: grid;
    align-items: center;
    width: 100%;
    max-width: none;
    height: 100vh;
    height: 100svh;
    min-height: 0;
    padding: clamp(90px, 12vh, 132px) clamp(48px, 8vw, 148px)
      clamp(54px, 8vh, 86px) !important;
    overflow: hidden;
  }

  body[data-page="over-ons"] .about-statement[data-about-statement-text] {
    transform: translate3d(0, var(--about-statement-y, 18px), 0)
      scale(var(--about-statement-scale, 0.985));
    transform-origin: center;
    will-change: transform;
  }

  body[data-page="over-ons"] .about-statement-word {
    display: inline-block;
    opacity: var(--about-word-opacity, 0.18);
    transform: translate3d(0, var(--about-word-y, 10px), 0);
    filter: blur(var(--about-word-blur, 2.5px));
    will-change: transform, opacity, filter;
  }

  body[data-page="over-ons"] .about-statement-accent.wave-underline::after {
    right: auto;
    width: calc(var(--about-wave-progress, 0) * 100%);
    transform: none;
    transition: none;
    will-change: width;
  }
}

/* Contact page: one cream content surface; the footer keeps its branded treatment. */
body[data-page="contact"] .contact-page,
body[data-page="contact"] .contact-form-section {
  color: #111930;
  background: #f3f0e7 !important;
  background-image: none !important;
  background-size: auto !important;
}

body[data-page="contact"] main.contact-page > .contact-form-section:first-child {
  padding: clamp(132px, 15vh, 166px) 0 clamp(72px, 8vw, 104px);
}

body[data-page="contact"] .contact-form-copy .contact-kicker,
body[data-page="contact"] .contact-form-section .contact-kicker {
  color: #385193;
}

body[data-page="contact"] .contact-form-copy h1,
body[data-page="contact"] .contact-person-list span {
  color: #111930;
}

body[data-page="contact"] .contact-form-copy h1 {
  max-width: 720px;
  margin: 0;
  font-family: var(--font-h1);
  font-size: clamp(3.5rem, 6.7vw, 7.8rem);
  font-weight: var(--font-h1-weight);
  letter-spacing: -0.04em;
  line-height: 0.94;
}

body[data-page="contact"] .contact-form-copy > p,
body[data-page="contact"] .contact-person-list a {
  color: rgba(17, 25, 48, 0.72);
}

body[data-page="contact"] .contact-person-list {
  border-top-color: rgba(56, 81, 147, 0.18);
}

body[data-page="contact"] .contact-person-list a {
  border-bottom-color: rgba(56, 81, 147, 0.18);
}

body[data-page="contact"] .contact-form--page {
  background: #fbfaf6 !important;
  border-color: rgba(56, 81, 147, 0.14);
  box-shadow: 0 24px 58px rgba(17, 25, 48, 0.1);
}

@media (max-width: 720px) {
  body[data-page="contact"] main.contact-page > .contact-form-section:first-child {
    padding: 116px 0 64px;
  }

  body[data-page="contact"] .contact-form-copy h1 {
    font-size: clamp(3rem, 13vw, 5rem);
  }
}

/* Contact request: compact, viewport-aware two-column layout. */
@media (min-width: 1061px) {
  body[data-page="contact"] main.contact-page > .contact-form-section:first-child {
    display: flex;
    min-height: 100vh;
    min-height: 100svh;
    padding: clamp(108px, 12vh, 132px) 0 clamp(38px, 5vh, 58px);
    align-items: center;
  }

  body[data-page="contact"] .contact-page-frame {
    width: min(1500px, calc(100% - clamp(48px, 7vw, 120px)));
  }

  body[data-page="contact"] .contact-form-layout {
    grid-template-columns: minmax(0, 1fr) minmax(500px, 0.78fr);
    gap: clamp(54px, 7vw, 112px);
    align-items: center;
  }

  body[data-page="contact"] .contact-form-copy {
    position: static;
  }

  body[data-page="contact"] .contact-form-copy h1 {
    max-width: 690px;
    font-size: clamp(3.8rem, 5vw, 5.75rem);
    line-height: 0.96;
  }

  body[data-page="contact"] .contact-form-copy > p {
    max-width: 570px;
    margin-top: clamp(20px, 2.5vh, 28px);
    font-size: clamp(1rem, 1.15vw, 1.18rem);
    line-height: 1.5;
  }

  body[data-page="contact"] .contact-person-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 650px;
    margin-top: clamp(26px, 3.5vh, 38px);
  }

  body[data-page="contact"] .contact-person-list a {
    grid-template-columns: 1fr;
    gap: 3px;
    padding: 17px 0;
  }

  body[data-page="contact"] .contact-person-list a:first-child {
    padding-right: 22px;
  }

  body[data-page="contact"] .contact-person-list a + a {
    padding-left: 22px;
    border-left: 1px solid rgba(56, 81, 147, 0.18);
  }
}

body[data-page="contact"] .contact-kicker {
  margin-bottom: clamp(12px, 1.8vh, 18px);
  font-size: clamp(0.76rem, 0.85vw, 0.9rem);
}

body[data-page="contact"] .contact-form--page {
  gap: 11px;
  padding: clamp(22px, 2.3vw, 30px);
  border-radius: 22px;
}

body[data-page="contact"] .contact-form__grid {
  gap: 13px;
}

body[data-page="contact"] .contact-form--page label {
  font-size: 0.84rem;
  line-height: 1.3;
}

body[data-page="contact"] .contact-form--page input,
body[data-page="contact"] .contact-form--page select {
  height: 46px;
  margin-top: 5px;
  padding-inline: 14px;
  border-radius: 13px;
}

body[data-page="contact"] .contact-form--page select {
  background-position:
    calc(100% - 20px) 19px,
    calc(100% - 14px) 19px;
}

body[data-page="contact"] .contact-form--page textarea {
  min-height: 108px;
  margin-top: 5px;
  padding: 13px 14px;
  border-radius: 13px;
  resize: vertical;
}

body[data-page="contact"] .contact-form--page .primary-link {
  min-height: 48px;
  margin-top: 2px;
}

body[data-page="contact"] .contact-form--page .form-note {
  margin-top: 0;
  font-size: 0.8rem;
}

@media (max-width: 1060px) {
  body[data-page="contact"] main.contact-page > .contact-form-section:first-child {
    padding: 124px 0 72px;
  }

  body[data-page="contact"] .contact-form-copy h1 {
    max-width: 680px;
    font-size: clamp(3.4rem, 9vw, 5.5rem);
  }

  body[data-page="contact"] .contact-form-copy > p {
    margin-top: 22px;
  }

  body[data-page="contact"] .contact-form-layout {
    gap: 42px;
  }
}

@media (max-width: 720px) {
  body[data-page="contact"] main.contact-page > .contact-form-section:first-child {
    padding: 108px 0 54px;
  }

  body[data-page="contact"] .contact-form-copy h1 {
    font-size: clamp(2.8rem, 13vw, 4.2rem);
  }

  body[data-page="contact"] .contact-person-list {
    margin-top: 28px;
  }

  body[data-page="contact"] .contact-form--page {
    padding: 19px;
  }

  body[data-page="contact"] .contact-form__grid {
    gap: 11px;
  }
}

/* Give the impact tool a calm two-card rhythm and let the embedded widget keep its native scale. */
@media (min-width: 1121px) {
  body[data-page="service-detail"] .service-widget-layout {
    align-items: start;
  }

  body[data-page="service-detail"] .service-widget-ladder,
  body[data-page="service-detail"] .service-widget-frame {
    align-self: start;
  }

  body[data-page="service-detail"] .service-widget-frame {
    display: block;
    height: 420px;
    min-height: 0;
    overflow: visible;
    background: transparent !important;
    border: 0;
    border-radius: 18px;
    box-shadow: none;
  }

  body[data-page="service-detail"] .service-widget-ladder {
    grid-template-rows: auto repeat(4, minmax(0, 1fr));
    align-content: stretch;
    height: 420px;
    min-height: 420px;
  }

  body[data-page="service-detail"] .service-widget-frame iframe {
    position: static;
    display: block;
    width: 100%;
    height: 420px;
    min-height: 420px;
    overflow: hidden;
    background: transparent;
    border: 0;
    border-radius: 18px;
    box-shadow: 0 18px 42px rgba(7, 14, 36, 0.08);
    transform: none;
  }
}

@media (max-width: 1120px) {
  body[data-page="service-detail"] .service-widget-ladder {
    height: auto !important;
    min-height: 0 !important;
  }
}

/* Keep expanded solution cards compact while still allowing them to scroll when content exceeds the viewport. */
@media (min-width: 901px) {
  body[data-page="home"] .home-approach-card.is-expanded {
    display: grid;
    grid-template-rows: auto auto auto;
    height: auto;
    min-height: 0;
    align-content: start;
    padding: clamp(28px, 4vh, 42px) clamp(38px, 4vw, 60px);
    overflow: auto;
  }

  body[data-page="home"] .home-approach-card.is-expanded > h3 {
    font-size: clamp(1.9rem, 4.6vh, 2.6rem);
  }

  body[data-page="home"] .home-approach-card.is-expanded > p {
    margin-top: clamp(8px, 1.2vh, 12px);
    font-size: clamp(0.94rem, 1vw, 1.08rem);
    line-height: 1.45;
  }

  body[data-page="home"] .home-approach-card.is-expanded .home-approach-card__detail:not([hidden]) {
    display: block;
    align-self: start;
    height: auto;
    min-height: 0;
    padding-top: clamp(18px, 2.5vh, 28px);
    margin-top: clamp(18px, 2.5vh, 28px);
  }

  body[data-page="home"] .home-approach-card--analysis.is-expanded .home-solution-detail--analysis {
    grid-template-rows: minmax(0, 1fr) auto;
    height: 100%;
    min-height: 0;
    gap: clamp(18px, 2.5vh, 28px) clamp(28px, 3vw, 46px);
  }

  body[data-page="home"] .home-approach-card--analysis.is-expanded .home-solution-detail__analysis-chart,
  body[data-page="home"] .home-approach-card--analysis.is-expanded .home-solution-detail__lead {
    height: auto;
    min-height: 0;
  }

  body[data-page="home"] .home-approach-card--analysis.is-expanded .home-solution-detail__analysis-chart {
    padding: clamp(20px, 2.8vh, 30px);
  }

  body[data-page="home"] .home-approach-card--analysis.is-expanded .home-solution-detail__analysis-chart svg {
    width: min(100%, 380px);
    max-height: min(28vh, 230px);
  }

  body[data-page="home"] .home-approach-card--analysis.is-expanded .home-solution-detail__lead {
    gap: clamp(12px, 1.8vh, 18px);
    padding: clamp(22px, 3vh, 34px);
  }

  body[data-page="home"] .home-approach-card.is-expanded .home-solution-detail,
  body[data-page="home"] .home-approach-card.is-expanded .home-solution-detail p,
  body[data-page="home"] .home-approach-card.is-expanded .home-solution-detail li {
    font-size: clamp(0.82rem, 0.86vw, 0.96rem);
    line-height: 1.45;
  }

  body[data-page="home"] .home-approach-card.is-expanded .home-solution-detail h3 {
    margin-bottom: 9px;
    font-size: clamp(0.98rem, 1vw, 1.1rem);
  }

  body[data-page="home"] .home-approach-card.is-expanded .home-solution-detail--processing,
  body[data-page="home"] .home-approach-card.is-expanded .home-solution-detail--reuse {
    height: auto;
    min-height: 0;
  }

  body[data-page="home"] .home-approach-card.is-expanded .home-solution-detail__columns {
    height: auto;
    min-height: 0;
    gap: clamp(18px, 2vw, 30px);
  }

  body[data-page="home"] .home-approach-card.is-expanded .home-solution-detail__column {
    height: auto;
    min-height: 0;
    padding: clamp(22px, 3vh, 34px);
  }

  body[data-page="home"] .home-approach-card.is-expanded .home-solution-detail__icon {
    width: clamp(48px, 6vh, 62px);
    height: clamp(48px, 6vh, 62px);
    margin-top: clamp(16px, 2.5vh, 24px);
  }

  body[data-page="home"] .home-approach-card.is-expanded .home-solution-detail--reuse {
    align-items: stretch;
    gap: clamp(34px, 4vw, 64px);
  }

  body[data-page="home"] .home-approach-card.is-expanded .home-solution-detail__reuse-copy {
    grid-template-rows: repeat(2, minmax(0, 1fr));
    height: 100%;
    min-height: 0;
    gap: clamp(16px, 2.2vh, 24px);
  }

  body[data-page="home"] .home-approach-card.is-expanded .home-solution-detail__reuse-copy section {
    min-height: 0;
    padding: clamp(22px, 3vh, 34px);
    align-content: center;
  }

  body[data-page="home"] .home-approach-card.is-expanded .home-solution-detail__reuse-art {
    align-self: center;
    width: min(400px, 90%);
    max-height: min(48vh, 360px);
  }
}

/* Keep the centered BluePrint heading in its own row above the timeline labels and rail. */
@media (min-width: 1001px) and (min-height: 680px) {
  body[data-page="over-ons"] .about-plan-timeline.is-scroll-enabled .plan-timeline-frame {
    grid-template-rows: auto minmax(0, 1fr);
    gap: clamp(84px, 10vh, 104px);
    padding-top: calc(var(--header-height) + clamp(24px, 3vh, 40px));
  }

  body[data-page="over-ons"] .about-plan-timeline.is-scroll-enabled .plan-timeline-title {
    position: relative;
    z-index: 2;
  }

  body[data-page="over-ons"] .about-plan-timeline.is-scroll-enabled .plan-timeline-map {
    grid-template-rows: minmax(0, 1fr) auto clamp(160px, 20vh, 190px);
    row-gap: clamp(16px, 2vh, 24px);
    height: 100%;
    align-content: stretch;
  }

  body[data-page="over-ons"] .about-plan-timeline.is-scroll-enabled .plan-timeline-axis {
    height: auto;
    min-height: clamp(180px, 28vh, 340px);
  }

  body[data-page="over-ons"] .about-plan-timeline.is-scroll-enabled .plan-timeline-feature {
    align-self: end;
  }
}
/* Contact page: cream editorial layout with a replaceable image panel. */
body[data-page="contact"] {
  background: #f3f0e7;
}

body[data-page="contact"] .contact-page,
body[data-page="contact"] .contact-form-section {
  background: #f3f0e7 !important;
  background-image: none !important;
}

body[data-page="contact"] main.contact-page > .contact-form-section:first-child {
  min-height: 0;
  padding: clamp(116px, 13vh, 164px) 0 clamp(72px, 8vw, 112px);
}

body[data-page="contact"] .contact-page-frame {
  width: min(1440px, calc(100% - clamp(34px, 7vw, 116px)));
}

body[data-page="contact"] .contact-form-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.62fr);
  gap: clamp(30px, 4.5vw, 72px);
  align-items: start;
}

body[data-page="contact"] .contact-form-column {
  display: contents;
  min-width: 0;
}

body[data-page="contact"] .contact-form-copy {
  grid-column: 1 / -1;
  grid-row: 1;
}

body[data-page="contact"] .contact-form--page {
  grid-column: 1;
  grid-row: 2;
}

body[data-page="contact"] .contact-form-copy {
  position: static;
}

body[data-page="contact"] .contact-form-copy .contact-kicker {
  margin-bottom: 18px;
  color: var(--blue);
}

body[data-page="contact"] .contact-form-copy h1 {
  max-width: 760px;
  color: #111930;
  font-size: clamp(3.2rem, 5.3vw, 5.8rem);
  font-weight: 850;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

body[data-page="contact"] .contact-form-copy > p {
  max-width: 610px;
  margin-top: 22px;
  color: rgba(17, 25, 48, 0.68);
  font-size: clamp(1rem, 1.2vw, 1.14rem);
  font-weight: 650;
  line-height: 1.55;
}

body[data-page="contact"] .contact-form--page {
  display: grid;
  width: 100%;
  max-width: none;
  gap: 20px;
  padding: clamp(24px, 2.6vw, 34px);
  color: #111930;
  background: #ffffff !important;
  border: 1px solid rgba(17, 25, 48, 0.06);
  border-radius: 20px;
  box-shadow: 0 22px 55px rgba(17, 25, 48, 0.08);
}

body[data-page="contact"] .contact-form__grid {
  gap: clamp(14px, 1.8vw, 24px);
}

body[data-page="contact"] .contact-form--page label {
  color: #111930;
  font-size: 0.86rem;
  font-weight: 750;
  line-height: 1.3;
}

body[data-page="contact"] .contact-form--page input,
body[data-page="contact"] .contact-form--page select,
body[data-page="contact"] .contact-form--page textarea {
  margin-top: 8px;
  color: #111930;
  background: #f6f6f5;
  border: 1px solid transparent;
  border-radius: 12px;
}

body[data-page="contact"] .contact-form--page input,
body[data-page="contact"] .contact-form--page select {
  height: 52px;
  padding-inline: 16px;
}

body[data-page="contact"] .contact-form--page textarea {
  min-height: 154px;
  padding: 15px 16px;
  resize: vertical;
}

body[data-page="contact"] .contact-form--page input::placeholder,
body[data-page="contact"] .contact-form--page textarea::placeholder {
  color: rgba(17, 25, 48, 0.42);
}

body[data-page="contact"] .contact-form--page select {
  appearance: none;
  background-color: #f6f6f5;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--blue) 50%),
    linear-gradient(135deg, var(--blue) 50%, transparent 50%);
  background-position:
    calc(100% - 20px) center,
    calc(100% - 14px) center;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

body[data-page="contact"] .contact-form--page input:focus,
body[data-page="contact"] .contact-form--page select:focus,
body[data-page="contact"] .contact-form--page textarea:focus {
  background: #ffffff;
  border-color: rgba(56, 81, 147, 0.42);
  box-shadow: 0 0 0 4px rgba(56, 81, 147, 0.1);
}

body[data-page="contact"] .contact-form--page .primary-link {
  min-height: 54px;
  margin-top: 2px;
  color: #ffffff;
  background: var(--blue);
  border-radius: 12px;
}

body[data-page="contact"] .contact-form--page .primary-link:hover,
body[data-page="contact"] .contact-form--page .primary-link:focus-visible {
  color: #ffffff;
  background: var(--blue-deep);
}

body[data-page="contact"] .contact-form--page .form-note {
  margin: 0;
  color: rgba(17, 25, 48, 0.58);
  font-size: 0.82rem;
  font-weight: 650;
  text-align: center;
}

body[data-page="contact"] .contact-page-media {
  grid-column: 2;
  grid-row: 2;
  position: relative;
  min-height: 650px;
  overflow: hidden;
  isolation: isolate;
  background: var(--blue-deep);
  border-radius: 20px;
  box-shadow: 0 22px 55px rgba(17, 25, 48, 0.14);
}

body[data-page="contact"] .contact-page-media::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background: linear-gradient(180deg, rgba(9, 17, 39, 0.04) 38%, rgba(9, 17, 39, 0.78) 100%);
}

body[data-page="contact"] .contact-page-media > img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

body[data-page="contact"] .contact-page-media__details {
  position: absolute;
  right: 16px;
  bottom: 16px;
  left: 16px;
  display: grid;
  gap: 13px;
  padding: 20px;
  color: #ffffff;
  background: rgba(9, 17, 39, 0.78);
  border: 1px solid rgba(201, 235, 255, 0.22);
  border-radius: 14px;
  backdrop-filter: blur(10px);
}

body[data-page="contact"] .contact-page-media__label {
  margin: 0 0 2px;
  color: #c9ebff;
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

body[data-page="contact"] .contact-page-media__details a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 700;
}

body[data-page="contact"] .contact-page-media__details a:hover,
body[data-page="contact"] .contact-page-media__details a:focus-visible {
  color: #c9ebff;
}

body[data-page="contact"] .contact-page-media__details svg {
  flex: 0 0 auto;
  width: 19px;
  height: 19px;
  fill: none;
  stroke: #7ea4ff;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

body[data-page="contact"] .contact-page-media__address {
  margin: 2px 0 0 29px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.45;
}

@media (max-width: 899px) {
  body[data-page="contact"] .contact-form-copy {
    grid-column: 1;
    grid-row: 1;
  }

  body[data-page="contact"] .contact-form--page {
    grid-column: 1;
    grid-row: 2;
  }

  body[data-page="contact"] .contact-form-layout {
    grid-template-columns: 1fr;
  }

  body[data-page="contact"] .contact-page-media {
    grid-column: 1;
    grid-row: 3;
    min-height: 460px;
  }
}

@media (max-width: 720px) {
  body[data-page="contact"] main.contact-page > .contact-form-section:first-child {
    padding: 108px 0 62px;
  }

  body[data-page="contact"] .contact-page-frame {
    width: min(100% - 28px, 1440px);
  }

  body[data-page="contact"] .contact-form-layout {
    gap: 28px;
  }

  body[data-page="contact"] .contact-form-copy h1 {
    font-size: clamp(2.8rem, 13vw, 4.4rem);
  }

  body[data-page="contact"] .contact-form__grid {
    grid-template-columns: 1fr;
  }

  body[data-page="contact"] .contact-form--page {
    padding: 20px;
  }

  body[data-page="contact"] .contact-page-media {
    min-height: 440px;
    border-radius: 18px;
  }

  body[data-page="contact"] .contact-page-media__details {
    right: 12px;
    bottom: 12px;
    left: 12px;
    padding: 16px;
  }
}

/* Keep the vacancies hero in the same typographic scale as the other editorial pages. */
body[data-page="vacatures"] .vacancy-hero-section {
  padding: clamp(112px, 13vh, 152px) 0 clamp(48px, 7vh, 76px);
}

body[data-page="vacatures"] .vacancy-hero-section h1 {
  max-width: none;
  font-size: clamp(3.4rem, 5.3vw, 5.8rem);
  line-height: 0.96;
}

body[data-page="vacatures"] .vacancy-hero-copy {
  max-width: 700px;
  margin-top: clamp(24px, 3.5vw, 42px);
  font-size: clamp(1rem, 1.2vw, 1.18rem);
  line-height: 1.55;
}

/* Use one real vector arrow everywhere the older text arrows were used. */
.link-arrow__icon,
.home-prefooter-cta__content > a > span[aria-hidden="true"],
.home-footer-partner > span[aria-hidden="true"],
.material-offer-link > span[aria-hidden="true"],
.product-spec-link > span[aria-hidden="true"],
.about-vacancy-row > a > span[aria-hidden="true"] {
  display: inline-block;
  flex: 0 0 auto;
  width: 1.15rem;
  height: 1.15rem;
  font-size: 0;
  line-height: 1;
  background: currentColor;
  -webkit-mask: url("/assets/icons/arrow-right.svg") center / contain no-repeat;
  mask: url("/assets/icons/arrow-right.svg") center / contain no-repeat;
}

.service-widget-impact__arrow {
  font-size: 0;
}

.service-widget-impact__arrow::before {
  display: block;
  width: 24px;
  height: 24px;
  content: "";
  background: currentColor;
  -webkit-mask: url("/assets/icons/arrow-right.svg") center / contain no-repeat;
  mask: url("/assets/icons/arrow-right.svg") center / contain no-repeat;
}

.service-detail-path span + span::before {
  display: block;
  width: 18px;
  height: 18px;
  content: "";
  background: currentColor;
  -webkit-mask: url("/assets/icons/arrow-right.svg") center / contain no-repeat;
  mask: url("/assets/icons/arrow-right.svg") center / contain no-repeat;
}

@media (max-width: 620px) {
  body[data-page="vacatures"] .vacancy-hero-section {
    padding-top: 104px;
  }

  body[data-page="vacatures"] .vacancy-hero-section h1 {
    font-size: clamp(3rem, 15vw, 4.5rem);
  }
}

/* Keep solution details inside the full card frame. The selected card expands
   across the three-card area while its neighbours make a small outward exit. */
@media (min-width: 981px) {
  body[data-page="home"] .home-approach-grid.has-expanded-card {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(16px, 1.8vw, 24px);
    align-items: stretch;
    overflow: visible;
  }

  body[data-page="home"] .home-approach-grid.has-expanded-card .home-approach-flow {
    display: none;
  }

  body[data-page="home"] .home-approach-grid.has-expanded-card .home-approach-card {
    grid-row: 1;
  }

  body[data-page="home"] .home-approach-grid.has-expanded-card .home-approach-card:nth-child(2) {
    grid-column: 1;
  }

  body[data-page="home"] .home-approach-grid.has-expanded-card .home-approach-card:nth-child(3) {
    grid-column: 2;
  }

  body[data-page="home"] .home-approach-grid.has-expanded-card .home-approach-card:nth-child(4) {
    grid-column: 3;
  }

  body[data-page="home"] .home-approach-grid.has-expanded-card .home-approach-card:not(.is-expanded) {
    position: absolute;
    inset-block-start: 0;
    z-index: 1;
    display: flex;
    width: auto;
    height: 100%;
    min-height: 0;
    pointer-events: none;
    opacity: 0;
    transform: translate3d(var(--solution-dismiss-x, 48px), var(--solution-dismiss-y, -18px), 0) scale(0.97);
    transition: opacity 260ms ease, transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
  }

  body[data-page="home"] .home-approach-grid.has-expanded-card .home-approach-card.is-expanded {
    position: relative;
    z-index: 2;
    display: grid;
    grid-column: 1 / -1;
    grid-row: 1;
    width: 100%;
    min-width: 0;
    height: auto;
    min-height: 0;
    align-self: start;
    overflow: visible;
    inset: auto;
    max-height: none;
    overflow: visible;
    overscroll-behavior: auto;
    box-shadow: 0 26px 60px rgba(17, 25, 48, 0.18) !important;
  }

  body[data-page="home"] .home-approach-grid.has-expanded-card .home-approach-card.is-expanded:hover {
    transform: none;
  }

  body[data-page="home"] .home-approach-grid.has-expanded-card .home-approach-card.is-expanded .home-approach-card__detail:not([hidden]) {
    height: auto;
    min-height: 0;
    overflow: visible;
  }

}

@media (max-width: 980px) {
  body[data-page="home"] .home-approach-grid.has-expanded-card {
    grid-template-columns: 1fr;
    gap: 0;
  }

  body[data-page="home"] .home-approach-grid.has-expanded-card .home-approach-card:not(.is-expanded) {
    display: none;
  }

  body[data-page="home"] .home-approach-grid.has-expanded-card .home-approach-card.is-expanded {
    position: relative;
    grid-column: 1;
    width: 100%;
    min-height: 0;
    inset: auto;
    max-height: none;
    overflow: visible;
    overscroll-behavior: auto;
    box-shadow: 0 26px 60px rgba(17, 25, 48, 0.18) !important;
  }
}

body.has-solution-dialog {
  overflow: visible;
}

/* Start the services reveal just before the section enters the viewport so it
   feels ready when the visitor reaches it, rather than arriving late. */
body[data-page="home"] .home-section--service-routes .reveal {
  transition:
    opacity 520ms ease,
    transform 520ms cubic-bezier(0.22, 1, 0.36, 1),
    border-color 220ms ease,
    box-shadow 220ms ease;
}

body[data-page="service-detail"] .service-widget-impact__arrow {
  font-size: 0 !important;
  line-height: 0;
}

/* Restore the bold hero treatment without changing the site's lighter global H1 style. */
body[data-page="home"] .home-hero-copy h1,
body[data-page="home"] .home-hero-copy h1 > span,
body[data-page="home"] .home-hero-copy h1 .home-hero-accent {
  font-weight: 800 !important;
}

body[data-page="home"] .home-hero-copy h1 .home-hero-connector {
  font-weight: 400 !important;
}

/* Use the lighter editorial title face for the service cards. */
body[data-page="home"] .home-service-card h3 {
  font-family: var(--font-h1);
  font-weight: var(--font-h1-weight);
  letter-spacing: -0.035em;
}

/* Give the mission statement enough vertical breathing room to fill the view. */
@media (min-width: 761px) {
  body[data-page="home"] .home-mission-grid {
    min-height: clamp(560px, 64svh, 720px);
  }
}

/* Keep the homepage hero copy centered over the video. */
body[data-page="home"] .home-hero-card {
  align-items: center;
  justify-items: center;
  padding-bottom: 0;
}

body[data-page="home"] .home-hero-copy {
  align-self: center;
  justify-self: center;
  max-width: min(860px, 100%);
  padding: 0;
  text-align: center;
  transform: none;
}

body[data-page="home"] .home-hero-copy h1 {
  justify-content: center;
  margin-inline: auto;
  text-align: left;
}

@media (max-width: 760px) {
  body[data-page="home"] .home-hero-card {
    padding-bottom: 0;
  }

  body[data-page="home"] .home-hero-copy {
    max-width: 100%;
  }
}

/* Keep the contact heading prominent without letting it overpower the form. */
@media (min-width: 1061px) {
  body[data-page="contact"] .contact-form-copy h1 {
    max-width: 680px;
    font-size: clamp(3.2rem, 4.5vw, 4.8rem);
    line-height: 0.98;
  }
}

@media (max-width: 1060px) {
  body[data-page="contact"] .contact-form-copy h1 {
    font-size: clamp(3rem, 8vw, 4.6rem);
  }
}

@media (max-width: 720px) {
  body[data-page="contact"] .contact-form-copy h1 {
    font-size: clamp(2.8rem, 12vw, 4rem);
  }
}

/* Keep the contact heading clear of the navigation at the top of the page. */
body[data-page="contact"] .contact-form-copy {
  padding-top: clamp(22px, 2.5vh, 32px);
}

/* Vacancy detail pages use the same calm editorial rhythm as the vacancy index. */
body[data-page="vacature-detail"] {
  color: #111930;
  background: #f3f0e7;
}

body[data-page="vacature-detail"] .job-detail-frame {
  width: min(1320px, calc(100% - clamp(36px, 8vw, 148px)));
  margin: 0 auto;
}

body[data-page="vacature-detail"] .job-detail-hero {
  padding: clamp(142px, 15vh, 196px) 0 clamp(70px, 9vw, 118px);
  background: #f3f0e7;
  border-bottom: 1px solid rgba(56, 81, 147, 0.14);
}

body[data-page="vacature-detail"] .job-detail-back {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: clamp(42px, 6vw, 76px);
  color: #385193;
  font-size: 0.92rem;
  font-weight: 700;
}

body[data-page="vacature-detail"] .job-detail-back span:first-child {
  font-size: 1.25rem;
  line-height: 1;
}

body[data-page="vacature-detail"] .job-detail-kicker,
body[data-page="vacature-detail"] .job-detail-cta__kicker {
  margin: 0 0 18px;
  color: #385193;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

body[data-page="vacature-detail"] .job-detail-hero h1 {
  max-width: 900px;
  margin: 0;
  color: #111930;
  font-family: var(--font-h1);
  font-size: clamp(3.2rem, 7vw, 7.4rem);
  font-weight: var(--font-h1-weight);
  letter-spacing: -0.055em;
  line-height: 0.96;
}

body[data-page="vacature-detail"] .job-detail-excerpt {
  max-width: 720px;
  margin: clamp(26px, 3vw, 38px) 0 0;
  color: rgba(17, 25, 48, 0.7);
  font-size: clamp(1.05rem, 1.6vw, 1.35rem);
  font-weight: 650;
  line-height: 1.55;
}

body[data-page="vacature-detail"] .job-detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: clamp(28px, 4vw, 46px);
}

body[data-page="vacature-detail"] .job-detail-meta span {
  padding: 10px 16px;
  color: #385193;
  font-size: 0.84rem;
  font-weight: 750;
  background: rgba(255, 255, 255, 0.56);
  border: 1px solid rgba(56, 81, 147, 0.18);
  border-radius: 999px;
}

body[data-page="vacature-detail"] .job-detail-content {
  padding: clamp(70px, 9vw, 124px) 0 clamp(88px, 11vw, 150px);
  background: #f3f0e7;
}

body[data-page="vacature-detail"] .job-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.42fr);
  gap: clamp(42px, 8vw, 132px);
  align-items: start;
}

body[data-page="vacature-detail"] .job-detail-copy {
  max-width: 760px;
}

body[data-page="vacature-detail"] .job-detail-copy p {
  margin: 0 0 24px;
  color: rgba(17, 25, 48, 0.78);
  font-size: clamp(1.08rem, 1.45vw, 1.28rem);
  line-height: 1.75;
}

body[data-page="vacature-detail"] .job-detail-cta {
  padding: clamp(26px, 3vw, 42px);
  background: #385193;
  border-radius: 20px;
  box-shadow: 0 24px 54px rgba(17, 25, 48, 0.13);
}

body[data-page="vacature-detail"] .job-detail-cta__kicker {
  color: #c9ebff;
}

body[data-page="vacature-detail"] .job-detail-cta h2 {
  margin: 0;
  color: #ffffff;
  font-family: var(--font-h1);
  font-size: clamp(2rem, 3.4vw, 3.5rem);
  font-weight: var(--font-h1-weight);
  letter-spacing: -0.035em;
  line-height: 1;
}

body[data-page="vacature-detail"] .job-detail-cta > p:not(.job-detail-cta__kicker) {
  margin: 22px 0 28px;
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.55;
}

body[data-page="vacature-detail"] .job-detail-cta .primary-link {
  color: #111930;
  background: #c9ebff;
  box-shadow: none;
}

body[data-page="vacature-detail"] .job-detail-cta .primary-link:hover,
body[data-page="vacature-detail"] .job-detail-cta .primary-link:focus-visible {
  color: #111930;
  background: #ffffff;
}

body[data-page="vacature-detail"] .job-detail-empty {
  width: min(900px, calc(100% - 40px));
  padding: 180px 0 140px;
  margin: 0 auto;
  color: #111930;
  font-size: 1.15rem;
}

body[data-page="vacature-detail"] .job-detail-empty a {
  color: #385193;
  font-weight: 750;
}

@media (max-width: 760px) {
  body[data-page="vacature-detail"] .job-detail-frame {
    width: min(100% - 28px, 1320px);
  }

  body[data-page="vacature-detail"] .job-detail-hero {
    padding-top: 132px;
  }

  body[data-page="vacature-detail"] .job-detail-layout {
    grid-template-columns: 1fr;
  }
}

/* Team portraits stay present while the scroll sequence brings them into
   focus one by one, instead of making each card fade into the layout. */
@media (min-width: 1001px) and (min-height: 680px) and (prefers-reduced-motion: no-preference) {
  body[data-page="over-ons"] .about-team-section.is-scroll-enabled .about-team-card {
    opacity: 1;
    transform: none;
    filter: none;
  }

  body[data-page="over-ons"] .about-team-section.is-scroll-enabled .about-team-card img {
    filter: grayscale(1) sepia(0.12) saturate(0.7) hue-rotate(185deg)
      blur(var(--team-card-blur, 12px));
  }
}

/* Anchor both service hero titles in the lower-left of their image. */
body[data-page="service-detail"] .service-detail-hero--bricks .service-detail-hero__layout,
body[data-page="service-detail"] .service-detail-hero--excavating .service-detail-hero__layout {
  align-items: end;
  justify-items: start;
}

body[data-page="service-detail"] .service-detail-hero--bricks .service-detail-hero__head,
body[data-page="service-detail"] .service-detail-hero--excavating .service-detail-hero__head {
  align-self: end;
  justify-self: start;
  justify-items: start;
  padding-bottom: clamp(30px, 6vh, 72px);
  text-align: left;
  transform: none;
}

body[data-page="service-detail"] .service-detail-hero--bricks .service-detail-hero__head h1,
body[data-page="service-detail"] .service-detail-hero--excavating .service-detail-hero__head h1 {
  justify-items: start;
  margin-inline: 0;
  text-align: left;
}

body[data-page="service-detail"] .service-detail-hero--bricks .service-detail-hero__head h1 > span,
body[data-page="service-detail"] .service-detail-hero--excavating .service-detail-hero__head h1 > span {
  justify-self: start;
}

body[data-page="service-detail"] .service-detail-hero--bricks .service-detail-hero__copy,
body[data-page="service-detail"] .service-detail-hero--excavating .service-detail-hero__copy,
body[data-page="service-detail"] .service-detail-hero--bricks .service-detail-hero__head > p:not(.service-detail-kicker):not(.service-detail-hero__copy),
body[data-page="service-detail"] .service-detail-hero--excavating .service-detail-hero__head > p:not(.service-detail-kicker):not(.service-detail-hero__copy) {
  margin-right: 0;
  margin-left: 0;
  text-align: left;
}

@media (max-width: 760px) {
  body[data-page="service-detail"] .service-detail-hero--bricks .service-detail-hero__layout,
  body[data-page="service-detail"] .service-detail-hero--excavating .service-detail-hero__layout {
    align-items: end;
    justify-items: center;
  }

  body[data-page="service-detail"] .service-detail-hero--bricks .service-detail-hero__head,
  body[data-page="service-detail"] .service-detail-hero--excavating .service-detail-hero__head {
    padding-bottom: clamp(22px, 5vh, 44px);
    width: 100%;
    justify-self: center;
    justify-items: center;
    text-align: center;
    transform: none;
  }

  /* Stack the service title into three readable lines on narrow screens so
     the connector cannot wrap awkwardly beside the main title. */
  body[data-page="service-detail"] .service-detail-hero--bricks .service-detail-hero__head h1,
  body[data-page="service-detail"] .service-detail-hero--excavating .service-detail-hero__head h1 {
    width: 100%;
    justify-items: center;
    text-align: center;
  }

  body[data-page="service-detail"] .service-detail-hero--bricks .service-hero-topline,
  body[data-page="service-detail"] .service-detail-hero--excavating .service-hero-topline {
    display: grid;
    justify-items: center;
    width: 100%;
    gap: 0.08em;
  }

  body[data-page="service-detail"] .service-detail-hero--bricks .service-hero-topline .service-hero-connector,
  body[data-page="service-detail"] .service-detail-hero--excavating .service-hero-topline .service-hero-connector {
    margin: 0;
  }

  body[data-page="service-detail"] .service-detail-hero--bricks .service-detail-hero__copy,
  body[data-page="service-detail"] .service-detail-hero--excavating .service-detail-hero__copy {
    margin-right: auto;
    margin-left: auto;
    text-align: center;
  }
}

/* Public project pages use one continuous editorial canvas. The builder/editor
   keeps its own preview treatment; these rules only shape published projects. */
body[data-page="projecten"]:not(:has([data-project-admin])):has(.project-builder-page) {
  --project-page-bg: #f3f0e7;
  --project-surface: #ffffff;
  --project-ink: #111930;
  --project-blue: #385193;
  --project-copy: rgba(17, 25, 48, 0.72);
}

body[data-page="projecten"]:not(:has([data-project-admin])):has(.project-builder-page) .project-builder-page {
  padding-bottom: clamp(72px, 9vh, 112px);
  color: var(--project-ink);
  background: var(--project-page-bg);
}

body[data-page="projecten"]:not(:has([data-project-admin])):has(.project-builder-page)
  .project-builder-page
  > .project-builder-hero {
  width: 100%;
  margin: 0;
}

body[data-page="projecten"]:not(:has([data-project-admin])):has(.project-builder-page)
  .project-builder-page
  > :is(.project-builder-section, .project-builder-meta, .project-builder-metrics, .project-builder-cta) {
  width: 100%;
  max-width: none;
  margin: 0 auto;
  border-radius: 0;
  box-shadow: none;
}

body[data-page="projecten"]:not(:has([data-project-admin])):has(.project-builder-page)
  .project-builder-page
  > .project-builder-section:not(.project-builder-section--dark),
body[data-page="projecten"]:not(:has([data-project-admin])):has(.project-builder-page)
  .project-builder-page
  > .project-builder-meta,
body[data-page="projecten"]:not(:has([data-project-admin])):has(.project-builder-page)
  .project-builder-page
  > .project-builder-metrics {
  background: var(--project-surface);
  border: 0;
}

body[data-page="projecten"]:not(:has([data-project-admin])):has(.project-builder-page)
  .project-builder-page
  > .project-builder-section
  + .project-builder-section,
body[data-page="projecten"]:not(:has([data-project-admin])):has(.project-builder-page)
  .project-builder-page
  > .project-builder-section
  + .project-builder-meta,
body[data-page="projecten"]:not(:has([data-project-admin])):has(.project-builder-page)
  .project-builder-page
  > .project-builder-meta
  + .project-builder-section,
body[data-page="projecten"]:not(:has([data-project-admin])):has(.project-builder-page)
  .project-builder-page
  > .project-builder-meta
  + .project-builder-metrics,
body[data-page="projecten"]:not(:has([data-project-admin])):has(.project-builder-page)
  .project-builder-page
  > .project-builder-metrics
  + .project-builder-section {
  border-top: 1px solid rgba(56, 81, 147, 0.12);
}

body[data-page="projecten"]:not(:has([data-project-admin])):has(.project-builder-page)
  .project-builder-page
  h1,
body[data-page="projecten"]:not(:has([data-project-admin])):has(.project-builder-page)
  .project-builder-page
  h2,
body[data-page="projecten"]:not(:has([data-project-admin])):has(.project-builder-page)
  .project-builder-page
  h3 {
  font-family: var(--font-display);
}

body[data-page="projecten"]:not(:has([data-project-admin])):has(.project-builder-page)
  .project-builder-page
  p,
body[data-page="projecten"]:not(:has([data-project-admin])):has(.project-builder-page)
  .project-builder-page
  dt,
body[data-page="projecten"]:not(:has([data-project-admin])):has(.project-builder-page)
  .project-builder-page
  dd {
  font-family: var(--font-body);
}

@media (max-width: 760px) {
  body[data-page="projecten"]:not(:has([data-project-admin])):has(.project-builder-page)
    .project-builder-page
    > :is(.project-builder-section, .project-builder-meta, .project-builder-metrics, .project-builder-cta) {
    width: 100%;
    max-width: none;
  }
}

/* Keep the service connector with the first title line instead of placing it
   on its own row above the accent title. */
body[data-page="service-detail"] .service-detail-hero__head h1 .service-hero-topline {
  display: inline-flex;
  align-items: baseline;
  justify-self: start;
  width: fit-content;
  gap: clamp(0.18em, 0.7vw, 0.38em);
}

body[data-page="service-detail"] .service-detail-hero__head h1 .service-hero-topline .service-hero-connector {
  margin: 0;
}

/* Keep the longer impact label intact on the desktop comparison rows. */
@media (min-width: 721px) {
  body[data-page="service-detail"] .service-widget-ladder__head,
  body[data-page="service-detail"] .service-widget-impact {
    grid-template-columns: minmax(max-content, 1.16fr) minmax(0, 0.9fr) 42px minmax(0, 1.08fr);
  }

  body[data-page="service-detail"] .service-widget-impact__label {
    white-space: nowrap;
    overflow-wrap: normal;
  }
}

/* Hash navigation on Over ons should land on fully visible, static sections. */
body[data-page="over-ons"].is-about-jump-navigation .reveal {
  opacity: 1;
  transform: none;
  transition: none;
}

body[data-page="over-ons"].is-about-jump-navigation .about-statement-section {
  min-height: auto;
  padding: clamp(112px, 12vw, 168px) 0 !important;
  overflow: visible;
}

body[data-page="over-ons"].is-about-jump-navigation .about-statement-section .about-frame {
  position: relative;
  height: auto;
  min-height: 0;
  padding: 0 clamp(18px, 3vw, 42px) !important;
  overflow: visible;
}

body[data-page="over-ons"].is-about-jump-navigation .about-statement[data-about-statement-text] {
  transform: none;
}

body[data-page="over-ons"].is-about-jump-navigation .about-statement-word {
  opacity: 1;
  transform: none;
  filter: none;
}

body[data-page="over-ons"].is-about-jump-navigation .about-statement-accent.wave-underline::after {
  width: 100%;
  transform: none;
  transition: none;
}

/* Keep Over ons static outside the BluePrint timeline. The timeline retains
   its dedicated scroll controller, while the rest of the page is immediately
   readable and does not wait for an intersection or scroll sequence. */
body[data-page="over-ons"] .reveal,
body[data-page="over-ons"] .about-statement-word,
body[data-page="over-ons"] .about-team-card {
  opacity: 1 !important;
  transform: none !important;
  filter: none !important;
  transition: none !important;
}

body[data-page="over-ons"] .about-statement[data-about-statement-text] {
  transform: none !important;
}

body[data-page="over-ons"] .about-statement-section {
  min-height: auto !important;
  padding: clamp(112px, 12vw, 168px) 0 !important;
  overflow: visible !important;
}

body[data-page="over-ons"] .about-statement-section .about-frame {
  position: relative !important;
  height: auto !important;
  min-height: 0 !important;
  padding: 0 clamp(18px, 3vw, 42px) !important;
  overflow: visible !important;
}

body[data-page="over-ons"] .about-statement-accent.wave-underline::after {
  width: 100% !important;
  transform: none !important;
  transition: none !important;
}

body[data-page="over-ons"] .about-team-section,
body[data-page="over-ons"] .about-team-section > .about-frame {
  height: auto !important;
  min-height: 0 !important;
  overflow: visible !important;
}

body[data-page="over-ons"] .about-team-section .about-team-card img {
  filter: none !important;
}

body[data-page="over-ons"] .about-team-photo {
  aspect-ratio: 3 / 2;
  min-height: 0;
  background: #e8edf5;
}

body[data-page="over-ons"] .about-team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
}

/* Give the portrait team photo a roomier frame so the crop follows the
   source image instead of forcing it into a shallow landscape card. */
body[data-page="over-ons"] .about-story-section .about-frame {
  grid-template-columns: minmax(0, 1fr) minmax(300px, 1fr);
}

body[data-page="over-ons"] .about-team-photo {
  width: min(100%, 500px);
  aspect-ratio: 3 / 4;
  justify-self: end;
}

body[data-page="over-ons"] .about-team-photo img {
  object-position: center;
}

@media (max-width: 1100px) {
  body[data-page="over-ons"] .about-team-photo {
    width: min(100%, 500px);
    justify-self: start;
  }
}

@media (max-width: 760px) {
  body[data-page="over-ons"] .about-team-photo {
    width: 100%;
    max-width: 500px;
    justify-self: stretch;
  }

  body[data-page="over-ons"] .about-team-photo img {
    object-position: center;
  }
}

/* Use the same warm sand-yellow canvas for every public footer and the
   homepage bridge section. */
body:not(.project-builder-admin) .site-footer.site-footer--brand {
  color: #111930 !important;
  background: #f3f0e7 !important;
  background-image: none !important;
  border-top-color: rgba(56, 81, 147, 0.14) !important;
}

body:not(.project-builder-admin) .site-footer.site-footer--brand .home-footer-logo {
  background-image: url("/assets/brand/blauwe-bagger-logo.svg") !important;
}

body:not(.project-builder-admin) .site-footer.site-footer--brand .home-footer-meta {
  border-bottom-color: rgba(56, 81, 147, 0.13) !important;
}

body:not(.project-builder-admin) .site-footer.site-footer--brand .home-footer-meta p,
body:not(.project-builder-admin) .site-footer.site-footer--brand .home-footer-meta a,
body:not(.project-builder-admin) .site-footer.site-footer--brand .home-footer-bottom,
body:not(.project-builder-admin) .site-footer.site-footer--brand .home-footer-brand p {
  color: rgba(17, 25, 48, 0.68) !important;
}

body:not(.project-builder-admin) .site-footer.site-footer--brand .home-footer-heading {
  color: #385193 !important;
}

body:not(.project-builder-admin) .site-footer.site-footer--brand .home-footer-address,
body:not(.project-builder-admin) .site-footer.site-footer--brand .home-footer-contact {
  border-top-color: rgba(56, 81, 147, 0.11) !important;
}

body:not(.project-builder-admin) .site-footer.site-footer--brand .home-footer-partner {
  color: #385193 !important;
  background: rgba(56, 81, 147, 0.06) !important;
  border-color: rgba(56, 81, 147, 0.18) !important;
}

body:not(.project-builder-admin) .site-footer.site-footer--brand .home-footer-partner:hover,
body:not(.project-builder-admin) .site-footer.site-footer--brand .home-footer-partner:focus-visible {
  color: #ffffff !important;
  background: #385193 !important;
  border-color: #385193 !important;
}

body:not(.project-builder-admin) .site-footer.site-footer--brand .home-footer-meta a:hover,
body:not(.project-builder-admin) .site-footer.site-footer--brand .home-footer-meta a:focus-visible,
body:not(.project-builder-admin) .site-footer.site-footer--brand .home-footer-bottom a:hover,
body:not(.project-builder-admin) .site-footer.site-footer--brand .home-footer-bottom a:focus-visible {
  color: #385193 !important;
}

/* Keep only the company registration numbers below the footer divider. */
body:not(.project-builder-admin) .site-footer.site-footer--brand .home-footer-contact {
  display: none !important;
}

body:not(.project-builder-admin) .site-footer.site-footer--brand .home-footer-bottom {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  column-gap: 20px;
  row-gap: 12px;
}

.home-footer-company-ids {
  display: inline-flex;
  flex-wrap: wrap;
  grid-column: 1;
  justify-self: start;
  justify-content: flex-start;
  gap: 8px 20px;
  color: rgba(17, 25, 48, 0.58);
  white-space: nowrap;
}

/* Keep every bottom-row item on a predictable track: company numbers left,
   privacy links in the middle, and the copyright notice at the far right. */
body:not(.project-builder-admin) .site-footer.site-footer--brand .home-footer-bottom > span:not(.home-footer-company-ids) {
  grid-column: 3;
  justify-self: end;
  text-align: right;
  white-space: nowrap;
}

body:not(.project-builder-admin) .site-footer.site-footer--brand .home-footer-bottom > a {
  grid-column: 2;
  justify-self: center;
  white-space: nowrap;
}

body:not(.project-builder-admin) .site-footer.site-footer--brand .home-footer-bottom__links {
  grid-column: 2;
  justify-self: center;
  justify-content: center;
  white-space: nowrap;
}

body:not(.project-builder-admin) .site-footer.site-footer--brand .home-footer-links a[href*="instagram.com"] {
  display: none !important;
}

@media (max-width: 880px) {
  body:not(.project-builder-admin) .site-footer.site-footer--brand .home-footer-bottom {
    grid-template-columns: 1fr;
    align-items: start;
    justify-items: start;
  }

  body:not(.project-builder-admin) .site-footer.site-footer--brand .home-footer-company-ids,
  body:not(.project-builder-admin) .site-footer.site-footer--brand .home-footer-bottom > span:not(.home-footer-company-ids),
  body:not(.project-builder-admin) .site-footer.site-footer--brand .home-footer-bottom > a,
  body:not(.project-builder-admin) .site-footer.site-footer--brand .home-footer-bottom__links {
    grid-column: 1;
    justify-self: start;
    justify-content: flex-start;
    white-space: normal;
    text-align: left;
  }
}

body[data-page="home"] .home-prefooter-cta {
  color: #111930 !important;
  background: #f3f0e7 !important;
  background-image: none !important;
  border-top: 1px solid rgba(56, 81, 147, 0.14);
  border-bottom: 0;
}

body[data-page="home"] .home-prefooter-cta::before,
body[data-page="home"] .home-prefooter-cta::after {
  display: none !important;
  content: none !important;
}

/* Balance the footer columns: place the partner CTA beneath the brand and
   keep the address in the right-hand column where the CTA used to sit. */
body:not(.project-builder-admin) .site-footer.site-footer--brand .home-footer-links {
  grid-column: 1;
  grid-row: 2;
}

body:not(.project-builder-admin) .site-footer.site-footer--brand .home-footer-address {
  grid-column: 4;
  grid-row: 1;
  padding-top: 0;
  border-top: 0;
}

/* Keep the removed privacy link from leaving a stray item visible when
   scripts are unavailable or before the footer cleanup runs. */
body:not(.project-builder-admin) .site-footer a[href="/privacy-policy"],
body:not(.project-builder-admin) .site-footer a[href="/privacy-policy.html"] {
  display: none !important;
}

/* The collaboration CTA was removed from the public footer. Hide the legacy
   wrapper as well so it cannot leave an empty grid row or heading behind when
   a page is rendered before the footer cleanup script runs. */
body:not(.project-builder-admin) .site-footer.site-footer--brand .home-footer-links {
  display: none !important;
}

@media (max-width: 880px) {
  body:not(.project-builder-admin) .site-footer.site-footer--brand .home-footer-links,
  body:not(.project-builder-admin) .site-footer.site-footer--brand .home-footer-address {
    grid-column: 1;
    grid-row: auto;
  }
}

body[data-page="home"] .home-prefooter-cta__eyebrow {
  color: #385193 !important;
}

body[data-page="home"] .home-prefooter-cta h2 {
  color: #111930 !important;
}

body[data-page="home"] .home-prefooter-cta__content > a {
  color: #ffffff !important;
  background: #385193 !important;
  border-color: #385193 !important;
}

/* Shared rhythm and type scale for the public project block system. */
body[data-page="projecten"]:not(:has([data-project-admin])):has(.project-builder-page) .project-builder-page {
  --project-section-y: clamp(52px, 5.5vw, 82px);
  --project-section-x: clamp(30px, 5.4vw, 78px);
  --project-copy-max: min(1080px, 100%);
  --project-heading: var(--font-display);
  --project-copy-font: var(--font-body);
  --project-line: rgba(56, 81, 147, 0.14);
}

body[data-page="projecten"]:not(:has([data-project-admin])):has(.project-builder-page)
  .project-builder-page
  > .project-builder-section:not(.project-builder-image-text):not(.project-builder-photo-collage),
body[data-page="projecten"]:not(:has([data-project-admin])):has(.project-builder-page)
  .project-builder-page
  > .project-builder-cta {
  padding: var(--project-section-y) var(--project-section-x);
}

body[data-page="projecten"]:not(:has([data-project-admin])):has(.project-builder-page)
  .project-builder-page
  :is(.project-builder-section, .project-builder-meta, .project-builder-metrics, .project-builder-cta)
  h2,
body[data-page="projecten"]:not(:has([data-project-admin])):has(.project-builder-page)
  .project-builder-page
  :is(.project-builder-section, .project-builder-meta, .project-builder-metrics, .project-builder-cta)
  h3 {
  font-family: var(--project-heading);
  letter-spacing: -0.035em;
}

body[data-page="projecten"]:not(:has([data-project-admin])):has(.project-builder-page)
  .project-builder-page
  :is(.project-builder-facts .project-builder-richtext,
    .project-builder-column-copy,
    .project-builder-column-note__body,
    .project-builder-image-text__body,
    .project-builder-simple-text__body,
    .project-builder-stat-quote__text,
    .project-builder-metal-science__body,
    .project-builder-feature-cell__body,
    .project-builder-result-card p,
    .project-builder-metal-card__body,
    .project-builder-facts dd,
    .project-builder-test-list p) {
  color: var(--project-copy);
  font-family: var(--project-copy-font);
  font-size: clamp(1rem, 1.12vw, 1.18rem);
  font-weight: 520;
  letter-spacing: -0.005em;
  line-height: 1.56;
}

body[data-page="projecten"]:not(:has([data-project-admin])):has(.project-builder-page)
  .project-builder-page
  .project-builder-kicker {
  margin-bottom: clamp(14px, 1.8vw, 22px);
  color: var(--project-blue);
  font-family: var(--project-copy-font);
  font-size: clamp(0.68rem, 0.72vw, 0.8rem);
  font-weight: 800;
  letter-spacing: 0.15em;
  line-height: 1.2;
  text-transform: uppercase;
}

/* Give the two-column project copy a more readable editorial scale. */
body[data-page="projecten"]:not(:has([data-project-admin])):has(.project-builder-page)
  .project-builder-page
  .project-builder-columns
  .project-builder-column-copy {
  font-size: clamp(1.2rem, 1.42vw, 1.52rem);
  line-height: 1.54;
}

/* Let the two-column block read as an editorial section instead of a small
   form row: the divider, accent rule and larger body copy give it the same
   hierarchy as the other published project blocks. */
body[data-page="projecten"]:not(:has([data-project-admin])):has(.project-builder-page)
  .project-builder-page
  .project-builder-columns {
  gap: clamp(48px, 7vw, 120px);
  padding: var(--project-section-y) var(--project-section-x);
  background: var(--project-surface);
  border-top: 1px solid var(--project-line);
  border-bottom: 1px solid var(--project-line);
}

body[data-page="projecten"]:not(:has([data-project-admin])):has(.project-builder-page)
  .project-builder-page
  .project-builder-columns
  .project-builder-column {
  gap: clamp(28px, 3.2vw, 46px);
}

body[data-page="projecten"]:not(:has([data-project-admin])):has(.project-builder-page)
  .project-builder-page
  .project-builder-columns
  .project-builder-column-copy {
  max-width: 48ch;
  color: var(--project-copy);
}

body[data-page="projecten"]:not(:has([data-project-admin])):has(.project-builder-page)
  .project-builder-page
  .project-builder-column
  + .project-builder-column {
  padding-left: clamp(34px, 5vw, 88px);
  border-left: 1px solid var(--project-line);
}

@media (max-width: 980px) {
  body[data-page="projecten"]:not(:has([data-project-admin])):has(.project-builder-page)
    .project-builder-page
    .project-builder-columns {
    gap: 0;
  }

  body[data-page="projecten"]:not(:has([data-project-admin])):has(.project-builder-page)
    .project-builder-page
    .project-builder-columns
    .project-builder-column
    + .project-builder-column {
    padding-top: 42px;
    padding-left: 0;
    border-top: 1px solid var(--project-line);
    border-left: 0;
  }
}

@media (max-width: 760px) {
  body[data-page="projecten"]:not(:has([data-project-admin])):has(.project-builder-page)
    .project-builder-page
    .project-builder-columns {
    gap: 0;
    padding: 56px 22px;
  }

  body[data-page="projecten"]:not(:has([data-project-admin])):has(.project-builder-page)
    .project-builder-page
    .project-builder-columns
    .project-builder-column-copy {
    font-size: clamp(1.08rem, 4.4vw, 1.28rem);
    line-height: 1.56;
  }
}

body[data-page="projecten"]:not(:has([data-project-admin])):has(.project-builder-page)
  .project-builder-page
  :is(.project-builder-result-card, .project-builder-metal-card, .project-builder-feature-cell) {
  background: transparent;
  border-color: var(--project-line);
}

body[data-page="projecten"]:not(:has([data-project-admin])):has(.project-builder-page)
  .project-builder-page
  :is(.project-builder-feature-grid__cells, .project-builder-result-cards__grid, .project-builder-metal-science__grid) {
  border-color: var(--project-line);
}

body[data-page="projecten"]:not(:has([data-project-admin])):has(.project-builder-page)
  .project-builder-page
  :is(.project-builder-process li, .project-builder-test-list li, .project-builder-facts dl div) {
  border-color: var(--project-line);
}

body[data-page="projecten"]:not(:has([data-project-admin])):has(.project-builder-page)
  .project-builder-page
  .project-builder-meta > div {
  border-color: var(--project-line);
}

body[data-page="projecten"]:not(:has([data-project-admin])):has(.project-builder-page)
  .project-builder-page
  > :is(.project-builder-section, .project-builder-meta, .project-builder-metrics, .project-builder-cta)
  + :is(.project-builder-section, .project-builder-meta, .project-builder-metrics, .project-builder-cta) {
  border-top: 1px solid var(--project-line);
}

body[data-page="projecten"]:not(:has([data-project-admin])):has(.project-builder-page)
  .project-builder-page
  .project-builder-text
  :is(h2, .project-builder-richtext) {
  max-width: var(--project-copy-max);
}

body[data-page="projecten"]:not(:has([data-project-admin])):has(.project-builder-page)
  .project-builder-page
  .project-builder-text
  .project-builder-richtext {
  gap: clamp(16px, 2vw, 26px);
}

body[data-page="projecten"]:not(:has([data-project-admin])):has(.project-builder-page)
  .project-builder-page
  .project-builder-facts .project-builder-richtext {
  max-width: min(760px, 100%);
}

body[data-page="projecten"]:not(:has([data-project-admin])):has(.project-builder-page)
  .project-builder-page
  .project-builder-result-card {
  min-height: clamp(180px, 12vw, 220px);
}

body[data-page="projecten"]:not(:has([data-project-admin])):has(.project-builder-page)
  .project-builder-page
  .project-builder-feature-cell {
  min-height: clamp(220px, 18vw, 290px);
}

body[data-page="projecten"]:not(:has([data-project-admin])):has(.project-builder-page)
  .project-builder-page
  .project-builder-metal-card {
  min-height: clamp(240px, 20vw, 320px);
}

/* A block with a custom text scale is wrapped in .project-builder-font-scale
   on the public page. Treat that wrapper as transparent so scaled blocks keep
   the same full-width rhythm as their neighbours instead of falling back to
   the old card width, margin and shadow treatment. */
body[data-page="projecten"]:not(:has([data-project-admin])):has(.project-builder-page)
  .project-builder-page
  > .project-builder-font-scale {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
}

body[data-page="projecten"]:not(:has([data-project-admin])):has(.project-builder-page)
  .project-builder-page
  > .project-builder-font-scale
  > :is(
    .project-builder-hero,
    .project-builder-section,
    .project-builder-meta,
    .project-builder-metrics,
    .project-builder-cta
  ) {
  width: 100%;
  max-width: none;
  margin: 0;
  border-radius: 0;
  box-shadow: none;
}

body[data-page="projecten"]:not(:has([data-project-admin])):has(.project-builder-page)
  .project-builder-page
  > .project-builder-font-scale
  > .project-builder-section:not(.project-builder-section--dark),
body[data-page="projecten"]:not(:has([data-project-admin])):has(.project-builder-page)
  .project-builder-page
  > .project-builder-font-scale
  > .project-builder-meta,
body[data-page="projecten"]:not(:has([data-project-admin])):has(.project-builder-page)
  .project-builder-page
  > .project-builder-font-scale
  > .project-builder-metrics {
  background: var(--project-surface);
  border: 0;
}

body[data-page="projecten"]:not(:has([data-project-admin])):has(.project-builder-page)
  .project-builder-page
  > .project-builder-font-scale
  > :is(.project-builder-section, .project-builder-meta, .project-builder-metrics, .project-builder-cta)
  + :is(.project-builder-section, .project-builder-meta, .project-builder-metrics, .project-builder-cta),
body[data-page="projecten"]:not(:has([data-project-admin])):has(.project-builder-page)
  .project-builder-page
  > :is(.project-builder-section, .project-builder-meta, .project-builder-metrics, .project-builder-cta)
  + .project-builder-font-scale
  > :is(.project-builder-section, .project-builder-meta, .project-builder-metrics, .project-builder-cta),
body[data-page="projecten"]:not(:has([data-project-admin])):has(.project-builder-page)
  .project-builder-page
  > .project-builder-font-scale
  + :is(.project-builder-section, .project-builder-meta, .project-builder-metrics, .project-builder-cta)
  {
  border-top: 1px solid var(--project-line);
}

@media (max-width: 760px) {
  body[data-page="projecten"]:not(:has([data-project-admin])):has(.project-builder-page)
    .project-builder-page {
    --project-section-y: 44px;
    --project-section-x: 22px;
    --project-copy-max: 100%;
  }
}

/* Restore the original BluePrint timeline rhythm and long scroll sequence.
   The page jump may skip the other About reveals, but the timeline itself
   remains the dedicated scroll-driven section. */
@media (min-width: 1001px) and (min-height: 680px) {
  body[data-page="over-ons"] .about-plan-timeline.is-scroll-enabled {
    height: calc(100svh + 3300px);
    min-height: 0;
    padding: 0 !important;
    overflow: visible;
  }

  body[data-page="over-ons"] .about-plan-timeline.is-scroll-enabled .plan-timeline-frame {
    grid-template-rows: auto minmax(0, 1fr);
    gap: clamp(18px, 2.2vh, 26px);
    height: 100svh;
    padding-top: clamp(112px, 13vh, 142px);
    padding-bottom: clamp(24px, 4vh, 42px);
  }

  body[data-page="over-ons"] .about-plan-timeline.is-scroll-enabled .plan-timeline-map {
    grid-template-rows: minmax(210px, 1fr) auto clamp(180px, 20vh, 228px);
    gap: clamp(12px, 1.8vh, 20px);
    min-height: 0;
    align-content: start;
    height: auto;
  }

  body[data-page="over-ons"] .about-plan-timeline.is-scroll-enabled .plan-timeline-axis {
    height: 100%;
    min-height: 0;
  }

  body[data-page="over-ons"] .about-plan-timeline.is-scroll-enabled .plan-timeline-years {
    padding-top: clamp(10px, 1.5vh, 18px);
  }

  body[data-page="over-ons"] .about-plan-timeline.is-scroll-enabled .plan-timeline-feature {
    min-height: 0;
    height: 100%;
    padding: clamp(24px, 2.6vw, 38px);
    align-content: center;
    box-sizing: border-box;
  }
}

/* Match the original, more generous label spacing on both timeline views. */
body[data-page="over-ons"] .about-plan-timeline .plan-timeline-map {
  gap: clamp(14px, 2vw, 24px);
}

body[data-page="over-ons"] .about-plan-timeline :is(.plan-timeline-point, .plan-timeline-period-label) {
  font-size: clamp(0.76rem, 0.9vw, 0.96rem);
  line-height: 1.2;
}

body[data-page="over-ons"] .about-plan-timeline :is(.plan-timeline-point, .plan-timeline-period-label) span {
  max-width: 172px;
}

body[data-page="over-ons"] .about-plan-timeline .plan-timeline-point::after,
body[data-page="over-ons"] .about-plan-timeline .plan-timeline-period-label::before {
  height: clamp(24px, 2.8vw, 34px);
}

body[data-page="over-ons"] .about-plan-timeline .plan-timeline-point--top span {
  bottom: calc(100% + clamp(36px, 3.8vw, 46px));
}

body[data-page="over-ons"] .about-plan-timeline :is(.plan-timeline-point--bottom, .plan-timeline-period-label--bottom) span {
  top: calc(100% + clamp(36px, 3.8vw, 46px));
}

/* Give the closely spaced 2025 label its own vertical lane. */
body[data-page="het-plan"] .plan-timeline-point--bottom-lowered::after,
body[data-page="over-ons"] .about-plan-timeline .plan-timeline-point--bottom-lowered::after {
  height: clamp(42px, 4vw, 52px);
}

body[data-page="het-plan"] .plan-timeline-point--bottom-lowered span,
body[data-page="over-ons"] .about-plan-timeline .plan-timeline-point--bottom-lowered span {
  top: calc(100% + clamp(56px, 5.4vw, 70px));
}

/* Restore the rounded project cards on the public projects overview. */
body[data-page="projecten"]:not(:has([data-project-admin])) .project-board-card,
body[data-page="projecten"]:not(:has([data-project-admin])) .project-board-card__media,
body[data-page="projecten"]:not(:has([data-project-admin])) .project-board-card__media--placeholder {
  border-radius: 16px;
}

/* Team management in the private dashboard. */
.team-admin-list .team-admin-item {
  grid-template-columns: 64px minmax(0, 1fr);
  align-items: center;
}

.team-admin-item > img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 12px;
  background: #eef2fa;
}

.team-admin-item > h3,
.team-admin-item > p,
.team-admin-item > .admin-project-actions {
  grid-column: 2;
}

.team-admin-item > h3 {
  margin-top: -2px;
  margin-bottom: -8px;
}

.team-admin-item > p {
  margin-bottom: 0;
}

.team-admin-photo-preview {
  display: block;
  width: min(100%, 220px);
  aspect-ratio: 1;
  margin-top: -2px;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid rgba(57, 81, 147, 0.18);
  background: #eef2fa;
}

/* Lightweight paragraph editor for vacancy copy. */
.admin-rich-field {
  min-width: 0;
}

.admin-rich-editor {
  min-height: 240px;
  padding: 18px 20px;
  color: var(--blue-ink);
  font-size: 1rem;
  font-weight: 650;
  line-height: 1.65;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 14px;
  outline: none;
  cursor: text;
  white-space: pre-wrap;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.admin-rich-editor:empty::before {
  color: rgba(80, 87, 102, 0.58);
  font-weight: 600;
  content: attr(data-placeholder);
  pointer-events: none;
}

.admin-rich-editor:focus {
  border-color: rgba(56, 81, 147, 0.58);
  box-shadow: 0 0 0 3px rgba(56, 81, 147, 0.12);
}

.admin-rich-editor p,
.admin-rich-editor div {
  margin: 0 0 1em;
}

.admin-rich-editor :is(p, div):last-child {
  margin-bottom: 0;
}

.admin-rich-field > small {
  color: rgba(80, 87, 102, 0.72);
  font-size: 0.78rem;
  font-weight: 700;
}

/* Visual vacancy editor: metadata stays in a compact bar above the full preview. */
.admin-shell[data-admin-panel="jobs"] {
  grid-template-columns: 1fr;
}

.vacancy-editor-panel {
  min-width: 0;
}

.vacancy-editor-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(24px, 4vw, 40px);
  align-items: start;
}

.vacancy-editor-controls {
  min-width: 0;
  padding: clamp(20px, 3vw, 32px);
  background: #eef2fa;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.vacancy-editor-controls__heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 22px;
}

.vacancy-editor-controls__eyebrow {
  margin: 0 0 6px;
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.vacancy-editor-controls h2 {
  margin: 0;
}

.vacancy-editor-controls__hint {
  max-width: 440px;
  margin: 0;
  color: rgba(17, 25, 48, 0.66);
  font-size: 0.86rem;
  font-weight: 650;
  line-height: 1.45;
  text-align: right;
}

.vacancy-editor-meta-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.vacancy-editor-meta-grid__excerpt {
  grid-column: 1 / -1;
}

.vacancy-editor-meta-grid__excerpt textarea {
  min-height: 74px;
}

.vacancy-editor-controls__actions {
  margin-top: 4px;
}

.vacancy-editor-controls__actions .admin-status {
  margin-left: auto;
}

.vacancy-editor-preview-shell {
  position: static;
  min-width: 0;
}

.vacancy-editor-preview-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 0 0 12px;
  color: var(--blue-dark);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.vacancy-editor-preview-toolbar-actions {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
}

.vacancy-preview-expand {
  padding: 8px 12px;
  color: var(--blue-ink);
  font-size: 0.7rem;
  letter-spacing: 0.04em;
  text-transform: none;
}

.vacancy-editor-preview-live {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #4a8a67;
  letter-spacing: 0.08em;
}

.vacancy-editor-preview-live span {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: currentColor;
  box-shadow: 0 0 0 4px rgba(74, 138, 103, 0.12);
}

.vacancy-editor-preview {
  overflow: hidden;
  color: var(--blue-ink);
  background: #f3f0e7;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 22px 48px rgba(17, 25, 48, 0.1);
}

.vacancy-editor-preview [contenteditable="true"] {
  cursor: text;
  border-radius: 6px;
  outline: 2px solid transparent;
  outline-offset: 6px;
  transition: outline-color 160ms ease, background-color 160ms ease;
}

.vacancy-editor-preview [contenteditable="true"]:hover {
  background: rgba(201, 235, 255, 0.22);
}

.vacancy-editor-preview [contenteditable="true"]:focus {
  background: rgba(201, 235, 255, 0.28);
  outline-color: rgba(56, 81, 147, 0.42);
}

.vacancy-editor-preview .job-detail-copy[contenteditable="true"]:focus {
  outline-offset: 10px;
}

.vacancy-editor-preview-shell.is-fullscreen {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: clamp(12px, 2vw, 22px);
  max-height: 100dvh;
  padding: clamp(16px, 3vw, 40px);
  background: #eef2fa;
  overflow: auto;
}

.vacancy-editor-preview-shell.is-fullscreen .vacancy-editor-preview-toolbar {
  flex: 0 0 auto;
  margin: 0;
}

.vacancy-editor-preview-shell.is-fullscreen .vacancy-editor-preview {
  flex: 1 1 auto;
  min-height: 0;
  max-width: none;
  overflow: auto;
  border-radius: 24px;
}

body.has-vacancy-preview-fullscreen {
  overflow: hidden;
}

.vacancy-editor-preview .job-detail-frame {
  width: min(100% - 42px, 860px);
  margin: 0 auto;
}

.vacancy-editor-preview .job-detail-hero {
  padding: clamp(46px, 7vw, 82px) 0 clamp(30px, 5vw, 56px);
  background: #f3f0e7;
  border-bottom: 1px solid rgba(56, 81, 147, 0.14);
}

.vacancy-editor-preview .job-detail-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: clamp(24px, 4vw, 42px);
  color: #385193;
  font-size: 0.75rem;
  font-weight: 700;
}

.vacancy-editor-preview .job-detail-back span:first-child {
  font-size: 1.05rem;
  line-height: 1;
}

.vacancy-editor-preview .job-detail-kicker,
.vacancy-editor-preview .job-detail-cta__kicker {
  margin: 0 0 14px;
  color: #385193;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.vacancy-editor-preview .job-detail-hero h1 {
  max-width: 100%;
  margin: 0;
  color: #111930;
  font-family: var(--font-h1);
  font-size: clamp(2.55rem, 5.2vw, 5.2rem);
  font-weight: var(--font-h1-weight);
  letter-spacing: -0.055em;
  line-height: 0.96;
  overflow-wrap: anywhere;
}

.vacancy-editor-preview .job-detail-excerpt {
  max-width: 720px;
  margin: 22px 0 0;
  color: rgba(17, 25, 48, 0.7);
  font-size: clamp(0.92rem, 1.25vw, 1.14rem);
  font-weight: 650;
  line-height: 1.5;
}

.vacancy-editor-preview .job-detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 26px;
}

.vacancy-editor-preview .job-detail-meta span {
  padding: 8px 12px;
  color: #385193;
  font-size: 0.72rem;
  font-weight: 750;
  background: rgba(255, 255, 255, 0.56);
  border: 1px solid rgba(56, 81, 147, 0.18);
  border-radius: 999px;
}

.vacancy-editor-preview .job-detail-content {
  padding: clamp(40px, 6vw, 72px) 0 clamp(48px, 7vw, 82px);
  background: #f3f0e7;
}

.vacancy-editor-preview .job-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(150px, 0.42fr);
  gap: clamp(26px, 5vw, 60px);
  align-items: start;
}

.vacancy-editor-preview .job-detail-copy {
  max-width: 760px;
}

.vacancy-editor-preview .job-detail-copy p {
  margin: 0 0 18px;
  color: rgba(17, 25, 48, 0.78);
  font-size: clamp(0.9rem, 1.15vw, 1.08rem);
  line-height: 1.7;
}

.vacancy-editor-preview .job-detail-cta {
  padding: clamp(20px, 2.6vw, 32px);
  background: #385193;
  border-radius: 16px;
  box-shadow: 0 18px 36px rgba(17, 25, 48, 0.13);
}

.vacancy-editor-preview .job-detail-cta__kicker {
  color: #c9ebff;
}

.vacancy-editor-preview .job-detail-cta h2 {
  margin: 0;
  color: #ffffff;
  font-family: var(--font-h1);
  font-size: clamp(1.45rem, 2.4vw, 2.3rem);
  font-weight: var(--font-h1-weight);
  letter-spacing: -0.035em;
  line-height: 1;
}

.vacancy-editor-preview .job-detail-cta > p:not(.job-detail-cta__kicker) {
  margin: 16px 0 22px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.82rem;
  line-height: 1.5;
}

.vacancy-editor-preview .job-detail-cta .primary-link {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 42px;
  padding: 10px 14px;
  color: #111930;
  font-size: 0.78rem;
  background: #c9ebff;
  border-radius: 999px;
}

@media (max-width: 520px) {
  .vacancy-editor-preview .job-detail-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1080px) {
  .vacancy-editor-meta-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .vacancy-editor-controls__heading {
    align-items: start;
    flex-direction: column;
    gap: 10px;
  }

  .vacancy-editor-controls__hint {
    max-width: 620px;
    text-align: left;
  }

  .vacancy-editor-preview {
    max-width: 720px;
  }
}

@media (max-width: 620px) {
  .vacancy-editor-meta-grid {
    grid-template-columns: 1fr;
  }

  .vacancy-editor-controls__actions .admin-status {
    width: 100%;
    margin-left: 0;
  }
}

/* Project block headings follow the slim Poppins title treatment used by the
   rest of the site. Keep this shared override in one place so every block,
   including the builder preview, stays consistent. */
body[data-page="projecten"] .project-builder-page :is(h2, h3) {
  font-family: var(--font-h1) !important;
  font-weight: var(--font-h1-weight) !important;
}

body[data-page="projecten"] .project-builder-page
  :is(.project-builder-process strong, .project-builder-test-list strong) {
  font-family: var(--font-h1) !important;
  font-weight: var(--font-h1-weight) !important;
}

body[data-page="projecten"] .project-builder-page .project-builder-column-note h3 em {
  font-family: var(--font-h1) !important;
  font-weight: var(--font-h1-weight) !important;
}

/* Rich-text emphasis in project hero titles keeps its markup but follows the
   upright, slim title treatment used across the public site. */
body:not(.project-builder-admin) .project-builder-page .project-builder-hero__copy h1 em,
.project-builder-admin .project-builder-hero__copy h1 em,
.builder-preview-block .project-builder-hero__copy h1 em {
  font-family: var(--font-h1) !important;
  font-style: normal !important;
  font-weight: var(--font-h1-weight) !important;
}

/* Final checklist pass: keep the shared visual language consistent across
   the public pages and their responsive variants. */
.nav-shell,
body:not([data-page="home"]) .nav-shell,
body:not([data-page="home"]) .site-header.is-condensed .nav-shell {
  background: #111b3a !important;
  background-image: none !important;
}

/* Keep the expanded desktop navigation as one continuous pill. A later
   desktop layout rule used to reset the shell radius to zero, which made the
   wide dark bar look like a square panel instead of the rounded nav surface. */
@media (min-width: 1081px) {
  .nav-shell,
  body[data-page="home"] .site-header .nav-shell,
  body:not([data-page="home"]) .site-header .nav-shell,
  body[data-homepage-variant="bluebox-lab"] .site-header .nav-shell {
    border-radius: 999px !important;
  }
}

/* Keep the open mobile navigation on the same solid dark-blue surface as the
   desktop bar. This also removes the legacy gradient that otherwise appears
   only while the menu is expanded. */
body[data-page="home"] .site-header.is-menu-open .nav-shell,
body[data-page="home"] .site-header:has(.menu-toggle[aria-expanded="true"]) .nav-shell,
body:not([data-page="home"]) .site-header.is-menu-open .nav-shell,
body:not([data-page="home"]) .site-header:has(.menu-toggle[aria-expanded="true"]) .nav-shell,
body[data-page="home"] .mobile-menu,
body:not([data-page="home"]) .mobile-menu {
  background: #111b3a !important;
  background-image: none !important;
}

body[data-page="home"] .home-partner-strip__track {
  animation: home-partners-scroll 32s linear infinite !important;
  transform: translateX(0);
}

body[data-page="home"] .home-partner-strip__list[aria-hidden="true"] {
  display: flex;
}

body[data-page="home"] .home-partner-strip {
  background: #ffffff !important;
}

body[data-page="home"] .home-partner-strip__title {
  color: #111b3a;
}

body[data-page="home"] .home-partner-strip__list li {
  background: #ffffff;
  border: 1px solid rgba(56, 81, 147, 0.14);
  box-shadow: 0 8px 22px rgba(17, 25, 48, 0.08);
}

body[data-page="home"] .home-partner-strip__list img {
  opacity: 1;
  filter: none;
  transition: filter 180ms ease, opacity 180ms ease;
}

/* Hero pages use the navigation as an overlay again: the shell stays in the
   layout for alignment, but its rounded surface disappears so the links sit
   directly over the video/image. The condensed state intentionally keeps its
   floating pill once the visitor has scrolled away from the hero. */
@media (min-width: 1081px) {
  body[data-page="home"] .site-header:not(.is-condensed):not(.is-menu-open) .nav-shell,
  body[data-page="over-ons"] .site-header:not(.is-condensed):not(.is-menu-open) .nav-shell,
  body[data-page="vacatures"] .site-header:not(.is-condensed):not(.is-menu-open) .nav-shell,
  body[data-page="service-detail"] .site-header:not(.is-condensed):not(.is-menu-open) .nav-shell,
  body[data-page="projecten"]:has([data-project-detail]) .site-header:not(.is-condensed):not(.is-menu-open) .nav-shell,
  body[data-page="projecten"]:has(.project-builder-hero) .site-header:not(.is-condensed):not(.is-menu-open) .nav-shell {
    background: transparent !important;
    background-image: none !important;
    border-color: transparent !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
  }

  body[data-page="home"] .site-header:not(.is-condensed):not(.is-menu-open) .main-nav a,
  body[data-page="over-ons"] .site-header:not(.is-condensed):not(.is-menu-open) .main-nav a,
  body[data-page="service-detail"] .site-header:not(.is-condensed):not(.is-menu-open) .main-nav a,
  body[data-page="projecten"]:has([data-project-detail]) .site-header:not(.is-condensed):not(.is-menu-open) .main-nav a,
  body[data-page="projecten"]:has(.project-builder-hero) .site-header:not(.is-condensed):not(.is-menu-open) .main-nav a {
    background: transparent !important;
    border-radius: 0 !important;
  }
}

/* Partner logos reveal their supplied colour artwork while hovered or focused.
   The duplicate marquee list uses the same behaviour, so the transition stays
   consistent as logos loop through the strip. */
body[data-page="home"] .home-partner-strip__list img.is-hovered,
body[data-page="over-ons"] .about-partners-list img.is-hovered {
  filter: none;
}

body[data-page="over-ons"] .about-partners-list img {
  transition: filter 180ms ease, opacity 180ms ease;
}

/* Partner marquees use one stable, colour logo source. Keep the logos quiet
   until the visitor points at or focuses a card, rather than swapping image
   files mid-animation. Both marquees pause while a card is being inspected. */
body[data-page="home"] .home-partner-strip {
  background: var(--home-cohesive-warm, #f3f0e7) !important;
}

body[data-page="home"] .home-partner-strip__marquee:hover .home-partner-strip__track,
body[data-page="home"] .home-partner-strip__marquee:focus-within .home-partner-strip__track,
body[data-page="over-ons"] .about-partners-marquee:hover .about-partners-track,
body[data-page="over-ons"] .about-partners-marquee:focus-within .about-partners-track {
  animation-play-state: paused !important;
}

/* Keep the marquee edges soft without a visible shadow band. The cards remain
   clean white surfaces, while the longer mask fade lets them dissolve into
   the sand background naturally at either edge. */
body[data-page="home"] .home-partner-strip__marquee,
body[data-page="over-ons"] .about-partners-marquee {
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent 0%,
    rgba(0, 0, 0, 0.7) 8%,
    #000 15%,
    #000 85%,
    rgba(0, 0, 0, 0.7) 92%,
    transparent 100%
  );
  mask-image: linear-gradient(
    90deg,
    transparent 0%,
    rgba(0, 0, 0, 0.7) 8%,
    #000 15%,
    #000 85%,
    rgba(0, 0, 0, 0.7) 92%,
    transparent 100%
  );
}

body[data-page="home"] .home-partner-strip__list li,
body[data-page="over-ons"] .about-partners-list li {
  box-shadow: none !important;
}

body[data-page="home"] .home-partner-strip__list li > a {
  display: grid;
  width: 100%;
  height: 100%;
  place-items: center;
  color: inherit;
  text-decoration: none;
}

body[data-page="home"] .home-partner-strip__list li > a:focus-visible {
  border-radius: 5px;
  outline: 3px solid rgba(56, 81, 147, 0.42);
  outline-offset: 4px;
}

body[data-page="home"] .home-partner-strip__list img,
body[data-page="over-ons"] .about-partners-list img {
  opacity: 0.46;
  filter: grayscale(1);
  transition: opacity 220ms ease, filter 220ms ease;
}

body[data-page="home"] .home-partner-strip__list li:hover img,
body[data-page="home"] .home-partner-strip__list li:focus-within img,
body[data-page="over-ons"] .about-partners-list li:hover img,
body[data-page="over-ons"] .about-partners-list li:focus-within img {
  opacity: 1;
  filter: none;
}

body[data-page="home"] .home-mission-copy p {
  font-family: var(--font-body);
  font-weight: 400;
}

body[data-page="home"] .home-mission-copy p strong {
  font-weight: 700;
}

body[data-page="home"] .home-mission-copy .home-mission-accent {
  font-weight: 700;
}

body[data-page="home"] .home-hero-copy h1 .home-hero-connector,
body[data-page="service-detail"] .service-detail-hero__head > p:not(.service-detail-kicker):not(.service-detail-hero__copy) {
  font-style: normal;
}

/* Hero copy uses the regular title face. Italic styling is reserved for the
   explicitly branded Blauwe Bagger wordmark in the services landing hero. */
body[data-page="home"] .home-hero-copy h1,
body[data-page="service-detail"] .service-detail-hero__head h1,
body[data-page="service-detail"] .service-detail-hero__head > p:not(.service-detail-kicker):not(.service-detail-hero__copy) {
  font-style: normal;
}

/* Blueprint is a slim title treatment everywhere it appears. The markup uses
   spans so the brand word can remain blue without inheriting the old italic
   emphasis used by the previous timeline design. */
body[data-page="het-plan"] .plan-intro-head h1 .plan-intro-title-mark,
body[data-page="het-plan"] .plan-timeline-title span,
body[data-page="over-ons"] .about-plan-heading h2 span,
body[data-page="over-ons"] .about-plan-timeline .plan-timeline-title span {
  font-style: normal !important;
  font-weight: var(--font-h1-weight) !important;
}

/* Metric/result cards use the same slim title face as the rest of the
   project builder, rather than the legacy heavy italic display treatment. */
body[data-page="projecten"] .project-builder-page
  :is(.project-builder-metric strong, .project-builder-result-card strong, .project-builder-metal-card strong) {
  font-family: var(--font-h1) !important;
  font-style: normal !important;
  font-weight: var(--font-h1-weight) !important;
}

/* Keep the brand name italic in the services landing hero, while the
   connector words and supporting copy use the regular hero treatment. */
body[data-page="services"] .service-index-page .service-detail-hero__head h1 em,
body[data-page="service-detail"] .service-index-page .service-detail-hero__head h1 em {
  font-style: italic;
}

body[data-page="service-detail"] .service-widget-impact__label,
body[data-page="service-detail"] .service-widget-impact__from,
body[data-page="service-detail"] .service-widget-impact__to {
  font-style: normal;
  font-weight: 560;
}

body[data-page="service-detail"] .service-widget-impact__to {
  font-weight: 650;
}

body[data-page="over-ons"] .about-story-section {
  min-height: 100svh;
  padding: clamp(140px, 14vh, 190px) 0 clamp(64px, 9vh, 110px);
  background-image: linear-gradient(180deg, rgba(9, 17, 39, 0.18), rgba(9, 17, 39, 0.78)), url("/assets/media/team-photo.jpg") !important;
  background-position: center;
  background-size: cover;
}

body[data-page="over-ons"] .about-story-section .about-frame {
  display: flex;
  min-height: calc(100svh - 250px);
  align-items: flex-end;
}

body[data-page="over-ons"] .about-story-copy {
  max-width: 760px;
}

body[data-page="over-ons"] .about-story-section h1 {
  color: #ffffff;
  font-weight: var(--font-h1-weight);
}

body[data-page="over-ons"] .about-hero-accent {
  color: #7892ff;
}

body[data-page="over-ons"] .about-story-text {
  color: rgba(255, 255, 255, 0.9);
}

body[data-page="over-ons"] .about-team-photo {
  display: none;
}

/* The about hero follows the same editorial treatment as the service heroes:
   one full-bleed image, a readable dark wash, and the title anchored at the
   lower left with its supporting copy directly underneath. */
body[data-page="over-ons"] .about-story-section {
  display: grid;
  min-height: 100svh;
  padding: clamp(132px, 14vh, 190px) 0 clamp(54px, 8vh, 96px);
  background-image:
    linear-gradient(90deg, rgba(8, 16, 37, 0.8) 0%, rgba(8, 16, 37, 0.54) 38%, rgba(8, 16, 37, 0.12) 78%),
    linear-gradient(180deg, rgba(8, 16, 37, 0.16), rgba(8, 16, 37, 0.66)),
    url("/assets/media/about-hero-abbe.jpg") !important;
  background-position: center;
  background-size: cover;
}

body[data-page="over-ons"] .about-story-section::before,
body[data-page="over-ons"] .about-story-section h1::before,
body[data-page="over-ons"] .about-story-section h1::after {
  display: none;
}

body[data-page="over-ons"] .about-story-section .about-frame {
  display: flex;
  min-height: calc(100svh - 250px);
  align-items: flex-end;
}

body[data-page="over-ons"] .about-story-copy {
  max-width: min(820px, 76vw);
  padding-bottom: clamp(8px, 2vh, 24px);
}

body[data-page="over-ons"] .about-story-section h1 {
  display: grid;
  gap: 0.04em;
  max-width: 8ch;
  color: #ffffff;
  font-family: var(--font-sans);
  font-size: clamp(4.4rem, 8vw, 8.4rem);
  font-weight: 400;
  letter-spacing: -0.065em;
  line-height: 0.82;
}

body[data-page="over-ons"] .about-hero-accent {
  color: #7892ff;
  font-weight: 400;
}

body[data-page="over-ons"] .about-story-text {
  max-width: 780px;
  margin-top: clamp(28px, 4vh, 46px);
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(1rem, 1.2vw, 1.3rem);
  font-weight: 520;
  letter-spacing: -0.015em;
  line-height: 1.45;
}

/* Keep the about hero title as one readable phrase instead of splitting
   "Over" and "ons" into two stacked lines. */
body[data-page="over-ons"] .about-story-section h1 {
  display: flex;
  align-items: baseline;
  gap: 0.18em;
  max-width: none;
  white-space: nowrap;
}

@media (max-width: 760px) {
  body[data-page="over-ons"] .about-story-section {
    min-height: 88svh;
    padding: 126px 0 42px;
    background-position: 62% center;
  }

  body[data-page="over-ons"] .about-story-section .about-frame {
    min-height: calc(88svh - 168px);
  }

  body[data-page="over-ons"] .about-story-copy {
    max-width: none;
    padding-bottom: 0;
  }

  body[data-page="over-ons"] .about-story-section h1 {
    gap: 0.12em;
    font-size: clamp(3.8rem, 19vw, 6rem);
  }

  body[data-page="over-ons"] .about-story-text {
    margin-top: 26px;
    font-size: clamp(1rem, 4.35vw, 1.3rem);
    line-height: 1.42;
  }
}

@media (max-width: 480px) {
  body[data-page="over-ons"] .about-story-section h1 {
    flex-wrap: wrap;
    max-width: 7ch;
    white-space: normal;
  }
}

body[data-page="over-ons"] .about-team-card img {
  aspect-ratio: 1;
  border-radius: 50%;
}

/* Keep the About timeline usable on phones: the rail fits the viewport and
   the selected milestone card no longer becomes part of a clipped scroller. */
@media (max-width: 680px) {
  body[data-page="over-ons"] .about-plan-timeline .plan-timeline-map {
    gap: 14px;
    overflow: visible;
  }

  body[data-page="over-ons"] .about-plan-timeline .plan-timeline-rail {
    display: grid;
    gap: 14px;
    width: 100%;
    min-width: 0;
    overflow-x: auto;
    padding-bottom: 8px;
    scrollbar-width: thin;
  }

  body[data-page="over-ons"] .about-plan-timeline .plan-timeline-rail > .plan-timeline-axis,
  body[data-page="over-ons"] .about-plan-timeline .plan-timeline-rail > .plan-timeline-years {
    min-width: 780px;
  }

  body[data-page="over-ons"] .about-plan-timeline .plan-timeline-axis {
    min-height: 250px;
  }

  body[data-page="over-ons"] .about-plan-timeline .plan-timeline-point span {
    max-width: 160px;
    white-space: normal;
    overflow-wrap: normal;
    word-break: normal;
  }

  body[data-page="over-ons"] .about-plan-timeline .plan-timeline-point--top span {
    bottom: calc(100% + 26px);
  }

  body[data-page="over-ons"] .about-plan-timeline .plan-timeline-point--bottom span {
    top: calc(100% + 26px);
  }

  body[data-page="over-ons"] .about-plan-timeline .plan-timeline-feature {
    grid-template-columns: 1fr;
    gap: 12px;
    width: 100%;
    min-height: 0;
    padding: 20px;
    box-sizing: border-box;
  }

  body[data-page="over-ons"] .about-plan-timeline .plan-timeline-feature strong {
    font-size: clamp(2rem, 10vw, 2.6rem);
  }

  body[data-page="over-ons"] .about-plan-timeline .plan-timeline-feature h3 {
    font-size: clamp(1.05rem, 5vw, 1.3rem);
  }

  body[data-page="over-ons"] .about-plan-timeline .plan-timeline-feature p {
    font-size: 0.9rem;
    line-height: 1.5;
  }
}

@media (max-width: 680px) {
  body[data-page="het-plan"] .plan-timeline-map {
    gap: 14px;
    overflow: visible;
  }

  body[data-page="het-plan"] .plan-timeline-rail {
    gap: 14px;
    width: 100%;
    min-width: 0;
    overflow-x: auto;
    padding-bottom: 8px;
    scrollbar-width: thin;
  }

  body[data-page="het-plan"] .plan-timeline-rail > .plan-timeline-axis,
  body[data-page="het-plan"] .plan-timeline-rail > .plan-timeline-years {
    min-width: 780px;
  }

  body[data-page="het-plan"] .plan-timeline-axis {
    min-height: 250px;
  }

  body[data-page="het-plan"] .plan-timeline-point span {
    max-width: 160px;
    white-space: normal;
    overflow-wrap: normal;
    word-break: normal;
  }

  body[data-page="het-plan"] .plan-timeline-point--top span {
    bottom: calc(100% + 26px);
  }

  body[data-page="het-plan"] .plan-timeline-point--bottom span {
    top: calc(100% + 26px);
  }

  body[data-page="het-plan"] .plan-timeline-feature {
    grid-template-columns: 1fr;
    gap: 12px;
    width: 100%;
    min-height: 0;
    padding: 20px;
    box-sizing: border-box;
  }

  body[data-page="het-plan"] .plan-timeline-feature strong {
    font-size: clamp(2rem, 10vw, 2.6rem);
  }

  body[data-page="het-plan"] .plan-timeline-feature h3 {
    font-size: clamp(1.05rem, 5vw, 1.3rem);
  }

  body[data-page="het-plan"] .plan-timeline-feature p {
    font-size: 0.9rem;
    line-height: 1.5;
  }
}

/* On phones, use a readable three-column milestone grid instead of forcing
   seven labels into one horizontal rail. Each milestone remains a button. */
@media (max-width: 680px) {
  body[data-page="over-ons"] .about-plan-timeline .plan-timeline-rail,
  body[data-page="het-plan"] .plan-timeline-section .plan-timeline-rail {
    display: block;
    width: 100%;
    overflow: visible;
    padding-bottom: 0;
  }

  body[data-page="over-ons"] .about-plan-timeline .plan-timeline-axis,
  body[data-page="het-plan"] .plan-timeline-section .plan-timeline-axis {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px 10px;
    width: 100%;
    min-width: 0 !important;
    min-height: 0;
    overflow: visible;
  }

  body[data-page="over-ons"] .about-plan-timeline .plan-timeline-line,
  body[data-page="over-ons"] .about-plan-timeline .plan-timeline-travel,
  body[data-page="over-ons"] .about-plan-timeline .plan-timeline-progress,
  body[data-page="het-plan"] .plan-timeline-section .plan-timeline-line,
  body[data-page="het-plan"] .plan-timeline-section .plan-timeline-travel,
  body[data-page="het-plan"] .plan-timeline-section .plan-timeline-progress {
    display: none;
  }

  body[data-page="over-ons"] .about-plan-timeline .plan-timeline-point,
  body[data-page="het-plan"] .plan-timeline-section .plan-timeline-point {
    position: relative;
    inset: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 7px;
    min-height: 86px;
    padding: 10px 4px;
    color: #8d9aa8;
    transform: none;
  }

  body[data-page="over-ons"] .about-plan-timeline .plan-timeline-point::before,
  body[data-page="het-plan"] .plan-timeline-section .plan-timeline-point::before {
    order: 0;
    flex: 0 0 auto;
  }

  body[data-page="over-ons"] .about-plan-timeline .plan-timeline-point::after,
  body[data-page="het-plan"] .plan-timeline-section .plan-timeline-point::after {
    order: 2;
    width: auto;
    height: auto !important;
    margin: 0;
    color: #a2adba;
    font-size: 0.72rem;
    font-weight: 850;
    line-height: 1;
    background: transparent;
    content: attr(data-plan-year);
  }

  body[data-page="over-ons"] .about-plan-timeline .plan-timeline-point span,
  body[data-page="het-plan"] .plan-timeline-section .plan-timeline-point span,
  body[data-page="over-ons"] .about-plan-timeline .plan-timeline-point--label-left span,
  body[data-page="over-ons"] .about-plan-timeline .plan-timeline-point--label-right span,
  body[data-page="het-plan"] .plan-timeline-section .plan-timeline-point--label-left span,
  body[data-page="het-plan"] .plan-timeline-section .plan-timeline-point--label-right span {
    position: static;
    order: 1;
    width: auto;
    max-width: 100%;
    color: inherit;
    text-align: center;
    white-space: normal;
    overflow-wrap: normal;
    word-break: normal;
    transform: none;
  }

  body[data-page="over-ons"] .about-plan-timeline .plan-timeline-point--top span,
  body[data-page="over-ons"] .about-plan-timeline .plan-timeline-point--bottom span,
  body[data-page="het-plan"] .plan-timeline-section .plan-timeline-point--top span,
  body[data-page="het-plan"] .plan-timeline-section .plan-timeline-point--bottom span {
    inset: auto;
  }

  body[data-page="over-ons"] .about-plan-timeline .plan-timeline-years,
  body[data-page="het-plan"] .plan-timeline-section .plan-timeline-years {
    display: none;
  }
}

body[data-page="over-ons"] .about-plan-timeline .plan-timeline-point span,
body[data-page="het-plan"] .plan-timeline-point span {
  font-weight: 650;
}

body[data-page="over-ons"] .about-plan-timeline .plan-timeline-point::after,
body[data-page="het-plan"] .plan-timeline-point::after {
  height: clamp(30px, 3.4vw, 48px);
}

body[data-page="over-ons"] .about-plan-timeline .plan-timeline-point--bottom span,
body[data-page="het-plan"] .plan-timeline-point--bottom span {
  top: calc(100% + clamp(42px, 4.4vw, 60px));
}

/* Keep the public footer in sync on every page, including older static
   templates that still contain the retired links/content in their markup. */
body:not(.project-builder-admin) .site-footer.site-footer--brand .home-footer-column a[href="/services"],
body:not(.project-builder-admin) .site-footer.site-footer--brand .home-footer-column a[href^="/services/"],
body:not(.project-builder-admin) .site-footer.site-footer--brand .home-footer-column a[href^="services/"],
body:not(.project-builder-admin) .site-footer.site-footer--brand .home-footer-column a[href="/login"],
body:not(.project-builder-admin) .site-footer.site-footer--brand .home-footer-column a[href="/privacy-policy"],
body:not(.project-builder-admin) .site-footer.site-footer--brand .home-footer-links a[href*="instagram.com"],
body:not(.project-builder-admin) .site-footer.site-footer--brand .home-footer-bottom a[href="/privacy-policy"],
body:not(.project-builder-admin) .site-footer.site-footer--brand .home-footer-address p:nth-of-type(3):not(.home-footer-address-street),
body:not(.project-builder-admin) .site-footer.site-footer--brand .home-footer-contact {
  display: none !important;
}

body:not(.project-builder-admin) .site-footer.site-footer--brand .home-footer-address p.home-footer-address-street {
  display: block !important;
}

/* Keep the supplied Abbe photo visible behind the public about hero. This
   more-specific rule wins over the older editorial reset that removes hero
   backgrounds from the about page. */
body[data-page="over-ons"] .about-page .about-story-section {
  background:
    linear-gradient(90deg, rgba(8, 16, 37, 0.42) 0%, rgba(8, 16, 37, 0.16) 56%, rgba(8, 16, 37, 0.05) 100%),
    linear-gradient(180deg, rgba(8, 16, 37, 0.08), rgba(8, 16, 37, 0.32)),
    url("/assets/media/about-hero-40403.jpg") center / cover no-repeat !important;
}

.about-team-card__linkedin {
  display: inline-flex;
  margin-top: 10px;
  color: #385193;
  font-size: 0.85rem;
  font-weight: 650;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Use the logo blue consistently for every editorial title/accent that is
   intentionally blue, including the homepage and service hero titles. */
:is(
  body[data-page="home"] .home-hero-accent,
  body[data-page="home"] .home-mission-copy h2,
  body[data-page="home"] .home-mission-accent,
  body[data-page="home"] .home-approach-heading,
  body[data-page="home"] .home-approach-head .home-kicker,
  body[data-page="home"] .home-service-head .home-kicker,
  body[data-page="services"] .service-detail-hero__head h1 em,
  body[data-page="service-detail"] .service-detail-hero__head h1 .service-hero-accent,
  body:not([data-page="home"]) .page-hero-copy .eyebrow,
  .section-kicker,
  body[data-page="het-plan"] .plan-intro-head h1 .plan-intro-title-mark,
  body[data-page="het-plan"] .plan-timeline-title em,
  body[data-page="het-plan"] .plan-timeline-title span,
  body[data-page="over-ons"] .about-hero-accent,
  body[data-page="over-ons"] .about-plan-heading h2 em,
  body[data-page="over-ons"] .about-plan-heading h2 span,
  body[data-page="over-ons"] .about-plan-timeline .plan-timeline-title span
) {
  color: #49538a !important;
}

/* Keep the large editorial titles on every public page in the same Poppins
   treatment.  These selectors cover the title blocks used by the homepage,
   services, plan, team, and projects views without changing body copy. */
:where(
  .home-mission-copy p,
  .home-mission-copy h2,
  .home-kicker,
  .home-approach-heading,
  .home-approach-lede,
  .home-approach-head .home-kicker,
  .home-service-head h2,
  .home-prefooter-cta h2,
  .home-prefooter-cta__eyebrow,
  .home-blueprint-head p,
  .home-blueprint-head h1,
  .home-blueprint-head h2,
  .service-detail-hero__head h1,
  .service-detail-kicker,
  .material-offer-head h2,
  .material-offer-head p,
  .service-route-copy h2,
  .service-route-copy > p,
  .service-widget-head h2,
  .service-widget-head > p,
  .plan-intro-head p,
  .plan-intro-head h1,
  .plan-timeline-title,
  .about-story-section h1,
  .about-team-section h2,
  .about-plan-heading > p,
  .about-plan-heading h2,
  .project-board-title,
  .project-static-page .section-title
) {
  font-family: var(--font-h1) !important;
}

:where(
  .service-detail-hero__head h1,
  .plan-intro-head h1,
  .plan-timeline-title,
  .about-story-section h1,
  .about-plan-heading h2
) :is(span, em, strong) {
  font-family: inherit !important;
}

/* The dark header shell needs a light foreground while the page is at the
   very top. Keep this state explicit so later page-specific typography rules
   cannot make the navigation disappear into the background. */
@media (min-width: 1081px) {
  body[data-page="contact"] .site-header:not(.is-condensed):not(.is-menu-open) .nav-shell,
  body[data-page="projecten"] .site-header:not(.is-condensed):not(.is-menu-open) .nav-shell {
    background: transparent !important;
    background-image: none !important;
    border-color: transparent !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
  }

  body[data-page="contact"] .site-header:not(.is-condensed):not(.is-menu-open) .main-nav > a,
  body[data-page="contact"] .site-header:not(.is-condensed):not(.is-menu-open) .nav-dropdown > a,
  body[data-page="contact"] .site-header:not(.is-condensed):not(.is-menu-open) .language-toggle a,
  body[data-page="projecten"] .site-header:not(.is-condensed):not(.is-menu-open) .main-nav > a,
  body[data-page="projecten"] .site-header:not(.is-condensed):not(.is-menu-open) .nav-dropdown > a,
  body[data-page="projecten"] .site-header:not(.is-condensed):not(.is-menu-open) .language-toggle a {
    color: #111930 !important;
  }

  body[data-page="contact"] .site-header:not(.is-condensed):not(.is-menu-open) .nav-dropdown > a::after {
    border-color: currentColor;
  }

  body:not([data-page="home"]):not([data-page="contact"]):not([data-page="projecten"]) .site-header:not(.is-condensed):not(.is-menu-open) .main-nav > a,
  body:not([data-page="home"]):not([data-page="contact"]):not([data-page="projecten"]) .site-header:not(.is-condensed):not(.is-menu-open) .nav-dropdown > a,
  body:not([data-page="home"]):not([data-page="contact"]):not([data-page="projecten"]) .site-header:not(.is-condensed):not(.is-menu-open) .language-toggle a {
    color: #ffffff !important;
  }

  body:not([data-page="home"]) .site-header:not(.is-condensed):not(.is-menu-open) .nav-dropdown > a::after {
    border-color: currentColor;
  }
}

/* Keep the homepage hero accent on the lighter blue used in the hero artwork,
   while the supporting editorial accents use the logo blue. */
body[data-page="home"] .home-hero-copy h1 .home-hero-accent {
  color: #6f89e8 !important;
}

/* Let the longer English homepage hero phrase wrap inside narrow viewports
   instead of keeping the desktop-sized fit-content heading off-screen. */
@media (max-width: 760px) {
  body[data-page="home"] .home-hero-copy {
    width: 100%;
    max-width: 100%;
  }

  body[data-page="home"] .home-hero-copy h1 {
    width: 100%;
    max-width: 100%;
    text-align: center;
  }

  body[data-page="home"] .home-hero-copy h1 .home-hero-topline,
  body[data-page="home"] .home-hero-copy h1 .home-hero-accent {
    justify-self: center;
    max-width: 100%;
    text-align: center;
  }

  body[data-page="home"] .home-hero-copy h1 .home-hero-accent {
    width: 100%;
    white-space: normal;
    overflow-wrap: normal;
  }
}

/* On phones, let the BluePrint timeline behave like a real touch rail. The
   milestones stay on one continuous line and the active detail card follows
   the position reached by swiping horizontally. */
@media (max-width: 680px) {
  body[data-page="over-ons"] .about-plan-timeline .plan-timeline-map,
  body[data-page="het-plan"] .plan-timeline-section .plan-timeline-map {
    overflow: visible;
  }

  body[data-page="over-ons"] .about-plan-timeline .plan-timeline-rail,
  body[data-page="het-plan"] .plan-timeline-section .plan-timeline-rail {
    display: block;
    width: 100%;
    min-width: 0;
    padding-bottom: 12px;
    overflow-x: auto;
    overflow-y: hidden;
    overscroll-behavior-x: contain;
    scrollbar-width: thin;
    scroll-behavior: smooth;
    touch-action: pan-x;
  }

  body[data-page="over-ons"] .about-plan-timeline .plan-timeline-axis,
  body[data-page="over-ons"] .about-plan-timeline .plan-timeline-years,
  body[data-page="het-plan"] .plan-timeline-section .plan-timeline-axis,
  body[data-page="het-plan"] .plan-timeline-section .plan-timeline-years {
    display: block;
    width: 720px;
    min-width: 720px !important;
  }

  body[data-page="over-ons"] .about-plan-timeline .plan-timeline-axis,
  body[data-page="het-plan"] .plan-timeline-section .plan-timeline-axis {
    min-height: 250px;
    overflow: visible;
  }

  body[data-page="over-ons"] .about-plan-timeline .plan-timeline-line,
  body[data-page="over-ons"] .about-plan-timeline .plan-timeline-travel,
  body[data-page="over-ons"] .about-plan-timeline .plan-timeline-progress,
  body[data-page="het-plan"] .plan-timeline-section .plan-timeline-line,
  body[data-page="het-plan"] .plan-timeline-section .plan-timeline-travel,
  body[data-page="het-plan"] .plan-timeline-section .plan-timeline-progress {
    display: block;
  }

  body[data-page="over-ons"] .about-plan-timeline .plan-timeline-point,
  body[data-page="het-plan"] .plan-timeline-section .plan-timeline-point {
    position: absolute;
    inset: auto;
    top: 50%;
    left: var(--timeline-pos);
    display: grid;
    min-height: 0;
    padding: 0;
    color: #8d9aa8;
    transform: translate(-50%, -50%);
  }

  body[data-page="over-ons"] .about-plan-timeline .plan-timeline-point::after,
  body[data-page="het-plan"] .plan-timeline-section .plan-timeline-point::after {
    width: 1px;
    height: clamp(30px, 3.4vw, 48px) !important;
    margin: 0;
    background: #d5dde7;
    content: "";
  }

  body[data-page="over-ons"] .about-plan-timeline .plan-timeline-point span,
  body[data-page="over-ons"] .about-plan-timeline .plan-timeline-point--label-left span,
  body[data-page="over-ons"] .about-plan-timeline .plan-timeline-point--label-right span,
  body[data-page="het-plan"] .plan-timeline-section .plan-timeline-point span,
  body[data-page="het-plan"] .plan-timeline-section .plan-timeline-point--label-left span,
  body[data-page="het-plan"] .plan-timeline-section .plan-timeline-point--label-right span {
    position: absolute;
    right: auto;
    left: 50%;
    width: max-content;
    max-width: 150px;
    color: inherit;
    text-align: center;
    white-space: normal;
    overflow-wrap: normal;
    transform: translateX(-50%);
  }

  body[data-page="over-ons"] .about-plan-timeline .plan-timeline-point--top span,
  body[data-page="het-plan"] .plan-timeline-section .plan-timeline-point--top span {
    top: auto;
    bottom: calc(100% + clamp(42px, 4.4vw, 60px));
  }

  body[data-page="over-ons"] .about-plan-timeline .plan-timeline-point--bottom span,
  body[data-page="het-plan"] .plan-timeline-section .plan-timeline-point--bottom span {
    top: calc(100% + clamp(42px, 4.4vw, 60px));
    bottom: auto;
  }

  body[data-page="over-ons"] .about-plan-timeline .plan-timeline-years,
  body[data-page="het-plan"] .plan-timeline-section .plan-timeline-years {
    display: block;
    min-height: 1.25em;
    padding-top: 22px;
  }
}

/* Keep the About Us team compact on phones so all three columns fit in each
   row instead of falling back to a two-column or single-column stack. */
@media (max-width: 760px) {
  body[data-page="over-ons"] .about-team-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px 8px;
    margin-top: 36px;
  }

  body[data-page="over-ons"] .about-team-card {
    padding: 4px 3px 14px;
  }

  body[data-page="over-ons"] .about-team-card img {
    width: 100%;
    max-width: none;
  }

  body[data-page="over-ons"] .about-team-card h3 {
    margin-top: 9px;
    font-size: clamp(0.7rem, 2.8vw, 0.92rem);
    line-height: 1.12;
  }

  body[data-page="over-ons"] .about-team-card p {
    font-size: clamp(0.62rem, 2.35vw, 0.78rem);
    line-height: 1.2;
  }
}

/* Match the shared single-column footer on the homepage at mobile widths. */
@media (max-width: 760px) {
  body[data-page="home"] .site-footer--brand .home-footer-meta {
    grid-template-columns: minmax(0, 1fr) !important;
    row-gap: 32px;
  }

  body[data-page="home"] .site-footer--brand .home-footer-meta > * {
    grid-column: 1 / -1 !important;
    grid-row: auto !important;
  }
}

/* Keep the desktop BluePrint title in its own full-screen row above the
   milestone labels and rail. */
@media (min-width: 1001px) and (min-height: 680px) {
  body[data-page="over-ons"] .about-plan-timeline.is-scroll-enabled .plan-timeline-frame {
    gap: clamp(84px, 10vh, 104px);
  }

  body[data-page="over-ons"] .about-plan-timeline.is-scroll-enabled .plan-timeline-title {
    position: relative;
    z-index: 2;
  }

  body[data-page="over-ons"] .about-plan-timeline .plan-timeline-point--top span {
    bottom: calc(100% + clamp(32px, 3.2vw, 40px));
  }
}

/* Match the lighter homepage accent blue in the About Us and service heroes. */
:is(
  body[data-page="over-ons"] .about-hero-accent,
  body[data-page="service-detail"] .service-detail-hero__head h1 .service-hero-accent
) {
  color: #6f89e8 !important;
}

/* Keep the long service accent title inside the viewport on phones. */
@media (max-width: 760px) {
  body[data-page="service-detail"] .service-detail-hero__head h1 .service-hero-topline {
    display: grid;
    justify-self: center;
    justify-items: center;
    width: 100%;
    gap: 0.08em;
    margin-inline: auto;
    text-align: center;
  }

  body[data-page="service-detail"] .service-detail-hero__head h1 .service-hero-connector {
    margin: 0;
  }

  body[data-page="service-detail"] .service-detail-hero__head h1 .service-hero-accent {
    max-width: 100%;
    font-size: clamp(2.6rem, 11vw, 4.2rem);
    justify-self: center;
    overflow-wrap: anywhere;
    text-align: center;
    width: 100%;
  }
}

/* Let the mobile photo heroes fill the full phone viewport instead of
   exposing the page background beneath the image. */
@media (max-width: 760px) {
  body[data-page="service-detail"] .service-detail-hero--bricks,
  body[data-page="service-detail"] .service-detail-hero--excavating {
    min-height: 100svh;
  }

  body[data-page="service-detail"] .service-detail-hero--bricks .service-detail-hero__layout,
  body[data-page="service-detail"] .service-detail-hero--excavating .service-detail-hero__layout {
    min-height: calc(100svh - 118px);
  }

  body[data-page="over-ons"] .about-story-section {
    min-height: 100svh;
  }

  body[data-page="over-ons"] .about-story-section .about-frame {
    min-height: calc(100svh - 168px);
  }
}

/* Render the company name in the mission statement like the wordmark. */
body[data-page="home"] .home-mission-copy .home-mission-brand {
  white-space: nowrap;
  font-weight: 800;
}

body[data-page="home"] .home-mission-copy .home-mission-brand__blue {
  color: #49538a;
}

body[data-page="home"] .home-mission-copy .home-mission-brand__black {
  color: #000000;
}

/* Let desktop timeline detail cards grow enough to contain the active copy. */
@media (min-width: 1001px) and (min-height: 680px) {
  body[data-page="het-plan"] .plan-timeline-story.is-scroll-enabled .plan-timeline-map,
  body[data-page="over-ons"] .about-plan-timeline.is-scroll-enabled .plan-timeline-map {
    grid-template-rows: minmax(210px, 1fr) auto minmax(220px, 24vh, 280px);
  }

  body[data-page="het-plan"] .plan-timeline-story.is-scroll-enabled .plan-timeline-feature,
  body[data-page="over-ons"] .about-plan-timeline.is-scroll-enabled .plan-timeline-feature {
    height: auto;
    min-height: clamp(220px, 24vh, 280px);
  }
}
