@font-face {
  font-family: Satoshi;
  src: url("../fonts/satoshi-400.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: Satoshi;
  src: url("../fonts/satoshi-500.woff2") format("woff2");
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: Satoshi;
  src: url("../fonts/satoshi-700.woff2") format("woff2");
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: JetBrains;
  src: url("../fonts/jetbrains-mono.woff2") format("woff2");
  font-weight: 400 600;
  font-display: swap;
}

:root {
  --navy: #001330;
  --navy-raised: #0b2147;
  --gold: #c6a15b;
  --gold-deep: #7e5f1a;
  --paper: #fbfaf7;
  --mineral: #f3f0e9;
  --white: #fff;
  --ink: #0c172a;
  --muted: #53657a;
  --muted-dark: #b8c7d9;
  --line: #cbd6e4;
  --cobalt: #2d6bff;
  --cobalt-deep: #174db8;
  --live: #2bcb78;
  --warning: #f2b544;
  --critical: #e25555;
  --shell: 1380px;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
  overflow-x: clip;
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Satoshi, Arial, sans-serif;
  font-size: 17px;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
}

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

a {
  color: inherit;
}

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

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 3px solid #8cb4ff;
  outline-offset: 3px;
}

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

.skip {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  color: #fff;
  background: var(--navy);
  transform: translateY(-160%);
}

.skip:focus {
  transform: none;
}

.review-bar {
  display: flex;
  min-height: 34px;
  align-items: center;
  gap: 16px;
  padding: 6px max(32px, calc((100vw - var(--shell)) / 2));
  color: var(--muted-dark);
  background: var(--navy);
  font:
    600 9px JetBrains,
    monospace;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.review-bar strong {
  color: var(--gold);
}

.review-bar a {
  text-decoration: none;
}

.review-bar a:first-of-type {
  margin-left: auto;
}

.utility-bar {
  color: #fff;
  background: #101010;
}

.utility-bar__row {
  display: flex;
  min-height: 40px;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  font-size: 11px;
}

.utility-bar__row > div {
  display: flex;
  align-items: center;
  gap: 25px;
}

.utility-bar a {
  color: #d7d7d7;
  text-decoration: none;
}

.utility-bar span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #d7d7d7;
}

.utility-bar i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--live);
}

.site-header {
  position: sticky;
  z-index: 40;
  top: 0;
  border-bottom: 1px solid var(--line);
  background: rgba(251, 250, 247, 0.96);
  backdrop-filter: blur(16px);
}

.site-header__row {
  display: grid;
  min-height: 82px;
  align-items: center;
  gap: 30px;
  grid-template-columns: 150px 1fr auto;
}

.brand {
  width: 118px;
}

.desktop-nav {
  display: flex;
  justify-content: center;
  gap: 30px;
}

.desktop-nav a {
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible {
  color: var(--gold-deep);
}

.header-cta,
.mobile-menu button {
  min-height: 48px;
  padding: 0 20px;
  border: 0;
  color: #fff;
  background: var(--navy);
  cursor: pointer;
  font-weight: 700;
}

.menu-button {
  display: none;
  min-height: 44px;
  padding: 0 16px;
  border: 1px solid var(--navy);
  color: var(--navy);
  background: transparent;
  cursor: pointer;
  font-weight: 700;
}

.mobile-menu {
  padding: 14px 24px 22px;
  border-top: 1px solid var(--line);
  background: var(--paper);
}

.mobile-menu[hidden] {
  display: none;
}

.mobile-menu a {
  display: block;
  padding: 11px 0;
  text-decoration: none;
  font-weight: 600;
}

.mobile-menu button {
  width: 100%;
  margin-top: 12px;
}

.hero {
  padding: 105px 0 0;
  background: var(--paper);
}

.hero__heading {
  display: grid;
  align-items: end;
  gap: 80px;
  grid-template-columns: minmax(0, 1.25fr) minmax(330px, 0.75fr);
}

.eyebrow {
  display: block;
  margin-bottom: 22px;
  color: var(--gold-deep);
  font:
    600 10px JetBrains,
    monospace;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.eyebrow--light {
  color: var(--gold);
}

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

h1 {
  max-width: 920px;
  margin-bottom: 0;
  color: var(--navy);
  font-size: clamp(70px, 8vw, 118px);
  font-weight: 500;
  line-height: 0.9;
  letter-spacing: -0.07em;
}

.hero__intro {
  padding-bottom: 8px;
}

.hero__intro > p {
  margin-bottom: 26px;
  color: var(--muted);
  font-size: 21px;
  line-height: 1.45;
}

.hero__intro small {
  display: block;
  max-width: 480px;
  margin-top: 20px;
  color: var(--muted);
  font-size: 12px;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border: 0;
  text-decoration: none;
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
}

.button--primary {
  color: #fff;
  background: var(--navy);
}

.button--text {
  min-height: auto;
  padding: 8px 0;
  border-bottom: 1px solid var(--navy);
  color: var(--navy);
  background: transparent;
}

.button--gold {
  color: var(--navy);
  background: var(--gold);
}

.hero-visual {
  position: relative;
  margin-top: 72px;
  overflow: hidden;
  background: var(--mineral);
}

.hero-visual > img {
  width: 100%;
  height: min(690px, 48vw);
  min-height: 480px;
  object-fit: cover;
}

.hero-visual__note {
  position: absolute;
  bottom: 32px;
  left: 32px;
  display: grid;
  max-width: 340px;
  gap: 9px;
  padding: 18px 20px;
  border-left: 3px solid var(--gold);
  color: var(--navy);
  background: rgba(251, 250, 247, 0.94);
}

.hero-visual__note span {
  color: var(--gold-deep);
  font:
    600 9px JetBrains,
    monospace;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-visual__note strong {
  font-size: 16px;
}

.hero-proof {
  display: grid;
  margin-top: 58px;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  grid-template-columns: repeat(3, 1fr);
}

.hero-proof span {
  padding: 18px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--navy);
  font:
    600 11px JetBrains,
    monospace;
  text-align: center;
}

.client-strip {
  padding: 70px 0;
  background: var(--white);
}

.client-strip .eyebrow {
  text-align: center;
}

.client-strip__logos {
  display: grid;
  align-items: center;
  gap: 42px;
  margin-top: 35px;
  grid-template-columns: repeat(6, 1fr);
}

.client-strip__logos img {
  width: 100%;
  max-width: 130px;
  max-height: 42px;
  margin: auto;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.72;
}

.section-heading,
.catalogue__intro,
.commercial-model__heading,
.field-notes__heading {
  display: grid;
  align-items: end;
  gap: 60px;
  grid-template-columns: 1fr 0.7fr;
}

.section-heading .eyebrow,
.catalogue__intro .eyebrow,
.commercial-model__heading .eyebrow,
.field-notes__heading .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -30px;
}

h2 {
  margin-bottom: 0;
  color: var(--navy);
  font-size: clamp(54px, 6vw, 88px);
  font-weight: 500;
  line-height: 0.93;
  letter-spacing: -0.065em;
}

.two-paths {
  padding: 110px 0;
  background: var(--mineral);
}

.two-paths__grid {
  display: grid;
  margin-top: 70px;
  border-top: 1px solid var(--navy);
  border-left: 1px solid var(--line);
  grid-template-columns: 1fr 1fr;
}

.two-paths article {
  min-height: 390px;
  padding: 42px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.chapter-number {
  color: var(--gold-deep);
  font:
    600 11px JetBrains,
    monospace;
}

.two-paths h3 {
  margin: 70px 0 20px;
  color: var(--navy);
  font-size: clamp(44px, 5vw, 72px);
  font-weight: 500;
  line-height: 0.95;
  letter-spacing: -0.055em;
}

.two-paths p {
  max-width: 560px;
  color: var(--muted);
}

.two-paths a,
.product-ledger a,
.ops-console__copy a,
.field-notes a {
  display: inline-block;
  margin-top: 18px;
  color: var(--navy);
  font-weight: 700;
  text-underline-offset: 5px;
}

.catalogue {
  padding: 120px 0;
  background: var(--paper);
}

.catalogue__intro > p,
.commercial-model__heading > p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

.catalogue-visual {
  margin-top: 70px;
  border: 1px solid var(--line);
  background: var(--white);
}

.catalogue-visual img {
  width: 100%;
  aspect-ratio: 3 / 1.55;
  object-fit: cover;
}

.catalogue-visual figcaption {
  display: grid;
  min-height: 58px;
  align-items: center;
  padding: 0 22px;
  border-top: 1px solid var(--line);
  grid-template-columns: repeat(3, 1fr);
  color: var(--gold-deep);
  font:
    600 9px JetBrains,
    monospace;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-ledger {
  margin-top: 70px;
  border-top: 1px solid var(--navy);
}

.product-ledger article {
  display: grid;
  min-height: 420px;
  gap: 42px;
  padding: 34px 0;
  border-bottom: 1px solid var(--line);
  grid-template-columns: 170px 1fr 0.9fr;
}

.product-ledger__index {
  color: var(--gold-deep);
  font:
    600 10px JetBrains,
    monospace;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-ledger h3 {
  margin: 0 0 18px;
  color: var(--navy);
  font-size: clamp(45px, 5vw, 72px);
  font-weight: 500;
  line-height: 0.95;
  letter-spacing: -0.055em;
}

.product-ledger p {
  max-width: 610px;
  color: var(--muted);
}

.product-ledger ul,
.agency__copy ul {
  margin: 25px 0 0;
  padding: 0;
  list-style: none;
}

.product-ledger li,
.agency__copy li {
  padding: 9px 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
}

.product-ledger article > img {
  width: 100%;
  height: 100%;
  min-height: 330px;
  object-fit: cover;
  filter: grayscale(0.35) contrast(1.05);
}

.operations {
  padding: 120px 0;
  color: #fff;
  background: var(--navy);
}

.operations__heading {
  display: grid;
  gap: 60px;
  grid-template-columns: 160px 1fr 0.65fr;
}

.operations h2 {
  color: #fff;
}

.operations__heading > p {
  margin: 0;
  color: var(--muted-dark);
  font-size: 18px;
}

.operations-model {
  display: grid;
  margin-top: 80px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-left: 1px solid rgba(255, 255, 255, 0.14);
  grid-template-columns: repeat(4, 1fr);
}

.operations-model article {
  min-height: 250px;
  padding: 30px;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.operations-model span {
  color: var(--gold);
  font:
    600 11px JetBrains,
    monospace;
  text-transform: uppercase;
}

.operations-model p {
  margin: 95px 0 0;
  color: var(--muted-dark);
}

.ops-console {
  display: grid;
  align-items: center;
  gap: 90px;
  margin-top: 100px;
  grid-template-columns: 0.7fr 1.3fr;
}

.ops-console__copy h3 {
  margin: 0 0 24px;
  color: #fff;
  font-size: clamp(46px, 5vw, 72px);
  font-weight: 500;
  line-height: 0.95;
  letter-spacing: -0.055em;
}

.ops-console__copy p {
  color: var(--muted-dark);
}

.ops-console__copy a {
  color: #fff;
}

.ops-console__panel {
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--ink);
  background: var(--paper);
}

.ops-console__panel > header {
  display: flex;
  min-height: 62px;
  align-items: center;
  justify-content: space-between;
  padding: 0 22px;
  border-bottom: 1px solid var(--line);
}

.ops-console__panel header span {
  color: var(--navy);
  font-weight: 700;
}

.ops-console__panel header small {
  color: var(--muted);
  font:
    600 9px JetBrains,
    monospace;
  text-transform: uppercase;
}

.ops-console__summary {
  display: grid;
  border-bottom: 1px solid var(--line);
  grid-template-columns: repeat(3, 1fr);
}

.ops-console__summary div {
  min-height: 130px;
  padding: 22px;
  border-right: 1px solid var(--line);
}

.ops-console__summary div:last-child {
  border-right: 0;
}

.ops-console__summary span,
.ops-console__summary strong {
  display: block;
}

.ops-console__summary span {
  color: var(--muted);
  font-size: 11px;
}

.ops-console__summary strong {
  margin-top: 18px;
  color: var(--navy);
  font-size: 34px;
}

.ops-console__events {
  padding: 8px 22px;
}

.ops-console__events > div {
  display: grid;
  min-height: 62px;
  align-items: center;
  gap: 15px;
  border-bottom: 1px solid var(--line);
  grid-template-columns: auto 1fr auto;
  font-size: 12px;
}

.ops-console__events > div:last-child {
  border-bottom: 0;
}

.ops-console__events span {
  color: var(--muted);
}

.state {
  width: 9px;
  height: 9px;
  border-radius: 50%;
}

.state--warning {
  background: var(--warning);
}

.state--due {
  background: var(--critical);
}

.state--healthy {
  background: var(--live);
}

.agency {
  padding: 120px 0;
  background: var(--paper);
}

.agency__grid {
  display: grid;
  align-items: stretch;
  gap: 80px;
  grid-template-columns: 1.05fr 0.95fr;
}

.agency__image {
  position: relative;
  min-height: 700px;
  overflow: hidden;
  background: var(--navy);
}

.agency__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.3) contrast(1.08) brightness(0.75);
}

.agency__image span {
  position: absolute;
  right: 28px;
  bottom: 28px;
  left: 28px;
  padding: 18px;
  color: #fff;
  background: var(--navy);
  font:
    600 10px JetBrains,
    monospace;
  text-transform: uppercase;
}

.agency__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.agency__copy h2 {
  font-size: clamp(52px, 5vw, 76px);
}

.agency__copy > p {
  margin: 30px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.agency__copy .button {
  align-self: flex-start;
  margin-top: 34px;
}

.proof-band {
  color: var(--navy);
  background: var(--gold);
}

.proof-band__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.proof-band article {
  min-height: 230px;
  padding: 38px;
  border-right: 1px solid rgba(0, 19, 48, 0.28);
}

.proof-band article:last-child {
  border-right: 0;
}

.proof-band strong,
.proof-band span {
  display: block;
}

.proof-band strong {
  font-size: clamp(38px, 4vw, 60px);
  line-height: 1;
  letter-spacing: -0.05em;
}

.proof-band span {
  max-width: 300px;
  margin-top: 70px;
  font-size: 13px;
}

.commercial-model {
  padding: 120px 0;
  background: var(--mineral);
}

.model-table {
  margin-top: 65px;
  border-top: 1px solid var(--navy);
}

.model-table > div {
  display: grid;
  min-height: 110px;
  align-items: center;
  gap: 30px;
  padding: 20px;
  border-bottom: 1px solid var(--line);
  grid-template-columns: 0.7fr 1fr 1.5fr;
}

.model-table__head {
  min-height: 52px !important;
  color: var(--muted);
  font:
    600 10px JetBrains,
    monospace;
  text-transform: uppercase;
}

.model-table p {
  margin: 0;
  color: var(--muted);
}

.field-notes {
  padding: 120px 0;
  background: var(--paper);
}

.field-notes__grid {
  display: grid;
  margin-top: 65px;
  border-top: 1px solid var(--navy);
  border-left: 1px solid var(--line);
  grid-template-columns: repeat(3, 1fr);
}

.field-notes article {
  min-height: 400px;
  padding: 32px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.field-notes article > span {
  color: var(--gold-deep);
  font:
    600 10px JetBrains,
    monospace;
  text-transform: uppercase;
}

.field-notes h3 {
  margin: 85px 0 24px;
  color: var(--navy);
  font-size: 36px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.04em;
}

.field-notes p {
  color: var(--muted);
  font-size: 14px;
}

.faq {
  padding: 120px 0;
  background: var(--white);
}

.faq__grid {
  display: grid;
  align-items: start;
  gap: 100px;
  grid-template-columns: 0.75fr 1.25fr;
}

.faq__list {
  border-top: 1px solid var(--navy);
}

.faq details {
  border-bottom: 1px solid var(--line);
}

.faq summary {
  padding: 24px 42px 24px 0;
  color: var(--navy);
  cursor: pointer;
  font-size: 18px;
  font-weight: 700;
}

.faq details p {
  max-width: 780px;
  padding: 0 40px 24px 0;
  color: var(--muted);
}

.contact {
  padding: 100px 0;
  color: #fff;
  background: var(--navy);
}

.contact__grid {
  display: grid;
  align-items: start;
  gap: 55px;
  grid-template-columns: 160px 1fr 0.6fr;
}

.contact h2 {
  color: #fff;
}

.contact__grid > div p {
  margin: 30px 0 0;
  color: var(--muted-dark);
}

.contact a {
  text-decoration: none;
}

.footer {
  padding: 60px 0 26px;
  color: var(--muted-dark);
  background: #101010;
}

.footer__top {
  display: grid;
  align-items: center;
  gap: 40px;
  padding-bottom: 38px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  grid-template-columns: 140px 1fr auto;
}

.footer__top img {
  width: 110px;
}

.footer__top p {
  margin: 0;
}

.footer__top > div {
  display: grid;
  gap: 7px;
}

.footer__top a {
  text-decoration: none;
}

.footer__links {
  display: grid;
  gap: 60px;
  padding: 38px 0;
  grid-template-columns: repeat(3, 1fr);
}

.footer__links > div {
  display: grid;
  gap: 9px;
}

.footer__links strong {
  margin-bottom: 8px;
  color: #fff;
  font:
    600 10px JetBrains,
    monospace;
  text-transform: uppercase;
}

.footer__links a {
  text-decoration: none;
  font-size: 13px;
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font:
    500 10px JetBrains,
    monospace;
}

dialog {
  width: min(620px, calc(100% - 32px));
  max-height: calc(100vh - 40px);
  padding: 0;
  overflow: auto;
  border: 1px solid var(--line);
  border-radius: 0;
  color: var(--ink);
  background: var(--paper);
  box-shadow: 0 30px 80px rgba(0, 19, 48, 0.28);
}

dialog::backdrop {
  background: rgba(0, 19, 48, 0.7);
}

dialog form > header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 28px;
  border-bottom: 1px solid var(--line);
}

dialog header .eyebrow {
  margin: 0;
}

dialog header button {
  padding: 6px 0;
  border: 0;
  border-bottom: 1px solid var(--navy);
  color: var(--navy);
  background: transparent;
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
}

.dialog-body,
.dialog-success {
  padding: 34px 28px;
}

.dialog-body h2,
.dialog-success h2 {
  margin-bottom: 18px;
  font-size: 46px;
}

.dialog-body > p,
.dialog-success p {
  color: var(--muted);
}

.dialog-body label {
  display: grid;
  gap: 7px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.dialog-body input,
.dialog-body select,
.dialog-body textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 0;
  color: var(--ink);
  background: #fff;
}

.dialog-body input,
.dialog-body select {
  min-height: 46px;
  padding: 0 12px;
}

.dialog-body textarea {
  padding: 12px;
  resize: vertical;
}

.dialog-body > .button {
  width: 100%;
  margin-top: 24px;
}

.dialog-success[hidden],
.toast[hidden] {
  display: none;
}

.toast {
  position: fixed;
  z-index: 70;
  right: 24px;
  bottom: 24px;
  padding: 13px 16px;
  border: 1px solid var(--gold);
  color: #fff;
  background: var(--navy);
  box-shadow: 0 18px 50px rgba(0, 19, 48, 0.22);
  font-size: 12px;
  font-weight: 700;
}

@media (max-width: 1050px) {
  .desktop-nav,
  .header-cta {
    display: none;
  }

  .site-header__row {
    grid-template-columns: 1fr auto;
  }

  .menu-button {
    display: inline-flex;
    align-items: center;
  }

  .hero__heading,
  .section-heading,
  .catalogue__intro,
  .commercial-model__heading,
  .field-notes__heading,
  .operations__heading,
  .contact__grid {
    grid-template-columns: 1fr;
  }

  .section-heading .eyebrow,
  .catalogue__intro .eyebrow,
  .commercial-model__heading .eyebrow,
  .field-notes__heading .eyebrow {
    margin-bottom: -20px;
    grid-column: auto;
  }

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

  .ops-console,
  .agency__grid,
  .faq__grid {
    gap: 60px;
    grid-template-columns: 1fr;
  }

  .agency__image {
    min-height: 560px;
  }
}

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

  .review-bar {
    padding-inline: 16px;
  }

  .review-bar strong {
    display: none;
  }

  .utility-bar__row > div:first-child a,
  .utility-bar__row > div:last-child {
    display: none;
  }

  .hero,
  .two-paths,
  .catalogue,
  .operations,
  .agency,
  .commercial-model,
  .field-notes,
  .faq,
  .contact {
    padding-block: 76px;
  }

  h1 {
    font-size: 59px;
  }

  h2 {
    font-size: 50px;
  }

  .section-heading .eyebrow,
  .catalogue__intro .eyebrow,
  .commercial-model__heading .eyebrow,
  .field-notes__heading .eyebrow {
    margin-bottom: 0;
  }

  .hero__heading {
    gap: 38px;
  }

  .hero__intro > p {
    font-size: 18px;
  }

  .hero__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-visual {
    width: 100%;
    margin-top: 50px;
  }

  .hero-visual > img {
    height: 460px;
    min-height: 0;
    object-position: 67% center;
  }

  .hero-visual__note {
    right: 16px;
    bottom: 16px;
    left: 16px;
  }

  .hero-proof,
  .two-paths__grid,
  .operations-model,
  .proof-band__grid,
  .field-notes__grid,
  .client-strip__logos,
  .footer__links {
    grid-template-columns: 1fr;
  }

  .hero-proof span {
    text-align: left;
  }

  .client-strip__logos {
    gap: 28px;
    grid-template-columns: repeat(2, 1fr);
  }

  .two-paths article {
    min-height: 330px;
    padding: 28px;
  }

  .two-paths h3 {
    margin-top: 55px;
  }

  .product-ledger article {
    gap: 28px;
    grid-template-columns: 1fr;
  }

  .product-ledger article > img {
    min-height: 260px;
  }

  .catalogue-visual {
    width: 100%;
  }

  .catalogue-visual img {
    min-height: 360px;
    object-position: 60% center;
  }

  .catalogue-visual figcaption {
    gap: 10px;
    grid-template-columns: 1fr;
    padding-block: 16px;
  }

  .operations-model article {
    min-height: 200px;
  }

  .operations-model p {
    margin-top: 60px;
  }

  .ops-console__panel {
    overflow-x: auto;
  }

  .ops-console__summary,
  .ops-console__events {
    min-width: 600px;
  }

  .agency__image {
    min-height: 420px;
  }

  .proof-band article {
    min-height: 190px;
    border-right: 0;
    border-bottom: 1px solid rgba(0, 19, 48, 0.28);
  }

  .proof-band span {
    margin-top: 45px;
  }

  .model-table {
    overflow-x: auto;
  }

  .model-table > div {
    min-width: 760px;
  }

  .field-notes article {
    min-height: 330px;
  }

  .field-notes h3 {
    margin-top: 55px;
  }

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

  .footer__bottom {
    gap: 10px;
    flex-direction: column;
  }
}

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