:root {
  --ink: #171a18;
  --ink-soft: #4d554f;
  --paper: #f5f7f3;
  --white: #ffffff;
  --line: #d8ded7;
  --deep: #111513;
  --green: #0f6651;
  --green-dark: #0d493d;
  --mint: #dff1e9;
  --mint-soft: #edf5f0;
  --gold: #c59645;
  --gold-light: #e7c786;
  --clay: #9a5039;
  --max: 1180px;
  --radius: 8px;
  --shadow: 0 18px 50px rgba(17, 21, 19, 0.09);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 84px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.56;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

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

button {
  font: inherit;
}

:focus-visible {
  outline: 3px solid var(--gold-light);
  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;
  left: 1rem;
  top: 1rem;
  z-index: 100;
  transform: translateY(-180%);
  padding: 0.75rem 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  background: var(--white);
}

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  padding: 14px 40px;
  color: var(--white);
  background: rgba(17, 21, 19, 0.18);
  border-bottom: 1px solid transparent;
  transition: background-color 180ms ease, border-color 180ms ease, min-height 180ms ease;
}

.site-header.is-scrolled,
.site-header.menu-visible {
  min-height: 68px;
  background: rgba(17, 21, 19, 0.96);
  border-color: rgba(255, 255, 255, 0.12);
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.72rem;
  min-width: 0;
  font-weight: 700;
}

.brand-mark {
  display: grid;
  place-items: center;
  flex: 0 0 38px;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 50%;
  color: #fbf5e8;
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.78rem;
}

.header-tools,
.nav-links,
.language-switch {
  display: flex;
  align-items: center;
}

.header-tools {
  gap: 1.5rem;
}

.nav-links {
  gap: 1.4rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.9rem;
}

.nav-links a {
  padding: 0.62rem 0;
  border-bottom: 1px solid transparent;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.62);
}

.language-switch {
  overflow: hidden;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.06);
}

.language-switch button {
  width: 42px;
  height: 32px;
  padding: 0;
  border: 0;
  color: rgba(255, 255, 255, 0.7);
  background: transparent;
  cursor: pointer;
  font-size: 0.76rem;
  font-weight: 700;
}

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

.menu-toggle {
  display: none;
  place-items: center;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 6px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
  cursor: pointer;
}

.menu-lines {
  display: grid;
  gap: 6px;
  width: 18px;
}

.menu-lines span {
  display: block;
  width: 18px;
  height: 1px;
  background: currentColor;
  transition: transform 180ms ease;
}

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

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

.hero {
  position: relative;
  min-height: 88svh;
  overflow: hidden;
  display: flex;
  align-items: center;
  isolation: isolate;
  color: var(--white);
  background: var(--deep);
}

#corridor-canvas,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

#corridor-canvas {
  z-index: -3;
}

.hero-shade {
  z-index: -2;
  background: linear-gradient(90deg, rgba(17, 21, 19, 0.96) 0%, rgba(17, 21, 19, 0.82) 44%, rgba(17, 21, 19, 0.36) 100%);
}

.hero-content {
  width: min(820px, calc(100% - 48px));
  margin-left: max(24px, calc((100vw - var(--max)) / 2));
  padding: 112px 0 86px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 0.85rem;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0;
}

.hero h1,
.section h2,
.positioning-band h2,
.contact-band h2 {
  margin: 0;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 10ch;
  font-size: 96px;
  line-height: 0.94;
  font-weight: 700;
}

.hero-lede {
  max-width: 680px;
  margin: 1.45rem 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.25rem;
  line-height: 1.48;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.62rem;
  min-height: 48px;
  padding: 0.82rem 1.08rem;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 700;
  line-height: 1.15;
  transition: transform 160ms ease, border-color 160ms ease, background-color 160ms ease;
}

.button.primary {
  color: #10382e;
  background: var(--mint);
}

.button.secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.07);
}

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

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: 820px;
  margin: 2.25rem 0 0;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.12);
}

.hero-metrics div {
  min-width: 0;
  padding: 1rem;
  background: rgba(17, 21, 19, 0.58);
}

.hero-metrics dt {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0;
}

.hero-metrics dd {
  margin: 0.34rem 0 0;
  color: var(--white);
  font-weight: 700;
}

.hero-scroll {
  position: absolute;
  right: 40px;
  bottom: 28px;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.82rem;
}

.positioning-band {
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.positioning-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(360px, 1fr);
  gap: 4.5rem;
  padding: 72px 0;
  align-items: start;
}

.positioning-band h2,
.section h2,
.contact-band h2 {
  max-width: 820px;
  font-size: 54px;
  line-height: 1.04;
}

.positioning-copy > p:first-child {
  margin: 0;
  color: var(--ink-soft);
  font-size: 1.12rem;
}

.status-line {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin: 1.5rem 0 0;
  color: var(--green-dark);
  font-size: 0.92rem;
}

.status-line > span:first-child {
  width: 9px;
  height: 9px;
  margin-right: 0.25rem;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(15, 102, 81, 0.12);
}

.field-section {
  background: #e9eee9;
}

.field-layout {
  display: grid;
  grid-template-columns: minmax(440px, 1.18fr) minmax(340px, 0.82fr);
  gap: 4.5rem;
  align-items: center;
}

.field-visual {
  position: relative;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border-radius: 4px;
  background: #dce3dd;
}

.field-visual img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.field-visual-wide img {
  aspect-ratio: 16 / 9;
}

.field-visual-wide {
  width: 100%;
  max-width: 540px;
  justify-self: center;
}

.field-visual > figcaption {
  display: grid;
  gap: 0.2rem;
  min-height: 58px;
  padding: 0.82rem 0.95rem;
  color: rgba(255, 255, 255, 0.78);
  background: var(--deep);
  font-size: 0.76rem;
}

.field-visual > figcaption span {
  color: var(--white);
  font-size: 0.92rem;
  font-weight: 700;
}

.field-visual > figcaption small {
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.76rem;
}

.field-copy h2 {
  font-size: 42px;
  line-height: 1.08;
}

.field-intro {
  margin: 1.4rem 0 0;
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.friction-list {
  display: grid;
  margin-top: 2rem;
  border-top: 1px solid #c7d0c8;
}

.friction-list article {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 0.85rem;
  padding: 1rem 0;
  border-bottom: 1px solid #c7d0c8;
}

.friction-list article > span {
  color: var(--clay);
  font-size: 0.72rem;
  font-weight: 700;
}

.friction-list strong {
  color: var(--green-dark);
}

.friction-list p {
  margin: 0.22rem 0 0;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.audience-band {
  padding: 68px 0;
  color: var(--white);
  background: #173b34;
  border-block: 1px solid rgba(255, 255, 255, 0.12);
}

.audience-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.78fr) minmax(480px, 1.22fr);
  gap: 4.5rem;
  align-items: end;
}

.audience-band .section-kicker {
  color: var(--gold-light);
}

.audience-band h2 {
  max-width: 560px;
  margin: 0;
  font-size: 32px;
  line-height: 1.16;
}

.audience-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.audience-list span {
  display: flex;
  align-items: center;
  min-height: 74px;
  padding: 0.85rem;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.9rem;
  font-weight: 700;
}

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

.section-heading > p,
.contact-layout > div > p {
  color: var(--ink-soft);
  font-size: 1.04rem;
}

.section-heading.wide {
  max-width: 900px;
  margin-bottom: 3rem;
}

.section-heading.wide > p:last-child {
  max-width: 760px;
}

.flow-section {
  background: var(--mint-soft);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.feature-card {
  min-height: 260px;
  padding: 1.35rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow);
}

.feature-number {
  color: var(--clay);
  font-size: 0.78rem;
  font-weight: 700;
}

.feature-card h3,
.architecture-layer h3,
.principles-list h3,
.not-list h3 {
  margin: 1.15rem 0 0.66rem;
  font-size: 1.17rem;
  line-height: 1.26;
}

.feature-card p,
.architecture-layer p,
.principles-list p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.scenario-section {
  background: var(--white);
}

.scenario-heading {
  display: grid;
  grid-template-columns: minmax(360px, 1.05fr) minmax(300px, 0.75fr);
  gap: 4rem;
  align-items: end;
  margin-bottom: 3rem;
}

.scenario-heading > p {
  margin: 0 0 0.3rem;
}

.flow-journey {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  list-style: none;
  border-block: 1px solid var(--line);
}

.flow-journey li {
  position: relative;
  min-height: 236px;
  padding: 1.2rem 1rem 1.15rem;
  border-right: 1px solid var(--line);
}

.flow-journey li:last-child {
  border-right: 0;
}

.flow-journey li::after {
  position: absolute;
  top: 2.15rem;
  right: -4px;
  z-index: 2;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  content: "";
}

.flow-journey li:last-child::after {
  display: none;
}

.flow-journey span,
.flow-journey strong,
.flow-journey p {
  display: block;
}

.flow-journey span {
  margin-bottom: 2.5rem;
  color: var(--clay);
  font-size: 0.72rem;
  font-weight: 700;
}

.flow-journey strong {
  min-height: 2.7em;
  color: var(--green-dark);
  line-height: 1.3;
}

.flow-journey p {
  margin: 0.65rem 0 0;
  color: var(--ink-soft);
  font-size: 0.86rem;
}

.scenario-media {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
  width: 100%;
  max-width: 780px;
  margin: 2.5rem auto 0;
}

.scenario-media .field-visual img {
  aspect-ratio: 4 / 3;
}

.process-section {
  background: var(--white);
}

.process-heading,
.architecture-heading {
  display: grid;
  grid-template-columns: minmax(320px, 1.15fr) minmax(280px, 0.7fr);
  gap: 4rem;
  align-items: end;
  margin-bottom: 3rem;
}

.process-heading > p,
.architecture-heading > p {
  margin: 0 0 0.3rem;
}

.process {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  list-style: none;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--paper);
}

.process-step {
  min-height: 210px;
  padding: 1.2rem;
  border-right: 1px solid var(--line);
}

.process-step:last-child {
  border-right: 0;
}

.step-index {
  display: block;
  margin-bottom: 2.35rem;
  color: var(--clay);
  font-size: 0.75rem;
  font-weight: 700;
}

.process-step strong {
  display: block;
  color: var(--green-dark);
}

.process-step p {
  margin: 0.6rem 0 0;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

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

.corridor-layout,
.principles-layout,
.guardrails-grid,
.contact-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.88fr) minmax(360px, 1.12fr);
  gap: 5rem;
  align-items: start;
}

.corridor-note {
  display: grid;
  gap: 0.25rem;
  margin-top: 1.7rem;
  padding-left: 1rem;
  border-left: 3px solid var(--gold);
}

.corridor-note span {
  color: var(--ink-soft);
  font-size: 0.74rem;
  text-transform: uppercase;
}

.corridor-note strong {
  font-size: 0.95rem;
}

.corridor-panel {
  position: relative;
  display: grid;
  gap: 0.9rem;
}

.corridor-line {
  position: absolute;
  left: 1.62rem;
  top: 1.4rem;
  bottom: 1.4rem;
  width: 2px;
  background: linear-gradient(180deg, var(--green), var(--gold), var(--clay));
}

.corridor-stop {
  position: relative;
  display: grid;
  grid-template-columns: 30px 1fr 44px;
  gap: 1rem;
  align-items: center;
  min-height: 104px;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.node {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 7px rgba(15, 102, 81, 0.12);
}

.corridor-stop strong,
.corridor-stop span {
  display: block;
}

.corridor-stop span {
  margin-top: 0.2rem;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.corridor-stop small {
  color: var(--clay);
  font-weight: 700;
  text-align: right;
}

.architecture-section {
  color: var(--white);
  background: var(--deep);
}

.architecture-section .section-kicker {
  color: var(--gold-light);
}

.architecture-heading > p {
  color: rgba(255, 255, 255, 0.66);
}

.architecture-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.14);
}

.architecture-layer {
  min-height: 286px;
  padding: 1.4rem;
  background: #161c19;
}

.layer-top {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: var(--gold-light);
  font-size: 0.75rem;
}

.layer-top em {
  color: rgba(255, 255, 255, 0.54);
  font-style: normal;
  text-transform: uppercase;
}

.architecture-layer h3 {
  margin-top: 4.25rem;
  color: var(--white);
  font-size: 1.35rem;
}

.architecture-layer p {
  color: rgba(255, 255, 255, 0.68);
}

.principles-section {
  background: var(--white);
}

.principles-list {
  display: grid;
  border-top: 1px solid var(--line);
}

.principles-list article {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 1rem;
  padding: 1.35rem 0;
  border-bottom: 1px solid var(--line);
}

.principles-list article > span {
  color: var(--clay);
  font-size: 0.78rem;
  font-weight: 700;
}

.principles-list h3 {
  margin: 0 0 0.35rem;
}

.guardrails {
  color: var(--white);
  background: #202722;
}

.guardrails .section-kicker {
  color: var(--gold-light);
}

.guardrails .section-heading p {
  color: rgba(255, 255, 255, 0.68);
}

.not-list {
  padding: 1.35rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.05);
}

.not-list h3 {
  margin-top: 0;
}

.not-list ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.not-list li {
  min-height: 58px;
  padding: 0.78rem;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.89rem;
}

.contact-band {
  padding: 104px 0;
  background: var(--paper);
}

.contact-links {
  display: grid;
  gap: 0.8rem;
}

.contact-links a {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.12rem 1rem;
  min-height: 82px;
  padding: 1rem 1.1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.contact-links a:hover,
.contact-links a:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(15, 102, 81, 0.48);
  box-shadow: var(--shadow);
}

.contact-links span {
  color: var(--green);
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
}

.contact-links strong {
  min-width: 0;
  overflow-wrap: anywhere;
  font-size: 0.94rem;
}

.contact-links b {
  grid-row: 1 / span 2;
  grid-column: 2;
  align-self: center;
  color: var(--clay);
  font-size: 1.1rem;
}

.site-footer {
  padding: 28px 0;
  color: rgba(255, 255, 255, 0.68);
  background: var(--deep);
}

.footer-grid {
  display: grid;
  grid-template-columns: 0.72fr 1fr 1.35fr auto;
  gap: 1.5rem;
  align-items: center;
}

.footer-brand .brand-mark {
  flex-basis: 32px;
  width: 32px;
  height: 32px;
  font-size: 0.66rem;
}

.footer-grid p {
  margin: 0;
  font-size: 0.82rem;
}

.footer-grid > a {
  color: var(--gold-light);
  font-size: 0.82rem;
  white-space: nowrap;
}

@media (max-width: 1080px) {
  .site-header {
    padding-inline: 24px;
  }

  .nav-links {
    gap: 1rem;
  }

  .hero h1 {
    font-size: 78px;
  }

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

  .feature-card {
    min-height: 220px;
  }

  .field-layout {
    grid-template-columns: minmax(380px, 1fr) minmax(320px, 0.85fr);
    gap: 3rem;
  }

  .field-copy h2 {
    font-size: 38px;
  }

  .audience-layout {
    grid-template-columns: minmax(280px, 0.72fr) minmax(420px, 1.28fr);
    gap: 3rem;
  }

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

  .flow-journey li {
    border-bottom: 1px solid var(--line);
  }

  .flow-journey li:nth-child(3n) {
    border-right: 0;
  }

  .flow-journey li:nth-child(n + 4) {
    border-bottom: 0;
  }

  .flow-journey li:nth-child(3n)::after {
    display: none;
  }

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

@media (max-width: 860px) {
  html {
    scroll-padding-top: 70px;
  }

  .site-header {
    min-height: 68px;
    padding: 12px 20px;
  }

  .menu-toggle {
    display: grid;
  }

  .header-tools {
    position: fixed;
    inset: 68px 0 auto 0;
    display: none;
    align-items: stretch;
    gap: 1.25rem;
    max-height: calc(100svh - 68px);
    overflow-y: auto;
    padding: 24px 20px 30px;
    background: rgba(17, 21, 19, 0.98);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .header-tools.is-open {
    display: grid;
  }

  .nav-links {
    display: grid;
    gap: 0;
  }

  .nav-links a {
    min-height: 52px;
    padding: 0.9rem 0;
    border-bottom-color: rgba(255, 255, 255, 0.12);
    font-size: 1rem;
  }

  .language-switch {
    width: 86px;
  }

  .hero {
    min-height: 88svh;
  }

  .hero-content {
    margin-inline: 24px;
  }

  .hero h1 {
    font-size: 68px;
  }

  .positioning-band h2,
  .section h2,
  .contact-band h2 {
    font-size: 44px;
  }

  .positioning-grid,
  .field-layout,
  .audience-layout,
  .scenario-heading,
  .process-heading,
  .architecture-heading,
  .corridor-layout,
  .principles-layout,
  .guardrails-grid,
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 2.25rem;
  }

  .field-visual-wide {
    order: 2;
  }

  .field-copy {
    order: 1;
  }

  .audience-band {
    padding: 60px 0;
  }

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

  .positioning-grid {
    padding: 60px 0;
  }

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

  .process-step {
    display: grid;
    grid-template-columns: 36px 140px 1fr;
    gap: 1rem;
    align-items: start;
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .process-step:last-child {
    border-bottom: 0;
  }

  .step-index {
    margin: 0;
  }

  .process-step p {
    margin: 0;
  }

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

  .architecture-layer {
    min-height: 220px;
  }

  .architecture-layer h3 {
    margin-top: 2.5rem;
  }

  .hero-scroll {
    display: none;
  }
}

@media (max-width: 600px) {
  .container {
    width: min(var(--max), calc(100% - 28px));
  }

  .brand span:last-child {
    max-width: 190px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .hero {
    min-height: 92svh;
    align-items: flex-start;
  }

  .hero-shade {
    background: linear-gradient(180deg, rgba(17, 21, 19, 0.96) 0%, rgba(17, 21, 19, 0.74) 68%, rgba(17, 21, 19, 0.9) 100%);
  }

  .hero-content {
    width: calc(100% - 28px);
    margin-inline: 14px;
    padding: 104px 0 34px;
  }

  .hero h1 {
    max-width: 9ch;
    font-size: 54px;
    line-height: 0.98;
  }

  .hero-lede {
    max-width: 34ch;
    font-size: 1.05rem;
  }

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

  .hero-metrics {
    grid-template-columns: 1fr;
    margin-top: 1.5rem;
  }

  .hero-metrics div {
    display: grid;
    grid-template-columns: 112px 1fr;
    gap: 0.65rem;
    align-items: center;
    padding: 0.8rem;
  }

  .hero-metrics dd {
    margin: 0;
  }

  .positioning-band h2,
  .section h2,
  .contact-band h2 {
    font-size: 36px;
    line-height: 1.08;
  }

  .section,
  .contact-band {
    padding: 72px 0;
  }

  .feature-grid,
  .scenario-media,
  .not-list ul {
    grid-template-columns: 1fr;
  }

  .field-copy h2 {
    font-size: 34px;
  }

  .field-visual > figcaption {
    min-height: 0;
  }

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

  .audience-list span {
    min-height: 64px;
  }

  .flow-journey {
    grid-template-columns: 1fr;
  }

  .flow-journey li {
    display: grid;
    grid-template-columns: 34px minmax(120px, 0.7fr) minmax(0, 1fr);
    gap: 0.85rem;
    min-height: 0;
    padding: 1.05rem 0.5rem;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .flow-journey li:nth-child(n) {
    border-bottom: 1px solid var(--line);
  }

  .flow-journey li:last-child {
    border-bottom: 0;
  }

  .flow-journey li::after {
    display: none;
  }

  .flow-journey span,
  .flow-journey strong {
    min-height: 0;
    margin: 0;
  }

  .flow-journey p {
    margin: 0;
  }

  .feature-card {
    min-height: 194px;
  }

  .process-step {
    grid-template-columns: 34px 1fr;
  }

  .process-step p {
    grid-column: 2;
  }

  .corridor-stop {
    grid-template-columns: 26px 1fr 36px;
    gap: 0.8rem;
    padding: 0.9rem;
  }

  .corridor-line {
    left: 1.43rem;
  }

  .not-list {
    padding: 1rem;
  }

  .scenario-media {
    margin-top: 2rem;
  }

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

@media (max-width: 380px) {
  .brand span:last-child {
    max-width: 148px;
  }

  .hero h1 {
    font-size: 48px;
  }

  .hero-metrics div {
    grid-template-columns: 98px 1fr;
  }

  .positioning-band h2,
  .section h2,
  .contact-band h2 {
    font-size: 32px;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}
