:root {
  --home-dark: #071111;
  --home-dark-2: #112424;
  --home-ink: #f2f6f4;
  --home-soft: #a8bab7;
  --home-paper: #eef3f8;
  --home-surface: #ffffff;
  --home-text: #0b0d12;
  --home-muted: #536175;
  --home-blue: #2238e8;
  --home-cyan: #5ce1ff;
  --home-line-dark: rgba(220, 243, 239, 0.18);
  --home-line: rgba(11, 13, 18, 0.13);
  --home-gutter: clamp(20px, 4vw, 64px);
  --home-max: 1320px;
  --home-ease: cubic-bezier(0.22, 1, 0.36, 1);
}

html:has(.home-page) {
  background: var(--home-dark);
  color-scheme: dark;
}

body.home-page {
  min-width: 0;
  overflow-x: clip;
  background: var(--home-paper);
  color: var(--home-text);
}

.home-page main {
  position: relative;
  z-index: 1;
  overflow: clip;
}

.home-page main > section {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
  border: 0;
}

.home-page .skip-link {
  z-index: 1000;
  background: #fff;
  color: var(--home-text);
}

.home-page .sr-only,
.home-page .offer-source-copy {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

/* Floating chrome: prompt 1 confidence, AUMI content. */
.home-header {
  position: fixed;
  z-index: 50;
  top: max(16px, env(safe-area-inset-top));
  right: var(--home-gutter);
  left: var(--home-gutter);
  display: grid;
  grid-template-columns: auto minmax(360px, 520px) auto;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  pointer-events: none;
  transition: opacity 580ms var(--home-ease), transform 580ms var(--home-ease);
}

.home-header > * {
  pointer-events: auto;
}

.home-brand {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  gap: 10px;
  padding: 4px 15px 4px 4px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(6, 15, 16, 0.82);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.16);
  color: #fff;
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-decoration: none;
  backdrop-filter: blur(14px) saturate(108%);
}

.home-brand:hover {
  color: #fff;
}

.home-brand__disc {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  background: #fff;
}

.home-brand__disc img {
  width: 23px;
  height: 23px;
  filter: invert(1);
}

.home-nav-pill {
  display: flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2.5vw, 34px);
  padding: 4px 18px;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.16);
}

.home-nav-pill a {
  position: relative;
  padding: 12px 0;
  color: rgba(11, 13, 18, 0.56);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.015em;
  text-decoration: none;
  transition: color 150ms ease;
}

.home-nav-pill a:hover,
.home-nav-pill a[aria-current="true"] {
  color: var(--home-text);
}

.home-nav-pill a[aria-current="true"]::after {
  position: absolute;
  bottom: 5px;
  left: 50%;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: -5px 0 currentColor, 5px 0 currentColor;
  content: "";
  transform: translateX(-50%);
}

.home-header-cta {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: #28282a;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.16);
  color: #d7dfdd;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 150ms ease, color 150ms ease, transform 150ms ease;
}

.home-header-cta:hover {
  background: var(--home-cyan);
  color: var(--home-text);
  transform: translateY(-1px);
}

.home-menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  background: rgba(8, 18, 19, 0.84);
  color: #fff;
  backdrop-filter: blur(14px);
}

.home-menu-toggle span {
  display: block;
  width: 18px;
  height: 1.5px;
  margin: 5px auto;
  background: currentColor;
  transition: transform 180ms var(--home-ease);
}

.home-header.menu-open .home-menu-toggle {
  background: #fff;
  color: var(--home-text);
}

.home-header.menu-open .home-menu-toggle span:first-child {
  transform: translateY(3.25px) rotate(45deg);
}

.home-header.menu-open .home-menu-toggle span:last-child {
  transform: translateY(-3.25px) rotate(-45deg);
}

.home-menu-scrim {
  position: fixed;
  z-index: 49;
  inset: 0;
  background: rgba(0, 0, 0, 0.62);
  backdrop-filter: blur(6px);
}

.home-mobile-menu {
  position: fixed;
  z-index: 51;
  top: calc(max(16px, env(safe-area-inset-top)) + 62px);
  right: 16px;
  left: 16px;
  display: grid;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 24px;

  background: #fff;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
  color: var(--home-text);
}

.home-page #hero {
  display: block;
  min-height: 0;
  align-content: normal;
  text-align: left !important;
}

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

.home-mobile-menu > a {
  min-height: 50px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--home-line);
  color: var(--home-text);
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
}

.home-mobile-menu > a:last-of-type {
  justify-content: center;
  margin-top: 14px;
  border: 0;
  border-radius: 999px;
  background: var(--home-blue);
  color: #fff;
}

.home-mobile-menu .lang-switch {
  margin-top: 14px;
}

.home-mobile-menu .lang-switch a {
  border-color: var(--home-line);
  color: var(--home-muted);
}

.home-mobile-menu .lang-switch a[aria-current="page"] {
  border-color: var(--home-blue);
  color: var(--home-blue);
}

body.menu-open {
  overflow: hidden;
}

.home-world-stage {
  position: fixed;
  z-index: 0;
  inset: 0;
  overflow: hidden;
  background: #213b39;
  pointer-events: none;
}

.home-world-stage #webgl {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* Hero: prompt 2 asymmetry + prompt 3 technical reveal. */
.home-hero {
  position: relative;
  height: 165svh;
  background: transparent;
  color: var(--home-ink);
}

.home-hero__pin {
  position: sticky;
  top: 0;
  height: 100svh;
  min-height: 640px;
  overflow: hidden;
  isolation: isolate;
  background: transparent;
}

.home-hero__media,
.home-hero__poster,
#webgl,
.home-hero__xray,
.home-hero__vignette {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.home-hero__media {
  z-index: 0;
  overflow: hidden;
  opacity: 1;
  transform: none;
  transition: opacity 760ms ease 420ms, transform 1200ms var(--home-ease) 420ms;
}

.home-hero__poster {
  z-index: 0;
  max-width: none;
  object-fit: cover;
  object-position: 52% 50%;
  transition: opacity 480ms var(--home-ease);
}

#webgl {
  z-index: 1;
  max-width: none;
  opacity: 0;
  transition: opacity 480ms var(--home-ease);
}

.aumi-world-ready #webgl {
  opacity: 1;
}

.aumi-world-ready .home-hero__poster {
  opacity: 0;
}

.aumi-static-fallback #webgl {
  display: none;
}

.aumi-static-fallback .home-hero__poster {
  opacity: 1;
}

.home-hero__xray {
  z-index: 2;
  max-width: none;
  pointer-events: none;
}

.home-hero__vignette {
  z-index: 3;
  background:
    linear-gradient(90deg, rgba(3, 9, 10, 0.97) 0%, rgba(3, 9, 10, 0.76) 38%, rgba(3, 9, 10, 0.12) 69%, transparent 80%),
    linear-gradient(180deg, rgba(3, 9, 10, 0.58) 0%, transparent 24%, transparent 68%, rgba(3, 9, 10, 0.72) 100%);
  pointer-events: none;
}

.home-hero__copy {
  position: absolute;
  z-index: 5;
  left: var(--home-gutter);
  bottom: clamp(148px, 18vh, 190px);
  width: min(880px, calc(100vw - var(--home-gutter) * 2));
  transform-origin: left bottom;
  will-change: transform, opacity;
}

.home-trust {
  position: relative;
  z-index: 1;
  display: flex;
  width: fit-content;
  max-width: 100%;
  min-height: 36px;
  align-items: center;
  margin-bottom: clamp(16px, 2.3vh, 24px);
  padding-right: 14px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  background: rgba(8, 18, 19, 0.78);
  color: #d5dfdd;
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}

.home-trust__marks {
  display: flex;
  align-items: center;
  margin-right: 10px;
}

.home-trust__marks i {
  display: grid;
  width: auto;
  min-width: 40px;
  height: 28px;
  place-items: center;
  margin-left: 5px;
  padding: 0 8px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 2px;
  background: #fff;
  color: #111;
  font-family: "IBM Plex Mono", monospace;
  font-size: 9px;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
}

.home-trust__marks i:first-child {
  margin-left: 0;
}

.home-hero__title {
  max-width: none;
  margin: 0 0 24px !important;
  color: #fff;
  font-size: clamp(60px, 7vw, 112px) !important;
  font-weight: 600;
  letter-spacing: -0.075em;
  line-height: 0.9;
  text-wrap: nowrap;
}

.home-hero__title > span {
  display: block;
  overflow: hidden;
  white-space: nowrap;
}

.home-hero__title > span > span {
  display: block;
  transition: transform 850ms var(--home-ease), opacity 600ms ease;
}

.home-hero__title > span:nth-child(2) {
  color: rgba(216, 226, 223, 0.78);
}

.home-hero__title > span:nth-child(2) > span {
  transition-delay: 120ms;
}

.home-hero__lead {
  max-width: 520px;
  margin: 0 0 28px;
  color: rgba(226, 234, 232, 0.86);
  font-size: clamp(16px, 1.5vw, 20px);
  font-weight: 400;
  line-height: 1.52;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.7);
}

.home-primary-cta {
  display: inline-flex;
  min-width: 238px;
  min-height: 50px;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 4px 5px 4px 17px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 7px;
  background: #fff;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.38);
  color: #111;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: filter 150ms ease, transform 150ms ease;
}

.home-primary-cta i {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 7px;
  background: #071111;
  color: #fff;
  font-size: 18px;
  font-style: normal;
}

.home-primary-cta:hover {
  color: #111;
  filter: brightness(1.05);
  transform: translateY(-2px);
}


.home-stats {
  position: absolute;
  z-index: 5;
  right: var(--home-gutter);
  bottom: 18px;
  left: var(--home-gutter);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0;
  border-top: 1px solid var(--home-line-dark);
}

.home-stats > div {
  display: grid;
  min-height: 78px;
  align-content: center;
  padding: 10px 18px;
  border-right: 1px solid var(--home-line-dark);
}

.home-stats > div:first-child {
  padding-left: 0;
}

.home-stats > div:last-child {
  border-right: 0;
}

.home-stats dt {
  order: 2;
  margin-top: 3px;
  color: #91a5a1;
  font-family: "IBM Plex Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.home-stats dd {
  order: 1;
  margin: 0;
  color: #fff;
  font-size: clamp(18px, 2vw, 28px);
  font-variant-numeric: tabular-nums;
  font-weight: 600;
  letter-spacing: -0.035em;
}

/* One-shot entrance choreography from the supplied prompts. */
.home-header,
.anim,
.home-stats > div {
  opacity: 1;
  transform: none;
}

.motion-pending .home-header {
  opacity: 0;
  transform: translateY(-18px);
}

.motion-pending .home-hero__media {
  opacity: 0;
  transform: scale(1.035);
}


.motion-pending .home-hero__title > span > span {
  opacity: 0;
  transform: translate3d(0, 112%, 0) skewY(2deg);
}

.motion-pending .anim,
.motion-pending .home-stats > div {
  opacity: 0;
  transform: translateY(18px) scale(0.985);
}

.anim,
.home-stats > div {
  transition: opacity 720ms var(--home-ease) var(--d, 0s), transform 820ms var(--home-ease) var(--d, 0s);
}

.motion-ready .anim,
.motion-ready .home-stats > div {
  transition-delay: 0s;
  transition-duration: 180ms;
}

/* Shared section typography. */
.home-section-head {
  width: min(calc(100% - var(--home-gutter) * 2), var(--home-max));
  margin: 0 auto;
}

.home-section-head .kicker {
  margin: 0 0 20px;
}

.home-section-head h2 {
  max-width: 16ch;
  margin: 0 0 24px;
  color: var(--home-text);
  font-size: clamp(48px, 6vw, 92px);
  font-weight: 600;
  letter-spacing: -0.06em;
  line-height: 0.94;
}

.home-section-head .lead {
  max-width: 58ch;
  margin: 0;
  color: var(--home-muted);
  font-size: clamp(17px, 1.7vw, 22px);
}

/* Proof rail: vertical scroll drives a horizontal cinematic catalogue. */
.home-proof {
  position: relative;
  height: 300svh;
  background: var(--home-paper);
  color: var(--home-text);
}

.home-proof__pin {
  position: sticky;
  top: 0;
  height: 100svh;
  min-height: 680px;
  overflow: hidden;
  padding-top: clamp(78px, 10vh, 112px);
}

.home-proof__viewport {
  position: absolute;
  right: 0;
  bottom: clamp(40px, 6vh, 72px);
  left: 0;
  overflow: hidden;
}


.home-proof__rail {
  display: flex;
  width: max-content;
  gap: 22px;
  padding: 0 var(--home-gutter);
  will-change: transform;
}

.home-proof__slide {
  display: grid;
  width: calc(100vw - var(--home-gutter) * 2);
  height: min(52svh, 510px);
  min-height: 380px;
  grid-template-columns: minmax(230px, 0.72fr) minmax(0, 1.28fr);
  overflow: hidden;
  border: 1px solid var(--home-line);
  border-radius: 2px;
}

.home-proof__slide > div {
  display: grid;
  align-content: end;
  padding: clamp(28px, 4vw, 54px);
}

.home-proof__visual {
  border-right: 1px solid currentColor;
  opacity: 0.9;
}


.home-proof__visual b,
.home-proof__visual span {
  display: block;
}

.home-proof__visual b {
  font-size: clamp(56px, 8vw, 120px);
  font-weight: 600;
  letter-spacing: -0.08em;
  line-height: 0.84;
}

.home-proof__visual span {
  max-width: 18ch;
  margin-top: 18px;
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.5;
  text-transform: uppercase;
}

.home-proof__slide .sector {
  margin: 0 0 28px;
  color: currentColor;
  opacity: 0.82;
}

.home-proof__slide h3 {
  max-width: 15ch;
  margin: 0 0 20px;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 0.98;
}

.home-proof__slide p:not(.sector) {
  max-width: 46ch;
  margin: 0;
  opacity: 0.84;
}

.home-proof__slide a {
  margin-top: 24px;
  color: inherit;
  font-weight: 700;
}

.home-proof__slide--cyan {
  background: var(--home-cyan);
  color: #071111;
}

.home-proof__slide--ink {
  background: #111722;
  color: #edf4f2;
}

.home-proof__slide--blue {
  background: var(--home-blue);
  color: #fff;
}

.home-proof__slide--paper {
  background: #fff;
  color: var(--home-text);
}

/* The hydraulic world is an operating map: one physical stage per method decision. */
.home-method {
  position: relative;
  height: 330svh;
  padding: 0 !important;
  background: transparent;
  color: var(--home-ink);
}

.home-method__pin {
  position: sticky;
  top: 0;
  height: 100svh;
  min-height: 680px;
  overflow: hidden;
  isolation: isolate;
  background: rgba(7, 17, 17, 0.18);
}

.home-method__pin::after {
  position: absolute;
  z-index: 2;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(4, 12, 13, 0.94) 0%, rgba(4, 12, 13, 0.8) 33%, rgba(4, 12, 13, 0.16) 66%, transparent 78%),
    linear-gradient(180deg, rgba(4, 12, 13, 0.54) 0%, transparent 22%, transparent 72%, rgba(4, 12, 13, 0.72) 100%);
  content: "";
  pointer-events: none;
}

.home-method .home-section-head--dark {
  position: absolute;
  z-index: 5;
  top: clamp(86px, 10vh, 116px);
  left: var(--home-gutter);
  width: min(560px, calc(100% - var(--home-gutter) * 2));
  margin: 0;
  transition: opacity 180ms ease;
}

.home-section-head--dark h2 {
  margin-bottom: 14px;
  color: #fff;
  font-size: clamp(38px, 4.6vw, 68px);
}

.home-section-head--dark .lead {
  max-width: 42ch;
  color: var(--home-soft);
  font-size: 16px;
}

.home-method__stack,
.home-method__panel {
  position: absolute;
  inset: 0;
}

.home-method__panel {
  z-index: 0;
  overflow: hidden;
  background: rgba(16, 35, 34, 0.28);
  color: #fff;
  opacity: 0;
  visibility: hidden;
  transform: translate3d(0, 18px, 0);
  transition: opacity 160ms ease, transform 360ms var(--home-ease), visibility 0s linear 160ms;
}

.home-method__panel.is-current {
  z-index: 3;
  opacity: 1;
  visibility: visible;
  transform: none;
  transition-delay: 0s;
}

.home-method__scene {
  position: absolute;
  z-index: 0;
  top: 0;
  right: -3%;
  width: 68%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: 50% 50%;
  opacity: 0.76;
  filter: saturate(0.86) contrast(1.04) brightness(0.88);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.12) 16%, #000 50%);
  mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.12) 16%, #000 50%);
  transition: opacity 300ms ease, transform 1400ms var(--home-ease);
}

.home-method__panel.is-current .home-method__scene {
  opacity: 0.92;
  transform: scale(1.035);
}

body.aumi-world-ready .home-method__panel .home-method__scene {
  opacity: 0;
}

.home-method__kind {
  position: absolute;
  z-index: 4;
  top: clamp(300px, 38vh, 410px);
  left: var(--home-gutter);
  color: var(--home-cyan);
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.home-method__panel > div {
  position: absolute;
  z-index: 4;
  bottom: clamp(96px, 12vh, 138px);
  left: var(--home-gutter);
  width: min(560px, 44vw);
}

.home-method__physical {
  display: block;
  margin-bottom: 16px;
  color: var(--home-cyan);
  font-family: "IBM Plex Mono", monospace;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.09em;
}

.home-method__callout {
  position: absolute;
  z-index: 5;
  --leader: 80px;
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  padding: 9px 13px;
  border: 1px solid rgba(92, 225, 255, 0.72);
  border-radius: 2px;
  background: rgba(4, 15, 16, 0.88);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.28);
  color: #fff;
  opacity: 0;
  transform: translateY(8px);
  backdrop-filter: blur(10px);
  transition: opacity 220ms ease 120ms, transform 360ms var(--home-ease) 120ms;
}

.home-method__callout::before {
  position: absolute;
  top: 50%;
  right: 100%;
  width: var(--leader);
  height: 2px;
  background: var(--home-cyan);
  box-shadow: 0 0 8px rgba(92, 225, 255, 0.45);
  content: "";
  transform: translateY(-50%);
}

.home-method__callout i {
  position: absolute;
  top: 50%;
  right: calc(100% + var(--leader) - 6px);
  width: 12px;
  height: 12px;
  border: 2px solid #071111;
  border-radius: 50%;
  background: var(--home-cyan);
  box-shadow: 0 0 0 4px rgba(92, 225, 255, 0.28), 0 0 14px rgba(92, 225, 255, 0.5);
  transform: translateY(-50%);
}

.home-method__callout b {
  font-family: "IBM Plex Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.home-method__panel.is-current .home-method__callout {
  opacity: 1;
  transform: none;
}

.home-method__callout--context {
  top: 43%;
  left: 68%;
}

.home-method__callout--route {
  top: 50%;
  left: 72%;
}

.home-method__callout--delivery {
  top: 38%;
  left: 70%;
}

.home-method__panel h3 {
  max-width: 13ch;
  margin: 0 0 18px;
  color: #fff;
  font-size: clamp(48px, 6.4vw, 92px);
  font-weight: 600;
  letter-spacing: -0.065em;
  line-height: 0.91;
}

.home-method__panel p {
  max-width: 44ch;
  margin: 0;
  color: rgba(238, 246, 244, 0.94);
  font-size: clamp(16px, 1.55vw, 20px);
  line-height: 1.5;
}


.home-method__panel--route {
  background: rgba(17, 26, 67, 0.32);
}

.home-method__panel--delivery {
  background: rgba(20, 40, 38, 0.32);
}

.home-method__legend {
  position: absolute;
  z-index: 6;
  right: var(--home-gutter);
  bottom: 24px;
  display: grid;
  width: min(600px, 46vw);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 2px;
  background: rgba(5, 14, 15, 0.68);
  backdrop-filter: blur(14px) saturate(108%);
}

.home-method__legend button {
  min-height: 56px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border: 0;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.88);
  text-align: left;
  cursor: pointer;
}

.home-method__legend button:last-child {
  border-right: 0;
}

.home-method__legend button[aria-current="step"] {
  background: rgba(92, 225, 255, 0.18);
  box-shadow: inset 0 3px var(--home-cyan);
  color: #fff;
}

.home-method__legend button span {
  color: var(--home-cyan);
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
}

.home-method__legend button b {
  font-size: 14px;
}

body.aumi-static-fallback .home-method {
  height: auto;
  padding: 0 !important;
}

body.aumi-static-fallback .home-method__pin {
  position: relative;
  height: auto;
  min-height: 0;
  overflow: visible;
  padding: 88px var(--home-gutter);
}

body.aumi-static-fallback .home-method .home-section-head--dark {
  position: relative;
  top: auto;
  left: auto;
  width: min(100%, 680px);
}

body.aumi-static-fallback .home-method__stack {
  position: relative;
  inset: auto;
  display: grid;
  width: min(100%, var(--home-max));
  gap: 24px;
  margin: 56px auto 0;
}

body.aumi-static-fallback .home-method__panel {
  position: relative;
  inset: auto;
  min-height: 620px;
  padding: 300px 28px 64px;
  opacity: 1;
  visibility: visible;
  transform: none;
}

body.aumi-static-fallback .home-method__scene {
  top: 0;
  right: 0;
  width: 100%;
  height: 350px;
  opacity: 0.68;
  -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 58%, transparent 100%);
  mask-image: linear-gradient(180deg, #000 0%, #000 58%, transparent 100%);
}

body.aumi-static-fallback .home-method__kind,
body.aumi-static-fallback .home-method__panel > div {
  position: relative;
  top: auto;
  right: auto;
  bottom: auto;
  left: auto;
  width: auto;
}

body.aumi-static-fallback .home-method__kind {
  display: block;
  margin-bottom: 28px;
}

body.aumi-static-fallback .home-method__legend {
  display: none;
}

/* Offer index: Pinstack clarity, no generic pricing cards. */
.home-offers {
  padding: clamp(86px, 10vw, 140px) var(--home-gutter) !important;
  background: var(--home-paper);
}

.home-offers__layout {
  display: grid;
  width: min(100%, var(--home-max));
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
  gap: clamp(36px, 6vw, 90px);
  align-items: start;
  margin: clamp(60px, 8vw, 100px) auto 0;
}

.home-offers__index {
  border-top: 1px solid var(--home-line);
}

.home-offers__index > a {
  position: relative;
  display: grid;
  min-height: 102px;
  grid-template-columns: 56px minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  padding: 14px 18px 14px 0;
  border-bottom: 1px solid var(--home-line);
  color: var(--home-text);
  text-decoration: none;
  transition: background-color 160ms ease, box-shadow 160ms ease;
}

.home-offers__index > a:hover,
.home-offers__index > a:focus-visible,
.home-offers__index > a.is-active {
  background: #fff;
  box-shadow: inset 3px 0 var(--home-blue);
}

.home-offers__index > a.is-active strong {
  color: var(--home-blue);
}

.home-offers__index > a > span:first-child {
  color: var(--home-blue);
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
}

.home-offers__index strong {
  font-size: clamp(24px, 3vw, 42px);
  letter-spacing: -0.04em;
}

.home-offers__index small {
  color: #334055;
  font-family: "IBM Plex Mono", monospace;
  font-size: 14px;
  font-weight: 700;
}

.home-offers__index small i {
  font-style: normal;
}

.home-offers__preview {
  position: sticky;
  top: 112px;
  display: grid;
  min-height: 440px;
  align-content: end;
  padding: clamp(28px, 4vw, 48px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 2px;
  background: #101b1d;
  color: #fff;
}

.home-offers__preview > span {
  position: absolute;
  top: 28px;
  left: 28px;
  color: var(--home-cyan);
  font-family: "IBM Plex Mono", monospace;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.home-offers__preview strong {
  font-size: clamp(56px, 7vw, 92px);
  letter-spacing: -0.07em;
  line-height: 0.9;
}

.home-offers__preview b {
  margin-top: 18px;
  color: #c4d0ce;
  font-family: "IBM Plex Mono", monospace;
  font-size: 14px;
}

.home-offers__preview p {
  margin: 28px 0;
  color: #aebfbc;
}

.home-offers__preview .cta-btn {
  width: fit-content;
}

/* Security path section. */
.home-security {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-content: center;
  padding: clamp(96px, 12vw, 170px) var(--home-gutter) !important;
  overflow: hidden;
  background: rgba(34, 56, 232, 0.9);
  color: #fff;
}

.home-security__path {
  position: absolute;
  z-index: 1;
  inset: 8% -3% auto;
  width: 106%;
  height: 44%;
  opacity: 0.34;
}

.home-security__scene {
  position: absolute;
  z-index: 0;
  top: 0;
  right: -8%;
  width: 66%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: 54% 50%;
  opacity: 0.3;
  filter: saturate(0.55) contrast(1.08);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.14) 22%, #000 60%);
  mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.14) 22%, #000 60%);
  transition: opacity 500ms ease, transform 1400ms var(--home-ease);
}

.home-security.is-visible .home-security__scene {
  opacity: 0.44;
  transform: scale(1.025);
}

body.aumi-world-ready .home-security .home-security__scene {
  opacity: 0;
}

body.aumi-static-fallback .home-security .home-security__scene {
  opacity: 0.44;
}

.home-security__path path {
  fill: none;
  stroke: var(--home-cyan);
  stroke-width: 2;
  stroke-dasharray: 1800;
  stroke-dashoffset: 1800;
  transition: stroke-dashoffset 1600ms var(--home-ease);
  vector-effect: non-scaling-stroke;
}

.home-security.is-visible .home-security__path path {
  stroke-dashoffset: 0;
}

.home-section-head--security {
  position: relative;
  z-index: 2;
}

.home-section-head--security .kicker,
.home-section-head--security .lead {
  color: rgba(255, 255, 255, 0.9);
}

.home-section-head--security h2 {
  color: #fff;
}

.home-security__ledger {
  position: relative;
  z-index: 2;
  display: grid;
  width: min(100%, var(--home-max));
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: clamp(58px, 8vw, 100px) auto 0;
  border-top: 1px solid rgba(255, 255, 255, 0.52);
}

.home-security__ledger > div {
  min-height: 260px;
  padding: 24px 28px 28px 0;
  border-right: 1px solid rgba(255, 255, 255, 0.24);
  border-bottom: 1px solid rgba(255, 255, 255, 0.24);
}

.home-security__ledger > div + div {
  padding-left: 28px;
}

.home-security__ledger > div:last-child {
  border-right: 0;
}

.home-security__ledger span {
  color: var(--home-cyan);
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
}

.home-security__ledger h3 {
  max-width: 14ch;
  margin: 64px 0 16px;
  color: #fff;
  font-size: clamp(26px, 3vw, 42px);
}

.home-security__ledger p {
  max-width: 34ch;
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
}

.home-security__link {
  position: relative;
  z-index: 2;
  width: min(100%, var(--home-max));
  margin: 30px auto 0;
  color: #fff;
  font-weight: 700;
}

/* Pinstack-style direct index: restore depth without burying routes in a footer. */
.home-directory {
  padding: clamp(86px, 10vw, 140px) var(--home-gutter) !important;
  background: #e4ebf2;
  color: var(--home-text);
}

.home-directory__status {
  position: sticky;
  z-index: 4;
  top: 82px;
  display: flex;
  width: min(100%, var(--home-max));
  min-height: 52px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin: clamp(52px, 7vw, 84px) auto 0;
  padding: 10px 0;
  border-top: 1px solid var(--home-line);
  border-bottom: 1px solid var(--home-line);
  background: rgba(228, 235, 242, 0.96);
  color: var(--home-blue);
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  backdrop-filter: blur(12px);
}

.home-directory__status code {
  color: var(--home-muted);
  font: inherit;
  text-transform: none;
}

.home-directory__grid {
  display: grid;
  width: min(100%, var(--home-max));
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0 auto;
  border-bottom: 1px solid var(--home-line);
}

.home-directory__grid > section {
  min-width: 0;
  padding: 28px 24px 32px 0;
  border-right: 1px solid var(--home-line);
}

.home-directory__grid > section + section {
  padding-left: 24px;
}

.home-directory__grid > section:last-child {
  border-right: 0;
}

.home-directory__grid h3 {
  margin: 0 0 24px;
  color: var(--home-blue);
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.home-directory__grid nav {
  display: grid;
}

.home-directory__grid a {
  display: flex;
  min-height: 44px;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 9px 8px 9px 0;
  border-bottom: 1px solid rgba(11, 13, 18, 0.08);
  color: var(--home-text);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.35;
  text-decoration: none;
  transition: padding 180ms var(--home-ease), background-color 150ms ease, color 150ms ease;
}

.home-directory__grid a:hover,
.home-directory__grid a:focus-visible,
.home-directory__grid a.is-active {
  padding-right: 12px;
  padding-left: 12px;
  background: #fff;
  color: var(--home-blue);
}

.home-directory__grid a i {
  flex: 0 0 auto;
  color: var(--home-blue);
  font-size: 15px;
  font-style: normal;
}

/* Decisive ending, not a trailing footer. */
.home-final {
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(300px, 0.7fr);
  align-items: center;
  gap: clamp(36px, 7vw, 110px);
  padding: clamp(110px, 14vw, 190px) var(--home-gutter) 100px !important;
  background: var(--home-dark);
  color: #fff;
}

.home-final > div,
.home-final__footer {
  min-width: 0;
}

.home-final .kicker {
  color: var(--home-cyan);
}

.home-final h2 {
  max-width: 13ch;
  margin: 18px 0 0;
  color: #fff;
  font-size: clamp(56px, 7vw, 108px);
  font-weight: 600;
  letter-spacing: -0.07em;
  line-height: 0.9;
}

.home-final__action p {
  max-width: 44ch;
  margin: 0 0 30px;
  color: var(--home-soft);
  font-size: clamp(17px, 1.7vw, 21px);
}

.home-final__footer {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 34px;
  align-self: end;
  padding: 22px 0 0;
  border-top: 1px solid var(--home-line-dark);
  background: transparent;
  color: var(--home-soft);
  font-family: "IBM Plex Mono", monospace;
  font-size: 10px;
}

.home-final__footer > nav {
  display: flex;
  justify-content: center;
  gap: 22px;
}

.home-final__footer a {
  color: #fff;
}

@media (hover: hover) and (pointer: fine) {
  .home-trust__marks i:nth-child(1):hover,
  .home-trust__marks i:nth-child(3):hover {
    transform: translateY(-2px);
  }

  .home-trust__marks i:nth-child(2):hover {
    transform: translateY(-4px);
  }
}

@media (max-width: 1100px) {
  .home-header {
    top: max(12px, env(safe-area-inset-top));
    right: 16px;
    left: 16px;
    grid-template-columns: auto auto;
  }

  .home-brand {
    min-height: 48px;
  }

  .home-nav-pill,
  .home-header-cta {
    display: none;
  }

  .home-menu-toggle {
    display: block;
  }
}

@media (max-width: 1000px) {

  .home-brand > span:last-child {
    display: none;
  }

  .home-brand {
    padding-right: 4px;
  }

  .home-proof__slide {
    width: 78vw;
  }

}

@media (max-width: 820px) {
  .home-header {
    top: max(12px, env(safe-area-inset-top));
    right: 16px;
    left: 16px;
    grid-template-columns: auto auto;
  }

  .home-brand {
    min-height: 48px;
  }

  .home-nav-pill,
  .home-header-cta {
    display: none;
  }

  .home-menu-toggle {
    display: block;
  }

  .home-hero {
    height: 145svh;
  }

  .home-hero__pin {
    min-height: 620px;
  }

  .home-hero__poster {
    object-position: 58% 50%;
  }


  .home-hero__vignette {
    background:
      linear-gradient(180deg, rgba(3, 9, 10, 0.46) 0%, transparent 24%, rgba(3, 9, 10, 0.28) 42%, rgba(3, 9, 10, 0.94) 64%, rgba(3, 9, 10, 0.99) 100%);
  }

  .home-hero__copy {
    right: 18px;
    bottom: 142px;
    left: 18px;
    width: auto;
  }
  .home-trust {
    min-height: 32px;
    margin-bottom: 14px;
    padding-right: 10px;
    font-size: 9px;
    letter-spacing: 0.025em;
  }

  .home-trust__marks {
    margin-right: 7px;
  }

  .home-trust__marks i {
    min-width: 30px;
    height: 22px;
    margin-left: 3px;
    padding: 0 4px;
    font-size: 7px;
  }



  .home-hero__title {
    margin-bottom: 18px !important;
    font-size: clamp(42px, 12.3vw, 58px) !important;
    line-height: 0.93;
  }

  .home-hero__lead {
    max-width: 38ch;
    margin-bottom: 20px;
    font-size: 15px;
    line-height: 1.45;
  }

  .home-primary-cta {
    min-width: min(100%, 286px);
  }


  .home-stats {
    right: 18px;
    bottom: 10px;
    left: 18px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-stats > div {
    min-height: 58px;
    padding: 7px 10px;
    border-bottom: 1px solid var(--home-line-dark);
  }
  .home-stats > div:first-child {
    padding-left: 10px;
  }


  .home-stats > div:nth-child(2) {
    border-right: 0;
  }

  .home-stats dt {
    font-size: 8px;
  }

  .home-stats dd {
    font-size: 18px;
  }

  .home-section-head h2 {
    font-size: clamp(42px, 11.6vw, 62px);
  }

  .home-proof {
    height: auto;
    padding: 76px 0 !important;
  }

  .home-proof__pin {
    position: relative;
    height: auto;
    min-height: 0;
    overflow: visible;
    padding-top: 0;
  }

  .home-proof__viewport {
    position: relative;
    margin-top: 46px;
    overflow-x: auto;
    scrollbar-width: none;
  }


  .home-proof__viewport::-webkit-scrollbar {
    display: none;
  }

  .home-proof__rail {
    gap: 14px;
    padding-right: 18px;
    padding-left: 18px;
    transform: none !important;
    scroll-snap-type: x mandatory;
  }

  .home-proof__slide {
    width: calc(100vw - 54px);
    height: auto;
    min-height: 560px;
    grid-template-columns: 1fr;
    scroll-snap-align: center;
  }

  .home-proof__slide > div {
    padding: 28px;
  }

  .home-proof__visual {
    min-height: 210px;
    border-right: 0;
    border-bottom: 1px solid currentColor;
  }

  .home-proof__slide h3 {
    font-size: 38px;
  }

  .home-method {
    height: 300svh;
    padding: 0 !important;
  }

  .home-method__pin {
    min-height: 620px;
  }
  .home-method__pin::after {
    background: linear-gradient(
      180deg,
      rgba(4, 12, 13, 0.72) 0%,
      rgba(4, 12, 13, 0.18) 30%,
      rgba(4, 12, 13, 0.08) 60%,
      rgba(4, 12, 13, 0.84) 100%
    );
  }

  .home-method__panel,
  .home-method__panel--route,
  .home-method__panel--delivery {
    background: rgba(8, 18, 18, 0.08);
  }


  .home-method .home-section-head--dark {
    top: 78px;
    left: 18px;
    width: calc(100% - 36px);
  }

  .home-section-head--dark h2 {
    font-size: clamp(36px, 10.5vw, 52px);
  }

  .home-section-head--dark .lead {
    max-width: 38ch;
    font-size: 14px;
  }

  .home-method__kind {
    top: 268px;
    left: 18px;
    font-size: 9px;
  }

  .home-method__panel > div {
    right: 18px;
    bottom: 98px;
    left: 18px;
    width: auto;
  }

  .home-method__physical {
    width: fit-content;
    max-width: 100%;
    margin-bottom: 12px;
    padding: 4px 6px;
    background: rgba(4, 15, 16, 0.78);
    font-size: 9px;
    line-height: 1.35;
  }

  .home-method__callout {
    --leader: 36px;
    left: 58%;
    min-height: 32px;
    padding: 6px 8px;
  }

  .home-method__callout::before {
    width: 36px;
  }

  .home-method__callout b {
    font-size: 9px;
  }

  .home-method__callout--context {
    top: 44%;
  }

  .home-method__callout--route {
    top: 48%;
  }

  .home-method__callout--delivery {
    top: 49%;
    left: 40%;
  }

  .home-method__panel h3 {
    max-width: 12ch;
    font-size: clamp(40px, 11vw, 56px);
  }

  .home-method__panel p {
    max-width: 34ch;
    font-size: 15px;
  }

  .home-method__scene {
    right: -28%;
    width: 108%;
    opacity: 0.48;
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.12) 34%, #000 76%);
    mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.12) 34%, #000 76%);
  }

  .home-method__panel.is-current .home-method__scene {
    opacity: 0.7;
  }

  .home-method__legend {
    right: 18px;
    bottom: 16px;
    left: 18px;
    width: auto;
    border-color: rgba(255, 255, 255, 0.34);
    background: rgba(5, 14, 15, 0.92);
  }

  .home-method__legend button {
    min-height: 48px;
    grid-template-columns: 1fr;
    align-content: center;
    gap: 2px;
    padding: 6px 8px;
  }

  .home-method__legend button b {
    font-size: 11px;
  }

  .home-method__legend button span,
  .home-method__legend button b {
    min-width: 0;
    line-height: 1.1;
    white-space: nowrap;
  }

  .home-offers {
    padding: 76px 18px 94px !important;
  }

  .home-offers__layout {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-top: 50px;
  }

  .home-offers__preview {
    position: relative;
    top: auto;
    min-height: 310px;
    grid-row: 1;
  }

  .home-offers__index > a {
    grid-template-columns: 38px minmax(0, 1fr);
  }

  .home-offers__index small {
    grid-column: 2;
    justify-self: start;
  }

  .home-security {
    min-height: auto;
    padding: 96px 18px !important;
  }

  .home-security__ledger {
    grid-template-columns: 1fr;
    margin-top: 54px;
  }

  .home-security__ledger > div,
  .home-security__ledger > div + div {
    min-height: 0;
    padding: 22px 0 28px;
    border-right: 0;
  }

  .home-security__ledger h3 {
    margin-top: 34px;
  }

  .home-directory {
    padding: 78px 18px 92px !important;
  }

  .home-directory__status {
    top: 70px;
    margin-top: 46px;
  }

  .home-directory__grid {
    grid-template-columns: 1fr;
  }

  .home-directory__grid > section,
  .home-directory__grid > section + section {
    padding: 26px 0;
    border-right: 0;
    border-bottom: 1px solid var(--home-line);
  }

  .home-directory__sectors nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 14px;
  }

  .home-directory__grid a {
    font-size: 13px;
  }

  .home-final {
    min-height: 100svh;
    grid-template-columns: 1fr;
    align-content: center;
    padding: 96px 18px 76px !important;
  }

  .home-final h2 {
    font-size: clamp(48px, 13vw, 68px);
  }

  .home-final__footer {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .home-final__footer > nav {
    justify-content: flex-start;
    flex-wrap: wrap;
  }
}

@media (max-width: 820px) and (max-height: 650px) {
  .home-hero__pin,
  .home-method__pin {
    min-height: 0;
  }

  .home-method .home-section-head--dark {
    top: 60px;
  }

  .home-section-head--dark h2 {
    margin-bottom: 8px;
    font-size: 30px;
  }

  .home-section-head--dark .lead {
    font-size: 12px;
    line-height: 1.35;
  }

  .home-method__kind {
    top: 206px;
    font-size: 8px;
  }

  .home-method__panel > div {
    bottom: 86px;
  }

  .home-method__physical {
    margin-bottom: 8px;
    padding: 3px 5px;
    font-size: 8px;
  }

  .home-method__panel h3 {
    max-width: none;
    margin-bottom: 10px;
    font-size: 32px;
  }

  .home-method__panel p {
    font-size: 12.5px;
    line-height: 1.4;
  }

  .home-method__callout--context {
    --leader: 20px;
    left: 52%;
  }

  .home-method__callout--context::before {
    width: 20px;
  }

  .home-method__callout--delivery {
    top: 247px;
    left: 18px;
  }

  .home-method__callout--delivery::before {
    right: auto;
    left: 100%;
  }

  .home-method__callout--delivery i {
    right: auto;
    left: calc(100% + var(--leader) - 6px);
  }
}

@media (max-height: 720px) and (min-width: 821px) {
  .home-hero__copy {
    bottom: 124px;
  }



  .home-hero__title {
    font-size: clamp(54px, 6.2vw, 82px) !important;
  }

  .home-hero__lead {
    margin-bottom: 18px;
  }
}

@media (max-height: 520px) and (min-width: 821px) {
  .home-hero__pin {
    min-height: 0;
  }


  .home-hero__copy {
    top: 68px;
    bottom: auto;
    width: min(620px, calc(100vw - 220px));
  }

  .home-trust {
    min-height: 30px;
    margin-bottom: 8px;
    padding-right: 10px;
    font-size: 9px;
    letter-spacing: 0.025em;
  }

  .home-trust__marks {
    margin-right: 7px;
  }

  .home-trust__marks i {
    min-width: 30px;
    height: 22px;
    margin-left: 3px;
    padding: 0 4px;
    font-size: 7px;
  }

  .home-hero__title {
    margin-bottom: 8px !important;
    font-size: clamp(40px, 5.2vw, 48px) !important;
    line-height: 0.9;
  }

  .home-hero__lead {
    max-width: 470px;
    margin-bottom: 10px;
    font-size: 13px;
    line-height: 1.3;
  }

  .home-primary-cta {
    min-width: 218px;
    min-height: 38px;
    font-size: 12px;
  }

  .home-primary-cta i {
    width: 30px;
    height: 30px;
  }


  .home-stats {
    bottom: 4px;
  }

  .home-stats > div {
    min-height: 44px;
    padding-top: 3px;
    padding-bottom: 3px;
  }

  .home-stats dt {
    font-size: 7px;
  }

  .home-stats dd {
    font-size: 16px;
  }
  .home-method__pin {
    min-height: 0;
  }

  .home-method .home-section-head--dark {
    top: 58px;
    width: min(760px, calc(100% - var(--home-gutter) * 2));
  }

  .home-section-head--dark h2 {
    margin-bottom: 6px;
    font-size: 30px;
  }

  .home-section-head--dark .lead {
    max-width: 70ch;
    font-size: 12px;
    line-height: 1.3;
  }

  .home-method__kind {
    top: 148px;
    font-size: 8px;
  }

  .home-method__panel > div {
    bottom: 58px;
    width: min(520px, 62vw);
  }

  .home-method__physical {
    margin-bottom: 6px;
    font-size: 8px;
  }

  .home-method__panel h3 {
    max-width: 18ch;
    margin-bottom: 6px;
    font-size: 30px;
  }

  .home-method__panel p {
    max-width: 60ch;
    font-size: 12px;
    line-height: 1.3;
  }

  .home-method__legend {
    bottom: 6px;
    width: min(450px, 50vw);
  }

  .home-method__legend button {
    min-height: 44px;
    padding: 6px 8px;
  }

  .home-method__legend button span {
    font-size: 9px;
  }

  .home-method__legend button b {
    font-size: 11px;
  }
}

@media (max-width: 420px) {

  .home-hero__title {
    font-size: clamp(40px, 11.8vw, 50px) !important;
  }
}

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

  .motion-pending .home-hero__media {
    opacity: 1;
    transform: none;
  }

  .motion-pending .home-header,
  .motion-pending .home-hero__title > span > span,
  .motion-pending .anim,
  .motion-pending .home-stats > div {
    opacity: 1;
    transform: none;
  }

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

  #webgl,
  .home-hero__xray {
    display: none;
  }

  .home-hero__poster {
    opacity: 1 !important;
  }

  .home-security__path path {
    stroke-dashoffset: 0;
  }


  .home-method {
    height: auto;
    padding: 0 !important;
  }

  .home-method__pin {
    position: relative;
    height: auto;
    min-height: 0;
    overflow: visible;
    padding: 88px var(--home-gutter);
  }

  .home-method .home-section-head--dark {
    position: relative;
    top: auto;
    left: auto;
    width: min(100%, 680px);
  }

  .home-method__stack {
    position: relative;
    inset: auto;
    display: grid;
    width: min(100%, var(--home-max));
    gap: 24px;
    margin: 56px auto 0;
  }

  .home-method__panel {
    position: relative;
    inset: auto;
    min-height: 620px;
    padding: 300px 28px 64px;
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .home-method__scene {
    top: 0;
    right: 0;
    width: 100%;
    height: 350px;
    opacity: 0.68;
    -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 58%, transparent 100%);
    mask-image: linear-gradient(180deg, #000 0%, #000 58%, transparent 100%);
  }

  .home-method__kind,
  .home-method__panel > div {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    width: auto;
  }

  .home-method__kind {
    display: block;
    margin-bottom: 28px;
  }

  .home-method__legend {
    display: none;
  }
}
