:root {
  color-scheme: light;
  --blue: #0752bd;
  --blue-2: #0b63de;
  --blue-3: #6da8ff;
  --cyan: #c9fbff;
  --black: #111111;
  --white: #f5f7fb;
  --paper: #e9edf4;
  --ink: #141414;
  --ink-soft: rgba(20, 20, 20, .68);
  --text-soft: rgba(255, 255, 255, .82);
  --line-light: rgba(255, 255, 255, .18);
  --line-dark: rgba(7, 82, 189, .18);
  --font: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --max: 1600px;
  --pad: 56px;
  --edge-pad: max(var(--pad), calc((100vw - var(--max)) / 2 + var(--pad)));
  --header: 60px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background:
    linear-gradient(180deg, rgba(2, 30, 82, .08), rgba(2, 30, 82, .24)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, .05) 0 1px, transparent 1px 84px),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, .035) 0 1px, transparent 1px 84px),
    var(--blue);
  color: var(--ink);
  font-family: var(--font);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
}

button {
  font: inherit;
}

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

:focus-visible {
  outline: 3px solid currentColor;
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 0;
  z-index: 100;
  transform: translateY(calc(-100% - 12px));
  padding: 10px 14px;
  background: var(--white);
  color: var(--blue);
  text-decoration: none;
  font-size: 14px;
  font-weight: 760;
}

.skip-link:focus-visible {
  transform: translateY(16px);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 30;
  height: var(--header);
  color: var(--white);
  background: transparent;
}

.nav {
  width: min(100%, var(--max));
  height: var(--header);
  margin: 0 auto;
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: 44px 1fr 44px;
  align-items: center;
  gap: 12px;
}

.brand {
  justify-self: center;
  padding: 8px 10px;
  font-size: 13px;
  line-height: 1;
  font-weight: 820;
  text-decoration: none;
}

.nav-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 50%;
  color: var(--white);
  text-decoration: none;
}

.nav-icon:last-child {
  justify-self: end;
}

.nav-icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.white-button,
.blue-button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0 28px;
  color: var(--blue);
  background: var(--white);
  font-size: 15px;
  line-height: 1;
  font-weight: 780;
  text-decoration: none;
  white-space: nowrap;
}

.blue-button {
  background: var(--blue);
  color: var(--white);
}

.blue-section,
.black-section,
.white-section {
  width: 100%;
  margin: 0;
}

.blue-section {
  background: transparent;
  color: var(--white);
}

.hero,
.journey-overview {
  text-shadow: 0 18px 44px rgba(0, 28, 72, .28);
}

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

.split-section.black-section,
.operations.black-section {
  background:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, .045) 0 1px, transparent 1px 84px),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, .032) 0 1px, transparent 1px 84px),
    var(--black);
}

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

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  text-wrap: balance;
}

.hero {
  min-height: 100svh;
  aspect-ratio: auto;
  position: relative;
  padding: calc(var(--header) + 34px) var(--edge-pad) 48px;
  display: grid;
  grid-template-columns: minmax(0, 980px);
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 1040px;
  display: grid;
  justify-items: center;
  gap: 16px;
}

.hero h1 {
  margin: 0;
  max-width: 900px;
  font-size: clamp(34px, 3.75vw, 56px);
  line-height: 1;
  font-weight: 620;
}

.hero-picture {
  width: min(72vw, 820px);
  display: grid;
  place-items: center;
}

.hero-image {
  display: block;
  margin: 0 auto;
  max-width: 100%;
  width: auto;
  max-height: min(58svh, 590px);
  height: auto;
  object-fit: contain;
  filter:
    drop-shadow(0 46px 78px rgba(0, 18, 58, .42))
    drop-shadow(0 0 92px rgba(109, 168, 255, .28));
}

.action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: center;
}

.section-kicker {
  display: block;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, .72);
  font-size: 12px;
  line-height: 1;
  font-weight: 820;
  letter-spacing: 0;
}

.journey-overview h2,
.demand h2,
.payment-section h2,
.split-section h2,
.operations h2,
.case-section h2,
.owner-section h2,
.suite h2,
.pricing h2 {
  margin-bottom: 18px;
  font-size: 58px;
  line-height: .95;
  font-weight: 620;
}

.journey-overview h2 {
  margin-bottom: 14px;
  font-size: clamp(28px, 2.35vw, 34px);
  line-height: 1;
  font-weight: 680;
}

.journey-subtitle {
  margin: 14px 0 0;
  color: var(--white);
  font-size: 22px;
  line-height: 1.12;
  font-weight: 620;
}

.journey-copy p,
.journey-lead,
.journey-loss-text,
.journey-flow,
.payment-copy p,
.split-text p,
.section-heading p,
.case-copy p,
.owner-copy p,
.price-copy p {
  color: var(--text-soft);
  font-size: 16px;
  line-height: 1.55;
}

.white-section .payment-copy p,
.white-section .split-text p,
.white-section .case-copy p,
.white-section .price-copy p {
  color: var(--ink-soft);
}

.site-proof-gap {
  margin-top: 24px;
}

.journey-overview {
  min-height: 100svh;
  padding: 120px var(--edge-pad) 90px;
  display: grid;
  grid-template-columns: minmax(320px, .82fr) minmax(420px, 1fr);
  align-items: center;
  gap: 78px;
  overflow: hidden;
  border-top: 0;
  text-align: left;
}

.journey-intro {
  align-content: center;
}

.journey-copy {
  max-width: 640px;
  display: grid;
  justify-items: start;
  gap: 20px;
}

.journey-lead,
.journey-flow,
.journey-loss-text {
  max-width: 920px;
  margin: 0;
  color: rgba(255, 255, 255, .82);
  font-size: 17px;
  line-height: 1.45;
  font-weight: 400;
}

.journey-flow {
  max-width: 980px;
  color: var(--white);
  font-weight: 760;
}

.journey-visual {
  position: relative;
  min-height: 560px;
  width: min(100%, 660px);
  justify-self: end;
  isolation: isolate;
}

.journey-visual::before,
.journey-visual::after {
  content: "";
  position: absolute;
  inset: 50% auto auto 50%;
  width: 78%;
  height: 78%;
  border: 1px solid rgba(255, 255, 255, .16);
  transform: translate(-50%, -50%);
}

.journey-visual::before {
  border-radius: 50%;
  border-color: rgba(255, 255, 255, .14);
  transform: translate(-50%, -50%) rotate(-12deg);
}

.journey-visual::after {
  display: block;
  width: 62%;
  height: 48%;
  border-radius: 50%;
  border-color: rgba(255, 255, 255, .1);
  transform: translate(-50%, -50%) rotate(21deg);
}

.journey-ring {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 0;
  --dot-distance: 190px;
  border-radius: 50%;
  border: 1px solid rgba(201, 251, 255, .14);
  transform: translate(-50%, -50%);
}

.journey-ring::before,
.journey-ring::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 18px rgba(201, 251, 255, .72);
  will-change: transform;
}

.journey-ring::before {
  transform: translate(-50%, -50%) translateX(var(--dot-distance));
  animation: orbit-dot-a 8s linear infinite both;
}

.journey-ring::after {
  background: #ffd400;
  opacity: .95;
  transform: translate(-50%, -50%) translateX(calc(var(--dot-distance) * -1));
  box-shadow: 0 0 20px rgba(255, 212, 0, .82);
  animation: orbit-dot-b 11s linear infinite both;
}

.journey-ring-one {
  width: 66%;
  height: 42%;
  --dot-distance: 185px;
  transform: translate(-50%, -50%) rotate(-31deg);
}

.journey-ring-one::before {
  animation-delay: -2.1s;
}

.journey-ring-one::after {
  animation-delay: -5.4s;
}

.journey-ring-two {
  width: 74%;
  height: 54%;
  --dot-distance: 225px;
  transform: translate(-50%, -50%) rotate(26deg);
}

.journey-ring-two::before {
  animation-delay: -4.6s;
}

.journey-ring-two::after {
  animation-delay: -8.2s;
}

.journey-particle {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 1;
  width: 0;
  height: 0;
  --orbit-radius: 220px;
  --orbit-tilt: 0deg;
  --orbit-squash: .58;
  --dot-stretch: 1.72;
  --orbit-start: 0deg;
  --orbit-speed: 12s;
  --orbit-delay: 0s;
  --dot-size: 6px;
  pointer-events: none;
  animation: journey-orbit-particle var(--orbit-speed) linear infinite;
  animation-delay: var(--orbit-delay);
  animation-fill-mode: both;
  will-change: transform;
}

.journey-particle::before {
  content: "";
  position: absolute;
  left: var(--orbit-radius);
  top: 0;
  width: var(--dot-size);
  height: var(--dot-size);
  border-radius: 50%;
  background: rgba(201, 251, 255, .92);
  box-shadow: 0 0 16px rgba(201, 251, 255, .7);
  transform: translate(-50%, -50%) scaleY(var(--dot-stretch));
}

.journey-particle-two::before,
.journey-particle-four::before,
.journey-particle-five::before {
  background: #ffd400;
  box-shadow: 0 0 22px rgba(255, 212, 0, .86), 0 0 40px rgba(255, 212, 0, .34);
}

.journey-particle-one {
  --orbit-radius: clamp(126px, 27vw, 232px);
  --orbit-tilt: -31deg;
  --orbit-squash: .64;
  --dot-stretch: 1.56;
  --orbit-start: 18deg;
  --orbit-speed: 12s;
  --orbit-delay: -2.8s;
}

.journey-particle-two {
  --orbit-radius: clamp(118px, 24vw, 205px);
  --orbit-tilt: 26deg;
  --orbit-squash: .7;
  --dot-stretch: 1.43;
  --orbit-start: 142deg;
  --orbit-speed: 9.5s;
  --orbit-delay: -5.1s;
  --dot-size: 5px;
}

.journey-particle-three {
  --orbit-radius: clamp(146px, 31vw, 265px);
  --orbit-tilt: -12deg;
  --orbit-squash: .78;
  --dot-stretch: 1.28;
  --orbit-start: 256deg;
  --orbit-speed: 15s;
  --orbit-delay: -8s;
  opacity: .82;
}

.journey-particle-four {
  --orbit-radius: clamp(116px, 22vw, 188px);
  --orbit-tilt: 21deg;
  --orbit-squash: .77;
  --dot-stretch: 1.3;
  --orbit-start: 306deg;
  --orbit-speed: 10.8s;
  --orbit-delay: -1.6s;
  --dot-size: 5px;
  opacity: .72;
}

.journey-particle-five {
  --orbit-radius: clamp(136px, 29vw, 246px);
  --orbit-tilt: 36deg;
  --orbit-squash: .56;
  --dot-stretch: 1.79;
  --orbit-start: 78deg;
  --orbit-speed: 13.5s;
  --orbit-delay: -6.4s;
  opacity: .76;
}

.journey-particle-six {
  --orbit-radius: clamp(104px, 20vw, 172px);
  --orbit-tilt: -42deg;
  --orbit-squash: .62;
  --dot-stretch: 1.61;
  --orbit-start: 212deg;
  --orbit-speed: 8.8s;
  --orbit-delay: -4.3s;
  --dot-size: 4px;
  opacity: .68;
}

.atlas-core {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  width: 150px;
  height: 150px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 50%;
  background: radial-gradient(circle at 35% 25%, rgba(255, 255, 255, .22), rgba(255, 255, 255, .1));
  color: var(--white);
  font-size: 15px;
  font-weight: 820;
  letter-spacing: 0;
  transform: translate(-50%, -50%);
  box-shadow: 0 26px 72px rgba(0, 24, 68, .22);
}

.module-node {
  position: absolute;
  z-index: 2;
  width: 148px;
  display: grid;
  justify-items: center;
  gap: 9px;
  color: rgba(255, 255, 255, .88);
  font-size: 14px;
  line-height: 1;
  font-weight: 700;
  animation: module-float 4.8s ease-in-out infinite;
}

.module-node::before {
  display: none;
}

.module-art {
  position: relative;
  width: 124px;
  height: 100px;
  display: block;
  border: 0;
  border-radius: 0;
  background: none;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 24px 26px rgba(0, 19, 60, .44));
}

.module-art::before,
.module-art::after {
  content: "";
  position: absolute;
  display: none;
  background: rgba(201, 251, 255, .82);
}

.module-label {
  min-height: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  padding: 0;
  background: transparent;
  box-shadow: none;
  color: rgba(255, 255, 255, .9);
  line-height: 1.12;
  text-align: center;
  text-shadow: 0 8px 24px rgba(0, 20, 68, .36);
  backdrop-filter: none;
}

.module-art-ads {
  background:
    radial-gradient(circle at 76% 21%, #6be8ff 0 5px, transparent 6px),
    radial-gradient(circle at 88% 36%, #ffd86b 0 5px, transparent 6px),
    radial-gradient(circle at 69% 50%, #ffffff 0 4px, transparent 5px);
}

.module-art-ads::before {
  left: 22px;
  top: 30px;
  width: 58px;
  height: 36px;
  border-radius: 12px 30px 30px 12px;
  background: linear-gradient(135deg, #ffe06a, #ff9f43);
  clip-path: polygon(0 28%, 68% 0, 100% 20%, 100% 80%, 68% 100%, 0 72%);
  transform: rotate(-15deg);
}

.module-art-ads::after {
  left: 34px;
  top: 58px;
  width: 13px;
  height: 32px;
  border-radius: 999px;
  background: linear-gradient(180deg, #f5f7fb, #8ddcff);
  transform: rotate(-18deg);
}

.module-art-site {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, .96), rgba(179, 225, 255, .86));
  border-radius: 16px;
  transform: perspective(160px) rotateX(10deg) rotateY(-13deg) rotateZ(4deg);
  box-shadow: 0 20px 42px rgba(0, 24, 68, .24);
}

.module-art-site::before {
  left: 13px;
  top: 16px;
  width: 96px;
  height: 9px;
  border-radius: 999px;
  background: rgba(7, 82, 189, .18);
  box-shadow: 0 18px 0 rgba(7, 82, 189, .14), 0 36px 0 rgba(7, 82, 189, .1);
}

.module-art-site::after {
  right: 15px;
  bottom: 15px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: linear-gradient(145deg, #52e0ff, #ffe36d);
}

.module-art-price {
  background:
    radial-gradient(ellipse at 48% 78%, rgba(255, 255, 255, .42) 0 28px, transparent 29px),
    linear-gradient(145deg, transparent 0 100%);
}

.module-art-price::before {
  left: 26px;
  top: 43px;
  width: 64px;
  height: 19px;
  border-radius: 50%;
  background: linear-gradient(180deg, #f5f7fb, #9be8ff);
  box-shadow:
    0 -13px 0 #d8fbff,
    0 -26px 0 #f5f7fb,
    38px -6px 0 #ffd15a,
    38px -20px 0 #ffe789;
}

.module-art-price::after {
  right: 17px;
  top: 24px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: linear-gradient(145deg, #ffe98b, #f9aa35);
  box-shadow: -58px 24px 0 -8px rgba(255, 232, 139, .9);
}

.module-art-booking {
  background: linear-gradient(145deg, rgba(255, 255, 255, .96), rgba(179, 225, 255, .86));
  border-radius: 16px;
  transform: perspective(160px) rotateX(9deg) rotateY(14deg) rotateZ(-3deg);
  box-shadow: 0 20px 42px rgba(0, 24, 68, .24);
}

.module-art-booking::before {
  left: 16px;
  top: 20px;
  width: 72px;
  height: 8px;
  border-radius: 999px;
  background: rgba(7, 82, 189, .16);
  box-shadow: 0 19px 0 rgba(7, 82, 189, .12), 0 38px 0 rgba(7, 82, 189, .1);
}

.module-art-booking::after {
  right: -12px;
  top: -8px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: radial-gradient(circle, #fff 0 34%, #ffd35d 35% 100%);
  box-shadow: 0 0 0 5px rgba(255, 255, 255, .16);
}

.module-art-payment {
  background: linear-gradient(145deg, #f5f7fb, #8fdcff);
  border-radius: 16px;
  transform: perspective(160px) rotateX(11deg) rotateY(-12deg) rotateZ(5deg);
  box-shadow: 0 20px 42px rgba(0, 24, 68, .24);
}

.module-art-payment::before {
  left: 18px;
  top: 24px;
  width: 86px;
  height: 12px;
  border-radius: 999px;
  background: rgba(7, 82, 189, .16);
  box-shadow: 0 26px 0 rgba(7, 82, 189, .12);
}

.module-art-payment::after {
  right: -16px;
  bottom: -8px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(145deg, #ffe98b, #f9aa35);
  box-shadow: -12px 7px 0 -6px #ffe98b;
}

.module-art-return {
  background:
    radial-gradient(circle at 68% 20%, #6df389 0 16px, transparent 17px),
    linear-gradient(145deg, transparent 0 100%);
}

.module-art-return::before {
  left: 26px;
  top: 37px;
  width: 66px;
  height: 46px;
  border-radius: 8px 8px 18px 18px;
  background: linear-gradient(145deg, #ffe36d, #ff9f43);
  box-shadow: inset 0 0 0 8px rgba(255, 255, 255, .16);
}

.module-art-return::after {
  right: 17px;
  top: 18px;
  width: 36px;
  height: 28px;
  border: 6px solid rgba(201, 251, 255, .86);
  border-left-color: transparent;
  border-bottom-color: transparent;
  border-radius: 50%;
  background: transparent;
  transform: rotate(28deg);
}

.node-ads {
  left: 8%;
  top: 9%;
}

.node-site {
  right: 8%;
  top: 8%;
  animation-delay: .35s;
}

.node-price {
  right: -3%;
  left: auto;
  top: 39%;
  animation-delay: .7s;
}

.node-booking {
  right: 5%;
  top: auto;
  bottom: 10%;
  animation-delay: 1.05s;
}

.node-payment {
  left: 27%;
  bottom: -1%;
  animation-delay: 1.4s;
}

.node-return {
  left: -1%;
  right: auto;
  top: 46%;
  animation-delay: 1.75s;
}

@keyframes orbit-dot-a {
  from {
    transform: translate(-50%, -50%) rotate(0deg) translateX(var(--dot-distance));
  }

  to {
    transform: translate(-50%, -50%) rotate(360deg) translateX(var(--dot-distance));
  }
}

@keyframes orbit-dot-b {
  from {
    transform: translate(-50%, -50%) rotate(0deg) translateX(calc(var(--dot-distance) * -1));
  }

  to {
    transform: translate(-50%, -50%) rotate(360deg) translateX(calc(var(--dot-distance) * -1));
  }
}

@keyframes journey-orbit-particle {
  from {
    transform: translate(-50%, -50%) rotate(var(--orbit-tilt)) scaleY(var(--orbit-squash)) rotate(var(--orbit-start));
  }

  to {
    transform: translate(-50%, -50%) rotate(var(--orbit-tilt)) scaleY(var(--orbit-squash)) rotate(calc(var(--orbit-start) + 360deg));
  }
}

@keyframes atlas-spin {
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes atlas-pulse {
  0%,
  100% {
    opacity: .42;
    transform: translate(-50%, -50%) scale(.96);
  }

  50% {
    opacity: .82;
    transform: translate(-50%, -50%) scale(1.04);
  }
}

@keyframes module-float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

.demand,
.split-section,
.case-section,
.owner-section,
.pricing {
  min-height: 100svh;
  padding: 90px var(--edge-pad);
  display: grid;
  grid-template-columns: minmax(320px, .78fr) minmax(420px, 1fr);
  gap: 68px;
  align-items: center;
  overflow: hidden;
}

.demand {
  border-top: 0;
  grid-template-columns: minmax(280px, .78fr) minmax(320px, .86fr);
  gap: 72px;
}

.split-text {
  max-width: 590px;
}

.demand .split-text {
  justify-self: start;
}

.demand-media {
  position: relative;
  width: 100%;
  margin-left: 0;
  align-self: stretch;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: visible;
}

.demand-media img {
  position: relative;
  z-index: 1;
  width: min(76%, 560px);
  max-height: min(88svh, 820px);
  height: auto;
  object-fit: contain;
  object-position: left center;
  filter: drop-shadow(0 28px 50px rgba(0, 20, 70, .18));
}

.demand-visual {
  min-height: 520px;
  display: grid;
  grid-template-columns: minmax(220px, 1fr) minmax(180px, .62fr) minmax(220px, 1fr);
  gap: 14px;
  align-items: center;
}

.demand-channel,
.demand-switch {
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 8px;
  background: rgba(255, 255, 255, .08);
  box-shadow: 0 32px 80px rgba(0, 26, 72, .18);
}

.demand-channel {
  min-height: 410px;
  padding: 24px;
  display: grid;
  align-content: space-between;
  gap: 22px;
}

.demand-channel > span,
.demand-switch span {
  color: var(--cyan);
  font-size: 13px;
  font-weight: 820;
}

.demand-channel strong {
  display: block;
  color: var(--white);
  font-size: 32px;
  line-height: 1;
  font-weight: 650;
}

.demand-channel small {
  color: rgba(255, 255, 255, .7);
  font-size: 13px;
  line-height: 1.45;
}

.social-channel {
  opacity: .78;
}

.search-channel {
  background: rgba(255, 255, 255, .13);
  transform: translateY(-24px);
}

.channel-flow {
  display: grid;
  gap: 8px;
}

.channel-flow i {
  min-height: 42px;
  padding: 0 14px;
  display: flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 6px;
  color: rgba(255, 255, 255, .82);
  font-style: normal;
  font-size: 13px;
  font-weight: 720;
}

.demand-switch {
  min-height: 190px;
  padding: 22px;
  display: grid;
  place-content: center;
  gap: 12px;
  text-align: center;
  background: var(--white);
  color: var(--blue);
}

.demand-switch strong {
  font-size: 20px;
  line-height: 1.15;
}

.search-query {
  min-height: 64px;
  padding: 18px;
  display: grid;
  align-items: center;
  border-radius: 6px;
  background: var(--white);
  color: var(--ink);
  font-size: 18px;
  font-weight: 760;
}

.intent-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.intent-stats span {
  min-height: 84px;
  padding: 14px;
  display: grid;
  align-content: center;
  gap: 6px;
  border-radius: 6px;
  background: rgba(255, 255, 255, .12);
  color: rgba(255, 255, 255, .78);
  font-size: 13px;
}

.intent-stats b {
  display: block;
  color: var(--cyan);
  font-size: 34px;
  line-height: 1;
}

.laptop-bar,
.screen-nav {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  color: var(--blue);
  font-size: 12px;
  font-weight: 760;
}

.search-card {
  width: 64%;
  margin-top: 34px;
  padding: 18px;
  border: 1px solid rgba(7, 82, 189, .12);
  border-radius: 8px;
  background: white;
  box-shadow: 0 18px 40px rgba(7, 82, 189, .12);
}

.search-card > span {
  display: block;
  margin-bottom: 14px;
  font-size: 15px;
  font-weight: 760;
}

.map-grid {
  min-height: 166px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}

.map-grid i {
  background:
    linear-gradient(90deg, transparent 47%, rgba(7, 82, 189, .18) 48% 52%, transparent 53%),
    linear-gradient(0deg, transparent 47%, rgba(7, 82, 189, .18) 48% 52%, transparent 53%),
    #eef4ff;
}

.map-grid i:nth-child(2),
.map-grid i:nth-child(5) {
  background-color: #d8e9ff;
}

.stats-panel {
  position: absolute;
  right: 22px;
  top: 88px;
  width: 168px;
  padding: 18px;
  display: grid;
  gap: 8px;
  border: 1px solid rgba(7, 82, 189, .12);
  border-radius: 8px;
  background: white;
  box-shadow: 0 18px 40px rgba(7, 82, 189, .16);
}

.stats-panel span {
  color: var(--ink-soft);
  font-size: 12px;
}

.stats-panel strong {
  color: var(--blue);
  font-size: 26px;
  line-height: 1;
}

.site-screen,
.planner-visual,
.configurator {
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 8px;
  background: rgba(255, 255, 255, .06);
}

.site-screen {
  position: relative;
  min-height: 520px;
  padding: 0;
  display: grid;
  place-items: center;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.site-screen::before {
  content: "";
  position: absolute;
  inset: 12% 6% 8%;
  z-index: 0;
  border-radius: 50%;
  background:
    radial-gradient(ellipse at 50% 46%, rgba(255, 207, 139, .24), rgba(214, 139, 88, .1) 34%, transparent 68%);
  filter: blur(28px);
  pointer-events: none;
}

.site-laptop {
  position: relative;
  z-index: 1;
  width: min(100%, 640px);
  max-width: 100%;
  aspect-ratio: 2168 / 1256;
  isolation: isolate;
  --screen-top: 7.2%;
  --screen-left: 10.1%;
  --screen-width: 79.8%;
  --screen-height: 82.8%;
}

.site-laptop::before,
.site-laptop::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.site-laptop::before {
  inset: 2% 4% 8%;
  z-index: -1;
  border-radius: 42%;
  background:
    radial-gradient(ellipse at 42% 42%, rgba(255, 207, 139, .24), transparent 52%),
    radial-gradient(ellipse at 72% 52%, rgba(255, 176, 112, .14), transparent 46%);
  filter: blur(34px);
  opacity: .92;
}

.site-laptop::after {
  left: 9%;
  right: 9%;
  bottom: 2%;
  z-index: 0;
  height: 18%;
  border-radius: 50%;
  background: rgba(0, 0, 0, .46);
  filter: blur(22px);
}

.site-laptop-frame {
  position: relative;
  z-index: 3;
  display: block;
  width: 100%;
  height: auto;
  filter:
    drop-shadow(0 30px 50px rgba(0, 0, 0, .44))
    drop-shadow(0 0 18px rgba(255, 198, 132, .14));
}

.site-laptop-video {
  position: absolute;
  top: var(--screen-top);
  left: var(--screen-left);
  z-index: 4;
  display: block;
  width: var(--screen-width);
  height: var(--screen-height);
  border-radius: 4px;
  object-fit: contain;
  object-position: center top;
  background: #050505;
  filter: brightness(1.08) contrast(1.06) saturate(1.05);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, .05),
    0 0 26px rgba(255, 198, 132, .14);
}

.screen-wire {
  min-height: 84px;
  border: 1px solid rgba(7, 82, 189, .12);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(7, 82, 189, .12) 0 18%, transparent 18%),
    linear-gradient(90deg, transparent 0 28%, rgba(7, 82, 189, .08) 28% 100%),
    rgba(255, 255, 255, .72);
}

.screen-hero {
  margin-top: 28px;
  min-height: 276px;
  display: grid;
  grid-template-columns: 1fr 240px;
  gap: 22px;
  align-items: center;
}

.screen-hero span {
  color: var(--blue);
  font-size: 12px;
  font-weight: 760;
}

.screen-hero strong {
  display: block;
  max-width: 330px;
  margin: 16px 0 22px;
  font-size: 44px;
  line-height: .96;
  font-weight: 650;
}

.screen-hero button,
.planner-panel button {
  min-height: 36px;
  border: 0;
  border-radius: 4px;
  padding: 0 16px;
  background: var(--blue);
  color: var(--white);
  font-size: 12px;
  font-weight: 780;
}

.screen-figure {
  min-height: 250px;
  border-radius: 8px;
  background:
    radial-gradient(circle at 50% 14%, #f4d6cf 0 20px, transparent 21px),
    linear-gradient(135deg, transparent 0 43%, rgba(7, 82, 189, .18) 44% 46%, transparent 47%),
    linear-gradient(160deg, #fff, #e4ecfb);
  box-shadow: inset 0 0 0 1px rgba(7, 82, 189, .1);
}

.screen-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.screen-metrics span {
  min-height: 54px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(7, 82, 189, .12);
  border-radius: 8px;
  background: rgba(255, 255, 255, .74);
  color: var(--blue);
  font-size: 13px;
  font-weight: 780;
}

.check-list {
  margin: 16px 0 0;
  padding: 0;
  display: grid;
  gap: 10px;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 26px;
  color: inherit;
  opacity: .82;
  font-size: 15px;
  line-height: 1.45;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .35em;
  width: 14px;
  height: 14px;
  border: 1px solid currentColor;
  border-radius: 50%;
  background: radial-gradient(circle, currentColor 0 2px, transparent 3px);
  opacity: .7;
}

.planner-section {
  grid-template-columns: minmax(420px, 1fr) minmax(320px, .84fr);
}

.planner-visual {
  position: relative;
  min-height: 620px;
  padding: 0;
  display: grid;
  place-items: center;
  border: 0;
  background: transparent;
  overflow: visible;
}

.planner-visual::before {
  content: "";
  position: absolute;
  inset: 10% 4% 6%;
  z-index: 0;
  border-radius: 50%;
  background:
    radial-gradient(ellipse at 50% 48%, rgba(255, 207, 139, .28), rgba(214, 139, 88, .12) 42%, transparent 72%);
  filter: blur(34px);
  pointer-events: none;
}

.planner-preview {
  position: relative;
  z-index: 1;
  display: block;
  width: auto;
  max-width: min(86%, 420px);
  max-height: min(72svh, 650px);
  height: auto;
  filter:
    drop-shadow(0 34px 62px rgba(0, 0, 0, .42))
    drop-shadow(0 0 44px rgba(255, 198, 132, .22));
}

.mini-grid {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.mini-grid article {
  min-height: 132px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 8px;
  background: rgba(255, 255, 255, .05);
}

.mini-grid strong {
  display: block;
  margin-bottom: 10px;
}

.mini-grid p {
  margin: 0;
  color: var(--text-soft);
  font-size: 13px;
  line-height: 1.45;
}

.operations {
  min-height: 100svh;
  padding: 90px var(--edge-pad) 112px;
}

.section-heading {
  max-width: 760px;
}

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

.operations-grid {
  width: min(100%, 1120px);
  margin: 52px auto 0;
  display: grid;
  grid-template-columns: 1fr;
}

.investment-card {
  display: grid;
  align-content: start;
  gap: 18px;
}

.investment-card > span {
  display: block;
  color: rgba(255, 255, 255, .82);
  font-size: 15px;
  font-weight: 780;
}

.investment-controls {
  width: min(100%, 480px);
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  padding: 4px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 999px;
  background: rgba(255, 255, 255, .07);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08);
}

.investment-controls::before {
  content: "";
  position: absolute;
  top: 4px;
  bottom: 4px;
  left: 4px;
  width: calc((100% - 8px) / 3);
  border-radius: 999px;
  background: var(--blue);
  box-shadow: 0 18px 46px rgba(7, 82, 189, .28);
  clip-path: inset(0 round 999px);
  transform: translateX(calc(var(--active-index, 0) * 100%));
  transition: transform .34s cubic-bezier(.22, 1, .36, 1);
  will-change: transform;
}

.investment-controls button {
  position: relative;
  z-index: 1;
  min-height: 44px;
  padding: 0 18px;
  border: 0;
  border-radius: 999px;
  appearance: none;
  -webkit-appearance: none;
  background: transparent;
  color: rgba(255, 255, 255, .68);
  font: inherit;
  font-size: 14px;
  font-weight: 780;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  user-select: none;
  transition: color .2s ease;
}

.investment-controls button:hover,
.investment-controls button.is-active {
  color: var(--white);
}

.investment-controls button:focus {
  outline: none;
}

.investment-controls button:focus-visible {
  outline: 1px solid rgba(255, 255, 255, .46);
  outline-offset: -5px;
}

.investment-chart {
  min-height: 430px;
  padding: 34px 32px 26px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 26px;
  align-items: end;
  background: transparent;
}

.investment-bar {
  min-height: 360px;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 14px;
  align-items: end;
  text-align: center;
}

.investment-bar span {
  color: rgba(255, 255, 255, .86);
  font-size: 15px;
  font-weight: 780;
  line-height: 1.1;
}

.investment-bar i {
  width: min(100%, 130px);
  height: var(--bar-height, 20%);
  min-height: 12px;
  display: grid;
  justify-self: center;
  align-self: end;
  border: 1px solid rgba(255, 255, 255, .09);
  border-radius: 5px 5px 3px 3px;
  background: linear-gradient(180deg, var(--bar-top, #ffe36d), var(--bar-bottom, #e19d20));
  box-shadow: 0 16px 36px var(--bar-glow, rgba(255, 190, 55, .14));
  transition: height .5s cubic-bezier(.22, 1, .36, 1), background .35s ease, box-shadow .35s ease;
}

.investment-bar-own i {
  border-color: rgba(109, 168, 255, .28);
  background: var(--blue);
  box-shadow: 0 16px 36px rgba(7, 82, 189, .24);
}

.investment-bar-own span {
  color: var(--white);
}

.investment-bar strong {
  color: rgba(255, 255, 255, .62);
  font-size: 14px;
  font-weight: 780;
  line-height: 1.2;
}

.investment-note {
  margin: 0;
  text-align: center;
  color: rgba(255, 255, 255, .64);
  font-size: 13px;
  line-height: 1.45;
}

.booking-copy {
  width: min(100%, 760px);
  margin: 42px auto 0;
  display: grid;
  gap: 18px;
  text-align: center;
}

.booking-copy p {
  margin: 0;
  color: var(--text-soft);
  font-size: 17px;
  line-height: 1.55;
}

.white-section .check-list li {
  color: var(--ink);
  opacity: .78;
}

.payment-section {
  min-height: 100svh;
  padding: clamp(78px, 8vw, 118px) var(--edge-pad) clamp(74px, 7vw, 104px);
  display: grid;
  grid-template-columns: minmax(320px, .94fr) minmax(420px, .96fr);
  gap: clamp(34px, 4vw, 58px);
  align-items: center;
  overflow: hidden;
}

.payment-copy {
  max-width: 640px;
}

.payment-media {
  width: min(700px, 100%);
  justify-self: end;
  display: block;
}

.payment-media img {
  width: 100%;
  height: auto;
  display: block;
}

.loyalty-section {
  min-height: 100svh;
}

.loyalty-visual {
  width: min(100%, 680px);
  display: block;
  justify-self: start;
}

.loyalty-visual img {
  width: 100%;
  height: auto;
  display: block;
}

.case-section {
  min-height: 100svh;
  padding: 76px var(--edge-pad) 88px;
  display: grid;
  grid-template-columns: minmax(0, 900px);
  justify-content: center;
  align-items: center;
  scroll-margin-top: var(--header);
}

.case-copy {
  max-width: 900px;
  justify-self: center;
  text-align: center;
}

.case-copy p {
  max-width: 860px;
  margin-right: auto;
  margin-left: auto;
}

.case-copy h2 {
  max-width: none;
  font-size: clamp(42px, 4.2vw, 52px);
}

.case-actions {
  margin: 24px 0 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: center;
}

.case-progress {
  width: min(100%, 720px);
  margin: 0 auto;
  display: grid;
  gap: 12px;
  padding: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  font-family: "Helvetica Neue", Arial, sans-serif;
  text-align: left;
}

.case-progress-item {
  --status: #20d96f;
  --track: rgba(255, 255, 255, .24);
  display: grid;
  gap: 5px;
}

.case-progress-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
}

.case-progress-row strong {
  color: var(--white);
  font-size: 15px;
  line-height: 1.05;
  font-weight: 560;
}

.case-progress-row span {
  display: block;
  color: var(--white);
  font-size: 14px;
  line-height: 1.05;
  font-weight: 560;
  text-align: right;
  white-space: nowrap;
}

.case-progress-track {
  height: 28px;
  display: block;
  border-radius: 7px;
  background: var(--track);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .08);
  overflow: hidden;
}

.case-progress-track i {
  width: var(--value);
  height: 100%;
  display: block;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--status), color-mix(in srgb, var(--status) 78%, #ffffff));
}

.case-progress-item.is-ready {
  --status: #20d96f;
}

.case-progress-item.is-next {
  --status: #ffd026;
}

.case-photo {
  margin: 0;
  position: relative;
  min-height: 520px;
  border-radius: 8px;
  overflow: hidden;
  background: #061b3d;
}

.case-dashboard {
  min-height: 520px;
  padding: 28px;
  display: grid;
  align-content: space-between;
  gap: 26px;
  background:
    linear-gradient(135deg, rgba(201, 251, 255, .16), transparent 38%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, .06) 0 1px, transparent 1px 68px),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, .04) 0 1px, transparent 1px 68px),
    linear-gradient(135deg, #082a63, #07111f);
}

.case-dashboard-head,
.case-dashboard-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
}

.case-dashboard-head strong {
  color: var(--white);
  font-size: 18px;
  line-height: 1;
}

.case-dashboard-head span,
.case-dashboard-metric span {
  color: rgba(255, 255, 255, .68);
  font-size: 13px;
}

.case-dashboard-metric {
  width: min(100%, 360px);
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 8px;
  background: rgba(255, 255, 255, .08);
  box-shadow: 0 28px 70px rgba(0, 0, 0, .22);
}

.case-dashboard-metric strong {
  display: block;
  margin-top: 10px;
  color: var(--cyan);
  font-size: 68px;
  line-height: .9;
  font-weight: 620;
}

.case-dashboard-grid span {
  min-height: 72px;
  flex: 1 1 130px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 6px;
  background: rgba(255, 255, 255, .08);
  color: rgba(255, 255, 255, .82);
  font-size: 13px;
  font-weight: 760;
}

.case-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(7, 82, 189, .28), transparent 55%);
  pointer-events: none;
}

.case-photo figcaption {
  position: absolute;
  z-index: 2;
  left: 18px;
  right: 18px;
  bottom: 18px;
  padding: 16px;
  border-radius: 6px;
  background: rgba(0, 0, 0, .54);
  color: var(--white);
  font-size: 14px;
  line-height: 1.45;
  backdrop-filter: blur(10px);
}

.owner-section {
  grid-template-columns: minmax(0, 1280px);
  justify-content: center;
}

.owner-copy {
  width: min(100%, 1280px);
  max-width: 1280px;
  display: grid;
  grid-template-columns: minmax(320px, 640px) minmax(320px, 440px);
  justify-content: space-between;
  column-gap: clamp(54px, 8vw, 128px);
  align-items: center;
}

.owner-copy h2 {
  grid-column: 1;
}

.owner-copy > p {
  grid-column: 1;
  max-width: 680px;
}

.owner-portrait {
  margin: 0;
  justify-self: end;
  grid-column: 2;
  grid-row: 1 / span 4;
  display: grid;
  justify-items: center;
  gap: 18px;
}

.owner-portrait-frame {
  width: clamp(280px, 25vw, 390px);
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
}

.owner-portrait-frame img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 42%;
}

.owner-portrait figcaption {
  color: var(--white);
  margin: 0;
  font-size: 20px;
  line-height: 1.1;
  font-weight: 680;
  text-align: center;
}

.suite {
  min-height: 100svh;
  padding: 90px var(--edge-pad) 112px;
}

.suite-head {
  display: grid;
  grid-template-columns: minmax(320px, .72fr) minmax(300px, .48fr);
  gap: 64px;
  align-items: end;
}

.suite-head > p {
  color: var(--text-soft);
  font-size: 16px;
  line-height: 1.55;
}

.module-grid {
  margin-top: 30px;
  margin-right: calc(var(--edge-pad) * -1);
  margin-left: calc(var(--edge-pad) * -1);
  padding: 44px var(--edge-pad) 4px;
  display: flex;
  gap: 14px;
  align-items: stretch;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-padding-left: var(--edge-pad);
  scroll-snap-type: x proximity;
  scrollbar-width: none;
  -ms-overflow-style: none;
  -webkit-overflow-scrolling: touch;
}

.module-grid::-webkit-scrollbar {
  display: none;
}

.module-card {
  --card-bg: var(--blue);
  --card-fg: var(--white);
  --card-muted: rgba(255, 255, 255, .78);
  --card-subtitle: rgba(255, 255, 255, .86);
  --card-line: rgba(255, 255, 255, .18);
  --visual-bg: rgba(255, 255, 255, .06);
  flex: 0 0 clamp(560px, 34vw, 700px);
  min-height: clamp(720px, 78svh, 900px);
  padding: 22px;
  display: grid;
  grid-template-rows: 96px auto auto 1fr;
  align-content: start;
  gap: 18px;
  border: 1px solid var(--card-line);
  border-radius: 8px;
  background: var(--card-bg);
  color: var(--card-fg);
  scroll-snap-align: start;
}

.featured-module {
  transform: none;
}

.module-card:nth-child(1) {
  --card-bg: #f8fbff;
  --card-fg: #073575;
  --card-muted: rgba(18, 35, 58, .66);
  --card-subtitle: rgba(7, 53, 117, .82);
  --card-line: rgba(7, 82, 189, .16);
  --visual-bg: rgba(7, 82, 189, .045);
}

.module-card:nth-child(2) {
  --card-bg: #dfeaff;
  --card-fg: #073575;
  --card-muted: rgba(10, 45, 92, .66);
  --card-subtitle: rgba(7, 53, 117, .84);
  --card-line: rgba(7, 82, 189, .16);
  --visual-bg: rgba(7, 82, 189, .05);
}

.module-card:nth-child(3) {
  --card-bg: #0b63de;
  --card-fg: #f5f7fb;
  --card-muted: rgba(245, 247, 251, .76);
  --card-subtitle: rgba(245, 247, 251, .9);
  --card-line: rgba(245, 247, 251, .18);
  --visual-bg: rgba(245, 247, 251, .065);
}

.module-card:nth-child(4) {
  --card-bg: #101827;
  --card-fg: #f5f7fb;
  --card-muted: rgba(245, 247, 251, .7);
  --card-subtitle: rgba(245, 247, 251, .86);
  --card-line: rgba(245, 247, 251, .14);
  --visual-bg: rgba(245, 247, 251, .06);
}

.module-card:nth-child(5) {
  --card-bg: #ecf3fb;
  --card-fg: #0a315f;
  --card-muted: rgba(10, 49, 95, .66);
  --card-subtitle: rgba(10, 49, 95, .84);
  --card-line: rgba(10, 49, 95, .14);
  --visual-bg: rgba(10, 49, 95, .045);
}

.module-card:nth-child(6) {
  --card-bg: #1d2533;
  --card-fg: #f5f7fb;
  --card-muted: rgba(245, 247, 251, .68);
  --card-subtitle: rgba(245, 247, 251, .86);
  --card-line: rgba(245, 247, 251, .14);
  --visual-bg: rgba(245, 247, 251, .055);
}

.module-visual {
  border: 1px solid var(--card-line);
  border-radius: 6px;
  background:
    linear-gradient(90deg, transparent 48%, var(--card-line) 49% 51%, transparent 52%),
    linear-gradient(0deg, transparent 48%, var(--card-line) 49% 51%, transparent 52%),
    var(--visual-bg);
}

.visual-ads,
.visual-site,
.visual-planner,
.visual-crm,
.visual-pay,
.visual-loyalty {
  background-color: var(--visual-bg);
}

.module-card > span {
  color: var(--card-fg);
  font-size: clamp(20px, 1.45vw, 26px);
  line-height: 1.1;
  font-weight: 760;
}

.module-subtitle {
  margin: -2px 0 0;
  padding: 0;
  border: 0;
  color: var(--card-subtitle);
  background: transparent;
  font-size: 14px;
  line-height: 1;
  font-weight: 760;
}

.module-card ul {
  margin: 0;
  padding: 0;
  display: grid;
  align-content: start;
  gap: 15px;
  list-style: none;
}

.module-card li {
  position: relative;
  min-height: 0;
  padding: 0 0 0 20px;
  display: block;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--card-muted);
  font-size: clamp(14px, .92vw, 16px);
  line-height: 1.48;
}

.module-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .62em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  opacity: .52;
}

.pricing {
  grid-template-columns: minmax(320px, .7fr) minmax(460px, 1fr);
}

.price-copy {
  max-width: 600px;
}

.configurator {
  padding: 18px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  border-color: rgba(7, 82, 189, .12);
  background: rgba(255, 255, 255, .58);
}

.config-list,
.total-card {
  border: 1px solid rgba(7, 82, 189, .12);
  border-radius: 8px;
  background: white;
}

.config-list {
  padding: 10px;
}

.config-title {
  margin: 0;
  padding: 12px;
  color: var(--blue);
  font-size: 18px;
  line-height: 1.1;
  font-weight: 780;
}

.config-row {
  min-height: 50px;
  display: flex;
  align-items: center;
  padding: 0 12px;
  position: relative;
  border-bottom: 1px solid rgba(7, 82, 189, .08);
  color: var(--ink-soft);
  font-size: 14px;
}

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

.config-row::before {
  display: none;
}

.config-row.checked::before {
  display: none;
}

.config-row strong {
  color: var(--blue);
}

.total-card {
  padding: 24px;
  display: grid;
  align-content: center;
  gap: 16px;
}

.total-card span {
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 760;
}

.total-card strong {
  color: var(--blue);
  font-size: 48px;
  line-height: .95;
}

.total-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.4;
}

.footer {
  min-height: 340px;
  padding: 54px var(--edge-pad);
  display: grid;
  grid-template-columns: minmax(260px, .8fr) minmax(320px, .72fr);
  gap: 56px;
  align-items: start;
}

.footer-brand {
  display: block;
  margin-bottom: 18px;
  color: var(--white);
  font-size: 28px;
  line-height: 1;
}

.footer p {
  max-width: 320px;
  color: var(--text-soft);
  font-size: 14px;
  line-height: 1.5;
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(130px, 1fr));
  gap: 28px;
}

.footer-columns div {
  display: grid;
  gap: 10px;
}

.footer-columns h2 {
  margin: 0 0 4px;
  color: var(--white);
  font-size: 14px;
}

.footer-columns a,
.footer-columns span {
  color: rgba(255, 255, 255, .62);
  font-size: 13px;
  text-decoration: none;
}

@media (max-width: 1180px) {
  :root {
    --pad: 32px;
  }

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

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

  .featured-module {
    transform: none;
  }
}

@media (max-width: 980px) {
  .journey-overview,
  .demand,
  .split-section,
  .case-section,
  .owner-section,
  .pricing {
    grid-template-columns: 1fr;
  }

  .journey-copy {
    max-width: 720px;
  }

  .case-copy {
    max-width: 720px;
    justify-self: stretch;
  }

  .case-copy h2 {
    max-width: 100%;
  }

  .case-photo {
    width: 100%;
    max-width: 760px;
    justify-self: center;
  }

  .journey-visual {
    width: min(100%, 580px);
    min-height: 460px;
    justify-self: center;
  }

  .planner-section {
    grid-template-columns: 1fr;
  }

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

  .investment-chart {
    min-height: 250px;
  }

  .investment-bar {
    min-height: 214px;
  }

  .demand-visual {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .demand-media {
    width: 100%;
    max-width: 620px;
    min-height: 360px;
  }

  .demand-media img {
    max-height: 520px;
  }

  .search-channel {
    transform: none;
  }

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

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

@media (max-width: 720px) {
  :root {
    --pad: 18px;
    --header: 58px;
  }

  .hero,
  .journey-overview,
  .demand,
  .split-section,
  .operations,
  .case-section,
  .owner-section,
  .suite,
  .pricing {
    min-height: 100svh;
    padding: 72px var(--edge-pad);
  }

  .hero {
    min-height: 100svh;
    aspect-ratio: auto;
    background-size: cover;
  }

  #site {
    min-height: auto;
    padding-top: 56px;
    padding-bottom: 48px;
    gap: 28px;
  }

  .hero h1 {
    font-size: 40px;
    line-height: 1;
  }

  .hero-picture {
    width: min(78vw, 320px);
  }

  .investment-controls {
    width: min(100%, 390px);
    grid-template-columns: repeat(3, 1fr);
  }

  .investment-chart {
    gap: 8px;
    padding: 14px 10px;
  }

  .investment-bar span {
    font-size: 11px;
  }

  .investment-bar strong {
    font-size: 10px;
  }

  .demand {
    gap: 16px;
    padding-bottom: 0;
  }

  .demand .split-text {
    order: 1;
  }

  .demand-media {
    order: 2;
    width: 100vw;
    max-width: none;
    min-height: 0;
    margin-right: calc(var(--edge-pad) * -1);
    margin-left: calc(var(--edge-pad) * -1);
    align-items: flex-end;
    justify-content: center;
  }

  .demand-media img {
    position: relative;
    z-index: 1;
    width: min(100vw, 520px);
    max-height: none;
    object-position: center bottom;
    filter: drop-shadow(0 34px 48px rgba(0, 20, 70, .36));
  }

  .payment-section {
    min-height: auto;
    padding: 56px var(--edge-pad) 64px;
    display: flex;
    flex-direction: column;
    gap: 28px;
    justify-content: flex-start;
  }

  .payment-copy {
    order: 2;
    max-width: none;
  }

  .payment-media {
    order: 1;
    width: 100vw;
    max-width: none;
    margin-right: calc(var(--edge-pad) * -1);
    margin-left: calc(var(--edge-pad) * -1);
    justify-self: auto;
  }

  .payment-media img {
    width: 100%;
    max-width: none;
  }

  .loyalty-section {
    padding-bottom: 0;
    gap: 34px;
  }

  .loyalty-section .split-text {
    order: 1;
  }

  .loyalty-visual {
    order: 2;
    width: 100vw;
    max-width: none;
    margin-right: calc(var(--edge-pad) * -1);
    margin-left: calc(var(--edge-pad) * -1);
    justify-self: center;
    align-self: end;
  }

  .journey-overview {
    gap: 42px;
  }

  .journey-copy {
    gap: 16px;
  }

  .journey-visual {
    width: 100vw;
    height: min(122vw, 620px);
    min-height: 500px;
    margin-right: calc(var(--edge-pad) * -1);
    margin-left: calc(var(--edge-pad) * -1);
    justify-self: center;
    overflow: hidden;
  }

  .journey-visual::before {
    width: min(86vw, 430px);
    height: min(70vw, 350px);
    top: 50%;
    transform: translate(-50%, -50%) rotate(-18deg);
  }

  .journey-visual::after {
    display: block;
    width: min(68vw, 340px);
    height: min(52vw, 260px);
    top: 50%;
    transform: translate(-50%, -50%) rotate(24deg);
  }

  .journey-ring {
    display: block;
  }

  .journey-ring-one {
    width: min(76vw, 380px);
    height: min(46vw, 230px);
    --dot-distance: min(30vw, 150px);
    transform: translate(-50%, -50%) rotate(-34deg);
  }

  .journey-ring-two {
    width: min(86vw, 430px);
    height: min(60vw, 300px);
    --dot-distance: min(36vw, 180px);
    transform: translate(-50%, -50%) rotate(28deg);
  }

  .atlas-core {
    top: 50%;
    width: 96px;
    height: 96px;
    font-size: 13px;
  }

  .journey-particle {
    top: 50%;
  }

  .module-node {
    width: 132px;
    gap: 6px;
    font-size: 12px;
    scale: 1;
  }

  .module-art {
    width: 112px;
    height: 88px;
  }

  .module-label {
    width: auto;
    max-width: 132px;
    min-height: 0;
    padding: 0;
    line-height: 1.1;
    border: 0;
    background: transparent;
    box-shadow: none;
  }

  .node-ads {
    left: max(7%, 22px);
    top: 8%;
  }

  .node-site {
    right: max(7%, 22px);
    top: 8%;
  }

  .node-price {
    right: max(2%, 10px);
    left: auto;
    top: 39%;
  }

  .node-booking {
    right: max(6%, 20px);
    top: auto;
    bottom: 9%;
  }

  .node-payment {
    left: max(20%, 58px);
    bottom: 5%;
  }

  .node-return {
    left: max(2%, 10px);
    right: auto;
    top: 48%;
    bottom: auto;
    width: 132px;
  }

  .demand h2,
  .split-section h2,
  .operations h2,
  .case-section h2,
  .owner-section h2,
  .suite h2,
  .pricing h2 {
    font-size: 40px;
    line-height: 1;
  }

  .mini-grid,
  .module-grid,
  .suite-head,
  .screen-hero,
  .footer-columns {
    grid-template-columns: 1fr;
  }

  .demand-channel {
    min-height: 0;
  }

  .demand-channel strong {
    font-size: 28px;
  }

  .intent-stats {
    grid-template-columns: 1fr;
  }


  .site-screen,
  .planner-visual,
  .loyalty-visual {
    min-height: 0;
  }

  .site-screen {
    align-self: start;
  }

  .site-screen::before {
    inset: 8% 0 4%;
    filter: blur(20px);
  }

  .site-laptop {
    width: min(92vw, 390px);
  }

  .screen-hero strong {
    font-size: 32px;
  }

  .screen-figure {
    min-height: 170px;
  }

  .planner-visual {
    order: 2;
    min-height: 420px;
  }

  .planner-section .split-text {
    order: 1;
  }

  .planner-preview {
    max-width: min(86vw, 360px);
    max-height: 560px;
  }

  .case-photo,
  .case-dashboard {
    min-height: 390px;
  }

  .case-actions {
    align-items: stretch;
  }

  .case-progress {
    gap: 10px;
    padding: 0;
  }

  .case-progress-row {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 10px;
  }

  .case-progress-row strong,
  .case-progress-row span {
    font-size: 14px;
  }

  .owner-copy {
    display: grid;
    grid-template-columns: 1fr;
  }

  .owner-copy h2,
  .owner-copy > p {
    grid-column: 1;
  }

  .owner-copy h2 {
    order: 1;
  }

  .owner-copy > p {
    order: 3;
  }

  .owner-portrait {
    grid-column: 1;
    grid-row: auto;
    order: 2;
    margin: 0 0 24px;
  }

  .owner-portrait-frame {
    width: min(64vw, 240px);
  }

  .module-grid {
    gap: 10px;
  }

  .module-card {
    flex-basis: min(86vw, 360px);
    min-height: min(78svh, 680px);
    padding: 18px;
    grid-template-rows: 84px auto auto 1fr;
  }

  .module-card > span {
    font-size: 20px;
  }

  .module-card li {
    min-height: 0;
    padding: 0 0 0 18px;
    font-size: 13px;
  }

  .module-card li::before {
    left: 0;
    width: 5px;
    height: 5px;
  }

  .config-row {
    grid-template-columns: 1fr;
    gap: 4px;
    align-items: start;
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .total-card strong {
    font-size: 40px;
  }
}

@media (max-width: 420px) {
  .action-row {
    align-items: stretch;
    flex-direction: column;
  }

  .white-button,
  .blue-button {
    width: 100%;
  }

  .screen-metrics,
  .stats-panel {
    grid-template-columns: 1fr;
  }
}

.pricing-intro {
  min-height: 100svh;
  grid-template-columns: minmax(0, .82fr) minmax(360px, .74fr);
  gap: clamp(36px, 6vw, 96px);
}

.pricing-process {
  width: min(100%, 620px);
  display: grid;
  gap: 12px;
}

.pricing-process div {
  padding: 24px;
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 6px 18px;
  border: 1px solid rgba(245, 247, 251, .16);
  border-radius: 8px;
  background: rgba(245, 247, 251, .08);
}

.pricing-process span {
  grid-row: 1 / span 2;
  color: rgba(245, 247, 251, .52);
  font-size: 14px;
  font-weight: 780;
}

.pricing-process strong {
  color: var(--white);
  font-size: clamp(18px, 1.3vw, 24px);
  line-height: 1.1;
}

.pricing-process p {
  margin: 0;
  color: rgba(245, 247, 251, .68);
  font-size: clamp(14px, .95vw, 17px);
  line-height: 1.45;
}

.atlas-shop,
.account-section {
  min-height: auto;
  padding: clamp(78px, 10vw, 138px) var(--edge-pad);
  display: block;
  overflow: visible;
}

.shop-heading {
  width: min(100%, 980px);
  margin: 0 0 30px;
}

.shop-heading h2 {
  margin: 0 0 16px;
  color: var(--white);
  font-size: clamp(44px, 6.4vw, 108px);
  line-height: .94;
  letter-spacing: 0;
}

.shop-heading p {
  width: min(100%, 760px);
  margin: 0;
  color: rgba(245, 247, 251, .72);
  font-size: clamp(18px, 1.5vw, 28px);
  line-height: 1.45;
}

.shop-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(320px, .62fr);
  gap: 22px;
  align-items: start;
}

.shop-card,
.account-card {
  border: 1px solid rgba(245, 247, 251, .18);
  border-radius: 8px;
  background: rgba(245, 247, 251, .08);
  color: var(--white);
}

.calculator-card {
  padding: clamp(18px, 2.4vw, 34px);
}

.calculator-list {
  display: grid;
  gap: 10px;
}

.service-option {
  min-height: 96px;
  padding: 18px;
  display: grid;
  grid-template-columns: 22px 1fr auto;
  gap: 16px;
  align-items: start;
  border: 1px solid rgba(245, 247, 251, .14);
  border-radius: 8px;
  background: rgba(7, 21, 47, .26);
  cursor: pointer;
}

.service-option.is-selected {
  border-color: rgba(245, 247, 251, .42);
  background: rgba(245, 247, 251, .14);
}

.service-option input {
  width: 18px;
  height: 18px;
  margin: 3px 0 0;
  accent-color: var(--white);
}

.service-option strong,
.service-option small {
  display: block;
}

.service-option strong {
  font-size: clamp(16px, 1.12vw, 21px);
  line-height: 1.18;
}

.service-option small {
  margin-top: 7px;
  color: rgba(245, 247, 251, .68);
  font-size: clamp(13px, .9vw, 15px);
  line-height: 1.42;
}

.service-option b {
  white-space: nowrap;
  font-size: clamp(16px, 1.1vw, 20px);
}

.checkout-summary {
  margin: 18px 0;
  padding: 22px 0 0;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid rgba(245, 247, 251, .18);
}

.checkout-summary span {
  color: rgba(245, 247, 251, .68);
  font-weight: 740;
}

.checkout-summary strong {
  font-size: clamp(30px, 3.8vw, 64px);
  line-height: .9;
}

.buyer-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.buyer-grid label,
.buyer-note,
.account-card label {
  display: grid;
  gap: 8px;
}

.buyer-grid span,
.buyer-note span,
.account-card label span {
  color: rgba(245, 247, 251, .68);
  font-size: 13px;
  font-weight: 760;
}

.buyer-grid input,
.buyer-note textarea,
.account-card input,
.order-status-control select {
  width: 100%;
  border: 1px solid rgba(245, 247, 251, .18);
  border-radius: 8px;
  background: rgba(4, 20, 48, .44);
  color: var(--white);
  font: inherit;
}

.buyer-grid input,
.account-card input,
.order-status-control select {
  height: 48px;
  padding: 0 14px;
}

.buyer-note {
  margin-top: 12px;
}

.buyer-note textarea {
  min-height: 92px;
  padding: 14px;
  resize: vertical;
}

.terms-check {
  margin: 16px 0;
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  color: rgba(245, 247, 251, .7);
  font-size: 14px;
  line-height: 1.45;
}

.terms-check input {
  width: 18px;
  height: 18px;
  accent-color: var(--white);
}

.terms-check a,
.site-footer a {
  color: var(--white);
  text-decoration: none;
}

.terms-check a:hover,
.site-footer a:hover {
  text-decoration: underline;
}

.buy-button,
.account-card button {
  min-height: 52px;
  border: 0;
  border-radius: 8px;
  background: var(--white);
  color: var(--blue);
  font: inherit;
  font-weight: 820;
  cursor: pointer;
}

.buy-button {
  width: 100%;
  font-size: 18px;
}

.buy-button:disabled,
.account-card button:disabled {
  opacity: .62;
  cursor: wait;
}

.checkout-message,
.account-card p,
.empty-orders {
  min-height: 22px;
  margin: 12px 0 0;
  color: rgba(245, 247, 251, .68);
  font-size: 14px;
  line-height: 1.45;
}

.order-policy-card {
  padding: clamp(20px, 2.2vw, 30px);
  position: sticky;
  top: 22px;
}

.order-policy-card h3,
.account-card h3 {
  margin: 0 0 18px;
  color: var(--white);
  font-size: clamp(22px, 1.7vw, 32px);
  line-height: 1.08;
}

.status-list {
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
  list-style: none;
}

.status-list li {
  padding: 0 0 12px;
  border-bottom: 1px solid rgba(245, 247, 251, .12);
}

.status-list strong,
.status-list span {
  display: block;
}

.status-list strong {
  color: var(--white);
  font-size: 16px;
}

.status-list span,
.order-policy-card p {
  color: rgba(245, 247, 251, .68);
  font-size: 14px;
  line-height: 1.45;
}

.order-policy-card p {
  margin: 18px 0 0;
}

.account-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.account-card {
  padding: 22px;
  display: grid;
  gap: 14px;
  align-content: start;
}

.account-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.orders-list {
  display: grid;
  gap: 10px;
}

.order-item {
  padding: 14px;
  display: grid;
  gap: 8px;
  border: 1px solid rgba(245, 247, 251, .14);
  border-radius: 8px;
  background: rgba(7, 21, 47, .24);
}

.order-item div:first-child {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.order-item strong,
.order-item span,
.order-item p,
.order-item small {
  min-width: 0;
}

.order-item span,
.order-item p,
.order-item small {
  color: rgba(245, 247, 251, .68);
  line-height: 1.4;
}

.order-item p {
  margin: 0;
  font-size: 14px;
}

.order-status-control {
  display: grid;
  gap: 8px;
}

.site-footer {
  padding: 28px var(--page-x);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px 28px;
  background: #04142f;
  color: var(--white);
  font-size: 14px;
}

.legal-page {
  min-height: 100svh;
  padding: clamp(40px, 6vw, 90px) var(--edge-pad);
  display: grid;
  place-items: center;
}

.legal-card {
  width: min(100%, 880px);
  padding: clamp(24px, 4vw, 56px);
  border: 1px solid rgba(245, 247, 251, .18);
  border-radius: 8px;
  background: rgba(245, 247, 251, .92);
  color: #073575;
}

.legal-kicker {
  margin: 0 0 18px;
  color: rgba(7, 53, 117, .62);
  font-size: 13px;
  font-weight: 820;
  letter-spacing: .08em;
}

.legal-card h1 {
  margin: 0 0 24px;
  font-size: clamp(38px, 5.6vw, 78px);
  line-height: .94;
}

.legal-card h2 {
  margin: 28px 0 10px;
  font-size: clamp(21px, 2vw, 30px);
  line-height: 1.1;
}

.legal-card p {
  margin: 0 0 14px;
  color: rgba(7, 53, 117, .72);
  font-size: clamp(16px, 1.2vw, 19px);
  line-height: 1.55;
}

.legal-back {
  min-height: 48px;
  margin-top: 20px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: var(--blue);
  color: var(--white);
  text-decoration: none;
  font-weight: 820;
}

@media (max-width: 980px) {
  .pricing-intro,
  .shop-layout,
  .account-grid {
    grid-template-columns: 1fr;
  }

  .order-policy-card {
    position: static;
  }
}

@media (max-width: 640px) {
  .buyer-grid,
  .account-actions {
    grid-template-columns: 1fr;
  }

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

  .service-option b {
    grid-column: 2;
  }
}

/* Commerce redesign pass */
.pricing-intro,
.atlas-shop,
.account-section {
  position: relative;
  isolation: isolate;
}

.pricing-intro::before,
.atlas-shop::before,
.account-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at 82% 16%, rgba(201, 251, 255, .13), transparent 30%),
    radial-gradient(circle at 18% 78%, rgba(109, 168, 255, .16), transparent 28%);
}

.pricing-intro {
  padding-top: clamp(96px, 9vw, 150px);
  padding-bottom: clamp(84px, 9vw, 150px);
  align-items: end;
}

.pricing-intro .price-copy {
  max-width: 720px;
  align-self: center;
}

.pricing-intro .price-copy h2 {
  margin: 0 0 28px;
  color: var(--white);
  font-size: clamp(58px, 7.9vw, 142px);
  line-height: .9;
  letter-spacing: 0;
}

.pricing-intro .price-copy p {
  max-width: 620px;
  margin-bottom: 22px;
  color: rgba(245, 247, 251, .72);
  font-size: clamp(19px, 1.45vw, 28px);
  line-height: 1.48;
}

.pricing-process {
  align-self: center;
  gap: 0;
  counter-reset: process;
  border-top: 1px solid rgba(245, 247, 251, .2);
}

.pricing-process div {
  min-height: 146px;
  padding: 26px 0;
  display: grid;
  grid-template-columns: 74px 1fr;
  border: 0;
  border-bottom: 1px solid rgba(245, 247, 251, .2);
  border-radius: 0;
  background: transparent;
}

.pricing-process span {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(245, 247, 251, .24);
  border-radius: 50%;
  color: rgba(245, 247, 251, .82);
}

.pricing-process strong {
  font-size: clamp(26px, 2.1vw, 40px);
}

.pricing-process p {
  max-width: 360px;
  font-size: clamp(16px, 1.08vw, 19px);
}

.atlas-shop {
  padding-top: clamp(96px, 10vw, 156px);
  padding-bottom: clamp(110px, 12vw, 180px);
}

.shop-heading {
  width: min(100%, 1180px);
  margin-bottom: clamp(34px, 4vw, 64px);
}

.shop-heading h2 {
  max-width: 1020px;
  font-size: clamp(56px, 8.4vw, 150px);
  line-height: .88;
}

.shop-heading p {
  max-width: 820px;
  color: rgba(245, 247, 251, .7);
}

.shop-layout {
  grid-template-columns: minmax(0, 1fr);
  gap: 28px;
}

.shop-card,
.account-card {
  border-color: rgba(245, 247, 251, .16);
  background: transparent;
}

.calculator-card {
  position: relative;
  padding: clamp(18px, 2.4vw, 32px);
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, .52fr);
  gap: clamp(18px, 3vw, 46px);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(245, 247, 251, .16), rgba(245, 247, 251, .055)),
    rgba(4, 28, 74, .42);
  box-shadow: inset 0 1px 0 rgba(245, 247, 251, .18);
}

.calculator-list {
  gap: 8px;
}

.service-option {
  min-height: 88px;
  padding: 18px 0;
  grid-template-columns: 46px minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  border-width: 0 0 1px;
  border-color: rgba(245, 247, 251, .14);
  border-radius: 0;
  background: transparent;
  transition: background .18s ease, border-color .18s ease;
}

.service-option:first-child {
  padding-top: 0;
}

.service-option:last-child {
  border-bottom: 0;
}

.service-option:hover,
.service-option.is-selected {
  border-color: rgba(245, 247, 251, .28);
  background: linear-gradient(90deg, rgba(245, 247, 251, .08), transparent 72%);
}

.service-option input {
  appearance: none;
  width: 28px;
  height: 28px;
  margin: 0;
  display: grid;
  place-items: center;
  border: 1px solid rgba(245, 247, 251, .42);
  border-radius: 50%;
  background: rgba(4, 20, 48, .32);
}

.service-option input::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--white);
  transform: scale(0);
  transition: transform .18s ease;
}

.service-option input:checked::before {
  transform: scale(1);
}

.service-option strong {
  font-size: clamp(20px, 1.45vw, 30px);
  line-height: 1.04;
}

.service-option small {
  max-width: 620px;
  margin-top: 8px;
  color: rgba(245, 247, 251, .58);
  font-size: clamp(14px, .9vw, 17px);
}

.service-option b {
  color: rgba(245, 247, 251, .92);
  font-size: clamp(20px, 1.5vw, 30px);
  font-weight: 820;
}

.checkout-summary,
.buyer-grid,
.buyer-note,
.terms-check,
.buy-button,
.checkout-message {
  grid-column: 2;
}

.checkout-summary {
  position: sticky;
  top: 84px;
  margin: 0;
  padding: clamp(24px, 2.6vw, 36px);
  min-height: 220px;
  align-self: start;
  display: grid;
  align-content: end;
  border: 1px solid rgba(245, 247, 251, .18);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(245, 247, 251, .94), rgba(223, 234, 255, .92));
  color: var(--blue);
}

.checkout-summary span {
  color: rgba(7, 53, 117, .62);
  font-size: 14px;
  text-transform: uppercase;
}

.checkout-summary strong {
  margin-top: 20px;
  color: var(--blue);
  font-size: clamp(54px, 6vw, 104px);
  letter-spacing: 0;
}

.buyer-grid {
  align-self: start;
  grid-template-columns: 1fr;
  gap: 10px;
}

.buyer-grid input,
.buyer-note textarea,
.account-card input,
.order-status-control select {
  border-color: rgba(245, 247, 251, .28);
  background: rgba(2, 20, 58, .46);
  box-shadow: inset 0 1px 0 rgba(245, 247, 251, .08);
}

.buyer-grid input:focus,
.buyer-note textarea:focus,
.account-card input:focus {
  outline: 2px solid rgba(245, 247, 251, .72);
  outline-offset: 2px;
}

.buyer-note textarea::placeholder {
  color: rgba(245, 247, 251, .38);
}

.terms-check {
  margin: 4px 0 0;
  align-self: start;
}

.buy-button {
  margin-top: 2px;
  min-height: 60px;
  border: 1px solid rgba(245, 247, 251, .72);
  background: var(--white);
  color: var(--blue);
  box-shadow: 0 18px 50px rgba(2, 22, 60, .22);
}

.order-policy-card {
  width: min(100%, 1040px);
  margin-left: auto;
  padding: 0;
  position: static;
  display: grid;
  grid-template-columns: minmax(260px, .42fr) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 70px);
  border: 0;
}

.order-policy-card h3 {
  max-width: 340px;
  margin: 0;
  font-size: clamp(34px, 4vw, 70px);
  line-height: .92;
}

.status-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid rgba(245, 247, 251, .16);
}

.status-list li {
  min-height: 168px;
  padding: 22px 18px 0 0;
  border-bottom: 0;
  border-right: 1px solid rgba(245, 247, 251, .16);
}

.status-list li:last-child {
  border-right: 0;
}

.status-list strong {
  font-size: clamp(18px, 1.2vw, 23px);
}

.order-policy-card p {
  grid-column: 2;
  max-width: 680px;
  margin: -46px 0 0;
  color: rgba(245, 247, 251, .58);
  font-size: clamp(15px, 1vw, 18px);
}

.account-section {
  padding-top: clamp(90px, 10vw, 150px);
  padding-bottom: clamp(96px, 10vw, 160px);
  background:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, .045) 0 1px, transparent 1px 84px),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, .032) 0 1px, transparent 1px 84px),
    #101827;
}

.account-section::before {
  background: radial-gradient(circle at 80% 15%, rgba(109, 168, 255, .14), transparent 34%);
}

.account-section .shop-heading h2 {
  max-width: 900px;
}

.account-grid {
  grid-template-columns: minmax(280px, .68fr) minmax(280px, .48fr) minmax(320px, .62fr);
  align-items: stretch;
}

.account-card {
  min-height: 320px;
  padding: clamp(22px, 2.4vw, 34px);
  border-color: rgba(245, 247, 251, .14);
  background: rgba(245, 247, 251, .045);
  box-shadow: inset 0 1px 0 rgba(245, 247, 251, .08);
}

.account-card h3 {
  font-size: clamp(26px, 2vw, 40px);
}

.account-card button {
  min-height: 50px;
}

.site-footer {
  background: #101827;
  border-top: 1px solid rgba(245, 247, 251, .12);
}

@media (max-width: 1120px) {
  .calculator-card {
    grid-template-columns: 1fr;
  }

  .checkout-summary,
  .buyer-grid,
  .buyer-note,
  .terms-check,
  .buy-button,
  .checkout-message {
    grid-column: 1;
  }

  .checkout-summary {
    position: static;
  }

  .order-policy-card,
  .order-policy-card p {
    grid-template-columns: 1fr;
    grid-column: auto;
    margin: 0;
  }

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

@media (max-width: 720px) {
  .pricing-intro .price-copy h2,
  .shop-heading h2 {
    font-size: clamp(48px, 14vw, 74px);
  }

  .pricing-process div {
    min-height: 120px;
    grid-template-columns: 58px 1fr;
  }

  .calculator-card {
    padding: 18px;
  }

  .service-option {
    grid-template-columns: 38px 1fr;
    align-items: start;
  }

  .service-option b {
    grid-column: 2;
    margin-top: 8px;
  }

  .checkout-summary strong {
    font-size: clamp(52px, 15vw, 74px);
  }

  .status-list,
  .account-grid {
    grid-template-columns: 1fr;
  }

  .status-list li {
    min-height: auto;
    padding-bottom: 18px;
    border-right: 0;
    border-bottom: 1px solid rgba(245, 247, 251, .16);
  }
}

@media (min-width: 1121px) {
  .calculator-list {
    grid-column: 1;
    grid-row: 1 / span 6;
  }

  .checkout-summary {
    grid-row: 1;
  }

  .buyer-grid {
    grid-row: 2;
  }

  .buyer-note {
    grid-row: 3;
  }

  .terms-check {
    grid-row: 4;
  }

  .buy-button {
    grid-row: 5;
  }

  .checkout-message {
    grid-row: 6;
  }
}

.checkout-panel {
  grid-column: 2;
  grid-row: 1;
  display: grid;
  align-content: start;
  gap: 14px;
}

.checkout-panel .checkout-summary,
.checkout-panel .buyer-grid,
.checkout-panel .buyer-note,
.checkout-panel .terms-check,
.checkout-panel .buy-button,
.checkout-panel .checkout-message {
  grid-column: auto;
  grid-row: auto;
}

.checkout-panel .checkout-summary {
  position: static;
}

@media (min-width: 1121px) {
  .calculator-list {
    grid-row: 1;
  }
}

@media (max-width: 1120px) {
  .checkout-panel {
    grid-column: 1;
    grid-row: auto;
  }
}

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

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

@media (prefers-reduced-motion: no-preference) {
  .module-card,
  .site-screen,
  .planner-visual {
    transition: transform .24s ease, border-color .24s ease;
  }

  .module-card:hover,
  .site-screen:hover,
  .planner-visual:hover {
    transform: translateY(-6px);
    border-color: rgba(201, 251, 255, .28);
  }

}

/* ANIMA-density pass for the ATLAS commerce area */
.pricing-intro {
  padding-top: clamp(78px, 7vw, 112px);
  padding-bottom: clamp(74px, 7vw, 108px);
  align-items: center;
  gap: clamp(28px, 4vw, 64px);
}

.pricing-intro .price-copy {
  max-width: 660px;
}

.pricing-intro .price-copy h2 {
  max-width: 650px;
  margin-bottom: 18px;
  font-size: clamp(36px, 4.3vw, 58px);
  line-height: .98;
}

.pricing-intro .price-copy p {
  max-width: 560px;
  margin-bottom: 14px;
  font-size: clamp(16px, 1.2vw, 19px);
  line-height: 1.48;
}

.pricing-process div {
  min-height: 96px;
  padding: 18px 0;
  grid-template-columns: 56px 1fr;
}

.pricing-process span {
  width: 38px;
  height: 38px;
  font-size: 12px;
}

.pricing-process strong {
  font-size: clamp(20px, 1.8vw, 28px);
  line-height: 1.08;
}

.pricing-process p {
  max-width: 330px;
  font-size: clamp(14px, 1vw, 16px);
  line-height: 1.42;
}

.atlas-shop {
  padding-top: clamp(76px, 7vw, 108px);
  padding-bottom: clamp(82px, 8vw, 118px);
}

.atlas-shop .shop-heading,
.account-section .shop-heading {
  width: min(100%, 1240px);
  margin: 0 auto 24px;
}

.atlas-shop .shop-heading h2,
.account-section .shop-heading h2 {
  max-width: 760px;
  margin-bottom: 14px;
  font-size: clamp(36px, 4.5vw, 60px);
  line-height: .98;
}

.atlas-shop .shop-heading p,
.account-section .shop-heading p {
  max-width: 640px;
  font-size: clamp(16px, 1.25vw, 20px);
  line-height: 1.45;
}

.atlas-shop .shop-layout {
  width: min(100%, 1240px);
  margin: 0 auto;
  gap: 18px;
}

.atlas-shop .calculator-card {
  padding: clamp(18px, 2vw, 28px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 330px);
  gap: clamp(18px, 2.2vw, 28px);
  border: 1px solid rgba(245, 247, 251, .2);
  border-radius: 8px;
  background: rgba(245, 247, 251, .95);
  color: #12356b;
  box-shadow: 0 22px 70px rgba(2, 22, 60, .2);
}

.atlas-shop .calculator-list {
  gap: 10px;
}

.atlas-shop .service-option {
  min-height: 70px;
  padding: 14px 16px;
  grid-template-columns: 22px minmax(0, 1fr) auto;
  gap: 14px;
  border: 1px solid rgba(10, 64, 145, .14);
  border-radius: 8px;
  background: rgba(255, 255, 255, .72);
  color: #12356b;
}

.atlas-shop .service-option:first-child,
.atlas-shop .service-option:last-child {
  padding-top: 14px;
}

.atlas-shop .service-option:hover,
.atlas-shop .service-option.is-selected {
  border-color: rgba(10, 86, 190, .34);
  background: #fff;
  box-shadow: 0 10px 24px rgba(8, 44, 106, .08);
}

.atlas-shop .service-option input {
  width: 18px;
  height: 18px;
  border-color: rgba(10, 64, 145, .42);
  background: #fff;
}

.atlas-shop .service-option input::before {
  width: 8px;
  height: 8px;
  background: var(--blue);
}

.atlas-shop .service-option strong {
  font-size: clamp(16px, 1.15vw, 18px);
  line-height: 1.2;
  color: #082f71;
}

.atlas-shop .service-option small {
  max-width: 560px;
  margin-top: 5px;
  color: rgba(18, 53, 107, .62);
  font-size: clamp(12px, .85vw, 13px);
  line-height: 1.35;
}

.atlas-shop .service-option b {
  color: #082f71;
  font-size: clamp(15px, 1.08vw, 18px);
  font-weight: 800;
  white-space: nowrap;
}

.atlas-shop .checkout-panel {
  grid-column: 2;
  display: grid;
  align-content: start;
  gap: 12px;
}

.atlas-shop .checkout-summary {
  min-height: 116px;
  padding: 18px;
  display: block;
  border: 1px solid rgba(8, 47, 113, .12);
  border-radius: 8px;
  background: #0b56c6;
  color: #fff;
}

.atlas-shop .checkout-summary span {
  color: rgba(255, 255, 255, .72);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .06em;
}

.atlas-shop .checkout-summary strong {
  margin-top: 8px;
  color: #fff;
  font-size: clamp(34px, 3vw, 46px);
  line-height: 1;
}

.atlas-shop .buyer-grid {
  grid-template-columns: 1fr;
  gap: 9px;
}

.atlas-shop .buyer-grid label,
.atlas-shop .buyer-note,
.atlas-shop .terms-check {
  color: rgba(18, 53, 107, .76);
  font-size: 12px;
  font-weight: 760;
}

.atlas-shop .buyer-grid span,
.atlas-shop .buyer-note span {
  color: rgba(18, 53, 107, .68);
  font-size: 12px;
  font-weight: 760;
}

.atlas-shop .buyer-grid input,
.atlas-shop .buyer-note textarea {
  min-height: 44px;
  margin-top: 0;
  padding: 10px 12px;
  border-color: rgba(10, 64, 145, .18);
  border-radius: 8px;
  background: #fff;
  color: #12356b;
  font-size: 14px;
  line-height: 1.35;
  box-shadow: none;
}

.atlas-shop .buyer-note textarea {
  min-height: 72px;
}

.atlas-shop .buyer-grid input:focus,
.atlas-shop .buyer-note textarea:focus {
  outline: 2px solid rgba(10, 86, 190, .35);
  outline-offset: 2px;
}

.atlas-shop .buyer-note textarea::placeholder {
  color: rgba(18, 53, 107, .38);
}

.atlas-shop .terms-check {
  margin-top: 0;
  align-items: start;
  line-height: 1.4;
}

.atlas-shop .terms-check input {
  margin-top: 3px;
}

.atlas-shop .terms-check a {
  color: #064fb7;
}

.atlas-shop .buy-button {
  min-height: 48px;
  margin-top: 0;
  border: 0;
  border-radius: 8px;
  background: #082f71;
  color: #fff;
  font-size: 15px;
  box-shadow: none;
}

.atlas-shop .checkout-message {
  min-height: 18px;
  margin: 0;
  color: rgba(18, 53, 107, .72);
  font-size: 12px;
}

.atlas-shop .order-policy-card {
  width: 100%;
  margin: 0;
  padding: 22px 24px;
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 22px;
  border: 1px solid rgba(245, 247, 251, .16);
  border-radius: 8px;
  background: rgba(245, 247, 251, .08);
}

.atlas-shop .order-policy-card h3 {
  max-width: 240px;
  font-size: clamp(26px, 2.4vw, 38px);
  line-height: 1.02;
}

.atlas-shop .status-list {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
}

.atlas-shop .status-list li {
  min-height: 112px;
  padding: 0 16px 0 0;
  border-right: 1px solid rgba(245, 247, 251, .14);
}

.atlas-shop .status-list strong {
  font-size: 16px;
  line-height: 1.2;
}

.atlas-shop .status-list span {
  margin-top: 7px;
  font-size: 12px;
  line-height: 1.38;
}

.atlas-shop .order-policy-card p {
  grid-column: 2;
  max-width: 720px;
  margin: -34px 0 0;
  font-size: 13px;
  line-height: 1.45;
}

.account-section {
  padding-top: clamp(78px, 7vw, 112px);
  padding-bottom: clamp(84px, 8vw, 124px);
}

.account-section .account-grid {
  width: min(100%, 1240px);
  margin: 0 auto;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.account-section .account-card {
  min-height: 0;
  padding: 22px;
  border-radius: 8px;
}

.account-section .account-card h3 {
  font-size: clamp(22px, 1.8vw, 30px);
}

.account-section .account-card input {
  min-height: 44px;
}

.account-section .account-card button {
  min-height: 46px;
}

@media (max-width: 1120px) {
  .atlas-shop .calculator-card,
  .account-section .account-grid {
    grid-template-columns: 1fr;
  }

  .atlas-shop .checkout-panel {
    grid-column: 1;
    grid-template-columns: minmax(240px, 320px) minmax(0, 1fr);
    align-items: start;
  }

  .atlas-shop .checkout-summary,
  .atlas-shop .buy-button,
  .atlas-shop .checkout-message {
    grid-column: 1;
  }

  .atlas-shop .buyer-grid,
  .atlas-shop .buyer-note,
  .atlas-shop .terms-check {
    grid-column: 2;
  }

  .atlas-shop .order-policy-card {
    grid-template-columns: 1fr;
  }

  .atlas-shop .order-policy-card h3 {
    max-width: none;
  }

  .atlas-shop .order-policy-card p {
    grid-column: auto;
    margin: 0;
  }
}

@media (max-width: 760px) {
  .pricing-intro {
    padding-top: 66px;
    padding-bottom: 70px;
  }

  .pricing-intro .price-copy h2 {
    font-size: clamp(32px, 9vw, 42px);
  }

  .pricing-process div {
    min-height: 0;
    grid-template-columns: 46px 1fr;
    padding: 14px 0;
  }

  .atlas-shop {
    padding-top: 66px;
  }

  .atlas-shop .shop-heading h2,
  .account-section .shop-heading h2 {
    font-size: clamp(30px, 8.8vw, 40px);
  }

  .atlas-shop .calculator-card {
    padding: 14px;
  }

  .atlas-shop .service-option {
    min-height: 0;
    grid-template-columns: 20px 1fr auto;
    gap: 10px;
    padding: 12px;
  }

  .atlas-shop .service-option small {
    display: none;
  }

  .atlas-shop .service-option b {
    grid-column: 2;
    margin-top: 6px;
    font-size: 16px;
  }

  .atlas-shop .checkout-panel {
    grid-template-columns: 1fr;
  }

  .atlas-shop .checkout-summary,
  .atlas-shop .buyer-grid,
  .atlas-shop .buyer-note,
  .atlas-shop .terms-check,
  .atlas-shop .buy-button,
  .atlas-shop .checkout-message {
    grid-column: 1;
  }

  .atlas-shop .checkout-summary {
    min-height: 92px;
  }

  .atlas-shop .status-list {
    grid-template-columns: 1fr 1fr;
    gap: 14px 0;
  }

  .atlas-shop .status-list li {
    min-height: 0;
    padding-right: 12px;
  }
}
