@font-face {
  font-family: Inter;
  src: url("/assets/inter-regular.ttf") format("truetype");
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: Inter;
  src: url("/assets/inter-medium.ttf") format("truetype");
  font-weight: 500 700;
  font-display: swap;
}
:root {
  color-scheme: light;
  --ink: #24262a;
  --muted: #626970;
  --line: #dce1e5;
  --paper: #fafbfc;
  --accent: #d97056;
  --accent-ink: #96503c;
  --font: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
* {
  box-sizing: border-box;
  letter-spacing: 0;
  min-width: 0;
}
html {
  scroll-padding-top: 108px;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font: 400 1rem/1.65 var(--font);
  -webkit-font-smoothing: antialiased;
  overflow-wrap: anywhere;
}
button,
input {
  font: inherit;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
button {
  color: inherit;
  cursor: pointer;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  display: block;
  max-width: 100%;
}
h1,
h2,
h3,
h4,
h5,
p {
  margin: 0;
}
h1,
h2,
h3,
h4,
h5 {
  font-weight: 400;
  line-height: 1.18;
  text-wrap: balance;
}
h1 {
  font-size: 4rem;
}
h2 {
  font-size: 2.75rem;
}
h3 {
  font-size: 1.6rem;
}
p {
  color: var(--muted);
}
ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}
strong {
  font-weight: 500;
}
svg {
  width: 19px;
  height: 19px;
  stroke-width: 1.6;
  flex-shrink: 0;
  vertical-align: middle;
}
[hidden] {
  display: none !important;
}
.wrap {
  width: calc(100% - 96px);
  max-width: 1160px;
  margin-inline: auto;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
:focus-visible {
  outline: 2px solid #326d8f;
  outline-offset: 5px;
}
.skip-link {
  position: fixed;
  top: -100px;
  left: 20px;
  z-index: 100;
  padding: 12px 18px;
  background: white;
  border: 1px solid var(--ink);
}
.skip-link:focus {
  top: 15px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 14px 22px;
  min-height: 50px;
  border: 1px solid var(--ink);
  border-radius: 6px;
  color: #fff;
  background: var(--ink);
  font-size: 0.875rem;
  line-height: 1.5;
  font-weight: 500;
  transition:
    background 0.25s,
    box-shadow 0.25s,
    transform 0.25s;
}
.button:hover {
  background: #3b3f45;
  box-shadow: 0 8px 25px #24262a1b;
  transform: translateY(-2px);
}
.button-small {
  padding: 10px 16px;
  min-height: 42px;
  gap: 16px;
}
.button-light {
  color: var(--ink);
  border-color: #fff;
  background: #fff;
}
.button-light:hover {
  background: #edf1f4;
}
.button svg {
  width: 17px;
  height: 17px;
}
.icon-button {
  display: inline-grid;
  place-items: center;
  padding: 0;
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  border: 1px solid transparent;
  background: transparent;
  border-radius: 5px;
}
.icon-button:hover {
  background: #24262a0c;
  border-color: #24262a13;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-height: 44px;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.5;
}
.text-link svg {
  width: 17px;
  height: 17px;
  transition: transform 0.25s;
}
.text-link:hover svg {
  transform: translate(3px, -3px);
}
.eyebrow {
  font-size: 0.75rem;
  color: #636a71;
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 1.5;
  font-weight: 500;
}
.small-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #d97056;
  flex-shrink: 0;
}
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  background: #f7f9fbbb;
  backdrop-filter: blur(20px);
  border-bottom: 1px solid #aebac433;
}
.navigation {
  display: flex;
  align-items: center;
  gap: 25px;
  min-height: 86px;
}
.brand {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  min-height: 44px;
  line-height: 1;
}
.brand-logo {
  width: 164px;
  height: 36px;
  object-fit: contain;
  object-position: left center;
  filter: url(#brand-alpha);
}
.brand-filters {
  position: absolute;
  width: 0;
  height: 0;
  pointer-events: none;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  margin-inline: auto;
}
.nav-links a {
  position: relative;
  padding-block: 12px;
  color: #626970;
  font-size: 0.875rem;
}
.nav-links a:hover,
.nav-links a[aria-current] {
  color: var(--ink);
}
.nav-links a[aria-current]::after {
  content: "";
  position: absolute;
  bottom: 5px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--ink);
}
.menu-toggle {
  display: none;
}
/* Terrain masks and image plates share the same full-canvas projection. */
.opening-scene {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: #eef2f5;
  padding-bottom: 245px;
}
.scene-planes,
.scene-base,
.scene-plane,
.scene-foreground {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  pointer-events: none;
}
.scene-planes {
  z-index: -2;
}
.scene-base,
.scene-plane > img,
.scene-foreground > img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center bottom;
}
.scene-plane,
.scene-foreground {
  mask-size: cover;
  mask-position: center bottom;
  mask-repeat: no-repeat;
  mask-mode: alpha;
}
/* Overscan the recolored texture beneath the unchanged silhouette mask. */
.scene-plane > img,
.scene-foreground > img {
  transform: scale(1.05);
  transform-origin: center bottom;
}
.scene-base {
  z-index: 0;
}
.scene-plane--far {
  z-index: 1;
  mask-image: url("/assets/mountains/far-mask.webp");
}
.scene-plane--mid {
  z-index: 2;
  mask-image: url("/assets/mountains/mid-mask.webp");
}
.scene-foreground {
  z-index: 3;
  mask-image: url("/assets/mountains/front-mask.webp");
}
.hero {
  padding-top: 150px;
  position: relative;
  z-index: 2;
  text-align: center;
}
.hero .eyebrow {
  justify-content: center;
}
.hero h1 {
  margin-top: 24px;
  font-size: 4.65rem;
  line-height: 1.08;
}
.hero-promise {
  font-size: 2.35rem;
  line-height: 1.23;
  margin-top: 16px;
  color: #4e555e;
}
.hero-promise br {
  display: none;
}
.hero-description {
  margin-top: 23px;
  font-size: 1rem;
  color: #5e656e;
  line-height: 1.75;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: center;
  align-items: center;
  margin-top: 26px;
}
.hero-product {
  position: relative;
  z-index: 2;
  width: calc(100% - 96px);
  max-width: 790px;
  margin: 70px auto 0;
}
.hero-screen {
  transform-origin: center bottom;
}
.hero-screen > .screen {
  background: #f9fafbec;
  box-shadow:
    0 30px 100px #29344121,
    0 3px 10px #26324114;
}
.hero-screen .screen-pane {
  padding: 27px 36px 15px;
}
.hero-screen .screen-content {
  min-height: 390px;
}
.hero-screen .screen-heading h4 {
  font-size: 1.6rem;
}
.hero-screen .message-preview {
  padding: 18px 20px;
}
.hero-screen .draft-preview {
  padding: 20px;
}
.scene-bottom-fade {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(transparent, var(--paper));
  z-index: 4;
  pointer-events: none;
}
.scene-caption {
  position: absolute;
  bottom: 74px;
  left: 48px;
  right: 48px;
  z-index: 4;
  color: var(--ink);
  display: flex;
  justify-content: space-between;
  gap: 24px;
  font-size: 0.75rem;
  text-shadow: 0 1px 4px #fffffff0;
}
.intro-section {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  padding-block: 125px 150px;
}
.intro-section > .eyebrow {
  padding-top: 8px;
  align-items: start;
}
.intro-copy {
  display: grid;
  gap: 34px;
}
.intro-copy p {
  font-size: 1.9rem;
  line-height: 1.43;
  color: var(--ink);
}
.section-heading {
  display: flex;
  justify-content: space-between;
  gap: 64px;
  align-items: flex-end;
  margin-bottom: 54px;
}
.section-heading h2 {
  margin-top: 22px;
}
.section-heading > p {
  max-width: 355px;
  padding-bottom: 2px;
}
.section-heading > .text-link {
  flex-shrink: 0;
}
.systems-section {
  padding-bottom: 90px;
}
.feature-stack {
  display: grid;
  gap: 24px;
}
.feature-panel {
  position: relative;
}
.feature-panel__surface {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  padding: 6px;
  border: 1px solid #d9dfe5;
  border-radius: 8px;
  background: #f4f6f8;
  box-shadow: 0 2px 4px #24262a05;
  position: relative;
  isolation: isolate;
  transform-origin: center top;
}
.feature-panel__copy {
  padding: 42px 38px 28px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  z-index: 2;
}
.feature-panel__copy h3 {
  font-size: 2rem;
  max-width: 390px;
  margin-top: 56px;
}
.feature-description {
  margin-top: 24px;
  max-width: 380px;
  font-size: 1rem;
  line-height: 1.75;
}
.feature-panel__bottom {
  margin-top: auto;
  padding-top: 75px;
  width: 100%;
}
.feature-panel__bottom > p {
  display: flex;
  gap: 12px;
  align-items: center;
  font-size: 0.875rem;
  color: #636b73;
}
.feature-panel__bottom > p svg {
  color: #71808d;
  width: 16px;
}
.feature-panel__bottom .text-link {
  margin-top: 15px;
}
.feature-panel__media {
  min-width: 0;
  min-height: 660px;
  padding: 38px 27px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #cfd9e1;
  border-radius: 4px;
}
.feature-panel[data-media-side="left"] .feature-panel__copy {
  grid-column: 2;
  grid-row: 1;
}
.feature-panel[data-media-side="left"] .feature-panel__media {
  grid-column: 1;
  grid-row: 1;
}
.scene-crop {
  position: relative;
  background: #e4eaf0 url("/assets/mountains/master.webp") 36% 62% /
    cover no-repeat;
}
.scene-crop--operations {
  background-position: 72% 62%;
}
.scene-crop--customer-experience {
  background-position: 28% 60%;
}
.scene-crop::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #f4f7fa0f;
  pointer-events: none;
}
/* One reusable screen language for all three illustrative workflows. */
.screen {
  width: 100%;
  min-width: 0;
  color: #24262a;
  background: #fbfcfdeb;
  backdrop-filter: blur(22px);
  border: 1px solid #ffffffba;
  border-radius: 8px;
  box-shadow:
    0 16px 42px #25334521,
    inset 0 1px #fff;
  position: relative;
  overflow: hidden;
}
.screen p {
  color: #5f666f;
}
.screen-chrome {
  min-height: 49px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 12px 18px;
  border-bottom: 1px solid #73839326;
  background: #ffffff40;
}
.screen-wordmark {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.75rem;
  font-weight: 500;
}
.screen-wordmark svg {
  width: 16px;
  height: 16px;
}
.illustration-label {
  font-size: 0.75rem;
  color: #656d76;
}
.screen-tabs {
  display: flex;
  gap: 8px;
  padding: 10px 24px;
  border-bottom: 1px solid #73839326;
}
.screen-tabs button {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 13px;
  min-height: 43px;
  border: 1px solid transparent;
  border-radius: 5px;
  background: transparent;
  font-size: 0.875rem;
  color: #616d79;
}
.screen-tabs button[aria-selected="true"] {
  background: #ffffffba;
  color: #303841;
  border-color: #728a9b30;
  box-shadow: 0 1px 5px #25384b0d;
}
.screen-tabs button:hover {
  background: #ffffff85;
}
.screen-pane {
  padding: 22px 20px 13px;
}
.screen-content {
  min-height: 411px;
}
.screen-heading {
  margin-bottom: 21px;
}
.screen-breadcrumb {
  font-size: 0.75rem;
  color: #6b7681;
}
.screen-heading h4 {
  font-size: 1.25rem;
  margin-top: 8px;
  line-height: 1.25;
}
.screen-heading > p {
  font-size: 0.75rem;
  margin-top: 8px;
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: space-between;
  flex-wrap: wrap;
}
.live-pill {
  font-size: 0.75rem;
  color: #96503c;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.live-pill::before {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: currentColor;
}
.live-pill.blue {
  color: #4f728c;
}
.record-row {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 0 0 17px;
}
.record-row > div {
  min-width: 0;
}
.record-row strong {
  display: block;
  font-size: 0.875rem;
}
.record-row > div > span {
  display: block;
  font-size: 0.75rem;
  color: #68727d;
  margin-top: 1px;
}
.record-row > .tag,
.record-row > svg {
  margin-left: auto;
}
.avatar {
  width: 35px;
  height: 35px;
  display: grid;
  place-items: center;
  font-size: 0.75rem;
  border-radius: 50%;
  color: #3f657b;
  border: 1px solid #dae8ee;
  flex-shrink: 0;
}
.avatar-blue {
  background: #d7e7ed;
}
.avatar-peach {
  background: #f4e1db;
  border-color: #e9c9bd;
  color: #885141;
}
.tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  padding: 2px 7px;
  border: 1px solid #7c8c9d38;
  border-radius: 4px;
  color: #61717f;
  font-size: 0.75rem;
  line-height: 1.5;
}
.tag.green {
  background: #e6edf2;
  color: #4e6579;
}
.tag.blue {
  background: #dfebf1;
  color: #4a7186;
}
.message-preview {
  background: #ffffff69;
  border: 1px solid #6d809917;
  border-radius: 5px;
  padding: 13px 15px;
}
.field-label {
  display: block;
  font-size: 0.75rem;
  color: #63717e;
}
.message-preview p {
  font-size: 0.875rem;
  line-height: 1.6;
  margin-top: 7px;
}
.context-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  padding: 11px 0;
  font-size: 0.75rem;
  color: #697684;
}
.context-row span,
.history-strip span {
  display: flex;
  align-items: center;
  gap: 5px;
}
.context-row svg,
.history-strip svg {
  width: 13px;
  height: 13px;
}
.draft-preview {
  padding: 15px;
  background: #eef2f6ed;
  border: 1px solid #9fafc246;
  border-radius: 5px;
}
.draft-preview > div:first-child {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
}
.draft-preview > div:first-child > svg {
  width: 15px;
  height: 15px;
  color: #5e738a;
}
.draft-tag {
  margin-left: auto;
  color: #617389;
  font-size: 0.75rem;
}
.draft-preview > p {
  font-size: 0.875rem;
  line-height: 1.6;
  margin-top: 9px;
}
.source-note {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.75rem;
  color: #66758a;
  border-top: 1px solid #899aaf35;
  padding-top: 10px;
  margin-top: 12px;
}
.source-note svg {
  width: 14px;
  height: 14px;
}
.queue-head,
.queue-row {
  display: grid;
  grid-template-columns: 1.4fr 1fr 0.65fr;
  align-items: center;
  gap: 10px;
}
.queue-head {
  padding: 0 8px 10px;
  font-size: 0.75rem;
  color: #6e7b87;
}
.queue-row {
  padding: 12px 8px;
  border-top: 1px solid #788b9f2e;
  font-size: 0.75rem;
}
.queue-row.selected {
  background: #dfeaf188;
}
.queue-row strong {
  display: block;
  font-size: 0.875rem;
  line-height: 1.5;
}
.queue-row > div > span {
  display: block;
  color: #778591;
  font-size: 0.75rem;
}
.queue-row .tag {
  justify-self: start;
}
.review-preview {
  position: relative;
  padding: 19px 16px 15px 50px;
  background: #f6ebe6d9;
  border: 1px solid #ca9c8838;
  border-radius: 5px;
  margin-top: 14px;
}
.review-icon {
  position: absolute;
  left: 16px;
  top: 19px;
  color: #9b5c45;
}
.review-icon svg {
  width: 19px;
}
.review-preview h5 {
  font-size: 1rem;
  margin-top: 6px;
}
.review-preview p {
  font-size: 0.875rem;
  line-height: 1.6;
  margin-top: 8px;
}
.history-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  font-size: 0.75rem;
  color: #647887;
  padding: 0 0 15px;
}
.history-strip + .message-preview {
  margin-bottom: 13px;
}
.example-steps {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-top: 24px;
  gap: 5px;
}
.example-steps li {
  position: relative;
  min-width: 0;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 7px;
  text-align: center;
  color: #657684;
}
.example-steps li:not(:last-child)::after {
  content: "";
  position: absolute;
  height: 1px;
  left: calc(50% + 15px);
  right: calc(-50% + 15px);
  top: 12px;
  background: #8c9ba93d;
}
.step-number {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  height: 25px;
  width: 25px;
  border: 1px solid #9cabb94a;
  border-radius: 50%;
  background: #edf1f5;
  color: #607388;
  font-size: 0.75rem;
  transition:
    background 0.25s,
    color 0.25s,
    box-shadow 0.25s;
}
.step-name {
  font-size: 0.75rem;
  line-height: 1.35;
  min-height: 2.7em;
  max-width: 95px;
}
.example-steps .current .step-number {
  background: #354657;
  color: white;
  box-shadow: 0 0 0 4px #536f8c1a;
}
.example-steps .done .step-number {
  background: #dce6ef;
}
.example-steps .done::after {
  background: #94a9bb;
}
.example-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-top: 16px;
  padding-top: 9px;
  border-top: 1px solid #8797a72e;
  min-height: 48px;
}
.example-status {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  color: #5d7082;
  min-width: 0;
}
.status-point {
  width: 4px;
  height: 4px;
  background: #d97056;
  border-radius: 50%;
  flex-shrink: 0;
}
.example-buttons {
  display: flex;
  align-items: center;
  gap: 1px;
  flex-shrink: 0;
}
.example-play {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 8px 10px;
  min-height: 40px;
  min-width: 112px;
  border: 0;
  border-radius: 5px;
  background: #ffffff6b;
  font-size: 0.75rem;
}
.example-play:hover {
  background: #ffffffbd;
}
.example-play svg {
  width: 13px;
  height: 13px;
}
.example-reset {
  width: 36px;
  height: 40px;
}
.example-reset svg {
  width: 15px;
  height: 15px;
}
.approach-strip {
  padding-block: 45px 125px;
}
.three-columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 48px;
}
.three-columns article {
  border-top: 1px solid var(--line);
  padding-top: 25px;
}
.step-index {
  color: #87929d;
  font-size: 0.875rem;
}
.three-columns h3 {
  margin-top: 26px;
  font-size: 1.55rem;
}
.three-columns p {
  margin-top: 16px;
}
.three-columns > article > svg {
  color: #778da0;
  width: 23px;
  height: 23px;
}
.pilot-invitation {
  padding-block: 92px;
  background: #2b3037;
  color: white;
}
.pilot-invitation .eyebrow {
  color: #c0ccd6;
}
.pilot-invitation h2 {
  margin-top: 25px;
}
.pilot-invitation-inner {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  align-items: center;
  gap: 80px;
}
.pilot-invitation p:not(.eyebrow) {
  color: #c9d0d9;
}
.pilot-invitation .button {
  margin-top: 25px;
}
.closing {
  position: relative;
  isolation: isolate;
  min-height: 700px;
  padding-block: 108px 250px;
  overflow: hidden;
  background: #e8eef3 url("/assets/mountains/master.webp") center 58% / cover no-repeat;
}
.closing .scene-foreground {
  z-index: 1;
}
.closing-copy {
  position: relative;
  z-index: 2;
  text-align: center;
}
.closing .eyebrow {
  justify-content: center;
}
.closing h2 {
  font-size: 3.25rem;
  margin-top: 22px;
}
.closing-copy > p:not(.eyebrow) {
  margin-top: 22px;
  color: #596977;
}
.closing .button {
  margin-top: 28px;
}
.site-footer {
  padding-block: 64px 25px;
  background: #fafbfc;
}
.footer-top {
  display: flex;
  align-items: flex-start;
  gap: 64px;
}
.footer-top > p {
  font-size: 0.875rem;
  line-height: 1.5;
}
.footer-email {
  margin-left: auto;
  display: flex;
  gap: 22px;
  align-items: center;
  font-size: 0.875rem;
}
.footer-links {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding-block: 45px 27px;
}
.footer-links nav {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  font-size: 0.875rem;
  color: #626e7a;
}
.footer-links a:hover {
  color: var(--accent-ink);
}
.back-top {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
}
.back-top svg {
  width: 14px;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 25px;
  border-top: 1px solid var(--line);
  padding-top: 23px;
  color: #707d89;
  font-size: 0.75rem;
}
/* Keep demonstrations compact enough to read as a single screen. */
.screen-breadcrumb {
  display: block;
  line-height: 1.4;
}
.screen-heading {
  margin-bottom: 16px;
}
.screen-heading h4 {
  margin-top: 6px;
}
.screen-heading > p {
  margin-top: 6px;
  line-height: 1.5;
}
.screen-content {
  min-height: 0;
}
.screen-pane {
  padding-top: 20px;
}
.message-preview p,
.draft-preview > p,
.review-preview p {
  line-height: 1.5;
}
.context-row {
  padding-block: 9px;
}
.record-row {
  padding-bottom: 13px;
}
.example-steps {
  margin-top: 19px;
}
.feature-panel__media {
  min-height: 620px;
  padding-block: 28px;
}
.feature-panel .example-steps {
  display: none;
}
.feature-panel .screen-pane {
  padding-top: 18px;
}
.feature-panel .screen-heading h4 {
  font-size: 1.2rem;
}
.feature-panel .screen-heading {
  margin-bottom: 14px;
}
.feature-panel .screen-content {
  min-height: 0;
}
.feature-panel .context-row {
  display: none;
}
.feature-panel .draft-preview {
  margin-top: 12px;
}
.feature-panel .screen-chrome {
  padding-block: 10px;
}
.feature-panel .source-note {
  margin-top: 9px;
  padding-top: 8px;
}
.feature-panel .review-preview {
  margin-top: 12px;
  padding-block: 15px;
}
.feature-panel .example-footer {
  margin-top: 14px;
}
.hero-screen .screen-pane {
  display: flex;
  flex-direction: column;
}
.hero-screen .example-footer {
  order: -2;
  border-top: 0;
  border-bottom: 1px solid #8797a72e;
  padding: 0 0 12px;
  margin: 0 0 22px;
}
.hero-screen .example-steps {
  display: none;
}
.hero-screen .screen-content {
  min-height: 0;
}
.hero-screen .screen-heading {
  margin-bottom: 18px;
}
.hero-screen .screen-heading h4 {
  font-size: 1.5rem;
}
.hero-screen .screen-chrome {
  min-height: 47px;
}
.hero-screen .message-preview {
  padding: 14px 17px;
}
.hero-screen .draft-preview {
  padding: 16px 17px;
}
.hero-screen .screen-content > .context-row {
  padding-block: 10px;
}
.hero-product {
  margin-top: 57px;
}
.opening-scene {
  padding-bottom: 255px;
}
.feature-panel .queue-row {
  padding-block: 8px;
}
.feature-panel .queue-row > div > span {
  line-height: 1.3;
}
.feature-panel .review-preview {
  padding-block: 12px;
}
.feature-panel .history-strip {
  padding-bottom: 10px;
}
.feature-panel__media {
  padding-block: 24px;
}
/* Interior pages retain the material language without repeating the hero. */
.page-heading {
  padding-block: 165px 73px;
}
.page-heading h1 {
  margin-top: 27px;
  max-width: 950px;
}
.page-heading > p:not(.eyebrow) {
  margin-top: 28px;
  font-size: 1.125rem;
}
.page-heading > .button {
  margin-top: 29px;
}
.section-navigation {
  display: flex;
  gap: 38px;
  padding-block: 25px;
  border-block: 1px solid var(--line);
}
.section-navigation a {
  display: flex;
  align-items: center;
  gap: 35px;
  font-size: 0.875rem;
}
.section-navigation a:hover {
  color: var(--accent-ink);
}
.solution-section {
  padding-block: 86px 48px;
}
.solution-heading {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 75px;
}
.solution-heading .eyebrow {
  grid-column: 1/-1;
}
.solution-heading > p:last-child {
  max-width: 500px;
  align-self: center;
}
.solution-detail {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 78px;
  align-items: center;
  margin-top: 48px;
}
.solution-image {
  padding: 50px 38px;
  border-radius: 5px;
  min-width: 0;
}
.solution-detail.reverse .solution-image {
  grid-column: 2;
  grid-row: 1;
}
.solution-detail.reverse .solution-notes {
  grid-column: 1;
  grid-row: 1;
}
.solution-notes h3 {
  font-size: 1.8rem;
  margin-bottom: 24px;
}
.solution-notes dl {
  display: grid;
  gap: 20px;
  margin: 0;
}
.solution-notes dt {
  font-size: 0.875rem;
  font-weight: 500;
  color: #394957;
}
.solution-notes dd {
  margin: 5px 0 0;
  font-size: 1rem;
  color: var(--muted);
}
.solution-notes > a {
  margin-top: 24px;
}
.quiet-note {
  display: flex;
  gap: 20px;
  padding-block: 30px 90px;
  align-items: flex-start;
}
.quiet-note > svg {
  color: #798d9e;
  margin-top: 4px;
}
.quiet-note > p {
  max-width: 900px;
  font-size: 0.875rem;
}
.process-section {
  padding-bottom: 100px;
}
.process-list article {
  display: grid;
  grid-template-columns: 90px 1.7fr 1fr;
  gap: 45px;
  padding-block: 39px;
  border-top: 1px solid var(--line);
}
.process-list article > span {
  font-size: 0.875rem;
  color: #798998;
  padding-top: 5px;
}
.process-list h2 {
  font-size: 1.9rem;
}
.process-list article > div > p {
  margin-top: 18px;
  max-width: 570px;
}
.process-output {
  font-size: 0.875rem;
  color: #8d5746;
  border-left: 1px solid #bda39466;
  padding-left: 24px;
  align-self: center;
}
.review-section {
  background: #edf2f3;
  padding-block: 100px;
}
.review-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}
.review-layout h2 {
  margin-top: 23px;
}
.review-layout > div > p:not(.eyebrow) {
  margin-top: 23px;
}
.review-layout .text-link {
  margin-top: 23px;
}
.review-document {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: #fcfdfe;
  border: 1px solid #dce3e9;
  border-radius: 8px;
  padding: 24px 30px 0;
  box-shadow: 0 20px 45px #35445310;
}
.document-heading {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 0.875rem;
}
.document-heading .tag {
  margin-left: auto;
}
.review-document h3 {
  font-size: 1.9rem;
  margin-top: 34px;
}
.review-document dl {
  margin: 26px 0;
}
.review-document dl > div {
  padding-block: 17px;
  border-top: 1px solid #e1e7ed;
}
.review-document dt {
  font-size: 0.75rem;
  color: #7a8c9b;
}
.review-document dd {
  font-size: 0.875rem;
  margin: 7px 0 0;
  color: #5d6d7b;
}
.document-footer {
  margin-inline: -30px;
  padding: 18px 30px;
  background: #e7edf3;
  font-size: 0.75rem;
  color: #51677a;
  display: flex;
  align-items: center;
  gap: 8px;
}
.document-footer svg {
  width: 16px;
}
.principles-section {
  padding-block: 110px;
}
.pilot-overview {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 120px;
  padding-block: 30px 110px;
}
.pilot-overview h2 {
  margin-top: 22px;
}
.pilot-overview-main > p:not(.eyebrow) {
  margin-top: 22px;
}
.pilot-facts {
  border-top: 1px solid var(--line);
}
.pilot-facts > div {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  align-items: center;
  padding-block: 25px;
  border-bottom: 1px solid var(--line);
}
.pilot-facts strong {
  font-size: 2.5rem;
  line-height: 1.2;
}
.pilot-facts span {
  max-width: 145px;
  font-size: 0.875rem;
  color: #647b8e;
}
.deliverables-section {
  padding-block: 90px;
  background: #f0f4f7;
}
.deliverables-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 35px 80px;
}
.deliverables-list article {
  border-top: 1px solid #d5dfe7;
  padding-top: 24px;
}
.deliverables-list article > span {
  color: #899dad;
  font-size: 0.875rem;
}
.deliverables-list h3 {
  margin-top: 24px;
}
.deliverables-list p {
  margin-top: 15px;
}
.fit-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  padding-block: 100px;
}
.fit-section h2 {
  margin-top: 23px;
}
.fit-section p:not(.eyebrow) {
  margin-top: 23px;
}
.check-list {
  display: grid;
  gap: 20px;
  align-content: center;
}
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  font-size: 1rem;
  color: var(--muted);
}
.check-list svg {
  margin-top: 4px;
  color: #9a6650;
}
.faq-section {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 100px;
  padding-block: 0 110px;
}
.faq-section h2 {
  margin-top: 22px;
}
.faq-section > div > p:not(.eyebrow) {
  margin-top: 26px;
  font-size: 0.875rem;
}
.faq-list details {
  border-bottom: 1px solid var(--line);
}
.faq-list details:first-child {
  border-top: 1px solid var(--line);
}
.faq-list summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding-block: 23px;
  cursor: pointer;
  list-style: none;
}
.faq-list summary::-webkit-details-marker {
  display: none;
}
.faq-list summary svg {
  width: 16px;
  height: 16px;
  color: #7c90a1;
  transition: transform 0.25s;
}
.faq-list details[open] summary svg {
  transform: rotate(45deg);
}
.faq-list details > p {
  padding: 0 24px 23px 0;
  font-size: 0.875rem;
}
.about-landscape {
  height: 415px;
  position: relative;
  overflow: hidden;
}
.about-landscape img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 66%;
}
.about-landscape > span {
  position: absolute;
  bottom: 25px;
  left: 48px;
  color: var(--ink);
  font-size: 0.75rem;
  text-shadow: 0 1px 4px #fffffff0;
}
.founder-section {
  display: grid;
  grid-template-columns: 1fr 1.45fr;
  gap: 100px;
  padding-block: 105px 25px;
}
.founder-section h2 {
  margin-top: 23px;
}
.founder-role {
  display: block;
  font-size: 0.875rem;
  margin-top: 15px;
  color: #7b8c9a;
}
.editorial-copy p + p {
  margin-top: 22px;
}
.editorial-copy .lead {
  font-size: 1.65rem;
  line-height: 1.4;
  color: var(--ink);
}
.editorial-copy .credential-note {
  font-size: 0.875rem;
  border-top: 1px solid var(--line);
  padding-top: 23px;
}
.contact-section {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 100px;
  padding-block: 22px 115px;
}
.contact-address {
  font-size: 2.1rem;
  line-height: 1.35;
  display: block;
  margin-top: 28px;
  overflow-wrap: anywhere;
}
.contact-address svg {
  margin-left: 20px;
  width: 25px;
  height: 25px;
}
.contact-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 30px;
}
.copy-status {
  min-height: 1.65em;
  margin-top: 12px;
  font-size: 0.875rem;
  color: #96503c;
}
.contact-small {
  font-size: 0.875rem;
  margin-top: 4px;
}
.contact-guide h2 {
  font-size: 2rem;
}
.contact-guide ol {
  display: grid;
  gap: 27px;
  margin-top: 33px;
}
.contact-guide li {
  display: flex;
  gap: 22px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.contact-guide li > span {
  font-size: 0.75rem;
  color: #80919e;
  padding-top: 3px;
}
.contact-guide h3 {
  font-size: 1.1rem;
}
.contact-guide p {
  font-size: 0.875rem;
  margin-top: 9px;
}
.contact-landscape {
  height: 400px;
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: flex-end;
  padding-bottom: 37px;
  color: var(--ink);
}
.contact-landscape img {
  position: absolute;
  inset: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center 76%;
  z-index: -1;
}
.contact-landscape .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  color: var(--ink);
  text-shadow: 0 1px 4px #fffffff0;
}
.contact-landscape span {
  font-size: 0.75rem;
}
.contact-landscape a {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 0.875rem;
}
.not-found {
  min-height: 70vh;
  padding-block: 160px 100px;
}
.not-found h1 {
  margin-block: 25px;
}
.not-found .hero-actions {
  justify-content: flex-start;
}
@media (max-width: 1100px) {
  .wrap {
    width: calc(100% - 64px);
  }
  .nav-links {
    gap: 21px;
  }
  .navigation {
    gap: 20px;
  }
  .feature-panel__copy {
    padding: 32px 25px 27px;
  }
  .feature-panel__copy h3 {
    font-size: 1.8rem;
    margin-top: 42px;
  }
  .feature-panel__media {
    padding: 30px 17px;
  }
  .screen-pane {
    padding-inline: 16px;
  }
  .screen-chrome {
    padding-inline: 14px;
  }
  .screen-content {
    min-height: 440px;
  }
  .feature-panel__bottom {
    padding-top: 50px;
  }
  .solution-detail,
  .review-layout,
  .pilot-overview,
  .fit-section,
  .faq-section,
  .founder-section,
  .contact-section {
    gap: 55px;
  }
  .solution-image {
    padding: 40px 22px;
  }
  .section-heading {
    gap: 45px;
  }
  .contact-address {
    font-size: 1.75rem;
  }
  .hero h1 {
    font-size: 4.2rem;
  }
}
@media (max-width: 850px) {
  .navigation {
    min-height: 74px;
  }
  .nav-links {
    display: none;
    position: absolute;
    top: 73px;
    left: 24px;
    right: 24px;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 13px;
    background: #fbfcfe;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: 0 20px 35px #233b5015;
  }
  .nav-links.open {
    display: flex;
  }
  .nav-links a {
    padding: 13px;
  }
  .nav-links a[aria-current]::after {
    left: 13px;
    right: auto;
    width: 22px;
  }
  .nav-cta {
    margin-left: auto;
  }
  .menu-toggle {
    display: inline-grid;
  }
  h1 {
    font-size: 3.25rem;
  }
  h2 {
    font-size: 2.3rem;
  }
  .intro-section {
    grid-template-columns: 1fr;
    gap: 27px;
    padding-block: 85px 100px;
  }
  .intro-copy {
    gap: 25px;
  }
  .intro-copy p {
    font-size: 1.65rem;
  }
  .section-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 23px;
    margin-bottom: 35px;
  }
  .section-heading > p {
    max-width: 540px;
  }
  .feature-panel__surface {
    grid-template-columns: 1fr;
  }
  .feature-panel__copy,
  .feature-panel[data-media-side="left"] .feature-panel__copy {
    grid-column: 1;
    grid-row: 1;
    padding: 35px 30px;
  }
  .feature-panel__media,
  .feature-panel[data-media-side="left"] .feature-panel__media {
    grid-column: 1;
    grid-row: 2;
    min-height: 0;
    padding: 45px;
  }
  .feature-panel__copy h3 {
    margin-top: 25px;
    max-width: 100%;
    font-size: 2rem;
  }
  .feature-description {
    max-width: 100%;
    margin-top: 18px;
  }
  .feature-panel__bottom {
    padding-top: 28px;
  }
  .feature-panel__bottom .text-link {
    margin-top: 8px;
  }
  .screen-content {
    min-height: 0;
  }
  .three-columns {
    gap: 27px;
  }
  .three-columns h3 {
    font-size: 1.3rem;
  }
  .three-columns p {
    font-size: 0.875rem;
  }
  .pilot-invitation-inner {
    gap: 40px;
  }
  .pilot-invitation h2 {
    font-size: 2.15rem;
  }
  .footer-top {
    gap: 32px;
  }
  .footer-links {
    align-items: flex-start;
  }
  .footer-links nav {
    gap: 15px 20px;
  }
  .page-heading {
    padding-top: 133px;
  }
  .solution-heading {
    gap: 20px 40px;
  }
  .solution-detail,
  .solution-detail.reverse {
    grid-template-columns: 1fr;
    gap: 33px;
  }
  .solution-detail.reverse .solution-image,
  .solution-detail.reverse .solution-notes {
    grid-column: auto;
    grid-row: auto;
  }
  .solution-image {
    padding: 50px 60px;
  }
  .solution-notes dl {
    grid-template-columns: 1fr 1fr;
    gap: 25px 35px;
  }
  .process-list article {
    grid-template-columns: 45px 1fr;
    gap: 16px 25px;
  }
  .process-output {
    grid-column: 2;
    border-left: 0;
    padding-left: 0;
  }
  .review-layout,
  .pilot-overview,
  .fit-section,
  .faq-section,
  .founder-section,
  .contact-section {
    grid-template-columns: 1fr;
  }
  .review-layout,
  .founder-section,
  .contact-section {
    gap: 45px;
  }
  .pilot-facts {
    display: flex;
    gap: 30px;
    border-top: 0;
  }
  .pilot-facts > div {
    flex: 1;
    display: block;
    border-top: 1px solid var(--line);
    border-bottom: 0;
  }
  .pilot-facts span {
    display: block;
    margin-top: 16px;
  }
  .contact-address {
    font-size: 2.6rem;
  }
  .contact-address br {
    display: none;
  }
  .footer-email {
    max-width: 155px;
  }
}
@media (max-width: 600px) {
  html {
    scroll-padding-top: 90px;
  }
  .wrap {
    width: calc(100% - 40px);
  }
  h1 {
    font-size: 2.5rem;
  }
  h2 {
    font-size: 2rem;
  }
  .navigation {
    gap: 10px;
  }
  .brand-logo {
    width: 132px;
    height: 30px;
  }
  .nav-cta {
    font-size: 0.75rem;
    padding: 9px 11px;
    gap: 9px;
    min-height: 38px;
  }
  .nav-cta svg {
    width: 13px;
    height: 13px;
  }
  .menu-toggle {
    width: 32px;
    height: 42px;
  }
  .hero {
    padding-top: 126px;
  }
  .hero .eyebrow {
    font-size: 0.75rem;
    gap: 7px;
  }
  .hero h1 {
    font-size: 2.75rem;
    margin-top: 25px;
  }
  .hero-promise {
    font-size: 1.8rem;
    margin-top: 15px;
  }
  .hero-promise br {
    display: block;
  }
  .hero-description {
    font-size: 1rem;
    margin-top: 22px;
  }
  .hero-description br {
    display: none;
  }
  .hero-actions {
    gap: 9px;
    flex-direction: column;
    margin-top: 25px;
  }
  .hero-product {
    width: calc(100% - 32px);
    margin-top: 43px;
  }
  .hero-screen .screen-pane {
    padding: 23px 17px 13px;
  }
  .hero-screen > .screen {
    padding-bottom: 112px;
  }
  .hero-screen .screen-heading h4 {
    font-size: 1.25rem;
  }
  .hero-screen .screen-content {
    min-height: 470px;
  }
  .hero-screen .message-preview,
  .hero-screen .draft-preview {
    padding: 14px;
  }
  .screen-tabs {
    gap: 3px;
    padding: 7px;
  }
  .screen-tabs button {
    font-size: 0.75rem;
    gap: 6px;
    padding-inline: 5px;
  }
  .screen-tabs button svg {
    width: 15px;
    height: 15px;
  }
  .screen-chrome {
    padding-inline: 13px;
    gap: 5px;
  }
  .screen-wordmark {
    font-size: 0.75rem;
    gap: 5px;
  }
  .illustration-label {
    font-size: 0.75rem;
  }
  .opening-scene {
    padding-bottom: 240px;
  }
  /* Keep the terrain projection independent of enlarged text height. */
  .opening-scene .scene-plane,
  .opening-scene .scene-foreground {
    top: auto;
    bottom: 0;
    height: min(100%, 1280px);
  }
  .scene-caption {
    left: 20px;
    right: 20px;
    bottom: 58px;
  }
  .scene-caption span:last-child {
    display: none;
  }
  .intro-section {
    padding-block: 65px 80px;
  }
  .intro-copy p {
    font-size: 1.45rem;
    line-height: 1.48;
  }
  .systems-section {
    padding-bottom: 60px;
  }
  .feature-stack {
    gap: 22px;
  }
  .feature-panel__copy,
  .feature-panel[data-media-side="left"] .feature-panel__copy {
    padding: 27px 18px 30px;
  }
  .feature-panel__copy h3 {
    font-size: 1.7rem;
  }
  .feature-description {
    font-size: 1rem;
  }
  .feature-panel__media,
  .feature-panel[data-media-side="left"] .feature-panel__media {
    padding: 28px 11px;
  }
  .screen-pane {
    padding-inline: 13px;
  }
  .screen-heading h4 {
    font-size: 1.18rem;
  }
  .record-row {
    gap: 8px;
  }
  .record-row strong {
    font-size: 0.875rem;
  }
  .message-preview,
  .draft-preview {
    padding-inline: 12px;
  }
  .queue-head,
  .queue-row {
    gap: 7px;
    grid-template-columns: 1.3fr 0.9fr 0.65fr;
  }
  .queue-row strong {
    font-size: 0.75rem;
  }
  .review-preview {
    padding-left: 37px;
  }
  .review-icon {
    left: 11px;
  }
  .review-icon svg {
    width: 16px;
  }
  .example-steps {
    gap: 3px;
  }
  .example-footer {
    flex-wrap: wrap;
    align-items: center;
    gap: 4px 8px;
  }
  .example-buttons {
    margin-left: auto;
  }
  .example-play {
    min-width: 105px;
  }
  .three-columns {
    grid-template-columns: 1fr;
    gap: 29px;
  }
  .three-columns article {
    padding-top: 20px;
  }
  .three-columns h3 {
    margin-top: 18px;
    font-size: 1.5rem;
  }
  .three-columns p {
    font-size: 1rem;
    margin-top: 12px;
  }
  .approach-strip {
    padding-block: 15px 70px;
  }
  .pilot-invitation {
    padding-block: 63px;
  }
  .pilot-invitation-inner {
    grid-template-columns: 1fr;
    gap: 27px;
  }
  .pilot-invitation h2 {
    font-size: 2rem;
  }
  .closing {
    min-height: 640px;
    padding-block: 75px 210px;
  }
  .closing h2 {
    font-size: 2.5rem;
  }
  .closing-copy p br {
    display: none;
  }
  .closing {
    background-position: 48% center;
  }
  .closing .button {
    gap: 15px;
  }
  .site-footer {
    padding-top: 40px;
  }
  .footer-top {
    flex-wrap: wrap;
    gap: 22px;
  }
  .footer-top > p {
    margin-left: auto;
  }
  .footer-email {
    margin-left: 0;
    max-width: none;
  }
  .footer-links {
    flex-direction: column;
    gap: 25px;
    padding-top: 30px;
  }
  .footer-links nav {
    gap: 18px 24px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 7px;
  }
  .page-heading {
    padding-block: 129px 50px;
  }
  .page-heading h1 {
    margin-top: 24px;
  }
  .page-heading > p:not(.eyebrow) {
    font-size: 1rem;
    margin-top: 23px;
  }
  .page-heading p br {
    display: none;
  }
  .section-navigation {
    gap: 20px;
    justify-content: space-between;
    align-items: center;
  }
  .section-navigation a {
    gap: 7px;
    font-size: 0.75rem;
  }
  .section-navigation svg {
    width: 14px;
    height: 14px;
  }
  .solution-section {
    padding-block: 57px 20px;
  }
  .solution-heading {
    grid-template-columns: 1fr;
    gap: 23px;
  }
  .solution-detail {
    margin-top: 30px;
  }
  .solution-image {
    padding: 33px 15px;
  }
  .solution-notes h3 {
    font-size: 1.6rem;
  }
  .solution-notes dl {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .quiet-note {
    padding-block: 35px 65px;
    gap: 13px;
  }
  .process-section {
    padding-bottom: 50px;
  }
  .process-list article {
    grid-template-columns: 25px 1fr;
    padding-block: 29px;
    gap: 12px 17px;
  }
  .process-list h2 {
    font-size: 1.5rem;
  }
  .process-list article > div > p {
    margin-top: 16px;
  }
  .review-section {
    padding-block: 62px;
  }
  .review-layout {
    gap: 33px;
  }
  .review-document {
    padding-inline: 21px;
  }
  .document-footer {
    margin-inline: -21px;
    padding-inline: 21px;
  }
  .review-document h3 {
    font-size: 1.7rem;
  }
  .principles-section {
    padding-block: 70px;
  }
  .pilot-overview {
    padding-block: 10px 64px;
    gap: 28px;
  }
  .pilot-facts {
    flex-direction: column;
    gap: 0;
  }
  .pilot-facts > div {
    display: flex;
    align-items: center;
    gap: 20px;
    padding-block: 23px;
  }
  .pilot-facts span {
    margin: 0;
    max-width: 155px;
  }
  .pilot-facts strong {
    font-size: 2.2rem;
  }
  .deliverables-section {
    padding-block: 62px;
  }
  .deliverables-list {
    grid-template-columns: 1fr;
    gap: 29px;
  }
  .fit-section {
    padding-block: 64px;
    gap: 30px;
  }
  .faq-section {
    padding-bottom: 70px;
    gap: 30px;
  }
  .faq-list summary {
    font-size: 1rem;
    padding-block: 21px;
  }
  .about-landscape {
    height: 310px;
  }
  .about-landscape > span {
    left: 20px;
    right: 20px;
  }
  .founder-section {
    padding-top: 66px;
    gap: 32px;
  }
  .editorial-copy .lead {
    font-size: 1.45rem;
  }
  .contact-section {
    padding-block: 10px 65px;
    gap: 50px;
  }
  .contact-address {
    font-size: 1.8rem;
  }
  .contact-address br {
    display: block;
  }
  .contact-guide h2 {
    font-size: 1.75rem;
  }
  .contact-landscape {
    height: 330px;
  }
  .contact-landscape .wrap {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
}
@media (max-width: 370px) {
  .wrap {
    width: calc(100% - 32px);
  }
  .brand-logo {
    width: 116px;
    height: 27px;
  }
  .nav-cta svg {
    display: none;
  }
  .hero h1 {
    font-size: 2.4rem;
  }
  .hero-screen .screen-pane {
    padding-inline: 13px;
  }
  .hero-screen .screen-content {
    min-height: 505px;
  }
  .screen-tabs button {
    flex-direction: column;
    gap: 5px;
    height: 64px;
    line-height: 1.25;
    white-space: nowrap;
  }
  .screen-chrome {
    align-items: flex-start;
  }
  .illustration-label {
    max-width: 90px;
    line-height: 1.3;
  }
  .feature-panel__media,
  .feature-panel[data-media-side="left"] .feature-panel__media {
    padding-inline: 6px;
  }
  .screen-pane {
    padding-inline: 10px;
  }
  .step-name {
    overflow-wrap: anywhere;
  }
  .contact-address {
    font-size: 1.55rem;
  }
  .contact-address svg {
    width: 19px;
    margin-left: 10px;
  }
}
