@font-face {
  font-family: "KW Sans";
  src: local("Inter"), local("Segoe UI"), local("Helvetica Neue");
  font-display: swap;
}

:root {
  color-scheme: dark;
  --ink: #f2f7fb;
  --muted: #a7b6c8;
  --dim: #71849b;
  --navy-950: #050c16;
  --navy-900: #07111f;
  --navy-850: #0a1728;
  --navy-800: #0d1b2d;
  --line: rgba(173, 203, 225, 0.14);
  --line-strong: rgba(125, 211, 252, 0.3);
  --cyan: #65d9e7;
  --cyan-bright: #8be6f0;
  --blue: #9fb7ff;
  --teal: #65e2c2;
  --light-section: #e9f0f2;
  --light-ink: #0b1a28;
  --light-muted: #536675;
  --shell: min(1180px, calc(100% - 48px));
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--navy-950);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--navy-950);
  color: var(--ink);
  font-family: "KW Sans", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
}

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

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

:focus-visible {
  outline: 3px solid var(--cyan-bright);
  outline-offset: 4px;
}

::selection {
  background: rgba(101, 217, 231, 0.28);
  color: #fff;
}

.skip-link {
  position: fixed;
  z-index: 999;
  top: 12px;
  left: 12px;
  transform: translateY(-160%);
  border-radius: 8px;
  background: #fff;
  color: #07111f;
  font-weight: 800;
  padding: 10px 14px;
  text-decoration: none;
  transition: transform 160ms ease;
}

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

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

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  border-bottom: 1px solid transparent;
  background: rgba(5, 12, 22, 0.68);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: border-color 180ms ease, background 180ms ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  background: rgba(5, 12, 22, 0.92);
}

.header-inner {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--ink);
  text-decoration: none;
}

.brand-mark {
  width: 21px;
  color: var(--blue);
}

.brand-name {
  font-size: 1.06rem;
  font-weight: 750;
  letter-spacing: -0.02em;
}

.brand-name span {
  color: var(--cyan);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(19px, 3vw, 40px);
}

.site-nav a {
  position: relative;
  color: #bac8d6;
  font-size: 0.83rem;
  font-weight: 650;
  letter-spacing: 0.02em;
  text-decoration: none;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1px;
  background: var(--cyan);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 160ms ease;
}

.site-nav a:hover {
  color: #fff;
}

.site-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 860px;
  padding: 168px 0 104px;
  background:
    radial-gradient(circle at 82% 34%, rgba(66, 154, 200, 0.13), transparent 32%),
    radial-gradient(circle at 20% 12%, rgba(82, 103, 198, 0.1), transparent 27%),
    linear-gradient(180deg, #07111f 0%, #081422 74%, #0a1624 100%);
}

.hero::before {
  position: absolute;
  z-index: -1;
  top: 76px;
  left: 50%;
  width: 1px;
  height: calc(100% - 76px);
  background: linear-gradient(transparent, rgba(125, 211, 252, 0.11), transparent);
  content: "";
}

.hero-grid {
  position: absolute;
  z-index: -1;
  inset: 0;
  opacity: 0.22;
  background-image:
    linear-gradient(rgba(150, 190, 220, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(150, 190, 220, 0.045) 1px, transparent 1px);
  background-size: 76px 76px;
  mask-image: linear-gradient(to bottom, transparent 4%, #000 30%, transparent 95%);
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(520px, 1.1fr);
  align-items: center;
  gap: clamp(50px, 7vw, 104px);
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.eyebrow,
.section-index {
  margin: 0;
  color: var(--cyan);
  font-size: 0.72rem;
  font-weight: 760;
  letter-spacing: 0.14em;
  line-height: 1.3;
  text-transform: uppercase;
}

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

.eyebrow > span {
  width: 28px;
  height: 1px;
  background: currentColor;
}

h1,
h2,
h3,
p {
  text-wrap: pretty;
}

h1,
h2,
h3 {
  margin-top: 0;
  color: var(--ink);
  font-weight: 640;
  letter-spacing: -0.042em;
}

h1 {
  max-width: 700px;
  margin-bottom: 28px;
  font-size: clamp(3.25rem, 5.7vw, 5.7rem);
  line-height: 0.98;
}

.hero .eyebrow {
  margin-bottom: 32px;
}

.hero-lede {
  max-width: 640px;
  margin: 0;
  color: #b7c5d5;
  font-size: clamp(1.05rem, 1.4vw, 1.24rem);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 40px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 760;
  line-height: 1;
  padding: 0 21px;
  text-decoration: none;
  transition: border-color 160ms ease, background 160ms ease, color 160ms ease, transform 160ms ease;
}

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

.button-primary {
  background: var(--cyan-bright);
  color: #06131e;
  box-shadow: 0 10px 28px rgba(53, 194, 210, 0.12);
}

.button-primary:hover {
  background: #b1f1f6;
}

.button-secondary {
  border-color: var(--line-strong);
  background: rgba(15, 35, 54, 0.42);
  color: #d9e7f2;
}

.button-secondary:hover {
  border-color: rgba(139, 230, 240, 0.58);
  background: rgba(26, 52, 72, 0.62);
}

.hero-note {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 26px 0 0;
  color: var(--dim);
  font-size: 0.75rem;
}

.hero-note::before {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 5px rgba(101, 226, 194, 0.08);
  content: "";
}

.operating-picture {
  position: relative;
  border: 1px solid rgba(151, 194, 222, 0.16);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: rgba(8, 21, 36, 0.76);
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.035);
  transform: perspective(1500px) rotateY(-2deg) rotateX(1deg);
}

.picture-topline,
.picture-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.picture-topline {
  min-height: 82px;
  border-bottom: 1px solid var(--line);
  padding: 17px 21px;
}

.picture-topline > div {
  display: grid;
  gap: 2px;
}

.picture-kicker {
  color: var(--dim);
  font-size: 0.6rem;
  font-weight: 760;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.picture-topline strong {
  font-size: 0.92rem;
  font-weight: 680;
}

.picture-status {
  border: 1px solid rgba(101, 226, 194, 0.23);
  border-radius: 999px;
  background: rgba(101, 226, 194, 0.07);
  color: #a8ead8;
  font-size: 0.61rem;
  font-weight: 720;
  letter-spacing: 0.04em;
  padding: 6px 9px;
}

.map-field {
  position: relative;
  aspect-ratio: 1.27;
  min-height: 450px;
  overflow: hidden;
  background:
    radial-gradient(circle at 52% 48%, rgba(74, 132, 181, 0.08), transparent 40%),
    linear-gradient(145deg, rgba(11, 28, 47, 0.83), rgba(5, 15, 27, 0.85));
}

.map-field::before,
.map-field::after {
  position: absolute;
  z-index: 2;
  pointer-events: none;
  content: "";
}

.map-field::before {
  inset: 0;
  background: linear-gradient(rgba(151, 194, 222, 0.035) 1px, transparent 1px), linear-gradient(90deg, rgba(151, 194, 222, 0.035) 1px, transparent 1px);
  background-size: 34px 34px;
}

.map-field::after {
  inset: 0;
  box-shadow: inset 0 0 80px 25px rgba(3, 11, 20, 0.42);
}

.map-art {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.boundary {
  fill: rgba(83, 139, 178, 0.035);
  stroke: rgba(130, 194, 225, 0.19);
  stroke-dasharray: 5 7;
  stroke-width: 1.5;
}

.minor-lines path {
  fill: none;
  stroke: rgba(145, 178, 201, 0.11);
  stroke-width: 1.2;
}

.primary-route {
  fill: none;
  stroke: url(#routeGradient);
  stroke-linecap: round;
  stroke-width: 3;
}

.primary-route.secondary {
  opacity: 0.55;
  stroke-width: 2;
}

.signal-lines path {
  fill: none;
  stroke: rgba(101, 217, 231, 0.19);
  stroke-dasharray: 4 5;
  stroke-width: 1.2;
}

.map-node circle:not(.node-halo) {
  fill: var(--cyan-bright);
}

.node-halo {
  fill: rgba(101, 217, 231, 0.035);
  stroke: rgba(101, 217, 231, 0.13);
}

.node-two .node-halo {
  animation: signal-pulse 4s ease-out infinite;
}

.node-three circle:not(.node-halo),
.node-five circle:not(.node-halo) {
  fill: var(--blue);
}

.map-pin path {
  fill: #93e7f0;
}

.map-pin circle {
  fill: #0a1728;
}

@keyframes signal-pulse {
  0%, 50%, 100% { opacity: 0.45; transform: scale(0.85); }
  75% { opacity: 1; transform: scale(1.15); }
}

.map-label {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(155, 197, 222, 0.18);
  border-radius: 999px;
  background: rgba(7, 20, 34, 0.82);
  box-shadow: 0 8px 20px rgba(1, 6, 12, 0.18);
  color: #c6d4e0;
  font-size: 0.61rem;
  font-weight: 650;
  padding: 7px 10px;
  backdrop-filter: blur(7px);
}

.map-label span {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--cyan);
}

.label-one { top: 21%; left: 8%; }
.label-two { top: 47%; right: 5%; }
.label-three { bottom: 17%; left: 12%; }
.label-two span { background: var(--blue); }
.label-three span { background: var(--teal); }

.map-disclaimer {
  position: absolute;
  z-index: 4;
  right: 18px;
  bottom: 12px;
  margin: 0;
  color: #667c91;
  font-size: 0.56rem;
  letter-spacing: 0.02em;
}

.picture-footer {
  min-height: 52px;
  border-top: 1px solid var(--line);
  color: #788ca0;
  font-size: 0.58rem;
  font-weight: 680;
  letter-spacing: 0.04em;
  padding: 0 21px;
  text-transform: uppercase;
}

.problem-section {
  background: var(--light-section);
  color: var(--light-ink);
  padding: 118px 0 126px;
}

.problem-layout {
  display: grid;
  grid-template-columns: minmax(150px, 0.25fr) minmax(0, 1fr);
  gap: 60px;
}

.problem-section .section-index,
.workflow .section-index {
  color: #155f6b;
}

.problem-copy h2,
.workflow h2 {
  max-width: 880px;
  margin-bottom: 54px;
  color: var(--light-ink);
  font-size: clamp(2.35rem, 4.3vw, 4.5rem);
  line-height: 1.05;
}

.problem-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(30px, 6vw, 84px);
}

.problem-columns p {
  margin: 0;
  color: var(--light-muted);
  font-size: 1.02rem;
  line-height: 1.8;
}

.section {
  padding: 126px 0;
}

.capabilities {
  border-top: 1px solid var(--line);
  background: #081422;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.38fr);
  align-items: end;
  gap: 70px;
  margin-bottom: 72px;
}

.section-heading h2 {
  max-width: 760px;
  margin: 18px 0 0;
  font-size: clamp(2.35rem, 4.2vw, 4.2rem);
  line-height: 1.06;
}

.section-heading > p {
  margin: 0 0 7px;
  color: var(--muted);
  line-height: 1.7;
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.capability-card {
  position: relative;
  min-height: 395px;
  padding: 39px 36px 42px;
}

.capability-card + .capability-card {
  border-left: 1px solid var(--line);
}

.capability-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(101, 217, 231, 0.19);
  border-radius: 50%;
  background: rgba(101, 217, 231, 0.05);
  color: var(--cyan);
}

.capability-icon svg {
  width: 23px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.35;
}

.card-number {
  position: absolute;
  top: 44px;
  right: 36px;
  margin: 0;
  color: #8296a9;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.capability-card h3 {
  max-width: 250px;
  margin: 85px 0 20px;
  font-size: 1.45rem;
  line-height: 1.16;
}

.capability-card > p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 0.93rem;
  line-height: 1.75;
}

.workflow {
  background: var(--light-section);
  color: var(--light-ink);
}

.workflow-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1fr);
  gap: clamp(70px, 10vw, 150px);
}

.workflow-intro {
  position: sticky;
  top: 124px;
  align-self: start;
}

.workflow h2 {
  margin: 20px 0 28px;
  font-size: clamp(2.2rem, 3.9vw, 3.9rem);
}

.workflow-intro > p:last-child {
  max-width: 500px;
  margin: 0;
  color: var(--light-muted);
  line-height: 1.8;
}

.workflow-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.workflow-list li {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 20px;
  border-top: 1px solid rgba(11, 26, 40, 0.14);
  padding: 32px 0 35px;
}

.workflow-list li:last-child {
  border-bottom: 1px solid rgba(11, 26, 40, 0.14);
}

.step-number {
  color: #155f6b;
  font-size: 0.68rem;
  font-weight: 760;
  letter-spacing: 0.08em;
  padding-top: 5px;
}

.workflow-list h3 {
  margin: 0 0 7px;
  color: var(--light-ink);
  font-size: 1.22rem;
  letter-spacing: -0.026em;
}

.workflow-list p {
  margin: 0;
  color: var(--light-muted);
  font-size: 0.94rem;
}

.beta-section {
  overflow: hidden;
  background: #081422;
  padding: 130px 0;
}

.beta-card {
  position: relative;
  min-height: 580px;
  overflow: hidden;
  border: 1px solid rgba(150, 197, 220, 0.17);
  border-radius: 32px;
  background:
    linear-gradient(115deg, rgba(16, 46, 65, 0.82), rgba(9, 25, 42, 0.95)),
    #0a1a2b;
  box-shadow: var(--shadow);
}

.beta-card::before {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(150, 190, 220, 0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(150, 190, 220, 0.04) 1px, transparent 1px);
  background-size: 52px 52px;
  content: "";
  mask-image: linear-gradient(90deg, #000, transparent 72%);
}

.beta-map {
  position: absolute;
  inset: 0 auto 0 0;
  width: 50%;
  opacity: 0.62;
}

.beta-map svg {
  position: absolute;
  top: 50%;
  left: 48%;
  width: 620px;
  transform: translate(-50%, -50%);
}

.beta-map path:first-child {
  fill: rgba(79, 147, 180, 0.025);
  stroke: rgba(118, 194, 218, 0.23);
  stroke-dasharray: 5 7;
}

.beta-map path:nth-child(2) {
  fill: none;
  stroke: rgba(125, 211, 252, 0.17);
}

.beta-map circle:first-of-type {
  fill: rgba(101, 217, 231, 0.025);
  stroke: rgba(101, 217, 231, 0.12);
}

.beta-map circle:last-of-type {
  fill: var(--cyan);
}

.beta-content {
  position: relative;
  z-index: 2;
  width: 57%;
  margin-left: auto;
  padding: 85px clamp(54px, 7vw, 100px) 80px 50px;
}

.beta-content .eyebrow {
  margin-bottom: 27px;
}

.beta-content h2 {
  margin-bottom: 27px;
  font-size: clamp(2.35rem, 4.2vw, 4.1rem);
  line-height: 1.04;
}

.beta-content p:not(.eyebrow) {
  max-width: 600px;
  margin: 0 0 15px;
  color: #adbdcb;
  line-height: 1.75;
}

.button-light {
  margin-top: 24px;
  background: #eef7f8;
  color: #081723;
}

.button-light:hover {
  background: #fff;
}

.trust-section {
  border-top: 1px solid var(--line);
  background: #07111f;
  padding: 90px 0;
}

.trust-layout {
  display: grid;
  grid-template-columns: 62px minmax(320px, 0.78fr) minmax(300px, 0.64fr);
  align-items: center;
  gap: 42px;
}

.trust-mark {
  display: grid;
  width: 62px;
  height: 62px;
  place-items: center;
  border: 1px solid rgba(101, 217, 231, 0.18);
  border-radius: 50%;
  background: rgba(101, 217, 231, 0.045);
}

.trust-mark svg {
  width: 22px;
}

.trust-mark path {
  fill: var(--cyan);
}

.trust-mark circle {
  fill: #07111f;
}

.trust-section h2 {
  margin: 13px 0 0;
  font-size: clamp(1.9rem, 3vw, 3rem);
  line-height: 1.1;
}

.trust-layout > p {
  margin: 0;
  color: var(--muted);
  font-size: 0.91rem;
  line-height: 1.8;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #050c16;
  color: var(--muted);
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(300px, 1.6fr) repeat(3, minmax(130px, 0.52fr));
  gap: 45px;
  padding: 78px 0 70px;
}

.brand-footer {
  width: fit-content;
}

.footer-brand-block > p {
  max-width: 340px;
  margin: 22px 0 0;
  color: #788a9d;
  font-size: 0.88rem;
}

.footer-label {
  margin: 0 0 14px;
  color: #8298ad;
  font-size: 0.64rem;
  font-weight: 760;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-location p:last-child,
.footer-contact a,
.footer-nav a {
  margin: 0;
  color: #bdcad6;
  font-size: 0.84rem;
  line-height: 1.7;
}

.footer-contact a,
.footer-nav a {
  text-decoration-color: rgba(101, 217, 231, 0.28);
  text-underline-offset: 4px;
}

.footer-contact a:hover,
.footer-nav a:hover {
  color: #fff;
  text-decoration-color: var(--cyan);
}

.footer-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-nav .footer-label {
  width: 100%;
}

.footer-bottom {
  display: flex;
  min-height: 70px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid var(--line);
  color: #8197aa;
  font-size: 0.67rem;
  letter-spacing: 0.02em;
}

.footer-bottom p {
  margin: 0;
}

/* Legal pages */
.legal-page {
  background: #eaf0f2;
  color: var(--light-ink);
}

.legal-page .site-header {
  position: absolute;
  background: #07111f;
}

.legal-hero {
  background:
    radial-gradient(circle at 75% 20%, rgba(101, 217, 231, 0.08), transparent 25%),
    #07111f;
  padding: 170px 0 84px;
}

.legal-hero .eyebrow {
  margin-bottom: 24px;
}

.legal-hero h1 {
  max-width: 800px;
  margin-bottom: 24px;
  font-size: clamp(3.1rem, 6vw, 5.3rem);
}

.legal-hero > .shell > p:last-child {
  max-width: 670px;
  margin: 0;
  color: var(--muted);
  font-size: 1.03rem;
}

.legal-content {
  display: grid;
  grid-template-columns: minmax(180px, 0.3fr) minmax(0, 1fr);
  gap: clamp(40px, 9vw, 120px);
  padding: 88px 0 120px;
}

.legal-aside {
  align-self: start;
  border-top: 1px solid rgba(11, 26, 40, 0.18);
  padding-top: 20px;
}

.legal-aside p {
  margin: 0 0 11px;
  color: var(--light-muted);
  font-size: 0.75rem;
}

.legal-aside strong {
  color: var(--light-ink);
}

.legal-review-note {
  border: 1px solid rgba(132, 91, 28, 0.24);
  border-radius: 12px;
  background: #fff7e8;
  color: #5d431b;
  margin-bottom: 48px;
  padding: 20px 22px;
}

.legal-review-note strong {
  display: block;
  margin-bottom: 4px;
  color: #4d3512;
}

.legal-review-note p {
  margin: 0;
  font-size: 0.9rem;
}

.legal-body {
  max-width: 770px;
}

.legal-body section {
  border-top: 1px solid rgba(11, 26, 40, 0.15);
  padding: 32px 0 22px;
}

.legal-body h2 {
  margin-bottom: 15px;
  color: var(--light-ink);
  font-size: 1.45rem;
  letter-spacing: -0.025em;
}

.legal-body p,
.legal-body li {
  color: var(--light-muted);
  line-height: 1.8;
}

.legal-body ul {
  padding-left: 22px;
}

.legal-body a {
  color: #166d79;
  font-weight: 650;
  text-underline-offset: 4px;
}

.legal-page .site-footer {
  color: var(--muted);
}

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

  .hero {
    padding-bottom: 110px;
  }

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

  h1 {
    max-width: 760px;
  }

  .operating-picture {
    max-width: 760px;
    transform: none;
  }

  .capability-card {
    padding-inline: 28px;
  }

  .workflow-layout {
    gap: 70px;
  }

  .beta-content {
    width: 62%;
  }

  .trust-layout {
    grid-template-columns: 62px 1fr;
  }

  .trust-layout > p {
    grid-column: 2;
  }

  .footer-main {
    grid-template-columns: 1.5fr repeat(3, 0.55fr);
  }
}

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

  .header-inner {
    min-height: 66px;
    gap: 16px;
  }

  .site-nav {
    gap: 16px;
  }

  .site-nav a {
    font-size: 0.72rem;
  }

  .hero {
    min-height: auto;
    padding: 130px 0 84px;
  }

  .hero::before {
    display: none;
  }

  h1 {
    font-size: clamp(3rem, 14vw, 4.7rem);
  }

  .hero .eyebrow {
    margin-bottom: 25px;
  }

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

  .button {
    width: 100%;
  }

  .hero-note {
    align-items: flex-start;
  }

  .hero-note::before {
    flex: 0 0 auto;
    margin-top: 8px;
  }

  .picture-topline {
    min-height: 70px;
    padding-inline: 16px;
  }

  .picture-status {
    font-size: 0.55rem;
  }

  .map-field {
    min-height: 350px;
  }

  .map-label {
    font-size: 0.55rem;
  }

  .label-one { left: 4%; }
  .label-two { right: 3%; }
  .label-three { left: 5%; }

  .map-disclaimer {
    right: 10px;
    font-size: 0.49rem;
  }

  .picture-footer {
    gap: 12px;
    padding-inline: 16px;
  }

  .problem-section,
  .section {
    padding: 86px 0;
  }

  .problem-layout,
  .section-heading,
  .workflow-layout,
  .legal-content {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .problem-copy h2 {
    margin-bottom: 36px;
  }

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

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

  .section-heading > p {
    max-width: 520px;
  }

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

  .capability-card {
    min-height: auto;
    padding: 34px 24px 38px;
  }

  .capability-card + .capability-card {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .capability-card h3 {
    margin-top: 50px;
  }

  .card-number {
    top: 40px;
    right: 24px;
  }

  .workflow-intro {
    position: static;
  }

  .workflow-list li {
    grid-template-columns: 42px 1fr;
  }

  .beta-section {
    padding: 84px 0;
  }

  .beta-card {
    min-height: auto;
  }

  .beta-map {
    inset: 0 0 auto;
    width: 100%;
    height: 270px;
  }

  .beta-card::after {
    position: absolute;
    inset: 100px 0 auto;
    height: 230px;
    background: linear-gradient(transparent, #0b1b2c);
    content: "";
  }

  .beta-content {
    width: auto;
    margin: 200px 0 0;
    padding: 70px 24px 48px;
  }

  .beta-content .button {
    width: fit-content;
  }

  .trust-section {
    padding: 72px 0;
  }

  .trust-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .trust-layout > p {
    grid-column: auto;
  }

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

  .footer-brand-block {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding: 18px 0;
  }

  .legal-hero {
    padding: 142px 0 70px;
  }

  .legal-content {
    padding: 62px 0 90px;
  }
}

@media (max-width: 430px) {
  :root {
    --shell: calc(100% - 30px);
  }

  .brand {
    gap: 8px;
  }

  .brand-mark {
    width: 18px;
  }

  .brand-name {
    font-size: 0.92rem;
  }

  .site-nav {
    gap: 11px;
  }

  .site-nav a {
    font-size: 0.66rem;
  }

  .hero {
    padding-top: 116px;
  }

  h1 {
    font-size: 2.95rem;
  }

  .hero-lede {
    font-size: 1rem;
  }

  .operating-picture {
    border-radius: 20px;
  }

  .picture-status {
    max-width: 78px;
    text-align: center;
  }

  .map-field {
    aspect-ratio: auto;
    min-height: 310px;
  }

  .picture-footer {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
  }

  .map-disclaimer {
    max-width: 150px;
    text-align: right;
  }

  .problem-copy h2,
  .section-heading h2,
  .workflow h2,
  .beta-content h2 {
    font-size: 2.45rem;
  }

  .beta-card {
    border-radius: 22px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .footer-brand-block {
    grid-column: auto;
  }
}

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

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

@media (forced-colors: active) {
  .hero-grid,
  .beta-map,
  .beta-card::before {
    display: none;
  }

  .button,
  .capability-card,
  .operating-picture {
    border: 1px solid CanvasText;
  }
}
