:root {
  --surface: #f6f8fb;
  --surface-blue: #eef4fb;
  --surface-strong: #ffffff;
  --ink: #151321;
  --ink-muted: #5d6272;
  --ink-soft: #7b8191;
  --line: #d9dee8;
  --line-strong: #bec6d5;
  --night: #211733;
  --night-2: #33234e;
  --purple-cta: #2a1b3f;
  --purple-cta-edge: #5b4778;
  --signal: #d9ff5a;
  --signal-ink: #192600;
  --teal: #20b3a6;
  --blue: #3b72f6;
  --amber: #f4b740;
  --shadow: 0 24px 60px rgb(25 19 33 / 16%);
  --mono: "Geist Mono", "JetBrains Mono", "SFMono-Regular", Consolas, monospace;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--surface);
}

.landing-page {
  display: grid;
  min-height: 100svh;
  grid-template-rows: auto minmax(0, 1fr) auto;
}

.landing-page main {
  min-height: 0;
}

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: 1rem;
  z-index: 20;
  transform: translateY(-160%);
  border: 1px solid var(--ink);
  border-radius: 6px;
  background: var(--surface-strong);
  padding: 0.75rem 1rem;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  border-bottom: 1px solid rgb(217 222 232 / 82%);
  background: #fff;
  padding: 0.72rem 3rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-weight: 760;
  text-decoration: none;
}

.brand-copy {
  display: grid;
  gap: 0.05rem;
  line-height: 1.05;
}

.brand-name {
  font-weight: 820;
}

.brand-line {
  color: var(--ink-soft);
  font-size: 0.72rem;
  font-weight: 680;
  text-transform: uppercase;
}

.brand-mark {
  width: 2.2rem;
  height: 2.2rem;
  object-fit: contain;
  display: block;
}

.top-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1rem, 2.5vw, 2rem);
  position: relative;
  flex: 1;
  color: var(--ink);
  font-size: 0.8rem;
  text-transform: uppercase;
}

.nav-trigger,
.nav-link,
.site-footer nav a {
  text-decoration: none;
}

.nav-trigger,
.nav-link {
  position: relative;
  display: inline-flex;
  min-height: 2.85rem;
  align-items: center;
  gap: 0.28rem;
  padding: 0;
  font-weight: 780;
  letter-spacing: 0;
}

.nav-caret {
  width: 0.42rem;
  height: 0.42rem;
  border-right: 1.5px solid currentcolor;
  border-bottom: 1.5px solid currentcolor;
  transform: translateY(-0.12rem) rotate(45deg);
}

.nav-trigger:hover,
.nav-trigger:focus-visible,
.nav-link:hover,
.nav-link:focus-visible {
  color: var(--ink);
  outline: none;
}

.nav-trigger::after,
.nav-link::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  background: var(--teal);
  content: "";
  opacity: 0;
  transform: scaleX(0.65);
  transition:
    opacity 140ms ease,
    transform 140ms ease;
}

.nav-item:hover .nav-trigger::after,
.nav-item:focus-within .nav-trigger::after,
.nav-link:hover::after,
.nav-link:focus-visible::after {
  opacity: 1;
  transform: scaleX(1);
}

.site-footer nav a:hover {
  color: var(--ink);
}

.nav-item {
  position: static;
}

.mega-menu {
  position: fixed;
  top: 4.35rem;
  left: 0;
  width: 100vw;
  border-top: 1px solid var(--line);
  background: var(--surface);
  box-shadow: 0 30px 50px rgb(25 19 33 / 8%);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-0.35rem);
  transition:
    opacity 140ms ease,
    transform 140ms ease;
  text-transform: none;
  visibility: hidden;
}

.nav-item:hover .mega-menu,
.nav-item:focus-within .mega-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  visibility: visible;
}

.mega-panel {
  display: grid;
  max-width: 1180px;
  min-height: 22rem;
  margin: 0 auto;
  background: transparent;
  padding: 2.1rem 3rem;
}

.mega-panel-solutions,
.mega-panel-platform {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
}

.mega-column {
  display: grid;
  align-content: start;
  gap: 0.95rem;
  padding: 0 2rem;
  border-right: 1px solid var(--line);
}

.mega-column:first-child {
  padding-left: 0;
}

.mega-column:last-child {
  border-right: 0;
  padding-right: 0;
}

.mega-column h2 {
  margin: 0;
  max-width: none;
  font-size: 0.88rem;
  line-height: 1.2;
  text-transform: uppercase;
}

.mega-column a {
  color: var(--ink);
  font-size: 0.92rem;
  line-height: 1.25;
  text-decoration: none;
}

.mega-column a:hover,
.mega-column a:focus-visible {
  color: var(--blue);
  outline: none;
}

.mega-divider {
  height: 1px;
  margin: 0.35rem 0 0.15rem;
  background: var(--line);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.header-link {
  color: var(--ink-muted);
  font-size: 0.9rem;
  font-weight: 720;
  text-decoration: none;
}

.header-link:hover,
.header-link:focus-visible {
  color: var(--ink);
  outline: none;
}

.mobile-menu {
  display: none;
  position: relative;
}

.mobile-menu summary {
  display: inline-flex;
  min-height: 2.45rem;
  align-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 7px;
  background: var(--surface-strong);
  padding: 0 0.85rem;
  color: var(--ink);
  cursor: pointer;
  font-weight: 760;
  list-style: none;
}

.mobile-menu summary::-webkit-details-marker {
  display: none;
}

.mobile-menu-panel {
  position: absolute;
  top: calc(100% + 0.65rem);
  right: 0;
  display: grid;
  width: min(18rem, calc(100vw - 2rem));
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface-strong);
  box-shadow: 0 24px 60px rgb(25 19 33 / 16%);
  padding: 0.45rem;
}

.mobile-menu-panel a {
  border-radius: 7px;
  padding: 0.78rem 0.85rem;
  color: var(--ink);
  font-weight: 700;
  text-decoration: none;
}

.mobile-menu-panel a:hover,
.mobile-menu-panel a:focus-visible {
  background: var(--surface);
  outline: none;
}

.nav-cta,
.button {
  display: inline-flex;
  min-height: 2.72rem;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 1.25rem;
  font-weight: 760;
  text-decoration: none;
  transition:
    border-color 140ms ease,
    box-shadow 140ms ease,
    transform 140ms ease;
  white-space: nowrap;
}

.nav-cta,
.button-secondary {
  border: 1px solid var(--line-strong);
  background: var(--surface-strong);
  color: var(--ink);
}

.nav-cta {
  min-height: 2.85rem;
  border-color: rgb(112 91 147 / 72%);
  background:
    linear-gradient(180deg, rgb(255 255 255 / 12%), rgb(255 255 255 / 0) 42%),
    var(--purple-cta);
  color: #fff;
  padding: 0 1.55rem;
  font-size: 0.92rem;
  box-shadow:
    0 0 0 1px rgb(255 255 255 / 12%) inset,
    0 9px 22px rgb(42 27 63 / 28%),
    0 2px 8px rgb(42 27 63 / 28%);
}

.button-primary {
  border: 1px solid #a8d72e;
  background:
    linear-gradient(180deg, rgb(255 255 255 / 42%), rgb(255 255 255 / 0) 45%),
    var(--signal);
  color: var(--signal-ink);
  box-shadow:
    0 0 0 1px rgb(255 255 255 / 58%) inset,
    0 10px 18px rgb(107 133 23 / 22%),
    0 2px 4px rgb(107 133 23 / 18%);
}

.button-secondary {
  border: 2px solid var(--ink);
  background: rgb(255 255 255 / 38%);
  box-shadow:
    0 1px 0 rgb(255 255 255 / 82%) inset,
    0 8px 18px rgb(25 19 33 / 7%);
}

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

.button-primary:hover {
  box-shadow:
    0 0 0 1px rgb(255 255 255 / 62%) inset,
    0 14px 24px rgb(107 133 23 / 25%),
    0 3px 7px rgb(107 133 23 / 18%);
}

.button-secondary:hover {
  background: rgb(255 255 255 / 58%);
  box-shadow:
    0 1px 0 rgb(255 255 255 / 86%) inset,
    0 12px 24px rgb(25 19 33 / 10%);
}

.first-view-panel {
  display: grid;
  min-height: calc(100svh - 4.25rem);
  grid-template-rows: minmax(0, 1fr) auto;
  background: var(--surface);
}

.landing-page .first-view-panel {
  min-height: 0;
  height: 100%;
}

.hero-section {
  --hero-side-gutter: 3rem;
  --hero-art-inset: 2.25rem;

  position: relative;
  display: grid;
  min-height: 0;
  grid-template-columns: minmax(660px, 0.9fr) minmax(560px, 1.1fr);
  gap: clamp(1rem, 2vw, 2.4rem);
  align-items: center;
  background:
    linear-gradient(180deg, var(--surface-blue) 0%, var(--surface) 74%, var(--surface) 100%);
  isolation: isolate;
  overflow: hidden;
  padding: clamp(2.6rem, 6vh, 4.4rem) var(--hero-side-gutter)
    clamp(2.6rem, 6vh, 4.4rem) calc(var(--hero-side-gutter) + var(--hero-art-inset));
}

.hero-section::before,
.hero-section::after {
  position: absolute;
  z-index: 0;
  content: "";
  pointer-events: none;
}

.hero-section::before {
  display: none;
}

.hero-section::after {
  top: 23%;
  right: -4%;
  bottom: 18%;
  width: min(58rem, 62vw);
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 980 460' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%235d6f90' stroke-opacity='.24' stroke-width='1.2'%3E%3Cpath d='M35 315 C185 205 295 340 450 245 S710 140 920 215' stroke-dasharray='3 10'/%3E%3Cpath d='M80 385 C225 285 340 385 520 300 S760 250 940 330' stroke-dasharray='2 9'/%3E%3Cpath d='M30 250 C210 260 315 165 505 200 S760 160 955 90' stroke-dasharray='1 11'/%3E%3C/g%3E%3Cg fill='%2333274f' fill-opacity='.3'%3E%3Ccircle cx='180' cy='265' r='2.5'/%3E%3Ccircle cx='335' cy='305' r='2'/%3E%3Ccircle cx='518' cy='245' r='2.5'/%3E%3Ccircle cx='690' cy='174' r='2'/%3E%3Ccircle cx='838' cy='205' r='2.5'/%3E%3Ccircle cx='300' cy='365' r='2'/%3E%3Ccircle cx='735' cy='300' r='2'/%3E%3C/g%3E%3Cg stroke='%237f91ad' stroke-opacity='.16' stroke-width='1'%3E%3Cpath d='M128 130v220'/%3E%3Cpath d='M154 165v170'/%3E%3Cpath d='M736 38v160'/%3E%3Cpath d='M764 72v130'/%3E%3Cpath d='M880 105v92'/%3E%3C/g%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
  opacity: 0.34;
}

.hero-section > * {
  position: relative;
  z-index: 1;
}

.hero-copy {
  min-width: 0;
  max-width: 840px;
}

.eyebrow {
  margin: 0 0 0.85rem;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 820;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  letter-spacing: 0;
}

h1 {
  margin: 0;
  max-width: 20ch;
  font-size: 4.3rem;
  line-height: 0.94;
}

h2 {
  margin: 0;
  max-width: 13ch;
  font-size: 3rem;
  line-height: 1.02;
}

h3 {
  margin: 0;
  font-size: 1.1rem;
  line-height: 1.25;
}

.hero-lede,
.section-heading p,
.demo-band p,
.site-footer p {
  color: var(--ink-muted);
  font-size: 1.08rem;
  line-height: 1.65;
}

.hero-lede {
  max-width: 720px;
  margin: 1.05rem 0 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.55rem;
}

.hero-visual {
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 350px;
  align-items: flex-start;
  justify-content: flex-end;
  padding-top: 0;
}

.hero-visual::before {
  display: none;
}

.hero-lottie {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 900px;
  aspect-ratio: 3 / 1.7;
  margin: 0;
  opacity: 1;
  overflow: hidden;
  transform: translate(calc(0rem - var(--hero-art-inset)), 0.15rem);
}

.hero-lottie-player {
  width: 100%;
  height: 100%;
  opacity: 0;
  transform: translateY(-5%) scale(1.12);
  transform-origin: center top;
  transition: opacity 180ms ease;
}

.hero-lottie.is-loaded .hero-lottie-player {
  opacity: 1;
}

.hero-lottie-fallback {
  display: none;
  width: 100%;
  height: 100%;
  border: 1px solid rgb(255 255 255 / 46%);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgb(217 255 90 / 52%), rgb(32 179 166 / 34%)),
    var(--night-2);
}

.hero-lottie.is-failed .hero-lottie-fallback {
  display: block;
}

.product-status {
  display: inline-flex;
  min-height: 1.85rem;
  align-items: center;
  border-radius: 999px;
  background: var(--signal);
  color: var(--signal-ink);
  font-size: 0.78rem;
  font-weight: 800;
  padding: 0 0.75rem;
}

.integration-band {
  display: grid;
  grid-template-columns: minmax(360px, 0.28fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--surface-strong);
  overflow: hidden;
  padding: 0.75rem 0 0.75rem 3rem;
}

.integration-copy {
  max-width: 620px;
}

.integration-copy h2 {
  max-width: 22ch;
  font-size: 1.5rem;
  line-height: 1.08;
}

.integration-copy p {
  margin: 0.45rem 0 0;
  color: var(--ink-muted);
  font-size: 0.9rem;
  line-height: 1.38;
}

.integration-copy p:not(.integration-disclaimer) {
  display: none;
}

.integration-disclaimer {
  font-size: 0.72rem;
}

.logo-carousel {
  position: relative;
  width: 100%;
  max-width: none;
  justify-self: stretch;
  contain: paint;
  overflow: hidden;
  padding: 0.35rem 0;
}

.logo-carousel::before,
.logo-carousel::after {
  position: absolute;
  z-index: 2;
  top: 0;
  bottom: 0;
  width: clamp(2.25rem, 4vw, 4.75rem);
  content: "";
  pointer-events: none;
}

.logo-carousel::before {
  left: 0;
  background: linear-gradient(90deg, var(--surface-strong), rgb(255 255 255 / 0));
}

.logo-carousel::after {
  right: 0;
  background: linear-gradient(270deg, var(--surface-strong), rgb(255 255 255 / 0));
}

.logo-track {
  display: flex;
  width: max-content;
  gap: 0.8rem;
  contain: paint;
  overflow: clip;
  padding-left: 0.65rem;
  animation: logo-marquee 58s linear infinite;
}

.logo-carousel:hover .logo-track,
.logo-carousel:focus-within .logo-track {
  animation-play-state: paused;
}

.logo-tile {
  display: inline-flex;
  flex: 0 0 10rem;
  width: 10rem;
  height: 3.45rem;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8fafc;
  padding: 0.5rem 0.9rem;
  box-shadow: 0 10px 30px rgb(25 19 33 / 5%);
  text-decoration: none;
  transition:
    border-color 140ms ease,
    box-shadow 140ms ease,
    transform 140ms ease;
}

.logo-tile:hover,
.logo-tile:focus-visible {
  border-color: var(--line-strong);
  box-shadow: 0 14px 34px rgb(25 19 33 / 10%);
  outline: none;
  transform: translateY(-1px);
}

.logo-tile img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 2.35rem;
  object-fit: contain;
}

@keyframes logo-marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@keyframes media-drift {
  from {
    transform: scale(1.006) translate3d(-0.18%, -0.1%, 0);
  }

  to {
    transform: scale(1.022) translate3d(0.18%, 0.12%, 0);
  }
}

@keyframes media-scan {
  0%,
  42% {
    opacity: 0;
    transform: translateX(-96%);
  }

  54% {
    opacity: 0.58;
  }

  74%,
  100% {
    opacity: 0;
    transform: translateX(96%);
  }
}

@keyframes media-ring {
  from {
    transform: rotate(-12deg);
  }

  to {
    transform: rotate(348deg);
  }
}

@keyframes media-axis {
  0%,
  100% {
    opacity: 0.38;
    transform: translateX(-50%) scaleY(0.86);
  }

  50% {
    opacity: 0.86;
    transform: translateX(-50%) scaleY(1);
  }
}

@keyframes media-orbit-sweep {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes media-orbit-sweep-offset {
  from {
    transform: rotate(22deg);
  }

  to {
    transform: rotate(382deg);
  }
}

@keyframes media-rail-flow {
  0% {
    background-position: 130% 50%;
    opacity: 0.1;
    transform: scaleX(0.78);
  }

  28% {
    opacity: 0.86;
  }

  70% {
    opacity: 0.55;
  }

  100% {
    background-position: -130% 50%;
    opacity: 0.12;
    transform: scaleX(1);
  }
}

@keyframes media-pulse-node {
  0%,
  100% {
    opacity: 0.62;
    transform: scale(0.82);
  }

  45% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes checkpoint-state {
  0%,
  100% {
    opacity: 0.46;
    transform: scale(0.86);
  }

  38% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes standards-ring {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes standards-ring-offset {
  from {
    transform: rotate(-18deg);
  }

  to {
    transform: rotate(342deg);
  }
}

@keyframes satellite-breathe {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-0.18rem);
  }
}

.operating-band {
  background: linear-gradient(180deg, var(--surface-strong) 0%, #f1f5fa 100%);
}

.operating-band-simple {
  padding-top: 4.8rem;
}

.operating-intro {
  display: grid;
  max-width: 1160px;
  grid-template-columns: minmax(320px, 0.82fr) minmax(340px, 1.18fr);
  gap: 3rem;
  align-items: end;
  margin: 0 auto 2.2rem;
}

.operating-intro .eyebrow {
  margin-bottom: 0.8rem;
}

.operating-intro h2 {
  max-width: 13.5ch;
}

.operating-lede {
  max-width: 720px;
  margin: 0;
  color: var(--ink-muted);
  font-size: 1.18rem;
  line-height: 1.6;
}

.operating-media {
  display: grid;
  max-width: 1160px;
  gap: 1rem;
  margin: 0 auto;
}

.section-media-card {
  display: grid;
  min-width: 0;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface-strong);
  box-shadow: 0 24px 60px rgb(25 19 33 / 10%);
  overflow: hidden;
}

.operating-media-card {
  box-shadow: 0 28px 70px rgb(25 19 33 / 12%);
}

.operating-media-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  min-height: 34rem;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.operating-media-frame picture,
.operating-media-frame img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
}

.operating-media-frame img {
  object-fit: cover;
}

.section-still-media {
  isolation: isolate;
}

.section-still-media::before,
.section-still-media::after {
  display: none;
}

.section-still-media picture,
.section-still-media img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
}

.section-still-media img {
  object-fit: cover;
  transform: none;
  animation: none;
}

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

.proof-still-card {
  box-shadow: 0 18px 42px rgb(25 19 33 / 8%);
}

.proof-still-media {
  position: relative;
  aspect-ratio: 16 / 9;
  min-height: 0;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.proof-still-card .media-caption {
  grid-template-columns: 1fr;
  align-content: start;
  min-height: 7.8rem;
}

.media-caption {
  display: grid;
  grid-template-columns: minmax(9rem, auto) minmax(0, 1fr);
  gap: 1rem;
  align-items: center;
  min-height: 3.4rem;
  background: linear-gradient(180deg, #ffffff, #f7f9fc);
  padding: 0.78rem 1rem;
}

.media-caption span {
  color: var(--blue);
  font-family: var(--mono);
  font-size: 0.68rem;
  font-weight: 820;
  text-transform: uppercase;
}

.media-caption strong {
  color: var(--ink-muted);
  font-size: 0.84rem;
  font-weight: 700;
  line-height: 1.45;
}

.proof-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
  overflow: hidden;
}

.proof-points article {
  display: grid;
  min-height: 10.4rem;
  align-content: start;
  gap: 0.55rem;
  background: var(--surface-strong);
  padding: 1.15rem;
}

.proof-points span {
  color: var(--blue);
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 820;
}

.proof-points h3 {
  font-size: 1.1rem;
}

.proof-points p {
  margin: 0;
  color: var(--ink-muted);
  line-height: 1.55;
}

.proof-illustration {
  position: relative;
  min-height: 16rem;
  overflow: hidden;
  background:
    radial-gradient(circle at 16% 18%, rgb(217 255 90 / 28%), rgb(217 255 90 / 0) 33%),
    radial-gradient(circle at 82% 28%, rgb(59 114 246 / 18%), rgb(59 114 246 / 0) 36%),
    linear-gradient(135deg, #f8fbff 0%, #edf3fb 100%);
}

.proof-illustration::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgb(33 23 51 / 6%) 1px, transparent 1px),
    linear-gradient(90deg, rgb(33 23 51 / 6%) 1px, transparent 1px);
  background-size: 34px 34px;
  content: "";
  opacity: 0.7;
}

.proof-photo {
  isolation: isolate;
  background: var(--surface-strong);
}

.proof-photo::before,
.media-frame::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgb(255 255 255 / 30%), rgb(255 255 255 / 0) 34%),
    linear-gradient(90deg, rgb(255 255 255 / 0), rgb(255 255 255 / 24%), rgb(255 255 255 / 0)),
    repeating-linear-gradient(
      90deg,
      rgb(255 255 255 / 0) 0,
      rgb(255 255 255 / 0) 22px,
      rgb(255 255 255 / 16%) 23px,
      rgb(255 255 255 / 0) 24px
    );
  content: "";
  mix-blend-mode: screen;
  opacity: 0.66;
  pointer-events: none;
}

.proof-photo::after,
.media-frame::after {
  position: absolute;
  inset: 0;
  z-index: 3;
  background:
    linear-gradient(
      112deg,
      rgb(255 255 255 / 0) 18%,
      rgb(255 255 255 / 32%) 42%,
      rgb(217 255 90 / 22%) 49%,
      rgb(255 255 255 / 0) 66%
    );
  content: "";
  opacity: 0.62;
  pointer-events: none;
  transform: translateX(-95%);
  animation: media-scan 8.6s cubic-bezier(0.22, 0.61, 0.36, 1) infinite;
}

.proof-photo picture,
.media-frame picture {
  position: absolute;
  inset: 0;
  display: block;
}

.proof-photo img,
.media-frame img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  object-fit: cover;
  transform: scale(1.006);
  transform-origin: center;
  animation: media-drift 16s ease-in-out infinite alternate;
  will-change: transform;
}

.media-vector {
  position: absolute;
  z-index: 2;
  pointer-events: none;
}

.media-vector::before,
.media-vector::after {
  position: absolute;
  content: "";
}

.media-vector-core {
  inset: 1.2rem;
  border: 1px solid rgb(255 255 255 / 46%);
  border-radius: 7px;
  box-shadow:
    0 0 0 1px rgb(33 23 51 / 8%) inset,
    0 24px 60px rgb(25 19 33 / 10%);
}

.media-vector-core::before {
  top: 50%;
  right: 11%;
  left: 11%;
  height: 1px;
  background: linear-gradient(90deg, rgb(217 255 90 / 0), rgb(217 255 90 / 78%), rgb(32 179 166 / 0));
}

.media-vector-core::after {
  top: 17%;
  right: 18%;
  bottom: 17%;
  left: 18%;
  border: 1px dashed rgb(32 179 166 / 55%);
  border-radius: 999px;
  transform: rotate(-12deg);
  animation: media-ring 18s linear infinite;
}

.media-vector-inspection {
  inset: 1rem 1.2rem;
  border-radius: 7px;
}

.media-vector-inspection::before {
  top: 14%;
  right: 7%;
  bottom: 14%;
  left: 7%;
  border: 1px solid rgb(255 255 255 / 36%);
  border-radius: 7px;
  box-shadow:
    0 0 0 1px rgb(217 255 90 / 18%) inset,
    0 0 36px rgb(217 255 90 / 18%);
}

.media-vector-inspection::after {
  top: 18%;
  left: 50%;
  width: 1px;
  height: 64%;
  background: linear-gradient(180deg, rgb(217 255 90 / 0), rgb(217 255 90 / 72%), rgb(217 255 90 / 0));
  transform: translateX(-50%);
  animation: media-axis 7.8s ease-in-out infinite;
}

.media-vector-ai {
  inset: 1.15rem;
}

.media-vector-ai::before {
  top: 51%;
  right: 12%;
  left: 12%;
  height: 2px;
  background: linear-gradient(90deg, rgb(92 75 123 / 0), rgb(32 179 166 / 68%), rgb(217 255 90 / 74%));
  transform: rotate(3deg);
  transform-origin: center;
}

.media-vector-ai::after {
  top: 22%;
  right: 11%;
  width: min(9rem, 28%);
  aspect-ratio: 1;
  border: 1px solid rgb(217 255 90 / 52%);
  border-radius: 999px;
  box-shadow:
    0 0 0 10px rgb(217 255 90 / 7%),
    0 0 34px rgb(217 255 90 / 18%);
  animation: media-ring 14s linear infinite reverse;
}

.motion-media {
  --motion-accent: var(--signal);
  --motion-secondary: var(--teal);
  --motion-ink: rgb(33 23 51 / 74%);
}

.motion-media-core {
  --motion-accent: var(--signal);
  --motion-secondary: var(--teal);
}

.motion-media-inspection {
  --motion-accent: var(--signal);
  --motion-secondary: #8fb5ff;
}

.motion-media-ai {
  --motion-accent: var(--teal);
  --motion-secondary: var(--signal);
}

.media-orbit,
.media-rail,
.media-pulse,
.media-checkpoints {
  position: absolute;
  z-index: 3;
  pointer-events: none;
}

.media-orbit {
  border: 1px solid rgb(217 255 90 / 42%);
  border: 1px solid color-mix(in srgb, var(--motion-accent) 42%, transparent);
  border-radius: 999px;
  box-shadow: 0 0 34px rgb(217 255 90 / 16%);
  box-shadow: 0 0 34px color-mix(in srgb, var(--motion-accent) 16%, transparent);
  mix-blend-mode: screen;
  opacity: 0.56;
}

.media-orbit-primary {
  inset: 15% 17%;
  animation: media-orbit-sweep 31s linear infinite;
}

.media-orbit-secondary {
  inset: 24% 8%;
  border-style: dashed;
  border-color: rgb(32 179 166 / 40%);
  border-color: color-mix(in srgb, var(--motion-secondary) 40%, transparent);
  opacity: 0.42;
  transform: rotate(22deg);
  animation: media-orbit-sweep-offset 38s linear infinite reverse;
}

.media-rail {
  right: 12%;
  left: 12%;
  height: 1px;
  background: linear-gradient(90deg, rgb(255 255 255 / 0), rgb(217 255 90 / 78%), rgb(32 179 166 / 70%), rgb(255 255 255 / 0));
  background:
    linear-gradient(
      90deg,
      rgb(255 255 255 / 0),
      color-mix(in srgb, var(--motion-accent) 82%, white 8%),
      color-mix(in srgb, var(--motion-secondary) 74%, white 8%),
      rgb(255 255 255 / 0)
    );
  background-size: 220% 100%;
  filter: drop-shadow(0 0 9px rgb(217 255 90 / 42%));
  filter: drop-shadow(0 0 9px color-mix(in srgb, var(--motion-accent) 48%, transparent));
  transform-origin: center;
  animation: media-rail-flow 7.5s cubic-bezier(0.22, 0.61, 0.36, 1) infinite;
}

.media-rail-one {
  top: 39%;
  transform: rotate(2deg);
}

.media-rail-two {
  top: 59%;
  animation-delay: -3.2s;
  transform: rotate(-3deg);
}

.media-pulse {
  width: 0.58rem;
  height: 0.58rem;
  border: 1px solid rgb(255 255 255 / 78%);
  border-radius: 999px;
  background: var(--motion-accent);
  box-shadow:
    0 0 0 7px rgb(217 255 90 / 16%),
    0 0 24px rgb(217 255 90 / 36%);
  box-shadow:
    0 0 0 7px color-mix(in srgb, var(--motion-accent) 18%, transparent),
    0 0 24px color-mix(in srgb, var(--motion-accent) 50%, transparent);
  animation: media-pulse-node 4.8s ease-in-out infinite;
}

.media-pulse-a {
  top: 34%;
  left: 23%;
}

.media-pulse-b {
  right: 19%;
  bottom: 28%;
  animation-delay: -2.4s;
}

.media-checkpoints {
  bottom: 0.95rem;
  left: 0.9rem;
  display: inline-flex;
  flex-direction: column;
  gap: 0.34rem;
  border: 1px solid rgb(255 255 255 / 36%);
  border-radius: 999px;
  background: rgb(21 19 33 / 42%);
  box-shadow:
    0 0 0 1px rgb(255 255 255 / 8%) inset,
    0 14px 28px rgb(25 19 33 / 14%);
  padding: 0.45rem 0.38rem;
}

.media-checkpoints i {
  display: block;
  width: 0.38rem;
  height: 0.38rem;
  border-radius: 999px;
  background: var(--teal);
  background: color-mix(in srgb, var(--motion-secondary) 82%, white 8%);
  box-shadow: 0 0 16px rgb(32 179 166 / 34%);
  box-shadow: 0 0 16px color-mix(in srgb, var(--motion-secondary) 42%, transparent);
  animation: checkpoint-state 4.8s ease-in-out infinite;
}

.media-checkpoints i:nth-child(2) {
  background: var(--motion-accent);
  animation-delay: -1.6s;
}

.media-checkpoints i:nth-child(3) {
  background: #ffffff;
  animation-delay: -3.2s;
}

.media-motion-managed .motion-media:not(.is-in-view) :is(
  img,
  .media-orbit,
  .media-rail,
  .media-pulse,
  .media-checkpoints i,
  .media-vector::after
) {
  animation-play-state: paused;
}

.media-status {
  position: absolute;
  right: 0.9rem;
  bottom: 0.9rem;
  z-index: 4;
  display: inline-flex;
  min-height: 2.15rem;
  align-items: center;
  border: 1px solid rgb(255 255 255 / 46%);
  border-radius: 999px;
  background: rgb(21 19 33 / 74%);
  box-shadow:
    0 0 0 1px rgb(217 255 90 / 14%) inset,
    0 14px 32px rgb(25 19 33 / 22%);
  color: #ffffff;
  font-family: var(--mono);
  font-size: 0.68rem;
  font-weight: 780;
  padding: 0 0.78rem;
  text-transform: uppercase;
}

.media-frame {
  isolation: isolate;
  padding: 0;
  background: var(--surface-strong);
}

.document-sheet {
  position: absolute;
  top: 2rem;
  left: 2rem;
  display: grid;
  width: 9.5rem;
  gap: 0.65rem;
  border: 1px solid rgb(33 23 51 / 16%);
  border-radius: 8px;
  background: rgb(255 255 255 / 88%);
  padding: 1rem;
  box-shadow: 0 18px 38px rgb(25 19 33 / 12%);
}

.document-sheet span {
  height: 0.52rem;
  border-radius: 999px;
  background: rgb(33 23 51 / 14%);
}

.document-sheet span:nth-child(2) {
  width: 75%;
}

.document-sheet span:nth-child(3) {
  width: 48%;
}

.document-sheet strong {
  display: inline-flex;
  width: fit-content;
  min-height: 1.8rem;
  align-items: center;
  border: 1px solid rgb(32 179 166 / 42%);
  border-radius: 999px;
  background: rgb(32 179 166 / 12%);
  color: #073b36;
  font-family: var(--mono);
  font-size: 0.74rem;
  padding: 0 0.55rem;
}

.classifier-stack {
  position: absolute;
  right: 1.7rem;
  bottom: 2rem;
  display: grid;
  gap: 0.55rem;
}

.classifier-stack span,
.inspection-answer span,
.ai-contract-card span,
.ai-output-card span,
.ai-review-gate span,
.inspection-access-chip {
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 720;
  text-transform: uppercase;
}

.classifier-stack span {
  display: inline-flex;
  min-height: 2.25rem;
  align-items: center;
  border: 1px solid rgb(33 23 51 / 14%);
  border-radius: 999px;
  background: rgb(255 255 255 / 74%);
  color: var(--night);
  padding: 0 0.8rem;
}

.cascade-source {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  width: 8.5rem;
  height: 8.5rem;
  place-items: center;
  border: 1px solid rgb(33 23 51 / 18%);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgb(255 255 255 / 84%), rgb(255 255 255 / 66%)),
    var(--surface-strong);
  box-shadow:
    0 16px 36px rgb(25 19 33 / 14%),
    0 0 0 10px rgb(217 255 90 / 16%);
  color: var(--night);
  font-weight: 820;
  transform: translate(-50%, -50%);
}

.cascade-spokes {
  position: absolute;
  inset: 1.4rem;
}

.cascade-spokes::before,
.cascade-spokes::after {
  position: absolute;
  inset: 50% 8%;
  height: 2px;
  background: rgb(32 179 166 / 42%);
  content: "";
}

.cascade-spokes::after {
  transform: rotate(90deg);
}

.cascade-spokes span {
  position: absolute;
  display: inline-flex;
  min-height: 2.35rem;
  align-items: center;
  border: 1px solid rgb(33 23 51 / 14%);
  border-radius: 999px;
  background: rgb(255 255 255 / 78%);
  color: var(--night);
  font-weight: 780;
  padding: 0 0.85rem;
}

.cascade-spokes span:nth-child(1) {
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.cascade-spokes span:nth-child(2) {
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}

.cascade-spokes span:nth-child(3) {
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.cascade-spokes span:nth-child(4) {
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.inspection-window {
  position: absolute;
  top: 1.8rem;
  right: 1.6rem;
  left: 1.6rem;
  display: grid;
  gap: 0.55rem;
  border: 1px solid rgb(33 23 51 / 16%);
  border-radius: 8px;
  background: rgb(255 255 255 / 84%);
  padding: 1rem;
  box-shadow: 0 18px 42px rgb(25 19 33 / 12%);
}

.inspection-window span {
  color: var(--ink-muted);
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 720;
  text-transform: uppercase;
}

.inspection-window strong {
  color: var(--night);
}

.inspection-window i {
  display: block;
  height: 0.55rem;
  border-radius: 999px;
  background: rgb(33 23 51 / 13%);
}

.inspection-window i:nth-of-type(2) {
  width: 74%;
}

.inspection-window i:nth-of-type(3) {
  width: 52%;
}

.inspection-token {
  position: absolute;
  right: 1.6rem;
  bottom: 1.7rem;
  display: inline-flex;
  min-height: 2.35rem;
  align-items: center;
  border: 1px solid rgb(217 255 90 / 58%);
  border-radius: 999px;
  background: var(--night);
  color: var(--signal);
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 720;
  padding: 0 0.85rem;
  text-transform: uppercase;
}

.page-band {
  padding: 5.5rem 3rem;
}

.section-heading {
  display: grid;
  max-width: 1160px;
  grid-template-columns: minmax(340px, 0.9fr) minmax(320px, 1.1fr);
  gap: 3rem;
  align-items: end;
  margin: 0 auto 2.8rem;
}

.section-heading .eyebrow {
  grid-column: 1 / -1;
  margin: 0;
}

.section-heading p {
  margin: 0;
}

.why-band {
  background: var(--surface-strong);
}

.why-layout {
  display: grid;
  max-width: 1160px;
  grid-template-columns: minmax(380px, 0.9fr) minmax(360px, 1.1fr);
  gap: 3rem;
  align-items: end;
  margin: 0 auto 2.2rem;
}

.why-layout .eyebrow {
  margin-bottom: 0.8rem;
}

.why-layout h2 {
  max-width: 12ch;
}

.why-layout p {
  margin: 0;
  color: var(--ink-muted);
  font-size: 1.08rem;
  line-height: 1.65;
}

.handoff-map {
  display: grid;
  max-width: 1160px;
  grid-template-columns: minmax(250px, 0.82fr) minmax(160px, 0.45fr) minmax(360px, 1fr);
  gap: 0;
  align-items: stretch;
  border: 1px solid rgb(33 23 51 / 22%);
  border-radius: 8px;
  background: var(--night);
  color: #ffffff;
  margin: 0 auto;
  overflow: hidden;
}

.system-side,
.handoff-gap,
.risk-side {
  min-height: 17.5rem;
  padding: 1.45rem;
}

.system-side {
  display: grid;
  align-content: center;
  background:
    linear-gradient(135deg, rgb(255 255 255 / 8%), rgb(255 255 255 / 0)),
    var(--night);
}

.map-label {
  margin: 0 0 1rem;
  color: rgb(255 255 255 / 62%);
  font-size: 0.75rem;
  font-weight: 820;
  text-transform: uppercase;
}

.system-chips {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
}

.system-chips span {
  display: inline-flex;
  min-height: 3.1rem;
  align-items: center;
  justify-content: center;
  border: 1px solid rgb(255 255 255 / 18%);
  border-radius: 7px;
  background: rgb(255 255 255 / 8%);
  color: rgb(255 255 255 / 86%);
  font-weight: 780;
}

.handoff-gap {
  position: relative;
  display: grid;
  align-content: center;
  justify-items: center;
  border-right: 1px solid rgb(255 255 255 / 14%);
  border-left: 1px solid rgb(255 255 255 / 14%);
  text-align: center;
}

.gap-line {
  position: absolute;
  top: 50%;
  right: -1.1rem;
  left: -1.1rem;
  height: 2px;
  background: linear-gradient(90deg, rgb(217 255 90 / 0), var(--signal), rgb(217 255 90 / 0));
}

.handoff-gap strong {
  position: relative;
  z-index: 1;
  border: 1px solid rgb(217 255 90 / 48%);
  border-radius: 999px;
  background: var(--night);
  color: var(--signal);
  font-size: 0.84rem;
  padding: 0.5rem 0.8rem;
  text-transform: uppercase;
}

.handoff-gap p {
  position: relative;
  z-index: 1;
  max-width: 12rem;
  margin: 0.85rem 0 0;
  color: rgb(255 255 255 / 70%);
  font-size: 0.9rem;
  line-height: 1.45;
}

.risk-side {
  background: #ffffff;
  color: var(--ink);
}

.risk-side .map-label {
  color: var(--ink-soft);
}

.risk-list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  counter-reset: risk;
  list-style: none;
}

.risk-list li {
  display: grid;
  grid-template-columns: 2.1rem minmax(0, 1fr);
  gap: 0.85rem;
  border-top: 1px solid var(--line);
  padding: 0.95rem 0;
  counter-increment: risk;
}

.risk-list li:first-child {
  border-top: 0;
  padding-top: 0;
}

.risk-list li::before {
  display: inline-flex;
  width: 2.1rem;
  height: 2.1rem;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #eef4ff;
  color: var(--blue);
  content: counter(risk, decimal-leading-zero);
  font-size: 0.78rem;
  font-weight: 840;
}

.risk-list strong {
  display: block;
  grid-column: 2;
}

.risk-list span {
  display: block;
  grid-column: 2;
  margin-top: 0.28rem;
  color: var(--ink-muted);
  line-height: 1.45;
}

.map-resolution {
  grid-column: 1 / -1;
  border-top: 1px solid rgb(255 255 255 / 14%);
  background: rgb(217 255 90 / 10%);
  color: rgb(255 255 255 / 88%);
  padding: 1rem 1.45rem;
}

.operating-model,
.product-grid,
.ai-grid {
  display: grid;
  max-width: 1160px;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 0 auto;
}

.operating-model article,
.product-grid article,
.ai-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface-strong);
  padding: 1.35rem;
}

.operating-model p,
.product-grid p,
.ai-grid p {
  margin: 0.8rem 0 0;
  color: var(--ink-muted);
  line-height: 1.55;
}

.step-number {
  display: block;
  margin-bottom: 2.2rem;
  color: var(--blue);
  font-weight: 820;
}

.guardrail-strip,
.standards-panel {
  display: grid;
  max-width: 1160px;
  margin: 1rem auto 0;
}

.guardrail-strip {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface-strong);
}

.guardrail-strip div {
  display: grid;
  gap: 0.35rem;
  min-height: 7.2rem;
  align-content: start;
  border-right: 1px solid var(--line);
  padding: 1rem;
}

.guardrail-strip div:last-child {
  border-right: 0;
}

.guardrail-strip strong {
  font-size: 0.95rem;
}

.guardrail-strip span {
  color: var(--ink-muted);
  font-size: 0.88rem;
  line-height: 1.45;
}

.standards-panel {
  grid-template-columns: minmax(320px, 0.86fr) minmax(0, 1fr);
  gap: 1.5rem;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(135deg, #ffffff 0%, #f5f8fc 100%);
  padding: 1.4rem;
}

.standards-copy .eyebrow {
  margin-bottom: 0.55rem;
}

.standards-copy h3 {
  max-width: 31ch;
  font-size: 1.45rem;
  line-height: 1.14;
}

.standards-copy p:not(.eyebrow) {
  max-width: 690px;
  margin: 0.8rem 0 0;
  color: var(--ink-muted);
  line-height: 1.55;
}

.standards-media {
  display: grid;
  gap: 0.9rem;
}

.standards-orbit {
  position: relative;
  min-height: 15.5rem;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    radial-gradient(circle at 50% 50%, rgb(217 255 90 / 28%), rgb(217 255 90 / 0) 24%),
    radial-gradient(circle at 16% 22%, rgb(32 179 166 / 22%), rgb(32 179 166 / 0) 30%),
    var(--surface-strong);
}

.standards-orbit::before,
.standards-orbit::after {
  position: absolute;
  inset: 12%;
  border: 1px dashed rgb(33 23 51 / 22%);
  border-radius: 999px;
  content: "";
}

.standards-orbit::before {
  animation: standards-ring 32s linear infinite;
}

.standards-orbit::after {
  inset: 24% 9%;
  transform: rotate(-18deg);
  animation: standards-ring-offset 40s linear infinite reverse;
}

.standards-core,
.standards-satellite {
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 820;
}

.standards-core {
  top: 50%;
  left: 50%;
  min-height: 3.2rem;
  border: 1px solid rgb(33 23 51 / 16%);
  background: var(--night);
  color: #ffffff;
  padding: 0 1rem;
  transform: translate(-50%, -50%);
}

.standards-satellite {
  min-height: 2.45rem;
  border: 1px solid rgb(33 23 51 / 14%);
  background: rgb(255 255 255 / 82%);
  color: var(--night);
  font-family: var(--mono);
  font-size: 0.76rem;
  padding: 0 0.8rem;
  animation: satellite-breathe 7.5s ease-in-out infinite;
  box-shadow: 0 10px 22px rgb(25 19 33 / 6%);
}

.standards-satellite-cdash {
  top: 12%;
  left: 13%;
}

.standards-satellite-sdtm {
  top: 13%;
  right: 14%;
  animation-delay: -1.6s;
}

.standards-satellite-adam {
  right: 7%;
  bottom: 38%;
  animation-delay: -3.1s;
}

.standards-satellite-odm {
  right: 22%;
  bottom: 11%;
  animation-delay: -4.4s;
}

.standards-satellite-define {
  bottom: 14%;
  left: 12%;
  animation-delay: -5.2s;
}

.standards-satellite-usdm {
  top: 41%;
  left: 6%;
  animation-delay: -6.4s;
}

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

.standards-grid span {
  display: inline-flex;
  min-height: 3.25rem;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--surface-strong);
  color: var(--night);
  font-weight: 820;
}

.products-band {
  background: #eef3f7;
}

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

.product-grid article {
  grid-column: span 2;
}

.product-status {
  margin-bottom: 1rem;
}

.product-status.coming-soon {
  background: #e9ecf5;
  color: var(--night);
}

.product-status.roadmap {
  background: #d9f5f0;
  color: #073b36;
}

.inspection-band {
  background: var(--night);
  color: #ffffff;
}

.inspection-band .section-heading p,
.inspection-band .eyebrow {
  color: rgb(255 255 255 / 68%);
}

.inspection-showcase {
  display: grid;
  max-width: 1160px;
  grid-template-columns: minmax(340px, 0.95fr) minmax(420px, 1.05fr);
  gap: 1px;
  margin: 0 auto;
  background: rgb(255 255 255 / 15%);
}

.inspection-media-card {
  border-color: rgb(255 255 255 / 16%);
  background: #2b1d44;
  box-shadow: none;
}

.inspection-media {
  position: relative;
  aspect-ratio: 16 / 9;
  min-height: 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 18%, rgb(217 255 90 / 24%), rgb(217 255 90 / 0) 30%),
    radial-gradient(circle at 78% 22%, rgb(32 179 166 / 20%), rgb(32 179 166 / 0) 32%),
    #2b1d44;
  padding: 1.3rem;
}

.inspection-media-card .media-caption {
  border-top: 1px solid rgb(255 255 255 / 14%);
  background: #2b1d44;
}

.inspection-media-card .media-caption span {
  color: var(--signal);
}

.inspection-media-card .media-caption strong {
  color: rgb(255 255 255 / 72%);
}

.inspection-media::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgb(255 255 255 / 6%) 1px, transparent 1px),
    linear-gradient(90deg, rgb(255 255 255 / 6%) 1px, transparent 1px);
  background-size: 36px 36px;
  content: "";
  mask-image: linear-gradient(180deg, #000 0%, rgb(0 0 0 / 70%) 72%, rgb(0 0 0 / 0) 100%);
}

.inspection-room {
  position: relative;
  z-index: 1;
  display: grid;
  overflow: hidden;
  border: 1px solid rgb(255 255 255 / 18%);
  border-radius: 8px;
  background: rgb(255 255 255 / 9%);
  box-shadow: 0 24px 52px rgb(0 0 0 / 18%);
}

.inspection-room-header {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  border-bottom: 1px solid rgb(255 255 255 / 14%);
  padding: 0.9rem 1rem;
}

.inspection-room-header span,
.inspection-room-header strong,
.inspection-query span,
.inspection-answer span {
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 720;
  text-transform: uppercase;
}

.inspection-room-header span {
  color: rgb(255 255 255 / 72%);
}

.inspection-room-header strong {
  color: var(--signal);
}

.inspection-room-body {
  display: grid;
  gap: 1rem;
  padding: 1rem;
}

.inspection-query {
  display: grid;
  gap: 0.35rem;
  border: 1px solid rgb(255 255 255 / 14%);
  border-radius: 8px;
  background: rgb(255 255 255 / 8%);
  padding: 1rem;
}

.inspection-query span {
  color: rgb(255 255 255 / 58%);
}

.inspection-query strong {
  color: #ffffff;
  font-size: 1.4rem;
}

.inspection-evidence-chain {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.6rem;
}

.inspection-evidence-chain i {
  position: relative;
  display: block;
  min-height: 5.4rem;
  border: 1px solid rgb(255 255 255 / 14%);
  border-radius: 7px;
  background:
    linear-gradient(180deg, rgb(255 255 255 / 14%), rgb(255 255 255 / 5%)),
    rgb(255 255 255 / 5%);
}

.inspection-evidence-chain i::before {
  position: absolute;
  right: 0.7rem;
  bottom: 0.7rem;
  left: 0.7rem;
  height: 0.46rem;
  border-radius: 999px;
  background: var(--signal);
  content: "";
}

.inspection-evidence-chain i:nth-child(2)::before {
  background: var(--teal);
}

.inspection-evidence-chain i:nth-child(3)::before {
  background: #ffffff;
}

.inspection-evidence-chain i:nth-child(4)::before {
  background: var(--blue);
}

.inspection-answer {
  display: grid;
  gap: 0.55rem;
}

.inspection-answer span {
  display: inline-flex;
  min-height: 2.2rem;
  align-items: center;
  border: 1px solid rgb(255 255 255 / 14%);
  border-radius: 999px;
  background: rgb(255 255 255 / 8%);
  color: rgb(255 255 255 / 76%);
  padding: 0 0.75rem;
}

.inspection-access-chip {
  position: absolute;
  right: 1.3rem;
  bottom: 1.3rem;
  z-index: 1;
  display: inline-flex;
  min-height: 2.5rem;
  align-items: center;
  border: 1px solid rgb(217 255 90 / 54%);
  border-radius: 999px;
  background: var(--night);
  color: var(--signal);
  padding: 0 0.85rem;
}

.question-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: transparent;
}

.question-list article {
  min-height: 13.95rem;
  background: #2b1d44;
  padding: 1.35rem;
}

.question-list span {
  color: var(--signal);
  font-weight: 840;
}

.question-list p {
  margin: 1.4rem 0 0;
  color: rgb(255 255 255 / 78%);
  font-size: 1.05rem;
  line-height: 1.5;
}

.ai-band {
  background: #f8fafc;
}

.ai-showcase {
  display: grid;
  max-width: 1160px;
  grid-template-columns: minmax(360px, 0.92fr) minmax(420px, 1.08fr);
  gap: 1rem;
  align-items: stretch;
  margin: 0 auto;
}

.ai-media-card {
  box-shadow: 0 18px 46px rgb(25 19 33 / 7%);
}

.ai-showcase .ai-grid {
  grid-template-columns: 1fr;
  margin: 0;
}

.ai-media {
  position: relative;
  aspect-ratio: 16 / 9;
  min-height: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    radial-gradient(circle at 20% 20%, rgb(217 255 90 / 30%), rgb(217 255 90 / 0) 30%),
    radial-gradient(circle at 78% 34%, rgb(32 179 166 / 20%), rgb(32 179 166 / 0) 34%),
    linear-gradient(135deg, #ffffff 0%, #edf3fb 100%);
}

.ai-media::before {
  position: absolute;
  top: 4.5rem;
  right: 5rem;
  left: 5rem;
  height: 2px;
  background: linear-gradient(90deg, var(--signal), rgb(32 179 166 / 62%), rgb(59 114 246 / 45%));
  content: "";
  transform: rotate(19deg);
  transform-origin: center;
}

.ai-contract-card,
.ai-output-card,
.ai-review-gate {
  position: absolute;
  display: grid;
  border: 1px solid rgb(33 23 51 / 16%);
  border-radius: 8px;
  background: rgb(255 255 255 / 82%);
  box-shadow: 0 18px 42px rgb(25 19 33 / 11%);
}

.ai-contract-card {
  top: 2.1rem;
  left: 2rem;
  width: 13rem;
  gap: 0.52rem;
  padding: 1rem;
}

.ai-contract-card span,
.ai-output-card span {
  color: var(--ink-muted);
}

.ai-contract-card strong,
.ai-output-card strong {
  color: var(--night);
  font-size: 1.25rem;
}

.ai-contract-card i {
  display: block;
  height: 0.48rem;
  border-radius: 999px;
  background: rgb(33 23 51 / 13%);
}

.ai-contract-card i:nth-of-type(2) {
  width: 70%;
}

.ai-contract-card i:nth-of-type(3) {
  width: 48%;
}

.ai-review-gate {
  top: 44%;
  left: 50%;
  min-width: 13rem;
  min-height: 3.2rem;
  place-items: center;
  border-color: rgb(217 255 90 / 62%);
  background: var(--night);
  color: var(--signal);
  transform: translate(-50%, -50%);
}

.ai-output-card {
  right: 2rem;
  bottom: 2.2rem;
  width: 14rem;
  gap: 0.4rem;
  padding: 1rem;
}

.ai-output-card::after {
  display: block;
  width: 100%;
  height: 0.55rem;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--signal), var(--teal));
  content: "";
}

.demo-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 2rem;
  align-items: center;
  background: #dcecff;
  padding: 4rem 3rem;
}

.demo-band > div {
  max-width: 820px;
}

.demo-band h2 {
  max-width: 18ch;
}

.demo-band p {
  margin-bottom: 0;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  border-top: 1px solid var(--line);
  background: var(--surface-strong);
  padding: 2rem 3rem;
}

.site-footer p {
  margin: 0.8rem 0 0;
  font-size: 0.95rem;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-content: start;
  justify-content: flex-end;
  color: var(--ink-muted);
  font-size: 0.95rem;
}

.landing-page .site-footer {
  align-items: center;
  padding-top: 1.1rem;
  padding-bottom: 1.1rem;
}

.landing-page .site-footer p {
  margin-top: 0.35rem;
  font-size: 0.84rem;
  line-height: 1.35;
}

.landing-page .site-footer nav {
  align-items: center;
}

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

  .button:hover,
  .nav-cta:hover {
    transform: none;
  }

  .hero-lottie-player,
  .logo-track,
  .proof-photo::after,
  .media-frame::after,
  .proof-photo img,
  .media-frame img,
  .media-orbit,
  .media-rail,
  .media-pulse,
  .media-checkpoints i,
  .media-vector-core::after,
  .media-vector-inspection::after,
  .media-vector-ai::after,
  .standards-orbit::before,
  .standards-orbit::after,
  .standards-satellite {
    animation: none !important;
  }

  .proof-photo img,
  .media-frame img,
  .standards-satellite {
    transform: none !important;
  }
}

@media (max-width: 1100px) {
  .landing-page {
    display: block;
    min-height: 100svh;
  }

  .site-header {
    padding: 1rem 1.5rem;
  }

  .top-nav {
    display: none;
  }

  .header-link {
    display: none;
  }

  .mobile-menu {
    display: block;
  }

  .hero-section {
    --hero-side-gutter: 1.5rem;
    --hero-art-inset: 0rem;

    grid-template-columns: minmax(0, 1fr) minmax(0, 0.94fr);
    gap: clamp(0.85rem, 2vw, 1.35rem);
    padding: 2.15rem var(--hero-side-gutter) 0.75rem
      calc(var(--hero-side-gutter) + var(--hero-art-inset));
  }

  .hero-copy {
    max-width: none;
  }

  h1 {
    max-width: 14.8ch;
    font-size: clamp(2.8rem, 5.4vw, 3.35rem);
  }

  .hero-visual {
    min-height: 260px;
    align-items: center;
    padding-top: 0;
  }

  .hero-lottie {
    max-width: min(100%, 530px);
    transform: translate(0, -1rem);
  }

  .integration-band {
    grid-template-columns: minmax(280px, 0.36fr) minmax(0, 1fr);
    gap: 1.25rem;
    padding: 0.65rem 0 0.65rem 1.5rem;
  }

  .integration-copy h2 {
    max-width: 22ch;
    font-size: 1.35rem;
  }

  .integration-copy p {
    font-size: 0.84rem;
  }

  .logo-carousel {
    width: 100%;
    max-width: none;
    margin: 0;
  }

  .logo-tile {
    flex-basis: 9.5rem;
    width: 9.5rem;
    height: 3rem;
    padding: 0.5rem 0.7rem;
  }

  .logo-tile img {
    max-width: 100%;
    max-height: 1.9rem;
  }

  .operating-intro {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    margin-bottom: 1.7rem;
  }

  .operating-lede {
    max-width: 760px;
  }

  .operating-media-frame {
    min-height: 26rem;
  }

  .section-heading,
  .why-layout,
  .handoff-map,
  .operating-model,
  .guardrail-strip,
  .standards-panel,
  .inspection-showcase,
  .ai-showcase,
  .ai-grid {
    grid-template-columns: 1fr;
  }

  .system-side,
  .handoff-gap,
  .risk-side {
    min-height: 0;
  }

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

  .handoff-gap {
    min-height: 9rem;
    border-top: 1px solid rgb(255 255 255 / 14%);
    border-right: 0;
    border-bottom: 1px solid rgb(255 255 255 / 14%);
    border-left: 0;
  }

  .gap-line {
    top: -1.1rem;
    right: auto;
    bottom: -1.1rem;
    left: 50%;
    width: 2px;
    height: auto;
    background: linear-gradient(180deg, rgb(217 255 90 / 0), var(--signal), rgb(217 255 90 / 0));
  }

  .guardrail-strip div {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .guardrail-strip div:last-child {
    border-bottom: 0;
  }

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

  .product-grid article {
    grid-column: span 1;
  }

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

  .ai-showcase .ai-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 900px) {
  .first-view-panel {
    min-height: calc(100svh - 4.15rem);
  }

  .hero-section {
    --hero-side-gutter: 1rem;
    --hero-art-inset: 0rem;

    grid-template-columns: 1fr;
    gap: 0.35rem;
    align-items: center;
    padding: 1.1rem var(--hero-side-gutter) 0.35rem
      calc(var(--hero-side-gutter) + var(--hero-art-inset));
  }

  .hero-section::before {
    opacity: 0.24;
  }

  .hero-section::after,
  .hero-visual::before {
    display: none;
  }

  h1 {
    max-width: 12ch;
    font-size: 2.75rem;
    line-height: 1;
  }

  .hero-lede {
    max-width: 40rem;
    margin-top: 0.75rem;
    font-size: 0.95rem;
    line-height: 1.45;
  }

  .hero-actions {
    margin-top: 0.9rem;
  }

  .hero-visual {
    min-height: 145px;
    justify-content: center;
    padding-top: 0;
  }

  .hero-lottie {
    width: 82%;
    max-width: 410px;
    transform: none;
  }

  .integration-band {
    grid-template-columns: 1fr;
    gap: 0.45rem;
    padding: 0.55rem 1rem 0.65rem;
  }

  .integration-copy h2 {
    max-width: none;
    font-size: 1.12rem;
  }

  .integration-copy p:not(.integration-disclaimer) {
    display: none;
  }

  .integration-disclaimer {
    font-size: 0.68rem;
  }

  .logo-carousel {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0.25rem 0;
  }

  .logo-track {
    gap: 0.55rem;
  }

  .logo-tile {
    flex-basis: 6.4rem;
    width: 6.4rem;
    height: 2.75rem;
    padding: 0.45rem 0.65rem;
  }

  .logo-tile img {
    max-width: 100%;
    max-height: 1.55rem;
  }
}

@media (min-width: 701px) and (max-width: 900px) {
  .hero-section {
    gap: 0.6rem;
    padding: 1.65rem 2rem 0.5rem;
  }

  h1 {
    max-width: 17ch;
    font-size: 3rem;
  }

  .hero-lede {
    max-width: 46rem;
  }

  .hero-visual {
    min-height: 210px;
  }

  .hero-lottie {
    width: 62%;
    max-width: 440px;
  }

  .integration-band {
    padding-right: 2rem;
    padding-left: 2rem;
  }
}

@media (max-width: 700px) {
  .site-header {
    gap: 0.75rem;
    padding: 0.85rem 1rem;
  }

  .brand {
    font-size: 0.95rem;
  }

  .brand-line {
    display: none;
  }

  .header-actions {
    margin-left: auto;
  }

  .nav-cta {
    min-height: 2.45rem;
    padding: 0 0.65rem;
    font-size: 0.88rem;
  }

  .hero-section {
    gap: 0.2rem;
    padding: 1rem 1rem 0.1rem;
  }

  h1 {
    max-width: 12ch;
    font-size: 2.18rem;
    line-height: 1;
  }

  h2 {
    max-width: 12ch;
    font-size: 2.25rem;
  }

  .hero-lede,
  .section-heading p,
  .operating-lede,
  .demo-band p {
    font-size: 0.92rem;
  }

  .hero-actions {
    display: grid;
    width: 100%;
    grid-template-columns: 1fr 1fr;
    gap: 0.55rem;
    margin-top: 0.85rem;
  }

  .hero-actions .button {
    width: 100%;
    min-height: 2.45rem;
    padding: 0 0.5rem;
    font-size: 0.82rem;
    line-height: 1.1;
    text-align: center;
  }

  .hero-visual {
    min-height: 120px;
  }

  .hero-lottie {
    width: 76%;
    max-width: 280px;
  }

  .integration-band {
    gap: 0.35rem;
    padding: 0.5rem 1rem 0.65rem;
  }

  .integration-copy .eyebrow {
    margin-bottom: 0.25rem;
    font-size: 0.68rem;
  }

  .integration-copy h2 {
    font-size: 1.04rem;
  }

  .integration-disclaimer {
    margin-top: 0.3rem;
    font-size: 0.65rem;
    line-height: 1.25;
  }

  .demo-band,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .site-footer {
    display: grid;
  }

  .product-grid,
  .question-list,
  .ai-showcase .ai-grid {
    grid-template-columns: 1fr;
  }

  .standards-panel {
    gap: 1.2rem;
    padding: 1rem;
  }

  .standards-copy h3 {
    font-size: 1.2rem;
  }

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

  .standards-grid span {
    min-height: 2.85rem;
    font-size: 0.92rem;
  }

  .proof-points {
    grid-template-columns: 1fr;
  }

  .proof-still-grid {
    grid-template-columns: 1fr;
  }

  .proof-still-card .media-caption {
    min-height: 0;
  }

  .media-caption {
    grid-template-columns: 1fr;
    gap: 0.3rem;
    padding: 0.85rem 1rem;
  }

  .proof-points article {
    min-height: 0;
    padding: 1rem;
  }

  .proof-points h3 {
    font-size: 1.04rem;
  }

  .operating-media-frame,
  .proof-illustration,
  .standards-orbit {
    min-height: 13.5rem;
  }

  .operating-media-frame,
  .inspection-media,
  .ai-media {
    min-height: 0;
  }

  .page-band {
    padding: 4rem 1rem;
  }

  .operating-band-simple {
    padding-top: 3.4rem;
  }

  .operating-intro {
    gap: 1rem;
    margin-bottom: 1.25rem;
  }

  .section-heading {
    gap: 1.2rem;
    margin-bottom: 2rem;
  }

  .why-layout {
    gap: 1.2rem;
    margin-bottom: 1.4rem;
  }

  .why-layout h2 {
    max-width: 12ch;
  }

  .system-side,
  .handoff-gap,
  .risk-side {
    padding: 1rem;
  }

  .system-chips {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.55rem;
  }

  .system-chips span {
    min-height: 2.75rem;
  }

  .risk-list li {
    grid-template-columns: 1.9rem minmax(0, 1fr);
    gap: 0.75rem;
  }

  .risk-list li::before {
    width: 1.9rem;
    height: 1.9rem;
  }

  .demo-band,
  .site-footer {
    padding: 3rem 1rem;
  }

  .site-footer nav {
    justify-content: flex-start;
  }
}

@media (max-height: 820px) and (min-width: 1101px) {
  .hero-section {
    --hero-art-inset: 1rem;

    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  h1 {
    font-size: 3.75rem;
  }

  .hero-lede {
    margin-top: 0.9rem;
    font-size: 0.98rem;
    line-height: 1.5;
  }

  .hero-actions {
    margin-top: 1.2rem;
  }

  .hero-visual {
    min-height: 305px;
  }

  .hero-lottie {
    max-width: 640px;
  }

  .hero-lottie-player {
    transform: translateY(-4%) scale(1.1);
  }

  .integration-copy h2 {
    font-size: 1.32rem;
  }

  .logo-tile {
    height: 3.05rem;
  }
}

@media (max-height: 720px) and (max-width: 900px) {
  .hero-section {
    padding-top: 0.65rem;
  }

  .hero-lede {
    display: none;
  }

  .hero-actions {
    margin-top: 0.65rem;
  }

  .hero-visual {
    min-height: 92px;
  }

  .hero-lottie {
    width: 58%;
    max-width: 220px;
  }

  .integration-copy h2 {
    font-size: 0.96rem;
  }

  .integration-disclaimer {
    font-size: 0.6rem;
  }

  .logo-tile {
    flex-basis: 6.4rem;
    width: 6.4rem;
    height: 2.45rem;
  }

  .logo-carousel {
    width: 100%;
    max-width: none;
  }

  .logo-tile img {
    max-width: 100%;
    max-height: 1.35rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .logo-track,
  .proof-photo::after,
  .media-frame::after,
  .proof-photo img,
  .media-frame img,
  .media-orbit,
  .media-rail,
  .media-pulse,
  .media-checkpoints i,
  .media-vector-core::after,
  .media-vector-inspection::after,
  .media-vector-ai::after,
  .standards-orbit::before,
  .standards-orbit::after,
  .standards-satellite {
    animation: none;
  }

  .proof-photo img,
  .media-frame img,
  .standards-satellite {
    transform: none;
  }
}

.legal-top-nav {
  justify-content: flex-end;
}

.legal-page {
  background: linear-gradient(180deg, var(--surface-blue), var(--surface) 22rem);
}

.legal-hero {
  max-width: 980px;
  margin: 0 auto;
  padding: 5.4rem 3rem 2rem;
}

.legal-hero h1 {
  max-width: 14ch;
  font-size: clamp(3rem, 7vw, 5rem);
}

.legal-hero p {
  max-width: 760px;
  color: var(--ink-muted);
  font-size: 1.08rem;
  line-height: 1.62;
}

.legal-updated {
  font-family: var(--mono);
  font-size: 0.78rem !important;
  font-weight: 760;
  text-transform: uppercase;
}

.legal-body {
  display: grid;
  max-width: 980px;
  gap: 1px;
  margin: 0 auto 5rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
  overflow: hidden;
}

.legal-body article {
  display: grid;
  gap: 0.8rem;
  background: var(--surface-strong);
  padding: clamp(1.15rem, 2.2vw, 1.8rem);
}

.legal-body h2 {
  max-width: none;
  font-size: 1.35rem;
  line-height: 1.16;
}

.legal-body p,
.legal-body li {
  color: var(--ink-muted);
  font-size: 0.98rem;
  line-height: 1.62;
}

.legal-body p,
.legal-body ul {
  margin: 0;
}

.legal-body ul {
  display: grid;
  gap: 0.55rem;
  padding-left: 1.25rem;
}

.legal-body a {
  color: var(--blue);
  font-weight: 720;
}

.not-found-page {
  display: grid;
  min-height: 100svh;
  grid-template-rows: auto minmax(0, 1fr) auto;
}

.not-found-main {
  display: grid;
  min-height: 0;
  align-items: center;
  background:
    linear-gradient(180deg, var(--surface-blue), rgb(246 248 251 / 0) 18rem),
    var(--surface);
  padding: clamp(3rem, 9vw, 7rem) 3rem;
}

.not-found-copy {
  max-width: 760px;
  margin: 0 auto;
}

.not-found-copy h1 {
  max-width: 10ch;
  font-size: clamp(3.25rem, 8vw, 6.25rem);
}

.not-found-copy p {
  max-width: 620px;
  color: var(--ink-muted);
  font-size: 1.08rem;
  line-height: 1.62;
}

.not-found-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.6rem;
}

@media (max-width: 700px) {
  .legal-hero {
    padding: 3.6rem 1rem 1.5rem;
  }

  .legal-hero h1 {
    max-width: 12ch;
    font-size: 2.6rem;
  }

  .legal-body {
    margin-right: 1rem;
    margin-bottom: 3.5rem;
    margin-left: 1rem;
  }

  .not-found-main {
    align-items: start;
    padding: 3rem 1rem;
  }

  .not-found-copy h1 {
    max-width: 9ch;
    font-size: 3rem;
  }

  .not-found-actions {
    display: grid;
  }
}
