:root {
  --ink: #152019;
  --ink-soft: #34443a;
  --night: #0d1712;
  --paper: #ffffff;
  --mist: #f1f4f1;
  --line: #d5ddd7;
  --green: #22b46a;
  --green-dark: #0b7441;
  --green-light: #c7f1d9;
  --blue: #2d6cdf;
  --amber: #d98912;
  --red: #d94747;
  --max: 1240px;
  --header-h: 72px;
  --radius: 8px;
  --shadow: 0 18px 50px rgba(13, 23, 18, .12);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 18px);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.55;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
}

body.menu-open { overflow: hidden; }

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button, a, summary, input, select, textarea { -webkit-tap-highlight-color: transparent; }

:focus-visible {
  outline: 3px solid #59a4ff;
  outline-offset: 3px;
}

.sr-only {
  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 {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 1000;
  padding: 10px 14px;
  background: var(--paper);
  color: var(--ink);
  transform: translateY(-160%);
  border-radius: 4px;
}

.skip-link:focus { transform: translateY(0); }

.shell {
  width: min(calc(100% - 40px), var(--max));
  margin-inline: auto;
}

.section { padding: 112px 0; }
.section-muted { background: var(--mist); }

h1, h2, h3, p { margin-top: 0; }

h1, h2, h3 {
  line-height: 1.06;
  letter-spacing: 0;
  text-wrap: balance;
}

h1 { margin-bottom: 24px; font-size: clamp(58px, 8vw, 124px); font-weight: 800; }
h2 { margin-bottom: 20px; font-size: clamp(34px, 5vw, 68px); font-weight: 750; }
h3 { margin-bottom: 12px; font-size: 24px; }

.eyebrow {
  margin-bottom: 18px;
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow.light { color: #baf4d2; }

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(280px, .7fr);
  align-items: end;
  gap: 64px;
  margin-bottom: 56px;
}

.section-heading.compact { margin-bottom: 38px; }
.section-heading > p { margin-bottom: 4px; color: #5f6f65; font-size: 18px; }
.section-heading h2 { max-width: 900px; margin-bottom: 0; }
.section-heading.align-end { align-items: end; }

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 5px;
  font-weight: 800;
  line-height: 1.2;
  cursor: pointer;
  transition: transform .18s ease, background-color .18s ease, color .18s ease, border-color .18s ease;
}

.button:hover { transform: translateY(-2px); }
.button-small { min-height: 42px; padding: 9px 16px; }
.button-primary { background: var(--green); color: #06110b; }
.button-primary:hover { background: #53dc91; }
.button-dark { background: var(--ink); color: var(--paper); }
.button-dark:hover { background: #25362c; }
.button-quiet { color: var(--ink); background: #eef2ee; border-color: #c8d2ca; }
.button-quiet:hover { background: #e2e9e3; }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: rgba(21, 32, 25, .25);
  text-underline-offset: 5px;
}

.text-link:hover { text-decoration-color: currentColor; }
.light-link { color: var(--paper); text-decoration-color: rgba(255, 255, 255, .35); }

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: grid;
  min-height: var(--header-h);
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 10px max(20px, calc((100vw - var(--max)) / 2));
  color: var(--paper);
  border-bottom: 1px solid rgba(255, 255, 255, .18);
  transition: background-color .2s ease, color .2s ease, box-shadow .2s ease;
}

.site-header.scrolled {
  color: var(--ink);
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 8px 24px rgba(9, 22, 14, .08);
  border-color: rgba(21, 32, 25, .1);
  backdrop-filter: blur(14px);
}

.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 850; font-size: 21px; white-space: nowrap; }
.brand-mark {
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: var(--night);
  background: var(--green);
  border-radius: 4px;
  font-weight: 900;
}

.desktop-nav { display: flex; align-items: center; justify-content: center; gap: clamp(16px, 2.2vw, 34px); }
.desktop-nav a { position: relative; font-size: 14px; font-weight: 700; }
.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -8px;
  height: 2px;
  background: currentColor;
  transition: right .18s ease;
}
.desktop-nav a:hover::after { right: 0; }
.site-header:not(.scrolled) .header-cta { background: var(--paper); color: var(--ink); }
.menu-toggle, .mobile-nav { display: none; }

/* Hero */
.hero {
  position: relative;
  min-height: min(880px, 92svh);
  color: var(--paper);
  background: var(--night);
  overflow: hidden;
}

.hero-visuals, .hero-image, .hero-shade { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-visuals { overflow: hidden; background: var(--night); }
.hero-image { opacity: 0; object-fit: cover; object-position: 50% 58%; transform: scale(1.025); transition: opacity .7s ease, transform 6s ease; }
.hero-image.is-active { opacity: 1; transform: scale(1); }
.hero-image[data-hero-image="process"] { object-position: 54% 50%; }
.hero-image[data-hero-image="system"] { object-position: 50% 54%; }
.hero-shade { background: linear-gradient(90deg, rgba(5, 14, 9, .82) 0%, rgba(5, 14, 9, .50) 48%, rgba(5, 14, 9, .12) 76%); }

.hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: min(760px, calc(92svh - 120px));
  flex-direction: column;
  justify-content: center;
  padding-top: var(--header-h);
  padding-bottom: 80px;
}

.hero-inner h1 { max-width: 980px; font-size: clamp(58px, 7.4vw, 116px); }
.hero-inner[data-hero-copy-key="process"] h1 { max-width: 920px; font-size: clamp(52px, 6.4vw, 94px); }
.hero-inner[data-hero-copy-key="system"] h1 { max-width: 920px; font-size: clamp(54px, 6.8vw, 104px); }
.hero-lead { max-width: 720px; margin-bottom: 34px; font-size: clamp(21px, 2.4vw, 34px); line-height: 1.25; text-wrap: balance; }
.hero-actions { display: flex; align-items: center; gap: 24px; }
.hero-inner.is-changing > .eyebrow,
.hero-inner.is-changing > h1,
.hero-inner.is-changing > .hero-lead,
.hero-inner.is-changing > .hero-actions { animation: hero-copy-in .46s both; }
.hero-inner.is-changing > h1 { animation-delay: .04s; }
.hero-inner.is-changing > .hero-lead { animation-delay: .08s; }
.hero-inner.is-changing > .hero-actions { animation-delay: .12s; }
.hero-status {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  background: rgba(9, 23, 14, .85);
  border-top: 1px solid rgba(255, 255, 255, .22);
  backdrop-filter: blur(12px);
}

.hero-story { position: relative; display: grid; min-width: 0; min-height: 112px; flex: 1; grid-template-columns: 1fr auto; align-items: end; overflow: hidden; padding: 0 max(18px, 2.35vw) 19px; transition: flex .38s ease, background-color .28s ease; }
.hero-story + .hero-story { border-left: 1px solid rgba(255, 255, 255, .15); }
.hero-story::before { content: ""; position: absolute; top: 0; right: 0; left: 0; height: 3px; background: var(--green); transform: scaleX(0); transform-origin: left; }
.hero-story.is-active { flex: 1.28; background: rgba(18, 48, 29, .76); }
.hero-story.is-active::before { animation: hero-story-progress 6.5s linear both; }
.hero-story-trigger { display: grid; min-width: 0; grid-template-columns: auto minmax(0, 1fr); column-gap: 14px; align-content: end; padding: 19px 0 0; color: inherit; background: transparent; border: 0; text-align: left; cursor: pointer; }
.hero-story-trigger span { grid-row: 1 / span 2; color: #7ce3a7; font-weight: 900; }
.hero-story-trigger strong { overflow: hidden; font-size: 16px; text-overflow: ellipsis; white-space: nowrap; }
.hero-story-trigger small { overflow: hidden; color: rgba(255, 255, 255, .68); text-overflow: ellipsis; white-space: nowrap; }
.hero-story.is-active .hero-story-trigger small { white-space: normal; }
.hero-story-link { align-self: end; margin: 0 0 1px 18px; color: #9af0bb; font-size: 13px; font-weight: 900; opacity: 0; transform: translateX(-8px); white-space: nowrap; pointer-events: none; transition: opacity .2s ease, transform .2s ease; }
.hero-story.is-active .hero-story-link { opacity: 1; transform: translateX(0); pointer-events: auto; }
.hero-story-trigger:focus-visible, .hero-story-link:focus-visible { outline: 2px solid #fff; outline-offset: 5px; }

@keyframes hero-story-progress { from { transform: scaleX(0); } to { transform: scaleX(1); } }
@keyframes hero-copy-in {
  from { opacity: .12; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Thesis */
.band-dark { color: var(--paper); background: var(--night); }
.thesis { padding: 98px 0; }
.thesis-grid { display: grid; grid-template-columns: 210px minmax(0, 1fr); gap: 70px; }
.section-index { color: #89a194; font-size: 13px; font-weight: 800; text-transform: uppercase; }
.thesis h2 { max-width: 1000px; }
.thesis h2::first-letter { color: var(--green); }
.thesis-grid > div > p { max-width: 780px; margin-bottom: 0; color: #bac8bf; font-size: 21px; }

/* Life concierge */
.concierge { background: #eaf0eb; }
.concierge-heading { display: grid; grid-template-columns: minmax(0, 1.4fr) minmax(300px, .6fr); align-items: end; gap: 64px; margin-bottom: 48px; }
.concierge-heading h2 { max-width: 920px; margin-bottom: 0; }
.concierge-heading > p { margin: 0 0 7px; color: #58675d; font-size: 18px; }
.concierge-experience { position: relative; display: grid; min-height: 690px; grid-template-columns: minmax(0, 1.08fr) minmax(420px, .92fr); background: var(--paper); border: 1px solid #c9d4cc; box-shadow: 0 28px 80px rgba(20, 43, 29, .13); overflow: hidden; }
.concierge-media { position: relative; min-height: 690px; margin: 0; overflow: hidden; background: #dce5dd; }
.concierge-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(7,19,11,.58), transparent 44%); pointer-events: none; }
.concierge-media img { width: 100%; height: 100%; object-fit: cover; }
.concierge-media figcaption { position: absolute; right: 32px; bottom: 30px; left: 32px; z-index: 1; display: grid; gap: 7px; color: var(--paper); }
.concierge-media figcaption .live-dot { color: #98efb9; }
.concierge-media figcaption strong { max-width: 470px; font-size: 24px; line-height: 1.12; }
.life-brief, .brief-result { display: flex; min-width: 0; flex-direction: column; justify-content: center; padding: clamp(32px, 4.5vw, 64px); }
.life-brief[hidden] { display: none; }
.brief-progress { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 12px; margin-bottom: 34px; padding-bottom: 16px; border-bottom: 1px solid var(--line); }
.brief-progress span { display: grid; width: 32px; height: 32px; place-items: center; color: #07351e; background: var(--green-light); font-size: 12px; font-weight: 900; }
.brief-progress strong { font-size: 14px; }
.brief-progress em { color: #7c8a81; font-size: 10px; font-style: normal; font-weight: 900; text-transform: uppercase; }
.brief-question { display: block; margin-bottom: 12px; font-size: 21px; font-weight: 800; line-height: 1.25; }
.life-brief textarea { width: 100%; min-height: 116px; padding: 14px 15px; resize: vertical; color: var(--ink); background: #f8faf8; border: 1px solid #b9c6bd; border-radius: 4px; }
.life-brief textarea:focus, .brief-inline input:focus { border-color: var(--green-dark); box-shadow: 0 0 0 3px rgba(34,180,106,.14); outline: 0; }
.brief-choices { display: flex; flex-wrap: wrap; gap: 8px; margin: 22px 0 0; padding: 0; border: 0; }
.brief-choices legend { width: 100%; margin-bottom: 8px; color: #617067; font-size: 11px; font-weight: 900; text-transform: uppercase; }
.brief-choices label { position: relative; cursor: pointer; }
.brief-choices input { position: absolute; width: 1px; height: 1px; opacity: 0; }
.brief-choices span { display: inline-flex; min-height: 38px; align-items: center; padding: 8px 12px; background: #f2f5f2; border: 1px solid #c8d2ca; border-radius: 4px; font-size: 13px; font-weight: 800; transition: background-color .18s ease, border-color .18s ease, color .18s ease; }
.brief-choices input:checked + span { color: #073b21; background: #d5f6e2; border-color: #5ac98a; }
.brief-choices input:focus-visible + span { outline: 3px solid #59a4ff; outline-offset: 3px; }
.brief-inline { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 18px; }
.brief-inline label { display: grid; gap: 6px; color: #617067; font-size: 11px; font-weight: 900; text-transform: uppercase; }
.brief-inline input { width: 100%; min-height: 44px; padding: 9px 11px; color: var(--ink); background: #f8faf8; border: 1px solid #b9c6bd; border-radius: 4px; }
.brief-systems { margin-top: 18px; }
.brief-submit { align-self: flex-start; margin-top: 24px; }
.brief-note { margin: 13px 0 0; color: #75827a; font-size: 11px; line-height: 1.45; }
.brief-result { position: relative; isolation: isolate; background-color: #102019; background-image: var(--brief-project-image, none); background-position: center; background-size: cover; color: var(--paper); }
.brief-result::before { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(90deg, rgba(6,19,12,.97) 0%, rgba(6,19,12,.9) 56%, rgba(6,19,12,.68) 100%), linear-gradient(0deg, rgba(4,13,8,.84), transparent 58%); }
.brief-result[hidden] { display: none; }
.brief-result .eyebrow { color: #82e9ad; }
.brief-back { position: absolute; top: 22px; right: 22px; display: grid; width: 40px; height: 40px; place-items: center; color: var(--paper); background: #25362d; border: 1px solid #43564b; border-radius: 4px; cursor: pointer; }
.address-id { display: inline-flex; align-self: flex-start; margin-bottom: 24px; padding: 7px 10px; color: #082515; background: #77e5a6; font-size: 11px; font-weight: 900; letter-spacing: .08em; }
.brief-result h3 { max-width: 520px; margin-bottom: 16px; font-size: clamp(34px, 4vw, 54px); }
.brief-result > p:not(.eyebrow):not(.brief-copy-status) { color: #bdcbc2; font-size: 17px; }
.brief-project-pick { display: grid; gap: 6px; margin: 22px 0 4px; padding: 16px 18px; color: var(--paper); background: rgba(5, 18, 10, .76); border: 1px solid rgba(134, 232, 172, .34); border-left: 4px solid #77e5a6; backdrop-filter: blur(8px); transition: background-color .18s ease, border-color .18s ease, transform .18s ease; }
.brief-project-pick:hover { color: var(--paper); background: rgba(10, 35, 20, .9); border-color: #77e5a6; transform: translateY(-2px); }
.brief-project-pick > span { color: #91dfaf; font-size: 10px; font-weight: 900; letter-spacing: .04em; text-transform: uppercase; }
.brief-project-pick strong { font-size: clamp(25px, 3vw, 36px); line-height: 1.05; }
.brief-project-pick small { max-width: 480px; color: #c5d1c9; font-size: 12px; line-height: 1.45; }
.brief-project-pick > b { margin-top: 5px; font-size: 12px; }
.brief-output { margin: 24px 0 30px; border-top: 1px solid #3a4b40; }
.brief-output div { display: grid; grid-template-columns: 112px 1fr; gap: 18px; padding: 13px 0; border-bottom: 1px solid #3a4b40; }
.brief-output dt { color: #819188; font-size: 11px; font-weight: 900; text-transform: uppercase; }
.brief-output dd { margin: 0; color: #edf4ef; font-weight: 700; }
.brief-result-actions { display: flex; flex-wrap: wrap; gap: 9px; }
.brief-copy-status { min-height: 22px; margin: 10px 0 0; color: #88e7ae; font-size: 12px; font-weight: 800; }

/* Levels */
.levels { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.level { position: relative; display: flex; min-width: 0; min-height: 445px; flex-direction: column; overflow: hidden; background: var(--paper); border-right: 1px solid var(--line); }
.level:first-child { border-left: 1px solid var(--line); }
.level.active::before { content: ""; position: absolute; top: 0; left: 0; right: 0; z-index: 2; height: 5px; background: var(--green); }
.level-media { position: relative; margin: 0; aspect-ratio: 3 / 2; overflow: hidden; background: #dfe6e1; border-bottom: 1px solid var(--line); }
.level-media::after { content: ""; position: absolute; inset: auto 0 0; height: 36%; background: linear-gradient(0deg, rgba(5, 18, 11, .18), transparent); pointer-events: none; }
.level-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.level:hover .level-media img { transform: scale(1.035); }
.level-body { display: flex; min-height: 260px; flex: 1; flex-direction: column; align-items: flex-start; padding: 22px 20px 24px; }
.level-number { display: block; margin-bottom: 28px; color: #738179; font-size: 13px; font-weight: 800; }
.level h3 { font-size: 26px; }
.level p { min-height: 82px; flex: 1; color: #5f6f65; font-size: 14px; }
.level-detail-link { margin-top: 13px; color: var(--green-dark); font-size: 12px; font-weight: 850; text-decoration: underline; text-underline-offset: 4px; }

.status { display: inline-flex; min-height: 27px; align-items: center; padding: 4px 9px; border-radius: 999px; font-size: 12px; font-weight: 800; line-height: 1; }
.status-now { color: #075a31; background: #c9f6dc; }
.status-config { color: #8f4d00; background: #ffe4b8; }
.status-pilot { color: #1455a0; background: #dbeaff; }
.status-vision { color: #4c5660; background: #e5e9ec; }

/* Scenarios */
.scenario-tabs { display: flex; gap: 8px; margin-bottom: 18px; }
.scenario-tab { min-height: 42px; padding: 9px 17px; color: #5b6a60; background: transparent; border: 1px solid #bcc7bf; border-radius: 4px; font-weight: 800; cursor: pointer; }
.scenario-tab.active { color: var(--paper); background: var(--ink); border-color: var(--ink); }
.scenario-panel { display: grid; grid-template-columns: .86fr 1.14fr; min-height: 560px; background: var(--paper); border: 1px solid var(--line); }
.scenario-copy { display: flex; flex-direction: column; justify-content: center; align-items: flex-start; padding: clamp(32px, 6vw, 78px); }
.scenario-kicker { color: var(--green-dark); font-size: 13px; font-weight: 800; text-transform: uppercase; }
.scenario-copy h3 { max-width: 520px; font-size: clamp(32px, 4vw, 54px); }
.scenario-copy > p:not(.scenario-kicker) { max-width: 540px; color: #58675d; font-size: 18px; }
.check-list { display: grid; gap: 10px; margin: 10px 0 30px; padding: 0; list-style: none; }
.check-list li { position: relative; padding-left: 26px; }
.check-list li::before { content: "✓"; position: absolute; left: 0; color: var(--green-dark); font-weight: 900; }
.scenario-media { position: relative; min-height: 560px; margin: 0; overflow: hidden; background: #dfe6df; }
.scenario-media img { width: 100%; height: 100%; object-fit: cover; transition: opacity .18s ease; }
.scenario-media figcaption { position: absolute; right: 14px; bottom: 14px; padding: 7px 10px; color: var(--paper); background: rgba(12, 22, 16, .76); border-radius: 3px; font-size: 12px; }

/* Models */
.model-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 18px; }
.model-card { display: grid; grid-template-rows: 320px auto auto 1fr auto; padding-bottom: 22px; border: 1px solid var(--line); overflow: hidden; transition: transform .2s ease, box-shadow .2s ease; }
.model-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.model-card img { width: 100%; height: 320px; object-fit: cover; }
.model-card > :not(img) { margin-left: 22px; margin-right: 22px; }
.model-meta { margin-top: 20px; margin-bottom: 8px; color: var(--green-dark); font-size: 12px; font-weight: 800; text-transform: uppercase; }
.model-card h3 { margin-bottom: 9px; font-size: 30px; }
.model-card p { color: #657269; }
.card-link { font-weight: 800; }
.model-card.featured { border-top: 5px solid var(--green); }
.model-card.featured img { height: 316px; }

/* Production */
.band-ink { color: var(--paper); background: #14271c; }
.production-grid { display: grid; grid-template-columns: minmax(270px, .55fr) minmax(0, 1.45fr); align-items: center; gap: clamp(42px, 5vw, 82px); }
.production-copy h2 { font-size: clamp(42px, 5.4vw, 72px); }
.production-copy > p:not(.eyebrow) { color: #b9c8bf; font-size: 19px; }
.live-dot { position: relative; padding-left: 17px; color: var(--green-dark); font-size: 12px; }
.live-dot::before { content: ""; position: absolute; top: 50%; left: 0; width: 9px; height: 9px; background: var(--green); border-radius: 50%; transform: translateY(-50%); box-shadow: 0 0 0 4px rgba(34,180,106,.16); }
.digital-route { --route-accent: #55d58e; min-width: 0; color: var(--ink); background: #0d1711; border: 1px solid #385044; border-radius: 4px; box-shadow: 0 34px 90px rgba(0,0,0,.32); overflow: hidden; }
.digital-route[data-route-stage="production"] { --route-accent: #54d985; }
.digital-route[data-route-stage="engineering"] { --route-accent: #58aade; }
.digital-route[data-route-stage="quality"] { --route-accent: #e9b84d; }
.digital-route[data-route-stage="installation"] { --route-accent: #f08b5e; }
.route-toolbar { display: flex; min-height: 60px; align-items: center; justify-content: space-between; gap: 18px; padding: 12px 18px; color: var(--paper); background: #101d15; border-bottom: 1px solid #31453a; }
.route-toolbar > div { display: flex; align-items: baseline; gap: 12px; }
.route-toolbar strong { color: #7ee7a9; font-size: 18px; }
.route-toolbar span:not(.live-dot) { color: #8ea097; font-size: 12px; }
.route-toolbar .live-dot { color: #93e8b5; }
.route-media { position: relative; min-height: 570px; overflow: hidden; isolation: isolate; }
.route-media::after { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(90deg, rgba(5,11,7,.88) 0%, rgba(5,11,7,.48) 48%, rgba(5,11,7,.06) 78%); pointer-events: none; }
.route-image { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transform: scale(1.035); transition: opacity .55s ease, transform 1.2s ease; }
.route-image.is-active { opacity: 1; transform: scale(1); }
.route-media-copy { position: absolute; bottom: 0; left: 0; z-index: 2; width: min(72%, 700px); padding: 34px 36px 32px; color: var(--paper); }
.route-stage-count { display: inline-flex; min-height: 28px; align-items: center; margin-bottom: 18px; padding: 5px 9px; color: #0a2415; background: var(--route-accent); font-size: 11px; font-weight: 900; }
.route-kicker { margin: 0 0 8px; color: var(--route-accent); font-size: 11px; font-weight: 900; text-transform: uppercase; }
.route-media-copy h3 { max-width: 620px; margin: 0 0 10px; color: #fff; font-size: clamp(30px, 3vw, 46px); line-height: 1.02; }
.route-media-copy > p:not(.route-kicker) { max-width: 620px; margin: 0; color: #c4d0c8; font-size: 16px; }
.route-facts { display: grid; grid-template-columns: 1fr 1fr 1.08fr; gap: 14px; margin: 27px 0 0; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.22); }
.route-facts div { min-width: 0; }
.route-facts dt { margin-bottom: 5px; color: #8da097; font-size: 9px; font-weight: 900; text-transform: uppercase; }
.route-facts dd { margin: 0; color: #f1f5f2; font-size: 12px; font-weight: 800; }
.route-status { display: inline-flex; min-height: 24px; align-items: center; padding: 3px 8px; color: #102218; background: var(--route-accent); border-radius: 999px; white-space: nowrap; }
.route-track { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); background: #111e16; border-top: 1px solid #31453a; }
.route-step { position: relative; min-width: 0; min-height: 116px; padding: 19px 16px 16px; color: #c2cec6; background: transparent; border: 0; border-left: 1px solid #31453a; text-align: left; cursor: pointer; overflow: hidden; transition: color .2s ease, background-color .2s ease; }
.route-step:first-child { border-left: 0; }
.route-step::before { content: ""; position: absolute; top: 0; right: 0; left: 0; height: 3px; background: #26372e; }
.route-step::after { content: ""; position: absolute; top: 0; left: 0; width: 0; height: 3px; background: var(--route-accent); }
.route-step:hover, .route-step:focus-visible { color: #fff; background: #17271e; }
.route-step.is-active { color: #fff; background: #192a20; }
.route-step.is-active::after { width: 100%; animation: route-progress 6.8s linear; }
.digital-route.is-paused .route-step.is-active::after { animation-play-state: paused; }
.route-step > span { display: block; margin-bottom: 14px; color: var(--route-accent); font-size: 11px; font-weight: 900; }
.route-step strong, .route-step small { display: block; overflow: hidden; text-overflow: ellipsis; }
.route-step strong { margin-bottom: 5px; font-size: 13px; white-space: nowrap; }
.route-step small { color: #7e9186; font-size: 10px; white-space: nowrap; }
@keyframes route-progress { from { width: 0; } to { width: 100%; } }

.proof-strip { color: var(--paper); background: #1fbd70; }
.proof-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.proof-grid > div { min-height: 125px; padding: 28px 24px; border-left: 1px solid rgba(0, 0, 0, .16); }
.proof-grid > div:last-child { border-right: 1px solid rgba(0, 0, 0, .16); }
.proof-grid strong { display: block; margin-bottom: 6px; color: #092a18; font-size: 17px; }
.proof-grid span { color: #164e31; font-size: 13px; }

/* Autonomy */
.systems-experience {
  --system-accent: #e8b13c;
  display: grid;
  min-height: 680px;
  grid-template-columns: minmax(0, 1.38fr) minmax(330px, .62fr);
  overflow: hidden;
  background: #101914;
  border: 1px solid #cad4cc;
  border-radius: 4px;
  box-shadow: 0 24px 70px rgba(15, 28, 20, .14);
}
.systems-experience[data-active-system="water"] { --system-accent: #4c9ed1; }
.systems-experience[data-active-system="climate"] { --system-accent: #48bc7a; }
.systems-experience[data-active-system="security"] { --system-accent: #d1685d; }
.systems-stage { display: grid; min-width: 0; grid-template-rows: minmax(0, 1fr) auto; background: #101914; }
.systems-media { position: relative; min-height: 520px; overflow: hidden; isolation: isolate; }
.systems-media::after { content: ""; position: absolute; inset: 0; z-index: 1; background: rgba(5, 12, 8, .14); pointer-events: none; }
.systems-image { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transform: scale(1.035); transition: opacity .52s ease, transform 1.1s ease; }
.systems-image.is-active { opacity: 1; transform: scale(1); }
.systems-media-copy { position: absolute; right: 0; bottom: 0; left: 0; z-index: 2; padding: 34px 36px 31px; color: var(--paper); background: rgba(8, 17, 11, .86); border-top: 1px solid rgba(255,255,255,.18); }
.systems-media-copy span { display: block; margin-bottom: 8px; color: var(--system-accent); font-size: 12px; font-weight: 900; text-transform: uppercase; }
.systems-media-copy h3 { max-width: 700px; margin: 0 0 8px; color: #fff; font-size: 30px; }
.systems-media-copy p { max-width: 700px; margin: 0; color: #c5d0c9; font-size: 16px; }
.systems-flow { display: grid; grid-template-columns: repeat(4, 1fr); margin: 0; padding: 0; list-style: none; border-top: 1px solid #31443a; }
.systems-flow li { position: relative; min-width: 0; min-height: 102px; padding: 18px 17px 16px; border-left: 1px solid #31443a; }
.systems-flow li:first-child { border-left: 0; }
.systems-flow li::before { content: ""; position: absolute; top: -2px; left: 0; width: 0; height: 3px; background: var(--system-accent); transition: width .38s ease; }
.systems-flow.is-changing li::before { width: 100%; }
.systems-flow span { display: block; margin-bottom: 8px; color: #72867a; font-size: 10px; font-weight: 900; text-transform: uppercase; }
.systems-flow strong { display: block; color: #eaf0ec; font-size: 13px; line-height: 1.35; }
.systems-tabs { display: grid; min-width: 0; grid-template-rows: repeat(4, 1fr); background: #f3f6f3; }
.system-tab { --tab-accent: #e8b13c; position: relative; display: grid; min-width: 0; min-height: 0; grid-template-columns: 48px minmax(0, 1fr) auto; align-items: start; gap: 15px; padding: 22px 20px; color: var(--ink); background: transparent; border: 0; border-bottom: 1px solid #ced8d0; text-align: left; cursor: pointer; transition: background-color .2s ease; }
.system-tab:last-child { border-bottom: 0; }
.system-tab[data-system-tab="water"] { --tab-accent: #4c9ed1; }
.system-tab[data-system-tab="climate"] { --tab-accent: #48bc7a; }
.system-tab[data-system-tab="security"] { --tab-accent: #d1685d; }
.system-tab::before { content: ""; position: absolute; top: 0; bottom: 0; left: 0; width: 0; background: var(--tab-accent); transition: width .2s ease; }
.system-tab:hover, .system-tab:focus-visible { background: #fff; }
.system-tab.is-active { background: #fff; }
.system-tab.is-active::before { width: 5px; }
.system-code { display: grid; width: 46px; height: 46px; place-items: center; color: #33423a; background: #dfe6e1; border: 1px solid #c8d2ca; border-radius: 50%; font-weight: 900; transition: color .2s ease, background-color .2s ease, border-color .2s ease; }
.system-tab.is-active .system-code { color: #0c1b13; background: var(--tab-accent); border-color: var(--tab-accent); }
.system-tab-copy { min-width: 0; }
.system-tab-copy strong { display: block; margin: 2px 0 6px; font-size: 20px; }
.system-tab-copy small { display: block; color: #66736b; font-size: 13px; line-height: 1.42; }
.system-tab .status { align-self: start; margin-top: 3px; white-space: nowrap; }
.status-note { display: grid; grid-template-columns: .32fr 1fr; gap: 30px; margin-top: 32px; padding: 25px 28px; background: #eef5ef; border-left: 4px solid var(--green); }
.status-note p { margin: 0; color: #56655b; }
.autonomy-page-link { display: flex; align-items: center; gap: 24px; margin-top: 20px; }
.autonomy-page-link > div { display: flex; flex-wrap: wrap; gap: 10px; }
.autonomy-page-link p { max-width: 600px; margin: 0; color: #637168; font-size: 13px; }

/* Digital passport */
.passport-grid { display: grid; grid-template-columns: 1.04fr .96fr; align-items: stretch; gap: clamp(44px, 7vw, 92px); }
.passport-media { position: relative; min-height: 720px; margin: 0; overflow: hidden; background: #dfe5df; }
.passport-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(7,18,11,.64), transparent 48%); pointer-events: none; }
.passport-media img { width: 100%; height: 100%; object-fit: cover; }
.passport-media figcaption { position: absolute; right: 28px; bottom: 28px; left: 28px; z-index: 1; display: grid; gap: 8px; color: var(--paper); }
.passport-media figcaption span { color: #8beab0; font-size: 11px; font-weight: 900; letter-spacing: .09em; }
.passport-media figcaption strong { max-width: 520px; font-size: 25px; line-height: 1.12; }
.passport-copy { display: flex; flex-direction: column; justify-content: center; }
.passport-copy > p:not(.eyebrow) { color: #617067; font-size: 18px; }
.passport-tabs { display: flex; gap: 7px; margin: 30px 0 14px; }
.passport-tab { min-height: 40px; padding: 8px 12px; color: #57665c; background: transparent; border: 1px solid #bfcac2; border-radius: 4px; font-size: 12px; font-weight: 900; cursor: pointer; }
.passport-tab.is-active { color: var(--paper); background: var(--ink); border-color: var(--ink); }
.passport-panel { padding: 28px; background: var(--paper); border: 1px solid var(--line); }
.passport-stage { display: block; margin-bottom: 16px; color: var(--green-dark); font-size: 11px; font-weight: 900; letter-spacing: .08em; }
.passport-panel h3 { max-width: 540px; font-size: 31px; }
.passport-panel > p { color: #607067; }
.passport-panel dl { margin: 24px 0 0; border-top: 1px solid var(--line); }
.passport-panel dl div { display: grid; grid-template-columns: 120px 1fr; gap: 18px; padding: 13px 0; border-bottom: 1px solid var(--line); }
.passport-panel dt { color: #7a8780; font-size: 10px; font-weight: 900; text-transform: uppercase; }
.passport-panel dd { margin: 0; font-weight: 700; }

/* AI */
.ai-section { color: var(--paper); background: #0f1713; }
.ai-grid { display: grid; grid-template-columns: 1.08fr .92fr; align-items: center; gap: clamp(50px, 8vw, 110px); }
.ai-console { min-height: 500px; color: #dfe9e2; background: #07110b; border: 1px solid #33473a; border-radius: var(--radius); overflow: hidden; box-shadow: 0 28px 70px rgba(0,0,0,.3); }
.console-header { display: flex; align-items: center; justify-content: space-between; gap: 12px; min-height: 52px; padding: 12px 18px; background: #18251d; border-bottom: 1px solid #33473a; font-weight: 800; }
.console-state { color: #7ce3a7; font-size: 12px; }
.console-log { display: flex; min-height: 335px; max-height: 335px; flex-direction: column; gap: 12px; padding: 20px; overflow-y: auto; }
.console-log p { max-width: 88%; margin: 0; padding: 12px 14px; border-radius: 6px; font-size: 14px; }
.system-message { align-self: flex-start; color: #aec0b4; background: #17241c; }
.user-message { align-self: flex-end; color: #092416; background: #7ce3a7; }
.answer-message { align-self: flex-start; color: #e5eee8; background: #223329; border-left: 3px solid #58d88d; }
.console-prompts { display: grid; gap: 7px; padding: 12px; border-top: 1px solid #263a2e; }
.console-prompts button { min-height: 39px; padding: 8px 12px; color: #dce7df; background: #17241c; border: 1px solid #34473b; border-radius: 4px; text-align: left; cursor: pointer; }
.console-prompts button:hover { border-color: #68de98; }
.console-input { display: grid; grid-template-columns: 1fr 46px; gap: 8px; padding: 0 12px 12px; }
.console-input input { min-width: 0; min-height: 44px; padding: 10px 12px; color: #e3ece6; background: #101d15; border: 1px solid #34473b; border-radius: 4px; }
.console-input input:focus { border-color: #68de98; outline: 0; box-shadow: 0 0 0 3px rgba(104,222,152,.12); }
.console-input button { display: grid; place-items: center; color: #07150d; background: #6ee7a8; border: 0; border-radius: 4px; font-size: 22px; font-weight: 900; cursor: pointer; }
.ai-copy h2 { font-size: clamp(38px, 5vw, 65px); }
.ai-copy > p:not(.eyebrow) { color: #afc0b5; font-size: 18px; }
.ai-stages { margin: 34px 0 0; }
.ai-stages div { display: grid; grid-template-columns: 100px 1fr; gap: 18px; padding: 16px 0; border-top: 1px solid #334239; }
.ai-stages dt { color: #6ee7a8; font-weight: 900; }
.ai-stages dd { margin: 0; color: #c0cdc5; }

/* Evidence */
.evidence-layout { display: grid; grid-template-columns: 1.1fr .9fr; gap: 22px; }
.evidence-photo { position: relative; min-height: 570px; margin: 0; overflow: hidden; }
.evidence-photo img { width: 100%; height: 100%; object-fit: cover; }
.evidence-photo figcaption { position: absolute; right: 16px; bottom: 16px; padding: 7px 10px; color: var(--paper); background: rgba(12, 22, 16, .78); border-radius: 3px; font-size: 12px; }
.evidence-links { display: grid; border-top: 1px solid var(--line); }
.evidence-links a { display: grid; grid-template-columns: 46px 1fr auto; align-items: center; gap: 18px; padding: 27px 20px; border-bottom: 1px solid var(--line); transition: background-color .18s ease; }
.evidence-links a:hover { background: var(--paper); }
.evidence-links span { color: #7b8980; font-size: 12px; font-weight: 800; }
.evidence-links strong { font-size: 20px; }
.evidence-links em { font-style: normal; font-weight: 800; }

/* Freedom cultural platform */
.freedom-platform { position: relative; min-height: 880px; padding: 128px 0 0; color: var(--paper); background: var(--night); overflow: hidden; isolation: isolate; }
.freedom-visual, .freedom-shade { position: absolute; inset: 0; z-index: -2; }
.freedom-visual img { width: 100%; height: 100%; object-fit: cover; object-position: center 44%; }
.freedom-shade { z-index: -1; background: linear-gradient(90deg, rgba(4,13,8,.88) 0%, rgba(4,13,8,.62) 48%, rgba(4,13,8,.22) 78%), linear-gradient(0deg, rgba(4,13,8,.88) 0%, transparent 45%); }
.freedom-inner { min-height: 530px; }
.freedom-inner h2 { max-width: 900px; margin-bottom: 18px; font-size: clamp(58px, 8vw, 112px); }
.freedom-lead { max-width: 670px; color: #d6e1da; font-size: 21px; }
.freedom-phrase { display: grid; max-width: 780px; margin: 40px 0 25px; padding: 24px 0; border-top: 1px solid rgba(255,255,255,.28); border-bottom: 1px solid rgba(255,255,255,.28); }
.freedom-phrase span { color: #93a79a; font-size: 13px; font-weight: 900; text-transform: uppercase; }
.freedom-phrase strong { margin-top: 4px; font-size: clamp(28px, 4vw, 48px); line-height: 1.08; }
.freedom-options { display: flex; flex-wrap: wrap; gap: 8px; }
.freedom-options button { min-height: 38px; padding: 8px 12px; color: #dce8e0; background: rgba(12,28,18,.68); border: 1px solid rgba(255,255,255,.3); border-radius: 4px; font-size: 12px; font-weight: 800; cursor: pointer; backdrop-filter: blur(8px); }
.freedom-options button:hover, .freedom-options button.is-active { color: #07190e; background: #7ae7a7; border-color: #7ae7a7; }
.freedom-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 10px; margin-top: 25px; }
.freedom-share { color: var(--paper); background: rgba(8,21,13,.72); border-color: rgba(255,255,255,.38); }
.freedom-actions > span { min-width: 110px; color: #9cebbb; font-size: 12px; font-weight: 800; }
.culture-series { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 64px; background: rgba(6,17,10,.9); border-top: 1px solid rgba(255,255,255,.24); }
.culture-series article { position: relative; isolation: isolate; display: flex; min-height: 260px; flex-direction: column; justify-content: flex-end; padding: 27px 24px; border-left: 1px solid rgba(255,255,255,.17); overflow: hidden; }
.culture-series article:last-child { border-right: 1px solid rgba(255,255,255,.17); }
.culture-series article::after { position: absolute; inset: 0; z-index: -1; content: ""; background: linear-gradient(180deg, rgba(3,12,7,.12) 8%, rgba(3,12,7,.5) 52%, rgba(3,12,7,.96) 100%); transition: background-color .25s ease; }
.culture-series article img { position: absolute; inset: 0; z-index: -2; width: 100%; height: 100%; object-fit: cover; transition: transform .7s cubic-bezier(.2,.65,.25,1), filter .3s ease; }
.culture-series article:hover img { transform: scale(1.045); filter: saturate(1.08); }
.culture-series article:hover::after { background-color: rgba(7,35,20,.12); }
.culture-series span { position: absolute; top: 24px; left: 24px; display: block; color: #78e6a4; font-size: 12px; font-weight: 900; text-shadow: 0 1px 12px rgba(0,0,0,.65); }
.culture-series strong { display: block; margin-bottom: 8px; font-size: 19px; text-shadow: 0 2px 18px rgba(0,0,0,.85); }
.culture-series p { max-width: 30ch; margin: 0; color: #d3dfd7; font-size: 13px; text-shadow: 0 2px 14px rgba(0,0,0,.9); }

/* FAQ */
.faq-grid { display: grid; grid-template-columns: .65fr 1.35fr; gap: 90px; }
.faq-grid h2 { font-size: clamp(38px, 4.5vw, 60px); }
.accordion { border-top: 1px solid var(--line); }
.accordion details { border-bottom: 1px solid var(--line); }
.accordion summary { position: relative; padding: 24px 54px 24px 0; font-size: 20px; font-weight: 800; cursor: pointer; list-style: none; }
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary::after { content: "+"; position: absolute; top: 50%; right: 5px; font-size: 28px; font-weight: 400; transform: translateY(-50%); }
.accordion details[open] summary::after { content: "−"; }
.accordion details p { max-width: 760px; padding-right: 40px; color: #647168; }

/* Request */
.band-green { background: #bdf2d2; }
.request-grid { display: grid; grid-template-columns: .78fr 1.22fr; gap: 90px; }
.request-copy h2 { font-size: clamp(42px, 5.5vw, 72px); }
.request-copy > p:not(.eyebrow) { color: #365243; font-size: 19px; }
.contact-lines { display: grid; gap: 7px; margin-top: 34px; font-size: 18px; font-weight: 800; }
.request-form { padding: 32px; background: var(--paper); border-radius: var(--radius); box-shadow: 0 18px 46px rgba(16, 51, 31, .12); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 17px; }
.form-grid label { display: grid; gap: 7px; }
.form-grid label > span { color: #55655a; font-size: 12px; font-weight: 800; text-transform: uppercase; }
.form-grid .wide { grid-column: 1 / -1; }
.form-grid input, .form-grid select, .form-grid textarea { width: 100%; min-height: 48px; padding: 11px 12px; color: var(--ink); background: #fbfcfb; border: 1px solid #b9c5bd; border-radius: 4px; }
.form-grid textarea { min-height: 108px; resize: vertical; }
.form-grid input:focus, .form-grid select:focus, .form-grid textarea:focus { border-color: var(--green-dark); box-shadow: 0 0 0 3px rgba(34,180,106,.14); outline: none; }
.honeypot { position: absolute !important; left: -10000px !important; }
.consent { display: flex; align-items: flex-start; gap: 10px; margin: 18px 0; color: #5c6b61; font-size: 13px; }
.consent input { width: 18px; height: 18px; margin-top: 2px; accent-color: var(--green-dark); }
.form-submit { width: 100%; }
.form-submit[disabled] { opacity: .65; cursor: wait; transform: none; }
.form-status { min-height: 24px; margin: 12px 0 0; font-size: 14px; font-weight: 700; }
.form-status.success { color: var(--green-dark); }
.form-status.error { color: var(--red); }

/* Footer */
.site-footer { color: #dce7df; background: #0a120d; }
.footer-top { display: grid; grid-template-columns: 1.5fr repeat(3, 1fr); gap: 48px; padding-top: 68px; padding-bottom: 54px; }
.footer-top > div { display: flex; flex-direction: column; align-items: flex-start; gap: 8px; }
.footer-brand { margin-bottom: 12px; color: var(--paper); }
.footer-top h2 { margin: 0 0 12px; color: #81e4a9; font-size: 13px; text-transform: uppercase; }
.footer-top a:not(.brand) { color: #b9c7be; }
.footer-top a:not(.brand):hover { color: var(--paper); }
.footer-top p { color: #8fa097; }
.footer-bottom { display: flex; justify-content: space-between; gap: 30px; padding-top: 20px; padding-bottom: 24px; color: #7f9086; border-top: 1px solid #253129; font-size: 12px; }

/* About company */
.about-hero { position: relative; min-height: 84svh; color: var(--paper); background: var(--night); overflow: hidden; }
.about-hero-image, .about-hero-shade { position: absolute; inset: 0; width: 100%; height: 100%; }
.about-hero-image { object-fit: cover; object-position: 55% 52%; }
.about-hero-shade { background: linear-gradient(90deg, rgba(4, 13, 8, .88) 0%, rgba(4, 13, 8, .56) 52%, rgba(4, 13, 8, .14) 82%); }
.about-hero-inner { position: relative; z-index: 2; display: flex; min-height: 76svh; flex-direction: column; justify-content: center; padding-top: calc(var(--header-h) + 40px); padding-bottom: 130px; }
.about-hero-inner h1 { max-width: 980px; margin-bottom: 20px; }
.about-hero-inner > p:not(.eyebrow) { max-width: 790px; margin-bottom: 32px; font-size: clamp(23px, 2.8vw, 39px); line-height: 1.22; text-wrap: balance; }
.about-hero-strip { position: absolute; z-index: 3; right: 0; bottom: 0; left: 0; display: grid; grid-template-columns: repeat(3, 1fr); padding-inline: max(20px, calc((100vw - var(--max)) / 2)); background: rgba(7, 20, 12, .86); border-top: 1px solid rgba(255,255,255,.22); backdrop-filter: blur(12px); }
.about-hero-strip span { min-height: 86px; display: flex; align-items: center; gap: 14px; padding: 20px 24px; border-left: 1px solid rgba(255,255,255,.16); font-weight: 800; }
.about-hero-strip span:last-child { border-right: 1px solid rgba(255,255,255,.16); }
.about-hero-strip b { color: #74e6a2; font-size: 12px; }

.company-now-grid { display: grid; grid-template-columns: .86fr 1.14fr; gap: clamp(50px, 7vw, 100px); align-items: start; }
.company-now-copy { border-top: 1px solid var(--line); }
.company-now-copy article { padding: 24px 0 28px; border-bottom: 1px solid var(--line); }
.company-now-copy article > span { color: var(--green-dark); font-size: 11px; font-weight: 900; text-transform: uppercase; }
.company-now-copy h3 { margin-top: 9px; font-size: 27px; }
.company-now-copy p { margin: 0; color: #627067; }
.company-now-media { display: grid; grid-template-columns: 1fr .68fr; gap: 12px; min-height: 640px; }
.company-now-media figure { position: relative; min-width: 0; min-height: 270px; margin: 0; overflow: hidden; }
.company-now-media .company-media-main { grid-row: span 2; }
.company-now-media img { width: 100%; height: 100%; object-fit: cover; }
.company-now-media figcaption { position: absolute; right: 12px; bottom: 12px; padding: 7px 10px; color: var(--paper); background: rgba(8, 20, 12, .78); border-radius: 3px; font-size: 11px; font-weight: 800; }

.company-process-list { display: grid; grid-template-columns: repeat(4, 1fr); padding: 0; list-style: none; border-top: 1px solid #bdc8c0; border-bottom: 1px solid #bdc8c0; }
.company-process-list li { min-height: 320px; padding: 28px 25px; border-left: 1px solid #bdc8c0; }
.company-process-list li:last-child { border-right: 1px solid #bdc8c0; }
.company-process-list span { display: block; margin-bottom: 74px; color: var(--green-dark); font-size: 12px; font-weight: 900; }
.company-process-list strong { display: block; margin-bottom: 13px; font-size: 24px; }
.company-process-list p { margin: 0; color: #607066; font-size: 14px; }

.evolution-section { color: var(--paper); background: #0d1712; }
.evolution-section .section-heading > p { color: #a7b7ad; }
.evolution-experience { display: grid; grid-template-columns: minmax(250px, .38fr) minmax(0, 1fr); min-height: 600px; border: 1px solid #33443a; }
.evolution-nav { display: grid; align-content: stretch; background: #101f16; }
.evolution-nav button { display: grid; grid-template-columns: 34px 1fr; align-content: center; gap: 5px 12px; min-height: 110px; padding: 18px 22px; color: #d7e2db; background: transparent; border: 0; border-bottom: 1px solid #33443a; text-align: left; cursor: pointer; }
.evolution-nav button:last-child { border-bottom: 0; }
.evolution-nav button:hover, .evolution-nav button.is-active { color: #07150d; background: #6ee7a8; }
.evolution-nav span { grid-row: 1 / span 2; padding-top: 3px; font-size: 11px; font-weight: 900; }
.evolution-nav strong { font-size: 18px; }
.evolution-nav em { color: #8fa399; font-size: 11px; font-style: normal; font-weight: 800; }
.evolution-nav button:hover em, .evolution-nav button.is-active em { color: #235f3c; }
.evolution-stage { min-width: 0; background: #09110d; overflow: hidden; }
.evolution-panel { position: relative; min-height: 600px; overflow: hidden; animation: about-panel-in .42s both; }
.evolution-panel[hidden] { display: none; }
.evolution-panel img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .8; }
.evolution-panel::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(5,13,8,.94) 0%, rgba(5,13,8,.14) 72%); }
.evolution-panel > div { position: absolute; z-index: 2; right: 0; bottom: 0; left: 0; max-width: 760px; padding: 42px; }
.evolution-panel h3 { margin-top: 16px; font-size: clamp(29px, 3.5vw, 48px); }
.evolution-panel p { margin: 0; color: #c2d0c7; font-size: 17px; }
.status-future { color: #12243f; background: #c5d7f5; }

.company-principles { padding: 112px 0; color: var(--paper); background: #10271a; }
.company-principles-heading { margin-bottom: 50px; }
.company-principles-heading h2 { max-width: 760px; margin: 0; }
.principles-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid rgba(255,255,255,.22); }
.principles-grid article { min-height: 260px; padding: 28px 24px; border-left: 1px solid rgba(255,255,255,.18); }
.principles-grid article:last-child { border-right: 1px solid rgba(255,255,255,.18); }
.principles-grid span { display: block; margin-bottom: 60px; color: #76e7a4; font-size: 11px; font-weight: 900; }
.principles-grid h3 { font-size: 27px; }
.principles-grid p { margin: 0; color: #a9bbb0; font-size: 14px; }

.company-people-grid { display: grid; grid-template-columns: 1.08fr .92fr; gap: clamp(50px, 7vw, 100px); align-items: center; }
.company-people figure { position: relative; min-height: 610px; margin: 0; }
.company-people figure img { width: 100%; height: 100%; object-fit: cover; }
.company-people figcaption { position: absolute; right: 18px; bottom: 18px; left: 18px; padding: 15px 17px; color: var(--paper); background: rgba(8,20,12,.82); font-size: 13px; }
.company-people h2 { font-size: clamp(38px, 4.8vw, 63px); }
.company-people p { color: #5d6b62; font-size: 18px; }

.about-cta { position: relative; min-height: 760px; color: var(--paper); background: var(--night); overflow: hidden; }
.about-cta > img, .about-cta-shade { position: absolute; inset: 0; width: 100%; height: 100%; }
.about-cta > img { object-fit: cover; }
.about-cta-shade { background: linear-gradient(90deg, rgba(4,13,8,.88) 0%, rgba(4,13,8,.58) 53%, rgba(4,13,8,.12) 83%); }
.about-cta-inner { position: relative; z-index: 2; display: flex; min-height: 760px; flex-direction: column; justify-content: center; align-items: flex-start; }
.about-cta h2 { max-width: 920px; font-size: clamp(48px, 7vw, 92px); }
.about-cta-inner > p:not(.eyebrow) { max-width: 700px; color: #d7e2db; font-size: 20px; }
.about-cta-inner > div { display: flex; align-items: center; gap: 24px; margin-top: 18px; }

@keyframes about-panel-in {
  from { opacity: .25; transform: scale(1.015); }
  to { opacity: 1; transform: scale(1); }
}

/* Content is visible immediately; motion is reserved for direct interactions. */
.js .reveal { opacity: 1; transform: none; }

@media (max-width: 1080px) {
  .desktop-nav { display: none; }
  .site-header { grid-template-columns: auto 1fr auto auto; }
  .header-cta { justify-self: end; }
  .menu-toggle {
    display: grid;
    width: 44px;
    height: 44px;
    place-content: center;
    gap: 6px;
    color: inherit;
    background: transparent;
    border: 1px solid currentColor;
    border-radius: 4px;
  }
  .menu-toggle span:not(.sr-only) { width: 19px; height: 2px; background: currentColor; transition: transform .18s ease; }
  .menu-toggle[aria-expanded="true"] span:not(.sr-only):nth-child(2) { transform: translateY(4px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:not(.sr-only):nth-child(3) { transform: translateY(-4px) rotate(-45deg); }
  .mobile-nav {
    position: fixed;
    top: var(--header-h);
    right: 0;
    left: 0;
    z-index: 99;
    display: grid;
    padding: 20px;
    color: var(--ink);
    background: var(--paper);
    box-shadow: 0 20px 30px rgba(0,0,0,.14);
  }
  .mobile-nav[hidden] { display: none; }
  .mobile-nav a { padding: 14px 2px; border-bottom: 1px solid var(--line); font-size: 18px; font-weight: 800; }
  .hero-status { overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; }
  .hero-status::-webkit-scrollbar { display: none; }
  .hero-story, .hero-story.is-active { min-width: min(50vw, 520px); flex: 0 0 min(50vw, 520px); scroll-snap-align: start; }
  .levels { grid-template-columns: repeat(3, 1fr); }
  .concierge-heading { grid-template-columns: 1fr; gap: 22px; }
  .concierge-heading > p { max-width: 720px; }
  .concierge-experience { grid-template-columns: 1fr; }
  .concierge-media { min-height: 560px; }
  .level:nth-child(3) { border-right: 1px solid var(--line); }
  .level:nth-child(n+4) { border-top: 1px solid var(--line); }
  .level { min-height: 260px; }
  .production-grid, .ai-grid, .request-grid { grid-template-columns: 1fr; }
  .proof-grid { grid-template-columns: repeat(2, 1fr); }
  .proof-grid > div:nth-child(n+3) { border-top: 1px solid rgba(0, 0, 0, .16); }
  .systems-experience { grid-template-columns: 1fr; }
  .systems-tabs { grid-template-columns: repeat(2, 1fr); grid-template-rows: repeat(2, minmax(160px, auto)); }
  .system-tab:nth-child(odd) { border-right: 1px solid #ced8d0; }
  .system-tab:nth-child(-n+2) { border-bottom: 1px solid #ced8d0; }
  .system-tab:nth-child(n+3) { border-bottom: 0; }
  .ai-console { order: 2; }
  .passport-grid { grid-template-columns: 1fr; }
  .passport-media { min-height: 600px; }
  .evidence-layout { grid-template-columns: 1fr; }
  .evidence-photo { min-height: 500px; }
  .culture-series { grid-template-columns: repeat(2, 1fr); }
  .culture-series article { min-height: 250px; }
  .culture-series article:nth-child(n+3) { border-top: 1px solid rgba(255,255,255,.17); }
  .company-now-grid, .company-people-grid { grid-template-columns: 1fr; }
  .company-now-media { min-height: 540px; }
  .company-process-list, .principles-grid { grid-template-columns: 1fr 1fr; }
  .company-process-list li:nth-child(n+3) { border-top: 1px solid #bdc8c0; }
  .principles-grid article:nth-child(n+3) { border-top: 1px solid rgba(255,255,255,.18); }
  .evolution-experience { grid-template-columns: 1fr; }
  .evolution-nav { grid-template-columns: repeat(5, minmax(155px, 1fr)); overflow-x: auto; scrollbar-width: thin; }
  .evolution-nav button { min-height: 88px; border-right: 1px solid #33443a; border-bottom: 0; }
}

@media (max-width: 780px) {
  :root { --header-h: 64px; }
  .shell { width: min(calc(100% - 28px), var(--max)); }
  .section { padding: 76px 0; }
  .section-heading { grid-template-columns: 1fr; gap: 18px; margin-bottom: 38px; }
  .section-heading > p { font-size: 16px; }
  .site-header { gap: 10px; padding-inline: 14px; }
  .brand { font-size: 18px; }
  .brand-mark { width: 36px; height: 36px; }
  .header-cta { display: none; }
  .site-header { grid-template-columns: auto 1fr auto; }
  .hero { min-height: 810px; }
  .hero-image { object-position: 58% 50%; }
  .hero-shade { background: linear-gradient(0deg, rgba(5,14,9,.84) 0%, rgba(5,14,9,.52) 56%, rgba(5,14,9,.25) 100%); }
  .hero-inner { min-height: 650px; justify-content: flex-end; padding-bottom: 48px; }
  h1, .hero-inner[data-hero-copy-key="process"] h1, .hero-inner[data-hero-copy-key="system"] h1 { font-size: clamp(44px, 15vw, 58px); }
  .hero-inner[data-hero-copy-key="process"] h1 { font-size: clamp(42px, 13vw, 54px); }
  .hero-lead { font-size: 22px; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 18px; }
  .hero-story, .hero-story.is-active { min-width: min(86vw, 390px); min-height: 138px; flex: 0 0 min(86vw, 390px); scroll-snap-align: start; padding: 0 18px 16px; }
  .hero-story + .hero-story { border-left: 1px solid rgba(255,255,255,.15); }
  .hero-story-trigger { padding-top: 16px; }
  .hero-story-trigger small { display: block; white-space: normal; }
  .hero-story-link { grid-column: 1 / -1; justify-self: start; margin: 10px 0 0 32px; }
  .thesis { padding: 74px 0; }
  .thesis-grid { grid-template-columns: 1fr; gap: 24px; }
  .thesis-grid > div > p { font-size: 18px; }
  .concierge-heading { margin-bottom: 34px; }
  .concierge-experience { min-height: 0; }
  .concierge-media { min-height: 420px; }
  .concierge-media figcaption { right: 20px; bottom: 20px; left: 20px; }
  .life-brief, .brief-result { padding: 32px 22px; }
  .brief-progress { grid-template-columns: auto 1fr; }
  .brief-progress em { grid-column: 2; }
  .brief-inline { grid-template-columns: 1fr; }
  .brief-submit { width: 100%; }
  .brief-output div { grid-template-columns: 96px 1fr; }
  .levels { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; border: 0; padding-bottom: 8px; }
  .level { min-width: 78vw; min-height: 0; scroll-snap-align: start; border-top: 1px solid var(--line) !important; border-bottom: 1px solid var(--line); }
  .level-body { min-height: 236px; }
  .level-number { margin-bottom: 24px; }
  .scenario-tabs { overflow-x: auto; padding-bottom: 4px; }
  .scenario-tab { flex: 0 0 auto; }
  .scenario-panel { grid-template-columns: 1fr; }
  .scenario-copy { padding: 34px 22px; }
  .scenario-copy h3 { font-size: 36px; }
  .scenario-media { min-height: 340px; }
  .model-grid { grid-template-columns: 1fr; }
  .model-card { grid-template-rows: 260px auto auto 1fr auto; }
  .model-card img { height: 260px; }
  .model-card.featured img { height: 256px; }
  .production-grid { gap: 42px; }
  .route-media { min-height: 560px; }
  .route-media::after { background: linear-gradient(0deg, rgba(5,11,7,.94) 0%, rgba(5,11,7,.52) 65%, rgba(5,11,7,.08) 100%); }
  .route-media-copy { width: 100%; padding: 28px 22px 24px; }
  .route-media-copy h3 { font-size: 34px; }
  .route-facts { grid-template-columns: 1fr 1fr; }
  .route-facts div:last-child { grid-column: 1 / -1; }
  .route-track { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; }
  .route-track::-webkit-scrollbar { display: none; }
  .route-step { min-width: min(58vw, 250px); flex: 0 0 min(58vw, 250px); scroll-snap-align: start; }
  .proof-grid { grid-template-columns: 1fr; }
  .proof-grid > div { min-height: auto; padding: 21px 12px; border-right: 0 !important; border-bottom: 1px solid rgba(0,0,0,.16); }
  .systems-experience { display: flex; min-height: 0; flex-direction: column; overflow: visible; background: transparent; border: 0; box-shadow: none; }
  .systems-tabs { order: -1; display: flex; overflow-x: auto; grid-template-columns: none; grid-template-rows: none; border: 1px solid #ced8d0; scroll-snap-type: x mandatory; scrollbar-width: none; }
  .systems-tabs::-webkit-scrollbar { display: none; }
  .system-tab { min-width: min(80vw, 420px); min-height: 156px; flex: 0 0 min(80vw, 420px); grid-template-columns: 46px minmax(0, 1fr); scroll-snap-align: start; border-right: 1px solid #ced8d0 !important; border-bottom: 0 !important; }
  .system-tab:last-child { border-right: 0 !important; }
  .system-tab .status { grid-column: 2; justify-self: start; margin-top: 0; }
  .systems-stage { border: 1px solid #263a2f; border-top: 0; }
  .systems-media { min-height: 410px; }
  .systems-media-copy { padding: 26px 22px 24px; }
  .systems-media-copy h3 { font-size: 26px; }
  .systems-flow { grid-template-columns: repeat(2, 1fr); }
  .systems-flow li { min-height: 88px; }
  .systems-flow li:nth-child(3) { border-left: 0; border-top: 1px solid #31443a; }
  .systems-flow li:nth-child(4) { border-top: 1px solid #31443a; }
  .status-note { grid-template-columns: 1fr; gap: 8px; padding: 22px; }
  .autonomy-page-link { align-items: flex-start; flex-direction: column; }
  .passport-grid { gap: 34px; }
  .passport-media { min-height: 440px; }
  .passport-tabs { overflow-x: auto; padding-bottom: 4px; }
  .passport-tab { flex: 0 0 auto; }
  .passport-panel { padding: 23px 19px; }
  .passport-panel dl div { grid-template-columns: 96px 1fr; gap: 12px; }
  .ai-grid { gap: 42px; }
  .ai-console { min-height: 520px; }
  .evidence-photo { min-height: 390px; }
  .evidence-links a { grid-template-columns: 34px 1fr; gap: 10px; padding: 22px 10px; }
  .evidence-links em { grid-column: 2; }
  .freedom-platform { min-height: 0; padding-top: 86px; }
  .freedom-shade { background: linear-gradient(0deg, rgba(4,13,8,.95) 0%, rgba(4,13,8,.58) 69%, rgba(4,13,8,.35) 100%); }
  .freedom-inner { min-height: 650px; display: flex; flex-direction: column; justify-content: flex-end; padding-bottom: 48px; }
  .freedom-inner h2 { font-size: clamp(54px, 16vw, 76px); }
  .freedom-lead { font-size: 18px; }
  .freedom-options { overflow-x: auto; flex-wrap: nowrap; padding-bottom: 5px; }
  .freedom-options button { flex: 0 0 auto; }
  .culture-series { grid-template-columns: 1fr; margin-top: 0; }
  .culture-series article { min-height: 220px; border-top: 1px solid rgba(255,255,255,.17); }
  .faq-grid { grid-template-columns: 1fr; gap: 34px; }
  .form-grid { grid-template-columns: 1fr; }
  .form-grid .wide { grid-column: auto; }
  .request-form { padding: 24px 18px; }
  .about-hero { min-height: 760px; }
  .about-hero-image { object-position: 60% 50%; }
  .about-hero-shade { background: linear-gradient(0deg, rgba(4,13,8,.9) 0%, rgba(4,13,8,.56) 62%, rgba(4,13,8,.25) 100%); }
  .about-hero-inner { min-height: 660px; justify-content: flex-end; padding-bottom: 142px; }
  .about-hero-inner h1 { font-size: clamp(50px, 15vw, 64px); }
  .about-hero-inner > p:not(.eyebrow) { font-size: 22px; }
  .about-hero-strip { grid-template-columns: 1fr; }
  .about-hero-strip span { display: none; min-height: 64px; padding: 14px 20px; }
  .about-hero-strip span:first-child { display: flex; }
  .company-now-media { grid-template-columns: 1fr; min-height: auto; }
  .company-now-media figure, .company-now-media .company-media-main { min-height: 360px; grid-row: auto; }
  .company-process-list, .principles-grid { grid-template-columns: 1fr; }
  .company-process-list li, .principles-grid article { min-height: 230px; }
  .company-process-list li { border-right: 1px solid #bdc8c0; border-bottom: 1px solid #bdc8c0; }
  .principles-grid article { border-right: 1px solid rgba(255,255,255,.18); border-bottom: 1px solid rgba(255,255,255,.18); }
  .company-process-list span, .principles-grid span { margin-bottom: 38px; }
  .evolution-panel { min-height: 590px; }
  .evolution-panel > div { padding: 26px 22px; }
  .evolution-panel h3 { font-size: 30px; }
  .company-people figure { min-height: 430px; }
  .about-cta, .about-cta-inner { min-height: 700px; }
  .about-cta-inner > div { align-items: flex-start; flex-direction: column; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 36px 24px; }
  .footer-top > div:first-child { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; gap: 5px; }
}

@media (max-width: 420px) {
  .hero { min-height: 820px; }
  .hero-inner { min-height: 650px; }
  .button { width: 100%; }
  .hero-actions { width: 100%; }
  .hero-actions .text-link { align-self: flex-start; }
  .concierge-media { min-height: 360px; }
  .brief-choices span { padding-inline: 10px; }
  .brief-result-actions { display: grid; }
  .level { min-width: 86vw; }
  .route-toolbar > div { display: grid; gap: 1px; }
  .route-toolbar .live-dot { font-size: 10px; }
  .route-media { min-height: 600px; }
  .route-media-copy h3 { font-size: 31px; }
  .route-facts { gap: 10px; }
  .route-step { min-width: 68vw; flex-basis: 68vw; }
  .system-tab { min-width: 86vw; flex-basis: 86vw; }
  .systems-media { min-height: 380px; }
  .passport-media { min-height: 360px; }
  .passport-panel dl div { grid-template-columns: 1fr; gap: 4px; }
  .freedom-actions { display: grid; }
  .freedom-actions > span { min-height: 18px; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-top > div:first-child { grid-column: auto; }
}

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

/* Autonomy page */
.autonomy-hero {
  position: relative;
  min-height: min(920px, 96svh);
  color: var(--paper);
  background: var(--night);
  overflow: hidden;
}

.autonomy-hero-image,
.autonomy-hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.autonomy-hero-image { object-fit: cover; object-position: 56% 54%; }
.autonomy-hero-shade { background: linear-gradient(90deg, rgba(5, 14, 9, .88) 0%, rgba(5, 14, 9, .57) 48%, rgba(5, 14, 9, .08) 82%); }
.autonomy-hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: min(780px, calc(96svh - 126px));
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding-top: var(--header-h);
  padding-bottom: 90px;
}

.autonomy-hero h1 { max-width: 960px; margin-bottom: 22px; font-size: clamp(62px, 9.2vw, 138px); }
.autonomy-hero-inner > p:not(.eyebrow) { max-width: 760px; margin-bottom: 34px; color: #e0e9e3; font-size: clamp(22px, 2.6vw, 36px); line-height: 1.24; text-wrap: balance; }
.autonomy-hero-actions { display: flex; align-items: center; gap: 24px; }
.autonomy-hero-facts {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding-inline: max(20px, calc((100vw - var(--max)) / 2));
  background: rgba(8, 21, 13, .9);
  border-top: 1px solid rgba(255, 255, 255, .2);
  backdrop-filter: blur(12px);
}

.autonomy-hero-facts > span { display: grid; min-height: 126px; grid-template-columns: 32px 1fr; align-content: center; gap: 3px 10px; padding: 22px 24px; border-left: 1px solid rgba(255, 255, 255, .16); }
.autonomy-hero-facts > span:last-child { border-right: 1px solid rgba(255, 255, 255, .16); }
.autonomy-hero-facts b { grid-row: 1 / span 2; color: #6ee7a8; font-size: 12px; }
.autonomy-hero-facts strong { font-size: 17px; }
.autonomy-hero-facts small { color: #aebdb4; font-size: 12px; }

.autonomy-thesis { padding: 100px 0; color: var(--paper); background: #101d16; }
.autonomy-thesis-grid { display: grid; grid-template-columns: .35fr 1.65fr; gap: clamp(40px, 8vw, 120px); }
.autonomy-thesis .section-index { color: #7ee7a9; }
.autonomy-thesis h2 { max-width: 990px; margin-bottom: 22px; font-size: clamp(40px, 5.5vw, 72px); }
.autonomy-thesis-grid > div > p { max-width: 850px; margin: 0; color: #adbbb2; font-size: 19px; }

.autonomy-contour-experience {
  --contour-accent: #e8b13c;
  color: var(--paper);
  background: #0d1712;
  border: 1px solid #33443a;
  overflow: hidden;
  box-shadow: 0 24px 70px rgba(15, 28, 20, .16);
}

.autonomy-contour-experience[data-contour="water"] { --contour-accent: #64b4e4; }
.autonomy-contour-experience[data-contour="climate"] { --contour-accent: #5bda8f; }
.autonomy-contour-experience[data-contour="security"] { --contour-accent: #ef8174; }
.autonomy-contour-nav { display: grid; grid-template-columns: repeat(4, 1fr); background: #13221a; border-bottom: 1px solid #384b40; }
.autonomy-contour-nav button {
  position: relative;
  display: grid;
  min-width: 0;
  min-height: 112px;
  grid-template-columns: 42px 1fr;
  align-content: center;
  gap: 4px 13px;
  padding: 20px;
  color: #dce7df;
  background: transparent;
  border: 0;
  border-left: 1px solid #384b40;
  text-align: left;
  cursor: pointer;
}

.autonomy-contour-nav button:first-child { border-left: 0; }
.autonomy-contour-nav button::after { content: ""; position: absolute; right: 0; bottom: 0; left: 0; height: 0; background: var(--contour-accent); transition: height .18s ease; }
.autonomy-contour-nav button:hover,
.autonomy-contour-nav button.is-active { background: #1a2b21; }
.autonomy-contour-nav button.is-active::after { height: 4px; }
.autonomy-contour-nav span { display: grid; width: 40px; height: 40px; grid-row: 1 / span 2; place-items: center; color: #0c1a12; background: #74867b; border-radius: 50%; font-weight: 900; }
.autonomy-contour-nav button.is-active span { background: var(--contour-accent); }
.autonomy-contour-nav strong { font-size: 18px; }
.autonomy-contour-nav small { color: #84958b; font-size: 11px; }
.autonomy-contour-stage { position: relative; min-height: 610px; overflow: hidden; isolation: isolate; }
.autonomy-contour-stage::after { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(0deg, rgba(5, 13, 8, .92) 0%, rgba(5, 13, 8, .13) 68%); pointer-events: none; }
.autonomy-contour-stage > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transform: scale(1.035); transition: opacity .5s ease, transform 1s ease; }
.autonomy-contour-stage > img.is-active { opacity: 1; transform: scale(1); }
.autonomy-contour-copy { position: absolute; z-index: 2; right: 0; bottom: 0; left: 0; max-width: 850px; padding: 38px 40px; }
.autonomy-contour-copy .eyebrow { color: var(--contour-accent); }
.autonomy-contour-copy h3 { max-width: 760px; font-size: clamp(34px, 4vw, 58px); }
.autonomy-contour-copy > p:not(.eyebrow) { max-width: 720px; margin: 0; color: #c4d0c8; font-size: 17px; }
.autonomy-contour-flow { display: grid; grid-template-columns: repeat(4, 1fr); margin: 0; padding: 0; list-style: none; border-top: 1px solid #384b40; }
.autonomy-contour-flow li { position: relative; min-height: 134px; padding: 23px 20px; border-left: 1px solid #384b40; }
.autonomy-contour-flow li:first-child { border-left: 0; }
.autonomy-contour-flow li::before { content: ""; position: absolute; top: 0; left: 0; width: 0; height: 3px; background: var(--contour-accent); }
.autonomy-contour-flow.is-changing li::before { width: 100%; transition: width .4s ease; }
.autonomy-contour-flow span,
.autonomy-contour-flow strong,
.autonomy-contour-flow small { display: block; }
.autonomy-contour-flow span { margin-bottom: 18px; color: var(--contour-accent); font-size: 11px; font-weight: 900; }
.autonomy-contour-flow strong { margin-bottom: 6px; font-size: 15px; }
.autonomy-contour-flow small { color: #82948a; font-size: 12px; }

.autonomy-resilience { color: var(--paper); background: #14271c; }
.autonomy-resilience .section-heading > p { color: #a8b8ae; }
.resilience-matrix { border-top: 1px solid rgba(255, 255, 255, .22); }
.resilience-matrix article { display: grid; min-height: 196px; grid-template-columns: 70px minmax(260px, .8fr) minmax(320px, 1fr) 180px; align-items: center; gap: 26px; padding: 28px 0; border-bottom: 1px solid rgba(255, 255, 255, .22); }
.resilience-matrix article > span { align-self: start; color: #6ee7a8; font-size: 12px; font-weight: 900; }
.resilience-matrix article > div > p { margin-bottom: 7px; color: #81e3a9; font-size: 11px; font-weight: 900; text-transform: uppercase; }
.resilience-matrix h3 { max-width: 430px; margin: 0; font-size: 28px; }
.resilience-matrix ul { display: grid; gap: 7px; margin: 0; padding: 0; color: #aebdb4; list-style: none; }
.resilience-matrix li { position: relative; padding-left: 20px; }
.resilience-matrix li::before { content: ""; position: absolute; top: .63em; left: 0; width: 7px; height: 7px; background: #6ee7a8; }
.resilience-matrix em { justify-self: end; padding: 7px 10px; color: #f1d49b; background: #382d18; border: 1px solid #66522a; font-size: 11px; font-style: normal; font-weight: 900; white-space: nowrap; }

.autonomy-configurator { background: #edf2ee; }
.autonomy-configurator-heading { display: grid; grid-template-columns: 1.2fr .8fr; align-items: end; gap: 64px; margin-bottom: 46px; }
.autonomy-configurator-heading h2 { margin-bottom: 0; }
.autonomy-configurator-heading > p { margin-bottom: 3px; color: #5d6b62; font-size: 17px; }
.autonomy-configurator-tool { display: grid; grid-template-columns: 1.08fr .92fr; background: var(--paper); border: 1px solid #bac7bd; box-shadow: 0 26px 70px rgba(15, 28, 20, .12); overflow: hidden; }
.autonomy-config-form { display: grid; grid-template-columns: 1fr 1fr; align-content: start; }
.autonomy-config-form fieldset { display: grid; grid-template-columns: 1fr 1fr; align-content: start; gap: 9px; min-width: 0; margin: 0; padding: 28px; border: 0; border-right: 1px solid #d3ddd5; border-bottom: 1px solid #d3ddd5; }
.autonomy-config-form fieldset:nth-child(even) { border-right: 0; }
.autonomy-config-form fieldset:nth-child(n+3) { border-bottom: 0; }
.autonomy-config-form legend { float: left; width: 100%; margin-bottom: 18px; padding: 0; font-size: 17px; font-weight: 850; }
.autonomy-config-form legend span { margin-right: 9px; color: var(--green-dark); font-size: 11px; }
.autonomy-config-form label:not(.autonomy-number) { position: relative; cursor: pointer; }
.autonomy-config-form label:not(.autonomy-number) input { position: absolute; width: 1px; height: 1px; opacity: 0; }
.autonomy-config-form label:not(.autonomy-number) > span { display: grid; min-height: 78px; align-content: center; gap: 2px; padding: 12px; background: #f4f7f4; border: 1px solid #c9d3cb; border-radius: 4px; transition: background-color .18s ease, border-color .18s ease; }
.autonomy-config-form label:not(.autonomy-number) input:checked + span { background: #dcf6e6; border-color: #56c687; box-shadow: inset 4px 0 #22b46a; }
.autonomy-config-form label:not(.autonomy-number) input:focus-visible + span { outline: 3px solid #59a4ff; outline-offset: 2px; }
.autonomy-config-form b,
.autonomy-config-form small { display: block; }
.autonomy-config-form b { font-size: 13px; }
.autonomy-config-form small { color: #758279; font-size: 10px; }
.autonomy-inline-fields { display: grid; grid-column: 1 / -1; grid-template-columns: 1fr 1fr; gap: 10px; }
.autonomy-number { display: grid; gap: 6px; color: #647269; font-size: 11px; font-weight: 900; text-transform: uppercase; }
.autonomy-number input { width: 100%; min-height: 50px; padding: 10px 12px; color: var(--ink); background: #f8faf8; border: 1px solid #bac7bd; border-radius: 4px; }
.autonomy-result { display: flex; min-width: 0; flex-direction: column; justify-content: center; padding: clamp(34px, 5vw, 62px); color: var(--paper); background: #102019; }
.autonomy-result .eyebrow { color: #78e6a5; }
.autonomy-scenario-id { display: inline-flex; align-self: flex-start; margin-bottom: 24px; padding: 7px 10px; color: #0a2516; background: #74e4a3; font-size: 10px; font-weight: 900; letter-spacing: .06em; }
.autonomy-result h3 { max-width: 560px; font-size: clamp(34px, 4vw, 52px); }
.autonomy-result > p:not(.eyebrow):not(.autonomy-copy-status) { color: #b8c7bd; }
.autonomy-result dl { margin: 24px 0 30px; border-top: 1px solid #3b4e42; }
.autonomy-result dl div { display: grid; grid-template-columns: 105px 1fr; gap: 15px; padding: 13px 0; border-bottom: 1px solid #3b4e42; }
.autonomy-result dt { color: #84968b; font-size: 10px; font-weight: 900; text-transform: uppercase; }
.autonomy-result dd { margin: 0; color: #edf4ef; font-size: 13px; font-weight: 700; }
.autonomy-result-actions { display: flex; flex-wrap: wrap; gap: 9px; }
.autonomy-result .button-quiet { color: var(--paper); background: #25362d; border-color: #43564b; }
.autonomy-copy-status { min-height: 20px; margin: 10px 0 0; color: #81e4a9; font-size: 12px; font-weight: 800; }

.autonomy-process-experience { background: #0d1812; border: 1px solid #9eaca2; box-shadow: 0 28px 70px rgba(12, 27, 18, .14); overflow: hidden; }
.autonomy-process-stage { position: relative; min-height: clamp(500px, 51vw, 720px); margin: 0; color: var(--paper); background: #101b15; overflow: hidden; }
.autonomy-process-media,
.autonomy-process-media::after { position: absolute; inset: 0; }
.autonomy-process-media::after { z-index: 2; content: ""; background: linear-gradient(0deg, rgba(5, 14, 9, .94) 0%, rgba(5, 14, 9, .42) 43%, rgba(5, 14, 9, .08) 76%); pointer-events: none; }
.autonomy-process-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transform: scale(1.025); transition: opacity .52s ease, transform 1.1s ease; }
.autonomy-process-media img.is-active { opacity: 1; transform: scale(1); }
.autonomy-process-caption { position: absolute; z-index: 3; right: 0; bottom: 0; left: 0; display: grid; grid-template-columns: 110px minmax(0, 760px); align-items: end; gap: 28px; padding: clamp(28px, 4.5vw, 64px); }
.autonomy-process-count { align-self: start; padding-top: 8px; color: #76e5a3; font-size: 12px; font-weight: 900; letter-spacing: .08em; }
.autonomy-process-caption h3 { max-width: 760px; margin-bottom: 14px; font-size: clamp(34px, 4vw, 58px); }
.autonomy-process-caption > div > p:last-child { max-width: 680px; margin: 0; color: #d1ded5; font-size: 17px; }
.autonomy-process-list { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); background: #f7faf7; }
.autonomy-process-list button { position: relative; display: grid; min-width: 0; min-height: 148px; align-content: space-between; gap: 12px; padding: 22px 20px; color: var(--ink); background: transparent; border: 0; border-right: 1px solid #bcc8bf; border-radius: 0; text-align: left; cursor: pointer; transition: color .2s ease, background-color .2s ease; }
.autonomy-process-list button:last-child { border-right: 0; }
.autonomy-process-list button::before { position: absolute; top: 0; right: 100%; left: 0; height: 4px; content: ""; background: #25bd70; transition: right .28s ease; }
.autonomy-process-list button:hover { background: #eaf4ed; }
.autonomy-process-list button.is-active { color: var(--paper); background: #153326; }
.autonomy-process-list button.is-active::before { right: 0; }
.autonomy-process-list button:focus-visible { z-index: 2; outline: 3px solid #59a4ff; outline-offset: -3px; }
.autonomy-process-list span,
.autonomy-process-list strong,
.autonomy-process-list small { display: block; }
.autonomy-process-list span { color: var(--green-dark); font-size: 10px; font-weight: 900; }
.autonomy-process-list button.is-active span { color: #78e6a5; }
.autonomy-process-list strong { align-self: end; font-size: 17px; line-height: 1.14; }
.autonomy-process-list small { color: #728078; font-size: 10px; font-weight: 750; }
.autonomy-process-list button.is-active small { color: #b9c9bf; }

.autonomy-honesty { padding: 112px 0; color: var(--paper); background: #0c1611; }
.autonomy-honesty-grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: clamp(50px, 8vw, 120px); }
.autonomy-honesty h2 { max-width: 620px; }
.autonomy-honesty-list { border-top: 1px solid #34463b; }
.autonomy-honesty-list article { display: grid; grid-template-columns: 155px 1fr; gap: 5px 24px; padding: 24px 0; border-bottom: 1px solid #34463b; }
.autonomy-honesty-list article .status { grid-row: 1 / span 2; align-self: start; justify-self: start; }
.autonomy-honesty-list h3 { margin: 0; font-size: 21px; }
.autonomy-honesty-list p { margin: 0; color: #9fb0a5; font-size: 13px; }

.autonomy-cta { position: relative; min-height: 780px; color: var(--paper); background: var(--night); overflow: hidden; }
.autonomy-cta > img,
.autonomy-cta-shade { position: absolute; inset: 0; width: 100%; height: 100%; }
.autonomy-cta > img { object-fit: cover; }
.autonomy-cta-shade { background: linear-gradient(90deg, rgba(4, 13, 8, .92) 0%, rgba(4, 13, 8, .58) 55%, rgba(4, 13, 8, .1) 86%); }
.autonomy-cta-inner { position: relative; z-index: 2; display: flex; min-height: 780px; flex-direction: column; justify-content: center; align-items: flex-start; }
.autonomy-cta h2 { max-width: 970px; font-size: clamp(48px, 6.7vw, 92px); }
.autonomy-cta-inner > p:not(.eyebrow) { max-width: 720px; color: #d1ddd5; font-size: 20px; }
.autonomy-cta-inner > div { display: flex; align-items: center; gap: 24px; margin-top: 18px; }

@media (max-width: 1080px) {
  .autonomy-hero-facts { overflow-x: auto; padding-inline: 0; scroll-snap-type: x mandatory; }
  .autonomy-hero-facts > span { min-width: 42vw; scroll-snap-align: start; }
  .autonomy-contour-nav { overflow-x: auto; grid-template-columns: repeat(4, minmax(250px, 1fr)); scrollbar-width: thin; }
  .resilience-matrix article { grid-template-columns: 48px 1fr 1fr; }
  .resilience-matrix em { grid-column: 2; justify-self: start; }
  .autonomy-configurator-tool { grid-template-columns: 1fr; }
  .autonomy-process-list { overflow-x: auto; grid-template-columns: repeat(5, minmax(210px, 1fr)); scroll-snap-type: x mandatory; scrollbar-width: thin; }
  .autonomy-process-list button { scroll-snap-align: start; }
  .autonomy-honesty-grid { grid-template-columns: 1fr; }
}

@media (max-width: 780px) {
  .autonomy-hero { min-height: 850px; }
  .autonomy-hero-image { object-position: 64% 50%; }
  .autonomy-hero-shade { background: linear-gradient(0deg, rgba(5, 14, 9, .93) 0%, rgba(5, 14, 9, .48) 66%, rgba(5, 14, 9, .22) 100%); }
  .autonomy-hero-inner { min-height: 690px; justify-content: flex-end; padding-bottom: 54px; }
  .autonomy-hero h1 { font-size: clamp(52px, 18vw, 76px); }
  .autonomy-hero-inner > p:not(.eyebrow) { font-size: 21px; }
  .autonomy-hero-actions { align-items: flex-start; flex-direction: column; gap: 18px; }
  .autonomy-hero-facts > span { min-width: 86vw; min-height: 126px; }
  .autonomy-thesis { padding: 76px 0; }
  .autonomy-thesis-grid { grid-template-columns: 1fr; gap: 24px; }
  .autonomy-thesis h2 { font-size: 39px; }
  .autonomy-contour-nav { display: flex; overflow-x: auto; grid-template-columns: none; scroll-snap-type: x mandatory; scrollbar-width: none; }
  .autonomy-contour-nav::-webkit-scrollbar { display: none; }
  .autonomy-contour-nav button { min-width: 76vw; flex: 0 0 76vw; scroll-snap-align: start; }
  .autonomy-contour-stage { min-height: 520px; }
  .autonomy-contour-stage::after { background: linear-gradient(0deg, rgba(5, 13, 8, .95) 0%, rgba(5, 13, 8, .2) 78%); }
  .autonomy-contour-copy { padding: 27px 22px; }
  .autonomy-contour-copy h3 { font-size: 34px; }
  .autonomy-contour-flow { grid-template-columns: 1fr 1fr; }
  .autonomy-contour-flow li { min-height: 124px; }
  .autonomy-contour-flow li:nth-child(3) { border-left: 0; border-top: 1px solid #384b40; }
  .autonomy-contour-flow li:nth-child(4) { border-top: 1px solid #384b40; }
  .resilience-matrix article { grid-template-columns: 38px 1fr; gap: 16px; }
  .resilience-matrix article > div { grid-column: 2; }
  .resilience-matrix ul { grid-column: 2; }
  .resilience-matrix em { grid-column: 2; }
  .autonomy-configurator-heading { grid-template-columns: 1fr; gap: 18px; }
  .autonomy-config-form { grid-template-columns: 1fr; }
  .autonomy-config-form fieldset,
  .autonomy-config-form fieldset:nth-child(even),
  .autonomy-config-form fieldset:nth-child(n+3) { padding: 24px 20px; border-right: 0; border-bottom: 1px solid #d3ddd5; }
  .autonomy-result { padding: 34px 22px; }
  .autonomy-result dl div { grid-template-columns: 92px 1fr; }
  .autonomy-result-actions { display: grid; }
  .autonomy-process-stage { min-height: 620px; }
  .autonomy-process-media img { object-position: 57% 50%; }
  .autonomy-process-media::after { background: linear-gradient(0deg, rgba(5, 14, 9, .96) 0%, rgba(5, 14, 9, .52) 55%, rgba(5, 14, 9, .1) 84%); }
  .autonomy-process-caption { grid-template-columns: 1fr; gap: 8px; padding: 28px 22px; }
  .autonomy-process-count { padding-top: 0; }
  .autonomy-process-caption h3 { font-size: 36px; }
  .autonomy-process-caption > div > p:last-child { font-size: 15px; }
  .autonomy-process-list { grid-template-columns: repeat(5, minmax(72vw, 1fr)); scrollbar-width: none; }
  .autonomy-process-list::-webkit-scrollbar { display: none; }
  .autonomy-process-list button { min-height: 128px; }
  .autonomy-honesty { padding: 76px 0; }
  .autonomy-honesty-list article { grid-template-columns: 1fr; }
  .autonomy-honesty-list article .status { grid-row: auto; }
  .autonomy-cta,
  .autonomy-cta-inner { min-height: 720px; }
  .autonomy-cta-shade { background: linear-gradient(0deg, rgba(4, 13, 8, .94) 0%, rgba(4, 13, 8, .46) 72%, rgba(4, 13, 8, .24) 100%); }
  .autonomy-cta-inner { justify-content: flex-end; padding-bottom: 64px; }
  .autonomy-cta h2 { font-size: 48px; }
  .autonomy-cta-inner > div { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 420px) {
  .autonomy-hero h1 { font-size: 44px; }
  .autonomy-hero-actions { width: 100%; }
  .autonomy-hero-actions .text-link { align-self: flex-start; }
  .autonomy-contour-nav button { min-width: 86vw; flex-basis: 86vw; }
  .autonomy-contour-flow li { padding-inline: 15px; }
  .autonomy-config-form fieldset { grid-template-columns: 1fr; }
  .autonomy-inline-fields { grid-template-columns: 1fr; }
  .autonomy-result dl div { grid-template-columns: 1fr; gap: 4px; }
}
