@import url("https://fonts.googleapis.com/css2?family=Bitter:wght@600;700;900&family=Work+Sans:wght@400;500;600;700&display=swap");

:root {
  --midnight: #03081c;
  --emerald: #057e5e;
  --teal: #199f7b;
  --seafoam: #3dcea8;
  --mint: #e3f3ef;
  --white: #ffffff;
  --coral: #ff7657;
  --line: rgba(5, 126, 94, 0.2);
  --line-dark: rgba(255, 255, 255, 0.28);
  --shadow: 0 24px 80px rgba(3, 8, 28, 0.18);
  --max: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--midnight);
  font-family: "Work Sans", Avenir Next, Helvetica Neue, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.75;
  letter-spacing: 0;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input {
  font: inherit;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 20;
  transform: translateY(-140%);
  background: var(--white);
  color: var(--midnight);
  padding: 10px 14px;
  border-radius: 6px;
}

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

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: 190px 1fr auto;
  align-items: center;
  gap: 32px;
  width: min(100% - 64px, var(--max));
  margin: 0 auto;
  padding: 28px 0;
  color: var(--white);
}

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

.main-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 40px;
  font-size: 15px;
  font-weight: 700;
}

.main-nav a {
  opacity: 0.95;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--seafoam);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0 32px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

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

.button-small {
  min-height: 52px;
  padding-inline: 24px;
}

.button-coral {
  background: var(--coral);
  color: var(--white);
  box-shadow: 0 14px 26px rgba(255, 118, 87, 0.2);
}

.button-coral:hover,
.button-coral:focus-visible {
  background: #ff6341;
}

.button-ghost {
  gap: 16px;
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.75);
}

.button-ghost::after {
  content: "";
  width: 24px;
  height: 16px;
  background: currentColor;
  clip-path: polygon(0 43%, 78% 43%, 58% 0, 100% 50%, 58% 100%, 78% 57%, 0 57%);
}

.button-ghost:hover,
.button-ghost:focus-visible {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.section-inner {
  width: min(100% - 64px, var(--max));
  margin: 0 auto;
}

.section-dark {
  background:
    linear-gradient(140deg, #064936 0%, #057e5e 52%, #00412f 100%);
  color: var(--white);
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 900px;
  padding: 145px 0 112px;
}

.hero::after {
  content: "";
  position: absolute;
  left: -8%;
  right: -8%;
  bottom: -98px;
  height: 190px;
  background: var(--white);
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
  z-index: 0;
}

.hero-watermark {
  position: absolute;
  left: 56px;
  bottom: 152px;
  width: 260px;
  height: 180px;
  opacity: 0.08;
  background: var(--teal);
  clip-path: polygon(0 0, 74% 0, 88% 20%, 44% 20%, 38% 38%, 94% 38%, 100% 58%, 24% 58%, 17% 80%, 92% 80%, 98% 100%, 0 100%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(360px, 0.82fr) minmax(660px, 1.18fr);
  align-items: center;
  gap: 58px;
}

.hero-copy {
  position: relative;
}

.headline-block {
  position: absolute;
  top: 28px;
  left: -18px;
  width: 126px;
  height: 54px;
  background: rgba(255, 118, 87, 0.12);
  border-radius: 2px;
}

h1,
h2,
h3 {
  margin: 0;
  color: inherit;
  font-family: "Bitter", Georgia, serif;
  letter-spacing: 0;
}

h1 {
  position: relative;
  max-width: 575px;
  font-size: 72px;
  line-height: 1.08;
  font-weight: 900;
}

h1 span,
.final-cta h2 span {
  color: var(--coral);
}

.hero-lede {
  max-width: 565px;
  margin: 30px 0 0;
  font-size: 18px;
  line-height: 1.72;
  color: rgba(255, 255, 255, 0.92);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 48px;
}

.agent-console {
  overflow: hidden;
  min-width: 0;
  border: 3px solid rgba(227, 243, 239, 0.86);
  border-radius: 16px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.console-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 62px;
  padding: 0 24px;
  border-bottom: 1px solid #d7ebe6;
  color: var(--midnight);
  font-weight: 700;
}

.console-top span {
  color: rgba(3, 8, 28, 0.5);
  font-size: 13px;
  font-family: "Work Sans", Avenir Next, Helvetica Neue, Arial, sans-serif;
}

.console-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.console-brand img {
  width: 27px;
}

.console-body {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 0;
  color: var(--midnight);
}

.console-rail {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 18px 10px;
  border-right: 1px solid #d7ebe6;
  background: #f8fcfb;
}

.rail-item {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: var(--emerald);
  border-radius: 5px;
  font-size: 17px;
}

.rail-item.active {
  background: var(--emerald);
  color: var(--white);
}

.flow-board {
  display: grid;
  grid-template-columns: minmax(92px, 1fr) 18px minmax(92px, 1fr) 18px minmax(92px, 1fr) 18px minmax(92px, 1fr) 18px minmax(92px, 1fr);
  align-items: center;
  gap: 8px;
  padding: 24px 22px 16px;
}

.flow-card {
  position: relative;
  min-height: 214px;
  padding: 16px 13px;
  border: 1px solid #d7ebe6;
  border-radius: 7px;
  background: var(--white);
}

.flow-card strong {
  display: block;
  margin-top: 10px;
  font-size: 14px;
  line-height: 1.35;
}

.flow-card p {
  margin: 8px 0 0;
  color: rgba(3, 8, 28, 0.72);
  font-size: 11px;
  line-height: 1.5;
}

.step {
  display: block;
  color: rgba(3, 8, 28, 0.62);
  font-size: 11px;
  font-weight: 700;
}

.flow-arrow {
  display: grid;
  place-items: center;
  color: var(--emerald);
  font-size: 18px;
  font-weight: 700;
}

.bubble-icon svg {
  width: 38px;
  height: 38px;
  margin-top: 24px;
  fill: #e3f3ef;
  stroke: var(--teal);
  stroke-width: 1.4;
}

.product-object {
  width: 54px;
  height: 64px;
  margin: 20px auto 0;
  border-radius: 10px;
  background:
    linear-gradient(125deg, rgba(255, 255, 255, 0.22), transparent 38%),
    linear-gradient(90deg, #b97d45, #d7a15d 48%, #8b5b32);
  transform: rotate(-16deg);
  box-shadow: 9px 12px 20px rgba(139, 91, 50, 0.24);
}

.product-object::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  margin: 10px 0 0 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
}

.status-match,
.status-accepted {
  display: inline-flex;
  margin-top: 12px;
  padding: 4px 8px;
  border-radius: 4px;
  color: var(--emerald);
  background: var(--mint);
  font-size: 11px;
  font-weight: 700;
}

.stock-number {
  margin-top: 32px;
  color: var(--teal);
  font-family: "Work Sans", Avenir Next, Helvetica Neue, Arial, sans-serif;
  font-size: 42px;
  line-height: 1;
}

.stock-card dl {
  margin: 18px 0 0;
}

.stock-card div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  border-top: 1px solid #e6f2ef;
  padding-top: 8px;
  font-size: 11px;
}

.stock-card dt,
.stock-card dd {
  margin: 0;
}

.stock-card dd {
  font-weight: 700;
}

.check-icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-top: 24px;
  border-radius: 50%;
  background: var(--teal);
  color: var(--white);
  font-size: 32px;
  font-weight: 700;
}

.parcel-icon {
  width: 50px;
  height: 46px;
  margin: 24px auto 0;
  background:
    linear-gradient(135deg, transparent 0 27%, rgba(255, 255, 255, 0.32) 27% 36%, transparent 36%),
    linear-gradient(135deg, #d7a15d 0 49%, #b6793b 49% 100%);
  clip-path: polygon(18% 0, 82% 0, 100% 28%, 100% 78%, 50% 100%, 0 78%, 0 28%);
}

.carrier-dot {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-top: 10px;
  border-radius: 50%;
  background: #ffb500;
  color: var(--midnight);
  font-size: 10px;
  font-weight: 800;
}

.activity-panel {
  margin: 0 22px 24px;
  border: 1px solid #d7ebe6;
  border-radius: 7px;
  background: #fbfdfd;
}

.activity-row {
  display: grid;
  grid-template-columns: 28px 1.1fr 0.9fr 8px 0.75fr 0.9fr;
  align-items: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 14px;
  border-bottom: 1px solid #e6f2ef;
  color: rgba(3, 8, 28, 0.72);
  font-size: 11px;
}

.activity-row:last-child {
  border-bottom: 0;
}

.activity-row strong {
  color: var(--midnight);
}

.channel {
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border-radius: 5px;
  background: var(--mint);
  color: var(--emerald);
  font-size: 12px;
  font-weight: 800;
}

.channel.claude {
  background: #f0e5dc;
  color: #8c4f24;
}

.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
}

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

.section-mint {
  background:
    radial-gradient(700px 340px at 8% 100%, rgba(61, 206, 168, 0.18), transparent 70%),
    linear-gradient(180deg, #edf8f5 0%, #e3f3ef 100%);
}

.capabilities,
.operations,
.dpp-ready,
.data-layer {
  position: relative;
  padding: 84px 0 98px;
}

.capabilities::after,
.data-layer::after {
  content: "";
  position: absolute;
  right: 50px;
  top: 42px;
  width: 160px;
  height: 150px;
  opacity: 0.06;
  background: var(--teal);
  clip-path: polygon(5% 0, 65% 0, 92% 30%, 52% 30%, 47% 47%, 100% 47%, 95% 70%, 35% 70%, 30% 100%, 0 100%);
}

.section-heading {
  margin: 0 auto 64px;
  text-align: center;
}

.left-heading {
  margin-right: 0;
  margin-left: 0;
  text-align: left;
}

.left-heading h2::after {
  left: 0;
  transform: none;
}

.section-heading h2 {
  display: inline-block;
  position: relative;
  max-width: 850px;
  font-size: 44px;
  line-height: 1.18;
  font-weight: 800;
  color: var(--midnight);
}

.section-heading h2::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -22px;
  width: 76px;
  height: 4px;
  transform: translateX(-50%);
  background: var(--teal);
}

.capability-row,
.operation-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.capability,
.operation-grid article {
  min-width: 0;
  padding: 0 36px;
  border-right: 1px solid var(--line);
}

.capability:first-child,
.operation-grid article:first-child {
  padding-left: 0;
}

.capability:last-child,
.operation-grid article:last-child {
  border-right: 0;
  padding-right: 0;
}

.icon-disc {
  display: grid;
  place-items: center;
  width: 74px;
  height: 74px;
  margin-bottom: 28px;
  border-radius: 50%;
  background: var(--mint);
}

.icon-disc svg {
  width: 44px;
  height: 44px;
  fill: var(--emerald);
}

.capability h3,
.operation-grid h3,
.layer-panel h3,
.source-list h3,
.output-list h3,
.service-points h3 {
  font-family: "Work Sans", Avenir Next, Helvetica Neue, Arial, sans-serif;
  font-size: 19px;
  line-height: 1.3;
  font-weight: 800;
}

.capability p,
.operation-grid p,
.layer-panel p,
.source-list li,
.output-list p,
.service-grid p {
  margin: 14px 0 0;
  color: rgba(3, 8, 28, 0.72);
  font-size: 15px;
  line-height: 1.72;
}

.operations {
  padding-top: 94px;
}

.operation-grid {
  grid-template-columns: repeat(6, 1fr);
}

.operation-grid article {
  text-align: center;
  padding: 0 24px;
}

.operation-icon {
  display: block;
  width: 58px;
  height: 58px;
  margin: 0 auto 24px;
  background: var(--emerald);
}

.operation-icon.cube {
  clip-path: polygon(50% 0, 94% 25%, 94% 75%, 50% 100%, 6% 75%, 6% 25%);
}

.operation-icon.stack {
  clip-path: polygon(43% 0, 70% 14%, 70% 42%, 95% 56%, 95% 84%, 70% 100%, 50% 88%, 30% 100%, 5% 84%, 5% 56%, 30% 42%, 30% 14%);
}

.operation-icon.document {
  clip-path: polygon(20% 0, 72% 0, 90% 18%, 90% 100%, 20% 100%);
}

.operation-icon.truck {
  clip-path: polygon(5% 25%, 55% 25%, 55% 58%, 67% 58%, 76% 42%, 95% 42%, 95% 78%, 84% 78%, 80% 92%, 66% 92%, 61% 78%, 38% 78%, 34% 92%, 20% 92%, 15% 78%, 5% 78%);
}

.operation-icon.warehouse {
  clip-path: polygon(50% 0, 96% 26%, 96% 100%, 4% 100%, 4% 26%);
}

.operation-icon.cart {
  clip-path: polygon(2% 10%, 14% 10%, 20% 65%, 78% 65%, 88% 26%, 24% 26%, 22% 18%, 95% 18%, 83% 76%, 20% 76%, 20% 86%, 75% 86%, 75% 96%, 64% 96%, 64% 86%, 32% 86%, 32% 96%, 21% 96%, 20% 86%, 11% 86%);
}

.dpp-ready {
  overflow: hidden;
  padding-top: 102px;
  padding-bottom: 106px;
  background:
    radial-gradient(520px 360px at 2% 96%, rgba(61, 206, 168, 0.13), transparent 70%),
    var(--white);
}

.dpp-ready::after {
  content: "";
  position: absolute;
  right: -28px;
  bottom: -20px;
  width: 300px;
  height: 240px;
  opacity: 0.06;
  background: var(--teal);
  clip-path: polygon(8% 0, 78% 0, 96% 25%, 54% 25%, 49% 43%, 100% 43%, 94% 64%, 34% 64%, 27% 100%, 0 100%);
}

.dpp-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(360px, 0.78fr) minmax(620px, 1.22fr);
  align-items: start;
  gap: 74px;
}

.dpp-copy .section-heading {
  margin-bottom: 48px;
}

.dpp-copy p {
  max-width: 545px;
  margin: 0;
  color: rgba(3, 8, 28, 0.74);
  font-size: 17px;
  line-height: 1.78;
}

.dpp-copy p + p {
  margin-top: 22px;
}

.passport-record {
  overflow: hidden;
  border: 1px solid rgba(5, 126, 94, 0.3);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 54px rgba(3, 8, 28, 0.08);
}

.passport-header {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 84px;
  padding: 0 30px;
  color: var(--white);
  background: linear-gradient(90deg, #064936, var(--teal));
}

.passport-header img {
  width: 36px;
}

.passport-header strong,
.passport-header span {
  display: block;
}

.passport-header strong {
  font-size: 18px;
  font-weight: 800;
}

.passport-header span {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 700;
}

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

.passport-list article {
  min-height: 190px;
  padding: 28px 30px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.passport-list article:nth-child(2n) {
  border-right: 0;
}

.passport-list article:last-child {
  grid-column: 1 / -1;
  min-height: 150px;
  border-bottom: 0;
}

.passport-list span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 28px;
  margin-bottom: 18px;
  border-radius: 4px;
  color: var(--emerald);
  background: var(--mint);
  font-size: 13px;
  font-weight: 800;
}

.passport-list h3 {
  font-family: "Work Sans", Avenir Next, Helvetica Neue, Arial, sans-serif;
  font-size: 19px;
  line-height: 1.3;
  font-weight: 800;
}

.passport-list p {
  margin: 12px 0 0;
  color: rgba(3, 8, 28, 0.7);
  font-size: 15px;
  line-height: 1.7;
}

.data-layer {
  padding-bottom: 112px;
  border-top: 1px solid rgba(5, 126, 94, 0.08);
}

.data-diagram {
  display: grid;
  grid-template-columns: 190px 54px minmax(460px, 1fr) 54px 250px;
  align-items: center;
  gap: 0;
}

.source-list,
.output-list article,
.layer-panel {
  border: 1px solid rgba(5, 126, 94, 0.32);
  border-radius: 8px;
  background: var(--white);
}

.source-list {
  padding: 28px 32px;
}

.source-list ul {
  display: grid;
  gap: 11px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.source-list li {
  position: relative;
  margin: 0;
  padding-left: 24px;
  font-size: 14px;
}

.source-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 11px;
  height: 11px;
  background: var(--teal);
  clip-path: polygon(50% 0, 100% 28%, 100% 72%, 50% 100%, 0 72%, 0 28%);
}

.diagram-arrow {
  color: var(--emerald);
  font-size: 30px;
  text-align: center;
}

.layer-panel {
  overflow: hidden;
}

.layer-title {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 11px;
  min-height: 66px;
  background: linear-gradient(90deg, #06533e, var(--teal));
  color: var(--white);
  font-weight: 800;
}

.layer-title img {
  width: 32px;
}

.layer-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  min-height: 190px;
}

.layer-steps article {
  padding: 28px 24px;
  text-align: center;
  border-right: 1px solid var(--line);
}

.layer-steps article:last-child {
  border-right: 0;
}

.layer-steps span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: var(--mint);
  color: var(--emerald);
  font-weight: 900;
}

.foundation {
  min-height: 58px;
  padding: 16px;
  border-top: 1px solid var(--line);
  color: var(--emerald);
  text-align: center;
  font-weight: 700;
}

.output-list {
  display: grid;
  gap: 20px;
}

.output-list article {
  display: grid;
  grid-template-columns: 58px 1fr;
  column-gap: 16px;
  padding: 24px;
}

.output-icon {
  grid-row: span 2;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--teal);
  color: var(--white);
  font-size: 28px;
  font-weight: 900;
}

.output-icon.leaf {
  border-radius: 8px 26px 8px 26px;
}

.output-list p {
  margin-top: 6px;
}

.service-band {
  padding: 92px 0;
}

.service-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.8fr) minmax(550px, 1.2fr);
  gap: 62px;
  align-items: start;
}

.service-grid h2,
.final-cta h2 {
  font-size: 46px;
  line-height: 1.2;
  font-weight: 800;
}

.service-grid > div > p,
.final-cta p {
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 17px;
}

.service-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.service-points article {
  min-height: 224px;
  padding: 28px;
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.service-points h3 {
  color: var(--white);
}

.service-points p {
  color: rgba(255, 255, 255, 0.78);
}

.final-cta {
  position: relative;
  overflow: hidden;
  padding: 86px 0 90px;
  text-align: center;
  background: linear-gradient(140deg, #064936, #057e5e);
}

.final-cta::after {
  content: "";
  position: absolute;
  right: 9%;
  bottom: 24px;
  width: 220px;
  height: 150px;
  opacity: 0.08;
  background: var(--seafoam);
  clip-path: polygon(5% 0, 65% 0, 92% 30%, 52% 30%, 47% 47%, 100% 47%, 95% 70%, 35% 70%, 30% 100%, 0 100%);
}

.final-cta .section-inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.final-cta .button {
  margin-top: 30px;
}

.site-footer {
  background: var(--midnight);
  color: var(--white);
}

.footer-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  min-height: 112px;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: "Bitter", Georgia, serif;
  font-size: 22px;
  font-weight: 800;
}

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

.site-footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

.site-footer a:last-child {
  color: var(--seafoam);
  font-weight: 700;
}

@media (max-width: 1180px) {
  .site-header {
    grid-template-columns: 170px 1fr auto;
    width: min(100% - 44px, var(--max));
    gap: 20px;
  }

  .main-nav {
    gap: 22px;
  }

  .section-inner {
    width: min(100% - 44px, var(--max));
  }

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

  .hero {
    min-height: 0;
  }

  h1 {
    max-width: 760px;
    font-size: 58px;
  }

  .hero-lede {
    max-width: 720px;
  }

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

  .capability:nth-child(2) {
    border-right: 0;
    padding-right: 0;
  }

  .capability:nth-child(3) {
    padding-left: 0;
  }

  .operation-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 50px 0;
  }

  .operation-grid article:nth-child(3) {
    border-right: 0;
    padding-right: 0;
  }

  .operation-grid article:nth-child(4) {
    padding-left: 0;
  }

  .data-diagram {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .dpp-grid {
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .diagram-arrow {
    transform: rotate(90deg);
  }

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

@media (max-width: 780px) {
  .site-header {
    position: absolute;
    grid-template-columns: 1fr auto;
    padding-top: 20px;
  }

  .brand img {
    width: 134px;
  }

  .main-nav {
    display: none;
  }

  .site-header .button {
    min-height: 44px;
    padding-inline: 16px;
    font-size: 14px;
  }

  .hero {
    padding-top: 116px;
    padding-bottom: 86px;
  }

  h1 {
    font-size: 42px;
    line-height: 1.12;
  }

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

  .hero-actions {
    gap: 14px;
    margin-top: 34px;
  }

  .button {
    width: 100%;
    min-height: 54px;
  }

  .agent-console {
    border-width: 2px;
    border-radius: 12px;
  }

  .console-body {
    grid-template-columns: 1fr;
  }

  .console-rail {
    display: none;
  }

  .flow-board {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 18px;
  }

  .flow-card {
    min-height: 160px;
  }

  .flow-arrow {
    display: none;
  }

  .activity-panel {
    margin: 0 18px 18px;
  }

  .activity-row {
    grid-template-columns: 30px 1fr;
    gap: 4px 10px;
    padding: 14px;
  }

  .activity-row span:nth-child(n+3) {
    display: none;
  }

  .section-heading h2,
  .service-grid h2,
  .final-cta h2 {
    font-size: 32px;
  }

  .capabilities,
  .operations,
  .dpp-ready,
  .data-layer,
  .service-band,
  .final-cta {
    padding-top: 64px;
    padding-bottom: 70px;
  }

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

  .capability-row,
  .operation-grid,
  .layer-steps,
  .service-points {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .capability,
  .operation-grid article,
  .layer-steps article {
    padding: 0;
    border-right: 0;
  }

  .operation-grid article {
    text-align: left;
  }

  .operation-icon {
    margin-left: 0;
  }

  .source-list,
  .output-list article,
  .passport-list article,
  .service-points article {
    padding: 22px;
  }

  .passport-list {
    grid-template-columns: 1fr;
  }

  .passport-list article,
  .passport-list article:nth-child(2n),
  .passport-list article:last-child {
    grid-column: auto;
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .passport-list article:last-child {
    border-bottom: 0;
  }

  .output-list article {
    grid-template-columns: 1fr;
  }

  .output-icon {
    grid-row: auto;
    margin-bottom: 14px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    padding: 30px 0;
  }
}

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

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