@font-face {
  font-family: "Avenir Orbitalys";
  src: url("fonts/avenir-book.woff") format("woff");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Avenir Orbitalys";
  src: url("fonts/avenir-medium.woff") format("woff");
  font-style: normal;
  font-weight: 500 650;
  font-display: swap;
}

@font-face {
  font-family: "Avenir Orbitalys";
  src: url("fonts/avenir-heavy.woff") format("woff");
  font-style: normal;
  font-weight: 700 900;
  font-display: swap;
}

:root {
  color-scheme: dark;
  --page: #06100e;
  --page-deep: #030a08;
  --surface: #0a1714;
  --surface-raised: #0d1d19;
  --surface-active: #10251f;
  --ink: #f1f8f5;
  --ink-soft: #b0c3bd;
  --ink-muted: #718a82;
  --line: rgba(181, 221, 208, 0.14);
  --line-strong: rgba(181, 221, 208, 0.26);
  --mint: #86efc5;
  --mint-bright: #a8ffda;
  --button-mint: #86efc5;
  --button-mint-hover: #a8ffda;
  --cyan: #68bad9;
  --amber: #f2c866;
  --red: #ff6965;
  --header: rgba(6, 16, 14, 0.88);
  --grid: rgba(134, 239, 197, 0.055);
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.42);
  --radius-sm: 5px;
  --radius-md: 9px;
  --radius-lg: 14px;
  --shell: 1600px;
  --header-height: 74px;
}

:root[data-theme="light"] {
  color-scheme: light;
  --page: #f4f7f4;
  --page-deep: #e6eee9;
  --surface: #ffffff;
  --surface-raised: #f9fcfa;
  --surface-active: #e7f3ed;
  --ink: #0c1b17;
  --ink-soft: #3f5b52;
  --ink-muted: #667e76;
  --line: rgba(20, 64, 52, 0.14);
  --line-strong: rgba(20, 64, 52, 0.26);
  --mint: #0f8b69;
  --mint-bright: #0b765c;
  --cyan: #277d9d;
  --amber: #916b12;
  --red: #c63d39;
  --header: rgba(244, 247, 244, 0.9);
  --grid: rgba(15, 139, 105, 0.065);
  --shadow: 0 24px 70px rgba(24, 55, 46, 0.16);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  scroll-behavior: auto;
  scroll-padding-top: calc(var(--header-height) + 24px);
  background: var(--page);
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--page);
  color: var(--ink);
  font-family: "Avenir Orbitalys", Avenir, "Avenir Next", "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: -0.012em;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

button,
summary,
a {
  -webkit-tap-highlight-color: transparent;
}

button:focus-visible,
summary:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--mint);
  outline-offset: 3px;
}

::selection {
  background: var(--mint);
  color: #04100d;
}

.skip-link {
  position: fixed;
  z-index: 200;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  background: var(--mint);
  color: #04100d;
  transform: translateY(-180%);
}

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

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

.route {
  display: none;
}

.route.is-active {
  display: block;
}

.copyright-mark {
  display: inline-block;
  margin-left: 0.08em;
  color: var(--ink-muted);
  font-size: 0.58em;
  font-weight: 400;
  line-height: 1;
  vertical-align: super;
}

.brand-inline {
  white-space: nowrap;
  font-weight: 500;
}

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  height: var(--header-height);
  border-bottom: 1px solid var(--line);
  background: var(--header);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 10px;
  color: var(--ink);
}

.brand img {
  width: 36px;
  height: 34px;
}

.brand-word {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.035em;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 1.35vw, 26px);
}

.primary-nav > a:not(.button),
.nav-disclosure summary,
.theme-button {
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  transition: color 160ms ease;
}

.primary-nav > a:not(.button):hover,
.nav-disclosure summary:hover,
.theme-button:hover {
  color: var(--ink);
}

.nav-disclosure {
  position: relative;
}

.nav-disclosure summary {
  padding: 10px 0;
  cursor: pointer;
  list-style: none;
}

.nav-disclosure summary::-webkit-details-marker {
  display: none;
}

.nav-disclosure summary::after {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  margin: 0 0 3px 7px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: rotate(45deg);
}

.nav-disclosure-menu {
  position: absolute;
  top: calc(100% + 12px);
  right: -14px;
  display: grid;
  min-width: 220px;
  padding: 8px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-md);
  background: var(--surface-raised);
  box-shadow: var(--shadow);
}

.nav-disclosure-menu a {
  padding: 11px 12px;
  border-radius: var(--radius-sm);
  color: var(--ink-soft);
  font-size: 14px;
}

.nav-disclosure-menu a:hover {
  background: var(--surface-active);
  color: var(--ink);
}

.theme-button {
  min-width: 56px;
  padding: 10px 12px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  background: transparent;
  cursor: pointer;
}

.menu-button {
  display: none;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  background: transparent;
  color: var(--ink);
  cursor: pointer;
}

.menu-lines {
  display: grid;
  gap: 3px;
  width: 16px;
}

.menu-lines i {
  display: block;
  width: 100%;
  height: 1px;
  background: currentColor;
}

.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 11px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 650;
  line-height: 1.2;
  letter-spacing: -0.015em;
  cursor: pointer;
  transition: background-color 160ms ease, color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  border-color: var(--button-mint);
  background: var(--button-mint);
  color: #04100d;
}

.button-primary:hover {
  border-color: var(--button-mint-hover);
  background: var(--button-mint-hover);
}

.button-secondary {
  border-color: var(--line-strong);
  background: transparent;
  color: var(--ink);
}

.button-secondary:hover {
  border-color: var(--mint);
  color: var(--mint-bright);
}

.nav-contact {
  min-height: 40px;
  padding-inline: 16px;
}

.hero {
  position: relative;
  display: flex;
  width: 100%;
  min-height: 100svh;
  align-items: center;
  padding: calc(var(--header-height) + 28px) 0 28px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(var(--grid) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid) 1px, transparent 1px),
    radial-gradient(circle at 74% 48%, rgba(65, 174, 137, 0.11), transparent 34%);
  background-size: 64px 64px, 64px 64px, auto;
}

.hero-grid {
  display: grid;
  width: calc(100% - 48px);
  max-width: none;
  min-height: calc(100svh - var(--header-height) - 56px);
  grid-template-columns: minmax(370px, 0.72fr) minmax(0, 1.28fr);
  align-items: center;
  gap: clamp(36px, 3vw, 64px);
}

.hero-copy {
  position: relative;
  z-index: 2;
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 24px;
  color: var(--mint);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.eyebrow > span:first-child:not(.brand-inline) {
  width: 18px;
  height: 1px;
  background: currentColor;
}

h1,
h2,
h3,
p {
  text-wrap: pretty;
}

h1,
h2,
h3 {
  margin-top: 0;
  color: var(--ink);
  line-height: 1.04;
  letter-spacing: -0.048em;
}

.hero h1 {
  max-width: 640px;
  margin-bottom: 22px;
  font-size: clamp(42px, 3.15vw, 60px);
  font-weight: 500;
}

.hero h1 em {
  color: var(--mint);
  font-style: normal;
}

.hero-summary {
  max-width: 620px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.hero-principles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  max-width: 620px;
  margin: 30px 0 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--line);
}

.hero-principles div {
  padding: 12px 14px;
  background: rgba(6, 16, 14, 0.76);
}

[data-theme="light"] .hero-principles div {
  background: rgba(255, 255, 255, 0.78);
}

.hero-principles dt {
  margin-bottom: 4px;
  color: var(--ink-muted);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-principles dd {
  margin: 0;
  color: var(--ink);
  font-size: 14px;
  font-weight: 600;
}

.hero-product {
  display: flex;
  width: 100%;
  min-width: 0;
  margin: 0;
  flex-direction: column;
  justify-content: center;
}

.product-frame {
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  background: #06100e;
  box-shadow: var(--shadow);
}

[data-theme="light"] .product-frame,
[data-theme="light"] .visual-button {
  background: #f4f7f4;
}

.frame-labels {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  border-bottom: 1px solid rgba(181, 221, 208, 0.18);
  color: #86efc5;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.frame-labels span:last-child {
  color: #718a82;
}

[data-theme="light"] .frame-labels {
  border-bottom-color: rgba(20, 64, 52, 0.18);
  background: #ffffff;
  color: #0f8b69;
}

[data-theme="light"] .frame-labels span:last-child {
  color: #667e76;
}

.product-frame img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.hero-product figcaption,
.experience-visual figcaption {
  max-width: 720px;
  margin: 14px 16px 0;
  color: var(--ink-muted);
  font-size: 13px;
}

.trust-rail {
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}

.trust-grid p {
  margin: 0;
  padding: 18px 20px;
  border-right: 1px solid var(--line);
  color: var(--ink-muted);
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.1em;
  text-align: center;
  text-transform: uppercase;
}

.trust-grid p:first-child {
  border-left: 1px solid var(--line);
}

.section {
  padding: 112px 0;
}

.section-surface {
  border-block: 1px solid var(--line);
  background: var(--surface);
}

.experience-section {
  display: flex;
  min-height: 100svh;
  align-items: center;
  padding-top: calc(var(--header-height) + 34px);
  padding-bottom: 34px;
}

.experience-grid {
  display: grid;
  min-height: calc(100svh - var(--header-height) - 68px);
  grid-template-columns: minmax(330px, 0.62fr) minmax(0, 1.38fr);
  align-items: center;
  gap: clamp(42px, 5vw, 84px);
}

.experience-grid-reverse {
  grid-template-columns: minmax(0, 1.38fr) minmax(330px, 0.62fr);
}

.experience-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
}

.experience-copy h2 {
  max-width: 650px;
  margin-bottom: 24px;
  font-size: clamp(36px, 3.1vw, 54px);
  font-weight: 500;
}

.experience-copy > p:not(.eyebrow) {
  max-width: 650px;
  margin: 0 0 15px;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.7;
}

.experience-visual {
  display: flex;
  width: 100%;
  min-width: 0;
  margin: 0;
  flex-direction: column;
  justify-content: center;
}

.visual-button {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: #06100e;
  color: inherit;
  cursor: zoom-in;
}

.visual-button img {
  width: 100%;
  height: auto;
}

[data-theme="light"] .visual-button {
  aspect-ratio: 120 / 59;
  overflow: hidden;
}

[data-theme="light"] .visual-button img[data-light-src] {
  width: 100%;
  max-width: none;
  transform: translateY(-8.5272%);
}

.section-action {
  align-self: flex-start;
  margin-top: 16px;
}

.point-list {
  display: grid;
  margin-top: 24px;
  border-top: 1px solid var(--line-strong);
}

.point-list article {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr);
  gap: 14px;
  padding: 17px 0;
  border-bottom: 1px solid var(--line);
}

.point-list article > span {
  color: var(--mint);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.point-list h3 {
  margin: 0 0 5px;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.point-list p {
  margin: 0;
  color: var(--ink-muted);
  font-size: 14px;
  line-height: 1.55;
}

.split-heading,
.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 0.75fr);
  align-items: start;
  gap: clamp(60px, 9vw, 150px);
}

.split-heading h2,
.section-heading h2,
.product-heading h2,
.governance-copy h2,
.planning-card h2,
.about-grid h2,
.contact-copy h2 {
  max-width: 900px;
  margin-bottom: 0;
  font-size: clamp(38px, 4.2vw, 66px);
  font-weight: 500;
}

.section-intro {
  padding-top: 44px;
}

.section-intro p,
.product-heading > p,
.governance-copy > p,
.planning-card > p,
.about-grid > div:last-child > p,
.contact-copy > p {
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.75;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 70px;
}

.value-card,
.capability-card,
.planning-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
}

.value-card {
  min-height: 300px;
  padding: 30px;
}

.card-number {
  display: block;
  margin-bottom: 78px;
  color: var(--mint);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.value-card h3,
.capability-card h3,
.governance-list h3,
.gallery-caption h3 {
  margin-bottom: 14px;
  font-size: 23px;
  font-weight: 600;
  letter-spacing: -0.035em;
}

.value-card p,
.capability-card p,
.governance-list p {
  margin: 0;
  color: var(--ink-soft);
}

.section-heading {
  max-width: 1020px;
  margin-bottom: 64px;
}

.section-heading.centered {
  margin-inline: auto;
  text-align: center;
}

.section-heading.centered .eyebrow {
  justify-content: center;
}

.section-heading > p:last-child {
  max-width: 760px;
  margin: 24px auto 0;
  color: var(--ink-soft);
  font-size: 17px;
}

.operating-loop {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1px;
  margin: 0;
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--line);
  list-style: none;
}

.operating-loop li {
  min-height: 300px;
  padding: 26px 22px;
  background: var(--page);
}

.operating-loop li:nth-child(even) {
  background: var(--surface-raised);
}

.operating-loop span {
  display: block;
  margin-bottom: 74px;
  color: var(--mint);
  font-size: 12px;
  font-weight: 700;
}

.operating-loop strong {
  display: block;
  margin-bottom: 14px;
  color: var(--ink);
  font-size: 18px;
}

.operating-loop p {
  margin: 0;
  color: var(--ink-muted);
  font-size: 14px;
  line-height: 1.65;
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.capability-card {
  min-height: 310px;
  padding: 30px;
}

.capability-card .card-number {
  margin-bottom: 54px;
}

.capability-kicker {
  margin-bottom: 12px !important;
  color: var(--mint) !important;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.capability-card > p:last-child {
  max-width: 600px;
  font-size: 16px;
  line-height: 1.75;
}

.capability-featured {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 90px minmax(0, 1fr) 310px;
  align-items: end;
  min-height: 260px;
  background:
    linear-gradient(110deg, var(--surface), var(--surface-raised)),
    var(--surface);
}

.capability-featured .card-number {
  align-self: start;
  margin: 0;
}

.capability-featured dl {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.capability-featured dl div {
  padding: 18px;
}

.capability-featured dl div + div {
  border-left: 1px solid var(--line);
}

.capability-featured dt {
  color: var(--ink-muted);
  font-size: 12px;
  text-transform: uppercase;
}

.capability-featured dd {
  margin: 4px 0 0;
  color: var(--ink);
  font-size: 14px;
  font-weight: 600;
}

.product-section {
  overflow: hidden;
  border-block: 1px solid var(--line);
  background:
    linear-gradient(var(--grid) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid) 1px, transparent 1px),
    var(--page-deep);
  background-size: 64px 64px;
}

.product-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(360px, 0.55fr);
  align-items: end;
  gap: 80px;
  margin-bottom: 54px;
}

.product-heading > p {
  margin: 0;
}

.gallery {
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.gallery-stage {
  overflow: hidden;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.gallery-image-button {
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: #06100e;
  cursor: zoom-in;
}

.gallery-image-button img {
  width: 100%;
  height: auto;
}

.gallery-caption {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr) auto;
  align-items: center;
  gap: 22px;
  padding: 24px 26px;
}

.gallery-caption > span {
  align-self: start;
  color: var(--mint);
  font-size: 12px;
  font-weight: 700;
}

.gallery-caption h3 {
  margin: 0 0 5px;
}

.gallery-caption p {
  margin: 0;
  color: var(--ink-muted);
  font-size: 14px;
}

.text-button,
.text-link {
  padding: 0 0 5px;
  border: 0;
  border-bottom: 1px solid var(--mint);
  background: transparent;
  color: var(--mint-bright);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}

.gallery-tabs {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-top: 1px solid var(--line);
}

.gallery-tabs button {
  min-height: 66px;
  padding: 14px 16px;
  border: 0;
  border-right: 1px solid var(--line);
  background: transparent;
  color: var(--ink-muted);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
}

.gallery-tabs button:last-child {
  border-right: 0;
}

.gallery-tabs button:hover,
.gallery-tabs button.is-active {
  background: var(--surface-active);
  color: var(--ink);
}

.gallery-tabs button.is-active {
  box-shadow: inset 0 -2px 0 var(--mint);
}

.governance-grid {
  display: grid;
  grid-template-columns: minmax(360px, 0.7fr) minmax(600px, 1.1fr);
  align-items: start;
  gap: clamp(70px, 9vw, 150px);
}

.governance-copy {
  position: sticky;
  top: calc(var(--header-height) + 44px);
}

.governance-copy > p {
  margin: 28px 0 32px;
}

.governance-list {
  border-top: 1px solid var(--line-strong);
}

.governance-list article {
  display: grid;
  grid-template-columns: 60px minmax(0, 1fr);
  gap: 22px;
  padding: 30px 0;
  border-bottom: 1px solid var(--line-strong);
}

.governance-list article > span {
  color: var(--mint);
  font-size: 12px;
  font-weight: 700;
}

.governance-list h3 {
  margin-bottom: 8px;
}

.planning-section {
  background: var(--page);
}

.planning-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.planning-card {
  min-height: 570px;
  padding: clamp(34px, 4vw, 62px);
}

.planning-card h2 {
  font-size: clamp(38px, 3.5vw, 58px);
}

.planning-card > p {
  max-width: 650px;
}

.planning-card .text-link {
  display: inline-block;
  margin-top: 22px;
}

.mission-card {
  background: linear-gradient(145deg, rgba(134, 239, 197, 0.08), transparent 55%), var(--surface);
}

.cost-card {
  background: linear-gradient(145deg, rgba(104, 186, 217, 0.08), transparent 55%), var(--surface);
}

.about-section {
  border-block: 1px solid var(--line);
  background: var(--surface);
}

.about-grid > div:last-child {
  padding-top: 44px;
}

.inline-links {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 32px;
}

.inline-links a {
  border-bottom: 1px solid var(--mint);
  color: var(--mint-bright);
  font-size: 14px;
  font-weight: 600;
}

.integration-section {
  border-block: 1px solid var(--line);
  background:
    radial-gradient(circle at 78% 45%, rgba(134, 239, 197, 0.08), transparent 34%),
    var(--page-deep);
}

.integration-summary {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.integration-summary > article {
  min-height: 220px;
  padding: 28px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  background: var(--surface);
}

.integration-summary article > span,
.integration-exchange div > span,
.catalog-label,
.vendor-heading > span {
  color: var(--mint);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.integration-summary h3 {
  margin: 48px 0 12px;
  font-size: 24px;
  font-weight: 600;
}

.integration-summary p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.65;
}

.integration-summary .integration-exchange {
  grid-column: 1 / -1;
  display: grid;
  min-height: 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding: 0;
  overflow: hidden;
}

.integration-exchange > div {
  padding: 24px 28px;
}

.integration-exchange > div + div {
  border-left: 1px solid var(--line);
}

.integration-exchange p {
  margin-top: 10px;
}

.company-page {
  min-height: 100vh;
  padding-top: var(--header-height);
}

.catalog-sidebar {
  position: sticky;
  top: calc(var(--header-height) + 32px);
  align-self: start;
}

.catalog-label {
  margin: 0;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line-strong);
}

.catalog-sidebar section {
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.catalog-sidebar h2 {
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.025em;
}

.catalog-sidebar p:not(.catalog-label) {
  margin: 0;
  color: var(--ink-muted);
  font-size: 14px;
  line-height: 1.65;
}

.catalog-sidebar .button {
  width: 100%;
  margin-top: 24px;
}

.catalog-intro {
  max-width: 920px;
  margin-bottom: 48px;
}

.catalog-intro h2,
.catalog-cta h2 {
  margin-bottom: 20px;
  font-size: clamp(36px, 4vw, 60px);
  font-weight: 500;
}

.catalog-intro > p:last-child,
.catalog-cta > div > p:last-child {
  margin: 0;
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.75;
}

.integration-vendors {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.integration-vendor {
  padding: 28px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  background: var(--surface);
}

.integration-vendor-wide {
  grid-column: 1 / -1;
}

.vendor-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.vendor-heading h2 {
  margin: 0;
  font-size: 25px;
  font-weight: 600;
}

.vendor-heading > span {
  flex: 0 0 auto;
  color: var(--ink-muted);
}

.platform-list {
  display: grid;
  margin: 0;
  padding: 8px 0 0;
  list-style: none;
}

.platform-list li {
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.45;
}

.platform-list li:last-child {
  border-bottom: 0;
}

.platform-list-columns {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  column-gap: 28px;
}

.catalog-cta {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 48px;
  margin-top: 72px;
  padding-top: 52px;
  border-top: 1px solid var(--line-strong);
}

.catalog-cta > div {
  max-width: 760px;
}

.catalog-cta .button {
  flex: 0 0 auto;
}

.company-layout {
  display: grid;
  grid-template-columns: 250px minmax(0, 1120px);
  justify-content: space-between;
  gap: 80px;
  padding-top: 70px;
  padding-bottom: 120px;
}

.company-intro {
  max-width: 940px;
  margin-bottom: 48px;
}

.company-intro h2,
.accountability-note h2 {
  margin-bottom: 20px;
  font-size: clamp(36px, 4vw, 60px);
  font-weight: 500;
}

.company-intro > p:last-child,
.accountability-note > p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.75;
}

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

.company-cards > article {
  display: flex;
  min-height: 540px;
  padding: clamp(28px, 3vw, 44px);
  flex-direction: column;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, rgba(134, 239, 197, 0.07), transparent 48%), var(--surface);
}

.company-card-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 42px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
  color: var(--mint);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.company-card-heading small {
  color: var(--ink-muted);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: lowercase;
}

.company-cards h2 {
  margin-bottom: 18px;
  font-size: clamp(34px, 3.4vw, 52px);
  font-weight: 500;
}

.company-cards p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.7;
}

.company-cards ul {
  display: grid;
  gap: 0;
  margin: 28px 0 34px;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.company-cards li {
  padding: 11px 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 13px;
}

.company-cards .button {
  align-self: flex-start;
  margin-top: auto;
}

.operating-relationship {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 18px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  background: var(--surface);
}

.operating-relationship > div {
  min-height: 230px;
  padding: 28px;
}

.operating-relationship > div + div {
  border-left: 1px solid var(--line);
}

.operating-relationship span {
  color: var(--mint);
  font-size: 11px;
  font-weight: 700;
}

.operating-relationship h3 {
  margin: 42px 0 10px;
  font-size: 22px;
}

.operating-relationship p {
  margin: 0;
  color: var(--ink-muted);
  font-size: 14px;
  line-height: 1.65;
}

.accountability-note {
  margin-top: 72px;
  padding-top: 52px;
  border-top: 1px solid var(--line-strong);
}

.contact-section {
  padding-bottom: 128px;
  background:
    radial-gradient(circle at 16% 20%, rgba(134, 239, 197, 0.08), transparent 30%),
    var(--page-deep);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(380px, 0.7fr) minmax(620px, 1fr);
  align-items: start;
  gap: clamp(60px, 8vw, 130px);
}

.contact-copy {
  position: sticky;
  top: calc(var(--header-height) + 44px);
}

.contact-copy > p {
  margin: 28px 0 36px;
}

.contact-copy dl {
  display: grid;
  margin: 0;
  border-top: 1px solid var(--line);
}

.contact-copy dl div {
  display: grid;
  grid-template-columns: 90px 1fr;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.contact-copy dt {
  color: var(--ink-muted);
  font-size: 12px;
  text-transform: uppercase;
}

.contact-copy dd {
  margin: 0;
  color: var(--ink);
  font-size: 14px;
  font-weight: 600;
}

.contact-form {
  padding: clamp(28px, 4vw, 50px);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  background: var(--surface);
}

.form-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 34px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.form-heading p {
  margin: 0;
  color: var(--ink);
  font-weight: 650;
}

.form-heading span {
  color: var(--ink-muted);
  font-size: 12px;
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px 18px;
}

.contact-form label {
  display: grid;
  gap: 8px;
}

.contact-form label > span {
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 600;
}

.contact-form label b {
  margin-left: 5px;
  color: var(--ink-muted);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  background: var(--page);
  color: var(--ink);
  padding: 12px 14px;
}

.contact-form textarea {
  min-height: 150px;
  resize: vertical;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: var(--ink-muted);
}

.contact-form.was-validated input:invalid,
.contact-form.was-validated select:invalid,
.contact-form.was-validated textarea:invalid {
  border-color: var(--red);
}

.full-field {
  margin-top: 22px;
}

.consent-field {
  display: grid !important;
  grid-template-columns: 20px minmax(0, 1fr);
  align-items: start;
  gap: 10px !important;
  margin-top: 22px;
}

.consent-field input {
  width: 18px;
  min-height: 18px;
  margin-top: 3px;
  accent-color: var(--mint);
}

.consent-field a {
  color: var(--mint-bright);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.privacy-request-field[hidden] {
  display: none;
}

.website-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 30px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.form-footer p {
  max-width: 470px;
  margin: 0;
  color: var(--ink-muted);
  font-size: 12px;
}

.form-footer p a {
  color: var(--mint-bright);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.form-status {
  min-height: 26px;
  margin-top: 18px;
  color: var(--ink-soft);
  font-size: 14px;
}

.form-status.is-error {
  color: var(--red);
}

.form-status.is-success {
  color: var(--mint-bright);
}

.site-footer {
  border-top: 1px solid var(--line-strong);
  background: var(--page-deep);
}

.footer-main {
  display: flex;
  min-height: 116px;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.footer-main nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px 24px;
}

.footer-main nav a {
  color: var(--ink-muted);
  font-size: 13px;
}

.footer-main nav a:hover {
  color: var(--ink);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding-block: 22px;
  border-top: 1px solid var(--line);
}

.footer-bottom p {
  margin: 0;
  color: var(--ink-muted);
  font-size: 12px;
}

.footer-bottom button {
  padding: 0 0 4px;
  border: 0;
  border-bottom: 1px solid var(--line-strong);
  background: transparent;
  color: var(--ink-muted);
  font-size: 12px;
  cursor: pointer;
}

.footer-bottom button:hover {
  border-bottom-color: var(--mint);
  color: var(--ink);
}

.legal-page {
  min-height: 80vh;
  padding-top: var(--header-height);
}

.legal-hero {
  padding-top: 110px;
  padding-bottom: 70px;
  border-bottom: 1px solid var(--line);
}

.legal-hero h1 {
  margin-bottom: 20px;
  font-size: clamp(50px, 7vw, 90px);
  font-weight: 500;
}

.legal-hero > p:last-child {
  margin: 0;
  color: var(--ink-soft);
  font-size: 18px;
}

.legal-layout {
  display: grid;
  grid-template-columns: 250px minmax(0, 800px);
  justify-content: space-between;
  gap: 80px;
  padding-top: 70px;
  padding-bottom: 120px;
}

.legal-nav {
  position: sticky;
  top: calc(var(--header-height) + 32px);
  display: grid;
  align-self: start;
  border-top: 1px solid var(--line-strong);
}

.legal-nav a {
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink-muted);
  font-size: 14px;
}

.legal-nav a.is-active,
.legal-nav a:hover {
  color: var(--mint-bright);
}

.legal-content section {
  margin-bottom: 52px;
}

.legal-content h2 {
  margin-bottom: 14px;
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -0.035em;
}

.legal-content p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.85;
}

.legal-content p + p {
  margin-top: 16px;
}

.legal-content .text-link {
  color: var(--mint-bright);
}

.legal-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-md);
}

.legal-table-wrap table {
  width: 100%;
  min-width: 650px;
  border-collapse: collapse;
}

.legal-table-wrap th,
.legal-table-wrap td {
  padding: 14px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.55;
  text-align: left;
  vertical-align: top;
}

.legal-table-wrap th {
  color: var(--ink);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.legal-table-wrap th:last-child,
.legal-table-wrap td:last-child {
  border-right: 0;
}

.legal-table-wrap tbody tr:last-child td {
  border-bottom: 0;
}

.rights-actions,
.legal-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.rights-actions a {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  padding: 8px 13px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  color: var(--ink);
  font-size: 13px;
  font-weight: 600;
}

.rights-actions a:hover {
  border-color: var(--mint);
  color: var(--mint-bright);
}

.cookie-notice {
  position: fixed;
  z-index: 250;
  right: 22px;
  bottom: 22px;
  left: 22px;
}

.cookie-summary {
  display: flex;
  width: min(1040px, 100%);
  margin-inline: auto;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  padding: 20px 22px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  background: var(--surface-raised);
  box-shadow: var(--shadow);
}

.cookie-kicker {
  margin: 0 0 5px;
  color: var(--mint);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.cookie-summary h2,
.cookie-dialog h2 {
  margin: 0;
  font-size: 20px;
  font-weight: 600;
}

.cookie-summary div > p:last-child {
  margin: 6px 0 0;
  color: var(--ink-muted);
  font-size: 12px;
}

.cookie-actions {
  display: flex;
  flex: 0 0 auto;
  gap: 10px;
}

.cookie-dialog {
  width: min(700px, calc(100% - 30px));
  padding: 0;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  background: var(--surface-raised);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.cookie-dialog::backdrop {
  background: rgba(1, 6, 5, 0.82);
  backdrop-filter: blur(7px);
}

.cookie-dialog-heading,
.cookie-dialog-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 22px;
  border-bottom: 1px solid var(--line);
}

.cookie-dialog-heading > button {
  padding: 8px 10px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  background: transparent;
  color: var(--ink);
  cursor: pointer;
}

.cookie-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 18px 22px;
  border-bottom: 1px solid var(--line);
}

.cookie-row strong {
  color: var(--ink);
  font-size: 14px;
}

.cookie-row p {
  margin: 4px 0 0;
  color: var(--ink-muted);
  font-size: 12px;
}

.cookie-row > span {
  color: var(--mint-bright);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.cookie-dialog-actions {
  flex-wrap: wrap;
  border: 0;
}

.image-dialog {
  width: min(94vw, 1760px);
  max-width: none;
  max-height: 94vh;
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  background: #06100e;
  color: #f1f8f5;
  box-shadow: var(--shadow);
}

[data-theme="light"] .image-dialog {
  background: #f4f7f4;
  color: #0c1b17;
}

.image-dialog::backdrop {
  background: rgba(1, 6, 5, 0.86);
  backdrop-filter: blur(8px);
}

.dialog-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 16px 18px;
  border-bottom: 1px solid rgba(181, 221, 208, 0.18);
}

.dialog-bar p {
  margin: 0 0 2px;
  color: #718a82;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.dialog-bar h2 {
  margin: 0;
  color: #f1f8f5;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.dialog-bar button {
  padding: 8px 12px;
  border: 1px solid rgba(181, 221, 208, 0.26);
  border-radius: var(--radius-sm);
  background: transparent;
  color: #f1f8f5;
  cursor: pointer;
}

[data-theme="light"] .dialog-bar {
  border-bottom-color: rgba(20, 64, 52, 0.18);
  background: #ffffff;
}

[data-theme="light"] .dialog-bar p {
  color: #667e76;
}

[data-theme="light"] .dialog-bar h2,
[data-theme="light"] .dialog-bar button {
  color: #0c1b17;
}

[data-theme="light"] .dialog-bar button {
  border-color: rgba(20, 64, 52, 0.26);
}

.dialog-image-stage {
  overflow: hidden;
}

.dialog-image-stage > img {
  width: 100%;
  max-height: calc(94vh - 73px);
  object-fit: contain;
}

[data-theme="light"] .dialog-image-stage {
  aspect-ratio: 120 / 59;
  background: #f4f7f4;
}

[data-theme="light"] .dialog-image-stage > img {
  width: 100%;
  max-width: none;
  max-height: none;
  transform: translateY(-8.5272%);
}

.motion-ready [data-reveal] > .shell {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 520ms ease, transform 620ms cubic-bezier(0.22, 1, 0.36, 1);
}

.motion-ready [data-reveal].is-visible > .shell {
  opacity: 1;
  transform: none;
}

@media (min-width: 1101px) and (max-width: 1480px) {
  .menu-button {
    display: inline-flex;
  }

  .primary-nav {
    position: fixed;
    inset: var(--header-height) 0 0;
    display: none;
    align-content: start;
    align-items: stretch;
    gap: 0;
    padding: 26px 24px 40px;
    overflow: auto;
    background: var(--page);
  }

  .primary-nav.is-open {
    display: grid;
  }

  .primary-nav > a:not(.button),
  .nav-disclosure summary,
  .theme-button {
    min-height: 52px;
    padding: 16px 0;
    border: 0;
    border-bottom: 1px solid var(--line);
    border-radius: 0;
    text-align: left;
    font-size: 16px;
  }

  .theme-button {
    width: 100%;
  }

  .nav-contact {
    margin-top: 22px;
  }

  .nav-disclosure-menu {
    position: static;
    min-width: 0;
    padding: 4px 0 10px 18px;
    border: 0;
    box-shadow: none;
  }

  .company-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .company-layout > .legal-nav {
    position: static;
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .company-layout > .legal-nav a {
    padding-inline: 10px;
    text-align: center;
  }

  .catalog-sidebar {
    position: static;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 24px;
  }

  .catalog-label,
  .catalog-sidebar .button {
    grid-column: 1 / -1;
  }

  .catalog-sidebar .button {
    width: auto;
    justify-self: start;
  }
}

@media (min-width: 1101px) and (max-width: 1200px) {
  .legal-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .legal-layout > .legal-nav {
    position: static;
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .legal-layout > .legal-nav a {
    padding-inline: 10px;
    text-align: center;
  }
}

@media (min-width: 1101px) and (min-height: 800px) {
  html:not(.legal-route) {
    scroll-snap-type: y mandatory;
    overscroll-behavior-y: contain;
  }

  html:not(.legal-route) .snap-section {
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }

  html:not(.legal-route) .section.snap-section {
    display: flex;
    min-height: 100svh;
    align-items: center;
    padding-top: calc(var(--header-height) + 34px);
    padding-bottom: 34px;
  }

  html:not(.legal-route) .site-footer {
    scroll-snap-align: end;
  }

  .governance-copy,
  .contact-copy {
    position: static;
  }
}

@media (max-width: 1320px) {
  .shell {
    width: min(var(--shell), calc(100% - 40px));
  }

  .primary-nav {
    gap: 15px;
  }

  .primary-nav > a:not(.button),
  .nav-disclosure summary,
  .theme-button {
    font-size: 13px;
  }

  .hero-grid {
    grid-template-columns: minmax(340px, 0.76fr) minmax(0, 1.24fr);
    gap: 32px;
  }

  .hero-product {
    width: 100%;
    margin: 0;
  }

  .operating-loop {
    grid-template-columns: repeat(3, 1fr);
  }

  .operating-loop li {
    min-height: 250px;
  }
}

@media (max-width: 1100px) {
  :root {
    --header-height: 68px;
  }

  .menu-button {
    display: inline-flex;
  }

  .primary-nav {
    position: fixed;
    inset: var(--header-height) 0 0;
    display: none;
    align-content: start;
    align-items: stretch;
    gap: 0;
    padding: 26px 24px 40px;
    overflow: auto;
    background: var(--page);
  }

  .primary-nav.is-open {
    display: grid;
  }

  .primary-nav > a:not(.button),
  .nav-disclosure summary,
  .theme-button {
    min-height: 52px;
    padding: 16px 0;
    border: 0;
    border-bottom: 1px solid var(--line);
    border-radius: 0;
    text-align: left;
    font-size: 16px;
  }

  .theme-button {
    width: 100%;
  }

  .nav-contact {
    margin-top: 22px;
  }

  .nav-disclosure-menu {
    position: static;
    min-width: 0;
    padding: 4px 0 10px 18px;
    border: 0;
    box-shadow: none;
  }

  .hero {
    padding-top: calc(var(--header-height) + 64px);
  }

  .hero-grid,
  .experience-grid,
  .experience-grid-reverse,
  .split-heading,
  .about-grid,
  .product-heading,
  .governance-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-product {
    width: 100%;
    margin: 16px 0 0;
  }

  .experience-section {
    min-height: auto;
  }

  .experience-grid,
  .experience-grid-reverse {
    min-height: 0;
    gap: 46px;
  }

  .experience-grid-reverse .experience-copy {
    order: -1;
  }

  .section-intro,
  .about-grid > div:last-child {
    padding-top: 0;
  }

  .value-grid {
    grid-template-columns: 1fr;
  }

  .value-card {
    min-height: 230px;
  }

  .card-number {
    margin-bottom: 46px;
  }

  .governance-copy,
  .contact-copy {
    position: static;
  }

  .gallery-tabs {
    grid-template-columns: repeat(3, 1fr);
  }

  .gallery-tabs button {
    border-bottom: 1px solid var(--line);
  }

  .legal-layout {
    grid-template-columns: 210px minmax(0, 1fr);
    gap: 48px;
  }

  .company-layout {
    grid-template-columns: 210px minmax(0, 1fr);
    gap: 48px;
  }

  .company-cards {
    grid-template-columns: 1fr;
  }

  .company-cards > article {
    min-height: 0;
  }

  .platform-list-columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .shell {
    width: min(100% - 30px, var(--shell));
  }

  .section {
    padding: 78px 0;
  }

  .hero {
    min-height: auto;
    padding-bottom: 58px;
    background-size: 42px 42px;
  }

  .hero h1 {
    font-size: clamp(40px, 12vw, 58px);
  }

  .hero-summary {
    font-size: 16px;
  }

  .hero-actions,
  .hero-actions .button {
    width: 100%;
  }

  .hero-principles {
    grid-template-columns: 1fr;
  }

  .hero-principles div + div {
    border-top: 1px solid var(--line);
  }

  .frame-labels {
    display: none;
  }

  .hero-product figcaption {
    margin-inline: 4px;
  }

  .trust-grid {
    grid-template-columns: 1fr 1fr;
  }

  .trust-grid p,
  .trust-grid p:first-child {
    border: 0;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  .split-heading h2,
  .section-heading h2,
  .product-heading h2,
  .experience-copy h2,
  .governance-copy h2,
  .planning-card h2,
  .about-grid h2,
  .contact-copy h2 {
    font-size: clamp(34px, 10vw, 50px);
  }

  .operating-loop {
    grid-template-columns: 1fr;
  }

  .operating-loop li {
    min-height: 220px;
  }

  .capability-grid,
  .planning-grid,
  .field-grid {
    grid-template-columns: 1fr;
  }

  .capability-featured {
    grid-column: auto;
    display: block;
  }

  .capability-featured .card-number {
    margin-bottom: 52px;
  }

  .capability-featured dl {
    margin-top: 30px;
  }

  .planning-card {
    min-height: auto;
  }

  .gallery-caption {
    grid-template-columns: 34px 1fr;
  }

  .gallery-caption .text-button {
    grid-column: 2;
    justify-self: start;
  }

  .gallery-tabs {
    grid-template-columns: 1fr;
  }

  .gallery-tabs button {
    min-height: 52px;
    border-right: 0;
    text-align: left;
  }

  .governance-list article {
    grid-template-columns: 40px minmax(0, 1fr);
  }

  .form-heading,
  .form-footer,
  .footer-main,
  .footer-bottom,
  .cookie-summary,
  .cookie-dialog-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .form-footer .button,
  .cookie-actions,
  .cookie-actions .button,
  .cookie-dialog-actions .button {
    width: 100%;
  }

  .cookie-actions {
    display: grid;
  }

  .footer-main {
    padding-block: 36px;
  }

  .footer-main nav {
    justify-content: flex-start;
  }

  .legal-hero {
    padding-top: 76px;
  }

  .legal-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .company-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .catalog-sidebar {
    position: static;
  }

  .integration-summary,
  .integration-summary .integration-exchange,
  .integration-vendors,
  .platform-list-columns {
    grid-template-columns: 1fr;
  }

  .integration-summary .integration-exchange,
  .integration-vendor-wide {
    grid-column: auto;
  }

  .integration-exchange > div + div {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .catalog-cta {
    align-items: flex-start;
    flex-direction: column;
  }

  .legal-nav {
    position: static;
  }

  .operating-relationship {
    grid-template-columns: 1fr;
  }

  .operating-relationship > div {
    min-height: 0;
  }

  .operating-relationship > div + div {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .cookie-notice {
    right: 10px;
    bottom: 10px;
    left: 10px;
  }
}

@media (min-width: 1101px) {
  :root {
    --shell: 1360px;
    --header-height: 63px;
  }

  .shell {
    width: min(var(--shell), calc(85% - 54px));
  }

  .header-inner {
    gap: 27px;
  }

  .brand {
    gap: 9px;
  }

  .brand img {
    width: 31px;
    height: auto;
  }

  .footer-brand img {
    width: 29px;
  }

  .brand-word {
    font-size: 16px;
  }

  .primary-nav {
    gap: clamp(14px, 1.15vw, 22px);
  }

  .primary-nav > a:not(.button),
  .nav-disclosure summary,
  .theme-button {
    font-size: 13px;
  }

  .theme-button {
    min-width: 48px;
    padding: 8px 10px;
  }

  .button {
    min-height: 40px;
    padding: 9px 15px;
  }

  .nav-contact {
    min-height: 36px;
    padding-inline: 14px;
  }

  .hero {
    padding-top: calc(var(--header-height) + 24px);
    padding-bottom: 24px;
    background-size: 54px 54px, 54px 54px, auto;
  }

  .hero-grid {
    width: calc(85% - 41px);
    max-width: none;
    min-height: calc(100svh - var(--header-height) - 48px);
    grid-template-columns: minmax(315px, 0.72fr) minmax(0, 1.28fr);
    gap: clamp(31px, 2.55vw, 54px);
  }

  .eyebrow {
    margin-bottom: 20px;
  }

  .hero h1 {
    max-width: 544px;
    margin-bottom: 19px;
    font-size: clamp(36px, 2.68vw, 51px);
  }

  .hero-summary {
    max-width: 527px;
    font-size: 15px;
  }

  .hero-actions {
    gap: 10px;
    margin-top: 22px;
  }

  .hero-principles {
    max-width: 527px;
    margin-top: 26px;
  }

  .hero-principles div {
    padding: 10px 12px;
  }

  .frame-labels {
    padding: 10px 14px;
    font-size: 11px;
  }

  .hero-product figcaption,
  .experience-visual figcaption {
    max-width: 612px;
    margin: 12px 14px 0;
    font-size: 12px;
  }

  .trust-grid p {
    padding: 15px 17px;
  }

  .section {
    padding-block: 95px;
  }

  .experience-section {
    padding-top: calc(var(--header-height) + 29px);
    padding-bottom: 29px;
  }

  .experience-grid {
    min-height: calc(100svh - var(--header-height) - 58px);
    grid-template-columns: minmax(280px, 0.62fr) minmax(0, 1.38fr);
    gap: clamp(36px, 4.25vw, 71px);
  }

  .experience-grid-reverse {
    grid-template-columns: minmax(0, 1.38fr) minmax(280px, 0.62fr);
  }

  .experience-copy h2 {
    max-width: 552px;
    margin-bottom: 20px;
    font-size: clamp(31px, 2.64vw, 46px);
  }

  .experience-copy > p:not(.eyebrow) {
    max-width: 552px;
    margin-bottom: 13px;
    font-size: 15px;
  }

  .section-action {
    margin-top: 14px;
  }

  .point-list {
    margin-top: 20px;
  }

  .point-list article {
    grid-template-columns: 31px minmax(0, 1fr);
    gap: 12px;
    padding-block: 14px;
  }

  .point-list h3 {
    font-size: 16px;
  }

  .split-heading,
  .about-grid {
    grid-template-columns: minmax(0, 0.95fr) minmax(357px, 0.75fr);
    gap: clamp(51px, 7.65vw, 128px);
  }

  .split-heading h2,
  .section-heading h2,
  .product-heading h2,
  .governance-copy h2,
  .planning-card h2,
  .about-grid h2,
  .contact-copy h2 {
    max-width: 765px;
    font-size: clamp(32px, 3.57vw, 56px);
  }

  .section-intro {
    padding-top: 37px;
  }

  .section-intro p,
  .product-heading > p,
  .governance-copy > p,
  .planning-card > p,
  .about-grid > div:last-child > p,
  .contact-copy > p,
  .company-intro > p:last-child,
  .catalog-intro > p:last-child,
  .catalog-cta > div > p:last-child,
  .accountability-note > p {
    font-size: 16px;
  }

  .integration-summary > article {
    min-height: 187px;
    padding: 24px;
  }

  .integration-summary h3 {
    margin-top: 41px;
    font-size: 20px;
  }

  .integration-exchange > div {
    padding: 20px 24px;
  }

  .governance-grid {
    grid-template-columns: minmax(306px, 0.7fr) minmax(510px, 1.1fr);
    gap: clamp(60px, 7.65vw, 128px);
  }

  .governance-list article {
    grid-template-columns: 51px minmax(0, 1fr);
    gap: 19px;
    padding-block: 26px;
  }

  .company-layout {
    grid-template-columns: 213px minmax(0, 952px);
    gap: 68px;
    padding-top: 60px;
    padding-bottom: 102px;
  }

  .company-intro {
    max-width: 799px;
    margin-bottom: 41px;
  }

  .company-intro h2,
  .catalog-intro h2,
  .catalog-cta h2,
  .accountability-note h2 {
    margin-bottom: 17px;
    font-size: clamp(31px, 3.4vw, 51px);
  }

  .catalog-intro {
    max-width: 782px;
    margin-bottom: 41px;
  }

  .integration-vendors {
    gap: 15px;
  }

  .integration-vendor {
    padding: 24px;
  }

  .vendor-heading {
    padding-bottom: 15px;
  }

  .vendor-heading h2 {
    font-size: 21px;
  }

  .platform-list li {
    padding-block: 8px;
  }

  .catalog-cta {
    gap: 41px;
    margin-top: 61px;
    padding-top: 44px;
  }

  .company-cards {
    gap: 15px;
  }

  .company-cards > article {
    min-height: 459px;
    padding: clamp(24px, 2.55vw, 37px);
  }

  .company-card-heading {
    margin-bottom: 36px;
    padding-bottom: 12px;
  }

  .company-cards h2 {
    margin-bottom: 15px;
    font-size: clamp(29px, 2.89vw, 44px);
  }

  .company-cards ul {
    margin: 24px 0 29px;
  }

  .operating-relationship > div {
    min-height: 196px;
    padding: 24px;
  }

  .operating-relationship h3 {
    margin-top: 36px;
    font-size: 19px;
  }

  .accountability-note {
    margin-top: 61px;
    padding-top: 44px;
  }

  .contact-section {
    padding-bottom: 109px;
  }

  .contact-grid {
    grid-template-columns: minmax(323px, 0.7fr) minmax(527px, 1fr);
    gap: clamp(51px, 6.8vw, 111px);
  }

  .contact-copy > p {
    margin: 24px 0 31px;
  }

  .contact-form {
    padding: clamp(24px, 3.4vw, 43px);
  }

  .form-heading {
    margin-bottom: 29px;
    padding-bottom: 15px;
  }

  .field-grid {
    gap: 19px 15px;
  }

  .contact-form input,
  .contact-form select,
  .contact-form textarea {
    min-height: 44px;
    padding: 10px 12px;
  }

  .contact-form textarea {
    min-height: 128px;
  }

  .full-field,
  .consent-field {
    margin-top: 19px;
  }

  .form-footer {
    margin-top: 26px;
    padding-top: 20px;
  }

  .footer-main {
    min-height: 99px;
    gap: 34px;
  }

  .footer-bottom {
    gap: 26px;
    padding-block: 19px;
  }

  .legal-hero {
    padding-top: 94px;
    padding-bottom: 60px;
  }

  .legal-hero h1 {
    margin-bottom: 17px;
    font-size: clamp(43px, 5.95vw, 77px);
  }

  .legal-hero > p:last-child {
    font-size: 17px;
  }

  .legal-layout {
    grid-template-columns: 213px minmax(0, 680px);
    gap: 68px;
    padding-top: 60px;
    padding-bottom: 102px;
  }

  .legal-content section {
    margin-bottom: 44px;
  }

  .legal-content h2 {
    margin-bottom: 12px;
    font-size: 24px;
  }

  .cookie-summary {
    width: min(884px, 100%);
    gap: 29px;
    padding: 17px 19px;
  }

  .cookie-dialog {
    width: min(595px, calc(100% - 30px));
  }

  .image-dialog {
    width: min(80vw, 1496px);
    max-height: 80vh;
  }

  .dialog-image-stage > img {
    max-height: calc(80vh - 62px);
  }
}

@media (min-width: 1101px) and (min-height: 800px) {
  html:not(.legal-route) .section.snap-section {
    padding-top: calc(var(--header-height) + 29px);
    padding-bottom: 29px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
