@font-face {
  font-family: "MLP Jost";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("../fonts/jost-latin-ext-variable.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: "MLP Jost";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("../fonts/jost-latin-variable.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --font-brand: "MLP Jost", "Century Gothic", "Avenir Next", Futura, "Trebuchet MS", Arial, sans-serif;
  --ink: #10191c;
  --ink-soft: #172428;
  --hero-ink: #11191d;
  --footer-ink: #0b1114;
  --paper: #f8fcfa;
  --paper-bright: #ffffff;
  --mineral: #0f8470;
  --mineral-deep: #154f45;
  --coral: #0f8470;
  --coral-deep: #0f8470;
  --amber: #63a99f;
  --text-secondary: #294b43;
  --text-on-dark: #f2fbf8;
  --line-dark: rgba(15, 132, 112, 0.24);
  --line-light: rgba(99, 169, 159, 0.42);
  --page: 64px;
  --radius-xs: 4px;
  --radius-sm: 6px;
  --radius-md: 8px;
  --shadow: 0 24px 70px rgba(7, 11, 13, 0.2);
  --ease-out: cubic-bezier(.16, 1, .3, 1);
  --ease-in-out: cubic-bezier(.65, 0, .35, 1);
  color-scheme: light;
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  background: var(--footer-ink);
}

body {
  margin: 0;
  overflow-x: clip;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-brand);
  font-size: 17px;
  font-weight: 450;
  line-height: 1.5;
  letter-spacing: 0;
  font-kerning: normal;
  font-optical-sizing: auto;
  text-rendering: geometricPrecision;
}

body.menu-open { overflow: hidden; }

button, input, textarea, select { font: inherit; letter-spacing: 0; }
a { color: inherit; }
img, canvas, video { display: block; max-width: 100%; }
button, summary, a { -webkit-tap-highlight-color: transparent; }

:focus-visible {
  outline: 3px solid var(--amber);
  outline-offset: 3px;
}

::selection { color: var(--ink); background: var(--amber); }

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 12px 18px;
  color: var(--ink);
  background: var(--paper-bright);
  border-radius: var(--radius-sm);
  transform: translateY(-180%);
  transition: transform 180ms var(--ease-out);
}

.skip-link:focus { transform: translateY(0); }

.site-header {
  position: fixed;
  z-index: 100;
  top: 12px;
  right: 16px;
  left: 16px;
  color: var(--paper-bright);
  direction: ltr;
  transition: color 280ms var(--ease-out), background 280ms var(--ease-out), box-shadow 280ms var(--ease-out);
}

.site-header.is-scrolled {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.93);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-md);
  box-shadow: 0 12px 38px rgba(7, 11, 13, 0.1);
  backdrop-filter: blur(18px);
}

.site-header__inner {
  display: grid;
  grid-template-columns: minmax(205px, .75fr) auto minmax(300px, .55fr);
  align-items: center;
  min-height: 108px;
  padding: 0 12px 0 10px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  color: inherit;
  font-size: 18px;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
}
.brand img { width: 42px; height: 42px; flex: 0 0 42px; transition: transform 550ms var(--ease-out); }
.brand span { color: currentColor; transition: color 240ms var(--ease-out); }
.brand:hover img, .brand:focus-visible img { transform: rotate(-5deg) scale(1.04); }
.brand:hover span, .brand:focus-visible span { color: var(--coral); }

.desktop-nav, .header-actions { display: flex; align-items: center; }
.desktop-nav { gap: 18px; font-size: 14px; font-weight: 750; }
.desktop-nav > a, .login-link { text-decoration: none; }
.desktop-nav > a, .desktop-nav summary, .login-link { position: relative; }
.desktop-nav > a::after, .login-link::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 2px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 260ms var(--ease-out);
}
.desktop-nav > a:hover::after, .login-link:hover::after { transform: scaleX(1); transform-origin: left; }

.header-actions { justify-content: flex-end; gap: 16px; font-size: 14px; font-weight: 750; }
.nav-disclosure, .language-switcher { position: relative; }
.nav-disclosure summary, .language-switcher summary { cursor: pointer; list-style: none; }
.nav-disclosure summary::-webkit-details-marker, .language-switcher summary::-webkit-details-marker { display: none; }
.nav-disclosure summary span { display: inline-block; margin-left: 4px; transition: transform 220ms var(--ease-out); }
.nav-disclosure[open] summary span { transform: rotate(45deg); }

.nav-panel, .language-panel {
  position: absolute;
  top: calc(100% + 20px);
  padding: 12px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.nav-panel {
  left: -20px;
  display: grid;
  grid-template-columns: repeat(2, 230px);
  gap: 2px;
}

.nav-panel a, .language-panel a {
  display: grid;
  gap: 2px;
  padding: 13px 14px;
  border-radius: var(--radius-sm);
  text-decoration: none;
}
.nav-panel a:hover, .language-panel a:hover { background: rgba(15, 132, 112, 0.08); }
.nav-panel strong, .language-panel strong { font-size: 14px; }
.nav-panel small, .language-panel small { color: var(--text-secondary); font-weight: 500; }

.language-switcher summary {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid currentColor;
  border-radius: 50%;
}
.language-panel { right: 0; left: auto; width: min(240px, calc(100vw - 32px)); max-height: min(620px, calc(100vh - 118px)); overflow: auto; direction: ltr; }
.language-panel a { grid-template-columns: 34px 1fr auto; align-items: center; }
.language-panel a span { font-size: 12px; font-weight: 800; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 50px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 800;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: color 180ms ease, background 180ms ease, transform 220ms var(--ease-out), box-shadow 220ms var(--ease-out);
}
.button:hover { transform: translateY(-2px); }
.button:active { transform: translateY(0) scale(.985); }
.button--small { min-height: 42px; padding: 0 16px; font-size: 13px; }
.button--coral { color: var(--paper-bright); background: var(--coral); box-shadow: 0 10px 34px rgba(15, 132, 112, 0.22); }
.button--coral:hover { color: var(--paper-bright); background: #0b6f60; box-shadow: 0 16px 38px rgba(15, 132, 112, 0.3); }
.button--ink { color: var(--paper-bright); background: var(--ink); }
.button--ink:hover { background: var(--mineral-deep); }

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  color: currentColor;
  background: transparent;
  border: 1px solid currentColor;
  border-radius: var(--radius-sm);
  cursor: pointer;
}
.menu-toggle span { display: block; width: 20px; height: 2px; margin: 5px auto; background: currentColor; transition: transform 220ms var(--ease-out); }
.menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(3.5px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-3.5px) rotate(-45deg); }

.mobile-menu {
  max-height: calc(100svh - 90px);
  padding: 12px 20px 24px;
  overflow-y: auto;
  color: var(--ink);
  background: var(--paper-bright);
  border-top: 1px solid var(--line-dark);
}
.mobile-menu a { display: block; padding: 12px 0; border-bottom: 1px solid var(--line-dark); font-size: 20px; font-weight: 700; text-decoration: none; }

.eyebrow, .kicker {
  margin: 0 0 22px;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
}
.eyebrow { display: flex; align-items: center; gap: 10px; }
.eyebrow > span { width: 8px; height: 8px; background: var(--coral); border-radius: 50%; box-shadow: 0 0 0 5px rgba(15, 132, 112, 0.14); }
.kicker { color: var(--mineral); }

.home-hero {
  position: relative;
  display: grid;
  min-height: 92svh;
  max-height: 980px;
  overflow: hidden;
  color: var(--paper-bright);
  background: var(--hero-ink);
  isolation: isolate;
}
.home-hero__media, .home-hero__shade { position: absolute; inset: 0; }
.home-hero__media video, .home-hero__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 58% center; filter: saturate(1.2) contrast(1.12) brightness(.92); }
.home-hero__media .home-poster { z-index: 0; display: block; }
.home-hero__media video { z-index: 1; background: transparent; animation: film-breathe 40s var(--ease-in-out) infinite alternate; }
.home-hero__media.is-video-unavailable video { display: none; }
.home-hero__shade { z-index: 1; background: linear-gradient(90deg, rgba(3,6,6,.99) 0%, rgba(3,6,6,.97) 37%, rgba(5,55,46,.78) 61%, rgba(15,132,112,.08) 80%, rgba(3,6,6,.18) 100%), linear-gradient(0deg, rgba(3,6,6,.9) 0%, transparent 46%); }
.signal-canvas { position: absolute; inset: 0; width: 100%; height: 100%; opacity: .72; pointer-events: none; }
.film-light { position: absolute; inset: -40% -20%; background: linear-gradient(112deg, transparent 42%, rgba(99,179,170,.18) 50%, transparent 58%); mix-blend-mode: screen; animation: film-sweep 11s var(--ease-in-out) infinite; }
.home-journey-map { position: absolute; z-index: 1; top: 50%; right: 2vw; width: min(48vw, 690px); overflow: visible; opacity: .64; filter: drop-shadow(0 0 18px rgba(99,179,170,.18)); transform: translateY(-50%); pointer-events: none; }
.home-journey-map__orbit, .home-journey-map__route { fill: none; vector-effect: non-scaling-stroke; }
.home-journey-map__orbit { stroke: rgba(255,255,255,.17); stroke-width: 1; }
.home-journey-map__orbit--outer { animation: journey-orbit 42s linear infinite; stroke-dasharray: 7 18; transform-origin: center; }
.home-journey-map__orbit--inner { animation: journey-orbit 34s linear infinite reverse; stroke: rgba(99,179,170,.28); stroke-dasharray: 3 12; transform-origin: center; }
.home-journey-map__route { animation: journey-route 28s linear infinite; stroke: rgba(15,132,112,.72); stroke-dasharray: 32 18; stroke-width: 2; }
.home-journey-map__nodes circle { animation: journey-node 38.4s var(--ease-in-out) infinite; fill: var(--amber); opacity: .22; stroke: rgba(255,255,255,.7); stroke-width: 2; transform-box: fill-box; transform-origin: center; }
.home-journey-map__nodes circle:nth-child(2) { animation-delay: 6.4s; }
.home-journey-map__nodes circle:nth-child(3) { animation-delay: 12.8s; }
.home-journey-map__nodes circle:nth-child(4) { animation-delay: 19.2s; }
.home-journey-map__nodes circle:nth-child(5) { animation-delay: 25.6s; }
.home-journey-map__nodes circle:nth-child(6) { animation-delay: 32s; }
.home-journey-map__pulse { animation: journey-pulse 7s var(--ease-out) infinite; fill: rgba(15,132,112,.2); stroke: var(--coral); stroke-width: 2; transform-box: fill-box; transform-origin: center; }

.home-hero__content {
  position: relative;
  z-index: 2;
  align-self: center;
  width: min(760px, 74vw);
  margin-left: var(--page);
  padding: 118px 0 160px;
}
.home-hero h1, .page-hero h1, .language-hero h1 {
  max-width: 980px;
  margin: 0;
  font-size: 80px;
  font-weight: 680;
  line-height: .98;
  letter-spacing: 0;
  text-wrap: balance;
}
.home-hero h1 { max-width: 760px; font-size: 58px; line-height: 1.04; }
.home-title__outcome { display: block; color: var(--amber); }
.home-title__outcome > span { color: var(--coral); }
.hero-title__accent--coral { color: var(--coral); }
.hero-title__accent--amber { color: var(--amber); }
.hero-summary { max-width: 620px; margin: 28px 0 0; font-size: 21px; font-weight: 480; line-height: 1.48; text-wrap: pretty; }
.home-hero .hero-summary { max-width: 720px; margin-top: 22px; font-size: 18px; line-height: 1.5; }
.hero-actions { display: flex; align-items: center; gap: 24px; margin-top: 36px; }
.hero-assurance { display: flex; align-items: center; gap: 10px; max-width: 680px; margin: 16px 0 0; color: var(--text-on-dark); font-size: 14px; font-weight: 520; line-height: 1.45; }
.hero-assurance__icon { display: inline-grid; width: 22px; height: 22px; flex: 0 0 22px; place-items: center; color: var(--amber); filter: drop-shadow(0 0 7px rgba(99,169,159,.38)); }
.hero-assurance__icon svg { display: block; width: 100%; height: 100%; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.text-link { display: inline-flex; align-items: center; gap: 10px; color: var(--ink); font-weight: 800; text-underline-offset: 5px; }
.text-link--light { color: var(--paper-bright); }
.page-hero .text-link { color: inherit; }
.text-link span { transition: transform 220ms var(--ease-out); }
.text-link:hover span { transform: translateX(4px); }

.hero-growth-film {
  position: relative;
  top: clamp(72px, 9vh, 92px);
  width: min(980px, calc(100vw - (2 * var(--page))));
  aspect-ratio: 1774 / 270;
  margin-top: 92px;
  overflow: hidden;
  background: #040707;
  border-top: 1px solid rgba(99,169,159,.42);
  border-bottom: 1px solid rgba(99,169,159,.28);
  box-shadow: 0 20px 60px rgba(2,8,7,.22);
}
.hero-growth-film::after { display: none; }
.hero-growth-film__poster, .hero-growth-film video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-growth-film__poster { z-index: 0; display: block; }
.hero-growth-film video { z-index: 1; display: block; background: transparent; }
.hero-growth-film.is-video-unavailable video { display: none; }
.hero-growth-fallback { display: none; grid-template-columns: repeat(6, 1fr); gap: 0; margin: 0; padding: 18px 0; list-style: none; }
.hero-growth-fallback li { display: grid; gap: 5px; color: var(--text-on-dark); font-size: 10px; font-weight: 800; text-align: center; text-transform: uppercase; }
.hero-growth-fallback span { color: var(--amber); font: 800 9px/1 var(--font-brand); }
.next-chapter { position: absolute; z-index: 3; right: var(--page); bottom: 38px; color: var(--paper-bright); font-size: 12px; font-weight: 800; text-decoration: none; }

.momentum-story { padding: 130px var(--page) 150px; background: var(--paper); }
.section-intro { max-width: 760px; }
.section-intro--wide { max-width: 1040px; }
.section-intro h2, .chapter-sequence h2, .scan-lab h2, .final-cta h2, .context-band h2, .boundary-proof h2, .editorial-index h2, .faq-list h2, .contact-workspace h2, .support-contact h2 {
  margin: 0;
  font-size: 52px;
  font-weight: 680;
  line-height: 1.08;
  letter-spacing: 0;
  text-wrap: balance;
}
.section-intro > p:last-child { max-width: 620px; margin: 24px 0 0; color: var(--text-secondary); font-size: 19px; font-weight: 470; }

.story-track { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); margin-top: 86px; border-top: 1px solid var(--line-dark); }
.story-track article { display: grid; grid-template-columns: 70px 1fr; gap: 24px; min-height: 310px; padding: 42px 42px 48px 0; border-bottom: 1px solid var(--line-dark); opacity: .72; transform: translateY(22px); transition: opacity 600ms ease, transform 700ms var(--ease-out), background 500ms ease; }
.story-track article:nth-child(odd) { border-right: 1px solid var(--line-dark); }
.story-track article:nth-child(even) { padding-left: 42px; }
.story-track article.is-visible { opacity: 1; transform: translateY(0); }
.story-number { color: var(--coral-deep); font: 700 12px/1 var(--font-brand); }
.story-label { margin: 0 0 12px; color: var(--mineral); font-size: 12px; font-weight: 800; text-transform: uppercase; }
.story-track h3 { max-width: 520px; margin: 0; font-size: 34px; font-weight: 650; line-height: 1.13; }
.story-track article p:last-child { max-width: 500px; margin: 18px 0 0; color: var(--text-secondary); font-weight: 470; }

.service-band { padding: 130px var(--page); color: var(--paper-bright); background: linear-gradient(125deg, var(--footer-ink) 0 68%, #123d35 100%); }
.service-band .kicker { color: var(--amber); }
.service-records { margin-top: 72px; border-top: 1px solid rgba(99,169,159,.3); }
.service-record { display: grid; grid-template-columns: 70px 220px 1fr 40px; align-items: center; gap: 24px; min-height: 116px; border-bottom: 1px solid rgba(99,169,159,.3); color: inherit; text-decoration: none; transition: color 220ms ease, background 220ms ease, padding 350ms var(--ease-out); }
.service-record:hover { padding: 0 18px; color: var(--ink); background: var(--paper-bright); }
.service-record > span { color: var(--coral); font: 700 12px/1 var(--font-brand); }
.service-record strong { font-size: 25px; }
.service-record p { max-width: 650px; margin: 0; color: var(--text-on-dark); }
.service-record:hover p { color: var(--text-secondary); }
.service-record i { font-size: 24px; font-style: normal; }

.scan-lab { position: relative; display: grid; grid-template-columns: minmax(300px, .8fr) minmax(440px, 1fr); gap: 0; padding: 130px var(--page); overflow: hidden; background: var(--paper-bright); }
.scan-lab__visual { position: relative; min-height: 520px; overflow: hidden; border-radius: var(--radius-md); box-shadow: var(--shadow); }
.scan-lab__visual img { width: 100%; height: 100%; object-fit: cover; }
.scan-beam { position: absolute; top: 12%; bottom: 12%; left: 46%; width: 3px; background: linear-gradient(transparent, var(--coral), var(--amber), transparent); box-shadow: 0 0 32px rgba(15,132,112,.45); animation: scan-beam 6s var(--ease-in-out) infinite alternate; }
.scan-lab__content { align-self: center; padding: 30px 0 30px 72px; }
.scan-lab__content p:not(.kicker) { max-width: 620px; margin: 24px 0 32px; color: var(--text-secondary); }
.magnet-grid { grid-column: 1 / -1; display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 70px; border-top: 1px solid var(--line-dark); border-left: 1px solid var(--line-dark); }
.magnet-card { display: grid; min-height: 142px; padding: 24px; border-right: 1px solid var(--line-dark); border-bottom: 1px solid var(--line-dark); color: inherit; text-decoration: none; transition: background 220ms ease, transform 260ms var(--ease-out); }
.magnet-card:hover { z-index: 1; background: rgba(99,179,170,.12); transform: translateY(-4px); }
.magnet-card .status-dot { width: 8px; height: 8px; background: var(--amber); border-radius: 50%; }
.magnet-card strong { align-self: end; font-size: 17px; }
.magnet-card small { margin-top: 5px; color: var(--text-secondary); }

.proof-band { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line-dark); background: var(--paper); }
.proof-band p { display: grid; min-height: 160px; margin: 0; padding: 34px var(--page); border-right: 1px solid var(--line-dark); }
.proof-band p:last-child { border-right: 0; }
.proof-band strong { font-size: 19px; }
.proof-band span { align-self: end; color: var(--text-secondary); font-size: 14px; }

/* Chapter washes keep the black, white and green surfaces connected while scrolling. */
.section-transition-host { position: relative; isolation: isolate; }
.section-transition-wash {
  --transition-rgb: 15, 132, 112;
  --transition-origin: left top;
  position: absolute;
  z-index: 0;
  top: 0;
  right: 0;
  left: 0;
  height: clamp(108px, 10vw, 164px);
  pointer-events: none;
  opacity: .82;
  background:
    linear-gradient(180deg, rgba(var(--transition-rgb), .16), rgba(var(--transition-rgb), .06) 44%, transparent 100%),
    linear-gradient(100deg, rgba(var(--transition-rgb), .12), transparent 76%);
  transform: translateY(-8px) scaleX(.86);
  transform-origin: var(--transition-origin);
  transition: opacity 1100ms var(--ease-out), transform 1350ms var(--ease-out);
}
.section-transition-wash--coral { --transition-rgb: 15, 132, 112; --transition-origin: right top; }
.section-transition-wash--amber { --transition-rgb: 99, 169, 159; --transition-origin: center top; }
.section-transition-wash.is-visible { opacity: 1; transform: translateY(0) scaleX(1); }
.section-transition-host > .section-transition-wash ~ * { position: relative; z-index: 1; }

.page-hero {
  position: relative;
  display: grid;
  min-height: 86svh;
  max-height: 940px;
  overflow: hidden;
  color: var(--paper-bright);
  background: var(--hero-ink);
  isolation: isolate;
}
.page-hero__media { position: absolute; inset: 0; }
.page-hero__media::after { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(3,6,6,.99) 0%, rgba(3,6,6,.97) 37%, rgba(5,55,46,.8) 61%, rgba(15,132,112,.08) 80%, rgba(3,6,6,.15) 100%), linear-gradient(0deg, rgba(3,6,6,.72), transparent 52%); content: ""; }
.page-hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: center; filter: saturate(1.18) contrast(1.12) brightness(.9); animation: page-breathe 16s var(--ease-in-out) infinite alternate; }
.scene-light { position: absolute; inset: 0; background: linear-gradient(118deg, transparent 35%, rgba(99,179,170,.13) 48%, transparent 61%); mix-blend-mode: screen; animation: film-sweep 13s var(--ease-in-out) infinite; }
.hero-motion { position: absolute; inset: 0; overflow: hidden; opacity: .6; pointer-events: none; }
.hero-motion span { position: absolute; display: block; }
.hero-motion--storefront span, .hero-motion--architecture span { top: 18%; right: 8%; width: 15%; height: 48%; border: 1px solid rgba(99,169,159,.38); transform: perspective(700px) rotateY(-12deg); animation: motion-window 11s var(--ease-in-out) infinite alternate; }
.hero-motion--storefront span:nth-child(2), .hero-motion--architecture span:nth-child(2) { top: 29%; right: 25%; height: 36%; animation-delay: -2.6s; }
.hero-motion--storefront span:nth-child(3), .hero-motion--architecture span:nth-child(3) { top: 42%; right: 43%; height: 25%; animation-delay: -5.2s; }
.hero-motion--storefront span:nth-child(4), .hero-motion--architecture span:nth-child(4) { top: 12%; right: -7%; height: 60%; animation-delay: -7.8s; }
.hero-motion--signal span, .hero-motion--manifesto span { top: 50%; right: 15%; width: 18px; height: 18px; background: var(--coral); border: 1px solid rgba(255,255,255,.8); border-radius: 50%; box-shadow: 0 0 0 0 rgba(15,132,112,.4); animation: motion-signal 8s var(--ease-in-out) infinite; }
.hero-motion--signal span:nth-child(2), .hero-motion--manifesto span:nth-child(2) { top: 24%; right: 31%; width: 12px; height: 12px; animation-delay: -2s; }
.hero-motion--signal span:nth-child(3), .hero-motion--manifesto span:nth-child(3) { top: 67%; right: 38%; width: 9px; height: 9px; animation-delay: -4s; }
.hero-motion--signal span:nth-child(4), .hero-motion--manifesto span:nth-child(4) { top: 34%; right: 7%; width: 7px; height: 7px; animation-delay: -6s; }
.hero-motion--table span { top: 22%; left: 7%; width: 36%; height: 1px; background: rgba(255,255,255,.55); transform-origin: left; animation: motion-ledger 7s var(--ease-in-out) infinite; }
.hero-motion--table span:nth-child(2) { top: 37%; width: 28%; animation-delay: -1.75s; }
.hero-motion--table span:nth-child(3) { top: 52%; width: 40%; animation-delay: -3.5s; }
.hero-motion--table span:nth-child(4) { top: 67%; width: 22%; animation-delay: -5.25s; }
.hero-motion--relay span { top: 24%; right: 9%; width: 12px; height: 12px; background: var(--mineral); border-radius: 50%; box-shadow: -180px 120px 0 var(--amber), -360px 250px 0 var(--coral); animation: motion-relay 9s var(--ease-in-out) infinite; }
.hero-motion--relay span:nth-child(2) { top: 42%; right: 18%; animation-delay: -2.25s; }
.hero-motion--relay span:nth-child(3) { top: 61%; right: 7%; animation-delay: -4.5s; }
.hero-motion--relay span:nth-child(4) { top: 75%; right: 29%; animation-delay: -6.75s; }
.hero-motion--lens span, .hero-motion--boundary span { top: 50%; right: 17%; width: 110px; height: 110px; border: 1px solid rgba(255,255,255,.45); border-radius: 50%; animation: motion-lens 10s var(--ease-out) infinite; }
.hero-motion--lens span:nth-child(2), .hero-motion--boundary span:nth-child(2) { animation-delay: -2.5s; }
.hero-motion--lens span:nth-child(3), .hero-motion--boundary span:nth-child(3) { animation-delay: -5s; }
.hero-motion--lens span:nth-child(4), .hero-motion--boundary span:nth-child(4) { animation-delay: -7.5s; }
.hero-motion--searchlight span, .hero-motion--scan span { top: -15%; right: 10%; width: 1px; height: 130%; background: linear-gradient(transparent, rgba(99,169,159,.54), transparent); transform: rotate(18deg); animation: motion-scan 10s var(--ease-in-out) infinite; }
.hero-motion--searchlight span:nth-child(2), .hero-motion--scan span:nth-child(2) { right: 28%; animation-delay: -2.5s; }
.hero-motion--searchlight span:nth-child(3), .hero-motion--scan span:nth-child(3) { right: 46%; animation-delay: -5s; }
.hero-motion--searchlight span:nth-child(4), .hero-motion--scan span:nth-child(4) { right: 64%; animation-delay: -7.5s; }
.hero-motion--calm span, .hero-motion--listening span { top: 28%; right: 8%; width: 34%; height: 2px; background: rgba(255,255,255,.48); transform-origin: right; animation: motion-wave 6s var(--ease-in-out) infinite; }
.hero-motion--calm span:nth-child(2), .hero-motion--listening span:nth-child(2) { top: 40%; animation-delay: -1.5s; }
.hero-motion--calm span:nth-child(3), .hero-motion--listening span:nth-child(3) { top: 52%; animation-delay: -3s; }
.hero-motion--calm span:nth-child(4), .hero-motion--listening span:nth-child(4) { top: 64%; animation-delay: -4.5s; }
.hero-motion--questions span { top: 20%; right: 7%; width: 5px; height: 5px; background: var(--paper-bright); border-radius: 50%; animation: motion-question 8s var(--ease-in-out) infinite; }
.hero-motion--questions span:nth-child(2) { top: 38%; right: 29%; animation-delay: -2s; }
.hero-motion--questions span:nth-child(3) { top: 56%; right: 12%; animation-delay: -4s; }
.hero-motion--questions span:nth-child(4) { top: 72%; right: 34%; animation-delay: -6s; }
.page-hero__content { position: relative; z-index: 2; align-self: center; width: min(770px, 62vw); margin-left: var(--page); padding: 135px 0 95px; }
.page-hero h1 { font-size: 66px; }
.hero-index { position: absolute; z-index: 2; right: var(--page); bottom: 32px; color: rgba(99,169,159,.56); font: 500 72px/1 var(--font-brand); }

.page-hero--table .page-hero__content, .page-hero--facets .page-hero__content { justify-self: end; width: min(690px, 55vw); margin-right: var(--page); margin-left: 0; }
.page-hero--table .page-hero__media::after, .page-hero--facets .page-hero__media::after { background: linear-gradient(270deg, rgba(3,6,6,.99), rgba(3,6,6,.97) 38%, rgba(5,55,46,.78) 62%, rgba(15,132,112,.06) 82%, rgba(3,6,6,.14) 100%), linear-gradient(0deg, rgba(3,6,6,.68), transparent 54%); }
.page-hero--relay { color: var(--paper-bright); }
.page-hero--relay .page-hero__media::after { background: linear-gradient(90deg, rgba(3,6,6,.99), rgba(3,6,6,.97) 38%, rgba(5,55,46,.8) 61%, rgba(15,132,112,.07) 80%), linear-gradient(0deg, rgba(3,6,6,.68), transparent); }
.page-hero--relay .text-link, .page-hero--storefront .text-link, .page-hero--architecture .text-link, .page-hero--horizon .text-link, .page-hero--searchlight .text-link { color: var(--paper-bright); }
.page-hero--lens .page-hero__content { align-self: end; padding-bottom: 82px; }
.page-hero--lens .page-hero__media img { object-position: 66% center; }
.page-hero--resonance .page-hero__content { align-self: start; padding-top: 170px; }
.page-hero--horizon, .page-hero--searchlight, .page-hero--storefront, .page-hero--architecture { color: var(--paper-bright); }
.page-hero--horizon .page-hero__media::after, .page-hero--searchlight .page-hero__media::after { background: linear-gradient(90deg, rgba(3,6,6,.99), rgba(3,6,6,.97) 38%, rgba(5,55,46,.76) 63%, rgba(15,132,112,.06) 82%); }
.page-hero--storefront .page-hero__media::after, .page-hero--architecture .page-hero__media::after { background: linear-gradient(90deg, rgba(3,6,6,.99), rgba(3,6,6,.97) 38%, rgba(5,55,46,.78) 62%, rgba(15,132,112,.06) 80%); }
.page-hero--threshold .page-hero__content, .page-hero--boundary .page-hero__content { align-self: end; padding-bottom: 78px; }
.page-hero--manifesto .page-hero__content { width: min(840px, 70vw); }
.page-hero--listening .page-hero__content, .page-hero--scan .page-hero__content, .page-hero--demo .page-hero__content { align-self: end; padding-bottom: 72px; }

.css-scene { position: absolute; inset: 0; overflow: hidden; background: var(--paper); }
.css-scene span { position: absolute; display: block; }
.css-scene--resource-index { background: linear-gradient(125deg, var(--ink) 0 49%, var(--mineral) 49% 67%, var(--amber) 67%); }
.css-scene--resource-index span { width: 220px; height: 300px; background: rgba(255,255,255,.96); border: 1px solid rgba(15,132,112,.22); box-shadow: var(--shadow); }
.css-scene--resource-index span:nth-child(1) { top: 18%; right: 29%; transform: rotate(-8deg); }
.css-scene--resource-index span:nth-child(2) { top: 25%; right: 16%; transform: rotate(5deg); }
.css-scene--resource-index span:nth-child(3) { top: 34%; right: 5%; transform: rotate(13deg); }
.css-scene--faq-index {
  background:
    radial-gradient(circle at 84% 38%, rgba(99,169,159,.13), transparent 30%),
    linear-gradient(120deg, #11191d 0%, #12231f 58%, #154f45 100%);
}
.css-scene--faq-index span {
  right: 5%;
  width: min(28vw, 470px);
  height: 78px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: var(--radius-sm);
  box-shadow: 0 18px 48px rgba(10,15,18,.2);
}
.css-scene--faq-index span:nth-child(1) { top: 18%; background: linear-gradient(90deg, #0c6f60, #15927c); }
.css-scene--faq-index span:nth-child(2) { top: 36%; right: 9%; background: #dff5ef; }
.css-scene--faq-index span:nth-child(3) { top: 54%; right: 3%; background: #154f45; }
.css-scene--faq-index span:nth-child(4) { top: 72%; right: 12%; background: #63a99f; }
.page-hero--questions .page-hero__media::after { background: linear-gradient(90deg, rgba(7,11,13,.98) 0%, rgba(9,47,40,.94) 47%, rgba(15,132,112,.36) 73%, rgba(15,132,112,.06) 100%); }
.page-hero--questions .hero-title__accent--coral { color: #79c8bb; }
.page-hero--questions .hero-title__accent--amber { color: #a5dacf; }
.page-hero--questions .eyebrow > span { background: #79c8bb; box-shadow: 0 0 0 5px rgba(121,200,187,.14); }

.chapter-sequence { display: grid; grid-template-columns: .85fr 1.15fr; gap: 80px; padding: 130px var(--page); background: var(--paper-bright); }
.chapter-sequence__intro { align-self: start; position: sticky; top: 120px; }
.chapter-list { border-top: 1px solid var(--line-dark); }
.chapter-list article { display: grid; grid-template-columns: 52px 230px 1fr; gap: 28px; align-items: start; min-height: 180px; padding: 32px 0; border-bottom: 1px solid var(--line-dark); }
.chapter-list article > span { color: var(--coral-deep); font: 700 12px/1 var(--font-brand); }
.chapter-list h3 { margin: 0; font-size: 23px; line-height: 1.2; }
.chapter-list p { margin: 0; color: var(--text-secondary); font-weight: 470; }

.context-band, .boundary-proof, .support-contact { display: grid; grid-template-columns: 1.1fr .9fr; gap: 90px; align-items: end; padding: 110px var(--page); color: var(--paper-bright); background: linear-gradient(125deg, #030706 0%, var(--footer-ink) 56%, #0d3a32 100%); }
.context-band > p, .support-contact p { max-width: 650px; margin: 0; color: var(--text-on-dark); font-size: 19px; }
.context-band .kicker, .boundary-proof .kicker, .support-contact .kicker { color: var(--amber); }

.boundary-proof { align-items: start; color: var(--paper-bright); background: linear-gradient(125deg, var(--footer-ink) 0 68%, #123d35 100%); }
.boundary-proof ol { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line-light); }
.boundary-proof li { display: grid; gap: 5px; padding: 22px 0; border-bottom: 1px solid var(--line-light); }
.boundary-proof li span { color: var(--coral); font-size: 12px; font-weight: 800; text-transform: uppercase; }

.editorial-index, .faq-list { padding: 120px var(--page); background: rgba(15,132,112,.055); }
.editorial-index { display: grid; grid-template-columns: .7fr 1.3fr; gap: 90px; }
.editorial-index nav { border-top: 1px solid var(--line-dark); }
.editorial-index nav a { display: grid; grid-template-columns: 48px 1fr auto; gap: 24px; align-items: center; min-height: 106px; border-bottom: 1px solid var(--line-dark); text-decoration: none; transition: padding 280ms var(--ease-out), background 200ms ease; }
.editorial-index nav a:hover { padding: 0 16px; background: var(--paper-bright); }
.editorial-index nav span { color: var(--coral-deep); font: 700 12px/1 var(--font-brand); }
.editorial-index nav i { font-size: 13px; font-style: normal; }


.faq-list { display: grid; grid-template-columns: .75fr 1.25fr; gap: 90px; background: var(--paper-bright); }
.faq-items { border-top: 1px solid var(--line-dark); }
.faq-items details { border-bottom: 1px solid var(--line-dark); }
.faq-items summary { display: flex; align-items: center; justify-content: space-between; min-height: 90px; cursor: pointer; font-size: 20px; font-weight: 700; list-style: none; }
.faq-items summary::-webkit-details-marker { display: none; }
.faq-items summary span { font-size: 28px; font-weight: 400; transition: transform 220ms var(--ease-out); }
.faq-items details[open] summary span { transform: rotate(45deg); }
.faq-items details p { max-width: 700px; margin: 0; padding: 0 45px 28px 0; color: var(--text-secondary); }

.support-contact { grid-template-columns: 1fr; background: var(--paper-bright); color: var(--ink); }
.support-contact > div { max-width: 780px; }
.support-contact .kicker { color: var(--mineral); }
.support-contact p { margin-top: 24px; color: var(--text-secondary); }
.support-contact a:not(.button) { font-weight: 700; text-underline-offset: 4px; }

.contact-workspace { display: grid; grid-template-columns: .7fr 1.3fr; gap: 90px; padding: 130px var(--page); background: var(--paper-bright); }
.contact-workspace__intro { position: sticky; top: 120px; align-self: start; }
.contact-workspace__intro > p:not(.kicker) { max-width: 520px; color: var(--text-secondary); }
.direct-contact { display: grid; gap: 8px; margin-top: 36px; }
.direct-contact a { width: fit-content; font-size: 18px; font-weight: 700; text-underline-offset: 5px; }
.preview-form { padding: 38px; background: var(--paper); border: 1px solid var(--line-dark); border-radius: var(--radius-md); }
.form-field { display: grid; gap: 8px; }
.form-field--challenge { margin-bottom: 28px; }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.form-field label { font-size: 14px; font-weight: 800; }
.form-field label span { font-weight: 400; }
.form-field input, .form-field textarea, .form-field select {
  width: 100%;
  min-height: 52px;
  padding: 14px 15px;
  color: var(--ink);
  background: var(--paper-bright);
  border: 1px solid rgba(15,132,112,.32);
  border-radius: var(--radius-sm);
  resize: vertical;
  transition: border 180ms ease, box-shadow 180ms ease;
}
.form-field textarea { min-height: 150px; }
.form-field input:focus, .form-field textarea:focus, .form-field select:focus { border-color: var(--mineral); box-shadow: 0 0 0 4px rgba(15,132,112,.12); outline: 0; }
.form-field small { color: var(--text-secondary); font-size: 12px; }
.field-error { min-height: 18px; color: var(--ink); font-size: 12px; font-weight: 700; }
.form-field [aria-invalid="true"] { border-color: var(--coral); }
.consent { display: grid; grid-template-columns: 22px 1fr; gap: 12px; align-items: start; margin-top: 28px; font-size: 14px; cursor: pointer; }
.consent input { width: 20px; height: 20px; margin: 2px 0 0; accent-color: var(--mineral); }
.form-submit-row { display: flex; align-items: center; justify-content: space-between; gap: 24px; margin-top: 24px; }
.form-submit-row p { margin: 0; color: var(--text-secondary); font-size: 12px; }
.form-submit-row p span { color: var(--mineral); }
.form-status { margin-top: 22px; padding: 18px; color: var(--paper-bright); background: var(--mineral-deep); border-radius: var(--radius-sm); }

.final-cta { position: relative; display: grid; grid-template-columns: 160px 1fr auto; gap: 54px; align-items: center; min-height: 420px; padding: 90px var(--page); overflow: hidden; color: var(--paper-bright); background: linear-gradient(125deg, var(--footer-ink) 0 65%, #123d35 100%); }
.final-cta > div:not(.final-cta__signal) { position: relative; z-index: 2; }
.final-cta p:not(.kicker) { max-width: 600px; margin: 20px 0 0; color: var(--text-on-dark); }
.final-cta .kicker { color: var(--amber); }
.final-cta__signal { position: relative; width: 132px; height: 132px; }
.final-cta__signal span { position: absolute; inset: 50%; width: 10px; height: 10px; background: var(--amber); border-radius: 50%; transform: translate(-50%, -50%); }
.final-cta__signal span:nth-child(2), .final-cta__signal span:nth-child(3) { background: transparent; border: 1px solid rgba(99,179,170,.6); animation: signal-ring 3s ease-out infinite; }
.final-cta__signal span:nth-child(3) { animation-delay: 1.5s; }
.final-cta__actions { display: grid; gap: 20px; justify-items: start; }

.analysis-invite {
  position: fixed;
  z-index: 120;
  right: 22px;
  bottom: 22px;
  width: min(370px, calc(100vw - 32px));
  padding: 25px 54px 24px 24px;
  color: var(--paper-bright);
  background: linear-gradient(135deg, rgba(11,17,20,.98), rgba(18,61,53,.98));
  border: 1px solid var(--line-light);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
  animation: invite-in 520ms var(--ease-out) both;
}
.analysis-invite > p { margin: 0 0 8px; color: var(--amber); font-size: 11px; font-weight: 800; text-transform: uppercase; }
.analysis-invite h2 { margin: 0 0 18px; font-size: 22px; line-height: 1.2; }
.analysis-invite > a { color: var(--paper-bright); font-weight: 800; text-underline-offset: 4px; }
.invite-close { position: absolute; top: 12px; right: 12px; display: grid; place-items: center; width: 34px; height: 34px; padding: 0; color: var(--paper-bright); background: transparent; border: 1px solid var(--line-light); border-radius: 50%; font-size: 22px; cursor: pointer; }

.legal-hero, .language-hero { position: relative; min-height: 58svh; overflow: hidden; padding: 180px var(--page) 90px; color: var(--paper-bright); background: linear-gradient(112deg, var(--hero-ink) 0 60%, #25433f 60% 82%, var(--mineral) 82%); isolation: isolate; }
.legal-hero::before, .language-hero::before { position: absolute; z-index: 0; inset: -30%; background: repeating-linear-gradient(112deg, transparent 0 90px, rgba(255,255,255,.06) 90px 91px, transparent 91px 180px); animation: legal-flow 24s linear infinite; content: ""; }
.legal-hero > *, .language-hero > * { position: relative; z-index: 1; }
.legal-hero h1, .language-hero h1 { font-size: 66px; }
.legal-hero > p:last-child, .language-hero > p:not(.eyebrow) { max-width: 660px; margin: 25px 0 0; font-size: 20px; }
.language-hero .hero-actions { margin-top: 34px; }
.legal-reading { max-width: 980px; min-height: 44svh; margin: 0 auto; padding: 90px var(--page) 130px; }
.legal-hero h1, .language-hero h1, .legal-reading h1, .legal-reading h2, .legal-reading h3, .legal-reading p, .legal-reading a { overflow-wrap: anywhere; }
.legal-notice { padding: 26px; background: var(--paper); border-left: 4px solid var(--coral); }
.legal-reading h2 { margin-top: 54px; }
.legal-reading nav { display: flex; flex-wrap: wrap; gap: 18px 28px; margin-top: 60px; padding-top: 24px; border-top: 1px solid var(--line-dark); }
.legal-reading nav a { text-underline-offset: 4px; }

.site-footer { display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: 60px; padding: 90px var(--page) 32px; color: var(--paper-bright); background: linear-gradient(120deg, #070b0d 0 72%, #0e302a 100%); direction: ltr; }
.footer-lead p { max-width: 330px; color: var(--text-on-dark); }
.brand--footer { font-size: 21px; }
.site-footer h2 { margin: 0 0 22px; color: var(--amber); font-size: 12px; text-transform: uppercase; }
.site-footer > div:not(.footer-lead):not(.footer-bottom) { display: flex; flex-direction: column; align-items: flex-start; }
.site-footer > div > a:not(.brand) { margin: 5px 0; color: rgba(255,255,255,.9); text-decoration: none; }
.site-footer > div > a:hover { color: var(--coral); }
.footer-cookie-settings { margin: 5px 0 0; padding: 0; color: rgba(255,255,255,.9); background: transparent; border: 0; font: inherit; text-decoration: underline; text-decoration-color: rgba(99,169,159,.58); text-underline-offset: 5px; cursor: pointer; }
.footer-cookie-settings:hover { color: var(--paper-bright); text-decoration-color: var(--coral); }
.footer-bottom { grid-column: 1 / -1; display: flex; justify-content: space-between; gap: 24px; margin-top: 36px; padding-top: 24px; color: rgba(223,245,239,.76); border-top: 1px solid var(--line-light); font-size: 12px; }

@keyframes film-breathe { from { transform: scale(1.01) translate3d(0,0,0); } to { transform: scale(1.045) translate3d(-.6%, -.35%, 0); } }
@keyframes page-breathe { 0% { transform: scale(1.015) translate3d(0,0,0); } 50% { transform: scale(1.075) translate3d(-1.2%, -.8%, 0); } 100% { transform: scale(1.025) translate3d(.7%, -.3%, 0); } }
@keyframes film-sweep { 0%, 15% { transform: translateX(-34%); opacity: 0; } 35%, 65% { opacity: 1; } 85%, 100% { transform: translateX(34%); opacity: 0; } }
@keyframes journey-orbit { to { transform: rotate(360deg); } }
@keyframes journey-route { to { stroke-dashoffset: -200; } }
@keyframes journey-node { 0%, 13%, 100% { opacity: .2; transform: scale(.8); } 4%, 9% { opacity: 1; transform: scale(1.8); } }
@keyframes journey-pulse { 0% { opacity: 1; transform: scale(.35); } 75%, 100% { opacity: 0; transform: scale(3.4); } }
@keyframes motion-window { from { opacity: .28; transform: perspective(700px) rotateY(-12deg) translateY(-18px); } to { opacity: .85; transform: perspective(700px) rotateY(-4deg) translateY(22px); } }
@keyframes motion-signal { 0%, 100% { opacity: .25; transform: translate3d(0,0,0) scale(.7); box-shadow: 0 0 0 0 rgba(15,132,112,.4); } 50% { opacity: 1; transform: translate3d(-34px,18px,0) scale(1.15); box-shadow: 0 0 0 34px rgba(15,132,112,0); } }
@keyframes motion-ledger { 0%, 100% { opacity: .22; transform: scaleX(.32); } 50% { opacity: .88; transform: scaleX(1); } }
@keyframes motion-relay { 0%, 100% { opacity: .28; transform: translate3d(0,-20px,0); } 50% { opacity: 1; transform: translate3d(-58px,28px,0); } }
@keyframes motion-lens { 0% { opacity: 0; transform: translate(50%,-50%) scale(.25); } 55% { opacity: .75; } 100% { opacity: 0; transform: translate(50%,-50%) scale(5); } }
@keyframes motion-scan { 0%, 100% { opacity: 0; transform: translateX(160px) rotate(18deg); } 25%, 75% { opacity: .8; } 50% { transform: translateX(-340px) rotate(18deg); } }
@keyframes motion-wave { 0%, 100% { opacity: .2; transform: scaleX(.22); } 50% { opacity: .85; transform: scaleX(1); } }
@keyframes motion-question { 0%, 100% { opacity: .2; transform: translateY(-16px) scale(.7); } 50% { opacity: 1; transform: translateY(22px) scale(1.8); } }
@keyframes scan-beam { from { transform: translateX(-80px); } to { transform: translateX(100px); } }
@keyframes signal-ring { 0% { transform: translate(-50%, -50%) scale(.3); opacity: 0; } 30% { opacity: 1; } 100% { transform: translate(-50%, -50%) scale(12); opacity: 0; } }
@keyframes invite-in { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: translateY(0); } }
@keyframes legal-flow { from { transform: translate3d(-4%,0,0); } to { transform: translate3d(14%,0,0); } }

@media (min-width: 1800px) {
  :root { --page: 88px; }
  .home-hero h1 { font-size: 64px; }
  .home-hero__content { width: 760px; }
  .page-hero h1 { font-size: 74px; }
  .site-header__inner { min-height: 72px; }
}

@media (max-width: 1240px) {
  :root { --page: 40px; }
  .site-header__inner { grid-template-columns: 190px auto minmax(260px, .7fr); }
  .desktop-nav { gap: 18px; }
  .header-actions { gap: 12px; }
  .home-hero h1 { font-size: 52px; }
  .page-hero h1 { font-size: 58px; }
  .section-intro h2, .chapter-sequence h2, .scan-lab h2, .final-cta h2, .context-band h2, .boundary-proof h2, .editorial-index h2, .faq-list h2, .contact-workspace h2, .support-contact h2 { font-size: 46px; }
  .chapter-sequence { grid-template-columns: .7fr 1.3fr; gap: 50px; }
  .chapter-list article { grid-template-columns: 42px 190px 1fr; }
  .magnet-grid { grid-template-columns: repeat(3, 1fr); }
  .proof-band p { padding: 30px 34px; }
}

@media (max-width: 1050px) {
  .desktop-nav, .header-actions > .language-switcher, .header-actions > .login-link, .header-actions > .button { display: none; }
  .site-header__inner { grid-template-columns: 1fr auto; }
  .menu-toggle { display: block; }
  .hero-growth-film { top: 0; margin-top: 64px; }
  .site-header:not(.is-scrolled) { color: var(--paper-bright); background: rgba(11,17,20,.9); border: 1px solid rgba(99,169,159,.28); border-radius: var(--radius-md); backdrop-filter: blur(12px); }
  .home-hero__content { width: min(690px, calc(100vw - 80px)); padding-bottom: 118px; }
  .page-hero__content, .page-hero--table .page-hero__content, .page-hero--facets .page-hero__content { justify-self: start; width: min(720px, calc(100vw - 80px)); margin-right: 0; margin-left: var(--page); }
  .page-hero--table .page-hero__media::after, .page-hero--facets .page-hero__media::after { background: linear-gradient(90deg, rgba(3,6,6,.99), rgba(3,6,6,.97) 40%, rgba(5,55,46,.76) 64%, rgba(15,132,112,.06) 82%), linear-gradient(0deg, rgba(3,6,6,.68), transparent); }
  .scan-lab { grid-template-columns: 1fr; }
  .scan-lab__visual { min-height: 420px; }
  .scan-lab__content { padding: 54px 0 0; }
  .chapter-sequence, .context-band, .boundary-proof, .support-contact, .editorial-index, .faq-list, .contact-workspace { grid-template-columns: 1fr; }
  .chapter-sequence__intro, .contact-workspace__intro { position: static; }
  .chapter-list article { grid-template-columns: 52px 240px 1fr; }
  .service-record { grid-template-columns: 55px 190px 1fr 28px; }
  .proof-band { grid-template-columns: repeat(2, 1fr); }
  .proof-band p:nth-child(2) { border-right: 0; }
  .proof-band p:nth-child(-n+2) { border-bottom: 1px solid var(--line-dark); }
  .final-cta { grid-template-columns: 110px 1fr; }
  .final-cta__signal { width: 100px; height: 100px; }
  .final-cta__actions { grid-column: 2; }
  .site-footer { grid-template-columns: repeat(3, 1fr); }
  .footer-lead { grid-column: 1 / -1; }
}

@media (max-width: 760px) {
  :root { --page: 22px; }
  body { font-size: 16px; }
  .site-header { top: 8px; right: 8px; left: 8px; }
  .site-header__inner { min-height: 58px; padding: 0 8px; }
  .brand { font-size: 16px; }
  .brand img { width: 38px; height: 38px; }
  .home-hero { min-height: 88svh; max-height: none; }
  .home-hero__media img { object-position: 65% center; }
  .home-journey-map { right: -36vw; width: 92vw; opacity: .3; }
  .hero-motion { opacity: .34; }
  .home-hero__shade { background: linear-gradient(0deg, rgba(3,6,6,.99) 0%, rgba(3,6,6,.96) 54%, rgba(5,55,46,.76) 79%, rgba(15,132,112,.08) 100%); }
  .home-hero__content { align-self: end; width: auto; margin: 0; padding: 108px var(--page) 86px; }
  .home-hero h1 { font-size: 40px; line-height: 1.04; }
  .page-hero h1, .legal-hero h1, .language-hero h1 { font-size: 46px; line-height: 1.02; }
  .hero-summary { margin-top: 20px; font-size: 17px; }
  .hero-actions { flex-wrap: wrap; gap: 18px; margin-top: 28px; }
  .hero-assurance { gap: 8px; margin-top: 14px; font-size: 13px; }
  .hero-assurance__icon { width: 19px; height: 19px; flex-basis: 19px; }
  .hero-growth-film { width: 100%; margin-top: 24px; }
  .hero-growth-film video, .hero-growth-film__poster { display: none; }
  .hero-growth-fallback { display: grid; grid-template-columns: repeat(3, 1fr); padding: 12px 0; }
  .hero-growth-fallback li { min-height: 38px; padding: 6px 4px; border-top: 1px solid rgba(99,169,159,.26); }
  .next-chapter { right: var(--page); bottom: 26px; }
  .momentum-story, .service-band, .scan-lab, .chapter-sequence, .context-band, .boundary-proof, .support-contact, .editorial-index, .faq-list, .contact-workspace { padding-top: 88px; padding-bottom: 88px; }
  .section-intro h2, .chapter-sequence h2, .scan-lab h2, .final-cta h2, .context-band h2, .boundary-proof h2, .editorial-index h2, .faq-list h2, .contact-workspace h2, .support-contact h2 { font-size: 38px; }
  .story-track { grid-template-columns: 1fr; margin-top: 52px; }
  .story-track article, .story-track article:nth-child(even) { min-height: 0; padding: 30px 0 34px; border-right: 0; }
  .story-track h3 { font-size: 27px; }
  .service-record { grid-template-columns: 42px 1fr 28px; gap: 12px; min-height: 112px; padding: 18px 0; }
  .service-record strong { font-size: 21px; }
  .service-record p { grid-column: 2 / -1; font-size: 14px; }
  .service-record i { grid-column: 3; grid-row: 1; }
  .scan-lab__visual { min-height: 320px; }
  .scan-lab__content { padding-top: 40px; }
  .magnet-grid { grid-template-columns: repeat(2, 1fr); margin-top: 48px; }
  .magnet-card { min-height: 124px; padding: 18px; }
  .proof-band { grid-template-columns: 1fr; }
  .proof-band p { min-height: 120px; border-right: 0; border-bottom: 1px solid var(--line-dark); }
  .page-hero { min-height: 90svh; max-height: none; }
  .page-hero__media::after, .page-hero--table .page-hero__media::after, .page-hero--facets .page-hero__media::after, .page-hero--relay .page-hero__media::after, .page-hero--horizon .page-hero__media::after, .page-hero--searchlight .page-hero__media::after, .page-hero--storefront .page-hero__media::after, .page-hero--architecture .page-hero__media::after { background: linear-gradient(0deg, rgba(3,6,6,.99), rgba(3,6,6,.96) 52%, rgba(5,55,46,.76) 79%, rgba(15,132,112,.08)); }
  .page-hero--relay, .page-hero--horizon, .page-hero--searchlight, .page-hero--storefront, .page-hero--architecture { color: var(--paper-bright); }
  .page-hero--relay .text-link, .page-hero--horizon .text-link, .page-hero--searchlight .text-link, .page-hero--storefront .text-link, .page-hero--architecture .text-link { color: var(--paper-bright); }
  .page-hero__content, .page-hero--table .page-hero__content, .page-hero--facets .page-hero__content { align-self: end; width: auto; margin: 0; padding: 118px var(--page) 74px; }
  .hero-index { display: none; }
  .chapter-list article { grid-template-columns: 40px 1fr; gap: 18px; min-height: 0; }
  .chapter-list p { grid-column: 2; }
  .editorial-index nav a { grid-template-columns: 36px 1fr; padding: 20px 0; }
  .editorial-index nav i { grid-column: 2; }
  .ledger-row { grid-template-columns: 1fr auto; gap: 8px 18px; padding: 22px 0; }
  .ledger-row small { grid-column: 1 / -1; }
  .preview-form { padding: 24px 18px; }
  .form-grid { grid-template-columns: 1fr; }
  .form-submit-row { align-items: stretch; flex-direction: column; }
  .final-cta { grid-template-columns: 1fr; gap: 28px; min-height: 0; padding: 80px var(--page); }
  .final-cta__signal { width: 72px; height: 72px; }
  .final-cta__actions { grid-column: 1; }
  .analysis-invite { right: 16px; bottom: 16px; left: 16px; width: auto; }
  .legal-hero, .language-hero { min-height: 66svh; padding: 150px var(--page) 74px; background: linear-gradient(145deg, var(--ink) 0 62%, var(--mineral-deep) 62% 82%, var(--coral) 82%); }
  .legal-reading { padding-right: var(--page); padding-left: var(--page); }
  .site-footer { grid-template-columns: repeat(2, 1fr); gap: 44px 28px; padding-top: 72px; }
  .footer-lead, .footer-bottom { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; }
}

@media (max-width: 390px) {
  :root { --page: 18px; }
  .home-hero h1 { font-size: 35px; }
  .page-hero h1, .legal-hero h1, .language-hero h1 { font-size: 38px; }
  .section-intro h2, .chapter-sequence h2, .scan-lab h2, .final-cta h2, .context-band h2, .boundary-proof h2, .editorial-index h2, .faq-list h2, .contact-workspace h2, .support-contact h2 { font-size: 34px; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .magnet-grid { grid-template-columns: 1fr; }
  .site-footer { grid-template-columns: 1fr; }
  .site-footer > div, .footer-lead, .footer-bottom { grid-column: 1; }
}

@media (max-height: 680px) and (min-width: 761px) {
  .home-hero { min-height: 760px; }
  .page-hero { min-height: 680px; }
  .home-hero__content { padding-top: 96px; padding-bottom: 72px; }
  .page-hero__content { padding-top: 110px; }
  .home-hero h1 { font-size: 48px; }
  .hero-growth-film { top: 0; width: min(860px, calc(100vw - (2 * var(--page)))); margin-top: 48px; }
  .next-chapter { bottom: 28px; }
}

@media (max-height: 650px) and (max-width: 760px) {
  .home-hero { min-height: 92svh; }
  .home-hero__content { padding-top: 82px; padding-bottom: 104px; }
  .home-hero h1 { font-size: 31px; }
  .home-hero .eyebrow { margin-bottom: 10px; font-size: 9px; }
  .home-hero .hero-summary { margin-top: 12px; font-size: 14px; line-height: 1.4; }
  .home-hero .hero-actions { gap: 10px; margin-top: 18px; }
  .home-hero .hero-assurance { margin-top: 10px; font-size: 12px; }
  .home-hero .button { min-height: 44px; }
  .hero-growth-fallback li { min-height: 34px; font-size: 9px; }
  .next-chapter { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  .signal-canvas, .film-light, .scene-light, .scan-beam, .home-journey-map, .hero-motion { display: none; }
  .home-hero__media video, .hero-growth-film video, .hero-growth-film__poster { display: none; }
  .home-hero__media .home-poster { display: block; transform: none !important; }
  .hero-growth-fallback { display: grid; }
  .page-hero__media img { animation: none !important; transform: none !important; }
  .legal-hero::before, .language-hero::before { display: none; }
  .final-cta__signal span, .analysis-invite { animation: none !important; }
  .story-track article { opacity: 1; transform: none; }
  .section-transition-wash { opacity: 1; transform: none; }
}

/* Website V3: lead-first conversion architecture and official brand system. */
.page-hero h1 { max-width: 760px; font-size: 58px; line-height: 1.02; }
.page-hero__content { width: min(700px, 58vw); }
.page-hero .hero-summary { max-width: 590px; }
.brand--footer { width: 215px; height: 44px; }
.brand--footer img { width: 215px; height: 44px; object-fit: contain; object-position: left center; }

.analysis-spectrum {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  margin-top: 68px;
  border-top: 1px solid var(--line-dark);
  border-left: 1px solid var(--line-dark);
}
.analysis-spectrum span {
  display: grid;
  place-items: end start;
  min-height: 126px;
  padding: 22px;
  border-right: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  font-size: 14px;
  font-weight: 800;
}

.route-story { display: grid; grid-template-columns: 1fr 1fr; min-height: 430px; background: var(--paper); }
.route-story article { display: grid; align-content: end; min-height: 430px; padding: 64px var(--page); border-right: 1px solid var(--line-dark); }
.route-story article:last-child { border-right: 0; }
.route-story span { color: var(--coral); font: 700 12px/1 var(--font-brand); }
.route-story h2 { max-width: 520px; margin: 32px 0 18px; font-size: 42px; }
.route-story p { max-width: 520px; margin: 0; color: var(--text-secondary); font-weight: 470; }

.chapter-sequence--signal { grid-template-columns: 1.1fr .9fr; background: var(--paper-bright); }
.chapter-sequence--signal .chapter-list article:nth-child(2) { margin-left: 7%; }
.chapter-sequence--signal .chapter-list article:nth-child(3) { margin-left: 14%; }
.chapter-sequence--searchlight { grid-template-columns: 1.25fr .75fr; background: var(--paper); }
.chapter-sequence--searchlight .chapter-list { border-top: 4px solid var(--amber); }
.chapter-sequence--table, .chapter-sequence--facets { color: var(--paper-bright); background: linear-gradient(125deg, #030706 0%, var(--footer-ink) 54%, #0b3029 82%, #0e4b40 100%); }
.chapter-sequence--table .chapter-list, .chapter-sequence--facets .chapter-list,
.chapter-sequence--table .chapter-list article, .chapter-sequence--facets .chapter-list article { border-color: var(--line-light); }
.chapter-sequence--table .chapter-list p, .chapter-sequence--facets .chapter-list p { color: var(--text-on-dark); }
.chapter-sequence--relay { display: block; background: var(--paper-bright); }
.chapter-sequence--relay .chapter-sequence__intro { position: static; max-width: 740px; }
.chapter-sequence--relay .chapter-list { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 70px; border-top: 1px solid var(--line-dark); border-left: 1px solid var(--line-dark); }
.chapter-sequence--relay .chapter-list article { display: block; min-height: 300px; padding: 36px; border-right: 1px solid var(--line-dark); }
.chapter-sequence--relay .chapter-list h3 { margin: 76px 0 20px; font-size: 28px; }
.chapter-sequence--lens { color: var(--paper-bright); background: linear-gradient(135deg, #030706 0%, #081512 48%, #0b3029 78%, #0e5548 100%); }
.chapter-sequence--lens .chapter-list, .chapter-sequence--lens .chapter-list article { border-color: var(--line-light); }
.chapter-sequence--lens .chapter-list p { color: #effbf7; }
.chapter-sequence--resonance { grid-template-columns: .6fr 1.4fr; background: var(--paper-bright); }
.chapter-sequence--resonance .chapter-list article { grid-template-columns: 52px 1fr; }
.chapter-sequence--resonance .chapter-list p { grid-column: 2; }
.chapter-sequence--horizon { background: linear-gradient(125deg, #030706 0%, var(--footer-ink) 58%, #0c392f 100%); color: var(--paper-bright); }
.chapter-sequence--horizon .chapter-list, .chapter-sequence--horizon .chapter-list article { border-color: var(--line-light); }
.chapter-sequence--horizon .chapter-list p { color: var(--text-on-dark); }
.chapter-sequence--architecture { display: block; background: var(--paper); }
.chapter-sequence--architecture .chapter-sequence__intro { position: static; max-width: 800px; }
.chapter-sequence--architecture .chapter-list { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 74px; border-top: 0; }
.chapter-sequence--architecture .chapter-list article { display: block; min-height: 360px; padding: 32px; border-top: 1px solid var(--line-dark); border-right: 1px solid var(--line-dark); }
.chapter-sequence--architecture .chapter-list article:nth-child(2) { margin-top: 56px; }
.chapter-sequence--architecture .chapter-list article:nth-child(3) { margin-top: 112px; }
.chapter-sequence--architecture .chapter-list h3 { margin: 90px 0 20px; font-size: 28px; }

.route-story--table, .route-story--facets, .route-story--lens, .route-story--horizon { color: var(--paper-bright); background: linear-gradient(125deg, var(--footer-ink) 0 68%, #123d35 100%); }
.route-story--table p, .route-story--facets p, .route-story--lens p, .route-story--horizon p { color: var(--text-on-dark); }
.route-story--relay article:first-of-type { background: var(--amber); }
.route-story--resonance article:last-of-type { background: var(--coral); }
.route-story--searchlight article:first-of-type { background: linear-gradient(140deg, #030706 0%, #0b3029 72%, #0e5548 100%); color: var(--paper-bright); }
.route-story--searchlight article:first-of-type p { color: var(--text-on-dark); }

body[data-route="leadgeneratie"] .final-cta { background: linear-gradient(125deg, #030706 0%, var(--footer-ink) 58%, #0e5548 100%); }
body[data-route="seo"] .final-cta { background: linear-gradient(125deg, #ffffff 0%, #edf8f4 64%, #d6eee7 100%); color: var(--ink); }
body[data-route="seo"] .final-cta p:not(.kicker), body[data-route="seo"] .text-link--light { color: var(--ink); }
body[data-route="websites"] .final-cta { background: var(--paper); color: var(--ink); }
body[data-route="websites"] .final-cta p:not(.kicker), body[data-route="websites"] .text-link--light { color: var(--ink); }
body[data-route="crm"] .final-cta { background: linear-gradient(125deg, #030706 0%, var(--footer-ink) 58%, #0e5548 100%); }
body[data-route="automatisering"] .final-cta { background: linear-gradient(125deg, #030706 0%, var(--footer-ink) 58%, #0e5548 100%); color: var(--paper-bright); }
body[data-route="automatisering"] .final-cta p:not(.kicker), body[data-route="automatisering"] .text-link--light { color: #effbf7; }

@media (max-width: 1180px) {
  .site-header__inner { grid-template-columns: 210px 1fr auto; }
  .desktop-nav { gap: 14px; font-size: 13px; }
  .analysis-spectrum { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 760px) {
  .brand, .brand .brand-logo { width: 170px; height: 36px; }
  .site-header__inner { grid-template-columns: 1fr auto; }
  .page-hero h1 { font-size: 42px; }
  .page-hero__content { width: auto; }
  section.chapter-sequence .chapter-sequence__intro, section.contact-workspace .contact-workspace__intro { position: static; top: auto; }
  .analysis-spectrum { grid-template-columns: repeat(2, 1fr); }
  .analysis-spectrum span { min-height: 90px; }
  .route-story { grid-template-columns: 1fr; }
  .route-story article { min-height: 300px; border-right: 0; border-bottom: 1px solid var(--line-dark); }
  .route-story h2 { font-size: 32px; }
  .chapter-sequence--signal, .chapter-sequence--searchlight { grid-template-columns: 1fr; }
  .chapter-sequence--signal .chapter-list article:nth-child(2), .chapter-sequence--signal .chapter-list article:nth-child(3) { margin-left: 0; }
  .chapter-sequence--relay .chapter-list, .chapter-sequence--architecture .chapter-list { grid-template-columns: 1fr; }
  .chapter-sequence--architecture .chapter-list article:nth-child(2), .chapter-sequence--architecture .chapter-list article:nth-child(3) { margin-top: 0; }
  .chapter-sequence--architecture .chapter-list article { min-height: 260px; }
}

@media print {
  .site-header, .analysis-invite, .hero-actions, .hero-growth-film, .next-chapter, .signal-canvas, .film-light, .scene-light, .site-footer { display: none !important; }
  .home-hero, .page-hero, .legal-hero, .language-hero { min-height: 0; padding: 40px; color: var(--ink); background: var(--paper-bright); }
  .home-hero__media, .home-hero__shade, .page-hero__media { display: none; }
  .home-hero__content, .page-hero__content { width: auto; margin: 0; padding: 0; }
  body { color: var(--ink); background: var(--paper-bright); }
}

/* Website V3: concrete public content, one analysis flow and accessible legal presentation. */
.site-header__inner { grid-template-columns: minmax(190px, .75fr) auto minmax(285px, .55fr); }
.brand--footer { width: fit-content; height: auto; }
.brand--footer img { width: 52px; height: 52px; object-fit: contain; }
.page-hero h1 { max-width: 780px; font-size: 54px; }
.page-hero__content { width: min(730px, 62vw); }

.route-story--three { grid-template-columns: repeat(3, 1fr); min-height: 380px; }
.route-story--three article { min-height: 380px; padding: 52px 42px; }
.route-story--three h2 { margin-top: 80px; font-size: 34px; }
.route-story--three article:nth-of-type(2) { color: var(--paper-bright); background: linear-gradient(145deg, #030706 0%, #0a211c 66%, #0e4b40 100%); }
.route-story--three article:nth-of-type(2) p { color: #effbf7; }
.route-story--three article:nth-of-type(3) { color: var(--ink); background: linear-gradient(145deg, var(--paper-bright), #edf8f4); }
.route-story--three article:nth-of-type(3) p { color: var(--text-secondary); }

.chapter-sequence--table .kicker,
.chapter-sequence--facets .kicker,
.chapter-sequence--lens .kicker,
.chapter-sequence--horizon .kicker,
.chapter-sequence--table .chapter-list article > span,
.chapter-sequence--facets .chapter-list article > span,
.chapter-sequence--lens .chapter-list article > span,
.chapter-sequence--horizon .chapter-list article > span { color: #8ed9cb; }

@keyframes chapter-enter {
  from { opacity: .52; transform: translateY(26px); }
  to { opacity: 1; transform: translateY(0); }
}
.chapter-list article.is-visible, .route-story article.is-visible { animation: chapter-enter 820ms var(--ease-out) both; }
.chapter-list article:nth-child(2).is-visible, .route-story article:nth-of-type(2).is-visible { animation-delay: 80ms; }
.chapter-list article:nth-child(3).is-visible, .route-story article:nth-of-type(3).is-visible { animation-delay: 160ms; }

.service-catalog, .analysis-topics, .analysis-deliverables, .company-facts {
  padding: 120px var(--page);
  background: var(--paper-bright);
}
.service-catalog > .section-intro, .analysis-topics > .section-intro { max-width: 820px; }
.service-catalog__grid { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 64px; border-top: 1px solid var(--line-dark); border-left: 1px solid var(--line-dark); }
.service-catalog__grid a { display: grid; min-height: 290px; padding: 30px; border-right: 1px solid var(--line-dark); border-bottom: 1px solid var(--line-dark); text-decoration: none; transition: color 240ms var(--ease-out), background 240ms var(--ease-out); }
.service-catalog__grid a:hover { color: var(--paper-bright); background: var(--mineral); }
.service-catalog__grid h3 { margin: 0; font-size: 25px; }
.service-catalog__grid p { color: var(--text-secondary); }
.service-catalog__grid a:hover p { color: rgba(255,255,255,.72); }
.service-catalog__grid span { align-self: end; font-size: 13px; font-weight: 800; }

.analysis-topics { background: var(--paper); }
.analysis-topic-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 58px; }
.analysis-topic-grid button { display: grid; gap: 16px; min-height: 170px; padding: 26px; text-align: left; color: var(--ink); background: var(--paper-bright); border: 1px solid var(--line-dark); border-radius: var(--radius-md); cursor: pointer; transition: color 220ms var(--ease-out), background 220ms var(--ease-out), transform 220ms var(--ease-out); }
.analysis-topic-grid button:hover { transform: translateY(-3px); }
.analysis-topic-grid button[aria-pressed="true"] { color: var(--paper-bright); background: var(--mineral); border-color: var(--mineral); }
.analysis-topic-grid button strong { font-size: 20px; }
.analysis-topic-grid button span { align-self: end; color: var(--text-secondary); }
.analysis-topic-grid button[aria-pressed="true"] span { color: rgba(255,255,255,.72); }
.analysis-topics__next { display: flex; align-items: center; justify-content: space-between; gap: 24px; margin-top: 24px; padding: 20px 22px; background: var(--paper-bright); border: 1px solid var(--line-dark); border-radius: var(--radius-md); }
.analysis-topics__next[hidden] { display: none; }
.analysis-topics__next p { margin: 0; color: var(--text-secondary); }
.analysis-topics__next strong { color: var(--ink); }
.selected-analysis { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 18px 20px; background: rgba(15,132,112,.08); border: 1px solid rgba(15,132,112,.3); border-radius: var(--radius-sm); }
.selected-analysis[hidden] { display: none; }
.selected-analysis div { display: grid; gap: 4px; }
.selected-analysis span { color: var(--mineral); font-size: 13px; font-weight: 800; text-transform: uppercase; }
.selected-analysis strong { font-size: 18px; }
.selected-analysis a { color: var(--ink); font-weight: 800; text-underline-offset: 4px; }
.analysis-deliverables { display: grid; grid-template-columns: 1.05fr .95fr; gap: 90px; color: var(--paper-bright); background: linear-gradient(125deg, var(--footer-ink) 0 68%, #123d35 100%); }
.analysis-deliverables > * { min-width: 0; }
.analysis-deliverables h2 { max-width: 740px; font-size: 46px; }
.analysis-deliverables ul { display: grid; gap: 0; margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line-light); }
.analysis-deliverables li { padding: 20px 0; border-bottom: 1px solid var(--line-light); }
.analysis-deliverables > p { grid-column: 2; color: var(--text-on-dark); }

.company-facts { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(560px, .85fr); gap: 64px; align-items: end; padding-top: 46px; padding-bottom: 46px; background: var(--paper-bright); border-top: 6px solid var(--amber); border-bottom: 1px solid var(--line-dark); }
.company-facts h2 { max-width: 620px; margin: 8px 0 0; font-size: 28px; line-height: 1.15; }
.company-facts__story > p:last-child { max-width: 680px; margin: 12px 0 0; color: var(--text-secondary); font-size: 15px; line-height: 1.55; }
.company-facts__principles { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid rgba(15,132,112,.24); }
.company-facts__principles article { min-width: 0; padding: 14px 16px 2px 0; border-right: 1px solid rgba(15,132,112,.2); }
.company-facts__principles article + article { padding-left: 16px; }
.company-facts__principles h3 { margin: 0; font-size: 13px; }
.company-facts__principles p { margin: 9px 0 0; color: var(--text-secondary); font-size: 13px; line-height: 1.45; }

.form-field--subject { margin-bottom: 22px; }
.form-field select { appearance: none; min-height: 52px; padding: 14px 44px 14px 15px; background-image: linear-gradient(45deg, transparent 50%, var(--ink) 50%), linear-gradient(135deg, var(--ink) 50%, transparent 50%); background-position: calc(100% - 19px) 22px, calc(100% - 13px) 22px; background-size: 6px 6px; background-repeat: no-repeat; }

body.legal-open, body.cookie-preferences-open { overflow: hidden; }
.legal-modal { position: fixed; z-index: 300; inset: 0; display: grid; place-items: center; padding: 34px; }
.legal-modal[hidden] { display: none; }
.legal-modal__backdrop { position: absolute; inset: 0; background: rgba(7,11,13,.84); backdrop-filter: blur(10px); }
.legal-modal__dialog { position: relative; display: grid; grid-template-rows: auto minmax(0, 1fr) auto; width: min(1080px, 94vw); height: min(820px, 90vh); overflow: hidden; color: var(--ink); background: var(--paper-bright); border: 1px solid var(--line-dark); border-radius: var(--radius-md); box-shadow: 0 34px 100px rgba(7,11,13,.38); }
.legal-modal__dialog > header, .legal-modal__dialog > footer { display: flex; align-items: center; gap: 16px; padding: 20px 26px; border-bottom: 1px solid var(--line-dark); }
.legal-modal__dialog > header p { margin: 0; color: var(--mineral); font-size: 12px; font-weight: 800; text-transform: uppercase; }
.legal-modal__dialog > header h2 { margin: 0; font-size: 20px; }
.legal-modal__dialog > footer { justify-content: flex-end; border-top: 1px solid var(--line-dark); border-bottom: 0; }
.legal-modal__close { margin-left: auto; display: grid; place-items: center; width: 42px; height: 42px; padding: 0; color: var(--ink); background: transparent; border: 1px solid var(--line-dark); border-radius: 50%; font-size: 25px; cursor: pointer; }
.legal-modal__content { overflow: auto; overscroll-behavior: contain; }
.legal-modal__content .legal-reading { min-height: 0; padding-top: 38px; padding-bottom: 60px; }
.legal-reading > header { margin-bottom: 52px; }
.legal-reading > header h2 { margin: 8px 0 14px; font-size: 44px; }
.legal-reading section + section { margin-top: 44px; }
.legal-reading h3 { margin: 0 0 14px; font-size: 24px; }
.legal-loading { padding: 40px; }

.cookie-consent, .cookie-banner, .cookie-preferences { direction: ltr; }
.cookie-banner {
  position: fixed;
  z-index: 260;
  right: 16px;
  bottom: max(16px, env(safe-area-inset-bottom));
  left: 16px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 430px);
  gap: 34px;
  width: min(1180px, calc(100vw - 32px));
  margin-inline: auto;
  padding: 24px;
  overflow: hidden;
  color: var(--paper-bright);
  background: linear-gradient(112deg, rgba(7,11,13,.985) 0 72%, rgba(14,48,42,.985) 100%);
  border: 1px solid rgba(99,169,159,.48);
  border-radius: var(--radius-md);
  box-shadow: 0 28px 80px rgba(2,8,7,.42);
  isolation: isolate;
  animation: cookie-rise 360ms var(--ease-out) both;
}
.cookie-banner[hidden], .cookie-preferences[hidden] { display: none; }
.cookie-banner::before { position: absolute; z-index: -1; inset: 0 auto 0 0; width: 4px; background: var(--coral); content: ""; }
.cookie-banner__copy { min-width: 0; }
.cookie-eyebrow { margin: 0 0 8px; color: var(--amber); font-size: 11px; font-weight: 800; text-transform: uppercase; }
.cookie-banner h2 { margin: 0; color: var(--paper-bright); font-size: 25px; line-height: 1.15; }
.cookie-banner__copy > p:not(.cookie-eyebrow) { max-width: 680px; margin: 10px 0 8px; color: var(--text-on-dark); font-size: 14px; line-height: 1.55; }
.cookie-banner__copy > a { color: var(--paper-bright); font-size: 13px; font-weight: 700; text-decoration-color: var(--coral); text-underline-offset: 4px; }
.cookie-banner__actions { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; align-content: center; }
.cookie-decision, .cookie-preferences-link, .cookie-modal-action {
  min-height: 48px;
  padding: 11px 16px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.2;
  cursor: pointer;
  transition: border-color 180ms ease, background 180ms ease, color 180ms ease, transform 180ms var(--ease-out);
}
.cookie-decision { color: var(--paper-bright); background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.72); }
.cookie-decision:hover { color: var(--hero-ink); background: var(--paper-bright); border-color: var(--paper-bright); }
.cookie-preferences-link { grid-column: 1 / -1; color: var(--paper-bright); background: var(--mineral); border: 1px solid var(--mineral); }
.cookie-preferences-link:hover { background: #0b6f60; border-color: #0b6f60; }
.cookie-decision:active, .cookie-preferences-link:active, .cookie-modal-action:active { transform: scale(.985); }

.cookie-preferences { position: fixed; z-index: 320; inset: 0; display: grid; place-items: center; padding: 28px; }
.cookie-preferences__backdrop { position: absolute; inset: 0; background: rgba(2,8,7,.84); backdrop-filter: blur(10px); }
.cookie-preferences__dialog {
  position: relative;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  width: min(920px, 96vw);
  max-height: min(860px, 92svh);
  overflow: hidden;
  color: var(--ink);
  background: var(--paper-bright);
  border: 1px solid rgba(99,169,159,.62);
  border-radius: var(--radius-md);
  box-shadow: 0 34px 100px rgba(2,8,7,.46);
}
.cookie-preferences__dialog > header { display: flex; align-items: center; gap: 20px; padding: 20px 24px; color: var(--paper-bright); background: linear-gradient(110deg, var(--footer-ink) 0 72%, var(--mineral-deep) 100%); }
.cookie-preferences__dialog > header h2 { margin: 0; color: var(--paper-bright); font-size: 24px; line-height: 1.15; }
.cookie-preferences__dialog > header .cookie-eyebrow { margin-bottom: 4px; }
.cookie-preferences__close { display: grid; place-items: center; width: 42px; height: 42px; margin-left: auto; padding: 0; color: var(--paper-bright); background: transparent; border: 1px solid rgba(255,255,255,.55); border-radius: 50%; font-size: 24px; cursor: pointer; }
.cookie-preferences__content { overflow: auto; overscroll-behavior: contain; padding: 22px 24px 26px; }
.cookie-preferences__content > p:first-child { max-width: 720px; margin: 0 0 20px; color: var(--text-secondary); font-size: 14px; }
.cookie-category-list { border-top: 1px solid var(--line-dark); }
.cookie-category { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 26px; align-items: center; padding: 18px 0; border-bottom: 1px solid var(--line-dark); }
.cookie-category > div { min-width: 0; }
.cookie-category h3 { margin: 6px 0 4px; font-size: 18px; line-height: 1.25; }
.cookie-category p { max-width: 680px; margin: 0; color: var(--text-secondary); font-size: 13px; line-height: 1.5; }
.cookie-category__meta { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
.cookie-category__meta strong { color: var(--mineral-deep); font-size: 11px; text-transform: uppercase; }
.cookie-category__meta small { padding: 3px 7px; color: var(--text-secondary); background: var(--paper); border: 1px solid var(--line-dark); border-radius: var(--radius-xs); font-size: 10px; font-weight: 800; text-transform: uppercase; }
.cookie-category.is-active .cookie-category__meta small { color: var(--paper-bright); background: var(--mineral); border-color: var(--mineral); }
.cookie-toggle { position: relative; display: inline-grid; flex: 0 0 auto; place-items: center; width: 54px; height: 34px; cursor: pointer; }
.cookie-toggle input { position: absolute; width: 1px; height: 1px; opacity: 0; }
.cookie-toggle span { position: relative; display: block; width: 50px; height: 28px; background: #d8e3df; border: 1px solid #a7beb7; border-radius: 999px; transition: background 180ms ease, border-color 180ms ease; }
.cookie-toggle span::after { position: absolute; top: 3px; left: 3px; width: 20px; height: 20px; background: var(--paper-bright); border-radius: 50%; box-shadow: 0 2px 8px rgba(7,11,13,.24); content: ""; transition: transform 180ms var(--ease-out); }
.cookie-toggle input:checked + span { background: var(--mineral); border-color: var(--mineral); }
.cookie-toggle input:checked + span::after { transform: translateX(22px); }
.cookie-toggle input:focus-visible + span { outline: 3px solid var(--amber); outline-offset: 3px; }
.cookie-toggle input:disabled + span { cursor: not-allowed; opacity: .78; }
.cookie-preferences__notice { margin: 20px 0 0; padding: 14px 16px; color: var(--ink); background: var(--paper); border-left: 3px solid var(--mineral); font-size: 13px; }
.cookie-preferences__notice a { text-decoration-color: var(--mineral); text-underline-offset: 4px; }
.cookie-preferences__status { margin: 14px 0 0; color: var(--mineral-deep); font-size: 13px; font-weight: 700; }
.cookie-preferences__dialog > footer { display: flex; justify-content: flex-end; gap: 10px; padding: 16px 24px; background: var(--paper); border-top: 1px solid var(--line-dark); }
.cookie-modal-action--secondary { color: var(--ink); background: var(--paper-bright); border: 1px solid var(--ink); }
.cookie-modal-action--primary { color: var(--paper-bright); background: var(--mineral); border: 1px solid var(--mineral); }
.cookie-modal-action--secondary:hover { color: var(--paper-bright); background: var(--ink); }
.cookie-modal-action--primary:hover { background: #0b6f60; border-color: #0b6f60; }

@keyframes cookie-rise { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }

@media (max-width: 1180px) {
  .site-header__inner { grid-template-columns: minmax(180px, .7fr) auto minmax(260px, .7fr); }
  .service-catalog__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .route-story--three, .analysis-deliverables, .company-facts { grid-template-columns: 1fr; }
  .analysis-deliverables > p { grid-column: 1; }
  .analysis-topic-grid { grid-template-columns: repeat(2, 1fr); }
  .company-facts__principles { grid-template-columns: repeat(3, 1fr); }
  .company-facts { gap: 28px; }
  .cookie-banner { grid-template-columns: 1fr; gap: 18px; }
  .cookie-banner__actions { max-width: 620px; }
}

@media (max-width: 760px) {
  .brand { width: fit-content; height: auto; font-size: 16px; }
  .brand img { width: 38px; height: 38px; flex-basis: 38px; }
  .page-hero h1 { font-size: 39px; }
  .service-catalog, .analysis-topics, .analysis-deliverables { padding-top: 82px; padding-bottom: 82px; }
  .analysis-deliverables h2 { font-size: 34px; overflow-wrap: anywhere; }
  .company-facts { gap: 24px; padding-top: 36px; padding-bottom: 36px; }
  .company-facts h2 { font-size: 25px; }
  .company-facts__story > p:last-child { font-size: 14px; }
  .service-catalog__grid, .analysis-topic-grid, .company-facts__principles { grid-template-columns: 1fr; }
  .company-facts__principles article, .company-facts__principles article + article { padding: 12px 0; border-right: 0; border-bottom: 1px solid rgba(15,132,112,.18); }
  .service-catalog__grid a { min-height: 220px; }
  .analysis-topic-grid button { min-height: 145px; }
  .analysis-topics__next, .selected-analysis { align-items: stretch; flex-direction: column; }
  .analysis-topics__next .button { justify-content: center; width: 100%; }
  .route-story--three { grid-template-columns: 1fr; }
  .route-story--three article { min-height: 280px; }
  .legal-modal { align-items: end; padding: 0; }
  .legal-modal__dialog { width: 100%; height: min(92svh, 860px); border-radius: var(--radius-md) var(--radius-md) 0 0; }
  .legal-modal__dialog > header, .legal-modal__dialog > footer { padding: 14px 16px; }
  .legal-modal__dialog > header p { display: none; }
  .legal-modal__dialog > footer .button { min-height: 44px; padding: 10px 14px; }
  .legal-reading > header h2 { font-size: 34px; }
  .cookie-banner { right: 8px; bottom: max(8px, env(safe-area-inset-bottom)); left: 8px; width: calc(100vw - 16px); max-height: min(82svh, 690px); padding: 18px; overflow: auto; }
  .cookie-banner h2 { font-size: 22px; }
  .cookie-banner__actions { grid-template-columns: 1fr; }
  .cookie-preferences-link { grid-column: 1; }
  .cookie-preferences { align-items: end; padding: 0; }
  .cookie-preferences__dialog { width: 100%; max-height: 94svh; border-radius: var(--radius-md) var(--radius-md) 0 0; }
  .cookie-preferences__dialog > header, .cookie-preferences__content, .cookie-preferences__dialog > footer { padding-right: 18px; padding-left: 18px; }
  .cookie-category { gap: 16px; }
}

@media (max-width: 480px) {
  .cookie-preferences__dialog > header h2 { font-size: 21px; }
  .cookie-category { align-items: start; padding: 16px 0; }
  .cookie-category h3 { font-size: 16px; }
  .cookie-preferences__dialog > footer { display: grid; grid-template-columns: 1fr; }
  .cookie-modal-action { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  .brand:hover img, .brand:focus-visible img { transform: none; }
  .cookie-banner { animation: none; }
  .cookie-decision, .cookie-preferences-link, .cookie-modal-action, .cookie-toggle span, .cookie-toggle span::after { transition: none; }
}

@media print {
  .legal-modal__backdrop, .legal-modal__dialog > header, .legal-modal__dialog > footer { display: none !important; }
  .legal-modal { position: static; display: block; padding: 0; }
  .legal-modal__dialog { display: block; width: auto; height: auto; overflow: visible; border: 0; box-shadow: none; }
  .legal-modal__content { overflow: visible; }
  .cookie-consent { display: none !important; }
}

/* V4 activates the supplied official MLP artwork without altering its pixels. */
.brand__name {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}
.brand__official-mark {
  position: relative;
  display: block;
  width: 188px;
  height: 100px;
  flex: 0 0 188px;
  overflow: hidden;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}
.brand .brand__official-mark img {
  position: absolute;
  inset: 0 auto auto 0;
  width: 188px;
  height: 188px;
  max-width: none;
  object-fit: contain;
  transform: translate3d(0, -46px, 0);
  transform-origin: center 38%;
  transition: transform 550ms var(--ease-out), opacity 220ms var(--ease-out);
}
.brand__logo--dark-surface { opacity: 1; }
.brand__logo--light-surface { opacity: 0; }
.site-header.is-scrolled .brand__logo--dark-surface { opacity: 0; }
.site-header.is-scrolled .brand__logo--light-surface { opacity: 1; }
.brand:hover .brand__official-mark img,
.brand:focus-visible .brand__official-mark img {
  transform: translate3d(0, -46px, 0) scale(1.018);
}
.brand:hover .brand__name,
.brand:focus-visible .brand__name { color: var(--coral); }

.brand--footer .brand__official-mark {
  width: 210px;
  height: 112px;
  flex-basis: 210px;
}
.brand--footer .brand__official-mark img {
  width: 210px;
  height: 210px;
  transform: translate3d(0, -51.5px, 0);
}
.brand--footer:hover .brand__official-mark img,
.brand--footer:focus-visible .brand__official-mark img {
  transform: translate3d(0, -51.5px, 0) scale(1.018);
}

@media (max-width: 1050px) {
  .site-header__inner { min-height: 86px; }
  .brand__official-mark {
    width: 150px;
    height: 80px;
    flex-basis: 150px;
  }
  .brand .brand__official-mark img {
    width: 150px;
    height: 150px;
    transform: translate3d(0, -36.8px, 0);
  }
  .brand:hover .brand__official-mark img,
  .brand:focus-visible .brand__official-mark img {
    transform: translate3d(0, -36.8px, 0) scale(1.018);
  }
}

@media (max-width: 760px) {
  .brand {
    gap: 0;
    width: 124px;
    font-size: 14px;
  }
  .site-header__inner { min-height: 74px; }
  .brand__official-mark {
    width: 124px;
    height: 66px;
    flex-basis: 124px;
  }
  .brand .brand__official-mark img {
    width: 124px;
    height: 124px;
    transform: translate3d(0, -30.4px, 0);
  }
  .brand:hover .brand__official-mark img,
  .brand:focus-visible .brand__official-mark img {
    transform: translate3d(0, -30.4px, 0) scale(1.018);
  }
  .brand--footer { width: fit-content; font-size: 18px; }
  .brand--footer .brand__official-mark {
    width: 176px;
    height: 94px;
    flex-basis: 176px;
  }
  .brand--footer .brand__official-mark img {
    width: 176px;
    height: 176px;
    transform: translate3d(0, -43px, 0);
  }
  .brand--footer:hover .brand__official-mark img,
  .brand--footer:focus-visible .brand__official-mark img {
    transform: translate3d(0, -43px, 0) scale(1.018);
  }
}

@media (prefers-reduced-motion: reduce) {
  .brand:hover .brand__official-mark img,
  .brand:focus-visible .brand__official-mark img { transition: none; }
}
