/* Premium SaaS homepage preview
   Scoped to the public homepage so the authenticated product UI stays untouched. */
body.public-home-page {
  --saas-bg: #0b111b;
  --saas-bg-soft: #0f1724;
  --saas-surface: #121c2b;
  --saas-surface-strong: #162235;
  --saas-line: rgba(148, 174, 211, 0.16);
  --saas-line-strong: rgba(117, 225, 213, 0.28);
  --saas-text: #f2f7ff;
  --saas-muted: #9aabc1;
  --saas-cyan: #65ead6;
  --saas-blue: #5a98ff;
  --saas-violet: #9d7cff;
  --saas-coral: #ff8f7a;
  --saas-green: #63d5a4;
  --saas-max: 1240px;
  --saas-fluid-gutter: clamp(24px, 3vw, 56px);
  color-scheme: dark;
  overflow-x: clip;
  background: var(--saas-bg);
  color: var(--saas-text);
}

html.saas-enhanced {
  background: #0b111b;
  scrollbar-color: rgba(101, 234, 214, 0.42) #0b111b;
}

html.saas-enhanced::-webkit-scrollbar-track {
  background: #0b111b;
}

html.saas-enhanced::-webkit-scrollbar-thumb {
  border-color: #0b111b;
  background: rgba(101, 234, 214, 0.4);
}

body.public-home-page .page-shell,
body.public-home-page .home-panel,
body.public-home-page .traffic-landing {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
}

body.public-home-page .home-panel,
body.public-home-page .traffic-landing {
  display: block;
  gap: 0;
}

body.public-home-page .topbar {
  width: calc(100% - (var(--saas-fluid-gutter) * 2));
  min-height: 76px;
  transition: min-height 180ms ease;
}

body.public-home-page .topbar.is-condensed {
  min-height: 64px;
}

body.public-home-page .topbar::before {
  background: rgba(8, 14, 24, 0.82);
  border-color: rgba(146, 177, 214, 0.13);
  box-shadow: 0 10px 34px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(20px) saturate(1.2);
}

body.public-home-page .brand-wordmark {
  width: 166px;
  filter: saturate(0.72) brightness(1.02);
}

body.public-home-page .topbar-nav {
  gap: 2px;
  margin-left: 18px;
}

body.public-home-page .public-nav-link {
  min-height: 38px;
  padding: 0 10px;
  border-radius: 6px;
  color: #9fb0c5;
  font-size: 13px;
  font-weight: 680;
}

body.public-home-page .login-cta {
  min-width: 78px;
  min-height: 40px;
  padding: 0 16px;
  border-color: rgba(148, 174, 211, 0.2);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--saas-text);
  box-shadow: none;
}

body.public-home-page .login-cta:hover,
body.public-home-page .login-cta:focus-visible {
  border-color: rgba(101, 234, 214, 0.38);
  background: rgba(101, 234, 214, 0.09);
  color: #ffffff;
}

body.public-home-page .language-trigger {
  min-height: 38px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.025);
}

.saas-landing,
.saas-landing * {
  box-sizing: border-box;
}

.saas-landing {
  position: relative;
  overflow: clip;
  background:
    linear-gradient(180deg, #0b111b 0%, #0c1420 54%, #0a111b 100%);
  color: var(--saas-text);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
}

.saas-landing a {
  color: inherit;
}

.saas-container {
  width: min(var(--saas-max), calc(100% - 40px));
  margin: 0 auto;
}

.saas-hero {
  position: relative;
  min-height: clamp(700px, calc(100svh - 200px), 820px);
  display: grid;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(
      ellipse 86% 120% at 72% 45%,
      rgba(0, 214, 235, 0.105) 0%,
      rgba(29, 112, 230, 0.09) 30%,
      rgba(102, 62, 220, 0.05) 49%,
      transparent 72%
    ),
    linear-gradient(120deg, #020812 0%, #030a13 44%, #06101e 71%, #030914 100%);
}

.saas-hero::before {
  content: "";
  position: absolute;
  z-index: -2;
  inset: 0;
  background:
    linear-gradient(105deg, transparent 24%, rgba(35, 230, 226, 0.025) 55%, rgba(72, 92, 235, 0.05) 82%, transparent),
    radial-gradient(ellipse 68% 48% at 72% 88%, rgba(83, 54, 208, 0.065), transparent 76%);
  pointer-events: none;
}

.saas-hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: auto 0 0;
  height: 180px;
  background: linear-gradient(180deg, transparent, rgba(11, 17, 27, 0.96));
  pointer-events: none;
}

.cta-particles {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.traffic-globe-canvas {
  position: absolute;
  z-index: 1;
  inset: 0;
  width: 100%;
  height: 100%;
  /* Do not animate opacity on a native WebGL compositor surface. The decoded
     poster stays above it until this fully-rendered canvas is already visible. */
  opacity: 1;
  visibility: hidden;
  background-color: transparent;
  background-image: url('/assets/traffic-globe-clean-first-frame.png?v=20260816-network-route-art-poster-v1-66');
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  cursor: grab;
  pointer-events: none;
  touch-action: none;
  transform: none;
  /* Hiding must be immediate before any backing-buffer resize. */
  transition: none;
}

.saas-globe-stage.is-canvas-live .traffic-globe-canvas {
  opacity: 1;
  visibility: visible;
  transition: none;
}

.saas-globe-stage.is-first-frame-ready .traffic-globe-canvas {
  pointer-events: auto;
}

.saas-grid-field {
  position: absolute;
  z-index: -3;
  inset: 0;
  opacity: 0.42;
  background-image:
    linear-gradient(rgba(33, 165, 218, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(33, 165, 218, 0.045) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(90deg, #000 0%, rgba(0, 0, 0, 0.58) 45%, transparent 84%);
  transform: perspective(620px) rotateX(65deg) scale(1.45) translateY(36%);
  transform-origin: center bottom;
  pointer-events: none;
}

.saas-hero-light {
  position: absolute;
  z-index: -2;
  width: min(76vw, 1180px);
  height: 280px;
  filter: blur(110px);
  opacity: 0.11;
  pointer-events: none;
}

.saas-hero-light.is-cyan {
  right: -10%;
  top: 5%;
  background: linear-gradient(90deg, transparent, rgba(45, 211, 194, 0.9), transparent);
  transform: rotate(-13deg);
}

.saas-hero-light.is-violet {
  right: -2%;
  bottom: 0;
  background: linear-gradient(90deg, transparent, rgba(116, 82, 229, 0.86), transparent);
  transform: rotate(9deg);
  opacity: 0.08;
}

.saas-hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  width: 100%;
  grid-template-columns: minmax(500px, 44%) minmax(0, 56%);
  align-items: center;
  gap: 0;
  padding: 48px var(--saas-fluid-gutter) 58px;
}

.saas-hero-copy {
  position: relative;
  z-index: 3;
  min-width: 0;
  width: 100%;
  max-width: 760px;
}

.saas-eyebrow,
.saas-kicker {
  margin: 0;
  color: var(--saas-cyan);
  font-size: 12px;
  font-weight: 760;
  letter-spacing: 0;
  line-height: 1.2;
  text-transform: uppercase;
}

.saas-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 32px;
  padding: 0 12px;
  border: 1px solid rgba(101, 234, 214, 0.19);
  border-radius: 999px;
  background: rgba(101, 234, 214, 0.065);
}

.saas-live-dot {
  position: relative;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--saas-cyan);
  box-shadow: 0 0 14px rgba(101, 234, 214, 0.72);
}

.saas-live-dot::after {
  content: "";
  position: absolute;
  inset: -5px;
  border: 1px solid rgba(101, 234, 214, 0.5);
  border-radius: 50%;
  animation: saas-live-pulse 2s ease-out infinite;
}

.saas-hero h1 {
  max-width: 760px;
  margin: 22px 0 0;
  color: #f4f8ff;
  font-size: 68px;
  font-weight: 850;
  letter-spacing: 0;
  line-height: 1.02;
}

.saas-title-copy {
  display: block;
}

.saas-title-highlight {
  display: block;
  width: fit-content;
  max-width: 100%;
  color: transparent;
  background: linear-gradient(96deg, #14e7ed 4%, #1b9cff 51%, #8c5bff 96%);
  background-clip: text;
  -webkit-background-clip: text;
  filter: drop-shadow(0 9px 30px rgba(31, 139, 255, 0.15));
}

.saas-hero h1 strong {
  color: var(--saas-cyan);
}

.saas-hero-lead {
  max-width: 660px;
  margin: 24px 0 0;
  color: #aebdd0;
  font-size: 18px;
  font-weight: 460;
  line-height: 1.66;
}

.saas-hero-actions,
.final-cta-content > div {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.saas-button {
  --magnetic-x: 0px;
  --magnetic-y: 0px;
  position: relative;
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  padding: 0 20px;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: 7px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 780;
  line-height: 1;
  text-decoration: none;
  transform: translate3d(var(--magnetic-x), var(--magnetic-y), 0);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease,
    box-shadow 180ms ease;
}

.saas-button::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, transparent 18%, rgba(255, 255, 255, 0.28) 48%, transparent 78%);
  transform: translateX(-130%);
  transition: transform 520ms ease;
}

.saas-button:hover::before {
  transform: translateX(130%);
}

.saas-button.is-primary {
  border-color: rgba(98, 235, 255, 0.68);
  background: linear-gradient(108deg, #12cad6 0%, #168ce8 56%, #8055f5 100%);
  color: #ffffff;
  box-shadow:
    0 0 0 1px rgba(24, 207, 230, 0.14),
    0 0 24px rgba(27, 195, 226, 0.27),
    18px 0 34px rgba(109, 69, 241, 0.19);
}

.saas-button.is-primary:hover {
  box-shadow:
    0 0 0 1px rgba(64, 229, 246, 0.24),
    0 0 32px rgba(27, 195, 226, 0.36),
    18px 0 42px rgba(109, 69, 241, 0.25);
  transform: translate3d(var(--magnetic-x), calc(var(--magnetic-y) - 2px), 0);
}

.saas-button.is-secondary {
  border-color: rgba(45, 193, 236, 0.4);
  background: rgba(3, 15, 28, 0.64);
  color: #dbe7f7;
  backdrop-filter: blur(12px);
}

.saas-button.is-secondary:hover {
  border-color: rgba(65, 224, 239, 0.68);
  background: rgba(21, 116, 158, 0.15);
  box-shadow: 0 0 24px rgba(32, 190, 224, 0.13);
}

.saas-button svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.saas-proof-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-top: 28px;
}

.saas-proof-row > span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 0 10px;
  border: 1px solid rgba(77, 142, 195, 0.12);
  border-radius: 5px;
  background: rgba(6, 18, 32, 0.62);
  color: #a5b5c9;
  font-size: 12px;
  font-weight: 620;
  white-space: nowrap;
}

.saas-proof-row i {
  width: 23px;
  height: 23px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(148, 174, 211, 0.18);
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.04);
  color: #ffffff;
  font-size: 10px;
  font-style: normal;
  font-weight: 860;
}

.saas-proof-row .is-ga {
  color: #76a8ff;
}

.saas-proof-row .is-ym {
  color: #ff8a78;
}

.saas-proof-row .is-price {
  color: #72e2ae;
}

.saas-analytics-stage {
  position: relative;
  width: 100%;
  min-height: 614px;
  min-width: 0;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}

.saas-globe-stage {
  position: absolute;
  z-index: 0;
  top: 50%;
  right: calc(var(--saas-fluid-gutter) * -0.5);
  width: calc(100% + (var(--saas-fluid-gutter) * 0.5));
  aspect-ratio: 1;
  overflow: visible;
  pointer-events: auto;
  transform: translateY(-50%);
  background: transparent;
  filter: none;
}

.saas-globe-live-cards {
  position: absolute;
  z-index: 5;
  inset: 0;
  pointer-events: none;
}

.saas-globe-live-card {
  position: absolute;
  width: 142px;
  min-height: 96px;
  display: grid;
  align-content: center;
  gap: 7px;
  padding: 13px 14px;
  border: 1px solid rgba(34, 161, 213, 0.34);
  border-radius: 7px;
  background:
    linear-gradient(145deg, rgba(5, 18, 33, 0.94), rgba(2, 10, 20, 0.88));
  box-shadow:
    0 18px 42px rgba(0, 0, 0, 0.25),
    inset 0 1px 0 rgba(130, 218, 255, 0.04);
  backdrop-filter: blur(12px);
  opacity: 0;
  transform: translateY(8px);
  transition:
    opacity 460ms ease,
    transform 600ms cubic-bezier(0.22, 1, 0.36, 1);
}

.saas-globe-live-card::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #31eaf2;
  box-shadow: 0 0 14px rgba(49, 234, 242, 0.9);
  transform: translateY(-50%);
}

.saas-globe-live-card span {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #d7e4f3;
  font-size: 11px;
  font-weight: 690;
  line-height: 1.2;
}

.saas-globe-live-card span i {
  flex: 0 0 auto;
  font-style: normal;
}

.saas-country-flag {
  width: 18px;
  height: 12px;
  display: inline-grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 2px;
  background: #15324f;
  color: #6ce9ef;
  font-size: 8px;
  line-height: 1;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.saas-country-flag.is-ru {
  background: linear-gradient(#ffffff 0 33.33%, #1c57b7 33.33% 66.66%, #d83c46 66.66%);
}

.saas-country-flag.is-de {
  background: linear-gradient(#171717 0 33.33%, #d9343e 33.33% 66.66%, #f3c83e 66.66%);
}

.saas-country-flag.is-us {
  background:
    linear-gradient(90deg, #315293 0 42%, transparent 42%),
    repeating-linear-gradient(#dc3545 0 1.5px, #f7f8fb 1.5px 3px);
}

.saas-country-flag.is-se {
  background:
    linear-gradient(90deg, transparent 0 29%, #ffd84d 29% 39%, transparent 39%),
    linear-gradient(transparent 0 42%, #ffd84d 42% 58%, transparent 58%),
    #1767a5;
}

.saas-country-flag.is-es {
  background: linear-gradient(#b91f31 0 25%, #f0c83c 25% 75%, #b91f31 75%);
}

.saas-country-flag.is-md {
  background: linear-gradient(90deg, #3154ad 0 33.33%, #f1ca3a 33.33% 66.66%, #c93d46 66.66%);
}

.saas-country-flag.is-jp {
  background: radial-gradient(circle at center, #d63b4b 0 35%, transparent 38%), #f7f8fb;
}

.saas-country-flag.is-br {
  background: radial-gradient(circle at center, #2d5bb4 0 25%, #f4cf45 27% 52%, transparent 54%), #24915b;
}

.saas-country-flag.is-au {
  background:
    radial-gradient(circle at 72% 32%, #ffffff 0 7%, transparent 8%),
    radial-gradient(circle at 61% 68%, #ffffff 0 6%, transparent 7%),
    #193d80;
}

.saas-country-flag.is-ca {
  background: linear-gradient(90deg, #d83b48 0 25%, #ffffff 25% 75%, #d83b48 75%);
}

.saas-country-flag.is-il {
  background: linear-gradient(#ffffff 0 20%, #3276c5 20% 32%, #ffffff 32% 68%, #3276c5 68% 80%, #ffffff 80%);
}

.saas-country-flag.is-ae {
  background:
    linear-gradient(90deg, #d83d48 0 28%, transparent 28%),
    linear-gradient(#23955a 0 33.33%, #ffffff 33.33% 66.66%, #20252d 66.66%);
}

.saas-globe-live-card strong {
  color: #ffffff;
  font-size: 26px;
  font-weight: 510;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.saas-globe-live-card small {
  color: #8da0b7;
  font-size: 10px;
  font-weight: 520;
  line-height: 1.2;
}

.saas-globe-stage.is-globe-visible .saas-globe-live-card {
  opacity: 1;
  transform: translateY(0);
}

.saas-globe-live-card.is-slot-1 {
  top: calc((100% - 614px) / 2 + 36px);
  left: 0;
  transition-delay: 420ms;
}

.saas-globe-live-card.is-slot-2 {
  top: calc((100% - 614px) / 2 + 36px);
  right: 1%;
  transition-delay: 500ms;
}

.saas-globe-live-card.is-slot-3 {
  top: 48%;
  left: 2%;
  transition-delay: 580ms;
}

.saas-globe-live-card.is-slot-4 {
  top: 45%;
  right: 0;
  transition-delay: 660ms;
}

.saas-globe-live-card.is-slot-5 {
  right: 6%;
  bottom: calc((100% - 614px) / 2 + 36px);
  transition-delay: 740ms;
}

.saas-globe-live-card.is-slot-1::after,
.saas-globe-live-card.is-slot-3::after {
  right: -4px;
}

.saas-globe-live-card.is-slot-2::after,
.saas-globe-live-card.is-slot-4::after,
.saas-globe-live-card.is-slot-5::after {
  left: -4px;
}

.saas-globe-stage.is-intro-loading .saas-globe-readout,
.saas-globe-stage.is-intro-loading .saas-globe-hint,
.saas-globe-stage.is-intro-loading .saas-globe-credit {
  opacity: 0;
}

.saas-globe-stage.is-globe-visible .saas-globe-readout,
.saas-globe-stage.is-globe-visible .saas-globe-hint,
.saas-globe-stage.is-globe-visible .saas-globe-credit {
  opacity: 1;
}

.saas-globe-stage::before {
  display: none;
}

.saas-globe-stage::after {
  display: none;
}

.saas-globe-readout {
  position: absolute;
  z-index: 4;
  right: 5%;
  bottom: 17%;
  max-width: 390px;
  display: grid;
  gap: 5px;
  padding: 2px 0 2px 15px;
  border-left: 2px solid rgba(70, 222, 231, 0.72);
  background: transparent;
  filter: drop-shadow(0 9px 22px rgba(0, 5, 14, 0.68));
  pointer-events: none;
  opacity: 0;
  transition: opacity 500ms ease 520ms;
}

.saas-globe-intro-status {
  position: absolute;
  z-index: 12;
  top: 8%;
  left: 50%;
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 0 12px;
  border: 1px solid rgba(121, 185, 221, 0.2);
  border-radius: 6px;
  background: rgba(7, 15, 25, 0.72);
  box-shadow:
    0 14px 38px rgba(0, 0, 0, 0.26),
    0 0 32px rgba(68, 196, 211, 0.06);
  color: #a9bbcf;
  font-size: 10px;
  font-weight: 680;
  white-space: nowrap;
  pointer-events: none;
  backdrop-filter: blur(14px);
  opacity: 0;
  transform: translate3d(-50%, -8px, 0);
  transition:
    opacity 320ms ease,
    transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.saas-globe-stage.is-intro-running .saas-globe-intro-status,
.saas-globe-stage.is-intro-fallback .saas-globe-intro-status {
  opacity: 1;
  transform: translate3d(-50%, 0, 0);
}

.saas-globe-stage.is-intro-complete .saas-globe-intro-status {
  opacity: 0;
  transform: translate3d(-50%, -5px, 0);
}

.saas-globe-intro-status i {
  position: relative;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #68e8d7;
  box-shadow: 0 0 13px rgba(104, 232, 215, 0.74);
}

.saas-globe-intro-status i::after {
  content: "";
  position: absolute;
  inset: -5px;
  border: 1px solid rgba(104, 232, 215, 0.32);
  border-radius: 50%;
  animation: saas-live-pulse 1.7s ease-out infinite;
}

.saas-globe-readout > span {
  color: #91a9c3;
  font-size: 10px;
  font-weight: 760;
  letter-spacing: 0;
  text-transform: uppercase;
}

.saas-globe-readout strong {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #e4eef9;
  font-size: 12px;
  font-weight: 760;
  white-space: nowrap;
}

.saas-globe-readout strong > span {
  color: inherit;
  font: inherit;
}

.saas-globe-readout i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #70ebc7;
  box-shadow: 0 0 12px rgba(112, 235, 199, 0.85);
}

.saas-globe-readout small {
  max-width: 360px;
  color: #8196ae;
  font-size: 10px;
  font-weight: 520;
  line-height: 1.45;
}

.saas-globe-hint {
  position: absolute;
  z-index: 4;
  right: 9%;
  bottom: 13%;
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border: 1px solid rgba(131, 165, 205, 0.13);
  border-radius: 5px;
  background: rgba(8, 16, 27, 0.58);
  color: #72869f;
  font-size: 9px;
  font-weight: 650;
  pointer-events: none;
  backdrop-filter: blur(10px);
  opacity: 0;
  transition: opacity 500ms ease 700ms;
}

.saas-globe-credit {
  position: absolute;
  z-index: 4;
  bottom: 8%;
  left: 8%;
  color: rgba(151, 173, 200, 0.56);
  font-size: 8px;
  font-style: normal;
  font-weight: 560;
  pointer-events: none;
  opacity: 0;
  transition: opacity 500ms ease 700ms;
}

.saas-globe-stage.is-webgl-fallback::before {
  opacity: 0.8;
  border: 1px solid rgba(101, 234, 214, 0.28);
}

.saas-dashboard[hidden],
.saas-orbit-label[hidden] {
  display: none !important;
}

.saas-dashboard {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  --glare-x: 50%;
  --glare-y: 50%;
  position: relative;
  z-index: 2;
  width: 94%;
  min-height: 500px;
  padding: 22px;
  overflow: hidden;
  border: 1px solid rgba(132, 164, 205, 0.22);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(23, 36, 55, 0.9), rgba(13, 23, 37, 0.93));
  box-shadow:
    0 42px 90px rgba(0, 0, 0, 0.38),
    -24px -22px 90px rgba(55, 179, 205, 0.08),
    0 0 0 1px rgba(255, 255, 255, 0.025) inset;
  transform: rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
  transform-style: preserve-3d;
  transition: transform 180ms ease, border-color 180ms ease;
}

.saas-dashboard:hover {
  border-color: rgba(101, 234, 214, 0.32);
}

.saas-dashboard-glare {
  position: absolute;
  inset: 0;
  opacity: 0;
  background: radial-gradient(circle at var(--glare-x) var(--glare-y), rgba(255, 255, 255, 0.14), transparent 34%);
  transition: opacity 180ms ease;
  pointer-events: none;
}

.saas-dashboard:hover .saas-dashboard-glare {
  opacity: 1;
}

.saas-dashboard-head,
.saas-event-stream-head,
.saas-dashboard-foot,
.pricing-calculator-head,
.reports-dashboard-head,
.visit-builder-toolbar,
.builder-flow-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.saas-dashboard-head > div,
.pricing-calculator-head > div,
.reports-dashboard-head > div {
  display: grid;
  gap: 5px;
}

.saas-dashboard-head span,
.saas-dashboard-head strong {
  line-height: 1.1;
}

.saas-dashboard-product {
  color: #8295ad;
  font-size: 11px;
  font-weight: 680;
}

.saas-dashboard-head strong {
  color: #eef5ff;
  font-size: 16px;
  font-weight: 780;
}

.saas-realtime-pill,
.builder-status,
.calculator-badge {
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 0 9px;
  border: 1px solid rgba(99, 213, 164, 0.2);
  border-radius: 999px;
  background: rgba(99, 213, 164, 0.08);
  color: #80e3b7;
  font-size: 10px;
  font-weight: 820;
}

.saas-realtime-pill i,
.builder-status i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #6ee7b7;
  box-shadow: 0 0 12px rgba(110, 231, 183, 0.75);
}

.saas-dashboard-summary {
  display: grid;
  grid-template-columns: 135px minmax(0, 1fr);
  align-items: end;
  gap: 20px;
  margin-top: 24px;
  padding: 18px;
  border: 1px solid rgba(148, 174, 211, 0.12);
  border-radius: 7px;
  background: rgba(5, 12, 21, 0.28);
}

.saas-live-number {
  display: grid;
  gap: 4px;
}

.saas-live-number > span {
  color: #8fa1b8;
  font-size: 11px;
}

.saas-live-number strong {
  color: #f6f9ff;
  font-size: 54px;
  font-weight: 820;
  line-height: 0.98;
  font-variant-numeric: tabular-nums;
}

.saas-live-number small {
  color: #8294aa;
  font-size: 10px;
}

.saas-live-number small b {
  color: #6ee7b7;
}

.saas-mini-chart {
  min-width: 0;
  height: 112px;
}

.saas-mini-chart svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.saas-mini-chart .chart-line {
  stroke: var(--saas-cyan);
  stroke-width: 2.4;
  stroke-linecap: round;
  filter: drop-shadow(0 0 7px rgba(101, 234, 214, 0.34));
  stroke-dasharray: 520;
  stroke-dashoffset: 520;
  animation: saas-chart-draw 2.1s 0.35s ease forwards;
}

.saas-mini-chart .chart-point {
  fill: #dffff9;
  stroke: var(--saas-cyan);
  stroke-width: 2;
  opacity: 0;
  animation: saas-point-in 300ms ease forwards;
}

.saas-mini-chart .p1 { animation-delay: 1.15s; }
.saas-mini-chart .p2 { animation-delay: 1.5s; }
.saas-mini-chart .p3 { animation-delay: 1.9s; }

.saas-dashboard-dimensions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-top: 10px;
}

.saas-dashboard-dimensions > div {
  min-width: 0;
  display: grid;
  gap: 5px;
  padding: 12px;
  border: 1px solid rgba(148, 174, 211, 0.11);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.025);
}

.saas-dashboard-dimensions span {
  color: #788da7;
  font-size: 9px;
  font-weight: 680;
  text-transform: uppercase;
}

.saas-dashboard-dimensions strong {
  overflow: hidden;
  color: #dce7f6;
  font-size: 11px;
  font-weight: 720;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.saas-event-stream {
  margin-top: 10px;
  padding: 14px;
  border: 1px solid rgba(148, 174, 211, 0.11);
  border-radius: 7px;
  background: rgba(5, 11, 19, 0.34);
}

.saas-event-stream-head {
  margin-bottom: 8px;
  color: #8092aa;
  font-size: 9px;
  font-weight: 720;
  text-transform: uppercase;
}

.saas-event-row {
  min-height: 36px;
  display: grid;
  grid-template-columns: 8px minmax(74px, 0.45fr) minmax(0, 1fr) auto;
  align-items: center;
  gap: 9px;
  border-bottom: 1px solid rgba(148, 174, 211, 0.08);
  color: #8396ad;
  font-size: 10px;
}

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

.saas-event-row strong {
  color: #dbe6f6;
  font-size: 10px;
}

.saas-event-row time {
  color: #657990;
}

.event-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--saas-blue);
}

.event-dot.is-scroll { background: var(--saas-violet); }
.event-dot.is-click { background: var(--saas-coral); }

.saas-event-row.is-new {
  animation: saas-event-flash 700ms ease;
}

.saas-dashboard-foot {
  margin-top: 16px;
  color: #64788f;
  font-size: 9px;
}

.saas-visitor-stack {
  display: flex;
  align-items: center;
}

.saas-visitor-stack span {
  width: 27px;
  height: 27px;
  display: grid;
  place-items: center;
  margin-left: -6px;
  border: 2px solid #142033;
  border-radius: 50%;
  background: #223149;
  color: #cfe0f4;
  font-size: 8px;
  font-weight: 800;
}

.saas-visitor-stack span:first-child {
  margin-left: 0;
}

.saas-orbit-label {
  position: absolute;
  z-index: 3;
  min-height: 33px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 11px;
  border: 1px solid rgba(148, 174, 211, 0.17);
  border-radius: 5px;
  background: rgba(11, 20, 32, 0.88);
  color: #aebed1;
  font-size: 10px;
  font-weight: 680;
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(12px);
  animation: saas-float-label 5s ease-in-out infinite;
}

.saas-orbit-label i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--saas-cyan);
  box-shadow: 0 0 10px rgba(101, 234, 214, 0.7);
}

.saas-orbit-label.is-one {
  right: -28px;
  top: 16%;
}

.saas-orbit-label.is-two {
  left: -36px;
  bottom: 14%;
  animation-delay: -2.4s;
}

.saas-scroll-cue {
  display: none;
}

.saas-scroll-cue span {
  width: 3px;
  height: 8px;
  border-radius: 999px;
  background: var(--saas-cyan);
  animation: saas-scroll-cue 1.8s ease-in-out infinite;
}

.saas-metrics-section {
  position: relative;
  z-index: 4;
  padding: 0 0 54px;
  background: #0b111b;
}

.saas-metrics {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(148, 174, 211, 0.13);
  border-radius: 8px;
  background: rgba(148, 174, 211, 0.13);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.24);
  transform: translateY(-1px);
}

body.public-home-page .saas-metrics > div,
.saas-metrics > div {
  position: relative;
  min-width: 0;
  min-height: 142px;
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  grid-template-rows: auto auto;
  align-content: center;
  align-items: center;
  column-gap: 12px;
  row-gap: 5px;
  padding: 22px 18px;
  border: 0;
  border-radius: 0;
  background:
    linear-gradient(145deg, rgba(22, 34, 52, 0.98), rgba(15, 25, 39, 0.98));
  box-shadow: none;
}

body.public-home-page .saas-metrics > div::before,
body.public-home-page .saas-metrics > div::after,
.saas-metrics > div::before,
.saas-metrics > div::after {
  display: none;
}

.saas-metric-index {
  position: absolute;
  top: 16px;
  right: 18px;
  margin: 0;
  color: rgba(143, 164, 192, 0.33);
  font-size: 10px;
  font-weight: 780;
}

.saas-metric-icon {
  grid-row: 1 / span 2;
  grid-column: 1;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(31, 221, 236, 0.38);
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(25, 190, 222, 0.16), rgba(4, 16, 29, 0.72) 68%);
  color: #2ee5ee;
  box-shadow:
    0 0 0 7px rgba(20, 131, 173, 0.04),
    0 0 22px rgba(24, 195, 224, 0.12);
}

.saas-metric-icon.is-blue {
  border-color: rgba(73, 146, 255, 0.42);
  color: #56a2ff;
}

.saas-metric-icon.is-violet {
  border-color: rgba(123, 98, 255, 0.42);
  color: #8f79ff;
  box-shadow:
    0 0 0 7px rgba(99, 73, 209, 0.04),
    0 0 22px rgba(108, 79, 222, 0.12);
}

.saas-metric-icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

body.public-home-page .saas-metrics > div > strong,
.saas-metrics > div > strong {
  grid-column: 2;
  margin: 0;
  color: #f4f8ff;
  font-size: 36px;
  font-weight: 820;
  letter-spacing: 0;
  line-height: 1;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

body.public-home-page .saas-metrics > div:nth-child(2) > strong,
.saas-metrics > div:nth-child(2) > strong {
  font-size: 28px;
}

body.public-home-page .saas-metrics > div > span:last-child,
.saas-metrics > div > span:last-child {
  grid-column: 2;
  min-height: 0;
  margin: 0;
  color: #8fa2b9;
  font-size: 13px;
  font-weight: 590;
  line-height: 1.3;
}

.saas-metrics > div:nth-child(1) strong { color: var(--saas-cyan); }
.saas-metrics > div:nth-child(2) strong { color: #d9e7fb; }
.saas-metrics > div:nth-child(3) strong { color: #81d9ac; }
.saas-metrics > div:nth-child(4) strong { color: #b3a4ff; }
.saas-metrics > div:nth-child(5) strong { color: #d9e7fb; }
.saas-metrics > div:nth-child(6) strong { color: var(--saas-cyan); }

.saas-enhanced [data-reveal],
.saas-enhanced [data-reveal-title] {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 700ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

.saas-enhanced [data-reveal-title] {
  transform: translateY(28px);
  transition-duration: 850ms;
}

.saas-enhanced [data-reveal].is-visible,
.saas-enhanced [data-reveal-title].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes saas-live-pulse {
  0% { opacity: 0.72; transform: scale(0.56); }
  80%, 100% { opacity: 0; transform: scale(1.7); }
}

@keyframes saas-chart-draw {
  to { stroke-dashoffset: 0; }
}

@keyframes saas-point-in {
  from { opacity: 0; transform: scale(0.3); transform-origin: center; }
  to { opacity: 1; transform: scale(1); transform-origin: center; }
}

@keyframes saas-event-flash {
  0% { background: rgba(101, 234, 214, 0.18); transform: translateX(6px); }
  100% { background: transparent; transform: translateX(0); }
}

@keyframes saas-float-label {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(0, -8px, 0); }
}

@keyframes saas-scroll-cue {
  0% { opacity: 0; transform: translateY(0); }
  30% { opacity: 1; }
  75%, 100% { opacity: 0; transform: translateY(18px); }
}

.saas-section {
  position: relative;
  padding: 112px 0;
  background: var(--saas-bg);
}

.saas-section:nth-of-type(2n) {
  background: var(--saas-bg-soft);
}

.saas-section-heading {
  max-width: 780px;
  margin-bottom: 48px;
}

.saas-section-heading.is-centered {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.saas-section-heading .saas-kicker {
  margin-bottom: 14px;
}

.saas-section-heading h2,
.pricing-copy h2,
.final-cta-content h2 {
  margin: 0;
  color: var(--saas-text);
  font-size: 44px;
  font-weight: 810;
  letter-spacing: 0;
  line-height: 1.08;
  text-wrap: balance;
}

.saas-section-heading > p:not(.saas-kicker),
.pricing-copy > p,
.final-cta-content > p:not(.saas-kicker) {
  max-width: 720px;
  margin: 18px 0 0;
  color: var(--saas-muted);
  font-size: 16px;
  line-height: 1.68;
}

.saas-section-heading.is-centered > p:not(.saas-kicker) {
  margin-right: auto;
  margin-left: auto;
}

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

.saas-feature-card {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  position: relative;
  min-width: 0;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  padding: 22px;
  overflow: hidden;
  border: 1px solid rgba(148, 174, 211, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(148deg, rgba(22, 34, 52, 0.94), rgba(13, 22, 35, 0.98));
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.16);
  transform: rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
  transform-style: preserve-3d;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.saas-feature-card:hover {
  border-color: rgba(101, 234, 214, 0.29);
  box-shadow: 0 30px 66px rgba(0, 0, 0, 0.24);
}

.feature-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.feature-card-top span,
.feature-card-top small {
  color: #758ba5;
  font-size: 10px;
  font-weight: 760;
  line-height: 1;
  text-transform: uppercase;
}

.feature-card-top span {
  color: var(--saas-cyan);
}

.feature-visual {
  position: relative;
  height: 132px;
  margin: 22px 0 20px;
  overflow: hidden;
  border: 1px solid rgba(148, 174, 211, 0.11);
  border-radius: 6px;
  background:
    linear-gradient(150deg, rgba(7, 15, 25, 0.65), rgba(18, 31, 48, 0.66));
}

.saas-feature-card h3 {
  margin: auto 0 0;
  color: #edf4ff;
  font-size: 20px;
  font-weight: 760;
  letter-spacing: 0;
  line-height: 1.2;
}

.saas-feature-card p {
  margin: 10px 0 0;
  color: #8ea1b8;
  font-size: 13px;
  line-height: 1.58;
}

.source-visual {
  display: grid;
  grid-template-columns: repeat(3, 46px);
  place-content: center;
  gap: 16px;
}

.source-chip {
  position: relative;
  z-index: 2;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(148, 174, 211, 0.18);
  border-radius: 7px;
  background: #17263a;
  color: #ffffff;
  font-size: 17px;
  font-weight: 860;
  box-shadow: 0 14px 24px rgba(0, 0, 0, 0.2);
}

.source-chip.is-google { color: #71a7ff; }
.source-chip.is-yandex { color: #ff8978; }
.source-chip.is-direct { color: #6ee7b7; }

.source-visual > i {
  position: absolute;
  top: 50%;
  left: 15%;
  right: 15%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(101, 234, 214, 0.5), transparent);
}

.entry-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 0 16px;
}

.entry-visual > span {
  z-index: 2;
  min-width: 42px;
  height: 30px;
  display: grid;
  place-items: center;
  padding: 0 8px;
  border: 1px solid rgba(90, 152, 255, 0.23);
  border-radius: 5px;
  background: #142239;
  color: #a7bee0;
  font-size: 9px;
  font-weight: 700;
}

.entry-visual svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  fill: none;
  stroke: rgba(101, 234, 214, 0.52);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.geo-visual {
  display: grid;
  place-items: center;
}

.geo-visual svg {
  width: 88%;
  height: 88%;
  fill: rgba(90, 152, 255, 0.08);
  stroke: rgba(111, 159, 216, 0.5);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.3;
}

.geo-visual circle {
  fill: var(--saas-cyan);
  stroke: rgba(101, 234, 214, 0.28);
  stroke-width: 7;
}

.geo-visual .geo-route {
  fill: none;
  stroke: var(--saas-coral);
  stroke-dasharray: 4 5;
  stroke-width: 1.5;
}

.device-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
}

.device-desktop {
  position: relative;
  width: 94px;
  height: 58px;
  display: block;
  border: 1px solid rgba(90, 152, 255, 0.48);
  border-radius: 5px;
  background: linear-gradient(145deg, #13243a, #0e1929);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.22);
}

.device-desktop::before {
  content: "";
  position: absolute;
  top: 18px;
  left: 14px;
  width: 50px;
  height: 4px;
  border-radius: 4px;
  background: #5a98ff;
  box-shadow: 0 11px 0 rgba(101, 234, 214, 0.55);
}

.device-desktop::after {
  content: "";
  position: absolute;
  left: 38px;
  bottom: -13px;
  width: 18px;
  height: 12px;
  border-bottom: 2px solid rgba(148, 174, 211, 0.45);
  border-left: 1px solid rgba(148, 174, 211, 0.45);
  border-right: 1px solid rgba(148, 174, 211, 0.45);
}

.device-phone {
  position: relative;
  width: 34px;
  height: 66px;
  display: block;
  border: 1px solid rgba(157, 124, 255, 0.6);
  border-radius: 7px;
  background: #101c2d;
}

.device-phone::before {
  content: "";
  position: absolute;
  top: 9px;
  right: 5px;
  bottom: 10px;
  left: 5px;
  border-radius: 3px;
  background: linear-gradient(160deg, rgba(157, 124, 255, 0.25), rgba(101, 234, 214, 0.12));
}

.device-visual b {
  position: absolute;
  right: 12px;
  bottom: 10px;
  color: #7388a3;
  font-size: 9px;
  font-weight: 680;
}

.behavior-visual {
  display: grid;
  align-content: center;
  gap: 12px;
  padding: 0 30px;
}

.behavior-line {
  width: 74%;
  height: 6px;
  border-radius: 2px;
  background: rgba(148, 174, 211, 0.18);
}

.behavior-line.is-long { width: 92%; }
.behavior-line.is-short { width: 54%; }

.behavior-cursor {
  position: absolute;
  right: 24%;
  bottom: 27%;
  width: 26px;
  height: 26px;
  fill: #e7f3ff;
  stroke: #0d1624;
  stroke-linejoin: round;
  stroke-width: 1.2;
  animation: behavior-cursor-move 4s ease-in-out infinite;
}

.behavior-visual > i {
  position: absolute;
  right: 18%;
  bottom: 22%;
  width: 42px;
  height: 22px;
  border: 1px solid rgba(255, 143, 122, 0.45);
  border-radius: 3px;
  opacity: 0.65;
}

.schedule-visual {
  display: flex;
  align-items: end;
  justify-content: center;
  gap: 8px;
  padding: 26px 22px;
}

.schedule-visual > span {
  width: 12px;
  min-height: 8px;
  border-radius: 3px 3px 1px 1px;
  background: linear-gradient(180deg, var(--saas-cyan), #4c84e8);
  opacity: 0.8;
  transform-origin: bottom;
  animation: schedule-bar 3.2s ease-in-out infinite;
}

.schedule-visual > span:nth-child(2n) { animation-delay: -1.4s; }
.schedule-visual > span:nth-child(3n) { animation-delay: -2.1s; }

.schedule-visual > i {
  position: absolute;
  right: 22px;
  bottom: 15px;
  left: 22px;
  height: 1px;
  background: rgba(148, 174, 211, 0.18);
}

.saas-builder-section {
  overflow: hidden;
  background:
    linear-gradient(180deg, #0c1420, #0b121d);
}

.saas-builder-section::before {
  content: "";
  position: absolute;
  inset: 14% -10% auto;
  height: 260px;
  background: linear-gradient(90deg, transparent, rgba(54, 179, 184, 0.07), rgba(112, 88, 224, 0.06), transparent);
  filter: blur(70px);
  pointer-events: none;
}

.visit-builder {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(148, 174, 211, 0.17);
  border-radius: 8px;
  background: #111b2a;
  box-shadow: 0 38px 90px rgba(0, 0, 0, 0.28);
}

.visit-builder-toolbar {
  min-height: 56px;
  padding: 0 18px;
  border-bottom: 1px solid rgba(148, 174, 211, 0.13);
  background: rgba(8, 15, 25, 0.5);
}

.visit-builder-toolbar > div {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #c8d7e9;
  font-size: 12px;
  font-weight: 720;
}

.visit-builder-toolbar > div i {
  width: 9px;
  height: 9px;
  border: 2px solid var(--saas-cyan);
  border-radius: 50%;
  box-shadow: 0 0 13px rgba(101, 234, 214, 0.5);
}

.visit-builder-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.72fr) minmax(0, 1.28fr);
  min-height: 610px;
}

.builder-controls {
  min-width: 0;
  display: grid;
  align-content: start;
  gap: 18px;
  padding: 24px;
  border-right: 1px solid rgba(148, 174, 211, 0.13);
  background: rgba(10, 17, 28, 0.3);
}

.builder-control-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.builder-controls label,
.builder-range-control,
.builder-device-control {
  min-width: 0;
}

.builder-controls label {
  display: grid;
  gap: 7px;
}

.builder-controls label > span,
.builder-device-control legend,
.builder-action-chips > span {
  color: #8396ad;
  font-size: 10px;
  font-weight: 720;
  line-height: 1.2;
  text-transform: uppercase;
}

.builder-controls select,
.builder-controls input[type="text"] {
  width: 100%;
  min-width: 0;
  height: 42px;
  padding: 0 12px;
  border: 1px solid rgba(148, 174, 211, 0.16);
  border-radius: 6px;
  outline: 0;
  background: #0d1725;
  color: #dce7f5;
  font: inherit;
  font-size: 12px;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.builder-controls select:focus,
.builder-controls input[type="text"]:focus {
  border-color: rgba(101, 234, 214, 0.48);
  box-shadow: 0 0 0 3px rgba(101, 234, 214, 0.08);
}

.builder-device-control {
  display: grid;
  grid-template-columns: 1fr 1fr minmax(110px, 1.3fr);
  gap: 8px;
  margin: 0;
  padding: 0;
  border: 0;
}

.builder-device-control legend {
  grid-column: 1 / -1;
  margin-bottom: 1px;
}

.builder-device-control button {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border: 1px solid rgba(148, 174, 211, 0.15);
  border-radius: 6px;
  background: #0d1725;
  color: #8295ad;
  font-size: 11px;
  font-weight: 720;
  cursor: pointer;
}

.builder-device-control button svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.builder-device-control button.is-active {
  border-color: rgba(101, 234, 214, 0.38);
  background: rgba(101, 234, 214, 0.08);
  color: var(--saas-cyan);
}

.builder-range-control > span {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.builder-range-control > span strong {
  color: #dbe7f7;
  font-size: 11px;
  font-weight: 760;
  text-transform: none;
}

.builder-controls input[type="range"],
.calculator-slider input[type="range"] {
  --range-fill: 40%;
  --range-thumb-radius: 9px;
  width: 100%;
  height: 5px;
  margin: 7px 0;
  padding-inline: 0;
  border: 0;
  border-radius: 999px;
  outline: 0;
  appearance: none;
  background:
    linear-gradient(90deg, var(--saas-cyan) 0 var(--range-fill), rgba(148, 174, 211, 0.15) var(--range-fill) 100%);
}

.builder-controls input[type="range"]::-webkit-slider-thumb,
.calculator-slider input[type="range"]::-webkit-slider-thumb {
  width: 18px;
  height: 18px;
  appearance: none;
  border: 3px solid #142235;
  border-radius: 50%;
  background: var(--saas-cyan);
  box-shadow: 0 0 0 1px rgba(101, 234, 214, 0.72), 0 5px 14px rgba(0, 0, 0, 0.3);
  cursor: grab;
}

.builder-controls input[type="range"]::-moz-range-thumb,
.calculator-slider input[type="range"]::-moz-range-thumb {
  width: 14px;
  height: 14px;
  border: 3px solid #142235;
  border-radius: 50%;
  background: var(--saas-cyan);
  box-shadow: 0 0 0 1px rgba(101, 234, 214, 0.72), 0 5px 14px rgba(0, 0, 0, 0.3);
  cursor: grab;
}

.builder-action-chips {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.builder-action-chips > span {
  width: 100%;
}

.builder-action-chips label {
  display: block;
  cursor: pointer;
}

.builder-action-chips input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.builder-action-chips i {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border: 1px solid rgba(148, 174, 211, 0.15);
  border-radius: 999px;
  background: #0d1725;
  color: #8194ac;
  font-size: 10px;
  font-style: normal;
  font-weight: 700;
}

.builder-action-chips input:checked + i {
  border-color: rgba(90, 152, 255, 0.34);
  background: rgba(90, 152, 255, 0.11);
  color: #afcaff;
}

.builder-flow {
  min-width: 0;
  padding: 24px;
  overflow: hidden;
  background:
    linear-gradient(rgba(106, 139, 181, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(106, 139, 181, 0.045) 1px, transparent 1px),
    #101a29;
  background-size: 34px 34px;
}

.builder-flow-head > span {
  color: #e0e9f6;
  font-size: 12px;
  font-weight: 740;
}

.builder-flow-head > strong {
  max-width: 58%;
  overflow: hidden;
  color: #7287a0;
  font-size: 10px;
  font-weight: 620;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.builder-browser-frame {
  margin-top: 20px;
  overflow: hidden;
  border: 1px solid rgba(148, 174, 211, 0.16);
  border-radius: 7px;
  background: #0b1421;
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.22);
}

.builder-browser-bar {
  min-height: 38px;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 12px;
  border-bottom: 1px solid rgba(148, 174, 211, 0.12);
  background: #162235;
}

.builder-browser-bar i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ff8174;
}

.builder-browser-bar i:nth-child(2) { background: #f6c85f; }
.builder-browser-bar i:nth-child(3) { background: #65d39d; }

.builder-browser-bar span {
  min-width: 0;
  max-width: 62%;
  height: 22px;
  display: flex;
  align-items: center;
  margin-left: 8px;
  padding: 0 10px;
  overflow: hidden;
  border-radius: 4px;
  background: #0d1725;
  color: #6f849d;
  font-size: 9px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.builder-page-preview {
  position: relative;
  height: 238px;
  overflow: hidden;
  background:
    linear-gradient(130deg, rgba(22, 41, 61, 0.8), rgba(11, 20, 32, 0.98));
}

.builder-page-nav {
  position: absolute;
  top: 18px;
  right: 20px;
  left: 20px;
  height: 18px;
  border-radius: 3px;
  background:
    linear-gradient(90deg, rgba(101, 234, 214, 0.7) 0 12%, transparent 12% 58%, rgba(148, 174, 211, 0.22) 58% 66%, transparent 66% 70%, rgba(148, 174, 211, 0.16) 70% 80%, transparent 80%);
}

.builder-page-copy {
  position: absolute;
  top: 70px;
  left: 38px;
  width: 42%;
  display: grid;
  gap: 12px;
}

.builder-page-copy span {
  height: 7px;
  border-radius: 2px;
  background: rgba(148, 174, 211, 0.2);
}

.builder-page-copy span:first-child {
  width: 74%;
  height: 15px;
  background: rgba(231, 241, 254, 0.8);
}

.builder-page-copy span:last-child {
  width: 68%;
}

.builder-page-chart {
  position: absolute;
  right: 38px;
  bottom: 35px;
  width: 38%;
  height: 110px;
  display: flex;
  align-items: end;
  justify-content: center;
  gap: 8px;
  padding: 12px;
  border: 1px solid rgba(148, 174, 211, 0.12);
  border-radius: 5px;
  background: rgba(4, 10, 18, 0.24);
}

.builder-page-chart i {
  width: 13%;
  border-radius: 2px 2px 0 0;
  background: linear-gradient(180deg, var(--saas-cyan), #4d75db);
  opacity: 0.76;
}

.builder-page-chart i:nth-child(1) { height: 30%; }
.builder-page-chart i:nth-child(2) { height: 58%; }
.builder-page-chart i:nth-child(3) { height: 44%; }
.builder-page-chart i:nth-child(4) { height: 82%; }
.builder-page-chart i:nth-child(5) { height: 68%; }

.builder-page-pointer {
  position: absolute;
  top: 98px;
  left: 45%;
  width: 18px;
  height: 24px;
  clip-path: polygon(0 0, 100% 66%, 57% 70%, 43% 100%);
  background: #f4f8ff;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.35));
  animation: builder-pointer 5s ease-in-out infinite;
}

.builder-route {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
  margin-top: 22px;
  padding-top: 24px;
}

.builder-route-line {
  position: absolute;
  top: 14px;
  left: 9%;
  right: 9%;
  height: 2px;
  overflow: hidden;
  background: rgba(148, 174, 211, 0.15);
}

.builder-route-line span {
  display: block;
  width: 26%;
  height: 100%;
  background: linear-gradient(90deg, transparent, var(--saas-cyan), transparent);
  animation: builder-route-packet 3s linear infinite;
}

.builder-route-node {
  position: relative;
  min-width: 0;
  display: grid;
  justify-items: center;
  gap: 5px;
  text-align: center;
  transition: opacity 180ms ease, transform 180ms ease;
}

.builder-route-node.is-disabled {
  opacity: 0.28;
  transform: scale(0.96);
}

.builder-route-node i {
  position: absolute;
  top: -17px;
  width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
  border: 2px solid #111c2b;
  border-radius: 50%;
  background: #527fc8;
  color: #ffffff;
  font-size: 6px;
  font-style: normal;
  font-weight: 800;
  box-shadow: 0 0 0 1px rgba(90, 152, 255, 0.45);
}

.builder-route-node.is-source i { background: var(--saas-cyan); color: #07131f; }
.builder-route-node.is-event i { background: var(--saas-violet); }

.builder-route-node strong,
.builder-route-node span {
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.builder-route-node strong {
  color: #cbd9eb;
  font-size: 9px;
  font-weight: 720;
}

.builder-route-node span {
  color: #657a93;
  font-size: 8px;
}

@keyframes behavior-cursor-move {
  0%, 100% { transform: translate(0, 0); }
  45% { transform: translate(-44px, -27px); }
  60% { transform: translate(-38px, -18px) scale(0.92); }
}

@keyframes schedule-bar {
  0%, 100% { transform: scaleY(0.86); opacity: 0.72; }
  50% { transform: scaleY(1); opacity: 0.96; }
}

@keyframes builder-pointer {
  0%, 100% { transform: translate(0, 0); }
  28% { transform: translate(52px, 34px); }
  52% { transform: translate(84px, 65px) scale(0.9); }
  74% { transform: translate(-24px, 82px); }
}

@keyframes builder-route-packet {
  from { transform: translateX(-120%); }
  to { transform: translateX(430%); }
}

.saas-reports-section {
  overflow: hidden;
  background:
    linear-gradient(180deg, #0b111b, #0d1623 54%, #0b111b);
}

.saas-reports-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(560px, 1.28fr);
  align-items: center;
  gap: 68px;
}

.saas-reports-copy .saas-section-heading {
  margin-bottom: 32px;
}

.report-dimension-list {
  display: grid;
  gap: 2px;
}

.report-dimension-list > div {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  min-height: 66px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(148, 174, 211, 0.1);
}

.report-dimension-list > div > span {
  color: var(--saas-cyan);
  font-size: 10px;
  font-weight: 760;
}

.report-dimension-list > div > div {
  min-width: 0;
  display: grid;
  gap: 5px;
}

.report-dimension-list strong {
  color: #dce8f7;
  font-size: 13px;
  font-weight: 730;
}

.report-dimension-list small {
  overflow: hidden;
  color: #7489a3;
  font-size: 10px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.reports-dashboard {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  min-width: 0;
  padding: 20px;
  border: 1px solid rgba(148, 174, 211, 0.17);
  border-radius: 8px;
  background: linear-gradient(145deg, #172338, #101a2a);
  box-shadow: 0 38px 90px rgba(0, 0, 0, 0.32);
  transform: rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
  transform-style: preserve-3d;
  transition: transform 180ms ease, border-color 180ms ease;
}

.reports-dashboard:hover {
  border-color: rgba(157, 124, 255, 0.32);
}

.reports-dashboard-head span,
.reports-dashboard-head strong {
  line-height: 1.1;
}

.reports-dashboard-head span {
  color: #e2ebf8;
  font-size: 13px;
  font-weight: 750;
}

.reports-dashboard-head strong {
  color: #7388a2;
  font-size: 9px;
  font-weight: 620;
}

.reports-dashboard-head button {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(148, 174, 211, 0.15);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.025);
  color: #8fa2b9;
}

.reports-dashboard-head svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.reports-kpis {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-top: 18px;
}

.reports-kpis > div {
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 5px 8px;
  padding: 12px;
  border: 1px solid rgba(148, 174, 211, 0.11);
  border-radius: 6px;
  background: rgba(7, 14, 24, 0.24);
}

.reports-kpis span {
  grid-column: 1 / -1;
  overflow: hidden;
  color: #7f93aa;
  font-size: 9px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.reports-kpis strong {
  color: #edf4ff;
  font-size: 19px;
  font-weight: 780;
  font-variant-numeric: tabular-nums;
}

.reports-kpis small {
  align-self: end;
  color: #6ee7b7;
  font-size: 8px;
  font-weight: 720;
}

.reports-chart {
  height: 230px;
  margin-top: 12px;
  padding: 16px 10px 0;
  border: 1px solid rgba(148, 174, 211, 0.11);
  border-radius: 6px;
  background: rgba(7, 14, 24, 0.26);
}

.reports-chart svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.report-grid {
  fill: none;
  stroke: rgba(148, 174, 211, 0.1);
  stroke-width: 1;
}

.report-area {
  fill: url(#reportArea);
}

.report-line {
  fill: none;
  stroke: #8d83ff;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.5;
  filter: drop-shadow(0 0 7px rgba(141, 131, 255, 0.4));
  stroke-dasharray: 980;
  stroke-dashoffset: 980;
}

.reports-dashboard.is-visible .report-line {
  animation: reports-line-draw 2.3s 0.2s ease forwards;
}

.reports-chart circle {
  fill: #e8e5ff;
  stroke: #8d83ff;
  stroke-width: 2;
}

.reports-breakdown {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr 0.92fr;
  gap: 8px;
  margin-top: 8px;
}

.device-donut,
.country-list,
.event-list {
  min-width: 0;
  min-height: 112px;
  padding: 12px;
  border: 1px solid rgba(148, 174, 211, 0.1);
  border-radius: 6px;
  background: rgba(7, 14, 24, 0.22);
}

.device-donut {
  display: flex;
  align-items: center;
  gap: 12px;
}

.device-donut > div {
  width: 62px;
  height: 62px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, #141f31 0 52%, transparent 53%),
    conic-gradient(var(--saas-blue) 0 68%, var(--saas-violet) 68% 100%);
}

.device-donut > div span {
  color: #eef5ff;
  font-size: 12px;
  font-weight: 780;
}

.device-donut p,
.country-list,
.event-list {
  display: grid;
  align-content: center;
  gap: 7px;
  margin: 0;
}

.device-donut p strong,
.country-list > strong,
.event-list > strong {
  margin-bottom: 2px;
  color: #d9e5f4;
  font-size: 9px;
  font-weight: 760;
  text-transform: uppercase;
}

.device-donut p span,
.country-list span,
.event-list span {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 5px;
  color: #7e92aa;
  font-size: 8px;
}

.device-donut p i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--saas-blue);
}

.device-donut p i.is-mobile {
  background: var(--saas-violet);
}

.country-list span i {
  width: 22px;
  color: #9bb1cc;
  font-size: 7px;
  font-style: normal;
  font-weight: 800;
}

.country-list span b,
.event-list span b {
  margin-left: auto;
  color: #b7c7db;
  font-size: 8px;
  font-weight: 710;
  font-variant-numeric: tabular-nums;
}

.saas-use-cases {
  background: #0d1623;
}

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

.use-case-card {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  position: relative;
  min-width: 0;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  padding: 22px;
  overflow: hidden;
  border: 1px solid rgba(148, 174, 211, 0.14);
  border-radius: 8px;
  background: #111c2b;
  text-decoration: none;
  transform: rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
  transform-style: preserve-3d;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.use-case-card:hover {
  border-color: rgba(101, 234, 214, 0.3);
  box-shadow: 0 30px 64px rgba(0, 0, 0, 0.24);
}

.use-case-code {
  color: var(--saas-cyan);
  font-size: 10px;
  font-weight: 820;
}

.use-case-visual {
  position: relative;
  height: 150px;
  margin: 16px 0 20px;
  overflow: hidden;
  border-radius: 6px;
  background:
    linear-gradient(145deg, rgba(5, 12, 21, 0.7), rgba(20, 33, 51, 0.76));
}

.use-case-card h3 {
  margin: auto 0 0;
  color: #edf4ff;
  font-size: 21px;
  font-weight: 760;
  letter-spacing: 0;
}

.use-case-card p {
  margin: 10px 0 0;
  color: #899db5;
  font-size: 13px;
  line-height: 1.56;
}

.use-case-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 18px;
  color: #abc1dc;
  font-size: 11px;
  font-weight: 720;
}

.use-case-link b {
  color: var(--saas-cyan);
  transition: transform 180ms ease;
}

.use-case-card:hover .use-case-link b {
  transform: translate(3px, -3px);
}

.ga4-visual {
  display: flex;
  align-items: end;
  justify-content: center;
  gap: 9px;
  padding: 30px 28px 26px;
}

.ga4-visual i {
  width: 9%;
  min-height: 12px;
  border-radius: 3px 3px 1px 1px;
  background: linear-gradient(180deg, #9d7cff, #5a98ff);
  box-shadow: 0 0 18px rgba(90, 152, 255, 0.16);
}

.pf-visual {
  padding: 34px 30px;
}

.pf-visual > span {
  width: 82%;
  height: 8px;
  display: block;
  margin-bottom: 15px;
  border-radius: 3px;
  background: rgba(148, 174, 211, 0.18);
}

.pf-visual > span:nth-child(2) { width: 62%; }
.pf-visual > span:nth-child(3) { width: 72%; }

.pf-visual svg {
  position: absolute;
  right: 25%;
  bottom: 25%;
  width: 32px;
  height: 32px;
  fill: #f2f7ff;
  stroke: #101827;
  stroke-linejoin: round;
  stroke-width: 1.2;
  animation: use-case-pointer 4.4s ease-in-out infinite;
}

.visitors-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.visitors-visual span {
  position: relative;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  margin-left: -8px;
  border: 3px solid #101a29;
  border-radius: 50%;
  background: linear-gradient(145deg, #5a98ff, #2d5fae);
  box-shadow: 0 12px 22px rgba(0, 0, 0, 0.25);
}

.visitors-visual span:nth-child(2) { background: linear-gradient(145deg, #65ead6, #268e8d); }
.visitors-visual span:nth-child(3) { background: linear-gradient(145deg, #9d7cff, #5c46b6); }
.visitors-visual span:nth-child(4) { background: linear-gradient(145deg, #ff8f7a, #b94f55); }

.visitors-visual span::before {
  content: "";
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 12px 0 4px rgba(255, 255, 255, 0.36);
}

.visitors-visual i {
  position: absolute;
  right: 18px;
  bottom: 15px;
  width: 60px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, var(--saas-cyan));
  animation: visitors-stream 2.8s ease-in-out infinite;
}

.saas-pricing-section {
  overflow: hidden;
  background:
    linear-gradient(135deg, #0a121d, #101a2a 55%, #0c1522);
}

.saas-pricing-section::before {
  content: "";
  position: absolute;
  top: 12%;
  right: -12%;
  width: 66%;
  height: 320px;
  background: linear-gradient(90deg, transparent, rgba(99, 213, 164, 0.08), rgba(90, 152, 255, 0.07), transparent);
  filter: blur(80px);
  transform: rotate(-13deg);
  pointer-events: none;
}

.pricing-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(480px, 0.9fr);
  align-items: center;
  gap: 80px;
}

.pricing-copy h2 {
  margin-top: 14px;
}

.pricing-copy h2 span {
  color: var(--saas-green);
}

.pricing-guarantees {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.pricing-guarantees span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #acbdd1;
  font-size: 13px;
  font-weight: 620;
}

.pricing-guarantees i {
  width: 21px;
  height: 21px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(99, 213, 164, 0.25);
  border-radius: 50%;
  background: rgba(99, 213, 164, 0.08);
  color: #76dfaf;
  font-size: 10px;
  font-style: normal;
  font-weight: 860;
}

.pricing-copy > .saas-button {
  margin-top: 30px;
}

.pricing-calculator {
  position: relative;
  min-width: 0;
  padding: 24px;
  border: 1px solid rgba(148, 174, 211, 0.17);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(23, 35, 54, 0.98), rgba(14, 24, 38, 0.98));
  box-shadow: 0 38px 90px rgba(0, 0, 0, 0.32);
}

.pricing-calculator-head span {
  color: #788ca5;
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
}

.pricing-calculator-head strong {
  color: #edf4ff;
  font-size: 16px;
  font-weight: 760;
}

.pricing-calculator-head .calculator-badge {
  border-color: rgba(101, 234, 214, 0.19);
  background: rgba(101, 234, 214, 0.06);
  color: #79d9cc;
}

.calculator-slider {
  display: grid;
  gap: 16px;
  margin-top: 28px;
  padding: 20px;
  border: 1px solid rgba(148, 174, 211, 0.11);
  border-radius: 7px;
  background: rgba(5, 12, 21, 0.26);
}

.calculator-slider > span,
.calculator-slider > small {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.calculator-slider > span {
  color: #879ab1;
  font-size: 11px;
}

.calculator-slider > span strong {
  color: #eff5ff;
  font-size: 17px;
  font-weight: 780;
  font-variant-numeric: tabular-nums;
}

.calculator-slider > small {
  color: #667b94;
  font-size: 8px;
}

.calculator-result {
  display: grid;
  justify-items: center;
  margin-top: 12px;
  padding: 24px;
  border: 1px solid rgba(99, 213, 164, 0.16);
  border-radius: 7px;
  background:
    linear-gradient(135deg, rgba(99, 213, 164, 0.08), rgba(90, 152, 255, 0.06));
  text-align: center;
}

.calculator-result > span {
  color: #8094ac;
  font-size: 10px;
  font-weight: 680;
  text-transform: uppercase;
}

.calculator-result > strong {
  margin-top: 6px;
  color: #f2f8ff;
  font-size: 44px;
  font-weight: 820;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.calculator-result > small {
  margin-top: 8px;
  color: #7c90a8;
  font-size: 10px;
}

.calculator-details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-top: 12px;
}

.calculator-details > div {
  min-width: 0;
  display: grid;
  gap: 6px;
  padding: 13px;
  border: 1px solid rgba(148, 174, 211, 0.1);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.022);
}

.calculator-details span {
  color: #7489a3;
  font-size: 9px;
}

.calculator-details strong {
  overflow: hidden;
  color: #cbd8e9;
  font-size: 11px;
  font-weight: 720;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.pricing-calculator > p {
  margin: 16px 0 0;
  color: #687d95;
  font-size: 10px;
  line-height: 1.5;
  text-align: center;
}

.saas-faq-section {
  background: #0b111b;
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.68fr) minmax(520px, 1.12fr);
  align-items: start;
  gap: 80px;
}

.faq-layout .saas-section-heading {
  position: sticky;
  top: 100px;
  margin-bottom: 0;
}

.faq-layout .saas-section-heading > a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 24px;
  color: #a9bdd7;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
}

.faq-layout .saas-section-heading > a span {
  color: var(--saas-cyan);
}

.faq-list {
  display: grid;
  gap: 8px;
}

.faq-item {
  overflow: hidden;
  border: 1px solid rgba(148, 174, 211, 0.13);
  border-radius: 7px;
  background: #111b2a;
  transition: border-color 180ms ease, background-color 180ms ease;
}

.faq-item.is-open {
  border-color: rgba(101, 234, 214, 0.24);
  background: #132031;
}

.faq-item > button {
  width: 100%;
  min-height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 0 18px;
  border: 0;
  background: transparent;
  color: #dce8f7;
  font: inherit;
  font-size: 14px;
  font-weight: 720;
  text-align: left;
  cursor: pointer;
}

.faq-item > button i {
  position: relative;
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.faq-item > button i::before,
.faq-item > button i::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 1px;
  background: #8ca0b8;
  transform: translate(-50%, -50%);
  transition: transform 180ms ease;
}

.faq-item > button i::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item.is-open > button i::after {
  transform: translate(-50%, -50%) rotate(0);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 260ms ease;
}

.faq-item.is-open .faq-answer {
  grid-template-rows: 1fr;
}

.faq-answer > div {
  min-height: 0;
  overflow: hidden;
}

.faq-answer p {
  margin: 0;
  padding: 0 18px 18px;
  color: #879bb3;
  font-size: 13px;
  line-height: 1.6;
}

.saas-final-cta {
  position: relative;
  min-height: 500px;
  display: grid;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
  background:
    linear-gradient(120deg, #0e1927, #111d2e 50%, #0b1522);
}

.saas-final-cta::before,
.saas-final-cta::after {
  content: "";
  position: absolute;
  z-index: -1;
  height: 200px;
  filter: blur(75px);
  opacity: 0.18;
  pointer-events: none;
}

.saas-final-cta::before {
  top: 5%;
  right: 0;
  left: 30%;
  background: linear-gradient(90deg, transparent, #4d8ef1, transparent);
  transform: rotate(-12deg);
}

.saas-final-cta::after {
  right: 30%;
  bottom: 0;
  left: 0;
  background: linear-gradient(90deg, transparent, #48c8ad, transparent);
  transform: rotate(8deg);
}

.final-cta-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
  padding: 78px 20px;
  text-align: center;
}

.final-cta-content .saas-kicker {
  margin-bottom: 16px;
}

.final-cta-content > p:not(.saas-kicker) {
  margin-right: auto;
  margin-left: auto;
}

.final-cta-content > div {
  justify-content: center;
}

body.public-home-page .site-footer {
  width: min(var(--saas-max), calc(100% - 40px));
  margin-top: 0;
}

body.public-home-page .site-footer::before {
  background: #09111c;
  border-color: rgba(148, 174, 211, 0.12);
  box-shadow: 0 -18px 54px rgba(0, 0, 0, 0.2);
}

@keyframes reports-line-draw {
  to { stroke-dashoffset: 0; }
}

@keyframes use-case-pointer {
  0%, 100% { transform: translate(0, 0); }
  45% { transform: translate(-54px, -32px); }
  58% { transform: translate(-50px, -28px) scale(0.9); }
}

@keyframes visitors-stream {
  0%, 100% { opacity: 0.25; transform: translateX(-20px); }
  50% { opacity: 0.9; transform: translateX(0); }
}

@media (min-width: 1181px) and (max-width: 1500px) {
  .saas-hero h1 {
    font-size: 58px;
  }

  .saas-hero-lead {
    font-size: 16px;
  }
}

@media (min-width: 1181px) and (max-width: 1240px) {
  .saas-hero h1 {
    font-size: 56px;
  }
}

@media (max-width: 1180px) {
  .saas-hero-layout {
    grid-template-columns: minmax(430px, 0.92fr) minmax(0, 1.08fr);
    gap: 0;
    width: 100%;
    padding-inline: 32px;
  }

  .saas-hero h1 {
    font-size: 50px;
  }

  .saas-globe-stage {
    right: -24px;
    width: calc(100% + 24px);
    transform: translateY(-50%);
  }

  .saas-reports-layout,
  .pricing-layout {
    gap: 48px;
  }
}

@media (max-width: 1040px) {
  body.public-home-page .topbar {
    width: calc(100% - 32px);
  }

  .saas-container {
    width: min(900px, calc(100% - 32px));
  }

  .saas-hero {
    min-height: auto;
  }

  .saas-hero-layout {
    grid-template-columns: minmax(0, 1fr);
    gap: 52px;
    width: calc(100% - 32px);
    padding: 74px 0 92px;
  }

  .saas-hero-copy {
    max-width: 760px;
  }

  .saas-hero h1 {
    max-width: 740px;
  }

  .saas-analytics-stage {
    width: min(100%, 760px);
    min-height: 720px;
    justify-content: center;
    margin: 0 auto;
  }

  .saas-globe-stage {
    top: -38px;
    right: 50%;
    width: min(700px, 96vw);
    transform: translateX(50%);
  }

  .saas-dashboard {
    width: min(100%, 680px);
  }

  .saas-scroll-cue {
    display: none;
  }

  .saas-section {
    padding: 92px 0;
  }

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

  .saas-feature-card {
    min-height: 350px;
  }

  .visit-builder-layout {
    grid-template-columns: minmax(300px, 0.82fr) minmax(0, 1.18fr);
  }

  .builder-controls,
  .builder-flow {
    padding: 20px;
  }

  .saas-reports-layout {
    grid-template-columns: minmax(0, 1fr);
    gap: 42px;
  }

  .saas-reports-copy {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.92fr);
    align-items: end;
    gap: 44px;
  }

  .saas-reports-copy .saas-section-heading {
    margin-bottom: 0;
  }

  .reports-dashboard {
    width: min(100%, 820px);
    margin: 0 auto;
  }

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

  .pricing-copy {
    max-width: 760px;
  }

  .pricing-calculator {
    width: min(100%, 700px);
  }

  .faq-layout {
    grid-template-columns: minmax(0, 0.76fr) minmax(450px, 1.1fr);
    gap: 44px;
  }

  body.public-home-page .site-footer {
    width: min(820px, calc(100% - 32px));
  }
}

@media (max-width: 860px) {
  .saas-section-heading h2,
  .pricing-copy h2,
  .final-cta-content h2 {
    font-size: 38px;
  }

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

  .visit-builder-layout {
    grid-template-columns: minmax(0, 1fr);
    min-height: 0;
  }

  .builder-controls {
    border-right: 0;
    border-bottom: 1px solid rgba(148, 174, 211, 0.13);
  }

  .builder-flow {
    min-height: 520px;
  }

  .saas-reports-copy {
    grid-template-columns: minmax(0, 1fr);
    gap: 24px;
  }

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

  .use-case-card:last-child {
    grid-column: 1 / -1;
    min-height: 320px;
  }

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

  .faq-layout .saas-section-heading {
    position: static;
  }
}

@media (max-width: 680px) {
  body.public-home-page {
    scrollbar-gutter: auto;
  }

  body.public-home-page .topbar,
  body.public-home-page .site-footer,
  .saas-container {
    width: calc(100% - 24px);
  }

  body.public-home-page .topbar {
    min-height: 66px;
  }

  body.public-home-page .brand-wordmark {
    width: 146px;
  }

  body.public-home-page .mobile-menu-panel {
    top: 74px;
    right: 12px;
    left: 12px;
  }

  .mobile-menu-account > div {
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .saas-hero-layout {
    gap: 38px;
    padding: 54px 0 68px;
  }

  .saas-analytics-stage {
    min-height: 0;
    display: block;
    padding-top: 360px;
  }

  .saas-globe-stage {
    top: -26px;
    width: min(430px, 112vw);
  }

  .saas-globe-intro-status {
    top: 7%;
    min-height: 30px;
    font-size: 9px;
  }

  .saas-globe-readout {
    top: auto;
    right: 6%;
    bottom: 8%;
    left: 6%;
    max-width: none;
  }

  .saas-dashboard {
    width: 100%;
  }

  .saas-eyebrow {
    min-height: 28px;
    padding: 0 9px;
    font-size: 9px;
  }

  .saas-hero h1 {
    margin-top: 18px;
    font-size: 42px;
    line-height: 1.04;
  }

  .saas-hero-lead {
    margin-top: 20px;
    font-size: 15px;
    line-height: 1.62;
  }

  .saas-hero-actions {
    align-items: stretch;
    flex-direction: column;
    margin-top: 24px;
  }

  .saas-button {
    width: 100%;
  }

  .saas-proof-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 22px;
  }

  .saas-proof-row > span {
    min-width: 0;
    white-space: normal;
  }

  .saas-proof-row > span:last-child {
    grid-column: 1 / -1;
  }

  .saas-dashboard {
    min-height: 0;
    padding: 14px;
  }

  .saas-dashboard-summary {
    grid-template-columns: 100px minmax(0, 1fr);
    gap: 10px;
    margin-top: 16px;
    padding: 12px;
  }

  .saas-live-number strong {
    font-size: 42px;
  }

  .saas-mini-chart {
    height: 94px;
  }

  .saas-dashboard-dimensions {
    grid-template-columns: minmax(0, 1fr);
  }

  .saas-dashboard-dimensions > div {
    grid-template-columns: 80px minmax(0, 1fr);
    align-items: center;
  }

  .saas-event-row {
    grid-template-columns: 8px minmax(64px, 0.5fr) minmax(0, 1fr);
  }

  .saas-event-row time {
    display: none;
  }

  .saas-dashboard-foot > span {
    display: none;
  }

  .saas-orbit-label {
    display: none;
  }

  .saas-metrics-section {
    padding-bottom: 40px;
  }

  body.public-home-page .saas-metrics > div,
  .saas-metrics > div {
    min-height: 120px;
    padding: 20px 16px;
  }

  body.public-home-page .saas-metrics > div > strong,
  .saas-metrics > div > strong {
    font-size: 30px;
  }

  body.public-home-page .saas-metrics > div:nth-child(2) > strong,
  .saas-metrics > div:nth-child(2) > strong {
    font-size: 24px;
  }

  body.public-home-page .saas-metrics > div > span:last-child,
  .saas-metrics > div > span:last-child {
    font-size: 11px;
  }

  .saas-section {
    padding: 76px 0;
  }

  .saas-section-heading {
    margin-bottom: 32px;
  }

  .saas-section-heading h2,
  .pricing-copy h2,
  .final-cta-content h2 {
    font-size: 34px;
  }

  .saas-section-heading > p:not(.saas-kicker),
  .pricing-copy > p,
  .final-cta-content > p:not(.saas-kicker) {
    font-size: 14px;
  }

  .saas-feature-grid,
  .use-case-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .saas-feature-card,
  .use-case-card,
  .use-case-card:last-child {
    grid-column: auto;
    min-height: 330px;
  }

  .visit-builder-toolbar {
    min-height: 52px;
    padding: 0 12px;
  }

  .builder-status {
    padding: 0 8px;
    font-size: 8px;
  }

  .builder-controls,
  .builder-flow {
    padding: 16px;
  }

  .builder-control-row {
    grid-template-columns: minmax(0, 1fr);
  }

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

  .builder-device-control label {
    grid-column: 1 / -1;
  }

  .builder-flow {
    min-height: 0;
  }

  .builder-flow-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

  .builder-flow-head > strong {
    max-width: 100%;
  }

  .builder-page-preview {
    height: 190px;
  }

  .builder-page-copy {
    left: 22px;
  }

  .builder-page-chart {
    right: 20px;
    width: 40%;
    height: 90px;
  }

  .builder-route {
    grid-template-columns: minmax(0, 1fr);
    gap: 9px;
    padding: 0 0 0 34px;
  }

  .builder-route-line {
    top: 18px;
    right: auto;
    bottom: 18px;
    left: 8px;
    width: 2px;
    height: auto;
  }

  .builder-route-line span {
    width: 100%;
    height: 26%;
    background: linear-gradient(180deg, transparent, var(--saas-cyan), transparent);
    animation: builder-route-packet-mobile 3s linear infinite;
  }

  .builder-route-node {
    min-height: 40px;
    align-content: center;
    justify-items: start;
    padding: 5px 8px;
    text-align: left;
  }

  .builder-route-node i {
    top: 50%;
    left: -34px;
    transform: translateY(-50%);
  }

  .reports-dashboard {
    padding: 14px;
  }

  .reports-kpis {
    grid-template-columns: minmax(0, 1fr);
  }

  .reports-kpis > div {
    grid-template-columns: minmax(0, 1fr) auto auto;
    align-items: center;
  }

  .reports-kpis span {
    grid-column: auto;
  }

  .reports-kpis strong {
    font-size: 16px;
  }

  .reports-chart {
    height: 185px;
  }

  .reports-breakdown {
    grid-template-columns: minmax(0, 1fr);
  }

  .device-donut,
  .country-list,
  .event-list {
    min-height: 96px;
  }

  .pricing-calculator {
    padding: 16px;
  }

  .calculator-slider {
    padding: 16px;
  }

  .calculator-result > strong {
    font-size: 38px;
  }

  .calculator-details {
    grid-template-columns: minmax(0, 1fr);
  }

  .faq-item > button {
    min-height: 62px;
    padding: 12px 14px;
    font-size: 13px;
  }

  .faq-answer p {
    padding: 0 14px 16px;
  }

  .saas-final-cta {
    min-height: 450px;
  }

  .final-cta-content {
    padding: 68px 8px;
  }
}

@media (max-width: 420px) {
  .saas-analytics-stage {
    padding-top: 330px;
  }

  .saas-globe-stage {
    top: -8px;
    width: min(390px, calc(100vw - 24px));
  }

  .saas-globe-readout {
    right: 5%;
    left: 5%;
    padding: 9px 10px;
  }

  .saas-globe-intro-status {
    top: 5%;
  }

  .saas-globe-readout strong {
    font-size: 10px;
  }

  .saas-hero h1 {
    font-size: 36px;
  }

  .saas-proof-row {
    grid-template-columns: minmax(0, 1fr);
  }

  .saas-proof-row > span:last-child {
    grid-column: auto;
  }

  .saas-metrics {
    grid-template-columns: minmax(0, 1fr);
  }

  body.public-home-page .saas-metrics > div,
  .saas-metrics > div {
    min-height: 106px;
  }

  .saas-dashboard-head strong {
    font-size: 14px;
  }

  .saas-dashboard-summary {
    grid-template-columns: minmax(0, 1fr);
  }

  .saas-live-number {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
  }

  .saas-live-number > span,
  .saas-live-number > small {
    grid-column: 1;
  }

  .saas-live-number > strong {
    grid-row: 1 / span 2;
    grid-column: 2;
  }

  .saas-mini-chart {
    height: 80px;
  }

  .feature-visual {
    height: 116px;
  }

  .source-visual {
    grid-template-columns: repeat(3, 40px);
    gap: 12px;
  }

  .source-chip {
    width: 40px;
    height: 40px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .saas-landing *,
  .saas-landing *::before,
  .saas-landing *::after {
    scroll-behavior: auto !important;
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 1ms !important;
  }
}

@media (min-width: 1181px) {
  .saas-globe-stage .saas-globe-hint {
    display: none !important;
  }

  .saas-metrics-section {
    margin-top: 0;
    padding-bottom: 46px;
    background: #050c16;
  }

  .saas-metrics-section .saas-container {
    width: calc(100% - (var(--saas-fluid-gutter) * 2));
  }

  body.public-home-page .saas-metrics > div,
  .saas-metrics > div {
    min-height: 112px;
    padding: 18px 16px;
  }

  body.public-home-page .saas-metrics > div > strong,
  .saas-metrics > div > strong {
    font-size: 27px;
  }

  body.public-home-page .saas-metrics > div:nth-child(2) > strong,
  .saas-metrics > div:nth-child(2) > strong {
    font-size: 23px;
  }

  body.public-home-page .saas-metrics > div > span:last-child,
  .saas-metrics > div > span:last-child {
    font-size: 11px;
  }

  .saas-metric-icon {
    width: 44px;
    height: 44px;
  }
}

@media (max-width: 1180px) {
  .saas-globe-live-cards {
    display: none;
  }
}

@keyframes builder-route-packet-mobile {
  from { transform: translateY(-120%); }
  to { transform: translateY(430%); }
}

/* Cinematic realtime hero */
body.public-home-page .topbar::before {
  background: rgba(2, 8, 18, 0.92);
  border-color: rgba(64, 144, 220, 0.2);
  box-shadow:
    0 12px 40px rgba(0, 0, 0, 0.3),
    inset 0 -1px 0 rgba(25, 179, 238, 0.05);
}

.saas-hero {
  min-height: calc(100svh - 76px);
  align-items: stretch;
  background:
    radial-gradient(ellipse 46% 66% at 75% 43%, rgba(5, 125, 246, 0.3), transparent 65%),
    radial-gradient(ellipse 38% 54% at 88% 65%, rgba(101, 49, 224, 0.22), transparent 69%),
    radial-gradient(ellipse 42% 40% at 35% 92%, rgba(15, 75, 181, 0.13), transparent 72%),
    linear-gradient(116deg, #01050d 0%, #020916 41%, #03132b 72%, #020713 100%);
}

.saas-hero::before {
  z-index: -2;
  inset: 0;
  background:
    radial-gradient(circle at 8% 25%, rgba(22, 181, 245, 0.5) 0 1px, transparent 2px),
    radial-gradient(circle at 24% 60%, rgba(107, 92, 255, 0.45) 0 1px, transparent 2px),
    radial-gradient(circle at 43% 18%, rgba(35, 224, 246, 0.4) 0 1px, transparent 2px),
    radial-gradient(circle at 93% 31%, rgba(134, 88, 255, 0.44) 0 1px, transparent 2px),
    linear-gradient(rgba(22, 125, 190, 0.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(22, 125, 190, 0.09) 1px, transparent 1px);
  background-size:
    420px 360px,
    470px 410px,
    390px 330px,
    520px 450px,
    76px 76px,
    76px 76px;
  opacity: 0.82;
}

.saas-hero::after {
  z-index: -1;
  inset: auto -8% -12%;
  height: 58%;
  background:
    linear-gradient(rgba(23, 137, 227, 0.2) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 137, 227, 0.2) 1px, transparent 1px),
    radial-gradient(ellipse 64% 50% at 68% 34%, rgba(20, 123, 238, 0.28), transparent 72%);
  background-size: 54px 54px, 54px 54px, auto;
  opacity: 0.54;
  mask-image: linear-gradient(180deg, transparent 0%, #000 32%, #000 100%);
  transform: perspective(760px) rotateX(66deg) scale(1.34);
  transform-origin: center bottom;
}

.saas-code-field {
  position: absolute;
  z-index: -1;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  mask-image: linear-gradient(90deg, #000 0%, rgba(0, 0, 0, 0.94) 52%, rgba(0, 0, 0, 0.72) 82%, transparent 100%);
}

.saas-code-field::before,
.saas-code-field::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.saas-code-field::before {
  background:
    radial-gradient(circle at 7% 18%, rgba(38, 218, 255, 0.9) 0 1.5px, transparent 2.5px),
    radial-gradient(circle at 17% 44%, rgba(74, 138, 255, 0.8) 0 1.5px, transparent 2.5px),
    radial-gradient(circle at 31% 22%, rgba(40, 224, 247, 0.72) 0 1.5px, transparent 2.5px),
    radial-gradient(circle at 41% 56%, rgba(112, 79, 255, 0.82) 0 1.5px, transparent 2.5px),
    radial-gradient(circle at 55% 14%, rgba(41, 185, 255, 0.72) 0 1.5px, transparent 2.5px),
    linear-gradient(24deg, transparent 20%, rgba(34, 145, 223, 0.16) 20.15%, transparent 20.3%),
    linear-gradient(148deg, transparent 38%, rgba(55, 108, 224, 0.14) 38.15%, transparent 38.3%);
  background-size:
    330px 260px,
    390px 310px,
    440px 340px,
    480px 370px,
    520px 400px,
    420px 320px,
    520px 390px;
  opacity: 0.66;
  mix-blend-mode: screen;
}

.saas-code-field::after {
  background:
    linear-gradient(90deg, transparent 0%, rgba(3, 145, 247, 0.13) 44%, transparent 74%),
    radial-gradient(ellipse 40% 22% at 67% 86%, rgba(44, 79, 255, 0.22), transparent 72%),
    radial-gradient(ellipse 24% 18% at 92% 20%, rgba(111, 56, 229, 0.18), transparent 74%);
  opacity: 0.76;
}

.saas-code-field pre {
  position: absolute;
  width: 330px;
  margin: 0;
  color: rgba(38, 176, 238, 0.2);
  font: 500 12px/1.68 ui-monospace, SFMono-Regular, Consolas, "Liberation Mono", monospace;
  letter-spacing: 0;
  white-space: pre-wrap;
  text-shadow: 0 0 18px rgba(29, 148, 237, 0.08);
  user-select: none;
}

.saas-code-field .is-left {
  top: 7%;
  left: 2%;
}

.saas-code-field .is-center {
  top: 5%;
  left: 34%;
  opacity: 0.82;
}

.saas-code-field .is-right {
  top: 13%;
  right: 1.5%;
  opacity: 0.46;
}

.saas-code-field .is-lower-left {
  bottom: 8%;
  left: 4%;
  opacity: 0.66;
}

.saas-code-field .is-lower-center {
  bottom: 5%;
  left: 36%;
  opacity: 0.58;
}

.saas-code-field .is-globe-code {
  top: 49%;
  right: 5%;
  opacity: 0.34;
}

.saas-data-plane {
  position: absolute;
  z-index: 0;
  right: -4%;
  bottom: -1%;
  left: 34%;
  height: 44%;
  overflow: hidden;
  opacity: 0.88;
  mix-blend-mode: screen;
  pointer-events: none;
  mask-image: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.72) 22%, #000 100%);
}

.saas-data-plane::before,
.saas-data-plane::after {
  content: "";
  position: absolute;
  inset: 0;
}

.saas-data-plane::before {
  inset: 2% -12% -22%;
  background:
    linear-gradient(rgba(21, 122, 218, 0.19) 1px, transparent 1px),
    linear-gradient(90deg, rgba(21, 122, 218, 0.19) 1px, transparent 1px);
  background-size: 58px 58px;
  transform: perspective(780px) rotateX(59deg) scale(1.14);
  transform-origin: center bottom;
}

.saas-data-plane::after {
  background:
    radial-gradient(ellipse 58% 38% at 63% 68%, rgba(27, 116, 255, 0.24), transparent 72%),
    linear-gradient(90deg, transparent, rgba(19, 204, 244, 0.13), transparent);
  filter: blur(1px);
}

.saas-data-plane i {
  position: absolute;
  z-index: 1;
  width: 17px;
  height: 17px;
  border: 1px solid rgba(73, 214, 255, 0.46);
  border-radius: 2px;
  background: linear-gradient(145deg, rgba(20, 226, 249, 0.75), rgba(35, 106, 255, 0.74));
  box-shadow:
    0 0 15px rgba(24, 180, 249, 0.7),
    0 0 38px rgba(29, 94, 255, 0.34);
  animation: saas-data-tile 4.8s ease-in-out infinite;
}

.saas-data-plane i:nth-child(1) { left: 6%; top: 54%; width: 28px; height: 8px; }
.saas-data-plane i:nth-child(2) { left: 17%; top: 31%; width: 10px; height: 10px; animation-delay: -1.2s; }
.saas-data-plane i:nth-child(3) { left: 28%; top: 65%; width: 23px; height: 9px; background: #744cff; animation-delay: -2.8s; }
.saas-data-plane i:nth-child(4) { left: 38%; top: 41%; width: 12px; height: 12px; animation-delay: -0.7s; }
.saas-data-plane i:nth-child(5) { left: 49%; top: 69%; width: 25px; height: 10px; background: #116ff1; animation-delay: -3.2s; }
.saas-data-plane i:nth-child(6) { left: 57%; top: 23%; width: 9px; height: 9px; animation-delay: -1.9s; }
.saas-data-plane i:nth-child(7) { left: 65%; top: 57%; width: 23px; height: 9px; background: #633df2; animation-delay: -3.8s; }
.saas-data-plane i:nth-child(8) { left: 73%; top: 35%; width: 12px; height: 12px; animation-delay: -1.4s; }
.saas-data-plane i:nth-child(9) { left: 81%; top: 67%; width: 27px; height: 9px; animation-delay: -2.4s; }
.saas-data-plane i:nth-child(10) { left: 88%; top: 27%; width: 9px; height: 9px; background: #8a50ff; animation-delay: -0.4s; }
.saas-data-plane i:nth-child(11) { left: 94%; top: 51%; width: 18px; height: 8px; animation-delay: -3.5s; }
.saas-data-plane i:nth-child(12) { left: 46%; top: 14%; width: 8px; height: 8px; animation-delay: -2.1s; }

.saas-grid-field {
  z-index: -1;
  opacity: 0.7;
  background-image:
    linear-gradient(rgba(20, 155, 231, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(20, 155, 231, 0.1) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(90deg, #000 0%, rgba(0, 0, 0, 0.74) 52%, transparent 92%);
  transform: perspective(700px) rotateX(67deg) scale(1.55) translateY(38%);
}

.saas-hero-light {
  width: min(78vw, 1260px);
  height: 340px;
  filter: blur(125px);
}

.saas-hero-light.is-cyan {
  top: 13%;
  right: -8%;
  opacity: 0.16;
  background: linear-gradient(90deg, transparent, rgba(0, 159, 255, 0.92), transparent);
}

.saas-hero-light.is-violet {
  right: 1%;
  bottom: -2%;
  opacity: 0.14;
  background: linear-gradient(90deg, transparent, rgba(118, 62, 241, 0.9), transparent);
}

.saas-hero-layout {
  grid-template-columns: minmax(500px, 41.5%) minmax(0, 58.5%);
  min-height: inherit;
  padding: 52px var(--saas-fluid-gutter) 176px;
}

.saas-hero-copy {
  max-width: 680px;
  padding-left: 0;
}

.saas-eyebrow {
  min-height: 30px;
  padding: 0 13px;
  border-color: rgba(42, 220, 235, 0.3);
  background: rgba(6, 88, 111, 0.14);
  box-shadow:
    inset 0 0 18px rgba(26, 207, 228, 0.04),
    0 0 22px rgba(11, 155, 199, 0.06);
  color: #43e1e4;
  font-size: 11px;
}

.saas-hero h1 {
  max-width: 680px;
  margin-top: 22px;
  font-size: clamp(58px, 4.05vw, 70px);
  font-weight: 860;
  line-height: 1.02;
  text-wrap: balance;
}

.saas-title-highlight {
  white-space: normal;
  text-wrap: balance;
  background: linear-gradient(98deg, #13dbe9 2%, #1c9cff 47%, #8c5cff 95%);
  background-clip: text;
  -webkit-background-clip: text;
  filter: none;
  text-shadow: 0 10px 28px rgba(35, 121, 255, 0.2);
}

body.public-home-page .saas-hero h1::selection,
body.public-home-page .saas-hero h1 *::selection {
  background: #1454c8;
  color: #ffffff;
  -webkit-text-fill-color: #ffffff;
  text-shadow: none;
}

.saas-hero-lead {
  max-width: 590px;
  margin-top: 27px;
  color: #a9b8cc;
  font-size: 17px;
  line-height: 1.58;
}

.saas-hero-actions {
  gap: 15px;
  margin-top: 30px;
}

.saas-button.is-hero-primary,
.saas-button.is-hero-secondary {
  min-height: 60px;
  padding: 0 32px;
  overflow: visible;
  border-radius: 7px;
  font-size: 16px;
  transition:
    transform 320ms cubic-bezier(0.22, 1, 0.36, 1),
    border-color 300ms ease,
    background-position 480ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 320ms ease,
    color 300ms ease;
}

.saas-button.is-hero-primary {
  isolation: isolate;
  border-color: rgba(77, 225, 255, 0.72);
  background: linear-gradient(112deg, #0dcbe8 0%, #208af4 35%, #9256f6 62%, #9256f6 100%);
  background-size: 160% 100%;
  background-position: 0 50%;
  box-shadow:
    0 0 0 1px rgba(31, 194, 242, 0.14),
    0 12px 32px rgba(14, 164, 226, 0.28),
    17px 0 38px rgba(121, 71, 239, 0.2);
  animation: saas-cta-breathe 4.2s ease-in-out infinite;
}

.saas-button.is-hero-primary::before {
  z-index: -1;
  inset: 1px;
  border-radius: 5px;
  background:
    radial-gradient(circle at 24% 14%, rgba(255, 255, 255, 0.28), transparent 42%),
    linear-gradient(110deg, rgba(255, 255, 255, 0.08), transparent 54%);
  opacity: 0.68;
  transform: none;
  transition: opacity 320ms ease;
}

.saas-button.is-hero-primary::after {
  content: "";
  position: absolute;
  z-index: -2;
  inset: -10px;
  border-radius: 12px;
  background: linear-gradient(100deg, rgba(22, 215, 239, 0.48), rgba(37, 131, 247, 0.24), rgba(137, 79, 246, 0.48));
  filter: blur(18px);
  opacity: 0.26;
  transition:
    opacity 320ms ease,
    filter 320ms ease;
  pointer-events: none;
}

.saas-button.is-hero-primary > span,
.saas-button.is-hero-primary > svg,
.saas-button.is-hero-secondary > span {
  position: relative;
  z-index: 1;
}

.saas-button.is-hero-primary:hover,
.saas-button.is-hero-primary:focus-visible {
  animation-play-state: paused;
  border-color: rgba(181, 245, 255, 0.95);
  background-position: 100% 50%;
  box-shadow:
    0 0 0 1px rgba(66, 218, 251, 0.24),
    0 16px 42px rgba(18, 174, 230, 0.34),
    22px 0 46px rgba(126, 74, 244, 0.28);
  transform: translate3d(0, -2px, 0) scale(1.012);
}

.saas-button.is-hero-primary:hover::before,
.saas-button.is-hero-primary:focus-visible::before {
  opacity: 0.95;
  transform: none;
}

.saas-button.is-hero-primary:hover::after,
.saas-button.is-hero-primary:focus-visible::after {
  opacity: 0.42;
  filter: blur(21px);
}

.saas-button.is-hero-primary:hover svg,
.saas-button.is-hero-primary:focus-visible svg {
  transform: translateX(3px);
}

.saas-button.is-hero-primary svg {
  transition: transform 300ms cubic-bezier(0.22, 1, 0.36, 1);
}

.saas-button.is-hero-secondary {
  border-color: rgba(37, 153, 231, 0.38);
  background: rgba(2, 10, 24, 0.74);
  box-shadow:
    inset 0 1px 0 rgba(139, 205, 255, 0.03),
    0 14px 32px rgba(0, 0, 0, 0.16);
}

.saas-button.is-hero-secondary::before {
  inset: 0;
  background: linear-gradient(110deg, rgba(19, 201, 224, 0.12), rgba(71, 92, 238, 0.08));
  opacity: 0;
  transform: none;
  transition: opacity 300ms ease;
}

.saas-button.is-hero-secondary:hover,
.saas-button.is-hero-secondary:focus-visible {
  border-color: rgba(56, 211, 239, 0.68);
  background: rgba(4, 25, 45, 0.88);
  box-shadow:
    inset 0 1px 0 rgba(146, 226, 255, 0.06),
    0 14px 36px rgba(3, 93, 158, 0.2);
  transform: translateY(-2px);
}

.saas-button.is-hero-secondary:hover::before,
.saas-button.is-hero-secondary:focus-visible::before {
  opacity: 1;
  transform: none;
}

.saas-proof-row {
  gap: 10px 12px;
  margin-top: 27px;
}

.saas-proof-row > span {
  min-height: 36px;
  padding: 0 12px;
  border-color: rgba(57, 131, 197, 0.2);
  background: rgba(3, 13, 28, 0.7);
  color: #a9b8cb;
  box-shadow: inset 0 1px 0 rgba(126, 207, 255, 0.025);
}

.saas-analytics-stage {
  min-height: 650px;
}

.saas-globe-stage {
  --saas-globe-render-bleed: clamp(190px, 14vw, 300px);
  --saas-globe-stage-right: clamp(70px, 6.2vw, 112px);
  top: 56%;
  right: calc(
    var(--saas-globe-stage-right) -
    (var(--saas-globe-render-bleed) / 2)
  );
  width: calc(
    min(52vw, calc(100svh - 76px), 1080px) +
    var(--saas-globe-render-bleed)
  );
  filter: none;
}

.saas-visit-card {
  position: absolute;
  z-index: 8;
  top: 9%;
  right: 0;
  width: 224px;
  min-height: 148px;
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  align-content: center;
  gap: 12px;
  padding: 18px;
  border: 1px solid rgba(48, 153, 222, 0.32);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(6, 17, 37, 0.94), rgba(2, 9, 22, 0.9));
  box-shadow:
    0 24px 62px rgba(0, 0, 0, 0.38),
    inset 0 1px 0 rgba(129, 216, 255, 0.05),
    0 0 38px rgba(33, 120, 219, 0.08);
  color: #dce9f8;
  backdrop-filter: blur(18px);
  pointer-events: none;
  opacity: 0;
  transform: translate3d(12px, 0, 0);
  transition:
    opacity 520ms ease 580ms,
    transform 680ms cubic-bezier(0.22, 1, 0.36, 1) 580ms;
}

.saas-globe-stage.is-globe-visible .saas-visit-card {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.saas-visit-source-icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(119, 162, 255, 0.22);
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 30%, rgba(255, 255, 255, 0.16), transparent 34%),
    linear-gradient(145deg, #285ab8, #202b5d);
  color: #ffffff;
  font-size: 20px;
  font-weight: 850;
  box-shadow: 0 0 22px rgba(73, 122, 255, 0.16);
}

.saas-visit-card > div {
  min-width: 0;
  display: grid;
  gap: 6px;
}

.saas-visit-card strong {
  overflow: hidden;
  color: #f5f8ff;
  font-size: 13px;
  font-weight: 760;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.saas-visit-card span:not(.saas-visit-source-icon) {
  color: #9eb0c7;
  font-size: 11px;
  font-weight: 540;
}

.saas-visit-card small {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 4px;
  color: #52e5b4;
  font-size: 11px;
  font-weight: 650;
}

.saas-visit-card small i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #53efbd;
  box-shadow: 0 0 12px rgba(83, 239, 189, 0.78);
}

.saas-globe-readout {
  right: 4%;
  bottom: 12%;
  max-width: 330px;
  padding-left: 14px;
  border-left-color: rgba(64, 224, 238, 0.66);
}

.saas-globe-readout > span {
  color: #a8bbd2;
}

.saas-globe-readout small {
  color: #8da0b9;
}

.saas-globe-credit {
  display: none !important;
}

.saas-globe-hint {
  display: none !important;
}

.saas-globe-intro-status {
  display: none !important;
}

.saas-metrics-section {
  z-index: 8;
  margin-top: calc(-172px - max(0px, 920px - 100svh));
  padding: 0 clamp(48px, 6vw, 102px) 24px;
  background: transparent;
}

.saas-metrics-section .saas-container {
  width: 100%;
  max-width: none;
}

.saas-metrics {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  border-color: rgba(39, 142, 221, 0.3);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(5, 20, 42, 0.94), rgba(2, 12, 29, 0.92));
  box-shadow:
    0 26px 74px rgba(0, 0, 0, 0.38),
    inset 0 1px 0 rgba(111, 202, 255, 0.04),
    0 0 40px rgba(16, 101, 210, 0.08);
  backdrop-filter: blur(18px);
  transform: none;
}

body.public-home-page .saas-metrics > div,
.saas-metrics > div {
  min-height: 122px;
  grid-template-columns: 48px minmax(0, 1fr);
  grid-template-rows: 32px 16px 14px;
  column-gap: 10px;
  row-gap: 4px;
  align-content: center;
  padding: 20px 18px;
  background: transparent;
}

body.public-home-page .saas-metrics > div + div,
.saas-metrics > div + div {
  border-left: 1px solid rgba(57, 115, 179, 0.24);
}

.saas-metric-icon {
  grid-row: 1 / span 3;
  align-self: center;
  width: 48px;
  height: 48px;
  border-color: rgba(28, 206, 242, 0.44);
  background:
    radial-gradient(circle, rgba(24, 158, 239, 0.2), rgba(3, 17, 36, 0.74) 69%);
  box-shadow:
    0 0 0 8px rgba(19, 112, 185, 0.045),
    0 0 26px rgba(23, 164, 235, 0.14);
}

body.public-home-page .saas-metrics > div > strong,
.saas-metrics > div > strong,
body.public-home-page .saas-metrics > div:nth-child(2) > strong,
.saas-metrics > div:nth-child(2) > strong {
  grid-column: 2;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-width: 0;
  margin: 0;
  color: #f4f8ff;
  font-size: clamp(24px, 1.75vw, 32px);
  font-weight: 820;
  letter-spacing: -0.025em;
  line-height: 1;
  text-align: left;
  white-space: nowrap;
}

body.public-home-page .saas-metrics > div > span:not(.saas-metric-icon),
.saas-metrics > div > span:not(.saas-metric-icon) {
  grid-column: 2;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-width: 0;
  margin: 0;
  color: #c0cede;
  font-size: clamp(10px, 0.82vw, 12px);
  font-weight: 620;
  line-height: 1.25;
  text-align: left;
  white-space: nowrap;
}

body.public-home-page .saas-metrics > div > small,
.saas-metrics > div > small {
  grid-column: 2;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-width: 0;
  margin: 0;
  color: #42df9d;
  font-size: 10px;
  font-variant-numeric: tabular-nums;
  font-weight: 650;
  line-height: 1.2;
  text-align: left;
  white-space: nowrap;
}

.saas-metrics > div:nth-child(1) strong,
.saas-metrics > div:nth-child(2) strong,
.saas-metrics > div:nth-child(3) strong,
.saas-metrics > div:nth-child(4) strong,
.saas-metrics > div:nth-child(5) strong {
  color: #f4f8ff;
}

@keyframes saas-cta-breathe {
  0%,
  100% {
    box-shadow:
      0 0 0 1px rgba(31, 194, 242, 0.12),
      0 11px 30px rgba(14, 164, 226, 0.24),
      16px 0 34px rgba(121, 71, 239, 0.17);
  }
  50% {
    box-shadow:
      0 0 0 1px rgba(55, 218, 252, 0.2),
      0 14px 40px rgba(14, 177, 232, 0.34),
      19px 0 43px rgba(132, 76, 246, 0.25);
  }
}

@keyframes saas-data-tile {
  0%,
  100% {
    opacity: 0.42;
    filter: brightness(0.86);
  }
  50% {
    opacity: 0.94;
    filter: brightness(1.22);
  }
}

@media (min-width: 1280px) and (max-width: 1380px) {
  .saas-hero-layout {
    grid-template-columns: minmax(470px, 42%) minmax(0, 58%);
  }

  .saas-hero-copy {
    max-width: 570px;
    padding-left: 0;
  }

  .saas-hero h1 {
    max-width: 570px;
    font-size: clamp(50px, 3.9vw, 56px);
  }

  .saas-hero-lead {
    max-width: 540px;
    font-size: 16px;
  }

  .saas-button.is-hero-primary,
  .saas-button.is-hero-secondary {
    min-height: 56px;
    padding-inline: 20px;
    font-size: 15px;
  }

  .saas-hero-actions {
    gap: 12px;
  }

  .saas-globe-stage {
    --saas-globe-stage-right: -42px;
    width: calc(
      min(44vw, calc(100svh - 76px), 920px) +
      var(--saas-globe-render-bleed)
    );
  }

  .saas-visit-card {
    right: 3%;
    width: 208px;
  }

  body.public-home-page .saas-metrics > div,
  .saas-metrics > div {
    grid-template-columns: 44px minmax(0, 1fr);
    column-gap: 10px;
    padding-inline: 12px;
  }

  .saas-metric-icon {
    width: 40px;
    height: 40px;
  }
}

@media (min-width: 1381px) and (max-width: 1799px) {
  .saas-button.is-hero-primary,
  .saas-button.is-hero-secondary {
    padding-inline: 20px;
  }

  .saas-hero-actions {
    gap: 12px;
  }

  .saas-globe-stage {
    --saas-globe-stage-right: -52px;
    width: calc(
      min(46vw, calc(100svh - 76px), 960px) +
      var(--saas-globe-render-bleed)
    );
  }
}

@media (min-width: 1800px) {
  .saas-hero-layout {
    grid-template-columns: minmax(790px, 44%) minmax(0, 56%);
  }

  .saas-hero-copy {
    max-width: 820px;
  }

  .saas-hero h1 {
    max-width: 820px;
    font-size: 58px;
    line-height: 1.04;
  }

  .saas-title-copy {
    white-space: nowrap;
  }

  .saas-hero-lead {
    max-width: 650px;
    margin-top: 24px;
    font-size: 18px;
    line-height: 1.56;
  }

  .saas-hero-actions {
    margin-top: 28px;
  }

  .saas-globe-stage {
    --saas-globe-render-bleed: clamp(240px, 14vw, 320px);
    --saas-globe-stage-right: -150px;
  }
}

@media (min-width: 1181px) and (max-height: 900px) {
  .saas-hero {
    min-height: calc(100svh - 76px);
  }

  .saas-hero-layout {
    padding-top: 28px;
    padding-bottom: 140px;
  }

  .saas-hero h1 {
    margin-top: 16px;
    font-size: clamp(48px, 3.9vw, 56px);
  }

  .saas-hero-lead {
    margin-top: 20px;
    font-size: clamp(15px, 1.12vw, 16px);
    line-height: 1.54;
  }

  .saas-hero-actions {
    margin-top: 23px;
  }

  .saas-button.is-hero-primary,
  .saas-button.is-hero-secondary {
    min-height: 54px;
  }

  .saas-proof-row {
    margin-top: 18px;
  }

  .saas-analytics-stage {
    min-height: 0;
  }

  .saas-globe-stage {
    top: 56%;
  }

  .saas-metrics-section {
    margin-top: -132px;
  }

  body.public-home-page .saas-metrics > div,
  .saas-metrics > div {
    min-height: 108px;
    padding-block: 14px;
  }
}

@media (max-width: 1279px) {
  .saas-hero {
    min-height: auto;
  }

  .saas-code-field .is-right {
    display: none;
  }

  .saas-hero-layout {
    grid-template-columns: minmax(0, 1fr);
    gap: 36px;
    width: calc(100% - 32px);
    min-height: 0;
    padding: 68px 0 72px;
  }

  .saas-hero-copy {
    max-width: 760px;
    padding-left: 0;
  }

  .saas-hero h1 {
    max-width: 760px;
    font-size: clamp(48px, 6vw, 58px);
  }

  .saas-hero-lead {
    max-width: 680px;
  }

  .saas-analytics-stage {
    display: none;
    min-height: 0;
  }

  .saas-globe-stage {
    display: none;
  }

  .saas-visit-card {
    display: none;
  }

  .saas-globe-readout {
    display: none;
  }

  .saas-metrics-section {
    margin-top: 0;
    padding: 0 16px 40px;
    background: #030916;
  }

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

  body.public-home-page .saas-metrics > div,
  .saas-metrics > div {
    min-height: 116px;
  }

  body.public-home-page .saas-metrics > div + div,
  .saas-metrics > div + div {
    border-left: 0;
    border-top: 1px solid rgba(57, 115, 179, 0.2);
  }

  body.public-home-page .saas-metrics > div:nth-child(even),
  .saas-metrics > div:nth-child(even) {
    border-left: 1px solid rgba(57, 115, 179, 0.2);
  }
}

@media (max-width: 680px) {
  .saas-code-field {
    display: none;
  }

  .saas-data-plane {
    right: -18%;
    left: -18%;
    height: 24%;
    opacity: 0.48;
  }

  .saas-hero-layout {
    gap: 0;
    width: calc(100% - 24px);
    padding: 50px 0 54px;
  }

  .saas-eyebrow {
    min-height: 28px;
    padding-inline: 10px;
    font-size: 9px;
  }

  .saas-hero h1 {
    margin-top: 17px;
    font-size: clamp(32px, 9.2vw, 36px);
    line-height: 1.05;
  }

  .saas-title-highlight {
    white-space: normal;
    text-wrap: balance;
  }

  .saas-hero-lead {
    margin-top: 20px;
    font-size: 15px;
    line-height: 1.58;
  }

  .saas-hero-actions {
    grid-template-columns: minmax(0, 1fr);
    margin-top: 25px;
  }

  .saas-button.is-hero-primary,
  .saas-button.is-hero-secondary {
    width: 100%;
    min-height: 54px;
  }

  .saas-proof-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-top: 23px;
  }

  .saas-proof-row > span {
    width: 100%;
    min-width: 0;
    padding-inline: 8px;
    font-size: 10px;
    white-space: normal;
  }

  .saas-proof-row > span:last-child {
    grid-column: 1 / -1;
  }

  .saas-analytics-stage {
    display: none;
    min-height: 0;
  }

  .saas-globe-stage {
    display: none;
  }

  .saas-visit-card {
    display: none;
  }

  .saas-globe-readout {
    right: calc((100% - 100vw) / 2 + 12px);
    bottom: 5%;
    left: calc((100% - 100vw) / 2 + 12px);
    max-width: none;
  }

  .saas-globe-credit {
    display: none;
  }

  .saas-metrics {
    grid-template-columns: minmax(0, 1fr);
  }

  body.public-home-page .saas-metrics > div,
  .saas-metrics > div {
    min-height: 112px;
    padding: 16px 20px;
    border-left: 0 !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .saas-button.is-hero-primary {
    animation: none;
  }
}

/* One shared content rail for the complete public landing page. */
body.public-home-page {
  --saas-content-rail: 76vw;
}

body.public-home-page .topbar,
body.public-home-page .site-footer,
body.public-home-page .saas-container,
body.public-home-page .saas-hero-layout,
body.public-home-page .saas-metrics-section .saas-container {
  width: var(--saas-content-rail);
  max-width: none;
  margin-right: auto;
  margin-left: auto;
}

body.public-home-page .saas-hero-layout {
  padding-right: 0;
  padding-left: 0;
}

body.public-home-page .saas-metrics-section {
  padding-right: 0;
  padding-left: 0;
}

@media (max-width: 1180px) {
  body.public-home-page {
    --saas-content-rail: calc(100vw - 32px);
  }
}

@media (max-width: 680px) {
  body.public-home-page {
    --saas-content-rail: calc(100vw - 24px);
  }
}

/* The poster owns first paint; a verified WebGL frame replaces it only at reveal. */
.saas-globe-poster {
  position: absolute;
  z-index: 3;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: fill;
  opacity: 1;
  visibility: visible;
  background: transparent;
  transform: none;
  pointer-events: none;
  /* The fallback must return immediately for resize/context-loss paths. */
  transition: none;
}

.saas-globe-stage.is-first-frame-ready .saas-globe-poster {
  opacity: 0;
  visibility: visible;
  /* Fade only after a verified WebGL presentation frame. */
  transition: opacity 280ms cubic-bezier(0.22, 1, 0.36, 1);
}

/* Public landing: floating glass navigation. */
html.public-home-root {
  min-width: 320px;
  overflow-x: clip;
}

body.public-home-page {
  min-width: 0;
  overflow-x: clip;
}

body.public-home-page::before {
  content: "";
  position: fixed;
  z-index: 159;
  top: 0;
  right: 0;
  left: 0;
  height: 44px;
  background: linear-gradient(
    180deg,
    #020817 0,
    #020817 24px,
    rgba(2, 8, 23, 0.94) 30px,
    rgba(2, 8, 23, 0) 100%
  );
  pointer-events: none;
}

body.public-home-page .topbar {
  --floating-nav-top: 24px;
  --floating-nav-height: 62px;
  --nav-spot-x: 50%;
  --nav-spot-y: 50%;
  position: fixed;
  z-index: 160;
  top: var(--floating-nav-top);
  left: 50%;
  width: 80vw;
  min-height: var(--floating-nav-height);
  grid-template-columns: minmax(168px, 1fr) auto minmax(168px, 1fr);
  align-items: center;
  gap: clamp(10px, 1vw, 18px);
  margin: 0;
  padding: 0 clamp(14px, 1.3vw, 22px);
  isolation: isolate;
  transform: translateX(-50%);
  transition:
    top 300ms ease,
    min-height 300ms ease,
    width 300ms ease;
}

body.public-home-page .topbar::before {
  content: "";
  position: absolute;
  z-index: -2;
  inset: 0;
  width: auto;
  transform: none;
  border: 1px solid rgba(255, 255, 255, 0.055);
  border-radius: 30px;
  background:
    radial-gradient(
      260px circle at var(--nav-spot-x) var(--nav-spot-y),
      rgba(83, 205, 255, 0.065),
      rgba(113, 75, 255, 0.022) 42%,
      transparent 74%
    ),
    rgba(6, 12, 24, 0.55);
  box-shadow:
    0 24px 72px rgba(0, 7, 27, 0.44),
    0 8px 24px rgba(0, 10, 36, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.045),
    inset 0 0 30px rgba(38, 132, 255, 0.018);
  backdrop-filter: blur(28px) saturate(145%);
  -webkit-backdrop-filter: blur(28px) saturate(145%);
  pointer-events: none;
  transition:
    border-color 300ms ease,
    background-color 300ms ease,
    box-shadow 300ms ease;
}

body.public-home-page .topbar::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 10%;
  width: 20%;
  height: 1px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(56, 220, 255, 0.08) 18%,
    rgba(94, 234, 212, 0.3) 49%,
    rgba(119, 90, 255, 0.18) 76%,
    transparent
  );
  box-shadow: 0 0 12px rgba(61, 197, 255, 0.08);
  opacity: 0.52;
  pointer-events: none;
  animation: floating-nav-accent 24s ease-in-out infinite alternate;
}

body.public-home-page .topbar.is-condensed {
  --floating-nav-top: 10px;
  --floating-nav-height: 58px;
  min-height: var(--floating-nav-height);
}

body.public-home-page .topbar.is-condensed::before {
  border-color: rgba(255, 255, 255, 0.07);
  background:
    radial-gradient(
      240px circle at var(--nav-spot-x) var(--nav-spot-y),
      rgba(83, 205, 255, 0.07),
      rgba(113, 75, 255, 0.025) 42%,
      transparent 74%
    ),
    rgba(6, 12, 24, 0.82);
  box-shadow:
    0 28px 82px rgba(0, 6, 26, 0.58),
    0 10px 28px rgba(0, 8, 30, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.055),
    inset 0 0 32px rgba(38, 132, 255, 0.022);
}

body.public-home-page .site-brand {
  min-width: 0;
  min-height: 0;
  justify-self: start;
  padding: 0;
}

body.public-home-page .brand-wordmark {
  width: clamp(166px, 9.2vw, 180px);
  max-width: 100%;
  opacity: 1;
  filter:
    saturate(0.96)
    brightness(1.08)
    contrast(1.015)
    drop-shadow(0 0 11px rgba(82, 204, 255, 0.1));
  transition:
    filter 220ms ease,
    transform 220ms ease;
}

body.public-home-page .site-brand:hover .brand-wordmark,
body.public-home-page .site-brand:focus-visible .brand-wordmark {
  filter:
    saturate(1)
    brightness(1.12)
    contrast(1.02)
    drop-shadow(0 0 13px rgba(82, 204, 255, 0.14));
  transform: translateX(var(--brand-visual-offset)) translateY(-1px);
}

body.public-home-page .topbar-nav {
  justify-self: center;
  justify-content: center;
  flex-wrap: nowrap;
  gap: clamp(2px, 0.35vw, 7px);
  margin: 0;
}

body.public-home-page .public-nav-link {
  position: relative;
  min-height: 36px;
  padding: 0 clamp(8px, 0.62vw, 11px);
  border: 1px solid transparent;
  border-radius: 12px;
  background: transparent;
  color: rgba(181, 199, 222, 0.78);
  font-size: clamp(12px, 0.72vw, 13.5px);
  font-weight: 690;
  line-height: 1;
  text-decoration: none;
  transition:
    color 210ms ease,
    background-color 210ms ease,
    border-color 210ms ease,
    box-shadow 210ms ease,
    transform 210ms ease;
}

body.public-home-page .public-nav-link::after {
  content: "";
  position: absolute;
  right: 24%;
  bottom: 5px;
  left: 24%;
  height: 2px;
  display: block;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, #55e4ef, #6e8cff, transparent);
  box-shadow: 0 0 11px rgba(68, 214, 255, 0.34);
  opacity: 0;
  transform: translateY(4px) scaleX(0.45);
  transition:
    opacity 210ms ease,
    transform 210ms ease;
}

body.public-home-page .public-nav-link:hover,
body.public-home-page .public-nav-link:focus-visible {
  border-color: rgba(92, 170, 255, 0.08);
  background: rgba(82, 151, 255, 0.04);
  color: #ffffff;
  box-shadow: 0 0 22px rgba(42, 170, 255, 0.045);
  transform: translateY(-1px);
}

body.public-home-page .public-nav-link:hover::after,
body.public-home-page .public-nav-link:focus-visible::after,
body.public-home-page .public-nav-link.is-active::after {
  opacity: 1;
  transform: translateY(0) scaleX(1);
}

body.public-home-page .public-nav-link.is-active {
  border-color: rgba(92, 170, 255, 0.12);
  background:
    linear-gradient(180deg, rgba(87, 157, 255, 0.08), rgba(87, 157, 255, 0.03));
  color: #f7fbff;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 8px 24px rgba(0, 20, 55, 0.14);
}

body.public-home-page .topbar-actions {
  justify-self: end;
  flex-wrap: nowrap;
  gap: 10px;
}

body.public-home-page .language-switcher {
  z-index: 8;
}

body.public-home-page .language-trigger {
  min-height: 38px;
  gap: 8px;
  padding: 0 12px;
  border: 1px solid rgba(126, 172, 230, 0.14);
  border-radius: 13px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.02)),
    rgba(4, 12, 26, 0.34);
  color: rgba(225, 235, 248, 0.9);
  font-size: 13px;
  font-weight: 690;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.045);
  transition:
    color 210ms ease,
    border-color 210ms ease,
    background-color 210ms ease,
    box-shadow 210ms ease,
    transform 210ms ease;
}

body.public-home-page .language-trigger:hover,
body.public-home-page .language-trigger:focus-visible,
body.public-home-page .language-switcher[open] .language-trigger {
  border-color: rgba(86, 215, 245, 0.34);
  background:
    linear-gradient(180deg, rgba(58, 188, 247, 0.095), rgba(96, 82, 226, 0.045)),
    rgba(4, 12, 26, 0.48);
  color: #ffffff;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 10px 28px rgba(3, 18, 46, 0.28);
  transform: translateY(-1px);
}

body.public-home-page .language-trigger .language-icon {
  width: 17px;
  height: 17px;
  color: #8edff8;
}

body.public-home-page .language-trigger .language-chevron {
  width: 14px;
  height: 14px;
  opacity: 0.7;
}

body.public-home-page .language-menu {
  top: calc(100% + 13px);
  min-width: 164px;
  gap: 0;
  padding: 5px 4px;
  border: 1px solid rgba(92, 170, 255, 0.24);
  border-radius: 16px;
  background:
    radial-gradient(circle at 20% 0%, rgba(79, 201, 247, 0.12), transparent 46%),
    rgba(8, 20, 38, 0.94);
  box-shadow:
    0 24px 60px rgba(0, 7, 28, 0.58),
    inset 0 1px 0 rgba(255, 255, 255, 0.055);
  backdrop-filter: blur(24px) saturate(145%);
  -webkit-backdrop-filter: blur(24px) saturate(145%);
  transform-origin: top right;
  animation: floating-nav-menu-in 220ms ease both;
}

body.public-home-page .language-menu button {
  min-height: 30px;
  margin: 0;
  border: 1px solid transparent;
  border-radius: 10px;
  background: transparent;
  color: rgba(230, 240, 253, 0.96);
  font-size: 13px;
  line-height: 1;
  transition:
    color 190ms ease,
    border-color 190ms ease,
    background-color 190ms ease;
}

body.public-home-page .language-menu button:disabled {
  color: rgba(228, 238, 250, 0.92);
  opacity: 1;
}

body.public-home-page .language-menu button:hover,
body.public-home-page .language-menu button:focus-visible,
body.public-home-page .language-menu button[aria-selected="true"] {
  border-color: rgba(81, 199, 246, 0.18);
  background: linear-gradient(90deg, rgba(39, 200, 232, 0.1), rgba(102, 79, 232, 0.07));
  color: #ffffff;
}

body.public-home-page .login-cta {
  min-width: 100px;
  min-height: 38px;
  gap: 9px;
  padding: 0 16px 0 18px;
  border: 1px solid rgba(91, 188, 255, 0.22);
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(31, 174, 225, 0.14), rgba(95, 74, 220, 0.12)),
    rgba(4, 12, 26, 0.42);
  color: #f3f8ff;
  font-size: 14px;
  font-weight: 760;
  box-shadow:
    0 10px 30px rgba(0, 23, 64, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

body.public-home-page .login-cta::after {
  content: "→";
  color: #7fe5f5;
  font-size: 17px;
  font-weight: 500;
  line-height: 1;
  transition: transform 210ms ease;
}

body.public-home-page .login-cta:hover,
body.public-home-page .login-cta:focus-visible {
  border-color: rgba(91, 210, 255, 0.48);
  background:
    linear-gradient(135deg, rgba(29, 196, 227, 0.23), rgba(102, 79, 232, 0.2)),
    rgba(4, 12, 26, 0.56);
  color: #ffffff;
  box-shadow:
    0 13px 34px rgba(0, 35, 82, 0.38),
    0 0 24px rgba(48, 164, 255, 0.09),
    inset 0 1px 0 rgba(255, 255, 255, 0.075);
  transform: translateY(-1px);
}

body.public-home-page .login-cta:hover::after,
body.public-home-page .login-cta:focus-visible::after {
  transform: translateX(3px);
}

body.public-home-page .topbar :is(a, button, summary):focus-visible {
  outline: 2px solid rgba(110, 224, 255, 0.88);
  outline-offset: 3px;
}

body.public-home-page .saas-hero {
  min-height: 100svh;
}

/*
 * Keep the globe in an ordinary 2D paint tree.  A CSS perspective parent plus
 * a translated native WebGL canvas produced intermittent blank/white surfaces
 * in Yandex Chromium.  The negative margin is mathematically the same as the
 * former translateY(-50%), so the globe keeps its established 56% centre.
 */
@media (min-width: 1400px) {
  body.public-home-page .saas-globe-stage {
    --saas-globe-stage-size: calc(
      min(52vw, calc(100svh - 76px), 1080px) +
      var(--saas-globe-render-bleed)
    );
    top: 56%;
    width: var(--saas-globe-stage-size);
    margin-top: calc(var(--saas-globe-stage-size) / -2);
    transform: none;
  }
}

/* The 1280–1399px desktop layout already has a dedicated safe zone for the
   globe. Keep the compositor-safe, non-transform centring here as well. */
@media (min-width: 1280px) and (max-width: 1380px) {
  body.public-home-page .saas-globe-stage {
    --saas-globe-stage-size: calc(
      min(44vw, calc(100svh - 76px), 920px) +
      var(--saas-globe-render-bleed)
    );
    top: 56%;
    width: var(--saas-globe-stage-size);
    margin-top: calc(var(--saas-globe-stage-size) / -2);
    transform: none;
  }
}

@media (min-width: 1381px) and (max-width: 1399px) {
  body.public-home-page .saas-globe-stage {
    --saas-globe-stage-size: calc(
      min(46vw, calc(100svh - 76px), 960px) +
      var(--saas-globe-render-bleed)
    );
    top: 56%;
    width: var(--saas-globe-stage-size);
    margin-top: calc(var(--saas-globe-stage-size) / -2);
    transform: none;
  }
}

body.public-home-page .saas-hero-layout {
  padding-top: 132px;
}

body.public-home-page .saas-section[id] {
  scroll-margin-top: 106px;
}

@keyframes floating-nav-accent {
  from {
    opacity: 0.34;
    transform: translateX(0);
  }
  50% {
    opacity: 0.52;
  }
  to {
    opacity: 0.38;
    transform: translateX(300%);
  }
}

@keyframes floating-nav-menu-in {
  from {
    opacity: 0;
    transform: translateY(-7px) scale(0.985);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (min-width: 1041px) and (max-width: 1280px) {
  body.public-home-page .topbar {
    width: calc(100% - 48px);
    grid-template-columns: minmax(170px, 1fr) auto minmax(170px, 1fr);
    gap: 10px;
    padding-inline: 18px;
  }

  body.public-home-page .public-nav-link.is-tablet-optional {
    display: none;
  }

  body.public-home-page .topbar-nav {
    gap: 1px;
  }

  body.public-home-page .public-nav-link {
    padding-inline: 9px;
    font-size: 12.5px;
  }

  body.public-home-page .brand-wordmark {
    width: 168px;
  }
}

@media (max-width: 1040px) {
  body.public-home-page .saas-hero {
    min-height: auto;
  }

  body.public-home-page .topbar {
    --floating-nav-top: 16px;
    --floating-nav-height: 68px;
    width: calc(100% - 32px);
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
    padding-inline: 16px;
  }

  body.public-home-page .topbar.is-condensed {
    --floating-nav-top: 10px;
    --floating-nav-height: 62px;
  }

  body.public-home-page .topbar-nav {
    display: none;
  }

  body.public-home-page .topbar-actions {
    gap: 8px;
  }

  body.public-home-page .topbar .language-switcher {
    order: 1;
    display: block;
  }

  body.public-home-page .topbar .mobile-menu {
    order: 2;
    display: block;
  }

  body.public-home-page .topbar .login-cta {
    display: none;
  }

  body.public-home-page .brand-wordmark {
    width: clamp(150px, 23vw, 170px);
  }

  body.public-home-page .mobile-menu-trigger {
    width: 42px;
    min-width: 42px;
    height: 42px;
    min-height: 42px;
    border: 1px solid rgba(111, 168, 225, 0.21);
    border-radius: 14px;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.02)),
      rgba(4, 12, 26, 0.38);
    color: rgba(232, 241, 252, 0.9);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.045);
  }

  body.public-home-page .mobile-menu-trigger:hover,
  body.public-home-page .mobile-menu-trigger:focus-visible,
  body.public-home-page .mobile-menu[open] .mobile-menu-trigger {
    border-color: rgba(83, 215, 245, 0.36);
    background:
      linear-gradient(180deg, rgba(58, 188, 247, 0.11), rgba(96, 82, 226, 0.05)),
      rgba(4, 12, 26, 0.54);
    color: #ffffff;
  }

  body.public-home-page .mobile-menu-panel {
    position: fixed;
    top: calc(var(--floating-nav-top) + var(--floating-nav-height) + 10px);
    right: 16px;
    left: 16px;
    width: auto;
    max-width: none;
    max-height: calc(100dvh - var(--floating-nav-top) - var(--floating-nav-height) - 26px);
    gap: 12px;
    overflow-y: auto;
    overscroll-behavior: contain;
    padding: 14px;
    border: 1px solid rgba(92, 170, 255, 0.24);
    border-radius: 20px;
    background:
      radial-gradient(circle at 12% 0%, rgba(48, 195, 237, 0.095), transparent 38%),
      rgba(4, 12, 26, 0.94);
    box-shadow:
      0 28px 70px rgba(0, 7, 28, 0.66),
      inset 0 1px 0 rgba(255, 255, 255, 0.055);
    backdrop-filter: blur(26px) saturate(150%);
    -webkit-backdrop-filter: blur(26px) saturate(150%);
    transform-origin: top right;
    animation: floating-nav-menu-in 230ms ease both;
  }

  body.public-home-page .mobile-menu-panel::before {
    display: none;
  }

  body.public-home-page .mobile-menu-link {
    min-height: 44px;
    border-color: rgba(116, 165, 224, 0.13);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.035);
    color: rgba(213, 226, 243, 0.86);
    font-size: 14px;
    font-weight: 720;
    transition:
      color 190ms ease,
      border-color 190ms ease,
      background-color 190ms ease,
      transform 190ms ease;
  }

  body.public-home-page .mobile-menu-link:hover,
  body.public-home-page .mobile-menu-link:focus-visible,
  body.public-home-page .mobile-menu-link.is-active {
    border-color: rgba(76, 203, 245, 0.24);
    background: linear-gradient(90deg, rgba(43, 196, 229, 0.1), rgba(102, 79, 232, 0.065));
    color: #ffffff;
    transform: translateX(2px);
  }

  body.public-home-page .mobile-menu-login {
    min-height: 44px;
    border: 1px solid rgba(83, 205, 255, 0.34);
    border-radius: 13px;
    background:
      linear-gradient(135deg, rgba(25, 187, 222, 0.23), rgba(103, 74, 221, 0.19)),
      rgba(4, 12, 26, 0.52);
    color: #ffffff;
    box-shadow:
      0 14px 34px rgba(0, 23, 64, 0.28),
      inset 0 1px 0 rgba(255, 255, 255, 0.06);
  }

  body.public-home-page .mobile-menu-login::after {
    content: "→";
    margin-left: 9px;
    color: #7fe5f5;
    font-size: 17px;
  }

  body.public-home-page .saas-hero-layout {
    padding-top: 116px;
  }

  body.public-home-page .saas-section[id] {
    scroll-margin-top: 90px;
  }
}

@media (max-width: 620px) {
  body.public-home-page .topbar {
    --floating-nav-top: 10px;
    --floating-nav-height: 62px;
    width: calc(100% - 20px);
    gap: 8px;
    padding-inline: 12px;
    border-radius: 18px;
  }

  body.public-home-page .topbar.is-condensed {
    --floating-nav-top: 7px;
    --floating-nav-height: 58px;
  }

  body.public-home-page .topbar::before {
    border-radius: 18px;
  }

  body.public-home-page .brand-wordmark {
    width: clamp(130px, 40vw, 148px);
  }

  body.public-home-page .language-trigger {
    width: 38px;
    min-width: 38px;
    min-height: 40px;
    padding: 0;
    justify-content: center;
  }

  body.public-home-page .language-trigger .language-chevron {
    display: none;
  }

  body.public-home-page .mobile-menu-trigger {
    width: 40px;
    min-width: 40px;
    height: 40px;
    min-height: 40px;
  }

  body.public-home-page .language-menu {
    right: -50px;
  }

  body.public-home-page .mobile-menu-panel {
    top: calc(var(--floating-nav-top) + var(--floating-nav-height) + 8px);
    right: 10px;
    left: 10px;
    max-height: calc(100dvh - var(--floating-nav-top) - var(--floating-nav-height) - 20px);
    border-radius: 18px;
  }

  body.public-home-page .saas-hero-layout {
    padding-top: 104px;
  }
}

@media (max-width: 350px) {
  body.public-home-page .brand-wordmark {
    width: 124px;
  }

  body.public-home-page .topbar-actions {
    gap: 6px;
  }
}

@media (prefers-reduced-motion: reduce) {
  body.public-home-page .topbar,
  body.public-home-page .topbar::before,
  body.public-home-page .topbar::after,
  body.public-home-page .brand-wordmark,
  body.public-home-page .public-nav-link,
  body.public-home-page .public-nav-link::after,
  body.public-home-page .language-trigger,
  body.public-home-page .language-menu,
  body.public-home-page .login-cta,
  body.public-home-page .login-cta::after,
  body.public-home-page .mobile-menu-trigger,
  body.public-home-page .mobile-menu-panel,
  body.public-home-page .mobile-menu-link {
    scroll-behavior: auto;
    transition-duration: 0.01ms;
    animation: none;
  }
}

/* Landing lockup: supplied pfexpert.io domain wordmark only. */
body.public-home-page .site-brand {
  width: 223px;
  max-width: none;
}

body.public-home-page .brand-reference-lockup {
  width: 223px;
  max-width: none;
  height: 39px;
  aspect-ratio: auto;
  display: inline-flex;
  align-items: center;
  gap: 0;
  overflow: visible;
  opacity: 1;
  filter: none;
  transform: none;
}

body.public-home-page .brand-reference-name {
  position: relative;
  flex: 0 0 auto;
  display: block;
  overflow: hidden;
  isolation: auto;
}

body.public-home-page .brand-reference-name {
  width: 159px;
  height: 29px;
}

body.public-home-page .brand-reference-lockup img {
  position: absolute;
  display: block;
  max-width: none;
  object-fit: fill;
  mix-blend-mode: normal;
  filter: brightness(1.3) saturate(1.04) contrast(1);
  pointer-events: none;
}

body.public-home-page .brand-reference-name img {
  top: -6.9px;
  left: -6.9px;
  width: 175px;
  height: 36.9px;
  -webkit-mask-image: url("/assets/pfexpert-reference-wordmark.png?v=20260729-reference-logo-1");
  mask-image: url("/assets/pfexpert-reference-wordmark.png?v=20260729-reference-logo-1");
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  mask-mode: luminance;
}

body.public-home-page .site-brand:hover .brand-reference-lockup,
body.public-home-page .site-brand:focus-visible .brand-reference-lockup {
  filter: none;
  transform: none;
}

@media (max-width: 620px) {
  body.public-home-page .site-brand,
  body.public-home-page .brand-reference-lockup {
    width: 177px;
  }

  body.public-home-page .brand-reference-lockup {
    height: 31px;
    gap: 0;
  }

  body.public-home-page .brand-reference-name {
    width: 126px;
    height: 23px;
  }

  body.public-home-page .brand-reference-name img {
    top: -5.5px;
    left: -5.5px;
    width: 138.6px;
    height: 29.2px;
  }
}

/* Landing screen two: unified traffic scenario console. */
body.public-home-page .scenario-control-section {
  position: relative;
  z-index: 3;
  min-height: 100svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  padding: clamp(96px, 9svh, 132px) 0;
  scroll-margin-top: 110px;
  background:
    radial-gradient(ellipse 76% 24% at 70% 0%, rgba(32, 165, 221, 0.1), transparent 72%),
    linear-gradient(180deg, #07111e 0%, #081321 42%, #09131f 100%);
}

body.public-home-page .scenario-control-section::before {
  content: "";
  position: absolute;
  z-index: -2;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(112, 173, 216, 0.034) 1px, transparent 1px),
    linear-gradient(90deg, rgba(112, 173, 216, 0.034) 1px, transparent 1px);
  background-size: 88px 88px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.28) 76%, transparent);
}

body.public-home-page .scenario-control-section::after {
  content: "";
  position: absolute;
  z-index: -3;
  inset: -24% -12%;
  pointer-events: none;
  background:
    radial-gradient(ellipse 34% 42% at 26% 52%, rgba(20, 185, 213, 0.075), transparent 74%),
    radial-gradient(ellipse 42% 48% at 78% 50%, rgba(101, 76, 219, 0.07), transparent 76%);
  filter: blur(110px);
  transform: translate3d(0, 0, 0);
  animation: scenario-ambient-drift 24s ease-in-out infinite alternate;
}

body.public-home-page .scenario-control-section > .scenario-route-background::before {
  content: "";
  position: absolute;
  top: -42px;
  left: 6%;
  width: 88%;
  height: 150px;
  border-top: 1px solid rgba(76, 199, 235, 0.16);
  border-radius: 50%;
  opacity: 0.72;
  filter: blur(0.2px);
  mask-image: linear-gradient(90deg, transparent, #000 22%, #000 78%, transparent);
}

.scenario-route-background {
  position: absolute;
  z-index: -1;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.scenario-background-route {
  position: absolute;
  top: var(--route-y);
  left: var(--route-x);
  width: var(--route-width);
  height: clamp(44px, 6vw, 90px);
  border-top: 1px solid rgba(90, 188, 224, 0.12);
  border-radius: 50% 50% 0 0;
  opacity: 0.82;
  transform: rotate(var(--route-angle));
  transform-origin: center;
  transition:
    border-color 260ms ease,
    opacity 260ms ease,
    filter 260ms ease;
}

.scenario-background-route::before,
.scenario-background-route::after {
  content: "";
  position: absolute;
  top: -3px;
  width: 5px;
  height: 5px;
  border: 1px solid rgba(91, 211, 228, 0.32);
  border-radius: 50%;
  background: #081321;
}

.scenario-background-route::before {
  left: 0;
}

.scenario-background-route::after {
  right: 0;
}

.scenario-background-route > i {
  position: absolute;
  top: -3px;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(103, 231, 235, 0.9);
  box-shadow:
    0 0 10px rgba(68, 214, 233, 0.72),
    0 0 24px rgba(68, 214, 233, 0.28);
  animation: scenario-route-pulse var(--route-duration) linear var(--route-delay) infinite;
  animation-play-state: paused;
}

.scenario-control-section.is-in-view .scenario-background-route > i {
  animation-play-state: running;
}

.scenario-background-route.is-linked {
  border-color: rgba(97, 225, 231, 0.28);
  opacity: 1;
  filter: drop-shadow(0 0 8px rgba(55, 205, 225, 0.14));
}

.scenario-background-label {
  position: absolute;
  top: var(--label-y);
  left: var(--label-x);
  color: rgba(118, 164, 194, 0.055);
  font-family: ui-monospace, SFMono-Regular, Consolas, "Liberation Mono", monospace;
  font-size: 11px;
  font-weight: 600;
  white-space: nowrap;
}

.scenario-control-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.4fr) minmax(0, 0.6fr);
  align-items: center;
  gap: clamp(34px, 3.4vw, 64px);
}

.scenario-control-copy {
  min-width: 0;
  max-width: 580px;
}

body.public-home-page .scenario-control-copy .saas-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 22px;
  color: #72e6dc;
  font-size: 11px;
  font-weight: 780;
  line-height: 1.2;
  text-transform: uppercase;
}

body.public-home-page .scenario-control-copy .saas-kicker::before {
  content: "";
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #5eead4;
  box-shadow:
    0 0 0 6px rgba(94, 234, 212, 0.06),
    0 0 18px rgba(94, 234, 212, 0.5);
}

body.public-home-page .scenario-control-copy h2 {
  max-width: 570px;
  margin: 0;
  color: #f4f8ff;
  font-size: clamp(38px, 2.7vw, 54px);
  font-weight: 820;
  line-height: 1.04;
  text-wrap: wrap;
}

.scenario-control-description {
  max-width: 550px;
  margin: 26px 0 0;
  color: #9bacc1;
  font-size: clamp(16px, 1.1vw, 18px);
  line-height: 1.68;
}

.scenario-control-strong {
  position: relative;
  max-width: 530px;
  margin: 28px 0 0;
  padding: 2px 0 2px 18px;
  color: #dce8f5;
  font-size: 15px;
  font-weight: 660;
  line-height: 1.58;
}

.scenario-control-strong::before {
  content: "";
  position: absolute;
  top: 2px;
  bottom: 2px;
  left: 0;
  width: 2px;
  border-radius: 2px;
  background: linear-gradient(180deg, #69e7dc, rgba(85, 128, 255, 0.28));
  box-shadow: 0 0 18px rgba(92, 225, 221, 0.18);
}

.scenario-control-flow {
  width: min(100%, 410px);
  display: grid;
  grid-template-columns: auto minmax(20px, 1fr) auto minmax(20px, 1fr) auto;
  align-items: center;
  gap: 9px;
  margin-top: 34px;
  color: #71869f;
  font-size: 10px;
  font-weight: 700;
}

.scenario-control-flow > i {
  position: relative;
  height: 1px;
  overflow: visible;
  background: linear-gradient(90deg, rgba(74, 201, 218, 0.18), rgba(95, 116, 233, 0.38));
}

.scenario-control-flow > i::after {
  content: "";
  position: absolute;
  top: -2px;
  right: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #6dd9e2;
  box-shadow: 0 0 10px rgba(91, 216, 229, 0.5);
}

.traffic-scenario-console {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(120, 190, 255, 0.14);
  border-radius: 26px;
  background:
    linear-gradient(145deg, rgba(14, 27, 45, 0.86), rgba(7, 17, 30, 0.94));
  box-shadow:
    0 42px 100px rgba(0, 2, 14, 0.46),
    0 0 80px rgba(22, 150, 198, 0.055),
    inset 0 1px 0 rgba(255, 255, 255, 0.045),
    inset 0 0 60px rgba(61, 152, 216, 0.025);
  backdrop-filter: blur(24px) saturate(125%);
  -webkit-backdrop-filter: blur(24px) saturate(125%);
}

.traffic-scenario-console::before {
  content: "";
  position: absolute;
  top: 0;
  right: 8%;
  left: 8%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(91, 227, 225, 0.5), rgba(111, 97, 238, 0.38), transparent);
  opacity: 0.7;
}

.traffic-scenario-console-head {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 22px;
  border-bottom: 1px solid rgba(131, 182, 220, 0.1);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.028), rgba(255, 255, 255, 0));
}

.traffic-scenario-console-head > div:first-child {
  min-width: 0;
  display: grid;
  gap: 5px;
}

.traffic-scenario-console-head > div:first-child > span {
  color: #6e859f;
  font-size: 10px;
  font-weight: 720;
  text-transform: uppercase;
}

.traffic-scenario-console-head > div:first-child > strong {
  overflow: hidden;
  color: #e8f1fb;
  font-size: 15px;
  font-weight: 760;
  line-height: 1.2;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.traffic-scenario-console-state {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 13px;
}

.traffic-scenario-console-state > span {
  color: #617890;
  font-size: 10px;
  font-weight: 650;
}

.traffic-scenario-console-state > strong {
  min-height: 29px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 0 10px;
  border: 1px solid rgba(91, 224, 215, 0.16);
  border-radius: 999px;
  background: rgba(66, 199, 176, 0.07);
  color: #8be6c4;
  font-size: 10px;
  font-weight: 760;
}

.traffic-scenario-console-state > strong > i,
.traffic-scenario-console-foot strong > i {
  width: 6px;
  height: 6px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #67e3c4;
  box-shadow: 0 0 10px rgba(103, 227, 196, 0.58);
}

.traffic-scenario-console-state > strong > i {
  animation: scenario-status-pulse 2.8s ease-out infinite;
}

.traffic-scenario-groups {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin: 16px;
  overflow: hidden;
  border: 1px solid rgba(128, 177, 217, 0.09);
  border-radius: 15px;
  background: rgba(127, 176, 218, 0.1);
}

.traffic-scenario-module {
  min-width: 0;
  min-height: 270px;
  padding: 17px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.032), rgba(255, 255, 255, 0.014)),
    rgba(7, 17, 29, 0.72);
  transition:
    background-color 240ms ease,
    box-shadow 240ms ease;
}

.traffic-scenario-module:hover {
  background:
    linear-gradient(145deg, rgba(61, 201, 213, 0.048), rgba(100, 83, 222, 0.025)),
    rgba(8, 19, 33, 0.82);
  box-shadow: inset 0 0 32px rgba(50, 183, 213, 0.035);
}

.traffic-scenario-module > header {
  min-height: 47px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  padding-bottom: 12px;
}

.traffic-scenario-module > header > div {
  min-width: 0;
}

.traffic-scenario-module h3 {
  margin: 0;
  color: #e9f1fb;
  font-size: 14px;
  font-weight: 760;
  line-height: 1.25;
}

.traffic-scenario-module > header p {
  margin: 4px 0 0;
  color: #6f839b;
  font-size: 9px;
  font-weight: 570;
  line-height: 1.35;
}

.traffic-scenario-module > header > span {
  flex: 0 0 auto;
  color: rgba(102, 222, 220, 0.42);
  font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
  font-size: 10px;
  font-weight: 700;
}

.traffic-scenario-module-body {
  display: grid;
  align-content: start;
}

.scenario-feature-control {
  min-width: 0;
  padding: 9px 0 10px;
  border-top: 1px solid rgba(130, 171, 210, 0.075);
}

.scenario-feature-control:first-child {
  border-top-color: rgba(130, 171, 210, 0.11);
}

.scenario-feature-heading {
  min-width: 0;
  display: grid;
  gap: 2px;
}

.scenario-feature-heading > strong {
  overflow: hidden;
  color: #cddbeb;
  font-size: 11px;
  font-weight: 720;
  line-height: 1.25;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.scenario-feature-heading > span {
  overflow: hidden;
  color: #667b93;
  font-size: 8px;
  font-weight: 590;
  line-height: 1.25;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.scenario-feature-visual {
  min-width: 0;
  margin-top: 7px;
}

.scenario-selector {
  min-width: 0;
  min-height: 30px;
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr) auto 8px;
  align-items: center;
  gap: 7px;
  padding: 0 8px;
  border: 1px solid rgba(123, 173, 213, 0.11);
  border-radius: 7px;
  background: rgba(3, 10, 20, 0.48);
}

.scenario-selector > strong {
  overflow: hidden;
  color: #dbe7f4;
  font-size: 10px;
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.scenario-selector > small {
  color: #71869e;
  font-size: 8px;
  font-weight: 650;
}

.scenario-selector > i {
  width: 6px;
  height: 6px;
  border-right: 1px solid #7890aa;
  border-bottom: 1px solid #7890aa;
  transform: translateY(-2px) rotate(45deg);
}

.scenario-provider {
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(91, 148, 229, 0.18);
  border-radius: 5px;
  background: rgba(66, 122, 222, 0.09);
  color: #76a8ff;
  font-size: 10px;
  font-weight: 850;
}

.scenario-selector.is-geo {
  grid-template-columns: 20px minmax(0, 1fr) auto;
}

.scenario-location-dot {
  position: relative;
  width: 15px;
  height: 15px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(97, 225, 214, 0.34);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
}

.scenario-location-dot::after {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #6ee4d8;
}

.scenario-query {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 7px;
}

.scenario-query > span,
.scenario-query > strong {
  min-height: 27px;
  display: inline-flex;
  align-items: center;
  padding: 0 9px;
  border: 1px solid rgba(126, 171, 211, 0.11);
  border-radius: 6px;
  background: rgba(5, 13, 23, 0.54);
  color: #b7c7d9;
  font-size: 9px;
  font-weight: 660;
}

.scenario-query > strong {
  border-color: rgba(94, 219, 211, 0.19);
  background: rgba(63, 196, 185, 0.07);
  color: #83ddd3;
}

.scenario-query > i {
  color: #536b84;
  font-size: 9px;
  font-style: normal;
}

.scenario-duration {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 10px;
}

.scenario-duration > strong {
  color: #91e4dc;
  font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
  font-size: 13px;
  font-weight: 720;
}

.scenario-track {
  position: relative;
  height: 4px;
  border-radius: 4px;
  background: rgba(115, 145, 179, 0.15);
}

.scenario-track > i {
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--control-value);
  border-radius: inherit;
  background: linear-gradient(90deg, #48cfdb, #6967e7);
}

.scenario-track > i::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -4px;
  width: 8px;
  height: 8px;
  border: 2px solid #b8f5ef;
  border-radius: 50%;
  background: #4b9edf;
  box-shadow: 0 0 10px rgba(74, 198, 221, 0.4);
  transform: translateY(-50%);
}

.scenario-duration > span {
  grid-column: 2;
  display: flex;
  justify-content: space-between;
  margin-top: -5px;
}

.scenario-duration > span small {
  color: #536a82;
  font-size: 7px;
}

.scenario-timeline {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 8px;
  color: #7890a8;
  font-size: 8px;
  font-weight: 660;
}

.scenario-timeline > div {
  position: relative;
  height: 5px;
  border-radius: 5px;
  background:
    repeating-linear-gradient(90deg, transparent 0 11px, rgba(140, 174, 209, 0.1) 11px 12px),
    rgba(113, 145, 181, 0.11);
}

.scenario-timeline > div > i {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 18%;
  width: 68%;
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(59, 207, 218, 0.78), rgba(100, 85, 222, 0.72));
}

.scenario-timeline > div > b {
  position: absolute;
  top: 50%;
  left: calc(86% - 4px);
  width: 8px;
  height: 8px;
  border: 2px solid #b9f4ed;
  border-radius: 50%;
  background: #6375e6;
  transform: translateY(-50%);
}

.scenario-weekdays {
  height: 34px;
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  align-items: end;
  gap: 5px;
}

.scenario-weekdays > span {
  min-width: 0;
  height: 100%;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  align-items: end;
  gap: 3px;
  text-align: center;
}

.scenario-weekdays i {
  width: 100%;
  height: var(--weekday-value);
  min-height: 3px;
  border-radius: 2px 2px 0 0;
  background: linear-gradient(180deg, rgba(85, 219, 217, 0.86), rgba(72, 91, 203, 0.34));
}

.scenario-weekdays small {
  color: #5d7289;
  font-size: 7px;
  line-height: 1;
}

.scenario-feature-control.is-segmented-chart {
  padding-top: 12px;
}

.scenario-environment {
  display: grid;
  gap: 10px;
  margin-top: 4px;
}

.scenario-segment-labels {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  color: #71869e;
  font-size: 8px;
}

.scenario-segment-labels strong {
  color: #d8e7f4;
  font-size: 11px;
}

.scenario-segment-bar {
  height: 8px;
  display: flex;
  gap: 2px;
  overflow: hidden;
  border-radius: 5px;
  background: rgba(111, 143, 178, 0.11);
}

.scenario-segment-bar > i {
  width: 65%;
  background: linear-gradient(90deg, #3bd0dc, #368fe3);
}

.scenario-segment-bar > b {
  width: 35%;
  background: linear-gradient(90deg, #746be7, #9a6ee8);
}

.scenario-environment-details {
  display: grid;
  gap: 9px;
}

.scenario-environment-details > span {
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 5px 8px;
}

.scenario-environment-details > span > i {
  position: relative;
  grid-column: 1 / -1;
  height: 3px;
  overflow: hidden;
  border-radius: 3px;
  background: rgba(111, 144, 179, 0.11);
}

.scenario-environment-details > span > i::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--detail-value);
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(68, 198, 216, 0.82), rgba(99, 90, 218, 0.62));
}

.scenario-environment-details small {
  color: #8195aa;
  font-size: 8px;
}

.scenario-environment-details b {
  color: #a8bacb;
  font-size: 8px;
  font-weight: 700;
}

.scenario-exit-routes {
  display: grid;
  gap: 6px;
}

.scenario-exit-routes > div {
  height: 7px;
  display: flex;
  gap: 2px;
  overflow: hidden;
  border-radius: 4px;
}

.scenario-exit-routes > div > span {
  width: var(--route-share);
  background: #3fcbd4;
}

.scenario-exit-routes > div > span:nth-child(2) {
  background: #4d92e7;
}

.scenario-exit-routes > div > span:nth-child(3) {
  background: #886de5;
}

.scenario-exit-routes > p {
  display: flex;
  justify-content: space-between;
  gap: 6px;
  margin: 0;
  color: #62778e;
  font-size: 7px;
}

.scenario-exit-routes > p b {
  color: #9db0c3;
  font-weight: 700;
}

.scenario-action-sequence {
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 16px minmax(0, 1fr) 16px minmax(0, 1fr);
  align-items: center;
  gap: 4px;
}

.scenario-action-sequence > span {
  min-height: 26px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(120, 171, 211, 0.1);
  border-radius: 6px;
  background: rgba(4, 12, 22, 0.48);
  color: #9aadc0;
  font-size: 8px;
  font-weight: 650;
  text-overflow: ellipsis;
}

.scenario-action-sequence > span:last-child {
  border-color: rgba(101, 224, 207, 0.18);
  color: #80d9cf;
}

.scenario-action-sequence > i {
  position: relative;
  height: 1px;
  background: rgba(94, 171, 207, 0.22);
}

.scenario-action-sequence > i::after {
  content: "";
  position: absolute;
  top: -2px;
  right: 0;
  width: 4px;
  height: 4px;
  border-top: 1px solid #5a91aa;
  border-right: 1px solid #5a91aa;
  transform: rotate(45deg);
}

.scenario-bounce {
  display: flex;
  align-items: center;
  gap: 11px;
}

.scenario-bounce > span {
  --bounce-angle: calc(var(--bounce-value) * 3.6);
  position: relative;
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: conic-gradient(#5ad9d5 0 18%, rgba(109, 142, 177, 0.12) 18% 100%);
}

.scenario-bounce > span::before {
  content: "";
  position: absolute;
  inset: 4px;
  border-radius: inherit;
  background: #0b1726;
}

.scenario-bounce > span strong {
  position: relative;
  z-index: 1;
  color: #d7e5f2;
  font-size: 9px;
  font-weight: 760;
}

.scenario-bounce > div {
  min-width: 0;
  display: grid;
  gap: 3px;
}

.scenario-bounce > div b {
  color: #9fb1c3;
  font-size: 9px;
  font-weight: 680;
}

.scenario-bounce > div small {
  color: #61768d;
  font-size: 8px;
}

.traffic-scenario-console-foot {
  min-height: 43px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 0 21px 13px;
  color: #5d7289;
  font-size: 9px;
  font-weight: 620;
}

.traffic-scenario-console-foot strong {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #789b9b;
  font-size: 9px;
  font-weight: 680;
}

.traffic-scenario-console:has(.scenario-wizard-grid) {
  padding: 13px;
}

.scenario-wizard-grid {
  min-width: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  gap: 11px;
}

.scenario-wizard-step {
  --wizard-accent: #55d8d1;
  position: relative;
  min-width: 0;
  min-height: 336px;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  overflow: hidden;
  border: 1px solid rgba(125, 177, 219, 0.13);
  border-radius: 14px;
  background:
    linear-gradient(155deg, rgba(255, 255, 255, 0.032), transparent 46%),
    rgba(6, 15, 27, 0.79);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.026),
    0 16px 34px rgba(0, 5, 18, 0.16);
  transition:
    border-color 240ms ease,
    background-color 240ms ease,
    box-shadow 240ms ease,
    transform 240ms ease;
}

.scenario-wizard-step.is-sources {
  --wizard-accent: #52a7ea;
}

.scenario-wizard-step.is-geo {
  --wizard-accent: #6edbc7;
}

.scenario-wizard-step.is-schedule {
  --wizard-accent: #8b79e8;
}

.scenario-wizard-step::before {
  content: "";
  position: absolute;
  z-index: 2;
  top: 0;
  left: 16px;
  width: 72px;
  height: 1px;
  background: linear-gradient(90deg, var(--wizard-accent), transparent);
  opacity: 0.72;
}

.scenario-wizard-step:hover {
  border-color: color-mix(in srgb, var(--wizard-accent) 26%, transparent);
  background:
    linear-gradient(155deg, color-mix(in srgb, var(--wizard-accent) 5%, transparent), transparent 48%),
    rgba(7, 17, 30, 0.88);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.038),
    0 19px 42px rgba(0, 5, 18, 0.23);
  transform: translateY(-2px);
}

.scenario-wizard-step-head {
  min-width: 0;
  min-height: 68px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  padding: 12px 13px 11px;
  border-bottom: 1px solid rgba(127, 174, 214, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.022), transparent);
}

.scenario-wizard-step-head > span {
  min-width: 45px;
  min-height: 25px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 8px;
  border: 1px solid color-mix(in srgb, var(--wizard-accent) 30%, transparent);
  border-radius: 999px;
  background: color-mix(in srgb, var(--wizard-accent) 7%, transparent);
  color: color-mix(in srgb, var(--wizard-accent) 82%, white);
  font-size: 8px;
  font-weight: 780;
  white-space: nowrap;
}

.scenario-wizard-step-head > div {
  min-width: 0;
}

.scenario-wizard-step-head h3 {
  margin: 0;
  color: #e8f1fb;
  font-size: 12px;
  font-weight: 760;
  line-height: 1.22;
}

.scenario-wizard-step-head p {
  margin: 3px 0 0;
  color: #667d96;
  font-size: 7px;
  font-weight: 570;
  line-height: 1.3;
}

.scenario-wizard-step-body {
  min-width: 0;
  padding: 11px 13px 9px;
}

.scenario-wizard-form {
  min-width: 0;
  height: 100%;
  display: grid;
  align-content: start;
  gap: 7px;
}

.scenario-wizard-field {
  min-width: 0;
  min-height: 35px;
  display: grid;
  align-content: center;
  gap: 3px;
  padding: 5px 8px;
  border: 1px solid rgba(125, 174, 215, 0.1);
  border-radius: 7px;
  background: rgba(2, 9, 18, 0.42);
}

.scenario-wizard-field > span,
.scenario-source-row span,
.scenario-wizard-activity > span {
  color: #667d95;
  font-size: 7px;
  font-weight: 620;
  line-height: 1.2;
}

.scenario-wizard-field > strong {
  min-width: 0;
  overflow: hidden;
  color: #c9d8e7;
  font-size: 9px;
  font-weight: 680;
  line-height: 1.2;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.scenario-wizard-field-grid {
  min-width: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 7px;
}

.scenario-wizard-ratio {
  min-width: 0;
  display: grid;
  gap: 5px;
  padding: 5px 2px 2px;
}

.scenario-wizard-section-label {
  color: #667d95;
  font-size: 7px;
  font-weight: 620;
  line-height: 1.2;
}

.scenario-wizard-ratio > div {
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 6px;
  color: #6b8198;
  font-size: 7px;
  font-weight: 620;
}

.scenario-wizard-ratio > div span:last-child {
  text-align: right;
}

.scenario-wizard-ratio > div strong {
  color: #c9d9e8;
  font-size: 8px;
  font-weight: 720;
  white-space: nowrap;
}

.scenario-wizard-ratio > i {
  position: relative;
  height: 4px;
  border-radius: 4px;
  background:
    linear-gradient(90deg, #45cad5 0 50%, #7568df 50% 100%);
  box-shadow: 0 0 12px rgba(67, 194, 212, 0.08);
}

.scenario-wizard-ratio > i > b {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  border: 2px solid #b6f5ee;
  border-radius: 50%;
  background: #4cbfd0;
  box-shadow: 0 0 9px rgba(71, 204, 214, 0.28);
  transform: translate(-50%, -50%);
}

.scenario-wizard-activity {
  display: grid;
  gap: 6px;
  margin-top: 2px;
}

.scenario-wizard-activity > div {
  min-width: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 4px;
}

.scenario-wizard-activity i {
  min-width: 0;
  min-height: 26px;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 0 4px;
  border: 1px solid rgba(126, 173, 213, 0.1);
  border-radius: 6px;
  background: rgba(7, 16, 28, 0.65);
  color: #687e96;
  font-size: 5px;
  font-style: normal;
  font-weight: 650;
  text-align: center;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.scenario-wizard-activity i.is-selected {
  border-color: rgba(83, 216, 206, 0.26);
  background: rgba(69, 197, 189, 0.09);
  color: #9de7df;
}

.scenario-wizard-form.is-sources {
  gap: 9px;
}

.scenario-source-row {
  position: relative;
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.05fr) minmax(0, 0.8fr);
  gap: 5px;
  padding: 9px 7px;
  border: 1px solid rgba(126, 173, 213, 0.1);
  border-radius: 8px;
  background: rgba(4, 11, 21, 0.45);
}

.scenario-source-row.is-selected {
  border-color: rgba(78, 182, 227, 0.18);
  box-shadow: inset 2px 0 0 rgba(79, 205, 215, 0.68);
}

.scenario-source-row > div {
  min-width: 0;
  display: grid;
  align-content: start;
  gap: 5px;
}

.scenario-source-row strong {
  min-width: 0;
  min-height: 27px;
  display: flex;
  align-items: center;
  gap: 5px;
  overflow: hidden;
  padding: 0 6px;
  border: 1px solid rgba(123, 171, 211, 0.09);
  border-radius: 6px;
  background: rgba(2, 8, 17, 0.5);
  color: #bfcede;
  font-size: 7px;
  font-weight: 680;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.scenario-source-row strong > i {
  font-size: 10px;
  font-style: normal;
  font-weight: 820;
}

.scenario-source-row strong > i.is-yandex {
  color: #ff654f;
}

.scenario-source-row strong > i.is-google {
  color: #66a2ff;
}

.scenario-source-row strong.is-accent {
  justify-content: center;
  border-color: rgba(79, 207, 199, 0.18);
  color: #78ded4;
}

.scenario-wizard-add {
  min-height: 31px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  justify-self: end;
  padding: 0 10px;
  border: 1px solid rgba(84, 169, 231, 0.17);
  border-radius: 7px;
  background: rgba(66, 132, 219, 0.055);
  color: #8db7df;
  font: inherit;
  font-size: 7px;
  font-weight: 700;
  pointer-events: none;
}

.scenario-wizard-add > i {
  color: #75ddd7;
  font-size: 12px;
  font-style: normal;
  line-height: 1;
}

.scenario-wizard-form.is-geo {
  grid-template-columns: minmax(74px, 0.38fr) minmax(0, 0.62fr);
  gap: 7px;
}

.scenario-geo-countries,
.scenario-geo-regions {
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(124, 174, 215, 0.1);
  border-radius: 8px;
  background: rgba(3, 10, 19, 0.42);
}

.scenario-geo-countries {
  display: grid;
  align-content: start;
}

.scenario-geo-countries > span {
  min-width: 0;
  min-height: 39px;
  display: grid;
  grid-template-columns: 16px minmax(0, 1fr) auto;
  align-items: center;
  gap: 5px;
  padding: 0 7px;
  border-bottom: 1px solid rgba(123, 172, 213, 0.08);
  color: #8094a9;
}

.scenario-geo-countries > span:last-child {
  border-bottom: 0;
}

.scenario-geo-countries > span.is-selected {
  background: rgba(70, 204, 194, 0.08);
  box-shadow: inset 2px 0 0 #56d7cf;
  color: #d5e5f2;
}

.scenario-geo-countries i {
  font-size: 12px;
  font-style: normal;
  line-height: 1;
}

.scenario-geo-countries strong {
  min-width: 0;
  overflow: hidden;
  font-size: 7px;
  font-weight: 680;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.scenario-geo-countries small {
  color: #60778f;
  font-size: 6px;
  font-weight: 720;
}

.scenario-geo-regions {
  display: grid;
  align-content: start;
}

.scenario-geo-regions > header {
  min-height: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 7px;
  padding: 0 8px;
  border-bottom: 1px solid rgba(123, 172, 213, 0.08);
}

.scenario-geo-regions > header strong {
  color: #c8d7e5;
  font-size: 8px;
}

.scenario-geo-regions > header span {
  color: #73a9d2;
  font-size: 6px;
  font-weight: 650;
  white-space: nowrap;
}

.scenario-geo-search {
  min-height: 28px;
  display: flex;
  align-items: center;
  margin: 6px;
  padding: 0 7px;
  overflow: hidden;
  border: 1px solid rgba(121, 169, 210, 0.1);
  border-radius: 6px;
  background: rgba(2, 8, 16, 0.52);
  color: #516a84;
  font-size: 6px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.scenario-geo-option {
  min-width: 0;
  min-height: 31px;
  display: grid;
  grid-template-columns: 12px minmax(0, 1fr);
  align-items: center;
  gap: 6px;
  padding: 0 7px;
  border-top: 1px solid rgba(122, 171, 212, 0.07);
  color: #8498ac;
  font-size: 7px;
  font-weight: 640;
}

.scenario-geo-option.is-city {
  padding-left: 15px;
}

.scenario-geo-option > i {
  width: 10px;
  height: 10px;
  border: 1px solid rgba(125, 169, 207, 0.3);
  border-radius: 3px;
}

.scenario-geo-option.is-selected {
  color: #c9dae8;
}

.scenario-geo-option.is-selected > i {
  position: relative;
  border-color: #4fcbd3;
  background: #3aaed2;
}

.scenario-geo-option.is-selected > i::after {
  content: "";
  position: absolute;
  top: 1px;
  left: 3px;
  width: 3px;
  height: 5px;
  border-right: 1px solid white;
  border-bottom: 1px solid white;
  transform: rotate(45deg);
}

.scenario-wizard-form.is-schedule {
  gap: 9px;
}

.scenario-schedule-head {
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(0, 0.58fr) minmax(82px, 1fr);
  align-items: stretch;
  gap: 6px;
}

.scenario-schedule-head > span {
  min-width: 0;
  min-height: 37px;
  display: grid;
  align-content: center;
  gap: 2px;
  padding: 4px 7px;
  border: 1px solid rgba(123, 171, 212, 0.1);
  border-radius: 7px;
  background: rgba(2, 9, 18, 0.44);
}

.scenario-schedule-head small {
  overflow: hidden;
  color: #667d95;
  font-size: 6px;
  font-weight: 620;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.scenario-schedule-head strong {
  color: #72ddd5;
  font-size: 11px;
  line-height: 1;
}

.scenario-schedule-head > span.is-timezone {
  align-content: center;
  color: #9bb0c4;
  font-size: 7px;
  font-weight: 650;
  white-space: nowrap;
}

.scenario-schedule-chart {
  position: relative;
  min-height: 132px;
  overflow: hidden;
  border: 1px solid rgba(125, 174, 215, 0.1);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(14, 30, 47, 0.56), rgba(3, 10, 20, 0.38));
}

.scenario-chart-grid {
  position: absolute;
  inset: 10px 9px 21px;
  background-image:
    linear-gradient(rgba(120, 165, 204, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(120, 165, 204, 0.08) 1px, transparent 1px);
  background-size: 100% 25%, 12.5% 100%;
}

.scenario-schedule-chart svg {
  position: absolute;
  z-index: 1;
  inset: 14px 8px 20px;
  width: calc(100% - 16px);
  height: calc(100% - 34px);
  overflow: visible;
}

.scenario-chart-area {
  fill: rgba(69, 202, 206, 0.18);
}

.scenario-chart-line {
  fill: none;
  stroke: #67ddd5;
  stroke-linecap: round;
  stroke-width: 2;
  vector-effect: non-scaling-stroke;
  filter: drop-shadow(0 0 4px rgba(92, 221, 216, 0.25));
}

.scenario-chart-hours {
  position: absolute;
  z-index: 2;
  right: 8px;
  bottom: 6px;
  left: 8px;
  display: flex;
  justify-content: space-between;
  color: #526a82;
  font-size: 6px;
  font-weight: 620;
}

.scenario-schedule-presets {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 5px;
}

.scenario-schedule-presets > span {
  min-width: 0;
  min-height: 28px;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 0 4px;
  border: 1px solid rgba(125, 174, 214, 0.1);
  border-radius: 6px;
  background: rgba(5, 14, 25, 0.56);
  color: #687f97;
  font-size: 6px;
  font-weight: 660;
  text-align: center;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.scenario-schedule-presets > span.is-selected {
  border-color: rgba(101, 111, 226, 0.27);
  background: rgba(103, 88, 219, 0.1);
  color: #b5b8f2;
}

.scenario-wizard-progress {
  position: relative;
  min-height: 32px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: center;
  padding: 0 16px 8px;
}

.scenario-wizard-progress::before {
  content: "";
  position: absolute;
  top: 11px;
  right: 25px;
  left: 25px;
  height: 1px;
  background: rgba(113, 152, 190, 0.13);
}

.scenario-wizard-progress > span {
  position: relative;
  z-index: 1;
  width: 17px;
  height: 17px;
  display: grid;
  place-items: center;
  justify-self: center;
  border: 1px solid rgba(115, 157, 197, 0.16);
  border-radius: 50%;
  background: #091523;
  color: #536980;
  font-size: 6px;
  font-weight: 720;
}

.scenario-wizard-progress > span.is-reached {
  border-color: color-mix(in srgb, var(--wizard-accent) 28%, transparent);
  color: color-mix(in srgb, var(--wizard-accent) 76%, white);
}

.scenario-wizard-progress > span.is-active {
  border-color: color-mix(in srgb, var(--wizard-accent) 68%, transparent);
  background: color-mix(in srgb, var(--wizard-accent) 13%, #091523);
  box-shadow:
    0 0 0 4px color-mix(in srgb, var(--wizard-accent) 5%, transparent),
    0 0 12px color-mix(in srgb, var(--wizard-accent) 22%, transparent);
}

.saas-enhanced .scenario-control-section [data-scenario-reveal],
.saas-enhanced .scenario-control-section [data-scenario-item] {
  opacity: 0;
  transition:
    opacity 720ms cubic-bezier(0.22, 1, 0.36, 1) var(--scenario-delay, 0ms),
    transform 720ms cubic-bezier(0.22, 1, 0.36, 1) var(--scenario-delay, 0ms),
    filter 720ms cubic-bezier(0.22, 1, 0.36, 1) var(--scenario-delay, 0ms);
}

.saas-enhanced .scenario-control-section [data-scenario-reveal="copy"] {
  filter: blur(5px);
  transform: translateY(26px);
}

.saas-enhanced .scenario-control-section [data-scenario-reveal="panel"] {
  transform: translateX(32px) scale(0.98);
}

.saas-enhanced .scenario-control-section [data-scenario-item] {
  transform: translateY(14px);
}

.saas-enhanced .scenario-control-section.is-revealed [data-scenario-reveal],
.saas-enhanced .scenario-control-section.is-revealed [data-scenario-item] {
  opacity: 1;
  filter: none;
  transform: translate3d(0, 0, 0) scale(1);
}

@keyframes scenario-route-pulse {
  0% {
    left: 0;
    opacity: 0;
  }
  9%,
  86% {
    opacity: 0.9;
  }
  100% {
    left: calc(100% - 6px);
    opacity: 0;
  }
}

@keyframes scenario-status-pulse {
  0%,
  100% {
    box-shadow:
      0 0 0 0 rgba(103, 227, 196, 0.2),
      0 0 10px rgba(103, 227, 196, 0.58);
  }
  50% {
    box-shadow:
      0 0 0 5px rgba(103, 227, 196, 0),
      0 0 14px rgba(103, 227, 196, 0.7);
  }
}

@keyframes scenario-ambient-drift {
  from {
    transform: translate3d(-1.5%, -1%, 0);
  }
  to {
    transform: translate3d(1.5%, 1%, 0);
  }
}

@media (max-width: 1120px) {
  body.public-home-page .scenario-control-section {
    align-items: start;
    padding-top: 116px;
  }

  .scenario-control-layout {
    grid-template-columns: minmax(0, 1fr);
    gap: 48px;
  }

  .scenario-control-copy {
    max-width: 760px;
  }

  body.public-home-page .scenario-control-copy h2,
  .scenario-control-description,
  .scenario-control-strong {
    max-width: 720px;
  }

  body.public-home-page .scenario-control-copy h2 {
    font-size: clamp(42px, 6vw, 62px);
  }

  .scenario-control-flow {
    width: min(100%, 470px);
  }

  .traffic-scenario-module {
    min-height: 258px;
  }
}

@media (min-width: 1121px) and (max-width: 1350px) {
  .scenario-control-layout {
    grid-template-columns: minmax(0, 0.425fr) minmax(0, 0.575fr);
    gap: 32px;
  }

  body.public-home-page .scenario-control-copy h2 {
    font-size: 38px;
  }
}

@media (max-width: 700px) {
  body.public-home-page .scenario-control-section {
    min-height: 0;
    padding: 100px 0 88px;
  }

  body.public-home-page .scenario-control-section::before {
    background-size: 76px 76px;
  }

  .scenario-route-background {
    opacity: 0.55;
  }

  .scenario-background-route:nth-of-type(n + 4),
  .scenario-background-label:nth-of-type(n + 3) {
    display: none;
  }

  .scenario-control-layout {
    gap: 36px;
  }

  body.public-home-page .scenario-control-copy .saas-kicker {
    margin-bottom: 17px;
    font-size: 10px;
  }

  body.public-home-page .scenario-control-copy h2 {
    font-size: clamp(36px, 10vw, 48px);
    line-height: 1.06;
  }

  .scenario-control-description {
    margin-top: 20px;
    font-size: 15px;
    line-height: 1.62;
  }

  .scenario-control-strong {
    margin-top: 22px;
    font-size: 14px;
  }

  .scenario-control-flow {
    margin-top: 26px;
  }

  .traffic-scenario-console {
    border-radius: 20px;
  }

  .traffic-scenario-console:has(.scenario-wizard-grid) {
    padding: 10px;
  }

  .scenario-wizard-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 10px;
  }

  .scenario-wizard-step {
    min-height: 328px;
  }

  .scenario-wizard-step-head h3 {
    font-size: 13px;
  }

  .scenario-wizard-step-head p {
    font-size: 8px;
  }

  .scenario-wizard-field > span,
  .scenario-source-row span,
  .scenario-wizard-activity > span,
  .scenario-wizard-section-label {
    font-size: 8px;
  }

  .scenario-wizard-field > strong,
  .scenario-source-row strong {
    font-size: 9px;
  }

  .scenario-wizard-activity i {
    font-size: 6px;
  }

  .traffic-scenario-console-head {
    min-height: 70px;
    padding: 14px 16px;
  }

  .traffic-scenario-console-state > span {
    display: none;
  }

  .traffic-scenario-groups {
    grid-template-columns: minmax(0, 1fr);
    margin: 12px;
    border-radius: 12px;
  }

  .traffic-scenario-module {
    min-height: 0;
    padding: 16px;
  }

  .scenario-feature-heading > strong {
    font-size: 12px;
  }

  .scenario-feature-heading > span {
    font-size: 9px;
  }

  .traffic-scenario-console-foot {
    min-height: 48px;
    padding: 0 16px 11px;
  }
}

@media (max-width: 430px) {
  body.public-home-page .scenario-control-section {
    padding-top: 92px;
  }

  .scenario-control-flow {
    gap: 6px;
    font-size: 9px;
  }

  .traffic-scenario-console-head > div:first-child > strong {
    font-size: 13px;
  }

  .traffic-scenario-console-state > strong {
    min-height: 27px;
    padding-inline: 8px;
    font-size: 9px;
  }

  .traffic-scenario-module > header p {
    max-width: 245px;
  }

  .traffic-scenario-console-foot > span {
    display: none;
  }

  .traffic-scenario-console-foot {
    justify-content: flex-end;
  }
}

@media (max-width: 360px) {
  body.public-home-page .scenario-control-copy h2 {
    font-size: 34px;
  }

  .scenario-control-flow {
    grid-template-columns: auto minmax(10px, 1fr) auto minmax(10px, 1fr) auto;
  }

  .traffic-scenario-console-head {
    gap: 10px;
    padding-inline: 13px;
  }

  .traffic-scenario-console-head > div:first-child > span {
    font-size: 9px;
  }

  .traffic-scenario-console-head > div:first-child > strong {
    font-size: 12px;
  }

  .traffic-scenario-module {
    padding: 14px;
  }

  .scenario-exit-routes > p {
    font-size: 6px;
  }
}

@media (prefers-reduced-motion: reduce) {
  body.public-home-page .scenario-control-section::after,
  .scenario-background-route > i,
  .traffic-scenario-console-state > strong > i {
    animation: none !important;
  }

  .saas-enhanced .scenario-control-section [data-scenario-reveal],
  .saas-enhanced .scenario-control-section [data-scenario-item] {
    opacity: 1;
    filter: none;
    transform: none;
    transition: none;
  }
}

/* Pricing screen: a calm continuation of the scenario workspace. */
body.public-home-page .saas-pricing-section {
  position: relative;
  z-index: 3;
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(ellipse 76% 24% at 70% 0%, rgba(32, 165, 221, 0.1), transparent 72%),
    linear-gradient(180deg, #09131f 0%, #081321 44%, #07111e 100%);
}

body.public-home-page .saas-pricing-section::before {
  content: "";
  position: absolute;
  z-index: -2;
  inset: 0;
  width: auto;
  height: auto;
  background-image:
    linear-gradient(rgba(112, 173, 216, 0.034) 1px, transparent 1px),
    linear-gradient(90deg, rgba(112, 173, 216, 0.034) 1px, transparent 1px);
  background-size: 88px 88px;
  filter: none;
  transform: none;
  -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.26) 78%, transparent);
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.26) 78%, transparent);
  pointer-events: none;
}

body.public-home-page .saas-pricing-section::after {
  content: "";
  position: absolute;
  z-index: -3;
  inset: -24% -12%;
  pointer-events: none;
  background:
    radial-gradient(ellipse 34% 42% at 26% 52%, rgba(20, 185, 213, 0.075), transparent 74%),
    radial-gradient(ellipse 42% 48% at 78% 50%, rgba(101, 76, 219, 0.07), transparent 76%);
  filter: blur(110px);
  transform: translate3d(0, 0, 0);
  animation: scenario-ambient-drift 24s ease-in-out infinite alternate;
}

body.public-home-page .pricing-layout {
  position: relative;
  z-index: 1;
  gap: clamp(48px, 6vw, 84px);
}

body.public-home-page .pricing-calculator {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: stretch;
  gap: 16px;
  min-width: 0;
  overflow: hidden;
  padding: 28px;
  border: 1px solid rgba(141, 195, 239, 0.18);
  border-radius: 22px;
  background:
    linear-gradient(145deg, rgba(20, 41, 63, 0.88), rgba(7, 19, 33, 0.9));
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    inset 0 -1px 0 rgba(65, 185, 211, 0.08);
  backdrop-filter: blur(18px);
}

body.public-home-page .pricing-calculator::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 1px;
  border-radius: 21px;
  background:
    radial-gradient(circle at 88% 4%, rgba(83, 160, 255, 0.16), transparent 34%),
    radial-gradient(circle at 8% 100%, rgba(64, 228, 204, 0.08), transparent 38%);
  pointer-events: none;
}

body.public-home-page .pricing-calculator > * {
  position: relative;
  z-index: 1;
}

body.public-home-page .pricing-calculator-head {
  gap: 16px;
}

body.public-home-page .pricing-calculator-head > div {
  gap: 4px;
}

body.public-home-page .pricing-calculator-head span {
  color: #91a9c0;
  font-size: 9px;
  font-weight: 760;
  letter-spacing: 0.1em;
}

body.public-home-page .pricing-calculator-head strong {
  color: #f2f7ff;
  font-size: 18px;
  font-weight: 740;
  letter-spacing: -0.025em;
}

body.public-home-page .pricing-calculator-head .calculator-badge {
  min-height: 27px;
  gap: 7px;
  padding: 0 10px;
  border-color: rgba(91, 222, 205, 0.22);
  background: rgba(62, 207, 190, 0.08);
  color: #93eadc;
  font-size: 9px;
  font-weight: 760;
  letter-spacing: 0.045em;
}

body.public-home-page .pricing-calculator-head .calculator-badge::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #6fe4d2;
  box-shadow: 0 0 10px rgba(111, 228, 210, 0.7);
}

body.public-home-page .calculator-slider {
  position: relative;
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 18px 20px 14px;
  border: 1px solid rgba(124, 188, 233, 0.16);
  border-radius: 16px;
  background:
    linear-gradient(135deg, rgba(17, 44, 65, 0.62), rgba(8, 24, 40, 0.48));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.045),
    inset 0 -18px 36px rgba(2, 10, 20, 0.1);
}

body.public-home-page .calculator-slider > span,
body.public-home-page .calculator-slider > small {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

body.public-home-page .calculator-slider > span > span {
  color: #b4c4d5;
  font-size: 12px;
  font-weight: 650;
}

body.public-home-page .calculator-slider > span strong {
  min-width: 84px;
  padding: 6px 10px;
  border: 1px solid rgba(96, 205, 224, 0.22);
  border-radius: 999px;
  background: rgba(5, 23, 39, 0.62);
  color: #f0fbff;
  font-size: 16px;
  font-weight: 780;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.025em;
  line-height: 1;
  text-align: center;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

body.public-home-page .calculator-slider input[type="range"] {
  --range-fill: calc(19.1919% + 6.778px);
  --range-thumb-radius: 11px;
  width: 100%;
  height: 8px;
  margin: 4px 0 2px;
  border: 0;
  border-radius: 999px;
  outline: 0;
  appearance: none;
  -webkit-appearance: none;
  background:
    linear-gradient(90deg, #56e3d2 0%, #5b8dff var(--range-fill), rgba(100, 135, 169, 0.27) var(--range-fill), rgba(100, 135, 169, 0.16) 100%);
  box-shadow:
    inset 0 1px 2px rgba(1, 8, 17, 0.58),
    0 1px 0 rgba(255, 255, 255, 0.05);
  cursor: pointer;
}

body.public-home-page .calculator-slider input[type="range"]::-webkit-slider-thumb {
  width: 22px;
  height: 22px;
  appearance: none;
  -webkit-appearance: none;
  border: 4px solid #0b1d2e;
  border-radius: 50%;
  background: radial-gradient(circle at 38% 32%, #effffb 0 14%, #65e5d5 18% 100%);
  box-shadow:
    0 0 0 2px rgba(111, 232, 216, 0.72),
    0 7px 18px rgba(0, 10, 23, 0.42),
    0 0 20px rgba(67, 211, 222, 0.28);
  cursor: grab;
  transition: box-shadow 180ms ease, transform 180ms ease;
}

body.public-home-page .calculator-slider input[type="range"]:hover::-webkit-slider-thumb {
  box-shadow:
    0 0 0 3px rgba(111, 232, 216, 0.58),
    0 8px 20px rgba(0, 10, 23, 0.48),
    0 0 26px rgba(67, 211, 222, 0.36);
}

body.public-home-page .calculator-slider input[type="range"]:active::-webkit-slider-thumb {
  cursor: grabbing;
  transform: scale(1.07);
}

body.public-home-page .calculator-slider input[type="range"]:focus-visible {
  box-shadow:
    inset 0 1px 2px rgba(1, 8, 17, 0.58),
    0 0 0 4px rgba(72, 205, 224, 0.18);
}

body.public-home-page .calculator-slider input[type="range"]::-moz-range-track {
  height: 8px;
  border: 0;
  border-radius: 999px;
  background: rgba(100, 135, 169, 0.2);
  box-shadow: inset 0 1px 2px rgba(1, 8, 17, 0.58);
}

body.public-home-page .calculator-slider input[type="range"]::-moz-range-progress {
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, #56e3d2, #5b8dff);
}

body.public-home-page .calculator-slider input[type="range"]::-moz-range-thumb {
  width: 14px;
  height: 14px;
  border: 4px solid #0b1d2e;
  border-radius: 50%;
  background: #65e5d5;
  box-shadow:
    0 0 0 2px rgba(111, 232, 216, 0.72),
    0 7px 18px rgba(0, 10, 23, 0.42);
  cursor: grab;
}

body.public-home-page .calculator-slider > small {
  color: #748da6;
  font-size: 9px;
  font-weight: 650;
  letter-spacing: 0.01em;
}

body.public-home-page .calculator-result {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  grid-template-areas:
    "label value"
    "caption caption";
  align-items: center;
  justify-items: initial;
  gap: 7px 18px;
  margin: 0;
  padding: 20px;
  border: 1px solid rgba(103, 226, 205, 0.18);
  border-radius: 16px;
  background:
    radial-gradient(circle at 86% 10%, rgba(92, 153, 255, 0.17), transparent 46%),
    linear-gradient(135deg, rgba(53, 188, 170, 0.11), rgba(40, 82, 150, 0.1));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  text-align: left;
}

body.public-home-page .calculator-result > span {
  grid-area: label;
  color: #94acc0;
  font-size: 10px;
  font-weight: 760;
  letter-spacing: 0.1em;
}

body.public-home-page .calculator-result > strong {
  grid-area: value;
  margin: 0;
  color: #f3fbff;
  font-size: clamp(40px, 4vw, 48px);
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.055em;
  line-height: 0.94;
}

body.public-home-page .calculator-result > small {
  grid-area: caption;
  margin: 4px 0 0;
  padding-top: 11px;
  border-top: 1px solid rgba(150, 212, 229, 0.12);
  color: #89a2b8;
  font-size: 10px;
  font-weight: 600;
}

body.public-home-page .calculator-details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(144, 184, 220, 0.13);
  border-radius: 14px;
  background: rgba(6, 18, 31, 0.27);
}

body.public-home-page .calculator-details > div {
  min-width: 0;
  min-height: 78px;
  display: grid;
  align-content: center;
  gap: 7px;
  padding: 15px 16px;
  border: 0;
  border-radius: 0;
  background: transparent;
}

body.public-home-page .calculator-details > div + div {
  border-left: 1px solid rgba(144, 184, 220, 0.12);
}

body.public-home-page .calculator-details span {
  color: #849bb1;
  font-size: 9px;
  font-weight: 650;
}

body.public-home-page .calculator-details strong {
  overflow: visible;
  color: #d9e8f5;
  font-size: 12px;
  font-weight: 720;
  line-height: 1.2;
  text-overflow: clip;
  white-space: normal;
}

body.public-home-page .pricing-calculator > p {
  margin: 0;
  padding: 1px 2px 0;
  color: #7e96ad;
  font-size: 11px;
  line-height: 1.5;
  text-align: left;
}

@media (max-width: 680px) {
  body.public-home-page .saas-pricing-section::before {
    background-size: 76px 76px;
  }

  body.public-home-page .pricing-calculator {
    gap: 13px;
    padding: 19px;
    border-radius: 18px;
  }

  body.public-home-page .pricing-calculator::before {
    border-radius: 17px;
  }

  body.public-home-page .pricing-calculator-head {
    align-items: flex-start;
    gap: 10px;
  }

  body.public-home-page .pricing-calculator-head strong {
    font-size: 16px;
  }

  body.public-home-page .calculator-slider {
    gap: 13px;
    padding: 16px 15px 12px;
    border-radius: 14px;
  }

  body.public-home-page .calculator-slider > small {
    font-size: 8px;
  }

  body.public-home-page .calculator-result {
    padding: 18px;
  }

  body.public-home-page .calculator-details {
    grid-template-columns: minmax(0, 1fr);
  }

  body.public-home-page .calculator-details > div {
    min-height: 66px;
    padding: 13px 14px;
  }

  body.public-home-page .calculator-details > div + div {
    border-top: 1px solid rgba(144, 184, 220, 0.12);
    border-left: 0;
  }
}

@media (max-width: 420px) {
  body.public-home-page .calculator-result {
    grid-template-columns: minmax(0, 1fr);
    grid-template-areas:
      "label"
      "value"
      "caption";
    gap: 6px;
  }
}

@media (prefers-reduced-motion: reduce) {
  body.public-home-page .saas-pricing-section::after {
    animation: none;
  }
}

/* The data grid belongs to the hero only; the rest of the page is a calm, continuous navy surface. */
body.public-home-page .traffic-landing {
  position: relative;
  isolation: isolate;
  background-color: #020916;
  background-image: linear-gradient(180deg, #020916 0%, #020916 38%, #03111e 75%, #06111f 100%);
  background-repeat: no-repeat;
}

/*
 * One atmospheric bridge lives behind the whole landing rather than beginning
 * again at the next section. It is already present beneath the hero and then
 * becomes visible through the transparent metrics area. There are no lines,
 * grids, filters or moving layers here.
 */
body.public-home-page .traffic-landing::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: clamp(540px, calc(100svh - 200px), 960px);
  right: -12vw;
  left: -12vw;
  height: clamp(720px, 84svh, 940px);
  background:
    radial-gradient(ellipse 58% 72% at 76% 0%, rgba(7, 111, 222, 0.15) 0%, rgba(7, 111, 222, 0.07) 43%, transparent 78%),
    radial-gradient(ellipse 42% 64% at 22% 12%, rgba(69, 55, 169, 0.045), transparent 78%);
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.05) 16%, rgba(0, 0, 0, 0.38) 30%, rgba(0, 0, 0, 0.88) 48%, rgba(0, 0, 0, 0.66) 72%, transparent 100%);
  mask-image: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.05) 16%, rgba(0, 0, 0, 0.38) 30%, rgba(0, 0, 0, 0.88) 48%, rgba(0, 0, 0, 0.66) 72%, transparent 100%);
  pointer-events: none;
}

body.public-home-page .traffic-landing > :is(
  .saas-hero,
  .saas-metrics-section,
  .scenario-control-section,
  .saas-pricing-section,
  .saas-faq-section,
  .saas-final-cta
) {
  position: relative;
  z-index: 1;
}

body.public-home-page .traffic-landing > .saas-metrics-section {
  z-index: 8;
}

/* Metrics remain visually attached to the globe on wide screens and reveal this surface below it. */
body.public-home-page .saas-metrics-section {
  background: transparent;
}

body.public-home-page :is(
  .scenario-control-section,
  .saas-pricing-section,
  .saas-faq-section,
  .saas-final-cta
) {
  position: relative;
  isolation: isolate;
  background: transparent;
}

/* A restrained local field keeps every section alive without breaking the shared system. */
body.public-home-page :is(
  .scenario-control-section,
  .saas-pricing-section,
  .saas-faq-section,
  .saas-final-cta
)::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 0;
  width: auto;
  height: auto;
  background:
    radial-gradient(ellipse 56% 72% at var(--saas-field-cyan-x, 82%) var(--saas-field-cyan-y, 38%), var(--saas-field-cyan, rgba(8, 139, 239, 0.13)), transparent 74%),
    radial-gradient(ellipse 46% 64% at var(--saas-field-violet-x, 18%) var(--saas-field-violet-y, 72%), var(--saas-field-violet, rgba(102, 66, 226, 0.09)), transparent 76%);
  filter: none;
  transform: none;
  -webkit-mask-image: none;
  mask-image: none;
  opacity: 1;
  pointer-events: none;
  animation: none;
}

body.public-home-page :is(
  .scenario-control-section,
  .saas-pricing-section,
  .saas-faq-section,
  .saas-final-cta
)::after {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 0;
  background:
    linear-gradient(112deg, transparent 14%, rgba(26, 154, 234, 0.055) 46%, transparent 68%),
    linear-gradient(151deg, transparent 34%, rgba(101, 71, 232, 0.045) 34.15%, transparent 34.3%);
  filter: none;
  transform: none;
  -webkit-mask-image: none;
  mask-image: none;
  opacity: 1;
  pointer-events: none;
  animation: none;
}

body.public-home-page .scenario-control-section > .saas-container,
body.public-home-page .saas-pricing-section > .saas-container,
body.public-home-page .saas-faq-section > .saas-container,
body.public-home-page .saas-final-cta > .saas-container {
  position: relative;
  z-index: 1;
}

body.public-home-page .scenario-control-section {
  --saas-field-cyan-x: 78%;
  --saas-field-cyan-y: 34%;
  --saas-field-cyan: rgba(9, 149, 244, 0.16);
  --saas-field-violet-x: 22%;
  --saas-field-violet-y: 70%;
  --saas-field-violet: rgba(94, 64, 224, 0.11);
}

body.public-home-page .saas-pricing-section {
  --saas-field-cyan-x: 86%;
  --saas-field-cyan-y: 28%;
  --saas-field-cyan: rgba(15, 130, 240, 0.15);
  --saas-field-violet-x: 12%;
  --saas-field-violet-y: 84%;
  --saas-field-violet: rgba(92, 56, 221, 0.08);
}

body.public-home-page .saas-faq-section {
  --saas-field-cyan-x: 12%;
  --saas-field-cyan-y: 26%;
  --saas-field-cyan: rgba(13, 118, 218, 0.11);
  --saas-field-violet-x: 88%;
  --saas-field-violet-y: 70%;
  --saas-field-violet: rgba(99, 66, 225, 0.09);
}

body.public-home-page .saas-final-cta {
  --saas-field-cyan-x: 50%;
  --saas-field-cyan-y: 40%;
  --saas-field-cyan: rgba(14, 152, 244, 0.19);
  --saas-field-violet-x: 68%;
  --saas-field-violet-y: 76%;
  --saas-field-violet: rgba(112, 74, 239, 0.13);
  overflow: hidden;
}

/* The final CTA stays on the same quiet surface; no second grid is introduced. */
body.public-home-page .saas-final-cta::after {
  display: none;
}

body.public-home-page .scenario-route-background,
body.public-home-page .saas-final-cta .cta-particles {
  display: none;
}

/* Do not restart the background at each screen: the landing's field is the only surface. */
body.public-home-page :is(
  .scenario-control-section,
  .saas-pricing-section,
  .saas-faq-section,
  .saas-final-cta
)::before,
body.public-home-page :is(
  .scenario-control-section,
  .saas-pricing-section,
  .saas-faq-section
)::after {
  display: none;
}

/*
 * The technical hero layers dissolve before content starts.  This keeps the
 * grid inside the hero, while its colour field hands off to the shared navy
 * surface without a divider.
 */
body.public-home-page .saas-hero {
  background:
    linear-gradient(180deg, rgba(2, 7, 19, 0) 0%, rgba(2, 7, 19, 0) 56%, rgba(2, 8, 20, 0.16) 74%, rgba(2, 9, 22, 0.58) 90%, #020916 100%),
    radial-gradient(ellipse 78% 118% at 82% 42%, rgba(5, 125, 246, 0.24) 0%, rgba(5, 111, 226, 0.14) 30%, rgba(5, 94, 203, 0.065) 58%, rgba(5, 83, 188, 0.02) 78%, transparent 100%),
    radial-gradient(ellipse 82% 112% at 105% 70%, rgba(101, 49, 224, 0.14) 0%, rgba(91, 48, 211, 0.07) 38%, rgba(73, 42, 181, 0.025) 70%, transparent 100%),
    #020916;
}

body.public-home-page .saas-hero::before {
  -webkit-mask-image: linear-gradient(
    180deg,
    #000 0%,
    #000 56%,
    rgba(0, 0, 0, 0.72) 75%,
    rgba(0, 0, 0, 0.2) 93%,
    transparent 100%
  );
  mask-image: linear-gradient(
    180deg,
    #000 0%,
    #000 56%,
    rgba(0, 0, 0, 0.72) 75%,
    rgba(0, 0, 0, 0.2) 93%,
    transparent 100%
  );
}

body.public-home-page .saas-hero::after {
  /* The separate perspective plane is retired before the hero edge. */
  opacity: 0;
}

/* Fade every remaining hero grid layer before the clipped edge of the hero. */
body.public-home-page .saas-grid-field {
  -webkit-mask-image:
    linear-gradient(90deg, #000 0%, rgba(0, 0, 0, 0.74) 52%, transparent 92%),
    linear-gradient(180deg, #000 0%, #000 54%, rgba(0, 0, 0, 0.66) 69%, rgba(0, 0, 0, 0.2) 84%, transparent 100%);
  -webkit-mask-repeat: no-repeat, no-repeat;
  -webkit-mask-size: 100% 100%, 100% 100%;
  -webkit-mask-position: 0 0, 0 0;
  -webkit-mask-composite: source-in;
  mask-image:
    linear-gradient(90deg, #000 0%, rgba(0, 0, 0, 0.74) 52%, transparent 92%),
    linear-gradient(180deg, #000 0%, #000 54%, rgba(0, 0, 0, 0.66) 69%, rgba(0, 0, 0, 0.2) 84%, transparent 100%);
  mask-repeat: no-repeat, no-repeat;
  mask-size: 100% 100%, 100% 100%;
  mask-position: 0 0, 0 0;
  mask-composite: intersect;
}

body.public-home-page .saas-data-plane {
  opacity: 0.66;
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.72) 18%, rgba(0, 0, 0, 0.42) 58%, transparent 100%);
  mask-image: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.72) 18%, rgba(0, 0, 0, 0.42) 58%, transparent 100%);
}

body.public-home-page :is(.saas-hero-light, .saas-code-field) {
  -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 54%, rgba(0, 0, 0, 0.62) 74%, transparent 100%);
  mask-image: linear-gradient(180deg, #000 0%, #000 54%, rgba(0, 0, 0, 0.62) 74%, transparent 100%);
}

/* The bridge above replaces a local start-of-section glow, preventing a second band. */
body.public-home-page .scenario-control-section::before {
  display: none;
}

@media (max-width: 680px) {
  body.public-home-page .saas-data-plane {
    opacity: 0.48;
  }
}

/* Compact content rhythm: the hero is the only full-viewport screen. */
body.public-home-page .saas-hero {
  min-height: 100svh;
}

body.public-home-page :is(
  .scenario-control-section,
  .saas-pricing-section,
  .saas-faq-section
) {
  padding-block: clamp(72px, 5.5vw, 88px);
}

body.public-home-page .scenario-control-section {
  min-height: 0;
}

@media (max-width: 1040px) {
  body.public-home-page :is(
    .scenario-control-section,
    .saas-pricing-section,
    .saas-faq-section
  ) {
    padding-block: 68px;
  }
}

@media (max-width: 680px) {
  body.public-home-page .scenario-control-section {
    padding: 64px 0 68px;
  }

  body.public-home-page :is(.saas-pricing-section, .saas-faq-section) {
    padding-block: 64px;
  }
}

/* The shared app shell may emit operational toasts; they are not part of the public landing. */
body.public-home-page #message {
  display: none !important;
}

/* Tight content flow after the full-height hero — no empty screen-sized breaks. */
body.public-home-page .saas-metrics-section {
  padding-bottom: 16px;
}

body.public-home-page :is(
  .scenario-control-section,
  .saas-pricing-section,
  .saas-faq-section
) {
  padding-block: 56px;
}

body.public-home-page .saas-final-cta {
  min-height: 0;
}

body.public-home-page .final-cta-content {
  padding-block: 56px;
}

@media (max-width: 1040px) {
  body.public-home-page :is(
    .scenario-control-section,
    .saas-pricing-section,
    .saas-faq-section
  ) {
    padding-block: 52px;
  }

  body.public-home-page .final-cta-content {
    padding-block: 52px;
  }
}

@media (max-width: 680px) {
  body.public-home-page .saas-metrics-section {
    padding-bottom: 16px;
  }

  body.public-home-page .scenario-control-section {
    padding: 48px 0 52px;
  }

  body.public-home-page :is(.saas-pricing-section, .saas-faq-section) {
    padding-block: 48px;
  }

  body.public-home-page .final-cta-content {
    padding-block: 52px;
  }
}

/* Final compact pass: a 40px content rhythm replaces the former 112px gaps. */
body.public-home-page :is(
  .scenario-control-section,
  .saas-pricing-section,
  .saas-faq-section
) {
  padding-block: 40px;
}

body.public-home-page .final-cta-content {
  padding-block: 44px;
}

@media (max-width: 1040px) {
  body.public-home-page :is(
    .scenario-control-section,
    .saas-pricing-section,
    .saas-faq-section
  ) {
    padding-block: 36px;
  }

  body.public-home-page .final-cta-content {
    padding-block: 40px;
  }
}

@media (max-width: 680px) {
  body.public-home-page .scenario-control-section {
    padding: 32px 0 36px;
  }

  body.public-home-page :is(.saas-pricing-section, .saas-faq-section) {
    padding-block: 32px;
  }

  body.public-home-page .final-cta-content {
    padding-block: 36px;
  }
}

/* Keep the cyan hero atmosphere diffuse; a rotated strip read as a diagonal seam. */
body.public-home-page .saas-hero-light.is-cyan {
  transform: none;
  background-image: radial-gradient(
    ellipse 72% 104% at 70% 50%,
    rgba(0, 159, 255, 0.88) 0%,
    rgba(0, 159, 255, 0.34) 42%,
    transparent 78%
  );
}

/* A rotated rectangular glow exposed both blurred box edges as diagonal bands. */
body.public-home-page .saas-hero-light.is-violet {
  transform: none;
  background-image: radial-gradient(
    ellipse 72% 104% at 64% 52%,
    rgba(118, 62, 241, 0.72) 0%,
    rgba(118, 62, 241, 0.28) 42%,
    transparent 78%
  );
}

/*
 * One flat grid is enough for the Hero. The two perspective planes and the
 * boxed glow layers produced readable layer edges over the dark surface.
 * Their atmosphere now lives in the broad, edge-free Hero gradients above.
 */
body.public-home-page :is(
  .saas-hero-light,
  .saas-data-plane,
  .saas-grid-field
) {
  display: none;
}

/*
 * The WebGL surface is transparent outside the Earth. Keep the verified
 * satellite frame inside that same element so a cleared or not-yet-presented
 * WebGL buffer has a visual fallback instead of exposing the document backdrop.
 * The external poster still owns the very first paint.
 */
body.public-home-page .traffic-globe-canvas {
  z-index: 1;
  background-color: transparent;
  background-image: url('/assets/traffic-globe-clean-first-frame.png?v=20260816-network-route-art-poster-v1-66');
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

/* The raster is only a pre-render fallback; never double its static routes
   underneath the verified live WebGL frame. */
body.public-home-page .saas-globe-stage.is-first-frame-ready .traffic-globe-canvas {
  background-image: none;
}

/*
 * Final Hero polish: a single visual hierarchy, with the Earth as the only
 * high-energy object. The technical field stays present, but never competes
 * with the message, action, or globe.
 */
body.public-home-page .saas-hero-proof {
  display: block;
  margin-top: 8px;
  color: rgba(213, 229, 247, 0.88);
  font-weight: 660;
  letter-spacing: -0.008em;
  line-height: 1.45;
}

body.public-home-page .saas-button.is-hero-primary {
  animation: none;
  box-shadow:
    0 0 0 1px rgba(31, 194, 242, 0.14),
    0 10px 28px rgba(14, 164, 226, 0.24),
    14px 0 32px rgba(121, 71, 239, 0.16);
}

body.public-home-page .saas-button.is-hero-secondary {
  border-color: rgba(83, 189, 244, 0.54);
  background: linear-gradient(145deg, rgba(7, 27, 49, 0.9), rgba(2, 12, 29, 0.84));
  box-shadow:
    inset 0 1px 0 rgba(166, 224, 255, 0.075),
    0 12px 28px rgba(0, 0, 0, 0.15);
  color: #e4f1ff;
}

body.public-home-page .saas-button.is-hero-secondary:hover,
body.public-home-page .saas-button.is-hero-secondary:focus-visible {
  border-color: rgba(102, 220, 249, 0.78);
  background: linear-gradient(145deg, rgba(8, 37, 65, 0.95), rgba(3, 18, 39, 0.9));
}

body.public-home-page .saas-button.is-hero-primary:focus-visible,
body.public-home-page .saas-button.is-hero-secondary:focus-visible {
  outline: 2px solid rgba(125, 231, 255, 0.9);
  outline-offset: 4px;
}

/* Keep only subtle particles here: repeating angled wires read as background seams. */
body.public-home-page .saas-code-field::before {
  background-image:
    radial-gradient(circle at 7% 18%, rgba(38, 218, 255, 0.9) 0 1.5px, transparent 2.5px),
    radial-gradient(circle at 17% 44%, rgba(74, 138, 255, 0.8) 0 1.5px, transparent 2.5px),
    radial-gradient(circle at 31% 22%, rgba(40, 224, 247, 0.72) 0 1.5px, transparent 2.5px),
    radial-gradient(circle at 41% 56%, rgba(112, 79, 255, 0.82) 0 1.5px, transparent 2.5px),
    radial-gradient(circle at 55% 14%, rgba(41, 185, 255, 0.72) 0 1.5px, transparent 2.5px);
  background-size: 330px 260px, 390px 310px, 440px 340px, 480px 370px, 520px 400px;
}

body.public-home-page .saas-metrics {
  border-color: rgba(49, 151, 226, 0.26);
  background: linear-gradient(180deg, rgba(5, 20, 42, 0.79) 0%, rgba(3, 15, 31, 0.91) 28%, rgba(2, 12, 29, 0.95) 100%);
  box-shadow:
    0 24px 66px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(139, 211, 255, 0.06),
    0 0 34px rgba(16, 101, 210, 0.065);
}

body.public-home-page .saas-metrics > div + div {
  border-left-color: rgba(57, 115, 179, 0.17);
}

body.public-home-page .saas-metrics > div > span:not(.saas-metric-icon) {
  color: #c9d6e5;
  font-size: clamp(11px, 0.78vw, 12px);
}

body.public-home-page .saas-metrics > div > small {
  font-size: 10.5px;
  font-weight: 690;
}

/* The globe owns continuous motion; decorative data tiles stay quietly static. */
body.public-home-page .saas-data-plane i {
  animation: none;
  opacity: 0.48;
  filter: none;
  box-shadow: 0 0 11px rgba(24, 180, 249, 0.38);
}

@media (min-width: 1400px) {
  body.public-home-page .saas-code-field {
    opacity: 0.46;
  }

  body.public-home-page .saas-code-field::before {
    opacity: 0.34;
  }

  body.public-home-page .saas-code-field::after {
    opacity: 0.42;
  }

  body.public-home-page .saas-code-field pre {
    color: rgba(38, 176, 238, 0.15);
  }

  body.public-home-page .saas-data-plane {
    opacity: 0.3;
  }

  body.public-home-page .saas-grid-field {
    opacity: 0.52;
  }
}

@media (min-width: 1400px) and (min-height: 901px) {
  body.public-home-page .saas-hero-layout {
    padding-top: 112px;
  }
}




/* Header brand mark: compact three-bar signal tuned for the globe landing. */
body.public-home-page .site-brand,
body.public-home-page .brand-reference-lockup {
  width: 223px;
}

body.public-home-page .brand-reference-lockup {
  height: 40px;
  gap: 10px;
}

body.public-home-page .brand-reference-mark {
  position: relative;
  flex: 0 0 38px;
  width: 38px;
  height: 38px;
  display: inline-grid;
  place-items: center;
  overflow: visible;
  isolation: isolate;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  transform: translateZ(0);
  transition:
    transform 220ms ease,
    filter 220ms ease;
}

body.public-home-page .brand-reference-mark::before {
  content: none;
}

body.public-home-page .brand-reference-mark::after {
  content: none;
}

body.public-home-page .brand-reference-mark svg {
  position: relative;
  z-index: 1;
  width: 36px;
  height: 36px;
  overflow: visible;
  filter:
    drop-shadow(0 0 4px rgba(51, 119, 255, 0.3))
    drop-shadow(0 2px 4px rgba(0, 6, 24, 0.38));
}

body.public-home-page .site-brand:hover .brand-reference-mark,
body.public-home-page .site-brand:focus-visible .brand-reference-mark {
  filter: brightness(1.06);
  transform: translateY(-1px) scale(1.025) translateZ(0);
}

@media (max-width: 620px) {
  body.public-home-page .site-brand,
  body.public-home-page .brand-reference-lockup {
    width: 177px;
  }

  body.public-home-page .brand-reference-lockup {
    height: 32px;
    gap: 7px;
  }

  body.public-home-page .brand-reference-mark {
    flex-basis: 31px;
    width: 31px;
    height: 31px;
  }

  body.public-home-page .brand-reference-mark svg {
    width: 29px;
    height: 29px;
  }
}

@media (max-width: 350px) {
  body.public-home-page .brand-reference-lockup {
    gap: 6px;
  }

  body.public-home-page .brand-reference-mark {
    flex-basis: 28px;
    width: 28px;
    height: 28px;
  }

  body.public-home-page .brand-reference-mark svg {
    width: 26px;
    height: 26px;
  }
}

@media (prefers-reduced-motion: reduce) {
  body.public-home-page .brand-reference-mark {
    transition-duration: 0.01ms;
  }
}

/* Hero heading: intentional three-line lockup with a stable mobile scale. */
#traffic-title.saas-title-three-lines {
  width: max-content;
  max-width: 780px;
  text-wrap: nowrap;
}

#traffic-title.saas-title-three-lines .saas-title-line {
  display: block;
  width: fit-content;
  max-width: none;
  white-space: nowrap;
  text-wrap: nowrap;
}

@media (max-width: 680px) {
  #traffic-title.saas-title-three-lines {
    width: 100%;
    max-width: 100%;
    font-size: clamp(23px, 7.2vw, 32px);
    line-height: 1.08;
    letter-spacing: -0.025em;
  }
}


/* Hero: keep the archived globe position and shape the copy around it. */
@media (min-width: 1280px) {
  body.public-home-page #traffic-title.saas-title-three-lines {
    max-width: 540px;
    font-size: clamp(43px, 3vw, 56px);
  }

  body.public-home-page .saas-hero-lead {
    max-width: 430px;
  }
}

@media (min-width: 1280px) and (max-width: 1799px) {
  body.public-home-page .saas-hero-actions {
    gap: 10px;
  }

  body.public-home-page .saas-button.is-hero-primary,
  body.public-home-page .saas-button.is-hero-secondary {
    min-height: 54px;
    padding-inline: 16px;
    font-size: 14px;
  }
}

@media (min-width: 1800px) {
  body.public-home-page .saas-hero-lead {
    max-width: 600px;
  }
}


/* Landing screen two: premium scenario-control composition. */
body.public-home-page .scenario-control-section {
  padding: clamp(56px, 4.4vw, 84px) 0;
}

body.public-home-page .scenario-control-layout {
  width: min(86vw, 1960px);
  max-width: calc(100vw - 48px);
  grid-template-columns: minmax(0, 41fr) minmax(0, 59fr);
  align-items: center;
  gap: clamp(64px, 4.5vw, 88px);
  isolation: isolate;
}

body.public-home-page .scenario-control-layout::before,
body.public-home-page .scenario-control-layout::after {
  content: "";
  position: absolute;
  z-index: -1;
  pointer-events: none;
}

body.public-home-page .scenario-control-layout::before {
  top: 7%;
  bottom: 10%;
  left: -8%;
  width: 54%;
  background: radial-gradient(ellipse at center, rgba(31, 106, 180, 0.055), transparent 72%);
}

body.public-home-page .scenario-control-layout::after {
  top: -10%;
  right: -8%;
  width: 70%;
  height: 120%;
  background: radial-gradient(ellipse at center, rgba(27, 181, 211, 0.075), transparent 68%);
}

body.public-home-page .scenario-control-copy {
  position: relative;
  top: -32px;
  width: 100%;
  max-width: 620px;
  justify-self: end;
}

body.public-home-page .scenario-control-copy .saas-kicker {
  gap: 11px;
  margin-bottom: 18px;
  color: #73ddd7;
  font-size: 11px;
  letter-spacing: 0.065em;
}

body.public-home-page .scenario-control-copy .saas-kicker::before {
  width: 19px;
  height: 1px;
  border-radius: 1px;
  background: linear-gradient(90deg, #63dfd6, #5d9dff);
  box-shadow: 0 0 12px rgba(94, 227, 219, 0.32);
}

body.public-home-page .scenario-control-copy h2 {
  max-width: 620px;
  color: #f5f8fd;
  font-size: clamp(42px, 3.15vw, 58px);
  font-weight: 820;
  line-height: 1.045;
  letter-spacing: -0.037em;
  text-wrap: balance;
}

body.public-home-page .scenario-heading-line {
  display: block;
}

body.public-home-page .scenario-control-description {
  max-width: 600px;
  margin-top: 22px;
  color: #9dacc0;
  font-size: clamp(16px, 1vw, 18px);
  line-height: 1.62;
  text-wrap: pretty;
}

body.public-home-page .scenario-control-strong {
  max-width: 585px;
  margin-top: 21px;
  padding: 9px 8px 9px 18px;
  background: linear-gradient(90deg, rgba(37, 185, 203, 0.075), transparent 86%);
  color: #d8e4f0;
  font-size: 14px;
  font-weight: 650;
  line-height: 1.55;
}

body.public-home-page .scenario-control-strong::before {
  top: 7px;
  bottom: 7px;
  width: 2px;
  background: linear-gradient(180deg, #62e0d7, rgba(76, 134, 234, 0.38));
  box-shadow: 0 0 14px rgba(86, 220, 217, 0.16);
}

body.public-home-page .scenario-control-capabilities {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 9px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

body.public-home-page .scenario-control-capability {
  min-width: 0;
  min-height: 88px;
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  align-content: start;
  gap: 9px;
  padding: 12px 11px;
  border: 1px solid rgba(118, 175, 216, 0.105);
  border-radius: 11px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.023), transparent 52%),
    rgba(5, 15, 27, 0.52);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.025);
  transition: border-color 200ms ease, background-color 200ms ease, transform 200ms ease;
}

body.public-home-page .scenario-control-capability:hover {
  border-color: rgba(99, 207, 218, 0.2);
  background-color: rgba(8, 23, 39, 0.66);
  transform: translateY(-1px);
}

body.public-home-page .scenario-capability-icon {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(93, 194, 218, 0.16);
  border-radius: 8px;
  background: rgba(42, 144, 184, 0.07);
  color: #70d8d7;
}

body.public-home-page .scenario-capability-icon svg {
  width: 16px;
  height: 16px;
  overflow: visible;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.55;
  stroke-linecap: round;
  stroke-linejoin: round;
}

body.public-home-page .scenario-capability-copy {
  min-width: 0;
  display: grid;
  gap: 5px;
}

body.public-home-page .scenario-capability-copy > strong {
  color: #dce8f3;
  font-size: 11px;
  font-weight: 740;
  line-height: 1.2;
}

body.public-home-page .scenario-capability-copy > span {
  color: #70869e;
  font-size: 9.5px;
  font-weight: 560;
  line-height: 1.42;
  text-wrap: balance;
}

body.public-home-page .traffic-scenario-console {
  padding: 15px;
  border-color: rgba(121, 190, 237, 0.17);
  border-radius: 24px;
  background:
    linear-gradient(145deg, rgba(16, 31, 50, 0.9), rgba(6, 16, 29, 0.95));
  box-shadow:
    0 42px 100px rgba(0, 3, 16, 0.42),
    0 0 90px rgba(24, 152, 193, 0.065),
    inset 0 1px 0 rgba(255, 255, 255, 0.052),
    inset 0 0 64px rgba(54, 145, 209, 0.026);
}

body.public-home-page .traffic-scenario-console:has(.scenario-wizard-grid) {
  padding: 15px;
}

body.public-home-page .scenario-wizard-grid {
  gap: 14px;
}

body.public-home-page .scenario-wizard-step {
  min-height: clamp(348px, 19.5vw, 378px);
  border-color: rgba(126, 179, 220, 0.14);
  border-radius: 15px;
  background:
    linear-gradient(155deg, rgba(255, 255, 255, 0.032), transparent 46%),
    rgba(5, 14, 26, 0.8);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.028), 0 16px 34px rgba(0, 5, 18, 0.14);
}

body.public-home-page .scenario-wizard-step.is-basic {
  border-color: rgba(83, 218, 211, 0.245);
  background:
    linear-gradient(150deg, rgba(64, 202, 200, 0.075), transparent 43%),
    linear-gradient(180deg, rgba(12, 27, 42, 0.96), rgba(5, 15, 27, 0.91));
  box-shadow:
    inset 0 1px 0 rgba(160, 244, 239, 0.055),
    inset 0 0 40px rgba(54, 190, 191, 0.025),
    0 18px 38px rgba(0, 6, 20, 0.2);
}

body.public-home-page .scenario-wizard-step.is-basic::before {
  width: 116px;
  height: 2px;
  opacity: 0.92;
}

body.public-home-page .scenario-wizard-step:hover {
  transform: translateY(-1px);
}

body.public-home-page .scenario-wizard-step-head {
  min-height: 74px;
  gap: 11px;
  padding: 13px 15px 12px;
}

body.public-home-page .scenario-wizard-step-head > span {
  min-width: 48px;
  min-height: 27px;
  font-size: 9px;
}

body.public-home-page .scenario-wizard-step-head h3 {
  font-size: clamp(13px, 0.73vw, 14.5px);
  line-height: 1.2;
}

body.public-home-page .scenario-wizard-step-head p {
  margin-top: 4px;
  font-size: clamp(8px, 0.46vw, 9px);
  line-height: 1.35;
}

body.public-home-page .scenario-wizard-step-body {
  padding: 13px 15px 10px;
}

body.public-home-page .scenario-wizard-form {
  gap: 8px;
}

body.public-home-page .scenario-wizard-field {
  min-height: 39px;
  gap: 4px;
  padding: 6px 9px;
}

body.public-home-page .scenario-wizard-field > span,
body.public-home-page .scenario-source-row span,
body.public-home-page .scenario-wizard-activity > span,
body.public-home-page .scenario-wizard-section-label {
  font-size: 8px;
}

body.public-home-page .scenario-wizard-field > strong {
  font-size: 10.5px;
}

body.public-home-page .scenario-wizard-ratio > div {
  font-size: 8px;
}

body.public-home-page .scenario-wizard-ratio > div strong {
  font-size: 9.5px;
}

body.public-home-page .scenario-wizard-activity i {
  min-height: 29px;
  font-size: 6.5px;
}

body.public-home-page .scenario-source-row {
  gap: 6px;
  padding: 10px 8px;
}

body.public-home-page .scenario-source-row strong {
  min-height: 30px;
  padding-inline: 7px;
  font-size: 8.5px;
}

body.public-home-page .scenario-wizard-add {
  min-height: 33px;
  font-size: 8.5px;
}

body.public-home-page .scenario-geo-countries > span {
  min-height: 42px;
  font-size: 8.5px;
}

body.public-home-page .scenario-geo-countries strong {
  font-size: 8.5px;
}

body.public-home-page .scenario-geo-countries small,
body.public-home-page .scenario-geo-regions > header span {
  font-size: 7px;
}

body.public-home-page .scenario-geo-regions > header {
  min-height: 35px;
}

body.public-home-page .scenario-geo-regions > header strong {
  font-size: 9px;
}

body.public-home-page .scenario-geo-search {
  min-height: 30px;
  font-size: 7.5px;
}

body.public-home-page .scenario-geo-option {
  min-height: 33px;
  font-size: 8px;
}

body.public-home-page .scenario-schedule-head > span {
  min-height: 41px;
}

body.public-home-page .scenario-schedule-head small {
  font-size: 7.5px;
}

body.public-home-page .scenario-schedule-head strong {
  font-size: 12px;
}

body.public-home-page .scenario-schedule-head > span.is-timezone {
  font-size: 8px;
}

body.public-home-page .scenario-schedule-chart {
  min-height: 142px;
}

body.public-home-page .scenario-chart-hours,
body.public-home-page .scenario-schedule-presets > span {
  font-size: 7.5px;
}

body.public-home-page .scenario-schedule-presets > span {
  min-height: 30px;
}

body.public-home-page .scenario-wizard-progress > span {
  width: 18px;
  height: 18px;
  font-size: 7px;
}

@media (max-width: 1120px) {
  body.public-home-page .scenario-control-layout {
    width: min(960px, calc(100% - 48px));
    max-width: none;
    grid-template-columns: minmax(0, 1fr);
    gap: 48px;
  }

  body.public-home-page .scenario-control-copy {
    top: 0;
    max-width: 760px;
    justify-self: start;
  }

  body.public-home-page .scenario-control-copy h2,
  body.public-home-page .scenario-control-description,
  body.public-home-page .scenario-control-strong {
    max-width: 720px;
  }

  body.public-home-page .scenario-control-copy h2 {
    font-size: clamp(42px, 5.8vw, 58px);
  }
}

@media (max-width: 700px) {
  body.public-home-page .scenario-control-section {
    padding: 56px 0 64px;
  }

  body.public-home-page .scenario-control-layout {
    width: calc(100% - 24px);
    gap: 34px;
  }

  body.public-home-page .scenario-control-layout::before {
    width: 92%;
    left: -26%;
  }

  body.public-home-page .scenario-control-layout::after {
    top: 32%;
    right: -30%;
    width: 110%;
    height: 62%;
    opacity: 0.72;
  }

  body.public-home-page .scenario-control-copy .saas-kicker {
    margin-bottom: 16px;
    font-size: 9.5px;
  }

  body.public-home-page .scenario-control-copy h2 {
    font-size: clamp(32px, 9vw, 38px);
    line-height: 1.075;
    letter-spacing: -0.032em;
  }

  body.public-home-page .scenario-heading-line {
    display: inline;
  }

  body.public-home-page .scenario-control-description {
    margin-top: 19px;
    font-size: 15px;
    line-height: 1.58;
  }

  body.public-home-page .scenario-control-strong {
    margin-top: 18px;
    padding-right: 0;
    font-size: 13.5px;
  }

  body.public-home-page .traffic-scenario-console,
  body.public-home-page .traffic-scenario-console:has(.scenario-wizard-grid) {
    padding: 10px;
    border-radius: 20px;
  }

  body.public-home-page .scenario-wizard-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 10px;
  }

  body.public-home-page .scenario-wizard-step {
    min-height: 348px;
  }
}

@media (max-width: 560px) {
  body.public-home-page .scenario-control-capabilities {
    grid-template-columns: minmax(0, 1fr);
    gap: 8px;
    margin-top: 23px;
  }

  body.public-home-page .scenario-control-capability {
    min-height: 64px;
    align-items: center;
    padding: 10px 11px;
  }

  body.public-home-page .scenario-capability-copy {
    gap: 3px;
  }

  body.public-home-page .scenario-capability-copy > span {
    font-size: 10px;
  }
}

@media (max-width: 360px) {
  body.public-home-page .scenario-control-copy h2 {
    font-size: 30px;
  }

  body.public-home-page .scenario-control-copy .saas-kicker {
    letter-spacing: 0.045em;
  }

  body.public-home-page .scenario-wizard-step-head {
    padding-inline: 12px;
  }

  body.public-home-page .scenario-wizard-step-body {
    padding-inline: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  body.public-home-page .scenario-control-capability,
  body.public-home-page .scenario-wizard-step {
    transition: none;
  }
}


/* Landing screen two v2: one connected scenario architecture. */
body.public-home-page .scenario-control-section {
  min-height: 0 !important;
  display: block;
  padding: clamp(92px, 6vw, 112px) 0;
  overflow: clip;
}

body.public-home-page .scenario-control-layout {
  width: min(90vw, 1960px);
  max-width: calc(100vw - 48px);
  grid-template-columns: minmax(0, 42fr) minmax(0, 58fr);
  align-items: start;
  gap: clamp(64px, 4.2vw, 80px);
}

body.public-home-page .scenario-control-layout::before {
  top: 6%;
  bottom: 8%;
  left: -7%;
  width: 46%;
  background: radial-gradient(ellipse at center, rgba(30, 105, 171, 0.04), transparent 72%);
}

body.public-home-page .scenario-control-layout::after {
  top: 20%;
  right: auto;
  left: 34%;
  width: 50%;
  height: 66%;
  background: radial-gradient(ellipse at center, rgba(25, 184, 205, 0.095), transparent 69%);
}

body.public-home-page .scenario-control-copy {
  top: 0;
  width: 100%;
  min-height: 585px;
  display: flex;
  flex-direction: column;
  max-width: 600px;
  justify-self: end;
}

body.public-home-page .scenario-control-copy h2 {
  max-width: 600px;
  font-size: clamp(42px, 3vw, 56px);
}

body.public-home-page .scenario-control-description {
  max-width: 590px;
  margin-top: 21px;
}

body.public-home-page .scenario-control-strong {
  position: relative;
  max-width: 575px;
  margin-top: 20px;
}

body.public-home-page .scenario-control-strong::after {
  content: "";
  position: absolute;
  top: calc(100% + 10px);
  left: min(40px, 7%);
  width: 1px;
  height: clamp(70px, calc(190px - 6vw), 104px);
  background: linear-gradient(180deg, rgba(79, 211, 210, 0.42), rgba(74, 157, 218, 0.08));
  box-shadow: 0 0 8px rgba(73, 204, 209, 0.1);
  pointer-events: none;
}

body.public-home-page .scenario-flow {
  position: relative;
  width: min(100%, 560px);
  height: 160px;
  margin: auto 0 0 auto;
  overflow: visible;
  border: 1px solid rgba(108, 178, 218, 0.14);
  border-radius: 16px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.027), transparent 48%),
    linear-gradient(180deg, rgba(8, 21, 35, 0.78), rgba(4, 13, 24, 0.68));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.032),
    inset 0 0 48px rgba(42, 171, 193, 0.026),
    0 18px 46px rgba(0, 5, 18, 0.16);
}

body.public-home-page .scenario-flow::before {
  content: "";
  position: absolute;
  top: -1px;
  right: 10%;
  left: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(89, 225, 218, 0.62), rgba(91, 132, 242, 0.38), transparent);
}

body.public-home-page .scenario-flow-head {
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 0 14px;
  border-bottom: 1px solid rgba(121, 172, 210, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.018), transparent);
}

body.public-home-page .scenario-flow-head > span,
body.public-home-page .scenario-flow-head > small {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
}

body.public-home-page .scenario-flow-head > span {
  color: #9cb4c9;
  font-size: 9px;
  font-weight: 720;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

body.public-home-page .scenario-flow-head > span > i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #60ddd4;
  box-shadow: 0 0 10px rgba(88, 221, 214, 0.42);
}

body.public-home-page .scenario-flow-head > small {
  color: #75ac9e;
  font-size: 8px;
  font-weight: 680;
}

body.public-home-page .scenario-flow-head > small > i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #63d8b9;
}

body.public-home-page .scenario-flow-body {
  position: relative;
  height: 119px;
  overflow: hidden;
  padding: 0 8px;
}

body.public-home-page .scenario-flow-path {
  position: absolute;
  z-index: 0;
  top: 10px;
  left: 8px;
  width: calc(100% - 16px);
  height: 82px;
  overflow: visible;
}

body.public-home-page .scenario-flow-path > path {
  fill: none;
  stroke: url(#scenarioFlowLineGradient);
  stroke-width: 1.4;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
  filter: drop-shadow(0 0 4px rgba(75, 211, 214, 0.18));
}

body.public-home-page .scenario-flow-signal {
  fill: #a4fff5;
  stroke: rgba(71, 221, 216, 0.7);
  stroke-width: 2px;
  filter: drop-shadow(0 0 5px rgba(85, 229, 222, 0.82));
}

body.public-home-page .scenario-flow-steps {
  position: relative;
  z-index: 1;
  height: 100%;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  list-style: none;
}

body.public-home-page .scenario-flow-steps > li {
  position: relative;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding-top: 12px;
  text-align: center;
}

body.public-home-page .scenario-flow-steps > li:nth-child(even) {
  padding-top: 28px;
}

body.public-home-page .scenario-flow-steps > li::before {
  content: attr(data-flow-step);
  position: absolute;
  top: 2px;
  right: 7px;
  color: rgba(103, 137, 168, 0.48);
  font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
  font-size: 6px;
  font-weight: 700;
}

body.public-home-page .scenario-flow-steps > li:nth-child(even)::before {
  top: 18px;
}

body.public-home-page .scenario-flow-node {
  width: 32px;
  height: 32px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border: 1px solid rgba(89, 211, 214, 0.28);
  border-radius: 50%;
  background:
    radial-gradient(circle at 36% 28%, rgba(99, 226, 221, 0.12), transparent 56%),
    #071927;
  color: #73dad7;
  box-shadow:
    0 0 0 4px rgba(59, 192, 199, 0.035),
    0 0 15px rgba(48, 190, 202, 0.11),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

body.public-home-page .scenario-flow-steps > li:nth-child(4) .scenario-flow-node,
body.public-home-page .scenario-flow-steps > li:nth-child(5) .scenario-flow-node {
  border-color: rgba(103, 139, 233, 0.28);
  color: #8ba7ef;
}

body.public-home-page .scenario-flow-node svg {
  width: 16px;
  height: 16px;
  overflow: visible;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.45;
  stroke-linecap: round;
  stroke-linejoin: round;
}

body.public-home-page .scenario-flow-copy {
  min-width: 0;
  display: grid;
  gap: 3px;
}

body.public-home-page .scenario-flow-copy > strong {
  overflow: hidden;
  color: #d5e3ef;
  font-size: 9.5px;
  font-weight: 720;
  line-height: 1.2;
  text-overflow: ellipsis;
  white-space: nowrap;
}

body.public-home-page .scenario-flow-copy > small {
  overflow: hidden;
  color: #6d8298;
  font-size: 7.5px;
  font-weight: 570;
  line-height: 1.25;
  text-overflow: ellipsis;
  white-space: nowrap;
}

body.public-home-page .scenario-flow-bridge {
  position: absolute;
  top: 78px;
  left: 100%;
  width: clamp(64px, 4.2vw, 80px);
  height: 1px;
  background: linear-gradient(90deg, rgba(80, 218, 216, 0.48), rgba(88, 151, 229, 0.2));
  box-shadow: 0 0 8px rgba(73, 205, 210, 0.12);
  pointer-events: none;
}

body.public-home-page .scenario-flow-bridge::before,
body.public-home-page .scenario-flow-bridge::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 5px;
  height: 5px;
  border: 1px solid rgba(91, 216, 216, 0.42);
  border-radius: 50%;
  background: #071522;
  transform: translateY(-50%);
}

body.public-home-page .scenario-flow-bridge::before {
  left: -2px;
}

body.public-home-page .scenario-flow-bridge::after {
  right: -2px;
  box-shadow: 0 0 10px rgba(83, 215, 215, 0.26);
}

body.public-home-page .traffic-scenario-console,
body.public-home-page .traffic-scenario-console:has(.scenario-wizard-grid) {
  padding: 14px;
}

body.public-home-page .scenario-wizard-grid {
  grid-auto-rows: auto;
  gap: 12px;
}

body.public-home-page .scenario-wizard-step {
  min-height: 300px;
}

body.public-home-page .scenario-wizard-step-head {
  min-height: 64px;
  gap: 10px;
  padding: 11px 13px 10px;
}

body.public-home-page .scenario-wizard-step-head > span {
  min-width: 46px;
  min-height: 25px;
  font-size: 8.5px;
}

body.public-home-page .scenario-wizard-step-head h3 {
  font-size: clamp(13.5px, 0.78vw, 15.5px);
}

body.public-home-page .scenario-wizard-step-head p {
  margin-top: 3px;
  font-size: clamp(8.5px, 0.5vw, 9.5px);
}

body.public-home-page .scenario-wizard-step-body {
  padding: 10px 13px 7px;
}

body.public-home-page .scenario-wizard-form {
  gap: 6px;
}

body.public-home-page .scenario-wizard-field {
  min-height: 34px;
  gap: 3px;
  padding: 5px 8px;
}

body.public-home-page .scenario-wizard-field > span,
body.public-home-page .scenario-source-row span,
body.public-home-page .scenario-wizard-activity > span,
body.public-home-page .scenario-wizard-section-label {
  font-size: 8.5px;
}

body.public-home-page .scenario-wizard-field > strong {
  font-size: 10.5px;
}

body.public-home-page .scenario-wizard-activity {
  gap: 5px;
}

body.public-home-page .scenario-wizard-activity i {
  min-height: 25px;
  font-size: 6.5px;
}

body.public-home-page .scenario-source-row {
  gap: 5px;
  padding: 8px 7px;
}

body.public-home-page .scenario-source-row strong {
  min-height: 27px;
  font-size: 9px;
}

body.public-home-page .scenario-wizard-add {
  min-height: 30px;
  font-size: 8.5px;
}

body.public-home-page .scenario-geo-countries > span {
  min-height: 36px;
  font-size: 9px;
}

body.public-home-page .scenario-geo-countries strong {
  font-size: 9px;
}

body.public-home-page .scenario-geo-regions > header {
  min-height: 30px;
}

body.public-home-page .scenario-geo-regions > header strong {
  font-size: 9.5px;
}

body.public-home-page .scenario-geo-search {
  min-height: 27px;
  margin: 5px;
  font-size: 8px;
}

body.public-home-page .scenario-geo-option {
  min-height: 28px;
  font-size: 8.5px;
}

body.public-home-page .scenario-schedule-head > span {
  min-height: 36px;
}

body.public-home-page .scenario-schedule-head small {
  font-size: 8px;
}

body.public-home-page .scenario-schedule-head > span.is-timezone {
  font-size: 8.5px;
}

body.public-home-page .scenario-schedule-chart {
  min-height: 108px;
}

body.public-home-page .scenario-schedule-presets > span {
  min-height: 27px;
  font-size: 8px;
}

body.public-home-page .scenario-wizard-progress {
  min-height: 27px;
  padding-bottom: 6px;
}

body.public-home-page .scenario-wizard-progress > span {
  width: 17px;
  height: 17px;
  font-size: 6.5px;
}

@media (max-width: 1120px) {
  body.public-home-page .scenario-control-section {
    padding: 84px 0 88px;
  }

  body.public-home-page .scenario-control-layout {
    width: min(960px, calc(100% - 48px));
    grid-template-columns: minmax(0, 1fr);
    gap: 52px;
  }

  body.public-home-page .scenario-control-copy {
    min-height: 0;
    display: block;
    max-width: 760px;
    justify-self: start;
  }

  body.public-home-page .scenario-flow {
    margin: 30px 0 0;
  }

  body.public-home-page .scenario-control-strong::after {
    display: none;
  }

  body.public-home-page .scenario-flow-bridge {
    display: none;
  }

  body.public-home-page .scenario-control-layout::after {
    top: 28%;
    left: 16%;
    width: 74%;
    height: 54%;
  }
}

@media (max-width: 700px) {
  body.public-home-page .scenario-control-section {
    padding: 64px 0 72px;
  }

  body.public-home-page .scenario-control-layout {
    width: calc(100% - 24px);
    gap: 38px;
  }

  body.public-home-page .scenario-control-copy h2 {
    font-size: clamp(32px, 9vw, 38px);
  }

  body.public-home-page .scenario-flow {
    width: 100%;
    height: auto;
    margin-top: 26px;
  }

  body.public-home-page .scenario-flow-head {
    min-height: 43px;
    padding-inline: 12px;
  }

  body.public-home-page .scenario-flow-body {
    height: auto;
    min-height: 300px;
    padding: 12px 13px 13px;
  }

  body.public-home-page .scenario-flow-path,
  body.public-home-page .scenario-flow-signal {
    display: none;
  }

  body.public-home-page .scenario-flow-steps {
    height: auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
  }

  body.public-home-page .scenario-flow-steps > li,
  body.public-home-page .scenario-flow-steps > li:nth-child(even) {
    min-height: 55px;
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr);
    align-items: center;
    align-content: center;
    justify-items: start;
    gap: 11px;
    padding: 0 28px 0 0;
    text-align: left;
  }

  body.public-home-page .scenario-flow-steps > li:not(:last-child)::after {
    content: "";
    position: absolute;
    z-index: -1;
    top: 42px;
    bottom: -13px;
    left: 16px;
    width: 1px;
    background: linear-gradient(180deg, rgba(83, 218, 214, 0.46), rgba(91, 131, 226, 0.16));
  }

  body.public-home-page .scenario-flow-steps > li::before,
  body.public-home-page .scenario-flow-steps > li:nth-child(even)::before {
    top: 50%;
    right: 0;
    transform: translateY(-50%);
  }

  body.public-home-page .scenario-flow-node {
    width: 33px;
    height: 33px;
    margin: 0;
  }

  body.public-home-page .scenario-flow-copy {
    gap: 3px;
  }

  body.public-home-page .scenario-flow-copy > strong {
    font-size: 11px;
  }

  body.public-home-page .scenario-flow-copy > small {
    font-size: 9px;
  }

  body.public-home-page .traffic-scenario-console,
  body.public-home-page .traffic-scenario-console:has(.scenario-wizard-grid) {
    padding: 10px;
  }

  body.public-home-page .scenario-wizard-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 10px;
  }

  body.public-home-page .scenario-wizard-step {
    min-height: 292px;
  }
}

@media (max-width: 420px) {
  body.public-home-page .scenario-flow-head > span {
    font-size: 8px;
  }

  body.public-home-page .scenario-flow-head > small {
    font-size: 7px;
  }
}

@media (max-width: 360px) {
  body.public-home-page .scenario-control-copy h2 {
    font-size: 30px;
  }

  body.public-home-page .scenario-flow-head > small {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  body.public-home-page .scenario-flow-signal {
    display: none;
  }
}


/* Screen two alignment: reuse the landing's shared content rail exactly. */
body.public-home-page .scenario-control-layout {
  width: var(--saas-content-rail);
  max-width: none;
  min-width: 0;
  margin-right: auto;
  margin-left: auto;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: clamp(40px, 4vw, 72px);
  box-sizing: border-box;
}

body.public-home-page .scenario-control-copy {
  width: 100%;
  max-width: none;
  min-width: 0;
  justify-self: stretch;
  box-sizing: border-box;
}

body.public-home-page .scenario-flow {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  margin-right: 0;
  margin-left: 0;
  overflow: hidden;
  box-sizing: border-box;
}

body.public-home-page .scenario-flow-bridge {
  display: none !important;
}

body.public-home-page .traffic-scenario-console,
body.public-home-page .traffic-scenario-console:has(.scenario-wizard-grid),
body.public-home-page .scenario-wizard-grid,
body.public-home-page .scenario-wizard-step {
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
}

body.public-home-page .traffic-scenario-console,
body.public-home-page .traffic-scenario-console:has(.scenario-wizard-grid),
body.public-home-page .scenario-wizard-grid {
  width: 100%;
}

body.public-home-page .traffic-scenario-console {
  transform: none;
}

@media (max-width: 1120px) {
  body.public-home-page .scenario-control-layout {
    grid-template-columns: minmax(0, 1fr);
    gap: clamp(40px, 5vw, 52px);
  }
}

@media (max-width: 700px) {
  body.public-home-page .scenario-control-layout {
    gap: 38px;
  }
}
