:root {
  --ink: #121801;
  --forest: #153f28;
  --forest-deep: #0d2f1d;
  --forest-soft: #24593a;
  --lime: #c2e46c;
  --lime-bright: #d4ef88;
  --lime-soft: #eff8dc;
  --wash: #f8faf5;
  --paper: #ffffff;
  --line: #e4eae1;
  --muted: #667064;
  --muted-dark: #526057;
  --shadow: 0 28px 80px rgba(21, 63, 40, 0.13);
  --radius-lg: 28px;
  --radius-md: 18px;
  --shell: min(1180px, calc(100% - 48px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Geist", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
}

svg {
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.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;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  color: var(--paper);
  background: var(--forest);
  border-radius: 10px;
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

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

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 0;
  width: 100%;
}

.nav-shell {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand-logo {
  width: 168px;
  height: auto;
  display: block;
}

.primary-navigation {
  display: flex;
  align-items: center;
  gap: 26px;
}

.primary-navigation a {
  position: relative;
  color: #3f4b41;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}

.primary-navigation a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background: var(--forest);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.primary-navigation a:hover::after,
.primary-navigation a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.language-switch {
  display: inline-flex;
  gap: 2px;
  padding: 3px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid #d5ddd2;
  border-radius: 10px;
}

.language-switch button {
  min-width: 34px;
  height: 29px;
  padding: 0 8px;
  color: var(--muted-dark);
  background: transparent;
  border: 0;
  border-radius: 7px;
  font: inherit;
  font-size: 10px;
  font-weight: 800;
  cursor: pointer;
}

.language-switch button[aria-pressed="true"] {
  color: var(--paper);
  background: var(--forest);
}

.language-switch button:focus-visible {
  outline: 3px solid rgba(194, 228, 108, 0.9);
  outline-offset: 3px;
}

.menu-button {
  display: none;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 164px 0 102px;
  background:
    radial-gradient(circle at 92% 14%, rgba(194, 228, 108, 0.24), transparent 31%),
    linear-gradient(180deg, #fbfcf8 0%, var(--wash) 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.28;
  background-image: linear-gradient(rgba(21, 63, 40, 0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(21, 63, 40, 0.05) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(90deg, transparent 0%, #000 65%, #000 100%);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(500px, 1.06fr);
  gap: 72px;
  align-items: center;
}

.hero-copy {
  padding-bottom: 12px;
}

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

h1,
h2 {
  font-family: "Open Sauce One", "Geist", sans-serif;
  letter-spacing: -0.055em;
}

h1 {
  max-width: 660px;
  margin-bottom: 25px;
  color: var(--forest-deep);
  font-size: clamp(48px, 5.2vw, 72px);
  line-height: 0.99;
}

.hero-lede {
  max-width: 620px;
  margin-bottom: 34px;
  color: var(--muted-dark);
  font-size: 18px;
  line-height: 1.65;
}

.button-row,
.closing-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

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

.button:focus-visible,
.flow-tab:focus-visible,
.menu-button:focus-visible,
.primary-navigation a:focus-visible {
  outline: 3px solid rgba(194, 228, 108, 0.9);
  outline-offset: 4px;
}

.button svg {
  width: 18px;
  height: 18px;
  transition: transform 160ms ease;
}

.button:hover svg {
  transform: translateX(2px);
}

.button-primary {
  color: var(--paper);
  background: var(--forest);
  box-shadow: 0 12px 24px rgba(21, 63, 40, 0.18);
}

.button-primary:hover {
  background: var(--forest-deep);
  box-shadow: 0 15px 30px rgba(21, 63, 40, 0.24);
}

.button-secondary {
  color: var(--forest);
  background: rgba(255, 255, 255, 0.7);
  border-color: #cfd8cd;
}

.status-line {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
}

.status-line > span {
  width: 8px;
  height: 8px;
  background: var(--lime);
  border: 2px solid var(--forest);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(194, 228, 108, 0.25);
}

.hero-product {
  position: relative;
}

.hero-product::before,
.hero-product::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.hero-product::before {
  top: -42px;
  right: -26px;
  width: 140px;
  height: 140px;
  background: var(--lime);
  opacity: 0.58;
}

.hero-product::after {
  bottom: -28px;
  left: -34px;
  width: 94px;
  height: 94px;
  border: 22px solid rgba(21, 63, 40, 0.08);
}

.product-window {
  position: relative;
  z-index: 1;
  overflow: hidden;
  background: var(--paper);
  border: 1px solid rgba(21, 63, 40, 0.12);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  transform: rotate(1deg);
}

.window-bar {
  min-height: 52px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 18px;
  color: #6e796f;
  background: #f4f6f1;
  border-bottom: 1px solid var(--line);
  font-size: 11px;
  font-weight: 600;
}

.window-dots {
  display: flex;
  gap: 6px;
}

.window-dots i {
  width: 8px;
  height: 8px;
  display: block;
  background: #cbd3c8;
  border-radius: 50%;
}

.prototype-pill {
  justify-self: end;
  padding: 5px 8px;
  color: var(--forest);
  background: var(--lime-soft);
  border-radius: 999px;
}

.product-content {
  padding: 28px;
}

.plan-header,
.meal-card,
.handoff-card,
.list-summary,
.data-card-heading,
.gateway-note {
  display: flex;
  align-items: center;
}

.plan-header {
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 19px;
}

.plan-header > div {
  display: grid;
  gap: 5px;
}

.ui-kicker {
  color: #7b857b;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.plan-header strong {
  color: var(--forest-deep);
  font-family: "Open Sauce One", "Geist", sans-serif;
  font-size: 20px;
  letter-spacing: -0.03em;
}

.approved-chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 7px 10px;
  color: var(--forest);
  background: var(--lime-soft);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
}

.approved-chip svg {
  width: 14px;
  height: 14px;
  stroke-width: 2.4;
}

.meal-stack {
  display: grid;
  gap: 9px;
}

.preference-line {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: -5px 0 16px;
  padding: 8px 11px;
  color: var(--forest);
  background: var(--lime-soft);
  border: 1px solid #dceabc;
  border-radius: 10px;
  font-size: 10px;
  font-weight: 700;
}

.preference-line svg {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  stroke-width: 2;
}

.meal-card {
  min-height: 68px;
  gap: 12px;
  padding: 10px 12px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 14px;
}

.meal-icon {
  flex: 0 0 auto;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  color: var(--forest);
  border-radius: 12px;
}

.meal-icon svg {
  width: 26px;
  height: 26px;
}

.meal-icon-one { background: #edf5da; }
.meal-icon-two { background: #e1f1e5; }
.meal-icon-three { background: #f2ecdb; }

.meal-card > div {
  min-width: 0;
  display: grid;
  flex: 1;
  gap: 4px;
}

.meal-card strong,
.list-summary strong,
.provider-summary strong {
  color: var(--forest-deep);
  font-size: 13px;
}

.meal-card small,
.list-summary small,
.provider-summary span {
  color: #7a847a;
  font-size: 10px;
}

.meal-check {
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  color: var(--forest);
  background: var(--lime);
  border-radius: 50%;
  font-size: 11px;
  font-weight: 800;
}

.handoff-card {
  justify-content: space-between;
  gap: 14px;
  margin-top: 17px;
  padding: 15px;
  background: var(--forest);
  border-radius: 16px;
}

.list-summary {
  gap: 10px;
}

.list-summary > div,
.provider-summary {
  display: grid;
  gap: 3px;
}

.list-summary strong,
.provider-summary strong {
  color: var(--paper);
}

.list-summary small,
.provider-summary span {
  color: #bac9bc;
}

.list-icon {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: var(--forest);
  background: var(--lime);
  border-radius: 10px;
}

.list-icon svg {
  width: 20px;
  height: 20px;
  stroke-width: 2;
}

.handoff-arrow {
  width: 26px;
  height: 26px;
  color: var(--lime);
}

.provider-summary {
  text-align: right;
}

.section {
  padding: 116px 0;
}

.section-heading {
  margin-bottom: 54px;
}

.section-heading h2,
.closing-card h2 {
  margin-bottom: 18px;
  color: var(--forest-deep);
  font-size: clamp(38px, 4.4vw, 58px);
  line-height: 1.03;
}

.section-heading > p,
.split-heading > p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

.section-label {
  margin-bottom: 15px;
  color: var(--forest-soft);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.flow-heading {
  max-width: 670px;
}

.flow-heading > p:last-child {
  max-width: 590px;
}

.flow-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.78fr) minmax(460px, 1.22fr);
  gap: 54px;
  align-items: stretch;
}

.flow-tabs {
  display: grid;
  gap: 7px;
}

.flow-tab {
  width: 100%;
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 15px;
  padding: 19px 18px;
  color: var(--muted-dark);
  text-align: left;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 15px;
  cursor: pointer;
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.flow-tab:hover {
  transform: translateX(3px);
}

.flow-tab > span:first-child {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  color: var(--forest);
  background: #eef2eb;
  border-radius: 50%;
  font-size: 11px;
  font-weight: 800;
}

.flow-tab > span:last-child {
  display: grid;
  gap: 5px;
}

.flow-tab strong {
  color: var(--forest-deep);
  font-size: 15px;
}

.flow-tab small {
  font-size: 12px;
  line-height: 1.45;
}

.flow-tab.is-active {
  background: var(--lime-soft);
  border-color: #d8e8b4;
}

.flow-tab.is-active > span:first-child {
  color: var(--paper);
  background: var(--forest);
}

.flow-preview {
  overflow: hidden;
  min-height: 490px;
  color: var(--paper);
  background: var(--forest);
  border-radius: var(--radius-lg);
  box-shadow: 0 26px 70px rgba(21, 63, 40, 0.16);
}

.preview-topline {
  display: flex;
  justify-content: space-between;
  padding: 18px 22px;
  color: #c6d1c7;
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
  font-size: 11px;
  font-weight: 600;
}

.preview-body {
  min-height: 435px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 48px clamp(28px, 5vw, 70px);
  background:
    radial-gradient(circle at 88% 18%, rgba(194, 228, 108, 0.14), transparent 31%),
    var(--forest);
}

.preview-icon {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  color: var(--forest);
  background: var(--lime);
  border-radius: 20px;
}

.preview-icon::before {
  content: "✓";
  font-size: 28px;
  font-weight: 800;
}

.preview-icon[data-state="list"]::before { content: "≡"; transform: rotate(90deg); }
.preview-icon[data-state="confirm"]::before { content: "→"; }
.preview-icon[data-state="continue"]::before { content: "↗"; }

.preview-body .ui-kicker {
  margin-bottom: 9px;
  color: var(--lime);
}

.preview-body h3 {
  max-width: 500px;
  margin-bottom: 13px;
  color: var(--paper);
  font-family: "Open Sauce One", "Geist", sans-serif;
  font-size: clamp(27px, 3vw, 38px);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.preview-body > p:not(.ui-kicker) {
  max-width: 520px;
  margin-bottom: 25px;
  color: #c7d1c8;
  font-size: 14px;
  line-height: 1.6;
}

.preview-checks {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 30px;
  padding: 0;
  list-style: none;
}

.preview-checks li {
  padding: 7px 10px;
  color: #dce5dd;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  font-size: 10px;
  font-weight: 600;
}

.preview-action {
  width: min(100%, 390px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 13px 16px;
  color: var(--forest);
  background: var(--lime);
  border-radius: 12px;
}

.preview-action span {
  color: rgba(21, 63, 40, 0.72);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.preview-action strong {
  font-size: 12px;
}

.section-safeguards {
  background: var(--wash);
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
  gap: 78px;
  align-items: end;
}

.split-heading h2 {
  max-width: 760px;
  margin-bottom: 0;
}

.split-heading > p {
  margin-bottom: 4px;
}

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

.data-card {
  padding: 30px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.data-card-sent {
  border-top: 5px solid var(--lime);
}

.data-card-private {
  border-top: 5px solid var(--forest);
}

.data-card-heading {
  gap: 14px;
  margin-bottom: 24px;
}

.data-symbol {
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--forest);
  background: var(--lime-soft);
  border-radius: 12px;
}

.data-card-private .data-symbol {
  color: var(--paper);
  background: var(--forest);
}

.data-symbol svg {
  width: 22px;
  height: 22px;
}

.data-card-heading > div {
  display: grid;
  gap: 3px;
}

.data-card-heading small {
  color: var(--muted);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.data-card h3 {
  margin: 0;
  color: var(--forest-deep);
  font-family: "Open Sauce One", "Geist", sans-serif;
  font-size: 22px;
  letter-spacing: -0.03em;
}

.data-card ul {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.data-card li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 15px 0;
  border-top: 1px solid var(--line);
}

.data-card li span {
  color: #29342c;
  font-size: 13px;
  font-weight: 600;
}

.data-card li small {
  color: #899188;
  font-size: 10px;
  text-align: right;
}

.gateway-note {
  gap: 16px;
  margin-top: 18px;
  padding: 18px 22px;
  background: var(--lime-soft);
  border: 1px solid #dceabc;
  border-radius: 15px;
}

.gateway-icon {
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  color: var(--lime);
  background: var(--forest);
  border-radius: 13px;
}

.gateway-icon svg {
  width: 25px;
  height: 25px;
}

.gateway-note > div {
  display: grid;
  flex: 1;
  gap: 3px;
}

.gateway-note strong {
  color: var(--forest-deep);
  font-size: 13px;
}

.gateway-note p {
  margin: 0;
  color: var(--muted-dark);
  font-size: 11px;
}

.gateway-tag {
  padding: 7px 10px;
  color: var(--forest);
  background: var(--paper);
  border-radius: 999px;
  font-size: 9px;
  font-weight: 700;
  white-space: nowrap;
}

.section-technical {
  color: var(--paper);
  background: var(--forest-deep);
}

.section-label-light {
  color: var(--lime);
}

.technical-heading h2 {
  color: var(--paper);
}

.technical-heading > p {
  color: #b8c6bc;
}

.architecture {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  gap: 12px;
  align-items: center;
}

.architecture-node {
  min-height: 194px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 23px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 17px;
}

.architecture-node-focus {
  color: var(--forest-deep);
  background: var(--lime);
  border-color: var(--lime);
}

.architecture-number {
  display: inline-flex;
  margin-bottom: auto;
  color: var(--lime);
  font-size: 10px;
  font-weight: 800;
}

.architecture-node-focus .architecture-number {
  color: var(--forest);
}

.architecture-node small {
  margin-bottom: 7px;
  color: #aebdb2;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.architecture-node-focus small,
.architecture-node-focus p {
  color: rgba(21, 63, 40, 0.7);
}

.architecture-node strong {
  min-height: 38px;
  margin-bottom: 9px;
  font-size: 14px;
  line-height: 1.3;
}

.architecture-node p {
  margin: 0;
  color: #aebdb2;
  font-size: 10px;
  line-height: 1.45;
}

.architecture-arrow {
  color: var(--lime);
  font-size: 21px;
}

.technical-notes {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 42px;
}

.technical-notes > div {
  display: grid;
  grid-template-columns: 29px 1fr;
  gap: 10px;
}

.technical-notes span {
  width: 27px;
  height: 27px;
  display: grid;
  place-items: center;
  color: var(--forest);
  background: var(--lime);
  border-radius: 50%;
  font-size: 9px;
  font-weight: 800;
}

.technical-notes p {
  margin: 0;
  color: #aebdb2;
  font-size: 10px;
  line-height: 1.5;
}

.technical-notes strong {
  display: block;
  margin-bottom: 3px;
  color: var(--paper);
  font-size: 11px;
}

.section-pilot {
  background: var(--paper);
}

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

.validation-card {
  padding: 28px;
  background: var(--wash);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.validation-label {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 6px 9px;
  color: var(--muted-dark);
  background: #e9eee7;
  border-radius: 999px;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.validation-label-confirmed {
  color: var(--forest);
  background: var(--lime);
}

.validation-card ul {
  display: grid;
  gap: 13px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.validation-card li {
  position: relative;
  padding-left: 25px;
  color: #38443c;
  font-size: 13px;
}

.validation-card li::before {
  content: "";
  position: absolute;
  top: 3px;
  left: 0;
  width: 13px;
  height: 13px;
  background: var(--lime-soft);
  border: 1px solid var(--forest);
  border-radius: 50%;
  box-shadow: inset 0 0 0 3px var(--lime-soft);
}

.validation-card:first-child li::before {
  background: var(--forest);
  box-shadow: inset 0 0 0 3px var(--lime);
}

.pilot-rail {
  display: grid;
  grid-template-columns: 1fr 60px 1fr 60px 1fr;
  gap: 16px;
  align-items: center;
  margin-top: 38px;
  padding: 28px;
  background: var(--lime-soft);
  border-radius: var(--radius-md);
}

.pilot-rail > div {
  display: grid;
  grid-template-columns: 36px 1fr;
  column-gap: 11px;
}

.pilot-rail > div span {
  grid-row: 1 / 3;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: var(--paper);
  background: var(--forest);
  border-radius: 10px;
  font-size: 10px;
  font-weight: 800;
}

.pilot-rail strong {
  color: var(--forest-deep);
  font-size: 13px;
}

.pilot-rail small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 9px;
  line-height: 1.4;
}

.pilot-rail > i {
  height: 1px;
  display: block;
  background: #bed191;
}

.closing-section {
  padding: 0 0 36px;
  background: var(--paper);
}

.closing-card {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) auto;
  gap: 60px;
  align-items: end;
  padding: 58px;
  color: var(--paper);
  background:
    radial-gradient(circle at 90% 0%, rgba(194, 228, 108, 0.18), transparent 34%),
    var(--forest);
  border-radius: var(--radius-lg);
}

.closing-card h2 {
  max-width: 720px;
  color: var(--paper);
  font-size: clamp(36px, 4vw, 52px);
}

.closing-card > div:first-child > p:last-child {
  max-width: 680px;
  margin-bottom: 0;
  color: #c1cec4;
  font-size: 14px;
  line-height: 1.6;
}

.closing-actions {
  flex-direction: column;
  min-width: 225px;
}

.button-lime {
  color: var(--forest-deep);
  background: var(--lime);
}

.button-lime:hover {
  background: var(--lime-bright);
}

.button-outline {
  color: var(--paper);
  border-color: rgba(255, 255, 255, 0.28);
}

.button-outline:hover {
  background: rgba(255, 255, 255, 0.08);
}

.site-footer {
  padding: 21px 0;
  color: #98a59b;
  background: var(--forest-deep);
  font-size: 10px;
}

.footer-shell {
  display: flex;
  justify-content: space-between;
  gap: 24px;
}

@media (max-width: 1040px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 62px;
  }

  .hero-copy {
    max-width: 760px;
  }

  .hero-product {
    width: min(720px, 100%);
    margin-inline: auto;
  }

  .flow-layout,
  .split-heading {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .split-heading > p {
    max-width: 690px;
  }

  .architecture {
    grid-template-columns: repeat(2, 1fr);
  }

  .architecture-arrow {
    display: none;
  }

  .technical-notes {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .pilot-rail > i {
    display: none;
  }

  .closing-card {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .closing-actions {
    flex-direction: row;
  }
}

@media (max-width: 760px) {
  :root {
    --shell: min(100% - 32px, 1180px);
  }

  .site-header {
    position: absolute;
  }

  .nav-shell {
    min-height: 72px;
  }

  .menu-button {
    width: 44px;
    height: 44px;
    display: grid;
    place-content: center;
    gap: 6px;
    padding: 0;
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid var(--line);
    border-radius: 12px;
  }

  .menu-button span:not(.sr-only) {
    width: 18px;
    height: 2px;
    display: block;
    background: var(--forest);
    border-radius: 99px;
    transition: transform 160ms ease;
  }

  .menu-button[aria-expanded="true"] span:not(.sr-only):nth-of-type(2) {
    transform: translateY(4px) rotate(45deg);
  }

  .menu-button[aria-expanded="true"] span:not(.sr-only):nth-of-type(3) {
    transform: translateY(-4px) rotate(-45deg);
  }

  .primary-navigation {
    position: absolute;
    top: 66px;
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 9px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid var(--line);
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(21, 63, 40, 0.14);
  }

  .primary-navigation.is-open {
    display: flex;
  }

  .primary-navigation a {
    padding: 13px 12px;
  }

  .language-switch {
    margin: 7px 8px 8px;
  }

  .language-switch button {
    flex: 1;
    min-height: 36px;
  }

  .primary-navigation a::after {
    display: none;
  }

  .hero {
    padding: 125px 0 76px;
  }

  .brand-logo {
    width: 148px;
  }

  h1 {
    font-size: clamp(43px, 13vw, 58px);
  }

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

  .button-row .button {
    width: 100%;
  }

  .status-line {
    align-items: flex-start;
    line-height: 1.4;
  }

  .status-line > span {
    margin-top: 4px;
  }

  .product-content {
    padding: 19px;
  }

  .product-window {
    transform: none;
    border-radius: 22px;
  }

  .plan-header {
    align-items: flex-start;
  }

  .plan-header strong {
    font-size: 17px;
  }

  .meal-card {
    min-height: 62px;
  }

  .meal-icon {
    width: 40px;
    height: 40px;
  }

  .meal-card small {
    display: none;
  }

  .handoff-card {
    display: grid;
    grid-template-columns: 1fr auto;
  }

  .handoff-arrow {
    display: none;
  }

  .provider-summary {
    grid-column: 1 / -1;
    padding-top: 12px;
    text-align: left;
    border-top: 1px solid rgba(255, 255, 255, 0.13);
  }

  .section {
    padding: 82px 0;
  }

  .section-heading {
    margin-bottom: 38px;
  }

  .flow-layout {
    gap: 26px;
  }

  .flow-tab {
    padding: 15px 12px;
  }

  .flow-preview {
    min-height: 460px;
    border-radius: 22px;
  }

  .preview-body {
    min-height: 405px;
    padding: 34px 24px;
  }

  .preview-action {
    align-items: flex-start;
    flex-direction: column;
  }

  .data-grid,
  .validation-grid,
  .technical-notes,
  .architecture,
  .pilot-rail {
    grid-template-columns: 1fr;
  }

  .data-card {
    padding: 23px 20px;
  }

  .data-card li {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .data-card li small {
    text-align: left;
  }

  .gateway-note {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .gateway-note > div {
    flex-basis: calc(100% - 64px);
  }

  .gateway-tag {
    margin-left: 60px;
  }

  .architecture-node {
    min-height: 176px;
  }

  .pilot-rail {
    gap: 22px;
  }

  .closing-section {
    padding-bottom: 20px;
  }

  .closing-card {
    padding: 38px 24px;
    border-radius: 22px;
  }

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

  .footer-shell {
    flex-direction: column;
    gap: 8px;
  }
}

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

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