:root {
  --green: #09f7a3;
  --purple: #513eb2;
  --purple-dark: #2a1f76;
  --light: #f1efff;
  --text: #4c40ab;
  --white: #ffffff;
  --shadow: 0 24px 80px rgba(42, 31, 118, 0.2);
}

@property --rm-cta-angle {
  syntax: "<angle>";
  inherits: false;
  initial-value: 0deg;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--light);
  color: var(--text);
  font-family: "Space Grotesk", Arial, sans-serif;
  font-weight: 400;
  scroll-behavior: auto;
}

body {
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  cursor: none;
  background: var(--light);
}

a,
button {
  cursor: none;
}

.smooth-scroll {
  position: fixed;
  inset: 0;
  width: 100%;
  background: var(--light);
  will-change: transform;
}

.cursor {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 80;
  width: 34px;
  height: 34px;
  border: 1.5px solid rgba(81, 62, 178, 0.86);
  border-radius: 999px;
  pointer-events: none;
  transform: translate3d(-50%, -50%, 0);
  transition: width 180ms ease, height 180ms ease, border-color 180ms ease;
  mix-blend-mode: multiply;
}

.cursor span {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 7px;
  height: 7px;
  background: var(--green);
  border-radius: 999px;
  transition: background 160ms ease;
  transform: translate(-50%, -50%);
}

.cursor.on-green span {
  background: var(--purple);
}

.cursor.on-purple {
  border-color: rgba(9, 247, 163, 0.96);
  mix-blend-mode: normal;
  box-shadow: 0 0 18px rgba(9, 247, 163, 0.26);
}

.cursor.on-purple span,
.cursor.on-light span {
  background: var(--green);
}

.cursor.on-purple span {
  box-shadow: 0 0 14px rgba(9, 247, 163, 0.78);
}

.cursor.is-hovering {
  width: 52px;
  height: 52px;
  border-color: var(--green);
}

.back-to-top {
  position: fixed;
  right: clamp(18px, 2.6vw, 34px);
  bottom: clamp(18px, 2.6vw, 34px);
  z-index: 70;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  color: var(--purple);
  background: var(--green);
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 18px;
  box-shadow:
    0 18px 40px rgba(9, 247, 163, 0.3),
    0 10px 34px rgba(42, 31, 118, 0.22);
  text-decoration: none;
  opacity: 0;
  pointer-events: none;
  transform: translateY(18px) scale(0.92);
  transition:
    opacity 220ms ease,
    transform 260ms cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 220ms ease,
    filter 220ms ease;
}

.back-to-top span {
  font-size: 25px;
  line-height: 1;
  transform: translateY(-1px);
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.back-to-top:hover {
  box-shadow:
    0 0 34px rgba(9, 247, 163, 0.52),
    0 18px 44px rgba(42, 31, 118, 0.24);
  filter: brightness(1.04);
  transform: translateY(-3px) scale(1.02);
}

.floating-nav {
  position: fixed;
  top: 34px;
  left: 50%;
  z-index: 60;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  width: min(1180px, 88vw);
  min-height: 102px;
  padding: 18px 0;
  color: var(--purple);
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  opacity: 1;
  transform: translate(-50%, 0) scale(1);
  pointer-events: auto;
  backdrop-filter: blur(0) saturate(1);
  overflow: visible;
  transition:
    top 360ms ease,
    width 360ms ease,
    background 360ms ease,
    box-shadow 360ms ease,
    min-height 360ms ease,
    padding 360ms ease,
    backdrop-filter 360ms ease;
}

.floating-nav::before,
.floating-nav::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 360ms ease;
}

.floating-nav > * {
  position: relative;
  z-index: 1;
}

.floating-nav::before {
  border-bottom: 1px solid rgba(255, 255, 255, 0.24);
  box-shadow:
    inset 0 -1px 0 rgba(9, 247, 163, 0.08),
    0 1px 0 rgba(255, 255, 255, 0.08);
}

.floating-nav::after {
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.22) 0%, rgba(255, 255, 255, 0.05) 18%, transparent 42%),
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.22), transparent 42%);
  mix-blend-mode: screen;
}

.floating-nav.is-visible {
  top: 0;
  width: 100vw;
  color: var(--white);
  min-height: 78px;
  padding: 10px 50px;
  background: rgba(24, 16, 82, 0.84);
  box-shadow:
    0 24px 80px rgba(24, 16, 82, 0.32),
    0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(26px) saturate(1.7);
}

.floating-nav.is-visible::before,
.floating-nav.is-visible::after {
  opacity: 1;
}

.nav-group {
  display: flex;
  align-items: center;
  gap: 7px;
  min-width: 0;
}

.nav-products {
  justify-content: flex-start;
  gap: 3px;
}

.nav-links {
  justify-content: flex-end;
}

.floating-nav a {
  color: inherit;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
  font-size: 11px;
  line-height: 1;
  font-weight: 400;
}

.brand {
  position: relative;
  display: inline-grid;
  place-items: center;
  min-width: 210px;
}

.brand img {
  display: block;
  width: 190px;
  max-height: 54px;
  object-fit: contain;
  transition: opacity 260ms ease;
}

.logo-scroll {
  position: absolute;
  width: 138px;
  max-height: 48px;
  opacity: 0;
  pointer-events: none;
}

.floating-nav.is-visible .logo-top {
  opacity: 0;
}

.floating-nav.is-visible .logo-scroll {
  opacity: 1;
  width: 138px;
  max-height: 48px;
}

.brand span {
  display: none;
  color: var(--white);
  font-size: 22px;
  text-transform: none;
}

.brand img:not([src]),
.brand img.is-missing {
  display: none;
}

.brand img.is-missing + span {
  display: block;
}

.nav-cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 66px;
  padding: 0 33px;
  color: var(--green) !important;
  background: var(--purple);
  border-radius: 999px;
  font-weight: 400;
  overflow: hidden;
  transition: box-shadow 220ms ease, filter 220ms ease, transform 220ms ease;
}

.nav-cta:hover {
  box-shadow:
    0 0 0 1px rgba(81, 62, 178, 0.2),
    0 0 26px rgba(81, 62, 178, 0.55);
  filter: brightness(1.08);
  transform: translateY(-1px);
}

.nav-group > a:not(.nav-cta) {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 10px 5px;
  background: transparent;
  border-radius: 0;
}

.nav-group > a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 0;
  height: 1px;
  background: var(--purple);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms ease;
}

.nav-group > a:not(.nav-cta):hover::after {
  transform: scaleX(1);
}

.floating-nav.is-visible .nav-group > a:not(.nav-cta) {
  background: transparent;
  border-radius: 0;
  min-height: 40px;
  padding: 0 10px 5px;
}

.floating-nav.is-visible .nav-group > a:not(.nav-cta)::after {
  background: var(--green);
}

.floating-nav.is-visible .nav-products {
  gap: 7px;
}

.floating-nav.is-visible .nav-cta {
  color: var(--purple-dark) !important;
  background: var(--green);
  min-height: 46px;
  padding: 0 18px;
}

.floating-nav.is-visible .nav-cta:hover {
  box-shadow:
    0 0 0 1px rgba(9, 247, 163, 0.22),
    0 0 24px rgba(9, 247, 163, 0.6);
}

.mobile-top-nav {
  display: none;
}

.hero-section {
  min-height: 118vh;
  padding: 18px clamp(16px, 3vw, 42px) 13vh;
}

.hero-card {
  position: sticky;
  top: 18px;
  display: grid;
  grid-template-columns: minmax(220px, 0.56fr) minmax(420px, 1.28fr) minmax(220px, 0.56fr);
  grid-template-areas: "copy character seal";
  align-items: end;
  column-gap: clamp(8px, 2vw, 36px);
  min-height: calc(100vh - 68px);
  overflow: hidden;
  isolation: isolate;
  padding: clamp(28px, 5vw, 72px) clamp(28px, 5vw, 72px) 0;
  background: var(--green);
  border-radius: 32px;
  box-shadow: 0 28px 90px rgba(81, 62, 178, 0.22);
  transform-origin: center top;
  will-change: transform, border-radius;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(rgba(9, 247, 163, 0.18), rgba(9, 247, 163, 0.18)),
    url("./images/fundoverde.jpg");
  background-position: center;
  background-size: cover;
  opacity: 0.72;
  transform: scale(1);
  transform-origin: center;
  animation: bannerZoom 18s ease-in-out infinite alternate;
  pointer-events: none;
}

.tech-marquee {
  position: absolute;
  top: 37%;
  left: 50%;
  z-index: 1;
  display: flex;
  color: var(--purple);
  opacity: var(--tech-opacity, 1);
  font-size: clamp(118px, 22vw, 360px);
  font-weight: 700;
  letter-spacing: -0.08em;
  line-height: 0.75;
  white-space: nowrap;
  padding: 0.1em 0.16em 0.28em;
  transform: translate3d(calc(-50% + var(--marquee-x, 0vw)), -50%, 0);
  will-change: transform, opacity;
}

.tech-letter {
  display: inline-block;
  color: var(--purple);
  filter: blur(calc(var(--letter-blur, 0) * 1px));
  opacity: calc(1 - (var(--letter-blur, 0) * 0.025));
  transform: translateZ(0);
  transition: filter 90ms linear, opacity 90ms linear;
  will-change: filter, opacity;
}

.hero-copy {
  position: relative;
  grid-area: copy;
  z-index: 6;
  align-self: end;
  justify-self: end;
  max-width: 390px;
  margin-left: 0;
  padding-bottom: clamp(42px, 8vh, 90px);
}

.hero-copy p {
  margin: 0 0 24px;
  color: var(--purple);
  font-size: clamp(30px, 3.8vw, 64px);
  font-weight: 600;
  line-height: 0.95;
}

.hero-line {
  display: block;
  white-space: nowrap;
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 560ms ease, transform 680ms cubic-bezier(0.2, 0.82, 0.2, 1);
}

.hero-copy.is-entered .hero-line {
  opacity: 1;
  transform: translateY(0);
}

.hero-copy.is-entered .hero-line:nth-child(2) {
  transition-delay: 120ms;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 15px;
  min-height: 58px;
  padding: 0 24px 0 28px;
  color: var(--purple);
  background: var(--white);
  border: 1px solid var(--purple);
  border-radius: 999px;
  font-size: 16px;
  font-weight: 400;
  text-decoration: none;
  text-transform: lowercase;
  white-space: nowrap;
  opacity: 0;
  transform-origin: center;
  transform: translateY(22px);
  transition:
    opacity 520ms ease 240ms,
    transform 640ms cubic-bezier(0.2, 0.82, 0.2, 1) 240ms,
    box-shadow 220ms ease;
}

.hero-copy.is-entered .hero-cta {
  opacity: 1;
  transform: translateY(0);
}

.hero-cta:hover {
  transform: scale(1.04);
  box-shadow: 0 12px 26px rgba(81, 62, 178, 0.16);
}

.hero-cta span {
  display: grid;
  flex: 0 0 30px;
  place-items: center;
  width: 30px;
  height: 30px;
  aspect-ratio: 1;
  color: var(--white);
  background: var(--purple);
  border-radius: 999px;
  transition: transform 220ms ease;
}

.hero-cta:hover span {
  transform: translateX(5px);
}

.reveal-luxury {
  opacity: 0;
  transform: translateY(42px) scale(0.985);
  filter: blur(14px);
  transition:
    opacity 760ms ease,
    transform 900ms cubic-bezier(0.16, 1, 0.3, 1),
    filter 900ms cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: 0ms;
  will-change: opacity, transform, filter;
}

.reveal-luxury.is-revealed {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal-luxury::selection {
  background: var(--green);
  color: var(--purple);
}

.products-grid article.reveal-luxury {
  transform: translateY(52px) scale(0.97);
}

.products-grid article.reveal-luxury.is-revealed {
  transform: translateY(0) scale(1);
}

.character-wrap {
  position: relative;
  grid-area: character;
  z-index: 2;
  display: grid;
  place-items: end center;
  width: 100%;
  height: min(84vh, 860px);
  pointer-events: none;
}

.character {
  position: relative;
  z-index: 2;
  display: block;
  width: min(112%, 980px);
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: none;
}

.mobile-character,
.intro-mobile-image {
  display: none;
}

.character.is-missing {
  display: none;
}

.character-fallback,
.fallback-seal,
.fallback-seal-center,
body.has-character .character-fallback {
  display: none;
}

.character-fallback {
  position: absolute;
  bottom: 0;
  z-index: 1;
  display: grid;
  place-items: center;
  width: min(52vw, 620px);
  aspect-ratio: 0.82;
  color: var(--green);
  background: radial-gradient(circle at 50% 24%, #f1efff 0 16%, #513eb2 17% 100%);
  border: 12px solid rgba(255, 255, 255, 0.58);
  border-radius: 46% 46% 38% 38%;
  box-shadow: none;
}

.character-fallback strong {
  margin-top: 34%;
  color: var(--white);
  font-size: clamp(28px, 5vw, 66px);
  font-weight: 600;
}

.seal {
  position: relative;
  grid-area: seal;
  z-index: 7;
  justify-self: start;
  align-self: end;
  right: auto;
  top: auto;
  bottom: auto;
  width: clamp(138px, 13vw, 198px);
  aspect-ratio: 1;
  margin-bottom: clamp(34px, 6vh, 76px);
  transform: none;
}

.seal-ring,
.seal-center {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.seal-ring {
  inset: 7%;
  width: 86%;
  height: 86%;
  animation: spin 12s linear infinite;
}

.seal-center {
  inset: 19%;
  width: 62%;
  height: 62%;
}

.seal img.is-missing {
  display: none;
}

.seal.has-ring .fallback-seal,
.seal.has-center .fallback-seal-center {
  display: none;
}

.fallback-seal {
  border: 2px solid var(--purple);
  border-radius: 999px;
  background:
    repeating-conic-gradient(from 0deg, var(--purple) 0deg 10deg, transparent 10deg 20deg),
    var(--white);
  mask: radial-gradient(circle, transparent 0 47%, #000 48%);
}

.fallback-seal-center {
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--purple);
  border-radius: 999px;
  font-size: clamp(24px, 4vw, 48px);
  font-weight: 600;
}

.character-fallback,
.fallback-seal,
.fallback-seal-center {
  display: none;
}

.service-tags {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  overflow: hidden;
  margin-top: -128px;
  padding: 18px 0 28px;
  background: var(--light);
  transform: translate3d(0, var(--tags-y, 0px), 0);
  will-change: transform;
}

.tags-track {
  display: flex;
  width: max-content;
  gap: 10px;
  animation: tagsScroll 34s linear infinite;
}

.tags-set {
  display: flex;
  gap: 10px;
  padding-right: 10px;
}

.tags-set span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 64px;
  padding: 0 34px;
  color: var(--purple);
  background: var(--green);
  border-radius: 999px;
  font-size: clamp(17px, 1.45vw, 22px);
  font-weight: 400;
  white-space: nowrap;
}

.tags-set span:nth-child(even) {
  color: var(--green);
  background: var(--purple);
}

.intro-band {
  position: relative;
  --intro-bg: #f0effa;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.7fr);
  gap: clamp(24px, 4vw, 64px);
  align-items: end;
  min-height: 92vh;
  overflow: hidden;
  isolation: isolate;
  padding: 14vh clamp(20px, 7vw, 96px) 14vh;
  background: var(--intro-bg);
}

.intro-video {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 0;
  width: auto;
  max-width: none;
  height: auto;
  object-fit: contain;
  opacity: 1;
  transform: translate3d(calc(-50% - 200px), -50%, 0);
  backface-visibility: hidden;
  -webkit-mask-image: linear-gradient(90deg, #000 0 76%, rgba(0, 0, 0, 0.72) 86%, transparent 100%);
  mask-image: linear-gradient(90deg, #000 0 76%, rgba(0, 0, 0, 0.72) 86%, transparent 100%);
  pointer-events: none;
  will-change: transform;
}

.intro-video.is-floating {
  animation: cubeFloat 3.8s ease-in-out infinite;
}

.intro-band::after {
  content: none;
  position: absolute;
  inset: 0;
  z-index: 1;
  background: var(--intro-bg);
  pointer-events: none;
}

.intro-heading,
.intro-text {
  position: relative;
  z-index: 2;
}

.intro-heading {
  grid-column: 1;
  justify-self: start;
  text-align: left;
}

.intro-text {
  grid-column: 2;
  justify-self: end;
  text-align: right;
}

h1,
h2 {
  margin: 0;
  color: var(--text);
  font-weight: 600;
  letter-spacing: 0;
}

h1 {
  max-width: 920px;
  font-size: clamp(42px, 7vw, 116px);
  line-height: 0.92;
}

.intro-heading h1 {
  max-width: 920px;
  font-size: clamp(42px, 7vw, 116px);
}

.highlight-word {
  display: inline-block;
  padding: 0 0.12em 0.06em;
  color: var(--purple);
  background: var(--green);
  border-radius: 0.18em;
  line-height: 0.9;
}

.intro-text {
  margin: 0;
  max-width: 460px;
  color: #4b5563;
  font-size: clamp(16px, 1.45vw, 21px);
  line-height: 1.25;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(190px, 1fr));
  min-height: 64vh;
  border-top: 1px solid rgba(76, 64, 171, 0.22);
  border-bottom: 1px solid rgba(76, 64, 171, 0.22);
}

.products-grid article {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 440px;
  padding: clamp(22px, 3vw, 42px);
  border-right: 1px solid rgba(76, 64, 171, 0.22);
  background: var(--light);
  overflow: hidden;
  transition: background 240ms ease, color 240ms ease, transform 240ms ease, box-shadow 240ms ease;
}

.products-grid article:hover {
  color: var(--purple-dark);
  background: var(--green);
  box-shadow:
    inset 0 0 0 1px rgba(9, 247, 163, 0.24),
    0 0 34px rgba(9, 247, 163, 0.48);
}

.product-index {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  color: var(--purple);
  border: 1px solid var(--purple);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 400;
  transition: background 220ms ease, border-color 220ms ease;
}

.products-grid article:hover .product-index {
  background: var(--white);
  border-color: var(--white);
  animation: indexPulse 1.35s ease-in-out infinite;
}

.product-logo {
  align-self: flex-start;
  width: min(136px, 64%);
  max-height: 42px;
  margin-top: 14px;
  object-fit: contain;
  object-position: left center;
  filter: brightness(0) saturate(100%) invert(25%) sepia(58%) saturate(1744%) hue-rotate(230deg) brightness(92%) contrast(90%);
  opacity: 0.42;
  transition:
    filter 220ms ease,
    opacity 220ms ease,
    transform 220ms ease;
}

#image-converter .product-logo {
  max-height: 50px;
}

#gestao-xml .product-logo {
  width: min(156px, 72%);
  max-height: 48px;
}

#importa-xml .product-logo {
  width: min(176px, 82%);
  max-height: 54px;
}

.products-grid article:hover .product-logo {
  filter: brightness(0) invert(1);
  opacity: 1;
  transform: translateY(-2px);
}

.product-body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.products-grid h2 {
  margin-bottom: 18px;
  font-size: clamp(27px, 3.1vw, 48px);
  line-height: 0.96;
}

.products-grid p {
  margin: 0;
  font-size: 17px;
  line-height: 1.28;
}

.product-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 42px;
  margin-top: 24px;
  padding: 0 18px;
  color: var(--purple);
  border: 1px solid var(--purple);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 400;
  text-decoration: none;
  text-transform: lowercase;
  transition: background 220ms ease, color 220ms ease, transform 220ms ease;
}

.product-cta span {
  transition: transform 220ms ease;
}

.product-cta:hover {
  color: var(--white);
  background: var(--purple);
  transform: translateY(-1px);
}

.product-cta:hover span {
  transform: translateX(4px);
}

.contact-band {
  position: relative;
  display: grid;
  grid-template-columns: minmax(560px, 900px) minmax(430px, 620px);
  align-items: center;
  justify-content: center;
  gap: clamp(44px, 4.5vw, 88px);
  min-height: 68vh;
  padding: clamp(48px, 7vw, 96px) clamp(28px, 7vw, 96px) 0;
  color: var(--white);
  background: var(--purple);
  overflow: hidden;
  isolation: isolate;
}

.contact-band::before {
  content: none;
}

.contact-copy,
.contact-visual {
  position: relative;
  z-index: 1;
}

.contact-copy {
  justify-self: start;
  max-width: 900px;
  transform: translateX(clamp(-42px, -2.2vw, -18px));
}

.contact-band p {
  max-width: 900px;
  margin: 0;
  font-size: clamp(38px, 5.4vw, 88px);
  font-weight: 600;
  line-height: 0.92;
}

.rotating-line {
  display: inline-flex;
  align-items: baseline;
  gap: 0.14em;
  white-space: nowrap;
}

.contact-visual {
  align-self: end;
  justify-self: start;
  display: grid;
  place-items: end center;
  width: min(43vw, 620px);
  min-width: 420px;
  min-height: 640px;
  transform: translateX(clamp(-24px, -1.4vw, -8px));
}

.contact-mascot-crop {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: end center;
  overflow: hidden;
  padding-top: 24px;
}

.contact-mascot {
  position: relative;
  display: block;
  width: min(45vw, 640px);
  min-width: 390px;
  margin-bottom: -34px;
  filter: none;
  transform: translateY(46px) scale(0.94);
  opacity: 0;
  transition:
    opacity 820ms ease,
    transform 980ms cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.contact-mascot.is-revealed {
  opacity: 1;
  transform: translateY(0) scale(1);
  animation: mascotFloat 4.8s ease-in-out 900ms infinite;
}

.notification-stack {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
}

.glass-note {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: max-content;
  max-width: min(360px, 78vw);
  min-height: 76px;
  padding: 15px 20px 15px 15px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0.08)),
    rgba(37, 24, 110, 0.36);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 22px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.34),
    inset 0 -1px 0 rgba(9, 247, 163, 0.1),
    0 22px 52px rgba(18, 12, 62, 0.26);
  backdrop-filter: blur(18px) saturate(1.7);
  font-size: clamp(12px, 0.9vw, 15px);
  line-height: 1.12;
  pointer-events: auto;
  opacity: 0;
  transform:
    translate3d(var(--note-x, 0), calc(var(--note-enter-y, 34px) + var(--note-float-y, 0px)), 0)
    rotate(var(--note-rotate, 0deg))
    perspective(900px)
    rotateX(var(--tilt-y, 0deg))
    rotateY(var(--tilt-x, 0deg))
    scale(0.96);
  transition:
    opacity 720ms ease,
    transform 860ms cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 220ms ease,
    border-color 220ms ease,
    background 220ms ease;
  transition-delay: 0ms;
  will-change: opacity, transform;
}

.glass-note.is-revealed {
  opacity: 1;
  --note-enter-y: 0px;
  transition-delay: var(--reveal-delay, 0ms);
  animation: noteFloat 4.6s ease-in-out var(--float-delay, 0ms) infinite;
}

.glass-note:hover {
  border-color: rgba(9, 247, 163, 0.78);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.42), rgba(255, 255, 255, 0.16)),
    rgba(37, 24, 110, 0.58);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.58),
    inset 0 -1px 0 rgba(9, 247, 163, 0.24),
    0 0 0 1px rgba(9, 247, 163, 0.28),
    0 28px 72px rgba(18, 12, 62, 0.42),
    0 0 46px rgba(9, 247, 163, 0.34);
}

.note-icon {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 34px;
  height: 34px;
  color: var(--purple);
  background: var(--green);
  border-radius: 999px;
  box-shadow: 0 0 22px rgba(9, 247, 163, 0.42);
}

.note-icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
  animation: iconPulse 2.3s ease-in-out infinite;
}

.note-bolt .note-icon svg {
  fill: currentColor;
  stroke-width: 0;
  animation-name: iconBolt;
}

.note-target .note-icon svg {
  animation-name: iconTarget;
}

.note-code .note-icon svg {
  animation-name: iconCode;
}

.note-like {
  top: 4%;
  left: -9%;
  --note-rotate: 0deg;
  --float-delay: 0ms;
}

.note-bolt {
  top: 18%;
  right: -11%;
  --note-rotate: 0deg;
  --float-delay: 220ms;
}

.note-target {
  top: 39%;
  left: -20%;
  max-width: 285px;
  --note-rotate: 0deg;
  --float-delay: 420ms;
}

.note-cert {
  right: -12%;
  bottom: 27%;
  --note-rotate: 0deg;
  --float-delay: 640ms;
}

.note-code {
  left: -5%;
  bottom: 10%;
  --note-rotate: 0deg;
  --float-delay: 860ms;
}

.rotating-highlight {
  position: relative;
  display: inline-grid;
  box-sizing: content-box;
  min-width: 0;
  width: var(--highlight-width, auto);
  padding: 0 0.13em 0.07em;
  color: var(--purple);
  background: var(--green);
  border-radius: 0.18em;
  line-height: 0.92;
  vertical-align: baseline;
  overflow: hidden;
  transition: width 360ms cubic-bezier(0.16, 1, 0.3, 1);
}

.rotating-highlight span {
  grid-area: 1 / 1;
  justify-self: start;
  opacity: 0;
  transform: translateY(0.22em);
  white-space: nowrap;
  transition:
    opacity 420ms ease,
    transform 520ms cubic-bezier(0.16, 1, 0.3, 1);
}

.rotating-highlight span.is-active {
  opacity: 1;
  transform: translateY(0);
}

.partners-band {
  position: relative;
  min-height: 78vh;
  padding: clamp(72px, 10vw, 150px) 0 clamp(76px, 10vw, 140px);
  overflow: hidden;
  color: var(--text);
  background: var(--light);
  isolation: isolate;
}

.partners-copy {
  position: relative;
  z-index: 4;
  width: min(720px, 46vw);
  margin-left: clamp(20px, 7vw, 96px);
}

.partners-copy h2 {
  margin: 0;
  color: var(--text);
  font-size: clamp(42px, 7vw, 116px);
  font-weight: 600;
  line-height: 0.92;
}

.partners-copy h2 span,
.partners-copy p span {
  display: block;
}

.partners-copy mark {
  position: relative;
  display: inline-block;
  z-index: 0;
  padding: 0 0.1em 0.08em;
  color: var(--purple);
  background: transparent;
  line-height: 1;
}

.partners-copy mark::before {
  content: "";
  position: absolute;
  z-index: -1;
  left: -0.08em;
  right: -0.08em;
  top: 0.18em;
  bottom: 0.06em;
  background: var(--green);
  border-radius: 0.16em;
}

.partners-copy p {
  max-width: 620px;
  margin: 34px 0 0;
  color: #4b5563;
  font-size: clamp(18px, 1.65vw, 25px);
  line-height: 1.24;
}

.partners-logos {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: grid;
  align-content: center;
  gap: clamp(22px, 4vw, 42px);
  padding: clamp(84px, 10vw, 150px) 0 clamp(70px, 8vw, 120px);
  pointer-events: none;
}

.partners-logos::before,
.partners-logos::after {
  content: "";
  position: absolute;
  inset-block: 0;
  z-index: 3;
  pointer-events: none;
}

.partners-logos::before {
  left: 0;
  width: min(62vw, 980px);
  background: linear-gradient(
    90deg,
    var(--light) 0 48%,
    rgba(241, 239, 255, 0.94) 62%,
    rgba(241, 239, 255, 0.48) 82%,
    rgba(241, 239, 255, 0) 100%
  );
  backdrop-filter: blur(5px);
  -webkit-mask-image: linear-gradient(90deg, #000 0 86%, rgba(0, 0, 0, 0) 100%);
  mask-image: linear-gradient(90deg, #000 0 86%, rgba(0, 0, 0, 0) 100%);
}

.partners-logos::after {
  right: 0;
  width: min(20vw, 300px);
  background:
    linear-gradient(
      90deg,
      rgba(241, 239, 255, 0) 0%,
      rgba(241, 239, 255, 0.26) 34%,
      rgba(241, 239, 255, 0.78) 72%,
      var(--light) 100%
    ),
    linear-gradient(135deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.04));
  backdrop-filter: blur(12px) saturate(1.18);
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  -webkit-mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, #000 18% 100%);
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, #000 18% 100%);
}

.logos-row {
  width: 100%;
  overflow: hidden;
  opacity: 0.98;
  transform: translateZ(0);
}

.logos-track {
  display: flex;
  align-items: center;
  width: max-content;
  gap: clamp(18px, 2.5vw, 36px);
  animation: logosSlideLeft 36s linear infinite;
  will-change: transform;
}

.logos-track img {
  display: block;
  width: clamp(980px, 78vw, 1640px);
  height: auto;
  object-fit: contain;
  opacity: 0.92;
  filter: none;
}

.row-right .logos-track {
  animation-name: logosSlideRight;
  animation-duration: 42s;
}

.row-slow .logos-track {
  animation-duration: 48s;
}

.blog-band {
  position: relative;
  display: grid;
  grid-template-columns: minmax(420px, 0.78fr) minmax(660px, 1.22fr);
  align-items: stretch;
  gap: clamp(28px, 3.6vw, 68px);
  padding: clamp(84px, 8vw, 136px) clamp(28px, 7vw, 104px);
  color: var(--purple);
  background:
    linear-gradient(90deg, rgba(9, 247, 163, 0.96), rgba(9, 247, 163, 0.84)),
    var(--green);
  overflow: hidden;
  isolation: isolate;
}

.blog-copy {
  position: relative;
  z-index: 1;
  align-self: center;
  max-width: 860px;
}

.blog-copy h2 {
  margin: 0;
  color: var(--purple);
  font-size: clamp(48px, 6.4vw, 112px);
  font-weight: 600;
  letter-spacing: 0;
  line-height: 0.84;
}

.blog-copy h2 span {
  display: block;
  letter-spacing: 0;
}

.blog-copy mark {
  position: relative;
  display: inline-block;
  z-index: 0;
  padding: 0 0.1em 0.08em;
  color: var(--purple);
  background: transparent;
  line-height: 1;
}

.blog-copy mark::before {
  content: "";
  position: absolute;
  z-index: -1;
  left: -0.08em;
  right: -0.08em;
  top: 0.18em;
  bottom: 0.06em;
  background: var(--white);
  border-radius: 0.16em;
}

.blog-copy p {
  max-width: 610px;
  margin: 32px 0 0;
  color: rgba(81, 62, 178, 0.84);
  font-size: clamp(18px, 1.55vw, 24px);
  line-height: 1.22;
}

.blog-cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  min-height: 56px;
  margin-top: 38px;
  padding: 0 22px 0 28px;
  color: var(--white);
  background: var(--purple);
  border: 1px solid var(--purple);
  border-radius: 999px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 400;
  overflow: hidden;
  transition: transform 220ms ease, box-shadow 220ms ease, filter 220ms ease;
}

.blog-cta::before {
  content: "";
  position: absolute;
  inset: -40% auto -40% -70%;
  width: 52%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.54), transparent);
  transform: skewX(-18deg);
  transition: left 520ms ease;
}

.blog-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 34px rgba(81, 62, 178, 0.34);
  filter: brightness(1.04);
}

.blog-cta:hover::before {
  left: 120%;
}

.blog-cta span {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  color: var(--purple);
  background: var(--green);
  border-radius: 999px;
  transition: transform 220ms ease;
}

.blog-cta:hover span {
  transform: translateX(3px);
}

.blog-cards {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 28px);
  align-self: stretch;
  border: 0;
  border-radius: 0;
}

.blog-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 610px;
  padding: clamp(24px, 2.6vw, 38px);
  color: var(--purple);
  background: var(--light);
  border: 1px solid rgba(76, 64, 171, 0.26);
  border-radius: 0;
  box-shadow: none;
  overflow: hidden;
  transition:
    background 240ms ease,
    color 240ms ease,
    transform 240ms ease,
    box-shadow 240ms ease,
    border-color 240ms ease;
}

.blog-card:hover {
  color: var(--purple-dark);
  background: var(--green);
  border-color: rgba(9, 247, 163, 0.48);
  box-shadow:
    inset 0 0 0 1px rgba(9, 247, 163, 0.24),
    0 0 34px rgba(9, 247, 163, 0.46);
  transform: translateY(-4px);
}

.blog-index {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  color: var(--purple);
  border: 1px solid var(--purple);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 400;
  transition:
    background 220ms ease,
    border-color 220ms ease,
    color 220ms ease;
}

.blog-card:hover .blog-index {
  color: var(--purple);
  background: var(--white);
  border-color: var(--white);
  animation: indexPulse 1.35s ease-in-out infinite;
}

.blog-card-media {
  position: relative;
  display: block;
  width: min(210px, 74%);
  aspect-ratio: 1.28;
  margin: clamp(18px, 2vw, 28px) 0 0;
  padding: 0;
  overflow: hidden;
  background: rgba(81, 62, 178, 0.1);
  border: 1px solid rgba(81, 62, 178, 0.12);
  border-radius: 18px;
  transition:
    border-color 220ms ease,
    transform 260ms ease,
    box-shadow 260ms ease;
}

.blog-card-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 520ms cubic-bezier(0.16, 1, 0.3, 1);
}

.blog-new-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  color: var(--purple);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.36), rgba(255, 255, 255, 0.1)),
    rgba(9, 247, 163, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.46);
  border-radius: 999px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.44),
    0 18px 36px rgba(9, 247, 163, 0.22);
  backdrop-filter: blur(14px) saturate(1.55);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0;
}

.blog-card:hover .blog-card-media {
  border-color: rgba(255, 255, 255, 0.68);
  box-shadow: 0 18px 34px rgba(81, 62, 178, 0.14);
  transform: translateY(-2px);
}

.blog-card:hover .blog-card-media img {
  transform: scale(1.045);
}

.blog-card-top {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin: clamp(24px, 2.4vw, 36px) 0 0;
  font-size: 13px;
  line-height: 1.2;
}

.blog-card-top span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  color: var(--purple);
  background: rgba(9, 247, 163, 0.18);
  border: 1px solid rgba(81, 62, 178, 0.12);
  border-radius: 999px;
  font-weight: 600;
  transition:
    background 220ms ease,
    border-color 220ms ease;
}

.blog-card:hover .blog-card-top span {
  background: rgba(255, 255, 255, 0.32);
  border-color: rgba(255, 255, 255, 0.54);
}

.blog-card h3 {
  margin: clamp(20px, 2.4vw, 34px) 0 0;
  color: var(--purple);
  font-size: clamp(26px, 2.25vw, 42px);
  font-weight: 600;
  letter-spacing: 0;
  line-height: 0.96;
  transition: color 220ms ease;
}

.blog-card p {
  margin: 20px 0 0;
  color: #4b5563;
  font-size: clamp(15px, 1.05vw, 17px);
  line-height: 1.38;
  transition: color 220ms ease;
}

.blog-card:hover h3,
.blog-card:hover p {
  color: var(--purple);
}

.blog-card > a:not(.blog-card-media) {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
  min-height: 42px;
  margin: clamp(34px, 3.8vw, 56px) 0 0;
  padding: 0 18px;
  color: var(--purple);
  border: 1px solid var(--purple);
  border-radius: 999px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  transition:
    background 220ms ease,
    color 220ms ease,
    transform 220ms ease,
    border-color 220ms ease;
}

.blog-card > a:not(.blog-card-media):hover {
  color: var(--white);
  background: var(--purple);
  border-color: var(--purple);
  transform: translateY(-1px);
}

.blog-card > a:not(.blog-card-media) span {
  transition: transform 220ms ease;
}

.blog-card > a:not(.blog-card-media):hover span {
  transform: translateX(4px);
}

.blog-card small {
  margin: clamp(18px, 2vw, 28px) 0 0;
  color: rgba(81, 62, 178, 0.55);
  font-size: 13px;
  transition: color 220ms ease;
}

.blog-card:hover small {
  color: rgba(81, 62, 178, 0.68);
}

.curve-ribbon-band {
  position: relative;
  z-index: 8;
  min-height: auto;
  padding: clamp(78px, 8vw, 126px) 0 clamp(24px, 4vw, 58px);
  color: var(--purple);
  background:
    radial-gradient(circle at 18% 18%, rgba(9, 247, 163, 0.2), transparent 32%),
    var(--light);
  overflow: hidden;
  isolation: isolate;
}

.curve-ribbon-copy {
  position: relative;
  z-index: 3;
  width: min(1160px, calc(100% - 48px));
  margin: 0 auto;
  text-align: center;
}

.curve-ribbon-heading {
  display: block;
  width: 100%;
}

.curve-ribbon-copy h2 {
  margin: 0;
  color: var(--purple);
  font-size: clamp(46px, 6.5vw, 108px);
  font-weight: 600;
  line-height: 0.88;
  letter-spacing: 0;
}

.curve-ribbon-copy h2 span {
  display: block;
}

.curve-ribbon-copy mark {
  position: relative;
  display: inline-block;
  z-index: 0;
  padding: 0 0.08em 0.07em;
  color: var(--purple);
  background: transparent;
}

.curve-ribbon-copy mark::before {
  content: "";
  position: absolute;
  z-index: -1;
  left: -0.08em;
  right: -0.08em;
  top: 0.2em;
  bottom: 0.06em;
  background: var(--green);
  border-radius: 0.16em;
}

.curve-ribbon-copy p {
  max-width: 1120px;
  margin: clamp(28px, 3vw, 42px) auto 0;
  color: rgba(81, 62, 178, 0.82);
  font-size: clamp(18px, 1.6vw, 25px);
  line-height: 1.3;
  letter-spacing: 0;
}

.curve-ribbon-copy p span {
  color: rgba(81, 62, 178, 0.82);
  font-weight: 400;
}

.dna-cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 48px;
  margin-top: clamp(22px, 2.4vw, 34px);
  padding: 0 24px;
  color: var(--purple);
  border: 1px solid var(--purple);
  border-radius: 999px;
  font-size: 16px;
  font-weight: 400;
  text-decoration: none;
  text-transform: lowercase;
  overflow: hidden;
  transition:
    color 220ms ease,
    background 220ms ease,
    border-color 220ms ease,
    transform 220ms ease,
    box-shadow 220ms ease;
}

.dna-cta span {
  transition: transform 220ms ease;
}

.dna-cta:hover {
  color: var(--purple);
  background: var(--green);
  border-color: var(--green);
  box-shadow: 0 0 30px rgba(9, 247, 163, 0.45);
  transform: translateY(-2px);
}

.dna-cta:hover span {
  transform: translateX(4px);
}

.dna-seal {
  position: absolute;
  top: clamp(76px, 6vw, 112px);
  right: clamp(4px, 3vw, 46px);
  display: grid;
  place-items: center;
  width: clamp(112px, 10vw, 154px);
  aspect-ratio: 1;
}

.dna-seal-text {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  animation: spin 16s linear infinite;
}

.dna-seal-text text {
  fill: var(--purple);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0.025em;
}

.dna-seal-core {
  display: grid;
  place-items: center;
  width: 54%;
  aspect-ratio: 1;
  background: rgba(255, 255, 255, 0.52);
  border: 0;
  border-radius: 999px;
  backdrop-filter: blur(14px) saturate(1.4);
}

.dna-seal-core img {
  display: block;
  width: 58%;
  height: auto;
}

.dna-video-card {
  position: relative;
  z-index: 2;
  width: min(1120px, calc(100% - 48px));
  aspect-ratio: 16 / 8;
  margin: clamp(32px, 3.4vw, 56px) auto 0;
  overflow: hidden;
  border-radius: clamp(28px, 3vw, 48px);
  background: rgba(81, 62, 178, 0.14);
  box-shadow: 0 30px 72px rgba(42, 31, 118, 0.16);
}

.dna-video-card video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.curve-ribbon-wrap {
  position: relative;
  z-index: 4;
  width: 100%;
  margin-top: clamp(-700px, -38vw, -650px);
  transform: rotate(-1deg);
}

.curve-ribbon-image {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 28px 42px rgba(42, 31, 118, 0.2));
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Keep the partner mark and map address interactive like the other products. */
.footer-powered img { display: block; width: 100%; height: auto; }
.footer-powered { transition: filter 180ms ease, opacity 180ms ease; }
.footer-powered:hover, .footer-powered:focus-visible { filter: none; opacity: 1; }
.footer-contact address a { color: inherit; text-decoration: none; }
.footer-contact address a:hover, .footer-contact address a:focus-visible { color: var(--green); }

@keyframes formMascotFloatMobile {
  0%,
  100% {
    transform: translateX(-50%) translateY(0) scale(1);
  }

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

@keyframes talkFloatOne {
  50% {
    transform: translate3d(0, -8px, 0) rotate(-1.5deg);
  }
}

@keyframes talkFloatTwo {
  50% {
    transform: translate3d(0, -10px, 0) rotate(1.5deg);
  }
}

.lead-form-band {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(360px, 0.88fr) minmax(220px, 0.5fr) minmax(500px, 1.08fr);
  align-items: center;
  gap: clamp(22px, 3.4vw, 62px);
  min-height: auto;
  margin: 18px clamp(16px, 3vw, 42px) clamp(86px, 8vw, 132px);
  padding: clamp(30px, 4vw, 50px) clamp(28px, 7vw, 104px) clamp(38px, 5vw, 58px);
  color: var(--white);
  background: var(--purple);
  border: 0;
  border-radius: 32px;
  box-shadow: 0 28px 90px rgba(81, 62, 178, 0.22);
  overflow: hidden;
  isolation: isolate;
}

.lead-form-band::before {
  content: none;
}

.lead-form-copy,
.lead-form {
  position: relative;
  z-index: 1;
}

.lead-form-copy {
  position: relative;
  max-width: 720px;
}

.lead-form-copy h2 {
  margin: 0;
  color: var(--white);
  font-size: clamp(44px, 6.1vw, 104px);
  font-weight: 600;
  letter-spacing: 0;
  line-height: 0.86;
}

.lead-form-copy h2 span {
  display: block;
  white-space: nowrap;
}

.lead-form-copy mark {
  position: relative;
  display: inline-block;
  z-index: 0;
  padding: 0 0.1em 0.07em;
  color: var(--purple);
  background: transparent;
}

.lead-form-copy mark::before {
  content: "";
  position: absolute;
  z-index: -1;
  left: -0.08em;
  right: -0.08em;
  top: 0.18em;
  bottom: 0.06em;
  background: var(--green);
  border-radius: 0.16em;
}

.lead-form-copy p {
  max-width: 560px;
  margin: clamp(20px, 2.4vw, 34px) 0 0;
  color: rgba(241, 239, 255, 0.78);
  font-size: clamp(16px, 1.32vw, 21px);
  font-weight: 400;
  line-height: 1.26;
}

.lead-form-mascot {
  position: relative;
  z-index: 1;
  align-self: end;
  justify-self: center;
  width: min(42vw, 660px);
  min-width: 360px;
  opacity: 0;
  transform: translateY(42px) scale(0.94);
  filter: drop-shadow(0 26px 42px rgba(42, 31, 118, 0.22));
  transition:
    opacity 760ms ease,
    transform 920ms cubic-bezier(0.16, 1, 0.3, 1);
}

.lead-form-mascot.is-revealed {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.lead-form-mascot img {
  display: block;
  width: 100%;
  height: auto;
}

.lead-form {
  display: grid;
  gap: 22px;
  justify-self: end;
  width: min(100%, 640px);
  padding: clamp(22px, 2.8vw, 38px);
  background: #f3f4f6;
  border: 1px solid rgba(81, 62, 178, 0.12);
  border-radius: clamp(26px, 3vw, 44px);
  box-shadow: 0 30px 76px rgba(42, 31, 118, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.72);
  backdrop-filter: none;
}

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

.form-field {
  position: relative;
  display: grid;
  gap: 9px;
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 560ms ease,
    transform 720ms cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--field-delay, 0ms);
}

.lead-form.is-revealed .form-field {
  opacity: 1;
  transform: translateY(0);
}

.form-field-full {
  grid-column: 1 / -1;
}

.form-field span {
  color: #4b5563;
  font-size: 13px;
  font-weight: 400;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 56px;
  padding: 0 18px;
  color: var(--purple);
  background: #e5e7eb;
  border: 1px solid rgba(81, 62, 178, 0.12);
  border-radius: 18px;
  outline: none;
  font: inherit;
  font-size: 16px;
  transition:
    background 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease,
    transform 220ms ease;
}

.form-field select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--green) 50%),
    linear-gradient(135deg, var(--green) 50%, transparent 50%);
  background-position:
    calc(100% - 23px) 24px,
    calc(100% - 16px) 24px;
  background-size: 7px 7px;
  background-repeat: no-repeat;
}

.form-field select option {
  color: var(--purple);
  background: var(--light);
}

.form-field textarea {
  min-height: 138px;
  padding-top: 16px;
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  background: var(--white);
  border-color: rgba(9, 247, 163, 0.82);
  box-shadow: 0 0 0 4px rgba(9, 247, 163, 0.12), 0 0 28px rgba(9, 247, 163, 0.18);
  transform: translateY(-1px);
}

.form-submit {
  position: relative;
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-height: 56px;
  padding: 0 22px 0 28px;
  color: var(--purple);
  background: var(--green);
  border: 1px solid var(--green);
  border-radius: 999px;
  font: inherit;
  font-size: 16px;
  font-weight: 400;
  text-transform: lowercase;
  overflow: hidden;
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    filter 220ms ease;
}

.form-submit::before {
  content: "";
  position: absolute;
  inset: -40% auto -40% -70%;
  width: 52%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.58), transparent);
  transform: skewX(-18deg);
  transition: left 520ms ease;
}

.form-submit span {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  color: var(--green);
  background: var(--purple);
  border-radius: 999px;
  transition: transform 220ms ease;
}

.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 34px rgba(9, 247, 163, 0.42);
  filter: brightness(1.04);
}

.form-submit:hover::before {
  left: 120%;
}

.form-submit:hover span {
  transform: translateX(4px);
}

.form-feedback {
  min-height: 20px;
  margin: -6px 0 0;
  color: rgba(9, 247, 163, 0.9);
  font-size: 14px;
}

.site-footer {
  position: relative;
  display: grid;
  grid-template-columns: minmax(220px, 1fr) minmax(320px, 1fr) minmax(260px, 1fr);
  align-items: start;
  gap: clamp(32px, 5vw, 86px);
  padding: clamp(24px, 3.2vw, 42px) clamp(28px, 7vw, 104px);
  color: rgba(241, 239, 255, 0.76);
  background: var(--purple-dark);
  margin-bottom: 0;
}

.site-footer::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 24px;
  background: var(--purple-dark);
}

.footer-brand {
  display: grid;
  justify-items: start;
  gap: 20px;
}

.footer-logo {
  display: block;
  width: clamp(142px, 13vw, 210px);
  height: auto;
}

.footer-powered {
  display: block;
  width: clamp(108px, 9.5vw, 158px);
  height: auto;
  opacity: 0.72;
  filter: brightness(0) saturate(100%) invert(79%) sepia(11%) saturate(582%) hue-rotate(208deg) brightness(108%) contrast(101%);
}

.footer-legal {
  justify-self: center;
  display: grid;
  gap: 6px;
  margin: 0;
  color: rgba(241, 239, 255, 0.48);
  font-size: clamp(12px, 0.9vw, 14px);
  font-weight: 400;
  line-height: 1.35;
  text-align: center;
}

.footer-contact {
  justify-self: end;
  display: grid;
  justify-items: end;
  gap: 18px;
  text-align: right;
}

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

.footer-social a {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--green);
  border: 1px solid rgba(241, 239, 255, 0.2);
  border-radius: 14px;
  text-decoration: none;
  transition:
    background 220ms ease,
    border-color 220ms ease,
    color 220ms ease,
    transform 220ms ease,
    box-shadow 220ms ease;
}

.footer-social svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-social a:hover {
  color: var(--purple);
  background: var(--green);
  border-color: var(--green);
  box-shadow: 0 0 28px rgba(9, 247, 163, 0.32);
  transform: translateY(-2px);
}

.footer-contact address {
  display: grid;
  gap: 5px;
  max-width: 330px;
  margin: 0;
  color: rgba(241, 239, 255, 0.76);
  font-style: normal;
  font-size: clamp(13px, 1vw, 15px);
  line-height: 1.28;
}

.footer-contact strong {
  margin-bottom: 4px;
  color: var(--white);
  font-weight: 600;
}

@keyframes bannerZoom {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(1.1);
  }
}

@keyframes mobileCtaPulse {
  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.055);
  }
}

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

@keyframes rmTagsScroll {
  to {
    transform: translateX(-25%);
  }
}

@keyframes logosSlideLeft {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-33.333% - 12px));
  }
}

@keyframes logosSlideRight {
  from {
    transform: translateX(calc(-33.333% - 12px));
  }

  to {
    transform: translateX(0);
  }
}

@keyframes indexPulse {
  0%,
  100% {
    box-shadow:
      0 0 0 0 rgba(255, 255, 255, 0.72),
      0 0 18px rgba(255, 255, 255, 0.44);
    transform: scale(1);
  }

  50% {
    box-shadow:
      0 0 0 15px rgba(255, 255, 255, 0),
      0 0 30px rgba(255, 255, 255, 0.72);
    transform: scale(1.1);
  }
}

@keyframes mascotFloat {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }

  50% {
    transform: translateY(-12px) scale(1);
  }
}

@keyframes noteFloat {
  0%,
  100% {
    transform:
      translate3d(var(--note-x, 0), calc(var(--note-enter-y, 0px) + 0px), 0)
      rotate(var(--note-rotate, 0deg))
      perspective(900px)
      rotateX(var(--tilt-y, 0deg))
      rotateY(var(--tilt-x, 0deg))
      scale(1);
  }

  50% {
    transform:
      translate3d(var(--note-x, 0), calc(var(--note-enter-y, 0px) - 10px), 0)
      rotate(var(--note-rotate, 0deg))
      perspective(900px)
      rotateX(var(--tilt-y, 0deg))
      rotateY(var(--tilt-x, 0deg))
      scale(1);
  }
}

@keyframes iconPulse {
  0%,
  100% {
    transform: scale(1) rotate(0deg);
  }

  50% {
    transform: scale(1.14) rotate(-5deg);
  }
}

@keyframes iconBolt {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }

  50% {
    transform: translateY(-2px) scale(1.16);
  }
}

@keyframes iconTarget {
  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.12);
  }
}

@keyframes iconCode {
  0%,
  100% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(2px);
  }
}

@keyframes cubeFloat {
  0%,
  100% {
    transform: translate3d(calc(-50% - 200px), -50%, 0);
  }

  50% {
    transform: translate3d(calc(-50% - 200px), calc(-50% - 12px), 0);
  }
}

@media (max-width: 1120px) {
  .floating-nav {
    grid-template-columns: 1fr auto;
    border-radius: 0;
  }

  .brand {
    order: -1;
    justify-self: start;
    margin-left: 10px;
  }

  .nav-products {
    grid-column: 1 / -1;
    order: 3;
    justify-content: center;
    padding: 8px 10px 4px;
    overflow-x: auto;
  }

  .nav-links {
    justify-content: flex-end;
  }

  .hero-card {
    grid-template-columns: minmax(180px, 0.72fr) minmax(240px, 1fr) minmax(180px, 0.72fr);
    column-gap: clamp(14px, 3vw, 32px);
  }

  .hero-copy {
    align-self: end;
    justify-self: start;
    max-width: 300px;
    margin-left: 0;
    padding-top: 0;
    padding-bottom: clamp(44px, 7vh, 78px);
  }

  .hero-copy p {
    font-size: clamp(28px, 5vw, 52px);
  }

  .character-wrap {
    place-items: end center;
    height: min(70vh, 620px);
    padding-right: 0;
  }

  .character {
    width: min(100%, 540px);
  }

  .seal {
    position: relative;
    right: auto;
    left: auto;
    top: auto;
    bottom: auto;
    justify-self: center;
    width: clamp(104px, 12vw, 138px);
    margin-bottom: clamp(42px, 7vh, 80px);
    transform: none;
  }

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

  .contact-band {
    grid-template-columns: 1fr;
    justify-items: center;
    align-items: start;
    gap: 64px;
  }

  .contact-copy {
    justify-self: center;
    max-width: min(900px, 88vw);
    text-align: center;
    transform: none;
  }

  .contact-band p {
    max-width: inherit;
    font-size: clamp(42px, 8.2vw, 84px);
  }

  .contact-visual {
    justify-self: center;
    width: min(78vw, 620px);
    min-width: min(420px, 88vw);
    margin-top: 10px;
    transform: none;
  }

  .partners-band {
    min-height: auto;
    padding-top: 88px;
  }

  .partners-copy {
    width: min(820px, 86vw);
  }

  .partners-logos {
    position: relative;
    margin-top: 48px;
    padding: 0 0 30px;
  }

  .partners-logos::before {
    width: min(26vw, 220px);
    background: linear-gradient(
      90deg,
      var(--light) 0%,
      rgba(241, 239, 255, 0.72) 58%,
      rgba(241, 239, 255, 0) 100%
    );
    backdrop-filter: blur(5px);
  }

  .partners-logos::after {
    width: min(14vw, 140px);
  }

  .blog-band {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 64px;
  }

  .blog-copy {
    max-width: min(900px, 88vw);
  }

  .blog-copy h2 {
    max-width: 620px;
  }

  .blog-copy p {
    max-width: 680px;
  }

  .blog-cards {
    width: min(920px, 100%);
    justify-self: center;
  }

  .lead-form-band {
    grid-template-columns: 1fr;
    align-items: start;
    justify-items: center;
    gap: 38px;
    margin: 18px clamp(16px, 3vw, 42px) clamp(72px, 8vw, 110px);
    min-height: auto;
    padding: clamp(34px, 6vw, 58px) clamp(28px, 7vw, 104px) clamp(46px, 7vw, 72px);
  }

  .lead-form-copy {
    max-width: min(720px, 88vw);
    justify-self: center;
    text-align: center;
  }

  .lead-form-copy p {
    max-width: 520px;
    margin-inline: auto;
  }

  .lead-form-mascot {
    width: min(560px, 72vw);
    min-width: 300px;
    align-self: center;
  }

  .lead-form {
    justify-self: center;
    width: min(560px, 92%);
  }

  .site-footer {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .footer-brand,
  .footer-contact {
    justify-self: center;
    justify-items: center;
    text-align: center;
  }
}

@media (max-width: 760px) {
  body {
    cursor: auto;
  }

  .smooth-scroll {
    position: relative;
    inset: auto;
    min-height: 100vh;
    transform: none !important;
    will-change: auto;
  }

  a,
  button {
    cursor: pointer;
  }

  .cursor {
    display: none;
  }

  .floating-nav {
    display: none;
  }

  .mobile-top-nav {
    position: fixed;
    top: 10px;
    left: 12px;
    right: 12px;
    z-index: 72;
    display: grid;
    justify-items: center;
    gap: 16px;
    padding: 18px 18px 17px;
    background: rgba(42, 31, 118, 0.94);
    border: 1px solid rgba(241, 239, 255, 0.16);
    border-radius: 24px;
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.16),
      0 18px 42px rgba(42, 31, 118, 0.24);
    backdrop-filter: blur(18px) saturate(1.4);
  }

  .mobile-brand img {
    display: block;
    width: 126px;
    height: auto;
  }

  .mobile-products {
    display: flex;
    justify-content: center;
    gap: 16px;
    width: 100%;
    overflow-x: auto;
    padding: 3px 0 5px;
    scrollbar-width: none;
  }

  .mobile-products::-webkit-scrollbar {
    display: none;
  }

  .mobile-products a {
    flex: 0 0 auto;
    color: var(--white);
    font-size: 11.5px;
    font-weight: 400;
    line-height: 1;
    text-decoration: none;
    text-transform: uppercase;
    white-space: nowrap;
  }

  .hero-section {
    min-height: auto;
    padding: 146px 10px 30px;
  }

  .hero-card {
    position: relative;
    top: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    min-height: auto;
    padding: 30px 20px 0;
    border-radius: 24px;
    box-shadow: none;
    transform: none !important;
  }

  .tech-marquee {
    position: relative;
    top: auto;
    left: auto;
    z-index: 5;
    display: block;
    width: 100%;
    max-width: 100%;
    padding: 0;
    color: var(--purple);
    opacity: 1 !important;
    font-size: 0;
    font-weight: 600;
    letter-spacing: -0.045em;
    line-height: 0.9;
    text-align: center;
    transform: none !important;
  }

  .tech-marquee::before {
    content: "Tecnologia";
    display: block;
    width: 100%;
    color: var(--purple);
    font-size: clamp(38px, 11.5vw, 58px);
    font-weight: 600;
    letter-spacing: 0;
    line-height: 0.9;
    text-align: center;
  }

  .tech-letter {
    display: none;
  }

  .hero-copy {
    order: initial;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding-top: 0;
    padding-bottom: 0;
    text-align: center;
  }

  .hero-copy p {
    width: 100%;
    text-align: center;
    margin-bottom: 0;
    font-size: clamp(38px, 11.5vw, 58px);
    line-height: 0.9;
  }

  .hero-cta {
    position: relative;
    left: auto;
    bottom: auto;
    z-index: 12;
    margin: 18px auto -22px;
    min-height: 50px;
    padding: 0 18px 0 22px;
    font-size: 14px;
    transform: none;
    animation: mobileCtaPulse 2.4s ease-in-out infinite;
  }

  .hero-cta span {
    flex-basis: 28px;
    width: 28px;
    height: 28px;
  }

  .character-wrap {
    width: 100%;
    display: grid;
    justify-items: center;
    overflow: hidden;
    place-items: end center;
    height: auto;
    min-height: 330px;
    margin-top: -34px;
    padding-right: 0;
  }

  .character {
    display: none;
  }

  .mobile-character {
    position: relative;
    z-index: 3;
    display: block;
    width: min(118vw, 470px);
    max-width: calc(100vw - 20px);
    height: auto;
    left: auto;
    margin: 0 auto;
    transform: translateX(-10px);
  }

  .character-fallback {
    width: min(78vw, 340px);
  }

  .seal {
    position: absolute;
    z-index: 10;
    justify-self: auto;
    left: auto;
    right: 14px;
    top: 42%;
    bottom: auto;
    width: 118px;
    margin: 0;
    transform: none;
  }

  .service-tags {
    margin-top: 30px;
    padding: 8px 0 14px;
  }

  .tags-track,
  .tags-set {
    gap: 7px;
  }

  .tags-set {
    padding-right: 7px;
  }

  .tags-set span {
    min-height: 44px;
    padding: 0 22px;
    font-size: 14px;
  }

  .intro-band {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: center;
    min-height: auto;
    gap: 22px;
    padding: 54px 20px 68px;
  }

  .contact-band {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 38px;
    padding: 72px 20px 102px;
    overflow: visible;
  }

  .contact-copy {
    max-width: 100%;
    text-align: center;
  }

  .contact-copy br {
    display: none;
  }

  .contact-band p {
    font-size: clamp(34px, 10.5vw, 58px);
    line-height: 0.94;
  }

  .contact-title-start {
    display: inline;
  }

  .rotating-line {
    display: inline-flex;
    align-items: baseline;
    gap: 0.12em;
  }

  .contact-visual {
    justify-self: stretch;
    justify-items: center;
    width: 100%;
    min-width: 0;
    min-height: 330px;
    gap: 22px;
    margin-top: 0;
    transform: none;
  }

  .contact-mascot-crop {
    order: 2;
    width: 100%;
    min-height: 280px;
    padding-top: 0;
    overflow: visible;
  }

  .contact-mascot {
    display: block;
    width: min(88vw, 390px);
    min-width: 0;
    margin: -48px auto -118px;
    opacity: 1;
    transform: none;
  }

  .contact-mascot.is-revealed {
    opacity: 1;
    transform: none;
    animation: none;
  }

  .notification-stack {
    order: 1;
    position: relative;
    display: grid;
    gap: 14px;
    width: 100%;
    margin: -6px 0 0;
  }

  .glass-note {
    position: relative;
    inset: auto;
    width: calc(100% - 28px);
    max-width: 440px;
    min-height: 70px;
    margin-inline: auto;
    border-radius: 24px;
    --note-rotate: 0deg;
  }

  .glass-note.is-revealed {
    animation: none;
  }

  .intro-heading,
  .intro-text {
    grid-column: 1;
    justify-self: center;
    text-align: center;
  }

  .intro-video {
    display: none;
  }

  .intro-mobile-image {
    position: relative;
    z-index: 1;
    display: block;
    width: min(86vw, 360px);
    height: auto;
    margin: -6px auto 0;
    order: 2;
  }

  .intro-heading {
    order: 1;
  }

  .intro-heading h1 {
    max-width: 340px;
    font-size: clamp(40px, 11.5vw, 58px);
    line-height: 0.9;
  }

  .intro-text {
    order: 3;
    max-width: 330px;
    margin: 0 auto;
    font-size: 17px;
    line-height: 1.32;
  }

  .partners-band {
    padding: 70px 0 76px;
  }

  .partners-copy {
    width: auto;
    margin-inline: 20px;
    text-align: center;
  }

  .partners-copy h2 {
    font-size: clamp(40px, 13vw, 64px);
    text-align: center;
  }

  .partners-copy p {
    max-width: 360px;
    margin-top: 24px;
    margin-inline: auto;
    font-size: 18px;
    text-align: center;
  }

  .partners-logos {
    gap: 18px;
    margin-top: 34px;
  }

  .partners-logos::before,
  .partners-logos::after {
    width: 86px;
  }

  .partners-logos::after {
    width: 46px;
  }

  .partners-logos::before {
    background: linear-gradient(
      90deg,
      var(--light) 0%,
      rgba(241, 239, 255, 0.78) 52%,
      rgba(241, 239, 255, 0) 100%
    );
  }

  .partners-logos::after {
    background:
      linear-gradient(
        90deg,
        rgba(241, 239, 255, 0) 0%,
        rgba(241, 239, 255, 0.58) 56%,
        var(--light) 100%
      ),
      linear-gradient(135deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.03));
    backdrop-filter: blur(8px) saturate(1.14);
  }

  .logos-track img {
    width: 980px;
  }

  .blog-band {
    justify-items: center;
    gap: 48px;
    padding: 72px 20px 78px;
  }

  .blog-copy {
    max-width: 100%;
    text-align: center;
  }

  .blog-copy h2 {
    font-size: clamp(40px, 12.5vw, 64px);
    line-height: 0.86;
    text-align: center;
  }

  .blog-copy p {
    max-width: 350px;
    margin-top: 24px;
    margin-inline: auto;
    font-size: 18px;
    text-align: center;
  }

  .blog-cta {
    min-height: 50px;
    margin-top: 30px;
    margin-inline: auto;
    padding: 0 18px 0 22px;
    font-size: 15px;
  }

  .blog-cards {
    grid-template-columns: 1fr;
    gap: 18px;
    border-right: 0;
  }

  .blog-card {
    min-height: 540px;
    border: 1px solid rgba(76, 64, 171, 0.26);
    padding: 24px;
  }

  .blog-card:last-child {
    border-bottom: 1px solid rgba(76, 64, 171, 0.26);
  }

  .blog-card-media {
    width: min(220px, 70%);
    overflow: visible;
  }

  .blog-card-media img {
    border-radius: inherit;
  }

  .blog-new-badge {
    top: -16px;
    right: -18px;
    width: 58px;
    height: 58px;
    font-size: 11px;
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.5),
      0 18px 34px rgba(9, 247, 163, 0.28);
  }

  .blog-card h3 {
    font-size: clamp(27px, 8vw, 38px);
  }

  .curve-ribbon-band {
    padding: 68px 0 28px;
    overflow: visible;
  }

  .curve-ribbon-copy {
    width: calc(100% - 40px);
  }

  .curve-ribbon-heading {
    display: block;
  }

  .curve-ribbon-copy h2 {
    font-size: clamp(40px, 11vw, 66px);
  }

  .dna-seal {
    position: relative;
    top: auto;
    right: auto;
    width: 126px;
    margin: 24px auto 0;
  }

  .dna-video-card {
    z-index: 12;
    width: calc(100% - 28px);
    aspect-ratio: 4 / 3.25;
    margin-top: 80px;
    border-radius: 28px;
  }

  .curve-ribbon-copy p {
    font-size: 18px;
  }

  .curve-ribbon-wrap {
    z-index: 14;
    width: 116%;
    margin-top: -538px;
    margin-left: -8%;
  }

  .lead-form-band {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 24px;
    min-height: auto;
    margin: 258px 16px 64px;
    padding: 58px 16px 38px;
    border-radius: 28px;
  }

  .rm-page .lead-form-band {
    margin-top: 46px;
  }

  .lead-form-copy {
    z-index: 3;
    max-width: 340px;
    text-align: center;
  }

  .lead-form-mascot {
    position: absolute;
    z-index: 1;
    top: 220px;
    left: 50%;
    bottom: auto;
    width: min(360px, 88vw);
    min-width: 0;
    opacity: 0.94;
    pointer-events: none;
    transform: translateX(-50%) translateY(18px) scale(0.96);
    filter: drop-shadow(0 22px 34px rgba(42, 31, 118, 0.2));
  }

  .lead-form-mascot.is-revealed {
    opacity: 0.94;
    transform: translateX(-50%) translateY(0) scale(1);
    animation: formMascotFloatMobile 4.8s ease-in-out infinite;
  }

  .lead-form-copy h2 {
    font-size: clamp(36px, 11vw, 56px);
  }

  .lead-form-copy p {
    max-width: 300px;
    margin-top: 18px;
    font-size: 16px;
  }

  .lead-form {
    z-index: 4;
    justify-self: center;
    width: min(390px, 94%);
    margin-top: 214px;
    padding: 18px;
    border-radius: 28px;
  }

  .lead-form.reveal-luxury,
  .lead-form.reveal-luxury.is-revealed {
    opacity: 1;
    filter: none;
    transform: none;
    transition: none;
  }

  .lead-form .form-field,
  .lead-form.is-revealed .form-field {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .form-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .form-field input,
  .form-field select,
  .form-field textarea {
    min-height: 54px;
    border-radius: 16px;
  }

  .form-submit {
    width: 100%;
    justify-content: center;
  }

  .site-footer {
    gap: 34px;
    padding: 34px 20px 38px;
  }

  .footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 13px;
  }

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

  .products-grid article {
    justify-content: flex-start;
    min-height: 360px;
    padding: 30px 26px;
  }

  .product-index {
    margin-bottom: 28px;
  }

  .product-logo,
  #gestao-xml .product-logo,
  #importa-xml .product-logo,
  #image-converter .product-logo {
    width: min(170px, 72%);
    max-height: 52px;
    margin-top: 0;
    margin-bottom: 46px;
    filter: grayscale(1) brightness(0.58);
    opacity: 0.62;
  }

  #w-one .product-logo,
  #w-flow .product-logo {
    width: min(132px, 58%);
    max-height: 42px;
  }

  .product-body {
    margin-top: auto;
  }
}

.rm-page .hero-section {
  min-height: 112vh;
}

.rm-hero-card {
  grid-template-columns: 1fr;
  grid-template-areas: "copy";
  align-items: center;
  justify-items: start;
  gap: clamp(36px, 5vw, 86px);
  padding: clamp(122px, 15vh, 176px) clamp(54px, 8vw, 142px) clamp(78px, 10vh, 116px);
  background:
    radial-gradient(circle at 72% 68%, rgba(136, 77, 255, 0.58), transparent 34%),
    linear-gradient(180deg, #050417 0%, #08061d 58%, #161047 100%);
}

.rm-hero-card::before {
  z-index: 1;
  background:
    radial-gradient(ellipse at 7% 0%, rgba(3, 2, 15, 0.88) 0%, rgba(18, 10, 58, 0.58) 24%, rgba(18, 10, 58, 0.18) 42%, transparent 58%),
    radial-gradient(ellipse at 0% 86%, rgba(42, 31, 118, 0.72) 0%, rgba(42, 31, 118, 0.42) 28%, rgba(42, 31, 118, 0.14) 48%, transparent 68%),
    linear-gradient(90deg, rgba(10, 7, 42, 0.5) 0%, rgba(10, 7, 42, 0.24) 32%, transparent 66%),
    linear-gradient(180deg, rgba(27, 18, 86, 0.18), rgba(42, 31, 118, 0.34)),
    radial-gradient(circle at 74% 54%, rgba(193, 170, 255, 0.12), transparent 26%),
    radial-gradient(ellipse at 52% 118%, rgba(164, 111, 255, 0.62), transparent 42%);
  opacity: 1;
  animation: none;
  transform: none;
}

.rm-hero-card::after {
  content: "";
  position: absolute;
  inset: -120%;
  z-index: 2;
  pointer-events: none;
  opacity: 0.48;
  mix-blend-mode: soft-light;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 220 220' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.86' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3CfeComponentTransfer%3E%3CfeFuncA type='table' tableValues='0 0.7'/%3E%3C/feComponentTransfer%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 150px 150px;
  filter: contrast(230%) brightness(165%);
  animation: rmHeroGrain 1.15s steps(8, end) infinite;
}

.rm-hero-video {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 0;
  opacity: 0.94;
  filter: saturate(1.08) contrast(1.06);
  transform: none;
  mask-image: none;
  -webkit-mask-image: none;
}

.rm-hero-video.has-loop-fade {
  animation: rmVideoLoopFade var(--rm-video-duration, 8s) linear infinite;
}

.rm-hero-video-frame {
  display: none;
}

.rm-hero-copy {
  align-self: center;
  justify-self: start;
  z-index: 4;
  display: grid;
  justify-items: start;
  max-width: min(720px, 54vw);
  padding-bottom: 0;
  text-align: left;
}

.rm-seo-title {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.rm-hero-logo {
  display: block;
  width: clamp(138px, 12vw, 220px);
  height: auto;
  margin: 0 0 clamp(26px, 3vw, 42px);
  filter: drop-shadow(0 14px 32px rgba(42, 31, 118, 0.16));
  opacity: 0;
  transform: translate(16px, 34px) scale(0.98);
  transition:
    opacity 720ms ease,
    transform 900ms cubic-bezier(0.16, 1, 0.3, 1),
    filter 900ms ease;
  will-change: opacity, transform, filter;
}

.xml-product-switch {
  position: relative;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  width: max-content;
  padding: 6px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    0 18px 42px rgba(3, 2, 15, 0.18);
  backdrop-filter: blur(18px) saturate(1.35);
}

.xml-product-switch-hero {
  margin: 0 0 clamp(24px, 3vw, 42px);
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 720ms ease 80ms,
    transform 900ms cubic-bezier(0.16, 1, 0.3, 1) 80ms;
}

.xml-product-switch button {
  min-height: 36px;
  padding: 0 16px;
  color: rgba(255, 255, 255, 0.72);
  background: transparent;
  border: 0;
  border-radius: 999px;
  font: inherit;
  font-size: 13px;
  font-weight: 400;
  white-space: nowrap;
  cursor: pointer;
  transition:
    color 220ms ease,
    background 220ms ease,
    box-shadow 220ms ease,
    transform 220ms ease;
}

.xml-product-switch button:hover,
.xml-product-switch button:focus-visible {
  color: var(--white);
}

.xml-product-switch button:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 3px;
}

.xml-product-switch button[aria-pressed="true"] {
  color: var(--purple);
  background: var(--green);
  box-shadow: 0 10px 26px rgba(9, 247, 163, 0.18);
}

.rm-hero-copy.is-entered .xml-product-switch-hero {
  opacity: 1;
  transform: translateY(0);
}

.rm-hero-seal {
  position: absolute;
  left: calc(clamp(-62px, -5vw, -38px) + 700px);
  top: clamp(-36px, -2.6vw, -18px);
  width: clamp(88px, 7.4vw, 124px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  margin: 0;
  opacity: 0;
  filter: drop-shadow(0 18px 30px rgba(3, 2, 15, 0.24));
  transform: translateY(26px) scale(0.94);
  transition:
    opacity 720ms ease 70ms,
    transform 900ms cubic-bezier(0.16, 1, 0.3, 1) 70ms,
    filter 900ms ease 70ms;
  will-change: opacity, transform, filter;
}

.rm-hero-seal img,
.rm-hero-seal svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.rm-hero-seal img {
  object-fit: contain;
  clip-path: circle(33% at 50% 50%);
  transform: scale(0.86);
}

.rm-hero-seal svg {
  overflow: visible;
  animation: rmSealSpin 16s linear infinite;
}

.rm-hero-seal text {
  fill: rgba(255, 255, 255, 0.9);
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.rm-page[data-xml-product="protheus"] .rm-hero-seal {
  left: calc(clamp(-62px, -5vw, -38px) + 800px);
}

.rm-eyebrow,
.rm-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  margin-bottom: 22px;
  padding: 0 15px;
  color: var(--purple);
  background: rgba(255, 255, 255, 0.56);
  border: 1px solid rgba(81, 62, 178, 0.22);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 400;
  text-transform: uppercase;
}

.rm-hero-copy h2 {
  position: relative;
  max-width: 980px;
  margin: 0;
  color: var(--white);
  font-size: clamp(48px, 6.2vw, 104px);
  font-weight: 600;
  line-height: 0.9;
  letter-spacing: 0;
}

.rm-title-gradient {
  color: transparent;
  background:
    linear-gradient(
      100deg,
      rgba(255, 255, 255, 0.08) 0%,
      rgba(255, 255, 255, 0.28) 7%,
      rgba(255, 255, 255, 0.58) 18%,
      rgba(255, 255, 255, 0.86) 34%,
      #ffffff 52%,
      #ffffff 82%,
      rgba(255, 255, 255, 0.68) 94%,
      rgba(255, 255, 255, 0.18) 100%
    );
  background-size: 100% 100%;
  background-position: 0 0;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 0;
  filter: blur(10px) drop-shadow(0 18px 42px rgba(22, 14, 76, 0.16));
  transform: translateY(32px);
  transition:
    opacity 760ms ease 120ms,
    transform 980ms cubic-bezier(0.16, 1, 0.3, 1) 120ms,
    filter 560ms ease 120ms;
  will-change: opacity, transform, filter;
}

.rm-hero-copy h2 sup {
  position: relative;
  top: -0.52em;
  margin-inline: 0.05em;
  font-size: 0.28em;
  line-height: 0;
}

.rm-hero-copy p {
  max-width: 610px;
  margin: clamp(20px, 2.2vw, 32px) 0 clamp(24px, 2.6vw, 38px);
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(16px, 1.28vw, 20px);
  font-weight: 400;
  line-height: 1.32;
  opacity: 0;
  filter: blur(8px);
  transform: translateY(26px);
  transition:
    opacity 700ms ease 260ms,
    transform 900ms cubic-bezier(0.16, 1, 0.3, 1) 260ms,
    filter 520ms ease 260ms;
  will-change: opacity, transform, filter;
}

.rm-hero-copy .hero-cta {
  position: relative;
  opacity: 0;
  transform: translateY(24px) scale(0.98);
  text-transform: none;
  border-color: rgba(216, 209, 255, 0.58);
  box-shadow:
    0 0 0 1px rgba(143, 125, 255, 0.12),
    0 0 26px rgba(143, 125, 255, 0.16);
  isolation: isolate;
  overflow: visible;
  transition:
    opacity 680ms ease 390ms,
    transform 860ms cubic-bezier(0.16, 1, 0.3, 1) 390ms,
    box-shadow 220ms ease;
  will-change: opacity, transform;
}

.rm-hero-copy.is-entered .rm-hero-logo {
  opacity: 1;
  filter: drop-shadow(0 14px 32px rgba(42, 31, 118, 0.16));
  transform: translate(16px, 10px) scale(1);
}

.rm-hero-copy.is-entered .rm-hero-seal {
  opacity: 1;
  filter: drop-shadow(0 18px 30px rgba(3, 2, 15, 0.24));
  transform: translateY(0) scale(1);
}

.rm-hero-copy.is-entered .rm-title-gradient {
  opacity: 1;
  filter: blur(0) drop-shadow(0 18px 42px rgba(22, 14, 76, 0.16));
  transform: translateY(0);
}

.rm-hero-copy.is-entered p {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
}

.rm-hero-copy.is-entered .hero-cta {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.rm-hero-copy.is-entered .hero-cta:hover {
  transform: translateY(0) scale(1.04);
}

.rm-hero-copy .hero-cta::before {
  content: "";
  position: absolute;
  inset: -1.5px;
  z-index: -1;
  border-radius: inherit;
  padding: 1.5px;
  background:
    linear-gradient(
      135deg,
      rgba(97, 72, 214, 0.22),
      rgba(218, 211, 255, 0.9) 34%,
      rgba(255, 255, 255, 0.86) 50%,
      rgba(126, 95, 255, 0.52) 72%,
      rgba(97, 72, 214, 0.18)
    );
  opacity: 0.86;
  pointer-events: none;
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  animation: rmCtaGlow 3.4s ease-in-out infinite;
}

.rm-hero-copy .hero-cta::after {
  content: "";
  position: absolute;
  inset: -8px;
  z-index: -2;
  border-radius: inherit;
  background: rgba(126, 95, 255, 0.28);
  filter: blur(16px);
  opacity: 0.48;
  pointer-events: none;
  animation: rmCtaAura 3.4s ease-in-out infinite;
}

.rm-hero-copy .hero-cta > * {
  position: relative;
  z-index: 1;
}

.rm-page .floating-nav:not(.is-visible) {
  color: var(--white);
}

.rm-page .floating-nav:not(.is-visible) .logo-top {
  filter: brightness(0) invert(1);
}

.rm-page .floating-nav:not(.is-visible) .nav-group > a:not(.nav-cta)::after {
  background: var(--white);
}

.rm-page .floating-nav:not(.is-visible) .nav-cta {
  color: var(--purple-dark) !important;
  background: var(--green);
  border-color: var(--green);
  box-shadow: 0 0 24px rgba(9, 247, 163, 0.24);
}

.rm-hero-visual {
  position: relative;
  grid-area: character;
  z-index: 5;
  display: grid;
  place-items: center;
  min-height: clamp(480px, 64vh, 740px);
}

.rm-product-panel {
  width: min(620px, 92%);
  padding: clamp(24px, 3vw, 42px);
  color: var(--purple);
  background: rgba(241, 239, 255, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: clamp(28px, 3vw, 48px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.82),
    0 34px 90px rgba(42, 31, 118, 0.2);
  backdrop-filter: blur(22px) saturate(1.35);
}

.rm-panel-top,
.rm-status-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.rm-panel-top img {
  width: min(190px, 52%);
  height: auto;
  filter: brightness(0) saturate(100%) invert(25%) sepia(58%) saturate(1744%) hue-rotate(230deg) brightness(92%) contrast(90%);
}

.rm-panel-top span,
.rm-status-line span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 16px;
  color: var(--purple);
  background: var(--green);
  border-radius: 999px;
  font-size: 14px;
}

.rm-status-line {
  margin: clamp(28px, 4vw, 52px) 0;
  padding: clamp(18px, 2.2vw, 28px);
  background: var(--white);
  border: 1px solid rgba(81, 62, 178, 0.1);
  border-radius: 24px;
}

.rm-status-line strong {
  font-size: clamp(28px, 3vw, 48px);
  font-weight: 600;
  line-height: 0.9;
}

.rm-panel-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.rm-panel-grid span,
.rm-panel-grid strong {
  display: grid;
  align-content: center;
  min-height: 72px;
  padding: 14px;
  background: rgba(81, 62, 178, 0.08);
  border-radius: 18px;
  font-size: 13px;
  font-weight: 400;
}

.rm-panel-grid strong {
  color: var(--white);
  background: var(--purple);
  font-size: 15px;
}

.rm-floating-chip {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  padding: 0 20px;
  color: var(--purple);
  background: rgba(255, 255, 255, 0.52);
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 999px;
  box-shadow: 0 18px 46px rgba(42, 31, 118, 0.14);
  backdrop-filter: blur(16px) saturate(1.35);
  animation: rmChipFloat 5s ease-in-out infinite;
}

.chip-one {
  top: 15%;
  left: 2%;
}

.chip-two {
  right: 2%;
  top: 28%;
  animation-delay: -1.4s;
}

.chip-three {
  left: 12%;
  bottom: 14%;
  animation-delay: -2.4s;
}

.rm-service-tags {
  margin-top: -112px;
  background: linear-gradient(180deg, rgba(241, 239, 255, 0) 0%, rgba(241, 239, 255, 0.72) 18px, var(--light) 54px);
}

.rm-service-tags .tags-track {
  animation-name: rmTagsScroll;
}

.rm-stages-band {
  position: relative;
  padding: clamp(0px, 1.4vw, 28px) clamp(20px, 6vw, 104px) clamp(78px, 8vw, 124px);
  color: var(--purple);
  background: var(--light);
}

.rm-stages-flow {
  position: relative;
  display: flex;
  align-items: center;
  gap: clamp(10px, 1.25vw, 18px);
  max-width: 1480px;
  margin: 0 auto;
}

.rm-stage-card {
  position: relative;
  flex: 1 1 0;
  display: grid;
  align-content: space-between;
  aspect-ratio: 1;
  min-height: 230px;
  padding: clamp(22px, 2.2vw, 34px);
  color: var(--purple);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(81, 62, 178, 0.1);
  border-radius: 30px;
  box-shadow: 0 24px 58px rgba(42, 31, 118, 0.08);
  transform-origin: center;
  transition:
    opacity 620ms ease,
    transform 860ms cubic-bezier(0.16, 1, 0.3, 1),
    filter 760ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease;
}

.rm-stage-card.reveal-luxury {
  transform: translateY(28px) scaleX(0.88) scaleY(0.98);
  filter: blur(10px);
}

.rm-stage-card.reveal-luxury.is-revealed {
  transform: translateY(0) scaleX(1) scaleY(1);
  filter: blur(0);
  animation: rmStageActive 7.2s ease-in-out var(--stage-delay, 0s) infinite;
}

.rm-stage-card.is-revealed:hover {
  animation-play-state: paused;
  border-color: rgba(81, 62, 178, 0.22);
  box-shadow:
    0 30px 72px rgba(42, 31, 118, 0.12),
    0 0 34px rgba(9, 247, 163, 0.14);
  transform: translateY(-5px);
}

.rm-stage-number {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  color: rgba(76, 64, 171, 0.38);
  background: rgba(81, 62, 178, 0.018);
  border: 1px solid rgba(81, 62, 178, 0.16);
  border-radius: 999px;
  font-size: clamp(17px, 1.55vw, 24px);
  font-weight: 400;
  line-height: 1;
}

.rm-stage-content {
  display: grid;
  gap: 16px;
}

.rm-stage-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--purple);
  background: rgba(81, 62, 178, 0.08);
  border-radius: 14px;
}

.rm-stage-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.rm-stage-card h3 {
  max-width: 180px;
  margin: 0;
  font-size: clamp(18px, 1.42vw, 24px);
  font-weight: 600;
  line-height: 1;
}

.rm-stage-arrow {
  --arrow-rotate: 0deg;
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  color: var(--purple);
  background: var(--green);
  border-radius: 999px;
  box-shadow: 0 16px 34px rgba(9, 247, 163, 0.24);
  font-size: 24px;
  opacity: 0;
  transform: rotate(var(--arrow-rotate)) scale(0.72);
  transition:
    opacity 520ms ease,
    transform 700ms cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 220ms ease;
}

.rm-stage-arrow.is-revealed {
  opacity: 1;
  transform: rotate(var(--arrow-rotate)) scale(1);
  animation: rmStageArrowPulse 2.6s ease-in-out 900ms infinite;
}

.rm-problem-band,
.rm-flow-band,
.rm-gains-band,
.rm-proof-band {
  position: relative;
  padding: clamp(82px, 9vw, 142px) clamp(20px, 6vw, 104px);
}

.rm-problem-band {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1fr);
  gap: clamp(34px, 5vw, 86px);
  align-items: center;
  margin-top: -70px;
  color: var(--purple);
  background: var(--light);
}

.rm-section-copy h2,
.rm-flow-heading h2,
.rm-proof-band h2 {
  margin: 0;
  color: var(--purple);
  font-size: clamp(48px, 6.5vw, 108px);
  font-weight: 600;
  line-height: 0.88;
  letter-spacing: 0;
}

.rm-section-copy mark {
  position: relative;
  z-index: 0;
  display: inline-block;
  padding: 0 0.08em 0.06em;
  color: var(--purple);
  background: transparent;
  white-space: nowrap;
}

.rm-section-copy mark::before {
  content: "";
  position: absolute;
  z-index: -1;
  left: -0.06em;
  right: -0.06em;
  top: 0.22em;
  bottom: 0.05em;
  background: var(--green);
  border-radius: 0.16em;
}

.rm-section-copy p,
.rm-proof-band p {
  max-width: 760px;
  margin: clamp(24px, 3vw, 38px) 0 0;
  color: rgba(76, 64, 171, 0.78);
  font-size: clamp(18px, 1.45vw, 23px);
  line-height: 1.34;
}

.rm-problem-text {
  position: relative;
  justify-self: end;
  max-width: 600px;
}

.rm-problem-text p {
  margin: 0;
  color: rgba(76, 64, 171, 0.76);
  font-size: clamp(18px, 1.32vw, 22px);
  line-height: 1.34;
}

.rm-problem-text p + p {
  margin-top: 16px;
}

.rm-ideal-card {
  position: relative;
  grid-column: 1 / -1;
  padding: clamp(26px, 3.1vw, 44px) 0 0;
  color: var(--purple);
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.rm-ideal-card::before {
  content: none;
}

.rm-ideal-card ul {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  margin: 0;
  padding: 0 clamp(12px, 2vw, 32px);
  list-style: none;
}

.rm-ideal-card ul::before,
.rm-ideal-card ul::after {
  content: "";
  position: absolute;
  left: calc(10% + clamp(12px, 2vw, 32px));
  right: calc(10% + clamp(12px, 2vw, 32px));
  top: 17px;
  height: 6px;
  border-radius: 999px;
}

.rm-ideal-card ul::before {
  background: rgba(81, 62, 178, 0.08);
}

.rm-ideal-card ul::after {
  background: var(--green);
  box-shadow: 0 10px 28px rgba(9, 247, 163, 0.2);
  transform: scaleX(0);
  transform-origin: left center;
}

.rm-ideal-card.is-revealed ul::after {
  animation: rmIdealProgress 4.4s cubic-bezier(0.16, 1, 0.3, 1) 220ms forwards;
}

.rm-ideal-card li {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: start;
  justify-items: center;
  gap: 24px;
  color: rgba(45, 43, 64, 0.82);
  font-size: clamp(13px, 0.92vw, 15px);
  line-height: 1.22;
  text-align: center;
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 620ms ease,
    transform 760ms cubic-bezier(0.16, 1, 0.3, 1);
}

.rm-ideal-card li::before {
  content: "✓";
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: var(--purple);
  background: var(--light);
  border: 2px solid rgba(81, 62, 178, 0.1);
  border-radius: 999px;
  box-shadow: 0 12px 26px rgba(42, 31, 118, 0.08);
  font-size: 15px;
  transition:
    background 420ms ease,
    border-color 420ms ease,
    box-shadow 420ms ease,
    transform 420ms cubic-bezier(0.16, 1, 0.3, 1);
}

.rm-ideal-card li:not(:last-child)::after {
  content: none;
}

.rm-ideal-card.is-revealed li {
  opacity: 1;
  transform: translateY(0);
}

.rm-ideal-card.is-revealed li:nth-child(1) {
  transition-delay: 180ms;
}

.rm-ideal-card.is-revealed li:nth-child(1)::before {
  animation: rmIdealDotComplete 540ms cubic-bezier(0.16, 1, 0.3, 1) 260ms forwards;
}

.rm-ideal-card.is-revealed li:nth-child(2) {
  transition-delay: 420ms;
}

.rm-ideal-card.is-revealed li:nth-child(2)::before {
  animation: rmIdealDotComplete 540ms cubic-bezier(0.16, 1, 0.3, 1) 1.1s forwards;
}

.rm-ideal-card.is-revealed li:nth-child(3) {
  transition-delay: 660ms;
}

.rm-ideal-card.is-revealed li:nth-child(3)::before {
  animation: rmIdealDotComplete 540ms cubic-bezier(0.16, 1, 0.3, 1) 1.95s forwards;
}

.rm-ideal-card.is-revealed li:nth-child(4) {
  transition-delay: 900ms;
}

.rm-ideal-card.is-revealed li:nth-child(4)::before {
  animation: rmIdealDotComplete 540ms cubic-bezier(0.16, 1, 0.3, 1) 2.8s forwards;
}

.rm-ideal-card.is-revealed li:nth-child(5) {
  transition-delay: 1140ms;
}

.rm-ideal-card.is-revealed li:nth-child(5)::before {
  animation: rmIdealDotComplete 540ms cubic-bezier(0.16, 1, 0.3, 1) 3.65s forwards;
}

.rm-flow-band {
  --rm-flow-progress: 0;
  --rm-flow-lock-y: 0px;
  color: var(--white);
  min-height: 520vh;
  padding: 0 clamp(20px, 6vw, 104px);
  background: #513EB2;
  overflow: visible;
}

.rm-flow-band::before {
  content: none;
}

.rm-flow-sticky {
  position: relative;
  top: 0;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(520px, 1fr);
  align-items: center;
  gap: clamp(42px, 6vw, 110px);
  min-height: 100vh;
  padding: clamp(92px, 11vh, 140px) 0 clamp(30px, 5vh, 56px);
  transform: translate3d(0, var(--rm-flow-lock-y), 0);
  will-change: transform;
}

.rm-flow-heading {
  position: relative;
  max-width: 680px;
  margin: 0;
  text-align: left;
}

.xml-product-switch-flow {
  margin: 0 0 clamp(22px, 3vh, 34px);
}

.xml-product-switch-section {
  margin: 0 0 clamp(22px, 3vw, 34px);
}

.rm-problem-band .xml-product-switch-section {
  border-color: rgba(81, 62, 178, 0.16);
  background: rgba(255, 255, 255, 0.42);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.54),
    0 16px 34px rgba(42, 31, 118, 0.08);
}

.rm-problem-band .xml-product-switch-section button {
  color: rgba(81, 62, 178, 0.76);
}

.rm-problem-band .xml-product-switch-section button:hover,
.rm-problem-band .xml-product-switch-section button:focus-visible {
  color: var(--purple);
}

.rm-gains-band .xml-product-switch-section {
  border-color: rgba(81, 62, 178, 0.18);
  background: rgba(255, 255, 255, 0.18);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.28),
    0 16px 34px rgba(42, 31, 118, 0.08);
}

.rm-gains-band .xml-product-switch-section button {
  color: rgba(81, 62, 178, 0.68);
}

.rm-gains-band .xml-product-switch-section button:hover,
.rm-gains-band .xml-product-switch-section button:focus-visible {
  color: var(--purple);
}

.rm-gains-band .xml-product-switch-section button[aria-pressed="true"] {
  color: var(--purple);
  background: var(--white);
  box-shadow: 0 10px 24px rgba(255, 255, 255, 0.32);
}

.rm-flow-heading h2 {
  max-width: 680px;
  color: var(--white);
  font-size: clamp(54px, 6.3vw, 110px);
  line-height: 0.88;
}

.xml-seo-content {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.rm-flow-heading mark {
  display: inline-block;
  padding: 0 0.12em 0.06em;
  color: var(--purple);
  background: var(--green);
  border-radius: 0.16em;
  text-transform: none;
}

.rm-flow-panel {
  display: grid;
  gap: clamp(28px, 4vh, 44px);
  align-content: center;
  min-width: 0;
}

.rm-flow-stage {
  position: relative;
  display: grid;
  grid-template-columns: minmax(130px, 0.25fr) minmax(0, 1fr);
  grid-template-rows: 1fr auto;
  align-items: center;
  gap: clamp(42px, 5vw, 88px);
  min-height: clamp(430px, 55vh, 640px);
  max-width: 760px;
  margin: 0;
}

.rm-flow-copy {
  position: relative;
  min-height: 220px;
}

.rm-flow-copy article {
  position: absolute;
  inset: 0;
  display: grid;
  align-content: center;
  gap: 16px;
  opacity: 0;
  filter: blur(10px);
  transform: translateY(24px);
  transition:
    opacity 520ms ease,
    transform 720ms cubic-bezier(0.16, 1, 0.3, 1),
    filter 520ms ease;
}

.rm-flow-copy article.is-active {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
}

.rm-flow-copy h3 {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  max-width: 420px;
  margin: 0;
  color: var(--white);
  font-size: clamp(26px, 3vw, 48px);
  font-weight: 600;
  line-height: 0.98;
}

.rm-flow-copy h3::after {
  content: "↗";
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  color: var(--purple);
  background: var(--green);
  border-radius: 999px;
  font-size: 15px;
  line-height: 1;
  transform: translateY(2px);
}

.rm-flow-copy h3::before {
  content: none;
}

.rm-flow-copy p {
  max-width: 500px;
  margin: 0;
  color: rgba(241, 239, 255, 0.78);
  font-size: clamp(18px, 1.6vw, 26px);
  line-height: 1.18;
}

.rm-flow-mobile-controls {
  display: flex;
  grid-column: 2;
  grid-row: 2;
  position: relative;
  justify-content: flex-start;
  gap: 14px;
  margin-top: -82px;
  z-index: 4;
}

.rm-flow-mobile-controls button {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  color: var(--purple);
  background: var(--green);
  border: 0;
  border-radius: 999px;
  box-shadow: 0 14px 30px rgba(9, 247, 163, 0.2);
  font: inherit;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  transition:
    opacity 180ms ease,
    transform 220ms ease,
    box-shadow 220ms ease;
}

.rm-flow-mobile-controls button:not(:disabled):hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(9, 247, 163, 0.28);
}

.rm-flow-mobile-controls button:disabled {
  color: rgba(241, 239, 255, 0.34);
  background: rgba(241, 239, 255, 0.12);
  box-shadow: none;
  cursor: default;
}

.rm-flow-line {
  grid-row: 1 / span 2;
  position: relative;
  display: grid;
  justify-items: center;
  align-content: space-between;
  height: min(58vh, 590px);
  min-height: 470px;
  padding-block: 18px;
}

.rm-flow-line::before,
.rm-flow-line span {
  content: "";
  position: absolute;
  left: 50%;
  top: 18px;
  width: 2px;
  height: calc(100% - 36px);
  border-radius: 999px;
  transform: translateX(-50%);
}

.rm-flow-line::before {
  background: linear-gradient(180deg, transparent, rgba(241, 239, 255, 0.22) 18%, rgba(241, 239, 255, 0.22) 82%, transparent);
}

.rm-flow-line span {
  height: calc(var(--rm-flow-progress) * (100% - 36px));
  background: linear-gradient(180deg, var(--green), rgba(9, 247, 163, 0.42));
  transform-origin: top center;
  transition: height 420ms ease;
}

.rm-flow-line b {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 68px;
  height: 68px;
  color: var(--purple);
  background: #f1efff;
  border: 1px solid #f1efff;
  border-radius: 999px;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  transition:
    background 260ms ease,
    transform 260ms ease,
    box-shadow 260ms ease;
}

.rm-flow-line b.is-active {
  background: var(--green);
  box-shadow:
    0 18px 38px rgba(9, 247, 163, 0.28),
    0 0 0 8px rgba(9, 247, 163, 0.1);
  transform: scale(1.12);
}

.rm-flow-menu {
  justify-self: end;
  display: flex;
  gap: clamp(12px, 1.6vw, 24px);
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  backdrop-filter: none;
}

.rm-flow-menu button {
  position: relative;
  padding: 0 0 8px;
  color: rgba(241, 239, 255, 0.76);
  background: transparent;
  border: 0;
  font: inherit;
  font-size: 13px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0;
  cursor: pointer;
}

.rm-flow-menu button::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--green);
  border-radius: 999px;
  opacity: 0;
  transform: scaleX(0.18);
  transition: opacity 220ms ease, transform 260ms ease;
}

.rm-flow-menu button.is-active {
  color: var(--white);
}

.rm-flow-menu button.is-active::after {
  opacity: 1;
  transform: scaleX(1);
}


.rm-gains-band {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(440px, 1fr);
  gap: clamp(34px, 5vw, 92px);
  align-items: start;
  color: var(--purple);
  background: var(--green);
}

.rm-gains-band .rm-section-copy {
  position: sticky;
  top: clamp(92px, 12vh, 132px);
}

.rm-gains-band .rm-section-copy h2 {
  max-width: 620px;
}

.rm-gains-band .rm-section-copy mark {
  padding-inline: 0.1em;
}

.rm-gains-band .rm-section-copy mark:first-of-type::before {
  background: var(--white);
}

.rm-gains-list {
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(81, 62, 178, 0.2);
}

.rm-gains-list article {
  display: grid;
  grid-template-columns: 52px minmax(0, 0.62fr) minmax(0, 1fr);
  gap: clamp(16px, 2vw, 28px);
  align-items: center;
  min-height: 104px;
  padding: clamp(18px, 2vw, 28px) 0;
  color: var(--purple);
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(81, 62, 178, 0.2);
  border-radius: 0;
  transition:
    background 160ms ease,
    color 150ms ease 70ms,
    padding 220ms ease,
    transform 220ms ease;
}

.rm-gains-list article:hover {
  color: var(--white);
  background: var(--purple);
  padding-inline: clamp(16px, 2vw, 24px);
  transform: translateX(4px);
}

.rm-gains-list span {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  color: var(--purple);
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(81, 62, 178, 0.14);
  border-radius: 16px;
  transition:
    color 220ms ease,
    background 220ms ease,
    border-color 220ms ease,
    transform 220ms ease;
}

.rm-gains-list svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.rm-gains-list article:hover span {
  color: var(--purple);
  background: var(--white);
  border-color: var(--white);
  transform: rotate(-4deg) scale(1.04);
}

.rm-gains-list h3 {
  margin: 0;
  color: currentColor;
  font-size: clamp(21px, 1.7vw, 30px);
  font-weight: 600;
  line-height: 1;
}

.rm-gains-list p {
  margin: 0;
  color: rgba(76, 64, 171, 0.78);
  font-size: clamp(14px, 1vw, 17px);
  line-height: 1.26;
  transition: color 150ms ease 70ms;
}

.rm-gains-list article:hover p {
  color: rgba(241, 239, 255, 0.78);
}

.rm-proof-band {
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(420px, 0.9fr);
  gap: clamp(34px, 5vw, 86px);
  align-items: center;
  color: var(--purple);
  background: var(--light);
}

.rm-proof-band > div:first-child {
  max-width: 720px;
}

.rm-proof-band h2 mark {
  position: relative;
  z-index: 0;
  display: inline-grid;
  justify-items: start;
  gap: 0.03em;
  padding: 0;
  color: var(--purple);
  background: transparent;
}

.rm-proof-band h2 mark span {
  position: relative;
  z-index: 0;
  display: inline-block;
  padding: 0 0.08em 0.06em;
}

.rm-proof-band h2 mark span::before {
  content: "";
  position: absolute;
  z-index: -1;
  left: -0.06em;
  right: -0.06em;
  top: 0.22em;
  bottom: 0.05em;
  background: var(--green);
  border-radius: 0.16em;
}

.rm-proof-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: minmax(210px, auto);
  gap: 16px;
}

.rm-proof-stats article {
  display: grid;
  align-content: space-between;
  gap: 18px;
  min-height: 100%;
  padding: clamp(28px, 3.2vw, 42px);
  color: var(--purple);
  background: var(--white);
  border: 1px solid rgba(81, 62, 178, 0.12);
  border-radius: 22px;
  box-shadow: 0 18px 54px rgba(42, 31, 118, 0.08);
  transition:
    border-color 220ms ease,
    box-shadow 220ms ease,
    background 220ms ease,
    transform 220ms ease;
}

.rm-proof-stats article:hover {
  background:
    linear-gradient(135deg, rgba(9, 247, 163, 0.08), rgba(255, 255, 255, 0) 46%),
    var(--white);
  border-color: rgba(9, 247, 163, 0.3);
  box-shadow: 0 24px 68px rgba(42, 31, 118, 0.11);
  transform: translateY(-4px);
}

.rm-proof-feature {
  position: relative;
  display: grid;
  grid-column: 1 / -1;
  padding-right: clamp(38px, 4vw, 64px);
}

.rm-proof-stats article.is-large {
  align-content: center;
  width: calc(100% - 250px);
  min-height: clamp(220px, 20vw, 300px);
  padding-right: clamp(58px, 7vw, 112px);
}

.rm-proof-large-copy {
  display: grid;
  gap: 18px;
  align-content: center;
  align-self: center;
}

.rm-proof-stats strong {
  font-size: clamp(46px, 5vw, 84px);
  font-weight: 600;
  line-height: 0.86;
}

.rm-proof-stats article.is-large strong {
  font-size: clamp(68px, 7.4vw, 118px);
}

.rm-proof-stats span {
  color: rgba(76, 64, 171, 0.72);
  font-size: 17px;
}

.rm-proof-stats article.is-large span {
  max-width: 280px;
  font-size: clamp(19px, 1.5vw, 24px);
}

.rm-proof-seal {
  position: absolute;
  right: 50px;
  top: calc(45% - 70px);
  width: clamp(120px, 10.8vw, 166px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  isolation: isolate;
  transform: translate(48%, -50%);
  filter: drop-shadow(0 22px 34px rgba(42, 31, 118, 0.14));
}

.rm-proof-seal img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  clip-path: circle(33% at 50% 50%);
  transform: scale(0.86);
}

.rm-proof-seal svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
  animation: rmSealSpin 16s linear infinite;
}

.rm-proof-seal text {
  fill: rgba(96, 96, 108, 0.68);
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

@keyframes rmSealSpin {
  to {
    transform: rotate(360deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .xml-product-switch *,
  .rm-flow-copy article,
  .rm-gains-list article,
  .rm-stage-card {
    transition-duration: 1ms !important;
    animation-duration: 1ms !important;
  }
}

@keyframes rmChipFloat {
  50% {
    transform: translateY(-12px);
  }
}

@keyframes rmHeroGrain {
  0%,
  100% { transform: translate3d(0, 0, 0); }
  10% { transform: translate3d(-5%, -8%, 0); }
  20% { transform: translate3d(-12%, 6%, 0); }
  30% { transform: translate3d(8%, -14%, 0); }
  40% { transform: translate3d(-6%, 18%, 0); }
  50% { transform: translate3d(-14%, 9%, 0); }
  60% { transform: translate3d(16%, 0, 0); }
  70% { transform: translate3d(0, 14%, 0); }
  80% { transform: translate3d(5%, 22%, 0); }
  90% { transform: translate3d(-10%, 10%, 0); }
}

@keyframes rmVideoLoopFade {
  0% {
    opacity: 0;
  }

  7% {
    opacity: 0.24;
  }

  16%,
  82% {
    opacity: 0.94;
  }

  93% {
    opacity: 0.18;
  }

  100% {
    opacity: 0;
  }
}

@keyframes rmStageArrowPulse {
  0%,
  100% {
    box-shadow: 0 16px 34px rgba(9, 247, 163, 0.24);
    transform: rotate(var(--arrow-rotate)) scale(1);
  }

  50% {
    box-shadow:
      0 18px 38px rgba(9, 247, 163, 0.28),
      0 0 0 10px rgba(9, 247, 163, 0.12);
    transform: rotate(var(--arrow-rotate)) scale(1.06);
  }
}

@keyframes rmStageActive {
  0%,
  18%,
  100% {
    border-color: rgba(81, 62, 178, 0.1);
    box-shadow: 0 24px 58px rgba(42, 31, 118, 0.08);
    transform: translateY(0) scale(1);
  }

  6%,
  11% {
    border-color: rgba(81, 62, 178, 0.24);
    box-shadow:
      0 30px 72px rgba(42, 31, 118, 0.13),
      0 0 38px rgba(9, 247, 163, 0.16);
    transform: translateY(-5px) scale(1.035);
  }
}

@keyframes rmIdealProgress {
  to {
    transform: scaleX(1);
  }
}

@keyframes rmIdealDotComplete {
  to {
    background: var(--green);
    border-color: var(--green);
    box-shadow:
      0 12px 26px rgba(9, 247, 163, 0.24),
      0 0 0 8px rgba(9, 247, 163, 0.1);
    transform: scale(1.08);
  }
}

@keyframes rmTextGradient {
  0%,
  100% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }
}

@keyframes rmCtaGlow {
  0%,
  100% {
    opacity: 0.62;
    filter: brightness(0.95);
  }

  50% {
    opacity: 1;
    filter: brightness(1.18);
  }
}

@keyframes rmCtaAura {
  0%,
  100% {
    opacity: 0.28;
    transform: scale(0.985);
  }

  50% {
    opacity: 0.56;
    transform: scale(1.018);
  }
}

@media (max-width: 1180px) {
  .rm-hero-card,
  .rm-problem-band,
  .rm-proof-band {
    grid-template-columns: 1fr;
  }

  .rm-stages-flow {
    grid-template-columns: 1fr 48px 1fr;
  }

  .rm-problem-band {
    margin-top: -40px;
  }

  .rm-problem-text {
    justify-self: start;
    max-width: 620px;
  }

  .rm-ideal-card ul {
    padding-inline: 0;
  }

  .rm-ideal-card ul::before,
  .rm-ideal-card ul::after {
    left: 10%;
    right: 10%;
  }

  .rm-flow-sticky {
    grid-template-columns: 1fr;
    align-content: center;
  }

  .rm-flow-heading,
  .rm-flow-heading h2 {
    max-width: 920px;
  }

  .rm-flow-panel {
    justify-self: center;
    width: min(100%, 760px);
  }

  .rm-gains-band {
    grid-template-columns: 1fr;
  }

  .rm-gains-band .rm-section-copy {
    position: relative;
    top: auto;
  }

  .rm-gains-list article {
    grid-template-columns: 56px minmax(0, 0.55fr) minmax(0, 1fr);
  }

  .rm-proof-stats {
    max-width: 760px;
  }
}

@media (max-width: 760px) {
  body.rm-page,
  body.rm-page .smooth-scroll {
    background: #ffffff;
  }

  .rm-page .mobile-top-nav {
    display: grid;
  }

  .rm-page .hero-section {
    min-height: auto;
    padding: 118px 14px 26px;
    background: #ffffff;
  }

  .rm-page .hero-card,
  .rm-hero-card {
    position: relative;
    grid-template-columns: 1fr;
    grid-template-areas: "copy";
    justify-items: center;
    width: 100%;
    min-height: auto;
    padding: 34px 20px 34px;
    border-radius: 30px;
    background: #050417 !important;
    box-shadow: none !important;
    clip-path: inset(0 round 30px);
    overflow: hidden;
    transform: translateZ(0);
  }

  .rm-hero-card::before {
    opacity: 0.82;
  }

  .rm-hero-card::after {
    opacity: 0.24;
  }

  .rm-hero-video-frame {
    display: none;
  }

  .rm-hero-video {
    inset: -3px;
    width: calc(100% + 6px);
    height: calc(100% + 6px);
    border-radius: inherit;
    background: #050417;
    opacity: 0.42;
    transform: translateZ(0) scale(1.015);
    mask-image: none;
    -webkit-mask-image: none;
  }

  .rm-hero-copy {
    justify-self: stretch;
    max-width: 100%;
    display: grid;
    justify-items: center;
    text-align: center;
    transform: none;
  }

  .rm-hero-logo {
    width: min(190px, 58vw);
    margin: 0 auto 22px;
    transform: none;
  }

  .rm-hero-copy.is-entered .rm-hero-logo {
    transform: none;
  }

  .rm-hero-seal {
    position: relative;
    left: auto;
    top: auto;
    width: 82px;
    margin: 18px auto 26px;
    transform: none;
  }

  .rm-page[data-xml-product="protheus"] .rm-hero-seal {
    left: auto;
  }

  .rm-hero-copy.is-entered .rm-hero-seal {
    transform: scale(1);
  }

  .rm-hero-copy h2 {
    display: grid;
    justify-items: center;
    max-width: 100%;
    margin-top: 0;
    font-size: clamp(34px, 9.6vw, 54px);
    line-height: 0.98;
    text-align: center;
    filter: none;
  }

  .rm-title-gradient {
    color: var(--white);
    background: none;
    -webkit-text-fill-color: currentColor;
    filter: none !important;
    text-shadow: none;
  }

  .rm-hero-copy.is-entered .rm-title-gradient {
    filter: none !important;
  }

  .rm-mobile-title-line {
    display: block;
  }

  .xml-product-switch-hero {
    margin: 0 auto 0;
  }

  .rm-hero-copy p {
    max-width: 340px;
    margin-top: 22px;
    margin-inline: auto;
    font-size: 16px;
    line-height: 1.34;
    text-align: center;
  }

  .rm-hero-copy .hero-cta {
    justify-content: center;
    width: min(100%, 310px);
    margin-inline: auto;
    padding-inline: 22px 14px;
    font-size: 14px;
  }

  .rm-service-tags {
    margin-top: -4px;
    background: linear-gradient(180deg, #ffffff 0%, var(--light) 34px);
  }

  .rm-stages-band {
    padding: 34px 18px 64px;
  }

  .rm-stages-flow {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .rm-stage-card {
    flex: none;
    justify-items: center;
    aspect-ratio: auto;
    min-height: 190px;
    border-radius: 24px;
  }

  .rm-stage-number {
    justify-self: center;
  }

  .rm-stage-content {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    text-align: center;
  }

  .rm-stage-icon {
    flex: 0 0 auto;
    width: 40px;
    height: 40px;
  }

  .rm-stage-card h3 {
    max-width: 100%;
    font-size: clamp(20px, 5.4vw, 26px);
    text-align: center;
  }

  .rm-stage-arrow {
    --arrow-rotate: 90deg;
    justify-self: center;
  }

  .rm-problem-band,
  .rm-gains-band,
  .rm-proof-band {
    padding: 72px 20px;
  }

  .rm-flow-band {
    min-height: auto;
    padding: 72px 20px;
    overflow: hidden;
  }

  .rm-flow-sticky {
    position: relative;
    top: auto;
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 0;
    gap: 42px;
    transform: none;
  }

  .rm-problem-band {
    margin-top: -6px;
  }

  .rm-section-copy,
  .rm-flow-heading,
  .rm-proof-band > div {
    text-align: center;
  }

  .xml-product-switch-section,
  .xml-product-switch-flow {
    width: min(100%, 360px);
    margin-inline: auto;
  }

  .xml-product-switch-section button,
  .xml-product-switch-flow button {
    flex: 1 1 0;
    min-width: 0;
    padding-inline: 10px;
    font-size: 12px;
    white-space: normal;
    line-height: 1.05;
  }

  .rm-section-copy h2,
  .rm-flow-heading h2,
  .rm-proof-band h2 {
    font-size: clamp(40px, 11vw, 64px);
    line-height: 0.9;
  }

  .rm-section-copy mark {
    display: inline-block;
    white-space: nowrap;
  }

  .rm-section-copy mark::before {
    left: -0.08em;
    right: -0.08em;
  }

  .rm-section-copy p,
  .rm-proof-band p {
    max-width: 350px;
    margin-inline: auto;
    font-size: 17px;
  }

  .rm-problem-text {
    justify-self: center;
  }

  .rm-problem-text p {
    max-width: 350px;
    margin-inline: auto;
    text-align: center;
    font-size: 16px;
  }

  .rm-ideal-card h3 {
    text-align: center;
  }

  .rm-ideal-card ul {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 0;
  }

  .rm-ideal-card ul::before,
  .rm-ideal-card ul::after {
    content: none;
  }

  .rm-ideal-card li {
    justify-items: center;
    text-align: center;
    gap: 10px;
  }

  .rm-ideal-card li:not(:last-child)::after {
    content: "";
    display: block;
    width: 3px;
    height: 32px;
    margin-top: 10px;
    background: var(--green);
    border-radius: 999px;
    box-shadow: 0 10px 18px rgba(9, 247, 163, 0.18);
  }

  .rm-ideal-card li:last-child::after {
    content: none;
  }

  .rm-ideal-card {
    padding: 20px 0 0;
  }

  .rm-flow-heading {
    grid-template-columns: 1fr;
  }

  .rm-flow-stage {
    grid-template-columns: 1fr;
    gap: 24px;
    min-height: auto;
  }

  .rm-flow-copy {
    min-height: 130px;
    text-align: center;
  }

  .rm-flow-copy h3 {
    justify-content: center;
    max-width: 100%;
    font-size: clamp(34px, 9vw, 52px);
  }

  .rm-flow-copy h3::after {
    content: "";
    width: 28px;
    height: 28px;
    background:
      var(--green)
      url("data:image/svg+xml,%3Csvg viewBox='0 0 18 18' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6 4.5h7.5V12' fill='none' stroke='%23513EB2' stroke-width='2.1' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M4.5 13.5 13.2 4.8' fill='none' stroke='%23513EB2' stroke-width='2.1' stroke-linecap='round'/%3E%3C/svg%3E")
      center / 14px 14px no-repeat;
  }

  .rm-flow-copy h3::before {
    content: none;
  }

  .rm-flow-copy p {
    max-width: 340px;
    margin-inline: auto;
    font-size: 18px;
    line-height: 1.24;
  }

  .rm-flow-line {
    grid-row: auto;
    grid-template-columns: repeat(5, 1fr);
    align-content: center;
    width: 100%;
    height: auto;
    min-height: 58px;
    padding: 0;
  }

  .rm-flow-line::before,
  .rm-flow-line span {
    left: 0;
    right: 0;
    top: 50%;
    width: 100%;
    height: 2px;
    transform: translateY(-50%);
  }

  .rm-flow-line::before {
    background: linear-gradient(90deg, transparent, rgba(241, 239, 255, 0.26) 12%, rgba(241, 239, 255, 0.26) 88%, transparent);
  }

  .rm-flow-line span {
    width: calc(var(--rm-flow-progress) * 100%);
    height: 2px;
  }

  .rm-flow-line b {
    width: 42px;
    height: 42px;
    font-size: 12px;
  }

  .rm-flow-menu {
    justify-self: stretch;
    justify-content: center;
    flex-wrap: wrap;
    padding: 0;
  }

  .rm-flow-mobile-controls {
    display: flex;
    position: relative;
    left: auto;
    top: auto;
    grid-column: 1;
    grid-row: auto;
    justify-content: center;
    gap: 14px;
    margin-top: 18px;
  }

  .rm-flow-mobile-controls button {
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    color: var(--purple);
    background: var(--green);
    border: 0;
    border-radius: 999px;
    font: inherit;
    font-size: 22px;
    line-height: 1;
  }

  .rm-flow-mobile-controls button:disabled {
    color: rgba(241, 239, 255, 0.34);
    background: rgba(241, 239, 255, 0.12);
  }

  .wone-page .wone-flow-band {
    display: grid;
    place-items: center;
    min-height: auto;
    padding: 86px 18px 96px;
    overflow: hidden;
  }

  .wone-page .wone-flow-band .rm-flow-sticky {
    position: relative;
    top: auto;
    display: grid;
    grid-template-columns: 1fr;
    align-content: center;
    justify-items: center;
    width: 100%;
    min-height: auto;
    padding: 0;
    gap: 28px;
    transform: none !important;
  }

  .wone-page .wone-flow-band .rm-flow-heading,
  .wone-page .wone-flow-band .rm-flow-heading h2 {
    text-align: center;
  }

  .wone-page .wone-flow-band .rm-flow-heading {
    width: 100%;
    max-width: 360px;
    margin-inline: auto;
  }

  .wone-page .wone-flow-band .rm-flow-heading h2 {
    max-width: 350px;
    margin-inline: auto;
    font-size: clamp(42px, 12vw, 58px);
    line-height: 0.92;
  }

  .wone-page .wone-flow-band .rm-flow-panel {
    display: grid;
    justify-items: center;
    gap: 18px;
    width: 100%;
    max-width: 390px;
    margin-inline: auto;
  }

  .wone-page .wone-flow-band .rm-flow-stage {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    justify-items: center;
    width: min(100%, 390px);
    min-height: 0;
    gap: 0;
  }

  .wone-page .wone-flow-band .rm-flow-line {
    position: relative;
    display: block;
    width: min(100%, 390px);
    aspect-ratio: 1044 / 675;
    min-height: 0;
    height: auto;
    overflow: visible;
  }

  .wone-page .wone-flow-band .rm-flow-line::before {
    content: none;
  }

  .wone-page .wone-flow-band .rm-flow-line span {
    left: 50%;
    top: 26%;
    width: clamp(74px, 22vw, 96px);
    height: clamp(74px, 22vw, 96px);
  }

  .wone-page .wone-flow-band .rm-flow-line b {
    width: clamp(50px, 15vw, 66px);
    height: clamp(50px, 15vw, 66px);
    font-size: clamp(14px, 4vw, 18px);
  }

  .wone-page .wone-flow-band .rm-flow-copy {
    position: absolute;
    left: 50%;
    top: 54%;
    width: min(270px, 74%);
    min-height: 118px;
    text-align: center;
    transform: translate(-50%, -50%);
  }

  .wone-page .wone-flow-band .rm-flow-copy h3 {
    justify-content: center;
    font-size: clamp(28px, 8vw, 42px);
  }

  .wone-page .wone-flow-band .rm-flow-copy h3::after {
    content: none;
  }

  .wone-page .wone-flow-band .rm-flow-copy p {
    max-width: 250px;
    font-size: clamp(15px, 4.2vw, 17px);
    line-height: 1.16;
  }

  .wone-page .wone-flow-band .rm-flow-mobile-controls {
    grid-column: 1;
    grid-row: 2;
    justify-content: center;
    width: 100%;
    margin-top: -16px;
  }

  .wone-page .wone-flow-band .rm-flow-menu {
    justify-self: center;
    justify-content: center;
    width: min(100%, 340px);
    margin: 2px auto 0;
    gap: 14px;
  }

  .rm-gains-list article {
    grid-template-columns: 48px 1fr;
    gap: 14px 16px;
    min-height: auto;
    padding: 18px 0;
  }

  .rm-gains-list article:hover {
    padding-inline: 16px;
  }

  .rm-gains-list span {
    width: 48px;
    height: 48px;
    grid-row: span 2;
  }

  .rm-gains-list h3,
  .rm-gains-list p {
    grid-column: 2;
  }

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

  .rm-proof-stats article {
    display: grid;
    justify-items: center;
    align-content: center;
    gap: 18px;
    min-height: 190px;
    padding: clamp(28px, 3.2vw, 42px);
    text-align: center;
  }

  .rm-proof-feature {
    display: grid;
    justify-items: center;
    gap: 30px;
    padding-right: 0;
    padding-bottom: 0;
  }

  .rm-proof-stats article.is-large {
    width: 100%;
    justify-items: center;
    min-height: 190px;
    gap: 18px;
    padding: clamp(28px, 3.2vw, 42px);
  }

  .rm-proof-large-copy {
    gap: 18px;
    justify-items: center;
  }

  .rm-proof-stats article.is-large span {
    max-width: 260px;
  }

  .rm-proof-stats strong,
  .rm-proof-stats article.is-large strong {
    font-size: clamp(58px, 16vw, 82px);
  }

  .rm-proof-stats span,
  .rm-proof-stats article.is-large span {
    max-width: 260px;
    font-size: clamp(17px, 4.4vw, 19px);
    line-height: 1.18;
  }

  .rm-proof-seal {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    justify-self: center;
    width: 112px;
    margin: 0 auto;
    transform: none;
    filter: drop-shadow(0 12px 22px rgba(42, 31, 118, 0.1));
  }

  .rm-proof-seal.reveal-luxury,
  .rm-proof-seal.reveal-luxury.is-revealed {
    opacity: 1;
    filter: drop-shadow(0 12px 22px rgba(42, 31, 118, 0.1));
    transform: none;
  }
}

@media (max-width: 520px) {
  .rm-hero-copy p {
    font-size: clamp(22px, 6vw, 30px);
  }

  .rm-hero-copy .hero-cta {
    margin-bottom: 0;
  }

  .mobile-top-nav {
    left: 10px;
    right: 10px;
    gap: 14px;
    padding: 17px 12px 16px;
  }

  .mobile-products {
    justify-content: center;
    gap: 15px;
  }

  .hero-section {
    padding-top: 142px;
  }

  .hero-copy {
    max-width: 100%;
    padding-top: 2px;
    padding-bottom: 0;
  }

  .tech-marquee::before,
  .hero-copy p {
    font-size: clamp(36px, 11.8vw, 52px);
  }

  .rm-hero-copy p {
    font-size: 15px;
    line-height: 1.34;
  }

  .rm-hero-copy h2 {
    font-size: clamp(32px, 9.4vw, 48px);
  }

  .hero-cta {
    gap: 10px;
    min-height: 48px;
    padding: 0 15px 0 19px;
    font-size: 13px;
    margin-top: 16px;
    margin-bottom: -20px;
  }

  .hero-cta span {
    flex-basis: 26px;
    width: 26px;
    height: 26px;
  }

  .character-wrap {
    height: auto;
    min-height: 300px;
    margin-top: -30px;
    padding-right: 0;
  }

  .mobile-character {
    width: min(116vw, 420px);
    max-width: calc(100vw - 20px);
  }

  .seal {
    top: 43%;
    bottom: auto;
    width: 108px;
    margin-bottom: 0;
  }
}

.wone-page .wone-hero-card {
  min-height: clamp(760px, 86vh, 980px);
  padding-top: clamp(150px, 18vh, 218px);
  padding-bottom: clamp(112px, 14vh, 168px);
  background:
    radial-gradient(circle at 72% 64%, rgba(9, 247, 163, 0.2), transparent 30%),
    radial-gradient(circle at 88% 82%, rgba(125, 104, 255, 0.54), transparent 34%),
    linear-gradient(180deg, #050417 0%, #09061d 56%, #20136a 100%);
}

.wone-page .wone-hero-card::before {
  background:
    radial-gradient(ellipse at 8% 0%, rgba(3, 2, 15, 0.9) 0%, rgba(18, 10, 58, 0.56) 26%, transparent 58%),
    radial-gradient(ellipse at 8% 88%, rgba(42, 31, 118, 0.74) 0%, rgba(42, 31, 118, 0.36) 30%, transparent 66%),
    linear-gradient(90deg, rgba(10, 7, 42, 0.55) 0%, rgba(10, 7, 42, 0.2) 38%, transparent 72%);
}

.wone-page .wone-hero-logo {
  width: clamp(150px, 12vw, 230px);
  opacity: 0;
  filter: brightness(0) invert(1) drop-shadow(0 14px 32px rgba(42, 31, 118, 0.16));
}

.wone-page .rm-hero-copy.is-entered .wone-hero-logo {
  filter: brightness(0) invert(1) drop-shadow(0 14px 32px rgba(42, 31, 118, 0.16));
}

.wone-page .wone-hero-seal {
  left: calc(clamp(-62px, -5vw, -38px) + 680px);
  top: calc(clamp(-42px, -3vw, -22px) - 30px);
}

.wone-page .wone-hero-seal img,
.wone-page .rm-proof-seal img {
  clip-path: none;
  transform: scale(0.34);
  filter: brightness(0) invert(1);
}

.wone-page .wone-seal-core {
  position: absolute;
  inset: 50% auto auto 50%;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 44%;
  aspect-ratio: 1;
  color: #513eb2;
  background-clip: initial;
  -webkit-background-clip: initial;
  -webkit-text-fill-color: #513eb2;
  background: var(--green);
  border-radius: 999px;
  overflow: hidden;
  transform: translate(-50%, -50%);
  box-shadow:
    0 12px 30px rgba(9, 247, 163, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.45);
}

.wone-page .wone-seal-core svg {
  position: relative;
  inset: auto;
  width: 66%;
  height: auto;
  overflow: hidden;
  fill: currentColor;
  transform-box: fill-box;
  transform-origin: center;
  transform: translate(1px, 2px);
}

.wone-page .rm-proof-seal img {
  filter: none;
}

.wone-page .rm-proof-seal .wone-seal-core {
  width: 44%;
}

.wone-page .rm-proof-seal .wone-seal-core svg {
  position: relative;
  inset: auto;
  animation: none;
}

.wone-page .rm-proof-seal > svg {
  animation: rmSealSpin 16s linear infinite;
}

.wone-page .rm-proof-seal text {
  fill: rgba(96, 96, 108, 0.68);
  font-size: 16px;
  letter-spacing: 0.075em;
}

.wone-page .wone-flow-band {
  min-height: 440vh;
}

.wone-page .rm-proof-band h2 mark span::before {
  background: var(--green);
}

.wone-page .rm-title-gradient .rm-mobile-title-line {
  display: block;
  white-space: nowrap;
}

.wone-page .rm-hero-copy h2 {
  max-width: 1100px;
  font-size: clamp(44px, 5.35vw, 88px);
}

.wone-command-band {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(500px, 1fr);
  gap: clamp(42px, 6vw, 110px);
  align-items: center;
  padding: clamp(54px, 8vw, 126px) clamp(20px, 6vw, 104px) clamp(92px, 10vw, 150px);
  color: var(--purple);
  background:
    linear-gradient(180deg, rgba(241, 239, 255, 0.86), #ffffff 32%, #f5f3ff 100%);
  overflow: hidden;
}

.wone-command-band::before {
  content: "";
  position: absolute;
  inset: 10% -12% auto auto;
  width: min(46vw, 620px);
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(9, 247, 163, 0.28), rgba(81, 62, 178, 0.08) 42%, transparent 66%);
  filter: blur(34px);
  opacity: 0.75;
  pointer-events: none;
}

.wone-command-copy,
.wone-screen-stack {
  position: relative;
  z-index: 1;
}

.wone-command-copy h2 {
  max-width: 760px;
  margin: 0;
  color: var(--purple);
  font-size: clamp(48px, 6.5vw, 108px);
  font-weight: 600;
  line-height: 0.88;
}

.wone-command-copy mark,
.wone-bento-band mark {
  position: relative;
  display: inline-block;
  padding: 0 0.08em 0.06em;
  color: var(--purple);
  background: transparent;
}

.wone-command-copy mark::before,
.wone-bento-band mark::before {
  content: "";
  position: absolute;
  z-index: -1;
  left: -0.06em;
  right: -0.06em;
  top: 0.22em;
  bottom: 0.05em;
  background: var(--green);
  border-radius: 0.16em;
}

.wone-command-copy p {
  max-width: 610px;
  margin: clamp(24px, 3vw, 38px) 0 0;
  color: rgba(76, 64, 171, 0.72);
  font-size: clamp(18px, 1.45vw, 23px);
  line-height: 1.34;
}

.wone-screen-stack {
  min-height: clamp(480px, 46vw, 690px);
  perspective: 1400px;
}

.wone-screen-stack::before {
  content: "";
  position: absolute;
  inset: 14% -6% 8% 8%;
  background: radial-gradient(circle at 62% 44%, rgba(9, 247, 163, 0.28), rgba(81, 62, 178, 0.16) 38%, transparent 68%);
  filter: blur(36px);
  opacity: 0.8;
  pointer-events: none;
}

.wone-screen-window {
  --screen-tilt-x: 0deg;
  --screen-tilt-y: 0deg;
  --screen-tilt-x-back: 0deg;
  --screen-tilt-y-back: 0deg;
  position: absolute;
  width: min(760px, 100%);
  margin: 0;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.8),
    0 34px 90px rgba(42, 31, 118, 0.18),
    0 12px 34px rgba(9, 247, 163, 0.08);
  backdrop-filter: blur(20px) saturate(1.25);
  transform-style: preserve-3d;
  will-change: transform, opacity, filter;
}

.wone-screen-window:hover {
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.86),
    0 42px 110px rgba(42, 31, 118, 0.22),
    0 18px 44px rgba(9, 247, 163, 0.13);
}

.wone-screen-window figcaption {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  gap: 8px;
  height: 42px;
  padding: 0 16px;
  color: rgba(76, 64, 171, 0.58);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(241, 239, 255, 0.72));
  border-bottom: 1px solid rgba(81, 62, 178, 0.08);
  font-size: 12px;
}

.wone-screen-window figcaption i {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  box-shadow: inset 0 0 0 1px rgba(42, 31, 118, 0.08);
}

.wone-screen-window figcaption i:nth-of-type(1) { background: #24d364; }
.wone-screen-window figcaption i:nth-of-type(2) { background: #f2b84b; }
.wone-screen-window figcaption i:nth-of-type(3) { background: #ff605c; }

.wone-screen-window img {
  display: block;
  width: 100%;
  height: auto;
}

.wone-screen-window.is-front {
  z-index: 2;
  left: 0;
  top: 7%;
  animation: woneScreenFront 7.8s cubic-bezier(0.16, 1, 0.3, 1) infinite;
}

.wone-screen-window.is-back {
  z-index: 1;
  left: 0;
  top: 7%;
  animation: woneScreenBack 7.8s cubic-bezier(0.16, 1, 0.3, 1) infinite;
}

.wone-control-band {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(520px, 1fr);
  gap: clamp(38px, 5vw, 92px);
  align-items: center;
  padding: clamp(96px, 10vw, 160px) clamp(20px, 6vw, 104px);
  color: var(--purple);
  background: #09f7a3;
  overflow: hidden;
}

.wone-control-band::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.16;
  background:
    linear-gradient(90deg, rgba(81, 62, 178, 0.14) 1px, transparent 1px),
    linear-gradient(rgba(81, 62, 178, 0.12) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(circle at 60% 42%, black, transparent 68%);
  -webkit-mask-image: radial-gradient(circle at 60% 42%, black, transparent 68%);
}

.wone-control-band .rm-section-copy,
.wone-control-stack {
  position: relative;
  z-index: 1;
}

.wone-control-band .rm-section-copy h2 {
  max-width: 740px;
  color: var(--purple);
}

.wone-control-band .rm-section-copy mark {
  display: inline-block;
  padding: 0 0.12em 0.08em;
  color: var(--purple);
  background: rgba(255, 255, 255, 0.94);
  border-radius: 0.16em;
}

.wone-control-band .rm-section-copy mark::before {
  content: none;
}

.wone-control-band .rm-section-copy p {
  max-width: 620px;
  margin: clamp(22px, 2.6vw, 34px) 0 0;
  color: rgba(76, 64, 171, 0.72);
  font-size: clamp(17px, 1.25vw, 21px);
  line-height: 1.34;
}

.wone-control-stack {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: minmax(190px, auto);
  gap: clamp(14px, 1.5vw, 22px);
}

.wone-control-stack article {
  position: relative;
  display: grid;
  align-content: end;
  gap: 14px;
  min-height: 190px;
  padding: clamp(22px, 2.2vw, 32px);
  color: var(--purple);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 28px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.76),
    0 24px 64px rgba(42, 31, 118, 0.1);
  overflow: hidden;
  transition:
    color 180ms ease,
    background 220ms ease,
    transform 240ms cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 240ms ease;
}

.wone-control-stack article::before {
  content: "";
  position: absolute;
  inset: auto -32% -44% auto;
  width: 190px;
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(9, 247, 163, 0.34), transparent 68%);
  opacity: 0;
  transition: opacity 220ms ease, transform 240ms ease;
}

.wone-control-stack article.is-large {
  grid-row: span 2;
  min-height: 402px;
}

.wone-control-stack article.is-wide {
  grid-column: span 2;
}

.wone-control-stack article:hover {
  color: var(--white);
  background: linear-gradient(145deg, #513eb2, #2a1f76);
  transform: translateY(-6px);
  box-shadow:
    0 32px 88px rgba(42, 31, 118, 0.2),
    0 0 40px rgba(255, 255, 255, 0.24);
}

.wone-control-stack article:hover::before {
  opacity: 1;
  transform: translate(-18px, -18px);
}

.wone-control-stack span {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  color: var(--white);
  background: var(--purple);
  border-radius: 999px;
  font-size: 13px;
}

.wone-control-stack strong,
.wone-control-stack p {
  position: relative;
  z-index: 1;
  margin: 0;
}

.wone-control-stack strong {
  font-size: clamp(25px, 2.3vw, 40px);
  font-weight: 600;
  line-height: 0.96;
}

.wone-control-stack p {
  max-width: 340px;
  color: rgba(76, 64, 171, 0.7);
  font-size: clamp(14px, 1vw, 17px);
  line-height: 1.26;
  transition: color 180ms ease;
}

.wone-control-stack article:hover span {
  color: var(--purple);
  background: var(--green);
}

.wone-control-stack article:hover p {
  color: rgba(241, 239, 255, 0.78);
}

.wone-page .wone-flow-band {
  background: #513eb2;
}

.wone-page .wone-flow-band .rm-flow-heading mark {
  padding: 0 0.12em 0.06em;
  color: var(--purple);
  background: var(--green);
  border-radius: 0.16em;
}

.wone-page .wone-flow-band .rm-flow-sticky {
  grid-template-columns: minmax(0, 0.74fr) minmax(600px, 1fr);
}

.wone-page .wone-flow-band .rm-flow-heading h2 {
  max-width: 720px;
}

.wone-page .wone-flow-band .rm-flow-panel {
  justify-items: center;
}

.wone-page .wone-flow-band .rm-flow-stage {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: minmax(430px, auto) auto auto;
  justify-items: center;
  align-items: start;
  gap: 18px;
  width: min(680px, 100%);
  min-height: 620px;
  max-width: 720px;
}

.wone-page .wone-flow-band .rm-flow-line {
  grid-row: 1;
  width: min(720px, 100%);
  aspect-ratio: 1044 / 675;
  height: auto;
  min-height: 0;
  padding: 0;
  display: block;
  overflow: visible;
}

.wone-page .wone-flow-band .rm-flow-line::before {
  content: none;
}

.wone-dial-svg {
  position: absolute;
  inset: 4% 0 -4%;
  width: 100%;
  height: 100%;
  overflow: visible;
  filter: drop-shadow(0 22px 42px rgba(31, 21, 101, 0.16));
}

.wone-dial-arc {
  fill: #21135e;
}

.wone-page .wone-flow-band .rm-flow-line span {
  position: absolute;
  left: 50%;
  top: 26%;
  z-index: 4;
  display: grid;
  place-items: center;
  width: clamp(96px, 8vw, 128px);
  height: clamp(96px, 8vw, 128px);
  color: #21135e;
  background: transparent;
  border-radius: 999px;
  box-shadow:
    0 22px 44px rgba(9, 247, 163, 0.34),
    0 0 0 12px rgba(9, 247, 163, 0.1);
  transform: translate(-50%, -50%);
  isolation: isolate;
}

.wone-page .wone-flow-band .rm-flow-line span::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--green);
  border-radius: inherit;
}

.wone-page .wone-flow-band .rm-flow-line span::after {
  content: attr(data-label);
  font-size: clamp(18px, 1.5vw, 24px);
  font-weight: 500;
}

.wone-page .wone-flow-band .rm-flow-line b {
  position: absolute;
  left: var(--wone-dot-x, 50%);
  top: var(--wone-dot-y, 26%);
  z-index: 3;
  display: grid;
  place-items: center;
  width: clamp(66px, 5.2vw, 84px);
  height: clamp(66px, 5.2vw, 84px);
  color: rgba(128, 100, 255, 0.72);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.16), rgba(42, 31, 118, 0.34)),
    rgba(42, 31, 118, 0.34);
  border: 1.5px solid rgba(255, 255, 255, 0.7);
  border-radius: 999px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.32),
    inset 0 -16px 28px rgba(22, 13, 74, 0.18),
    0 14px 34px rgba(22, 13, 74, 0.18);
  backdrop-filter: blur(14px) saturate(1.35);
  -webkit-backdrop-filter: blur(14px) saturate(1.35);
  font-size: clamp(18px, 1.45vw, 25px);
  font-style: normal;
  font-weight: 400;
  opacity: var(--wone-dot-opacity, 0);
  transform: translate(-50%, -50%) scale(var(--wone-dot-scale, 0.82));
  transition:
    opacity 440ms ease,
    transform 320ms ease,
    color 320ms ease,
    background 320ms ease;
  will-change: left, top, opacity, transform;
}

.wone-page .wone-flow-band .rm-flow-line b.is-active {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.16), rgba(42, 31, 118, 0.34)),
    rgba(42, 31, 118, 0.34);
  border-color: rgba(255, 255, 255, 0.86);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.32),
    inset 0 -16px 28px rgba(22, 13, 74, 0.18),
    0 14px 34px rgba(22, 13, 74, 0.18);
  transform: translate(-50%, -50%) scale(var(--wone-dot-scale, 0.82));
}

.wone-page .wone-flow-band .rm-flow-copy {
  position: absolute;
  left: 50%;
  top: clamp(250px, 22vw, 315px);
  width: min(360px, 72%);
  min-height: 150px;
  margin-top: 0;
  text-align: center;
  transform: translate(-50%, -50%);
  z-index: 4;
}

.wone-page .wone-flow-band .rm-flow-copy article {
  justify-items: center;
  align-content: center;
}

.wone-page .wone-flow-band .rm-flow-copy h3 {
  justify-content: center;
  max-width: 360px;
  color: var(--white);
  font-size: clamp(29px, 3.1vw, 46px);
}

.wone-page .wone-flow-band .rm-flow-copy h3::after {
  content: none;
}

.wone-page .wone-flow-band .rm-flow-copy p {
  max-width: 360px;
  color: rgba(241, 239, 255, 0.84);
  font-size: clamp(17px, 1.35vw, 22px);
  line-height: 1.08;
}

.wone-page .wone-flow-band .rm-flow-mobile-controls {
  grid-column: 1;
  grid-row: 2;
  justify-content: center;
  margin-top: -54px;
}

.wone-page .wone-flow-band .rm-flow-menu {
  grid-row: 3;
  justify-self: center;
  margin-top: -162px;
}

.wone-page .wone-flow-band .rm-flow-menu button {
  padding-bottom: 4px;
}

.wone-page .wone-flow-band .rm-flow-menu button::after {
  bottom: 0;
}

.wone-bento-band {
  position: relative;
  display: block;
  padding: clamp(92px, 10vw, 156px) clamp(20px, 6vw, 104px);
  color: var(--purple);
  background: #ebe8f5;
}

.wone-bento-band .rm-section-copy {
  position: relative;
  top: auto;
  max-width: 1180px;
  margin: 0 auto clamp(38px, 5vw, 72px);
  text-align: center;
}

.wone-bento-band .rm-section-copy h2 {
  max-width: 1120px;
  margin-inline: auto;
}

.wone-bento-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  gap: clamp(12px, 1.2vw, 18px);
  max-width: 1680px;
  margin: 0 auto;
}

.wone-bento-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 16px;
  min-height: clamp(330px, 25vw, 430px);
  padding: clamp(20px, 1.8vw, 28px);
  color: var(--purple);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(247, 246, 252, 0.78));
  border: 1px solid rgba(81, 62, 178, 0.1);
  border-radius: 28px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.72),
    0 20px 54px rgba(42, 31, 118, 0.06);
  overflow: hidden;
  transition:
    color 180ms ease,
    background 220ms ease,
    border-color 220ms ease,
    transform 260ms cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 260ms ease;
}

.wone-bento-card::before {
  content: "";
  position: absolute;
  inset: auto -30% -52% auto;
  width: 220px;
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(9, 247, 163, 0.36), transparent 66%);
  opacity: 0;
  transition: opacity 220ms ease, transform 260ms ease;
}

.wone-bento-card.is-wide {
  grid-column: auto;
  min-height: clamp(330px, 25vw, 430px);
}

.wone-bento-card span {
  position: absolute;
  top: clamp(20px, 1.8vw, 28px);
  left: clamp(20px, 1.8vw, 28px);
  z-index: 1;
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  color: var(--purple);
  background: rgba(81, 62, 178, 0.08);
  border-radius: 18px;
}

.wone-bento-card svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.wone-bento-card h3,
.wone-bento-card p {
  position: relative;
  z-index: 1;
  margin: 0;
}

.wone-bento-card h3 {
  font-size: clamp(23px, 1.75vw, 34px);
  font-weight: 600;
  line-height: 0.96;
}

.wone-bento-card p {
  max-width: 260px;
  color: rgba(76, 64, 171, 0.7);
  font-size: clamp(14px, 0.95vw, 17px);
  line-height: 1.28;
  transition: color 180ms ease;
}

.wone-bento-card:hover {
  color: var(--white);
  background: #513eb2;
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow:
    0 32px 88px rgba(42, 31, 118, 0.18),
    0 0 42px rgba(9, 247, 163, 0.16);
  transform: translateY(-6px);
}

.wone-bento-card:hover::before {
  opacity: 1;
  transform: translate(-18px, -18px);
}

.wone-bento-card:hover p {
  color: rgba(241, 239, 255, 0.78);
}

.wone-bento-card:hover span {
  color: var(--purple);
  background: var(--green);
}

@media (max-width: 1380px) {
  .wone-bento-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .wone-bento-card,
  .wone-bento-card.is-wide {
    min-height: 320px;
  }
}

@keyframes woneScreenFront {
  0%,
  42%,
  100% {
    z-index: 3;
    opacity: 1;
    filter: saturate(1) brightness(1);
    transform: translate3d(0, 0, 56px) rotateX(var(--screen-tilt-x, 0deg)) rotateY(calc(-5deg + var(--screen-tilt-y, 0deg))) scale(1);
  }

  18% {
    z-index: 3;
    opacity: 1;
    filter: saturate(1) brightness(1);
    transform: translate3d(0, -12px, 56px) rotateX(var(--screen-tilt-x, 0deg)) rotateY(calc(-5deg + var(--screen-tilt-y, 0deg))) scale(1.01);
  }

  50%,
  92% {
    z-index: 1;
    opacity: 0.86;
    filter: blur(5px) saturate(0.88) brightness(0.9);
    transform: translate3d(20%, 30%, -30px) rotateX(var(--screen-tilt-x-back, 0deg)) rotateY(calc(-8deg + var(--screen-tilt-y-back, 0deg))) scale(0.9);
  }

  70% {
    z-index: 1;
    opacity: 0.86;
    filter: blur(5px) saturate(0.88) brightness(0.9);
    transform: translate3d(20%, calc(30% - 10px), -30px) rotateX(var(--screen-tilt-x-back, 0deg)) rotateY(calc(-8deg + var(--screen-tilt-y-back, 0deg))) scale(0.9);
  }
}

@keyframes woneScreenBack {
  0%,
  42%,
  100% {
    z-index: 1;
    opacity: 0.86;
    filter: blur(5px) saturate(0.88) brightness(0.9);
    transform: translate3d(20%, 30%, -30px) rotateX(var(--screen-tilt-x-back, 0deg)) rotateY(calc(-8deg + var(--screen-tilt-y-back, 0deg))) scale(0.9);
  }

  18% {
    z-index: 1;
    opacity: 0.86;
    filter: blur(5px) saturate(0.88) brightness(0.9);
    transform: translate3d(20%, calc(30% + 10px), -30px) rotateX(var(--screen-tilt-x-back, 0deg)) rotateY(calc(-8deg + var(--screen-tilt-y-back, 0deg))) scale(0.9);
  }

  50%,
  92% {
    z-index: 3;
    opacity: 1;
    filter: saturate(1) brightness(1);
    transform: translate3d(0, 0, 56px) rotateX(var(--screen-tilt-x, 0deg)) rotateY(calc(-5deg + var(--screen-tilt-y, 0deg))) scale(1);
  }

  70% {
    z-index: 3;
    opacity: 1;
    filter: saturate(1) brightness(1);
    transform: translate3d(0, -12px, 56px) rotateX(var(--screen-tilt-x, 0deg)) rotateY(calc(-5deg + var(--screen-tilt-y, 0deg))) scale(1.01);
  }
}

@media (max-width: 760px) {
  .wone-page .wone-hero-card {
    align-items: center;
    min-height: clamp(650px, 142vw, 780px);
    padding: clamp(54px, 12vw, 78px) 22px clamp(58px, 12vw, 82px);
  }

  .wone-page .wone-hero-card .rm-hero-copy {
    align-content: center;
    justify-items: center;
    width: 100%;
    min-height: 100%;
  }

  .wone-page .wone-hero-logo {
    width: min(160px, 48vw);
    margin-bottom: 20px;
  }

  .wone-page .wone-hero-seal {
    left: auto;
    top: auto;
    width: 82px;
    margin: 12px auto 22px;
  }

  .wone-page .rm-hero-copy h2 {
    max-width: min(100%, 330px);
    font-size: clamp(32px, 9vw, 48px);
    line-height: 1;
  }

  .wone-page .rm-title-gradient .rm-mobile-title-line {
    white-space: normal;
  }

  .wone-page .rm-hero-copy p {
    max-width: 310px;
    margin-top: 20px;
  }

  .wone-page .rm-hero-copy .hero-cta {
    margin-top: 24px;
    width: min(100%, 300px);
  }

  .wone-page .rm-flow-line {
    grid-template-columns: repeat(4, 1fr);
  }

  .wone-command-band,
  .wone-control-band,
  .wone-bento-band {
    grid-template-columns: 1fr;
    padding: 72px 20px;
  }

  .wone-command-copy,
  .wone-control-band .rm-section-copy,
  .wone-control-band .rm-problem-text,
  .wone-bento-band .rm-section-copy {
    text-align: center;
  }

  .wone-command-copy h2,
  .wone-bento-band .rm-section-copy h2 {
    font-size: clamp(40px, 11vw, 64px);
    line-height: 0.9;
  }

  .wone-command-copy p,
  .wone-control-band .rm-problem-text p {
    max-width: 350px;
    margin-inline: auto;
    font-size: 16px;
  }

  .wone-screen-stack {
    min-height: clamp(410px, 100vw, 560px);
    perspective: none;
  }

  .wone-screen-window {
    width: 100%;
    border-radius: 22px;
  }

  .wone-screen-window figcaption {
    height: 36px;
  }

  .wone-screen-window figcaption span {
    display: none;
  }

  .wone-screen-window.is-front {
    left: 0;
    top: 0;
  }

  .wone-screen-window.is-back {
    left: 0;
    top: 0;
  }

  .wone-control-stack article,
  .wone-control-stack article.is-large,
  .wone-control-stack article.is-wide {
    grid-column: auto;
    grid-row: auto;
    min-height: 230px;
    height: 230px;
    transform: none;
  }

  .wone-control-stack {
    grid-template-columns: 1fr;
  }

  .wone-control-stack article:hover {
    transform: translateY(-3px);
  }

  .wone-bento-band .rm-section-copy {
    position: relative;
    top: auto;
  }

  .wone-bento-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }

  .wone-bento-card,
  .wone-bento-card.is-wide {
    grid-column: auto;
    min-height: 220px;
    border-radius: 24px;
  }

  .wone-bento-card h3 {
    font-size: clamp(28px, 8vw, 42px);
  }
}

@media (max-width: 760px) {
  .wone-page .wone-flow-band {
    display: grid;
    place-items: center;
    min-height: auto;
    padding: 86px 18px 92px;
    overflow: hidden;
  }

  .wone-page .wone-flow-band .rm-flow-sticky {
    display: grid;
    grid-template-columns: 1fr;
    justify-items: center;
    align-content: center;
    width: 100%;
    min-height: auto;
    padding: 0;
    gap: 28px;
    transform: none !important;
  }

  .wone-page .wone-flow-band .rm-flow-heading {
    width: 100%;
    max-width: 360px;
    margin: 0 auto;
    text-align: center;
  }

  .wone-page .wone-flow-band .rm-flow-heading h2 {
    max-width: 350px;
    margin: 0 auto;
    text-align: center;
    font-size: clamp(39px, 11vw, 54px);
    line-height: 0.94;
  }

  .wone-page .wone-flow-band .rm-flow-panel {
    display: grid;
    justify-items: center;
    width: 100%;
    max-width: 390px;
    margin: 0 auto;
    gap: 14px;
  }

  .wone-page .wone-flow-band .rm-flow-stage {
    grid-template-rows: auto auto auto;
    justify-items: center;
    width: min(100%, 390px);
    min-height: 360px;
    max-width: 390px;
    gap: 0;
  }

  .wone-page .wone-flow-band .rm-flow-line {
    width: min(108vw, 410px);
    max-width: none;
    margin-left: 50%;
    transform: translateX(calc(-50% + 91px));
    aspect-ratio: 1044 / 675;
  }

  .wone-page .wone-flow-band .rm-flow-copy {
    left: 50%;
    top: calc(52% + 15px);
    width: min(280px, 76%);
    min-height: 112px;
    transform: translate(-50%, -50%);
    text-align: center;
  }

  .wone-page .wone-flow-band .rm-flow-copy h3 {
    justify-content: center;
    font-size: clamp(28px, 8vw, 40px);
  }

  .wone-page .wone-flow-band .rm-flow-copy p {
    max-width: 260px;
    margin-inline: auto;
    font-size: clamp(15px, 4.1vw, 17px);
    line-height: 1.16;
  }

  .wone-page .wone-flow-band .rm-flow-mobile-controls {
    grid-column: 1;
    grid-row: 2;
    justify-content: center;
    width: 100%;
    margin: -3px auto 0;
  }

  .wone-page .wone-flow-band .rm-flow-menu {
    grid-row: 3;
    justify-self: center;
    justify-content: center;
    width: min(100%, 340px);
    margin: 8px auto 0;
    gap: 14px;
    overflow: hidden;
  }
}

.sgs-page {
  background: #f0effa;
}

.sgs-hero-section {
  padding-top: 18px;
  background: #f0effa;
}

.sgs-hero-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(660px, 1.12fr) minmax(360px, 0.72fr);
  align-items: center;
  min-height: clamp(660px, 78vh, 840px);
  padding: clamp(132px, 10vw, 170px) clamp(56px, 7vw, 112px) clamp(56px, 7vw, 112px);
  color: var(--white);
  background:
    radial-gradient(circle at 86% 20%, rgba(9, 247, 163, 0.28), transparent 28%),
    radial-gradient(circle at 76% 86%, rgba(38, 186, 241, 0.2), transparent 34%),
    linear-gradient(145deg, #0b0828 0%, #24135f 48%, #513eb2 100%);
  border-radius: 34px;
  overflow: hidden;
  box-shadow: 0 34px 120px rgba(42, 31, 118, 0.22);
}

.sgs-hero-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: radial-gradient(circle at 78% 46%, black, transparent 68%);
  opacity: 0.55;
}

.sgs-hero-card::after {
  content: "";
  position: absolute;
  inset: auto -10% -32% 8%;
  height: 46%;
  pointer-events: none;
  background: radial-gradient(ellipse at center, rgba(9, 247, 163, 0.34), transparent 68%);
  filter: blur(18px);
  opacity: 0.78;
}

.sgs-hero-copy {
  position: relative;
  z-index: 2;
  max-width: 940px;
}

.sgs-hero-logo {
  display: inline-grid;
  margin-bottom: clamp(18px, 2vw, 28px);
  color: var(--white);
}

.sgs-hero-logo span {
  display: none;
  font-size: clamp(58px, 7vw, 118px);
  font-weight: 600;
  line-height: 0.78;
  letter-spacing: -0.02em;
  color: transparent;
  background: linear-gradient(120deg, #ffffff 0%, #09f7a3 45%, #26baf1 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

.sgs-hero-logo small {
  color: rgba(241, 239, 255, 0.68);
  font-size: clamp(12px, 0.9vw, 15px);
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.sgs-hero-copy h2 {
  display: grid;
  gap: 0.04em;
  max-width: 940px;
  margin: 0;
  color: var(--white);
  font-size: clamp(56px, 5.45vw, 104px);
  font-weight: 600;
  line-height: 0.9;
}

.sgs-hero-title-mobile {
  display: none !important;
}

.sgs-hero-copy h2 > span {
  white-space: nowrap;
}

.sgs-hero-copy h2 mark {
  position: relative;
  display: inline-block;
  padding: 0 0.1em 0.05em;
  color: var(--purple);
  background: var(--green);
  border-radius: 0.16em;
}

.sgs-hero-copy p {
  max-width: 650px;
  margin: clamp(24px, 2.4vw, 36px) 0 0;
  color: rgba(241, 239, 255, 0.8);
  font-size: clamp(17px, 1.3vw, 22px);
  line-height: 1.32;
}

.sgs-hero-copy .hero-cta {
  margin-top: clamp(28px, 3vw, 46px);
  color: var(--purple);
  background: var(--white);
  border-color: rgba(255, 255, 255, 0.6);
}

.sgs-hero-visual {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 100%;
  min-height: 620px;
  perspective: 1100px;
}

.sgs-floating-contact {
  position: absolute;
  z-index: 3;
  display: grid;
  place-items: center;
  width: clamp(46px, 3.8vw, 64px);
  height: clamp(46px, 3.8vw, 64px);
  border-radius: 999px;
  background: var(--green);
  border: 4px solid rgba(241, 239, 255, 0.94);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.46),
    0 18px 42px rgba(7, 4, 32, 0.28),
    0 0 34px rgba(9, 247, 163, 0.34);
  animation: sgsFloatingContact 5.8s ease-in-out infinite;
}

.sgs-floating-icon,
.sgs-floating-icon::before,
.sgs-floating-icon::after,
.sgs-floating-count {
  position: absolute;
  display: block;
}

.sgs-floating-icon {
  left: 50%;
  top: 50%;
  width: 34%;
  height: 26%;
  transform: translate(-50%, -50%);
}

.sgs-floating-count {
  right: -8px;
  top: -8px;
  display: grid;
  place-items: center;
  width: clamp(18px, 1.45vw, 23px);
  height: clamp(18px, 1.45vw, 23px);
  color: var(--purple);
  background: var(--white);
  border: 2px solid var(--green);
  border-radius: 999px;
  font-size: clamp(9px, 0.76vw, 12px);
  font-weight: 600;
  line-height: 1;
  box-shadow: 0 8px 16px rgba(7, 4, 32, 0.22);
}

.sgs-floating-contact.is-chat {
  right: 5%;
  top: 18%;
  --float-x: 10px;
  --float-y: -12px;
}

.sgs-floating-contact.is-chat-alt {
  left: 9%;
  bottom: 24%;
  width: clamp(38px, 3.2vw, 54px);
  height: clamp(38px, 3.2vw, 54px);
  animation-delay: -2.4s;
  --float-x: -12px;
  --float-y: 10px;
}

.sgs-floating-contact.is-mail {
  right: 14%;
  bottom: 18%;
  width: clamp(40px, 3.3vw, 58px);
  height: clamp(40px, 3.3vw, 58px);
  animation-delay: -1.3s;
  --float-x: 12px;
  --float-y: 8px;
}

.sgs-floating-contact.is-mail-alt {
  left: 14%;
  top: 17%;
  width: clamp(34px, 2.8vw, 48px);
  height: clamp(34px, 2.8vw, 48px);
  opacity: 0.76;
  animation-delay: -3.2s;
  --float-x: -8px;
  --float-y: -10px;
}

.sgs-hero-seal {
  position: absolute;
  left: 6%;
  top: 40%;
  z-index: 4;
  width: clamp(116px, 9vw, 162px);
  aspect-ratio: 1;
  opacity: 0.98;
  transform: translateY(-50%);
  filter: drop-shadow(0 22px 42px rgba(7, 4, 32, 0.22));
}

.sgs-hero-seal .seal-ring,
.sgs-hero-seal .seal-center {
  position: absolute;
  object-fit: contain;
}

.sgs-hero-seal .seal-ring {
  inset: 4%;
  width: 92%;
  height: 92%;
  filter: brightness(0) invert(1);
  animation: spin 12s linear infinite;
}

.sgs-hero-seal .seal-center {
  inset: 17%;
  width: 66%;
  height: 66%;
}

.sgs-floating-contact.is-chat .sgs-floating-icon,
.sgs-floating-contact.is-chat-alt .sgs-floating-icon {
  border: 3px solid var(--purple);
  border-radius: 10px;
}

.sgs-floating-contact.is-chat .sgs-floating-icon::after,
.sgs-floating-contact.is-chat-alt .sgs-floating-icon::after {
  content: "";
  right: -3px;
  bottom: -7px;
  width: 9px;
  height: 9px;
  background: var(--purple);
  clip-path: polygon(0 0, 100% 0, 0 100%, 0 100%);
}

.sgs-floating-contact.is-chat .sgs-floating-icon::before,
.sgs-floating-contact.is-chat-alt .sgs-floating-icon::before {
  content: "";
  left: 25%;
  top: 50%;
  width: 5px;
  height: 5px;
  background: var(--purple);
  border-radius: 999px;
  box-shadow:
    9px 0 0 var(--purple),
    18px 0 0 var(--purple);
  transform: translateY(-50%);
}

.sgs-floating-contact.is-mail .sgs-floating-icon,
.sgs-floating-contact.is-mail-alt .sgs-floating-icon {
  width: 40%;
  height: 30%;
  border: 3px solid var(--purple);
  border-radius: 6px;
}

.sgs-floating-contact.is-mail .sgs-floating-icon::after,
.sgs-floating-contact.is-mail-alt .sgs-floating-icon::after {
  content: "";
  left: 50%;
  top: calc(38% - 80px);
  width: 56%;
  height: 56%;
  border-left: 3px solid var(--purple);
  border-bottom: 3px solid var(--purple);
  transform: translate(-50%, -50%) rotate(-45deg);
}

.sgs-floating-contact .sgs-floating-icon {
  width: 62%;
  height: 62%;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
}

.sgs-floating-contact.is-mail .sgs-floating-icon,
.sgs-floating-contact.is-mail-alt .sgs-floating-icon {
  width: 68%;
  height: 68%;
  border: 0 !important;
}

.sgs-floating-contact .sgs-floating-icon::before,
.sgs-floating-contact .sgs-floating-icon::after {
  display: none !important;
}

.sgs-floating-icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.sgs-orbit {
  display: none;
  position: absolute;
  width: min(44vw, 660px);
  height: min(22vw, 330px);
  border: 1px solid rgba(241, 239, 255, 0.13);
  border-bottom-color: transparent;
  border-radius: 999px;
  transform: rotateX(64deg);
  animation: sgsOrbitGlow 7s ease-in-out infinite alternate;
}

.sgs-orbit span {
  position: absolute;
  display: block;
  width: 18px;
  height: 18px;
  background: var(--green);
  border-radius: 999px;
  box-shadow: 0 0 28px rgba(9, 247, 163, 0.72);
}

.sgs-orbit span:nth-child(1) {
  left: 50%;
  top: -9px;
}

.sgs-orbit span:nth-child(2) {
  right: 7%;
  bottom: 17%;
}

.sgs-orbit span:nth-child(3) {
  left: 10%;
  bottom: 20%;
}

.sgs-history-cloud {
  position: relative;
  width: min(48vw, 760px);
  height: 420px;
  transform-style: preserve-3d;
  animation: sgsHistoryFloat 7s ease-in-out infinite;
}

.sgs-history-card {
  position: absolute;
  left: 50%;
  top: 50%;
  display: grid;
  align-content: space-between;
  gap: 14px;
  width: clamp(128px, 10vw, 174px);
  min-height: clamp(132px, 10vw, 172px);
  padding: clamp(16px, 1.4vw, 22px);
  color: var(--white);
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.06)),
    rgba(13, 8, 46, 0.52);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 20px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    0 26px 72px rgba(7, 4, 32, 0.32);
  backdrop-filter: blur(18px) saturate(1.35);
  -webkit-backdrop-filter: blur(18px) saturate(1.35);
  transform:
    translate3d(var(--history-x, 0), var(--history-y, 0), var(--history-z, 0))
    rotateY(var(--history-ry, 0deg))
    rotateX(var(--history-rx, 0deg))
    rotateZ(var(--history-rz, 0deg));
  transform-origin: center;
  animation: sgsCardBreathe 4.8s ease-in-out infinite;
  animation-delay: var(--history-delay, 0s);
}

.sgs-history-card span,
.sgs-history-card small {
  color: rgba(241, 239, 255, 0.64);
  font-size: 14px;
  line-height: 1;
}

.sgs-history-card strong {
  font-size: clamp(21px, 1.7vw, 32px);
  font-weight: 600;
  line-height: 0.95;
}

.sgs-history-card.is-main {
  width: clamp(166px, 13vw, 230px);
  min-height: clamp(160px, 12vw, 220px);
  color: var(--purple);
  background: var(--green);
  box-shadow: 0 18px 54px rgba(9, 247, 163, 0.34);
  --history-x: -50%;
  --history-y: -54%;
  --history-z: 90px;
  --history-ry: 0deg;
  --history-rx: 0deg;
  --history-rz: -2deg;
  z-index: 5;
}

.sgs-history-card.is-main span,
.sgs-history-card.is-main small {
  color: rgba(76, 64, 171, 0.72);
}

.sgs-history-card.is-left {
  --history-x: calc(-50% - 160px);
  --history-y: -42%;
  --history-z: 22px;
  --history-ry: 18deg;
  --history-rx: 3deg;
  --history-rz: -5deg;
  --history-delay: -0.8s;
  z-index: 4;
}

.sgs-history-card.is-right {
  --history-x: calc(-50% + 166px);
  --history-y: -42%;
  --history-z: 22px;
  --history-ry: -18deg;
  --history-rx: 3deg;
  --history-rz: 5deg;
  --history-delay: -1.2s;
  z-index: 4;
}

.sgs-history-card.is-left-far {
  --history-x: calc(-50% - 318px);
  --history-y: -24%;
  --history-z: -74px;
  --history-ry: 32deg;
  --history-rx: 6deg;
  --history-rz: -8deg;
  --history-delay: -1.7s;
  opacity: 0.84;
  z-index: 2;
}

.sgs-history-card.is-right-far {
  --history-x: calc(-50% + 324px);
  --history-y: -24%;
  --history-z: -74px;
  --history-ry: -32deg;
  --history-rx: 6deg;
  --history-rz: 8deg;
  --history-delay: -2.1s;
  opacity: 0.84;
  z-index: 2;
}

.sgs-history-card.is-mini {
  --history-x: calc(-50% + 42px);
  --history-y: calc(-50% + 168px);
  --history-z: 38px;
  --history-ry: -8deg;
  --history-rx: 0deg;
  --history-rz: 3deg;
  --history-delay: -1.5s;
  width: clamp(116px, 8vw, 150px);
  min-height: clamp(104px, 7.2vw, 130px);
  background: var(--white);
  color: var(--purple);
  z-index: 6;
}

.sgs-history-card.is-mini span,
.sgs-history-card.is-mini small {
  color: rgba(76, 64, 171, 0.72);
}

.sgs-ticket-stream {
  position: relative;
  width: min(112%, 680px);
  height: 650px;
  overflow: hidden;
  transform: perspective(1000px) rotateY(-8deg) rotateX(4deg);
  mask-image: linear-gradient(to bottom, transparent 0%, black 16%, black 84%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 16%, black 84%, transparent 100%);
}

.sgs-ticket-stream::before {
  content: "";
  position: absolute;
  inset: 13% -8% 13% auto;
  width: 96%;
  pointer-events: none;
  background: radial-gradient(ellipse at center, rgba(9, 247, 163, 0.2), transparent 68%);
  filter: blur(18px);
}

.sgs-ticket-pill {
  position: absolute;
  left: 50%;
  top: 50%;
  display: grid;
  grid-template-columns: 104px minmax(0, 1fr);
  grid-template-rows: auto auto;
  column-gap: 20px;
  align-items: center;
  width: clamp(410px, 34vw, 560px);
  min-height: 134px;
  padding: 16px 42px 16px 16px;
  color: var(--purple);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(241, 239, 255, 0.76)),
    rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    inset 0 -18px 30px rgba(81, 62, 178, 0.08),
    0 22px 64px rgba(7, 4, 32, 0.26);
  transform: translate(-50%, -50%) translateY(-250px) scale(0.78);
  opacity: 0;
  animation: sgsTicketRoll 8.4s cubic-bezier(0.68, 0, 0.32, 1) infinite;
  animation-delay: calc(var(--i) * -1.4s);
  will-change: transform, opacity, filter;
}

.sgs-ticket-status {
  position: absolute;
  right: 24px;
  top: 22px;
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: var(--status-color, var(--green));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.58),
    0 0 0 7px color-mix(in srgb, var(--status-color, var(--green)) 14%, transparent),
    0 10px 22px color-mix(in srgb, var(--status-color, var(--green)) 34%, transparent);
}

.sgs-ticket-status::before {
  content: var(--status-icon, "");
  color: var(--status-ink, var(--purple));
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
}

.sgs-ticket-status.is-critical {
  --status-color: #ff4d5f;
  --status-ink: #ffffff;
  --status-icon: "!";
}

.sgs-ticket-status.is-sla {
  --status-color: #ffd166;
  --status-ink: #513eb2;
  --status-icon: "!";
}

.sgs-ticket-status.is-info {
  --status-color: #26baf1;
  --status-ink: #ffffff;
  --status-icon: "i";
}

.sgs-ticket-status.is-waiting {
  --status-color: #8f7cff;
  --status-ink: #ffffff;
  --status-icon: "...";
}

.sgs-ticket-status.is-progress {
  --status-color: #513eb2;
  --status-ink: #09f7a3;
  --status-icon: ">";
}

.sgs-ticket-status.is-done {
  --status-color: #09f7a3;
  --status-ink: #513eb2;
  --status-icon: "✓";
}

.sgs-ticket-avatar {
  position: relative;
  grid-row: 1 / span 2;
  display: block;
  width: 100px;
  height: 100px;
  color: var(--purple);
  background: linear-gradient(145deg, #09f7a3, #80ffd5);
  border: 5px solid rgba(9, 247, 163, 0.94);
  border-radius: 999px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.6),
    0 8px 22px rgba(9, 247, 163, 0.24);
  overflow: hidden;
}

.sgs-ticket-avatar img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sgs-ticket-pill strong {
  align-self: end;
  font-size: clamp(44px, 4.1vw, 72px);
  font-weight: 600;
  line-height: 0.9;
  letter-spacing: -0.02em;
}

.sgs-ticket-pill small {
  align-self: start;
  color: rgba(76, 64, 171, 0.72);
  font-size: clamp(17px, 1.24vw, 23px);
  line-height: 1.08;
}

@keyframes sgsFloatingContact {
  0%,
  100% {
    transform: translate3d(0, 0, 24px) scale(1);
  }

  50% {
    transform: translate3d(var(--float-x, 10px), var(--float-y, -10px), 40px) scale(1.06);
  }
}

@keyframes sgsInsightLoad {
  0%,
  100% {
    transform: translateX(-4%) scaleX(0.96);
    transform-origin: left;
  }

  50% {
    transform: translateX(0) scaleX(1);
    transform-origin: left;
  }
}

@keyframes sgsDashboardFloat {
  0%,
  100% {
    transform: translateY(-50%) rotate(-1deg) translate3d(0, 0, 0);
  }

  50% {
    transform: translateY(-50%) rotate(-0.35deg) translate3d(-10px, -14px, 0);
  }
}

@keyframes sgsDashboardBackFloat {
  0%,
  100% {
    transform: translateY(-50%) translate3d(-260px, -118px, 0) rotate(-5deg) scale(0.82);
  }

  50% {
    transform: translateY(-50%) translate3d(-276px, -132px, 0) rotate(-4.2deg) scale(0.84);
  }
}

@keyframes sgsDashboardMidFloat {
  0%,
  100% {
    transform: translateY(-50%) translate3d(-132px, -62px, 0) rotate(-3deg) scale(0.91);
  }

  50% {
    transform: translateY(-50%) translate3d(-146px, -78px, 0) rotate(-2.4deg) scale(0.93);
  }
}

@keyframes sgsShowcaseFloat {
  0%,
  100% {
    transform: rotateX(58deg) rotateZ(-4deg) translateY(-7%) translate3d(0, 0, 0);
  }

  50% {
    transform: rotateX(58deg) rotateZ(-3.4deg) translateY(-8%) translate3d(0, -10px, 0);
  }
}

.sgs-control-band {
  display: grid;
  gap: clamp(18px, 2.8vw, 42px);
  justify-items: center;
  padding: clamp(86px, 10vw, 150px) clamp(20px, 6vw, 104px);
  color: var(--purple);
  text-align: center;
  background:
    radial-gradient(circle at 50% 47%, rgba(241, 239, 255, 0.42), transparent 32%),
    var(--green);
  overflow: hidden;
}

.sgs-control-heading {
  display: grid;
  justify-items: center;
  gap: clamp(22px, 2.4vw, 34px);
  max-width: 980px;
}

.sgs-control-band h2 {
  max-width: 940px;
  margin-inline: auto;
  margin-block: 0;
  color: var(--purple);
  font-size: clamp(48px, 6.5vw, 108px);
  font-weight: 600;
  line-height: 0.88;
  letter-spacing: 0;
}

.sgs-control-band mark {
  position: relative;
  z-index: 0;
  display: inline-block;
  padding: 0 0.08em 0.06em;
  color: var(--purple);
  background: transparent;
  white-space: nowrap;
}

.sgs-control-band mark::before {
  content: "";
  position: absolute;
  z-index: -1;
  left: -0.06em;
  right: -0.06em;
  top: 0.22em;
  bottom: 0.05em;
  border-radius: 0.16em;
}

.sgs-control-band mark::before,
.sgs-flow-heading mark::before,
.sgs-gains-band mark::before,
.sgs-proof-band mark::before {
  background: var(--white);
}

.sgs-control-lead {
  display: grid;
  gap: 18px;
  max-width: 760px;
  margin-inline: auto;
}

.sgs-control-lead p {
  margin: 0;
  color: rgba(76, 64, 171, 0.74);
  font-size: clamp(18px, 1.2vw, 22px);
  line-height: 1.32;
}

.sgs-control-showcase {
  position: relative;
  width: min(1980px, 183vw);
  margin-top: clamp(-420px, -18vw, -340px);
  margin-inline: calc((100% - min(1980px, 183vw)) / 2);
  perspective: 1200px;
}

.sgs-control-showcase::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 1%;
  width: 80%;
  height: 24%;
  background: radial-gradient(ellipse at center, rgba(76, 64, 171, 0.24), transparent 68%);
  filter: blur(18px);
  transform: translateX(-50%);
}

.sgs-control-visual {
  position: relative;
  isolation: isolate;
  padding-top: 62px;
  margin-top: -62px;
  transform: rotateX(58deg) rotateZ(-4deg) translateY(-7%);
  transform-origin: center bottom;
  filter: drop-shadow(0 44px 50px rgba(42, 31, 118, 0.16));
  mask-image: linear-gradient(180deg, #000 0%, #000 72%, rgba(0, 0, 0, 0.78) 84%, transparent 100%);
  -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 72%, rgba(0, 0, 0, 0.78) 84%, transparent 100%);
  animation: sgsShowcaseFloat 7s ease-in-out infinite;
}

.sgs-control-visual::before {
  content: "";
  position: absolute;
  inset: 7% 6% 8%;
  z-index: -1;
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.34);
  filter: blur(18px);
}

.sgs-control-visual::after {
  content: "";
  position: absolute;
  left: -2%;
  right: -2%;
  bottom: -7%;
  z-index: 2;
  height: 18%;
  background: linear-gradient(180deg, transparent 0%, rgba(9, 247, 163, 0.12) 54%, var(--green) 100%);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  pointer-events: none;
}

.sgs-control-visual > img {
  display: block;
  width: 100%;
  height: auto;
  margin-inline: auto;
  transform: translateY(-50px);
}

.sgs-check-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(12px, 1.2vw, 18px);
  width: min(1120px, 100%);
  margin-top: clamp(-220px, -9.5vw, -130px);
  pointer-events: auto;
}

.sgs-control-foot {
  max-width: 760px;
  margin: clamp(-18px, -1.1vw, -8px) auto 0;
  color: rgba(76, 64, 171, 0.78);
  font-size: clamp(18px, 1.2vw, 22px);
  line-height: 1.32;
}

.sgs-check-grid span {
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr;
  align-content: stretch;
  gap: clamp(26px, 2vw, 38px);
  aspect-ratio: 1 / 1;
  min-height: 172px;
  max-width: none;
  padding: clamp(20px, 1.8vw, 28px);
  color: var(--purple);
  text-align: left;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(241, 239, 255, 0.76)),
    rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 30px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.86),
    0 22px 54px rgba(42, 31, 118, 0.12);
  backdrop-filter: blur(18px) saturate(1.35);
  -webkit-backdrop-filter: blur(18px) saturate(1.35);
  font-size: clamp(15px, 0.94vw, 18px);
  line-height: 1.14;
  overflow: hidden;
  animation: none;
}

.sgs-check-grid span::after {
  content: "";
  position: absolute;
  right: -22px;
  top: -22px;
  width: 104px;
  height: 104px;
  background: radial-gradient(circle, rgba(9, 247, 163, 0.2), transparent 66%);
  opacity: 0.72;
}

.sgs-check-card b {
  position: relative;
  z-index: 1;
  max-width: 250px;
  font-weight: 500;
  align-self: end;
}

.sgs-check-card i {
  position: relative;
  left: auto;
  top: auto;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  color: var(--purple);
  background: var(--green);
  border-radius: 999px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.42),
    0 0 0 9px rgba(9, 247, 163, 0.14);
  pointer-events: none;
}

.sgs-check-card svg {
  display: block;
  width: 28px;
  height: 28px;
  overflow: visible;
}

.sgs-check-card svg path,
.sgs-check-card svg circle {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@keyframes sgsCheckCardPulse {
  0%,
  24%,
  100% {
    color: var(--white);
    background:
      linear-gradient(145deg, rgba(81, 62, 178, 0.86), rgba(42, 31, 118, 0.7)),
      rgba(81, 62, 178, 0.72);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.22),
      0 18px 44px rgba(42, 31, 118, 0.18);
    transform: translateY(0);
  }

  8%,
  16% {
    color: var(--purple);
    background:
      linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(241, 239, 255, 0.78)),
      var(--white);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.84),
      0 24px 58px rgba(42, 31, 118, 0.2),
      0 0 34px rgba(9, 247, 163, 0.22);
    transform: translateY(-6px);
  }
}

@keyframes sgsCheckBadgePulse {
  0%,
  24%,
  100% {
    color: var(--purple);
    background: var(--green);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.42),
      0 0 0 7px rgba(9, 247, 163, 0.14);
  }

  8%,
  16% {
    color: var(--green);
    background: var(--purple);
    box-shadow:
      0 0 0 8px rgba(9, 247, 163, 0.16),
      0 0 28px rgba(9, 247, 163, 0.45);
  }
}

@keyframes sgsCheckGlowPulse {
  0%,
  24%,
  100% {
    opacity: 0;
  }

  8%,
  16% {
    opacity: 1;
  }
}

.sgs-flow-band {
  display: grid;
  grid-template-columns: minmax(340px, 0.58fr) minmax(0, 1fr);
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
  padding: clamp(92px, 11vw, 160px) clamp(20px, 6vw, 104px);
  color: var(--white);
  background:
    radial-gradient(circle at 70% 34%, rgba(9, 247, 163, 0.2), transparent 26%),
    radial-gradient(circle at 43% 80%, rgba(241, 239, 255, 0.1), transparent 24%),
    linear-gradient(145deg, #513eb2, #3a2b94 58%, #261967);
  overflow: hidden;
}

.sgs-flow-heading mark {
  position: relative;
  z-index: 0;
  display: inline-block;
  padding: 0.02em 0.08em 0.08em;
  background: transparent;
  color: var(--purple);
  white-space: nowrap;
}

.sgs-flow-heading mark::before {
  content: "";
  position: absolute;
  z-index: -1;
  left: -0.06em;
  right: -0.06em;
  top: 0.08em;
  bottom: -0.01em;
  border-radius: 0.16em;
  background: var(--green);
}

.sgs-flow-heading h2 {
  margin: 0;
  color: var(--white);
  font-size: clamp(56px, 5.8vw, 108px);
  font-weight: 600;
  line-height: 0.9;
}

.sgs-flow-heading p {
  max-width: 500px;
  margin: 28px 0 0;
  color: rgba(241, 239, 255, 0.74);
  font-size: clamp(17px, 1.2vw, 21px);
  line-height: 1.28;
}

.sgs-flow-board {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(16px, 1.6vw, 26px);
  align-items: stretch;
  padding-top: 110px;
}

.sgs-flow-board::before {
  content: "";
  position: absolute;
  left: 6%;
  right: 6%;
  top: 48px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(241, 239, 255, 0.12), rgba(9, 247, 163, 0.42), rgba(241, 239, 255, 0.12), transparent);
  box-shadow: 0 0 26px rgba(9, 247, 163, 0.18);
}

.sgs-flow-board::after {
  content: "";
  position: absolute;
  left: 6%;
  top: 45px;
  width: 18%;
  height: 7px;
  background: linear-gradient(90deg, transparent, rgba(9, 247, 163, 0.25), var(--green), rgba(9, 247, 163, 0.25), transparent);
  border-radius: 999px;
  filter: blur(0.2px);
  animation: sgsFlowProgress 7.2s ease-in-out infinite;
}

.sgs-flow-board article {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: start;
  min-height: clamp(255px, 17vw, 315px);
  padding: clamp(80px, 6vw, 108px) clamp(20px, 1.8vw, 30px) clamp(24px, 2vw, 34px);
  background:
    radial-gradient(circle at 18% 10%, rgba(9, 247, 163, 0.16), transparent 24%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(241, 239, 255, 0.78) 62%, rgba(214, 209, 247, 0.72));
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 30px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.76),
    inset 0 -18px 34px rgba(81, 62, 178, 0.08),
    0 30px 80px rgba(15, 9, 56, 0.22);
  backdrop-filter: blur(22px) saturate(1.32);
  -webkit-backdrop-filter: blur(22px) saturate(1.32);
  overflow: visible;
  transition: transform 260ms ease, border-color 260ms ease, box-shadow 260ms ease;
  animation: sgsFlowStepPulse 7.2s ease-in-out infinite;
  animation-delay: calc((var(--flow-order, 1) - 1) * 1.8s);
}

.sgs-flow-board article::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background:
    radial-gradient(circle at 90% 12%, rgba(81, 62, 178, 0.1), transparent 24%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.34), transparent 42%);
  opacity: 0.86;
  pointer-events: none;
}

.sgs-flow-board article::after {
  content: "";
  position: absolute;
  left: clamp(20px, 1.8vw, 30px);
  right: clamp(20px, 1.8vw, 30px);
  bottom: clamp(18px, 1.4vw, 24px);
  height: 1px;
  background: linear-gradient(90deg, var(--green), transparent);
  opacity: 0.28;
  pointer-events: none;
}

.sgs-flow-board article:nth-child(1) {
  --flow-order: 1;
  --flow-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 15a4 4 0 0 1-4 4H8l-5 3V7a4 4 0 0 1 4-4h10a4 4 0 0 1 4 4z'/%3E%3Cpath d='M8 10h8'/%3E%3Cpath d='M8 14h5'/%3E%3C/svg%3E");
}

.sgs-flow-board article:nth-child(2) {
  --flow-order: 2;
  --flow-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M14 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V8z'/%3E%3Cpath d='M14 2v6h6'/%3E%3Cpath d='M8 13h8'/%3E%3Cpath d='M8 17h5'/%3E%3C/svg%3E");
}

.sgs-flow-board article:nth-child(3) {
  --flow-order: 3;
  --flow-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3Cpath d='M21 12a9 9 0 1 1-3-6.7'/%3E%3C/svg%3E");
}

.sgs-flow-board article:nth-child(4) {
  --flow-order: 4;
  --flow-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 7a2 2 0 0 1 2-2h5l2 2h7a2 2 0 0 1 2 2v8a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2z'/%3E%3Cpath d='M8 13h8'/%3E%3Cpath d='M8 16h5'/%3E%3C/svg%3E");
}

.sgs-flow-board article:hover {
  transform: translateY(-8px);
  border-color: rgba(9, 247, 163, 0.55);
  background:
    radial-gradient(circle at 18% 10%, rgba(9, 247, 163, 0.2), transparent 24%),
    var(--purple);
  box-shadow: 0 34px 90px rgba(9, 247, 163, 0.2);
}

.sgs-flow-board article:hover h3 {
  color: var(--purple);
}

.sgs-flow-board article:hover p {
  color: rgba(76, 64, 171, 0.74);
}

.sgs-flow-board article:hover small {
  color: var(--green);
  opacity: 1;
}

.sgs-flow-board span {
  position: absolute;
  top: -88px;
  left: 50%;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 82px;
  height: 82px;
  color: var(--purple);
  background: var(--green);
  border: 10px solid rgba(241, 239, 255, 0.12);
  border-radius: 999px;
  box-shadow:
    0 0 0 1px rgba(9, 247, 163, 0.34),
    0 0 38px rgba(9, 247, 163, 0.4);
  font-size: 16px;
  font-weight: 600;
  transform: translateX(-50%);
  animation: sgsFlowDotPulse 7.2s ease-in-out infinite;
  animation-delay: calc((var(--flow-order, 1) - 1) * 1.8s);
}

.sgs-flow-board small {
  position: absolute;
  left: clamp(18px, 1.8vw, 28px);
  top: clamp(24px, 2vw, 32px);
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--purple);
  opacity: 0.78;
  font-size: 12px;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.sgs-flow-board small::before {
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  background: var(--green);
  border-radius: 6px;
  box-shadow: 0 0 0 6px rgba(9, 247, 163, 0.1);
  mask: var(--flow-icon) center / 15px 15px no-repeat;
  -webkit-mask: var(--flow-icon) center / 15px 15px no-repeat;
}

.sgs-flow-board h3 {
  position: relative;
  z-index: 1;
  margin: 0 0 12px;
  color: var(--purple);
  font-size: clamp(28px, 2.25vw, 42px);
  font-weight: 600;
  line-height: 0.95;
}

.sgs-flow-board p {
  position: relative;
  z-index: 1;
  max-width: 290px;
  margin: 0;
  color: rgba(76, 64, 171, 0.74);
  font-size: clamp(15px, 1vw, 18px);
  line-height: 1.22;
}

@keyframes sgsFlowProgress {
  0%,
  100% {
    transform: translateX(-5%);
  }

  25% {
    transform: translateX(110%);
  }

  50% {
    transform: translateX(225%);
  }

  75% {
    transform: translateX(340%);
  }
}

@keyframes sgsFlowProgressMobile {
  0%,
  100% {
    transform: translateY(-4px);
  }

  25% {
    transform: translateY(190px);
  }

  50% {
    transform: translateY(382px);
  }

  75% {
    transform: translateY(574px);
  }
}

@keyframes sgsFlowStepPulse {
  0%,
  20%,
  100% {
    background:
      radial-gradient(circle at 18% 10%, rgba(9, 247, 163, 0.16), transparent 24%),
      linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(241, 239, 255, 0.78) 62%, rgba(214, 209, 247, 0.72));
    border-color: rgba(255, 255, 255, 0.68);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.76),
      inset 0 -18px 34px rgba(81, 62, 178, 0.08),
      0 30px 80px rgba(15, 9, 56, 0.22);
    transform: translateY(0);
  }

  8%,
  14% {
    background:
      radial-gradient(circle at 18% 10%, rgba(9, 247, 163, 0.16), transparent 24%),
      linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(241, 239, 255, 0.78) 62%, rgba(214, 209, 247, 0.72));
    border-color: rgba(9, 247, 163, 0.56);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.86),
      inset 0 -18px 34px rgba(81, 62, 178, 0.1),
      0 38px 96px rgba(9, 247, 163, 0.2);
    transform: translateY(-10px) scale(1.045);
  }
}

@keyframes sgsFlowDotPulse {
  0%,
  20%,
  100% {
    transform: translateX(-50%) scale(0.92);
    box-shadow:
      0 0 0 1px rgba(9, 247, 163, 0.34),
      0 0 22px rgba(9, 247, 163, 0.22);
  }

  8%,
  14% {
    transform: translateX(-50%) scale(1.08);
    box-shadow:
      0 0 0 10px rgba(9, 247, 163, 0.13),
      0 0 44px rgba(9, 247, 163, 0.52);
  }
}

.sgs-gains-band {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(46px, 5vw, 76px);
  align-items: start;
  justify-items: center;
  padding: clamp(92px, 10vw, 156px) clamp(20px, 6vw, 104px);
  color: var(--purple);
  text-align: center;
  background: #e4def5;
}

.sgs-gains-band::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: clamp(44px, 5vw, 76px);
  bottom: clamp(44px, 5vw, 76px);
  left: clamp(16px, 3vw, 42px);
  right: clamp(16px, 3vw, 42px);
  width: auto;
  transform: none;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 32px;
  background:
    radial-gradient(circle at 18% 10%, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0) 34%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(241, 239, 255, 0.78));
  box-shadow: 0 28px 90px rgba(42, 31, 118, 0.08);
  pointer-events: none;
}

.sgs-gains-band .rm-section-copy {
  position: relative;
  z-index: 1;
  top: auto;
  max-width: 1120px;
  margin-inline: auto;
}

.sgs-gains-band .rm-section-copy mark::before {
  background: var(--green);
}

.sgs-gains-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: repeat(3, minmax(132px, auto));
  grid-auto-flow: column;
  column-gap: clamp(44px, 5vw, 92px);
  row-gap: 0;
  width: min(1320px, calc(100% - clamp(84px, 10vw, 180px)));
  counter-reset: sgs-gains;
  padding: clamp(18px, 2vw, 28px) 0;
  text-align: left;
}

.sgs-gains-grid article {
  position: relative;
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr) clamp(76px, 5.5vw, 108px);
  column-gap: clamp(18px, 2vw, 30px);
  align-items: center;
  min-height: 132px;
  padding: clamp(24px, 2.4vw, 36px) clamp(22px, 2.6vw, 42px);
  color: var(--purple);
  background: transparent;
  border: 0;
  border-top: 1px solid rgba(81, 62, 178, 0.14);
  border-radius: 0;
  overflow: visible;
  counter-increment: sgs-gains;
  transition: transform 240ms ease, border-color 240ms ease;
}

.sgs-gains-grid article.is-large {
  grid-column: auto;
  min-height: 132px;
}

.sgs-gains-grid article::before {
  content: "0" counter(sgs-gains);
  position: relative;
  grid-column: 3;
  grid-row: 1 / span 2;
  justify-self: end;
  align-self: center;
  color: rgba(81, 62, 178, 0.11);
  font-size: clamp(42px, 4.6vw, 82px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.02em;
  background: none;
  opacity: 1;
  transform: none;
  transition: color 240ms ease, transform 240ms ease;
}

.sgs-gains-grid article::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 2px;
  background: linear-gradient(90deg, var(--green), rgba(9, 247, 163, 0), transparent);
  opacity: 0;
  transform: scaleX(0.55);
  transform-origin: left center;
  transition: opacity 240ms ease, transform 260ms ease;
}

.sgs-gains-grid article:hover {
  color: var(--purple);
  border-color: rgba(9, 247, 163, 0.55);
  transform: translateX(10px);
}

.sgs-gains-grid article:hover::before {
  color: rgba(9, 247, 163, 0.24);
  transform: translateX(-8px);
}

.sgs-gains-grid article:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.sgs-gains-grid span {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  grid-row: 1 / span 2;
  width: 58px;
  height: 58px;
  color: var(--purple);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.86), rgba(241, 239, 255, 0.62)),
    rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(81, 62, 178, 0.1);
  border-radius: 999px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.74),
    0 14px 34px rgba(81, 62, 178, 0.1);
  transition: color 240ms ease, background 240ms ease, box-shadow 240ms ease, transform 240ms ease;
}

.sgs-gains-grid svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.sgs-gains-grid article:hover span {
  color: var(--purple);
  background: var(--green);
  box-shadow:
    0 0 0 9px rgba(9, 247, 163, 0.12),
    0 18px 44px rgba(9, 247, 163, 0.2);
  transform: scale(1.05);
}

.sgs-gains-grid h3,
.sgs-gains-grid p {
  position: relative;
  z-index: 1;
  grid-column: 2;
  margin: 0;
}

.sgs-gains-grid h3 {
  max-width: 520px;
  font-size: clamp(24px, 1.8vw, 34px);
  font-weight: 600;
  line-height: 1;
}

.sgs-gains-grid p {
  max-width: 420px;
  margin-top: 14px;
  color: rgba(76, 64, 171, 0.68);
  font-size: clamp(14px, 1vw, 17px);
  line-height: 1.24;
}

.sgs-gains-grid article:hover p {
  color: rgba(76, 64, 171, 0.78);
}

.sgs-proof-band {
  background: var(--light);
}

.sgs-proof-seal {
  position: absolute;
  right: calc(clamp(78px, 7vw, 120px) - 20px);
  top: 50%;
  display: grid;
  place-items: center;
  width: clamp(120px, 10.8vw, 166px);
  aspect-ratio: 1;
  color: var(--purple);
  background: transparent;
  border-radius: 0;
  isolation: isolate;
  transform: translateY(-50%);
  filter: drop-shadow(0 22px 34px rgba(42, 31, 118, 0.14));
  box-shadow: none;
}

.sgs-seal-core {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 44%;
  aspect-ratio: 1;
  color: var(--purple);
  background: var(--green);
  border-radius: 999px;
  overflow: hidden;
  box-shadow:
    0 12px 30px rgba(9, 247, 163, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.45);
}

.sgs-seal-core svg {
  position: relative;
  inset: auto;
  width: 66%;
  height: auto;
  fill: currentColor;
  overflow: hidden;
  transform: translate(1px, 2px);
  animation: none;
}

.sgs-proof-seal > svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
  animation: sgsSealSpin 16s linear infinite;
}

.sgs-proof-seal text {
  fill: rgba(96, 96, 108, 0.68);
  font-size: 14.2px;
  font-weight: 400;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

@keyframes sgsSealSpin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes sgsOrbitGlow {
  from {
    opacity: 0.46;
    transform: rotateX(64deg) translateY(0);
  }

  to {
    opacity: 0.82;
    transform: rotateX(64deg) translateY(-10px);
  }
}

@keyframes sgsHistoryFloat {
  0%,
  100% {
    transform: translateY(0) rotateX(0deg);
  }

  50% {
    transform: translateY(-12px) rotateX(2deg);
  }
}

@keyframes sgsCardBreathe {
  0%,
  100% {
    filter: brightness(1);
  }

  50% {
    filter: brightness(1.08);
  }
}

@keyframes sgsTicketRoll {
  0% {
    opacity: 0;
    filter: blur(5px);
    transform: translate(-50%, -50%) translateY(-252px) scale(0.58);
  }

  14% {
    opacity: 0.58;
    filter: blur(2px);
    transform: translate(-50%, -50%) translateY(-154px) scale(0.78);
  }

  34% {
    opacity: 0.94;
    filter: blur(0);
    transform: translate(-50%, -50%) translateY(-58px) scale(0.94);
  }

  50% {
    opacity: 1;
    filter: blur(0);
    transform: translate(-50%, -50%) translateY(0) scale(1.14);
  }

  66% {
    opacity: 0.94;
    filter: blur(0);
    transform: translate(-50%, -50%) translateY(68px) scale(0.94);
  }

  86% {
    opacity: 0.48;
    filter: blur(2px);
    transform: translate(-50%, -50%) translateY(166px) scale(0.76);
  }

  100% {
    opacity: 0;
    filter: blur(5px);
    transform: translate(-50%, -50%) translateY(260px) scale(0.58);
  }
}

@media (max-width: 1120px) {
  .sgs-hero-card,
  .sgs-control-band,
  .sgs-flow-band,
  .sgs-gains-band {
    grid-template-columns: 1fr;
  }

  .sgs-control-heading,
  .sgs-gains-band .rm-section-copy {
    position: relative;
    top: auto;
  }

  .sgs-control-visual {
    transform: rotateX(56deg) rotateZ(-4deg) translateY(-6%);
  }

  .sgs-control-visual > img {
    width: 100%;
  }

  .sgs-hero-visual {
    order: -1;
    min-height: 390px;
  }

  .sgs-history-cloud {
    width: min(90vw, 650px);
  }

  .sgs-ticket-stream {
    width: min(92vw, 620px);
    margin-inline: auto;
    transform: none;
  }

  .sgs-history-card.is-left-far,
  .sgs-history-card.is-right-far {
    opacity: 0.72;
  }
}

@media (max-width: 760px) {
  .sgs-page .mobile-products {
    grid-template-columns: repeat(4, auto);
    justify-content: center;
    gap: 18px;
  }

  .sgs-hero-section {
    padding: 0 18px 34px;
  }

  .sgs-hero-card {
    grid-template-columns: 1fr;
    min-height: 970px;
    padding: 168px 22px 64px;
    border-radius: 30px;
    text-align: center;
    background:
      linear-gradient(180deg, #2e2879 0%, #140c3c 100%) !important;
    background-color: #2e2879 !important;
    box-shadow: none;
  }

  .sgs-hero-card::before,
  .sgs-hero-card::after {
    content: none;
  }

  body.sgs-page.rm-page .hero-card.sgs-hero-card {
    background:
      linear-gradient(180deg, #2e2879 0%, #140c3c 100%) !important;
    background-color: #2e2879 !important;
  }

  .sgs-hero-visual {
    display: grid;
    place-items: center;
    min-height: 300px;
    margin-top: 18px;
    margin-bottom: 18px;
  }

  .sgs-floating-contact {
    width: 38px;
    height: 38px;
  }

  .sgs-floating-contact.is-chat {
    right: 8%;
    top: 12%;
  }

  .sgs-floating-contact.is-mail {
    right: 12%;
    bottom: 14%;
  }

  .sgs-floating-contact.is-chat-alt {
    left: 8%;
    bottom: 18%;
  }

  .sgs-floating-contact.is-mail-alt {
    display: none;
  }

  .sgs-hero-seal {
    left: 50%;
    top: calc(50% + 170px);
    bottom: auto;
    width: 124px;
    transform: translate(-50%, -50%);
  }

  .sgs-orbit {
    display: none;
  }

  .sgs-history-cloud {
    width: min(100%, 340px);
    height: 300px;
  }

  .sgs-history-card {
    width: 120px;
    min-height: 116px;
    padding: 14px;
    border-radius: 17px;
    text-align: left;
  }

  .sgs-history-card strong {
    font-size: 20px;
  }

  .sgs-history-card span,
  .sgs-history-card small {
    font-size: 12px;
  }

  .sgs-history-card.is-main {
    width: 148px;
    min-height: 142px;
    --history-y: -58%;
  }

  .sgs-history-card.is-left {
    --history-x: calc(-50% - 104px);
    --history-y: -36%;
  }

  .sgs-history-card.is-right {
    --history-x: calc(-50% + 108px);
    --history-y: -36%;
  }

  .sgs-history-card.is-left-far,
  .sgs-history-card.is-right-far {
    display: none;
  }

  .sgs-history-card.is-mini {
    width: 104px;
    min-height: 96px;
    --history-x: calc(-50% + 18px);
    --history-y: calc(-50% + 118px);
  }

  .sgs-ticket-stream {
    width: min(100%, 380px);
    height: 400px;
    margin-inline: auto;
  }

  .sgs-ticket-pill {
    grid-template-columns: 68px minmax(0, 1fr);
    column-gap: 13px;
    width: min(328px, 90vw);
    min-height: 88px;
    padding: 10px 20px 10px 10px;
  }

  .sgs-ticket-avatar {
    width: 66px;
    height: 66px;
    border-width: 4px;
  }

  .sgs-ticket-status {
    right: 19px;
    top: 16px;
    width: 23px;
    height: 23px;
  }

  .sgs-ticket-status::before {
    font-size: 12px;
  }

  .sgs-ticket-pill strong {
    font-size: clamp(29px, 9vw, 42px);
  }

  .sgs-ticket-pill small {
    font-size: 14px;
  }

  .sgs-hero-copy {
    justify-items: center;
    text-align: center;
  }

  .sgs-hero-logo {
    margin: 0 auto 22px;
  }

  .sgs-hero-logo span {
    font-size: clamp(62px, 18vw, 86px);
  }

  .sgs-hero-copy h2 {
    max-width: 300px;
    margin-inline: auto;
    font-size: clamp(36px, 10.2vw, 50px);
    line-height: 0.98;
  }

  .sgs-hero-copy h2:not(.sgs-hero-title-mobile) {
    display: none;
  }

  .sgs-hero-title-mobile {
    display: grid !important;
    max-width: 320px;
    justify-items: center;
    text-align: center;
    width: 100%;
  }

  .sgs-hero-title-mobile > span {
    white-space: normal;
  }

  .sgs-hero-copy p {
    max-width: 320px;
    margin-inline: auto;
    font-size: 16px;
  }

  .sgs-hero-copy .hero-cta {
    width: min(100%, 300px);
    margin-inline: auto;
  }

  .sgs-control-band,
  .sgs-flow-band,
  .sgs-gains-band {
    padding: 72px 20px;
    text-align: center;
  }

  .sgs-control-band {
    justify-items: center;
    overflow: hidden;
  }

  .sgs-gains-band::before {
    inset: 24px 14px;
    width: auto;
    transform: none;
    border-radius: 28px;
  }

  .sgs-control-band h2,
  .sgs-flow-heading h2,
  .sgs-gains-band h2 {
    max-width: 350px;
    margin-inline: auto;
    font-size: clamp(42px, 11vw, 60px);
    text-align: center;
  }

  .sgs-control-lead p,
  .sgs-control-foot,
  .sgs-flow-heading p {
    max-width: 350px;
    margin-inline: auto;
    font-size: 16px;
    text-align: center;
  }

  .sgs-control-lead {
    gap: 18px;
    justify-items: center;
  }

  .sgs-control-showcase {
    width: min(calc(100vw - 40px), 430px);
    max-width: calc(100vw - 20px);
    margin-top: 8px;
    margin-inline: auto;
    perspective: none;
    overflow: visible;
  }

  .sgs-control-visual {
    display: grid;
    place-items: center;
    padding-top: 0;
    margin-top: 0;
    transform: none;
    animation: none;
    filter: drop-shadow(0 24px 36px rgba(42, 31, 118, 0.14));
  }

  .sgs-control-visual::before {
    inset: 8% 4% 10%;
  }

  .sgs-control-visual::after {
    height: 16%;
    bottom: -7%;
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
  }

  .sgs-control-visual > img {
    width: 100%;
    max-width: 430px;
    margin-inline: auto;
    transform: none;
  }

  .sgs-check-grid {
    position: relative;
    inset: auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    width: min(100%, 350px);
    max-width: calc(100vw - 40px);
    margin-top: 10px;
    margin-inline: auto;
    pointer-events: auto;
  }

  .sgs-flow-board,
  .sgs-gains-grid {
    grid-template-columns: 1fr;
  }

  .sgs-gains-grid {
    grid-template-rows: none;
    grid-auto-flow: row;
    width: min(720px, 100%);
  }

  .sgs-flow-board {
    gap: 16px;
    padding-top: 0;
  }

  .sgs-flow-board::before {
    left: 35px;
    right: auto;
    top: 24px;
    bottom: 24px;
    width: 2px;
    height: auto;
    background: linear-gradient(180deg, transparent, rgba(241, 239, 255, 0.28), transparent);
  }

  .sgs-flow-board::after {
    left: 33px;
    top: 24px;
    width: 6px;
    height: 72px;
    background: linear-gradient(180deg, transparent, var(--green), transparent);
    animation: sgsFlowProgressMobile 7.2s ease-in-out infinite;
  }

  .sgs-flow-board article {
    min-height: 176px;
    padding: 26px 22px 24px 92px;
  }

  .sgs-flow-board span {
    left: 36px;
    top: 28px;
    width: 54px;
    height: 54px;
    border-width: 6px;
  }

  .sgs-flow-board small {
    position: relative;
    left: auto;
    top: auto;
    margin-bottom: 18px;
  }

  .sgs-check-grid span {
    position: relative;
    inset: auto !important;
    grid-column: 1 / -1 !important;
    grid-template-rows: auto auto;
    justify-content: flex-start;
    gap: 26px;
    aspect-ratio: auto;
    min-height: 128px;
    width: 100%;
    max-width: 100%;
    text-align: left;
    animation: none;
    padding-inline: 22px;
  }

  .sgs-check-grid span::before,
  .sgs-check-grid span::after {
    animation: none;
  }

  .sgs-check-grid span::after {
    display: none;
  }

  .sgs-check-grid span {
    text-align: left;
  }

  .sgs-flow-board article,
  .sgs-gains-grid article,
  .sgs-gains-grid article.is-large {
    grid-column: auto;
    min-height: 230px;
    text-align: left;
  }

  .sgs-gains-grid article,
  .sgs-gains-grid article.is-large {
    grid-template-columns: 52px minmax(0, 1fr) 48px;
    min-height: auto;
    padding: 22px 10px;
  }

  .sgs-gains-grid article::before {
    grid-column: 3;
    grid-row: 1 / span 2;
    justify-self: end;
    align-self: center;
    font-size: 44px;
  }

  .sgs-gains-grid span {
    width: 46px;
    height: 46px;
  }

  .sgs-proof-seal {
    position: relative;
    right: auto;
    top: auto;
    width: 132px;
    height: 132px;
    margin: 26px auto 0;
    transform: none;
  }
}

/* Cloud Importa XML */
.cloud-page {
  background: #f1efff;
}

.cloud-page .floating-nav .logo-top {
  filter: brightness(0) invert(1);
}

.cloud-page .floating-nav:not(.is-visible) {
  top: 48px;
  width: min(1120px, calc(100vw - 120px));
  color: rgba(255, 255, 255, 0.9);
}

.cloud-page .floating-nav:not(.is-visible) .nav-group > a:not(.nav-cta)::after {
  background: var(--green);
}

.cloud-page .floating-nav:not(.is-visible) .nav-cta {
  color: var(--purple-dark) !important;
  background: var(--green);
}

.cloud-hero-section {
  padding-top: 18px;
}

.cloud-hero-card {
  min-height: 1020px;
  overflow: hidden;
  background:
    linear-gradient(135deg, #332886 0%, #140c3c 52%, #08051d 100%);
  box-shadow: 0 30px 80px rgba(31, 22, 95, 0.22);
  padding-top: 124px;
}

.cloud-hero-video {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.12) contrast(1.06) brightness(1.03);
  transform: translateZ(0);
  backface-visibility: hidden;
  will-change: transform;
}

.cloud-hero-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg,
      rgba(8, 18, 61, 0.86) 0%,
      rgba(10, 31, 87, 0.68) 42%,
      rgba(12, 54, 118, 0.5) 100%),
    linear-gradient(180deg,
      rgba(5, 8, 35, 0.34) 0%,
      rgba(5, 8, 35, 0.06) 42%,
      rgba(5, 8, 35, 0.24) 100%);
  pointer-events: none;
}

.cloud-hero-card::after {
  display: none;
}

.cloud-hero-grid {
  display: none;
}

.cloud-hero-copy {
  position: absolute;
  z-index: 3;
  width: min(980px, 74vw);
  left: clamp(56px, 7vw, 126px);
  top: 58%;
  transform: translateY(-50%);
  max-width: none;
  padding-bottom: 0;
}

.cloud-hero-seal {
  position: absolute;
  z-index: 4;
  left: calc(clamp(56px, 7vw, 126px) + 54px);
  right: auto;
  top: calc(38% - 80px);
  width: clamp(118px, 9vw, 168px);
  aspect-ratio: 1;
  opacity: 0.94;
  transform: translateY(-50%);
  filter: drop-shadow(0 22px 44px rgba(7, 4, 32, 0.28));
  pointer-events: none;
}

.cloud-hero-seal .seal-ring,
.cloud-hero-seal .seal-center {
  position: absolute;
  object-fit: contain;
}

.cloud-hero-seal .seal-ring {
  inset: 0;
  width: 100%;
  height: 100%;
  filter: brightness(0) invert(1);
  animation: spin 12s linear infinite;
}

.cloud-hero-seal .seal-center {
  inset: 17%;
  width: 66%;
  height: 66%;
}

.cloud-hero-logo {
  width: clamp(180px, 15vw, 260px);
  height: auto;
  margin: 0 0 24px;
  filter: drop-shadow(0 14px 30px rgba(9, 247, 163, 0.14));
}

.cloud-hero-copy h2 {
  display: grid;
  gap: 4px;
  margin: 0;
  color: #fff;
  font-size: clamp(48px, 4.65vw, 82px);
  line-height: 0.94;
  letter-spacing: 0;
}

.cloud-hero-copy h2 > span {
  white-space: nowrap;
}

.cloud-hero-copy mark,
.cloud-control-copy mark,
.cloud-flow-heading mark,
.cloud-gains-band mark {
  position: relative;
  z-index: 0;
  display: inline-block;
  color: #513eb2;
  background: transparent;
  padding: 0 0.14em 0.04em;
}

.cloud-hero-copy mark::before,
.cloud-control-copy mark::before,
.cloud-flow-heading mark::before,
.cloud-gains-band mark::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0.12em -0.02em -0.02em;
  border-radius: 12px;
  background: #09f7a3;
}

.cloud-hero-copy p {
  max-width: 640px;
  margin: 22px 0 26px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(17px, 1.25vw, 22px);
  font-weight: 400;
  line-height: 1.22;
}

.cloud-hero-copy .hero-cta {
  margin-top: 0;
}

.cloud-hero-device {
  display: none;
  position: absolute;
  right: clamp(-80px, 3vw, 54px);
  top: 50%;
  z-index: 2;
  width: min(720px, 50vw);
  aspect-ratio: 1.24;
  transform: translateY(-43%) rotateX(58deg) rotateZ(-13deg);
  transform-style: preserve-3d;
  filter: drop-shadow(0 44px 70px rgba(0, 0, 0, 0.42));
  animation: cloudDeviceFloat 7s ease-in-out infinite;
}

.cloud-device-bar {
  height: 58px;
  border-radius: 28px 28px 10px 10px;
  background: linear-gradient(90deg, #513eb2, #7868ff 58%, #09f7a3);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.35);
  padding: 18px 26px;
  text-align: right;
}

.cloud-device-bar i {
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-left: 12px;
  border-radius: 999px;
  background: rgba(241,239,255,0.72);
}

.cloud-device-bar i:nth-child(2),
.cloud-device-bar i:nth-child(3) {
  background: #09f7a3;
}

.cloud-device-body {
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 24px;
  height: calc(100% - 54px);
  padding: 32px;
  border-radius: 0 0 34px 34px;
  background: linear-gradient(135deg, #0b1022, #15103b);
}

.cloud-device-sidebar {
  display: grid;
  align-content: start;
  gap: 22px;
  padding: 12px 0;
}

.cloud-device-sidebar span {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  background: linear-gradient(135deg, #09f7a3, #f1efff);
}

.cloud-device-sidebar span:nth-child(even) {
  background: linear-gradient(135deg, #513eb2, #09f7a3);
}

.cloud-device-main {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  grid-template-rows: 1fr 110px;
  gap: 20px;
}

.cloud-sync-card,
.cloud-sync-flow {
  border: 1px solid rgba(241, 239, 255, 0.18);
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(241,239,255,0.94), rgba(241,239,255,0.72));
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.78);
  padding: 26px;
}

.cloud-sync-card.is-large {
  grid-row: span 2;
  background:
    radial-gradient(circle at 80% 16%, rgba(9,247,163,0.42), transparent 34%),
    linear-gradient(135deg, #f1efff, #ffffff);
}

.cloud-sync-card small {
  display: block;
  color: rgba(76, 64, 171, 0.64);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.cloud-sync-card strong {
  display: block;
  margin: 16px 0 24px;
  color: #513eb2;
  font-size: 62px;
  line-height: 0.9;
}

.cloud-sync-card span {
  display: block;
  height: 14px;
  margin-top: 18px;
  border-radius: 999px;
  background: linear-gradient(90deg, #09f7a3 0 64%, rgba(76,64,171,0.22) 64% 100%);
}

.cloud-sync-flow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  grid-column: 2;
  color: #513eb2;
  font-size: 18px;
}

.cloud-sync-flow i {
  width: 42px;
  height: 3px;
  border-radius: 999px;
  background: #09f7a3;
  box-shadow: 0 0 18px rgba(9,247,163,0.66);
}

.cloud-hero-orbit {
  display: none;
}

.cloud-hero-orbit span {
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #09f7a3;
  box-shadow: 0 0 26px rgba(9,247,163,0.85);
}

.cloud-hero-orbit span:nth-child(1) { left: 48%; top: -8px; }
.cloud-hero-orbit span:nth-child(2) { right: 16%; bottom: 8%; }
.cloud-hero-orbit span:nth-child(3) { left: 5%; bottom: 22%; }

.cloud-control-band {
  display: grid;
  grid-template-columns: minmax(340px, 0.9fr) minmax(580px, 1.35fr);
  gap: clamp(48px, 7vw, 128px);
  align-items: center;
  padding: 110px clamp(34px, 5vw, 84px);
  background: #09f7a3;
  color: #513eb2;
}

.cloud-control-copy h2,
.cloud-flow-heading h2,
.cloud-gains-band h2 {
  margin: 0;
  font-size: clamp(58px, 6.4vw, 122px);
  line-height: 0.88;
  letter-spacing: 0;
}

.cloud-control-copy p,
.cloud-flow-heading p {
  max-width: 620px;
  margin: 34px 0 0;
  font-size: clamp(18px, 1.4vw, 24px);
  line-height: 1.28;
  color: rgba(76, 64, 171, 0.78);
}

.cloud-control-panel {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  align-items: stretch;
}

.cloud-control-panel article {
  display: grid;
  align-content: end;
  min-height: 190px;
  padding: 22px;
  border-radius: 28px;
  background: linear-gradient(145deg, rgba(255,255,255,0.95), rgba(241,239,255,0.78));
  box-shadow: 0 24px 60px rgba(76, 64, 171, 0.12);
}

.cloud-control-panel article:nth-child(1),
.cloud-control-panel article:nth-child(2) {
  grid-column: span 3;
}

.cloud-control-panel article:nth-child(n + 3) {
  grid-column: span 2;
}

.cloud-control-panel span {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin-bottom: 44px;
  border-radius: 999px;
  background: #09f7a3;
  color: #513eb2;
  box-shadow: 0 0 0 12px rgba(9,247,163,0.18);
  font-size: 14px;
  font-weight: 600;
}

.cloud-control-panel h3 {
  max-width: 320px;
  margin: 0;
  font-size: clamp(19px, 1.55vw, 26px);
  line-height: 1.04;
  color: #513eb2;
}

.cloud-flow-band {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(620px, 1.4fr);
  gap: clamp(48px, 6vw, 118px);
  align-items: center;
  min-height: 820px;
  padding: 120px clamp(34px, 5vw, 84px);
  color: #fff;
  background:
    radial-gradient(circle at 52% 48%, rgba(9,247,163,0.16), transparent 30%),
    linear-gradient(135deg, #513eb2, #24155f);
}

.cloud-flow-heading mark {
  color: #513eb2;
}

.cloud-flow-heading p {
  color: rgba(255,255,255,0.72);
}

.cloud-flow-rail {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(160px, 1fr));
  gap: 20px;
}

.cloud-flow-rail::before {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  top: 58px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(9,247,163,0.74), transparent);
}

.cloud-flow-rail article {
  position: relative;
  display: grid;
  align-content: end;
  min-height: 360px;
  padding: 34px 28px;
  border-radius: 30px;
  background: linear-gradient(145deg, rgba(241,239,255,0.96), rgba(241,239,255,0.7));
  color: #513eb2;
  box-shadow: 0 30px 80px rgba(5, 4, 23, 0.2);
  animation: cloudStepPulse 8s ease-in-out infinite;
  animation-delay: calc(var(--step-index, 0) * 1s);
}

.cloud-flow-rail article:nth-child(1) { --step-index: 0; }
.cloud-flow-rail article:nth-child(2) { --step-index: 1; }
.cloud-flow-rail article:nth-child(3) { --step-index: 2; }
.cloud-flow-rail article:nth-child(4) { --step-index: 3; }

.cloud-flow-rail article span {
  position: absolute;
  top: -20px;
  left: 28px;
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: #09f7a3;
  color: #513eb2;
  box-shadow: 0 0 0 14px rgba(9,247,163,0.18), 0 18px 42px rgba(9,247,163,0.28);
  font-weight: 600;
}

.cloud-flow-rail article small {
  margin-bottom: 18px;
  color: #09f7a3;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 13px;
}

.cloud-flow-rail article h3 {
  margin: 0 0 14px;
  font-size: clamp(34px, 3vw, 54px);
  line-height: 0.95;
}

.cloud-flow-rail article p {
  margin: 0;
  color: rgba(76,64,171,0.68);
  font-size: 18px;
  line-height: 1.2;
}

.cloud-gains-band {
  display: grid;
  grid-template-columns: minmax(380px, 0.78fr) minmax(620px, 1.28fr);
  gap: clamp(48px, 6vw, 110px);
  padding: 120px clamp(34px, 5vw, 84px);
  background: #f1efff;
  color: #513eb2;
}

.cloud-gains-band .rm-section-copy {
  position: sticky;
  top: 130px;
}

.cloud-gains-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 52px;
}

.cloud-gains-list article {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 22px;
  align-items: start;
  padding: 34px 0;
  border-top: 1px solid rgba(81, 62, 178, 0.16);
}

.cloud-gains-list article:nth-last-child(-n + 2) {
  border-bottom: 1px solid rgba(81, 62, 178, 0.16);
}

.cloud-gains-list span {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: #fff;
  color: #513eb2;
  box-shadow: 0 18px 42px rgba(81,62,178,0.08);
}

.cloud-gains-list svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cloud-gains-list h3 {
  margin: 0 0 8px;
  font-size: clamp(28px, 2.4vw, 42px);
  line-height: 0.98;
}

.cloud-gains-list p {
  max-width: 410px;
  margin: 0;
  color: rgba(76,64,171,0.62);
  font-size: 18px;
  line-height: 1.22;
}

.cloud-proof-band h2 mark span::before {
  inset: 0.56em -0.02em 0.04em;
}

.cloud-proof-seal text {
  fill: rgba(90, 82, 136, 0.72);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.2em;
}

@keyframes cloudDeviceFloat {
  0%, 100% { transform: translateY(-43%) rotateX(58deg) rotateZ(-13deg); }
  50% { transform: translateY(-48%) rotateX(58deg) rotateZ(-11deg); }
}

@keyframes cloudOrbitSpin {
  to { transform: rotate(360deg); }
}

@keyframes cloudStepPulse {
  0%, 18%, 100% { transform: translateY(0); }
  8% { transform: translateY(-14px); box-shadow: 0 38px 96px rgba(9,247,163,0.18); }
}

@media (max-width: 900px) {
  .cloud-page .smooth-scroll {
    position: relative;
    transform: none !important;
  }

  .cloud-page .cloud-hero-section {
    min-height: auto;
    padding: 18px 14px 34px;
    background: #ffffff;
  }

  .cloud-page .cloud-hero-card {
    position: relative;
    top: auto;
    display: block;
    width: 100%;
    min-height: 860px !important;
    padding: 0;
    border-radius: 36px;
    background: linear-gradient(180deg, #2e2879 0%, #140c3c 100%) !important;
    box-shadow: none !important;
    clip-path: inset(0 round 36px);
    transform: none !important;
    will-change: auto;
  }

  .cloud-page .cloud-hero-card::before {
    background:
      linear-gradient(180deg, rgba(46, 40, 121, 0.28) 0%, rgba(20, 12, 60, 0.46) 100%),
      linear-gradient(90deg, rgba(10, 21, 74, 0.3), rgba(10, 21, 74, 0.08));
  }

  .cloud-page .cloud-hero-card::after {
    background:
      linear-gradient(180deg, rgba(20, 12, 60, 0.2), rgba(20, 12, 60, 0.2) 48%, rgba(20, 12, 60, 0.5)),
      linear-gradient(90deg, rgba(20, 12, 60, 0.42), rgba(20, 12, 60, 0.08));
  }

  .cloud-page .cloud-hero-seal {
    left: auto;
    right: 50%;
    top: calc(35% - 70px);
    width: 132px;
    transform: translate(50%, -50%);
  }

  .cloud-page .cloud-hero-video {
    object-position: 58% center;
  }

  .cloud-page .mobile-top-nav {
    position: absolute;
    top: 40px;
    left: 50%;
    right: auto;
    z-index: 70;
    width: min(100% - 58px, 680px);
    transform: translateX(-50%);
    box-shadow: 0 22px 58px rgba(14, 8, 52, 0.24);
  }

  .cloud-page .cloud-hero-copy {
    left: 50%;
    top: calc(51% + 80px);
    width: min(calc(100vw - 40px), 660px);
    align-items: center;
    text-align: center;
    transform: translate(-50%, -50%);
  }

  .cloud-page .cloud-hero-logo {
    width: 214px;
    margin-bottom: 34px;
  }

  .cloud-page .cloud-hero-copy h2 {
    justify-items: center;
    font-size: clamp(42px, 11.2vw, 68px);
    line-height: 0.92;
  }

  .cloud-page .cloud-hero-copy h2 > span {
    white-space: normal;
  }

  .cloud-page .cloud-hero-copy p {
    max-width: min(318px, 100%);
    margin-inline: auto;
    font-size: 18px;
    line-height: 1.3;
  }

  .cloud-page .cloud-hero-copy .hero-cta {
    width: min(100%, 348px);
    margin-inline: auto;
    justify-content: center;
    padding-inline: 22px;
    text-align: center;
    font-size: 15px;
  }

  .cloud-hero-device {
    left: 50%;
    right: auto;
    top: auto;
    bottom: 24px;
    width: min(620px, 122vw);
    transform: translateX(-50%) rotateX(58deg) rotateZ(-9deg);
    animation: none;
  }

  .cloud-hero-orbit {
    display: none;
  }

  .cloud-device-body {
    grid-template-columns: 54px 1fr;
    gap: 14px;
    padding: 20px;
  }

  .cloud-device-sidebar span {
    width: 34px;
    height: 34px;
    border-radius: 12px;
  }

  .cloud-device-main {
    gap: 12px;
  }

  .cloud-sync-card,
  .cloud-sync-flow {
    border-radius: 20px;
    padding: 16px;
  }

  .cloud-sync-card strong {
    font-size: 42px;
  }

  .cloud-sync-flow {
    font-size: 12px;
  }

  .cloud-control-band,
  .cloud-flow-band,
  .cloud-gains-band {
    grid-template-columns: 1fr;
    padding: 76px 20px;
    text-align: center;
  }

  .cloud-control-copy h2,
  .cloud-flow-heading h2,
  .cloud-gains-band h2 {
    max-width: 350px;
    margin-inline: auto;
    font-size: clamp(42px, 11vw, 62px);
    text-align: center;
  }

  .cloud-control-copy p,
  .cloud-flow-heading p {
    max-width: 350px;
    margin-inline: auto;
    margin-top: 24px;
    font-size: 16px;
    text-align: center;
  }

  .cloud-control-panel {
    grid-template-columns: 1fr;
    width: min(100%, 360px);
    margin-inline: auto;
  }

  .cloud-control-panel article,
  .cloud-control-panel article:nth-child(1),
  .cloud-control-panel article:nth-child(2),
  .cloud-control-panel article:nth-child(n + 3) {
    grid-column: auto;
    min-height: 150px;
    text-align: left;
  }

  .cloud-control-panel span {
    margin-bottom: 24px;
  }

  .cloud-flow-rail {
    grid-template-columns: 1fr;
    width: min(100%, 360px);
    margin-inline: auto;
  }

  .cloud-flow-rail::before {
    left: 38px;
    right: auto;
    top: 28px;
    bottom: 28px;
    width: 2px;
    height: auto;
    background: linear-gradient(180deg, transparent, rgba(9,247,163,0.72), transparent);
  }

  .cloud-flow-rail article {
    min-height: 230px;
    padding: 88px 24px 26px;
    text-align: left;
  }

  .cloud-flow-rail article span {
    top: 22px;
    left: 24px;
    width: 58px;
    height: 58px;
  }

  .cloud-gains-band .rm-section-copy {
    position: relative;
    top: auto;
  }

  .cloud-gains-list {
    grid-template-columns: 1fr;
    width: min(100%, 360px);
    margin-inline: auto;
    text-align: left;
  }

  .cloud-gains-list article:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .cloud-gains-list article:last-child {
    border-bottom: 1px solid rgba(81, 62, 178, 0.16);
  }
}

/* W/Flow */
.wflow-page {
  background: #e8e6f3;
}

.wflow-page .wflow-hero-card {
  min-height: calc(100vh - 36px);
  padding: 136px 8vw 86px;
  background: #160c48;
}

.wflow-page .wflow-hero-card::before {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(20, 12, 60, 0.9) 0%, rgba(20, 12, 60, 0.76) 38%, rgba(20, 12, 60, 0.32) 66%, rgba(20, 12, 60, 0.08) 100%),
    linear-gradient(180deg, rgba(46, 40, 121, 0.04), rgba(20, 12, 60, 0.44));
  opacity: 1;
  transform: none;
  animation: none;
}

.wflow-page .wflow-hero-card::after {
  z-index: 2;
  opacity: 0.12;
}

.wflow-page .wflow-hero-video {
  opacity: 0.92;
  object-position: center;
  filter: saturate(1.18) contrast(1.08) brightness(1.04) hue-rotate(4deg);
}

.wflow-hero-watermark {
  position: absolute;
  right: 32px;
  bottom: -190px;
  z-index: 3;
  display: block;
  width: clamp(980px, 80vw, 1560px);
  height: auto;
  aspect-ratio: 150 / 82;
  pointer-events: none;
  mix-blend-mode: screen;
  opacity: 0.4;
}

.wflow-hero-watermark img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.wflow-page .rm-hero-copy {
  z-index: 5;
  max-width: 790px;
}

.wflow-page .wflow-hero-logo {
  width: 230px;
  margin-bottom: 34px;
  filter: brightness(0) invert(1) drop-shadow(0 14px 32px rgba(8, 5, 32, 0.24));
}

.wflow-page .rm-hero-copy.is-entered .wflow-hero-logo {
  filter: brightness(0) invert(1) drop-shadow(0 14px 32px rgba(8, 5, 32, 0.24));
}

.wflow-page .rm-hero-copy h2 {
  display: grid;
  gap: 0.05em;
  max-width: 790px;
  color: #fff;
  background: none;
  -webkit-background-clip: initial;
  background-clip: initial;
  -webkit-text-fill-color: #fff;
  font-size: 5rem;
  line-height: 0.91;
}

.wflow-page .rm-hero-copy h2 > span {
  display: block;
}

.wflow-page .rm-hero-copy h2 mark {
  display: inline;
  padding: 0;
  color: #fff;
  background: transparent;
  -webkit-text-fill-color: #fff;
}

.wflow-page .rm-hero-copy h2 mark::before {
  content: none;
}

.wflow-page .rm-hero-copy p {
  max-width: 570px;
  font-size: 1.22rem;
}

.wflow-page .wflow-hero-seal {
  left: 810px;
  top: 8px;
  width: 118px;
}

.wflow-seal-core {
  position: absolute;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 52%;
  aspect-ratio: 1;
  color: #09f7a3;
  background: #513eb2;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  box-shadow: 0 16px 34px rgba(7, 4, 29, 0.24);
  font-size: 1.15rem;
  font-weight: 600;
}

.wflow-page .wflow-hero-seal text {
  fill: rgba(255, 255, 255, 0.92);
  font-size: 13px;
}

.wflow-context-transmission {
  position: relative;
  width: 100%;
  margin-bottom: 42px;
  color: #513eb2;
}

.wflow-live-status {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  justify-content: center;
  width: 100%;
  color: rgba(81, 62, 178, 0.72);
  font-size: 0.78rem;
  text-transform: uppercase;
}

.wflow-live-status i {
  width: 8px;
  height: 8px;
  background: #09f7a3;
  border-radius: 50%;
  box-shadow: 0 0 0 7px rgba(9, 247, 163, 0.12);
  animation: wflowStatusPulse 1.8s ease-in-out infinite;
}

.wflow-signal-line {
  position: relative;
  height: 108px;
  margin-top: 16px;
}

.wflow-signal-line::before,
.wflow-signal-line::after {
  content: "";
  position: absolute;
  left: 4%;
  right: 4%;
  top: 48px;
  height: 1px;
}

.wflow-signal-line::before {
  background: rgba(81, 62, 178, 0.26);
}

.wflow-signal-line::after {
  right: auto;
  width: 34%;
  background: #09f7a3;
  box-shadow: 0 0 18px rgba(9, 247, 163, 0.72);
  animation: wflowSignalSweep 3.6s ease-in-out infinite;
}

.wflow-station {
  position: absolute;
  top: 32px;
  z-index: 2;
  display: grid;
  justify-items: center;
  gap: 18px;
  min-width: 60px;
  color: rgba(81, 62, 178, 0.78);
  font-size: 0.75rem;
  font-style: normal;
  transform: translateX(-50%);
}

.wflow-station i {
  width: 32px;
  height: 32px;
  background: #e8e6f3;
  border: 1px solid rgba(81, 62, 178, 0.5);
  border-radius: 50%;
  box-shadow: inset 0 0 0 7px rgba(81, 62, 178, 0.06);
}

.wflow-station b {
  font-weight: 400;
}

.wflow-station.is-origin { left: 4%; }
.wflow-station.is-validation { left: 50%; }
.wflow-station.is-sefaz { left: 96%; }

.wflow-station.is-validation i {
  background: #09f7a3;
  border-color: #09f7a3;
  box-shadow: 0 0 28px rgba(9, 247, 163, 0.34);
}

.wflow-packet {
  position: absolute;
  left: 4%;
  top: 34px;
  z-index: 3;
  display: grid;
  place-items: center;
  min-width: 48px;
  height: 28px;
  padding: 0 10px;
  color: #513eb2;
  background: #fff;
  border-radius: 999px;
  box-shadow: 0 10px 28px rgba(7, 4, 29, 0.24);
  font-size: 0.68rem;
  animation: wflowPacketRun 5.8s linear infinite;
}

.wflow-packet.is-event {
  animation-delay: -2.9s;
}

.wflow-page .rm-service-tags {
  background: linear-gradient(180deg, rgba(232, 230, 243, 0) 0%, #e8e6f3 52px);
}

.wflow-problem-band {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(360px, 0.72fr);
  gap: 72px 8vw;
  padding: 132px 7vw 0;
  color: #513eb2;
  background: #e8e6f3;
}

.wflow-section-index {
  display: inline-block;
  margin-bottom: 24px;
  color: rgba(81, 62, 178, 0.52);
  font-size: 0.78rem;
  text-transform: uppercase;
}

.wflow-problem-heading h2,
.wflow-gains-title h2 {
  max-width: 980px;
  font-size: 5.6rem;
  line-height: 0.9;
}

.wflow-problem-heading h2 {
  display: grid;
  justify-items: start;
  gap: 0.02em;
  font-size: clamp(3.6rem, 4.35vw, 5.6rem);
}

.wflow-problem-heading h2 > span,
.wflow-problem-heading h2 > mark {
  display: block;
  width: max-content;
  max-width: 100%;
  white-space: nowrap;
}

.wflow-problem-copy {
  align-self: center;
  max-width: 620px;
}

.wflow-problem-copy p {
  margin: 0;
  color: rgba(76, 64, 171, 0.76);
  font-size: 1.25rem;
  line-height: 1.36;
}

.wflow-problem-copy p + p {
  margin-top: 22px;
}

.wflow-needs {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: start;
  position: relative;
  left: 50%;
  width: 100vw;
  margin-top: 34px;
  transform: translateX(-50%);
}

.wflow-needs ol {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(81, 62, 178, 0.2);
  border-left: 1px solid rgba(81, 62, 178, 0.2);
}

.wflow-needs li {
  display: grid;
  grid-template-rows: auto 1fr auto;
  min-height: 430px;
  padding: clamp(24px, 2.6vw, 42px);
  border-right: 1px solid rgba(81, 62, 178, 0.2);
  border-bottom: 1px solid rgba(81, 62, 178, 0.2);
  color: #4c40ab;
  background: #e8e6f3;
  transition: background 240ms ease, color 240ms ease, box-shadow 240ms ease;
}

.wflow-needs li:hover {
  color: #2a1f76;
  background: #09f7a3;
  box-shadow: inset 0 0 0 1px rgba(9, 247, 163, 0.24), 0 0 34px rgba(9, 247, 163, 0.4);
}

.wflow-need-index {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  color: #513eb2;
  border: 1px solid #513eb2;
  border-radius: 50%;
  font-size: 0.78rem;
  transition: background 220ms ease, border-color 220ms ease;
}

.wflow-needs li:hover .wflow-need-index {
  background: #fff;
  border-color: #fff;
  animation: indexPulse 1.35s ease-in-out infinite;
}

.wflow-need-icon {
  align-self: center;
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  color: rgba(81, 62, 178, 0.46);
  transition: color 220ms ease, transform 220ms ease;
}

.wflow-need-icon svg {
  width: 58px;
  height: 58px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.35;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.wflow-needs li:hover .wflow-need-icon {
  color: #513eb2;
  transform: translateY(-3px);
}

.wflow-needs li strong {
  max-width: 260px;
  color: currentColor;
  font-size: clamp(1.2rem, 1.45vw, 1.65rem);
  font-weight: 600;
  line-height: 1.08;
}

.wflow-process-band {
  position: relative;
  display: grid;
  grid-template-columns: minmax(360px, 0.72fr) minmax(0, 1fr);
  gap: 8vw;
  align-items: center;
  min-height: 940px;
  padding: 128px 7vw;
  color: #fff;
  background: #513eb2;
  overflow: hidden;
}

.wflow-process-band::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(118deg, rgba(9, 247, 163, 0.08), transparent 38%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 28%);
}

.wflow-process-heading,
.wflow-process-rail {
  position: relative;
  z-index: 1;
}

.wflow-process-heading .wflow-section-index {
  color: rgba(255, 255, 255, 0.58);
}

.wflow-process-heading h2 {
  max-width: 680px;
  margin: 0;
  color: #fff;
  font-size: 4.45rem;
  font-weight: 600;
  line-height: 0.9;
}

.wflow-process-heading h2 mark {
  display: inline-block;
  padding: 0 0.08em 0.05em;
  color: #513eb2;
  background: #09f7a3;
  border-radius: 0.14em;
}

.wflow-process-heading p {
  max-width: 480px;
  margin: 30px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.14rem;
  line-height: 1.4;
}

.wflow-process-rail {
  padding-left: 76px;
}

.wflow-process-rail::before {
  content: "";
  position: absolute;
  left: 22px;
  top: 12.5%;
  bottom: 12.5%;
  width: 2px;
  background: rgba(255, 255, 255, 0.16);
}

.wflow-process-runner {
  position: absolute;
  left: 0;
  top: calc(12.5% - 22px);
  z-index: 2;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  background: #09f7a3;
  border: 4px solid #513eb2;
  border-radius: 50%;
  box-shadow: 0 0 0 8px rgba(9, 247, 163, 0.14), 0 0 34px rgba(9, 247, 163, 0.58);
  animation: wflowRailRun 12.8s linear infinite;
}

.wflow-process-runner svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: #513eb2;
  stroke-width: 2.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  animation: wflowRunnerCheck 12.8s linear infinite;
}

.wflow-process-rail article {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  min-height: 152px;
  padding: 22px 0;
  color: rgba(255, 255, 255, 0.24);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.wflow-process-rail article:nth-of-type(1) { animation: wflowStageOne 12.8s linear infinite; }
.wflow-process-rail article:nth-of-type(2) { animation: wflowStageTwo 12.8s linear infinite; }
.wflow-process-rail article:nth-of-type(3) { animation: wflowStageThree 12.8s linear infinite; }
.wflow-process-rail article:nth-of-type(4) { animation: wflowStageFour 12.8s linear infinite; }

.wflow-process-rail article:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.wflow-process-rail article > span {
  color: currentColor;
  font-size: 0.82rem;
}

.wflow-process-rail h3,
.wflow-process-rail p {
  margin: 0;
}

.wflow-process-rail h3 {
  font-size: 2rem;
  line-height: 1;
}

.wflow-process-rail p {
  max-width: 450px;
  margin-top: 8px;
  color: currentColor;
  font-size: 1rem;
  line-height: 1.3;
}

.wflow-process-rail small {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: end;
  width: max-content;
  min-width: 152px;
  min-height: 36px;
  padding: 0 16px;
  color: currentColor;
  background: rgba(9, 247, 163, 0);
  border-radius: 999px;
  box-shadow: 0 0 0 rgba(9, 247, 163, 0);
  font-size: 0.76rem;
  text-align: right;
  text-transform: uppercase;
}

.wflow-process-rail article:nth-of-type(1) small { animation: wflowStatusStageOne 12.8s linear infinite; }
.wflow-process-rail article:nth-of-type(2) small { animation: wflowStatusStageTwo 12.8s linear infinite; }
.wflow-process-rail article:nth-of-type(3) small { animation: wflowStatusStageThree 12.8s linear infinite; }
.wflow-process-rail article:nth-of-type(4) small { animation: wflowStatusStageFour 12.8s linear infinite; }

.wflow-gains-band {
  padding: 54px 3vw;
  color: #513eb2;
  background: #d9d5e8;
}

.wflow-gains-shell {
  padding: 112px 6vw 118px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(248, 247, 252, 0.94));
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 32px;
  box-shadow: 0 28px 90px rgba(81, 62, 178, 0.08);
}

.wflow-gains-title {
  max-width: 1120px;
  margin: 0 auto 76px;
  text-align: center;
}

.wflow-gains-title h2 {
  margin-inline: auto;
}

.wflow-gains-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 6vw;
  max-width: 1420px;
  margin: 0 auto;
}

.wflow-gains-grid article {
  position: relative;
  display: grid;
  grid-template-columns: 62px minmax(0, 1fr) 72px;
  gap: 22px;
  align-items: center;
  min-height: 176px;
  padding: 28px 0;
  border-top: 1px solid rgba(81, 62, 178, 0.16);
}

.wflow-gain-icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  color: #513eb2;
  background: #f1efff;
  border: 1px solid rgba(81, 62, 178, 0.1);
  border-radius: 50%;
}

.wflow-gain-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.wflow-gains-grid h3,
.wflow-gains-grid p {
  margin: 0;
}

.wflow-gains-grid h3 {
  font-size: 1.82rem;
  line-height: 1;
}

.wflow-gains-grid p {
  max-width: 460px;
  margin-top: 10px;
  color: rgba(76, 64, 171, 0.68);
  font-size: 1rem;
  line-height: 1.3;
}

.wflow-gains-grid article > strong {
  color: rgba(81, 62, 178, 0.1);
  font-size: 4rem;
  font-weight: 600;
  line-height: 1;
  text-align: right;
}

.wflow-proof-band {
  background: #e8e6f3;
}

.wflow-page .wflow-proof-seal .wflow-seal-core {
  width: 52%;
  color: #09f7a3;
}

.wflow-page .wflow-proof-seal > svg {
  z-index: 1;
}

.wflow-page .wflow-proof-seal text {
  fill: rgba(81, 62, 178, 0.6);
  font-size: 13px;
}

@keyframes wflowStatusPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.52; transform: scale(0.78); }
}

@keyframes wflowSignalSweep {
  0% { left: 4%; opacity: 0; }
  16%, 82% { opacity: 1; }
  100% { left: 62%; opacity: 0; }
}

@keyframes wflowPacketRun {
  0% { left: 3%; opacity: 0; transform: translateX(-50%) scale(0.82); }
  12%, 86% { opacity: 1; }
  50% { color: #513eb2; background: #09f7a3; box-shadow: 0 12px 34px rgba(9, 247, 163, 0.36); }
  100% { left: 97%; opacity: 0; transform: translateX(-50%) scale(1); }
}

@keyframes wflowRailRun {
  0%, 16% { top: calc(12.5% - 22px); }
  22%, 38% { top: calc(37.5% - 22px); }
  44%, 60% { top: calc(62.5% - 22px); }
  66%, 100% { top: calc(87.5% - 22px); }
}

@keyframes wflowRunnerCheck {
  0%, 16%, 22%, 38%, 44%, 60%, 66%, 100% { opacity: 1; transform: scale(1); }
  19%, 41%, 63% { opacity: 0; transform: scale(0.55); }
}

@keyframes wflowStageOne {
  0% { color: rgba(255, 255, 255, 0.24); }
  4%, 100% { color: #fff; }
}

@keyframes wflowStageTwo {
  0%, 17% { color: rgba(255, 255, 255, 0.24); }
  22%, 100% { color: #fff; }
}

@keyframes wflowStageThree {
  0%, 39% { color: rgba(255, 255, 255, 0.24); }
  44%, 100% { color: #fff; }
}

@keyframes wflowStageFour {
  0%, 61% { color: rgba(255, 255, 255, 0.24); }
  66%, 100% { color: #fff; }
}

@keyframes wflowStatusStageOne {
  0% { color: rgba(255, 255, 255, 0.24); background: rgba(9, 247, 163, 0); box-shadow: 0 0 0 rgba(9, 247, 163, 0); }
  4%, 100% { color: #513eb2; background: #09f7a3; box-shadow: 0 10px 28px rgba(9, 247, 163, 0.22); }
}

@keyframes wflowStatusStageTwo {
  0%, 17% { color: rgba(255, 255, 255, 0.24); background: rgba(9, 247, 163, 0); box-shadow: 0 0 0 rgba(9, 247, 163, 0); }
  22%, 100% { color: #513eb2; background: #09f7a3; box-shadow: 0 10px 28px rgba(9, 247, 163, 0.22); }
}

@keyframes wflowStatusStageThree {
  0%, 39% { color: rgba(255, 255, 255, 0.24); background: rgba(9, 247, 163, 0); box-shadow: 0 0 0 rgba(9, 247, 163, 0); }
  44%, 100% { color: #513eb2; background: #09f7a3; box-shadow: 0 10px 28px rgba(9, 247, 163, 0.22); }
}

@keyframes wflowStatusStageFour {
  0%, 61% { color: rgba(255, 255, 255, 0.24); background: rgba(9, 247, 163, 0); box-shadow: 0 0 0 rgba(9, 247, 163, 0); }
  66%, 100% { color: #513eb2; background: #09f7a3; box-shadow: 0 10px 28px rgba(9, 247, 163, 0.22); }
}

@media (max-width: 1180px) {
  .wflow-page .rm-hero-copy h2 {
    font-size: 4.4rem;
  }

  .wflow-page .wflow-hero-seal {
    left: 720px;
  }

  .wflow-problem-heading h2,
  .wflow-gains-title h2 {
    font-size: 4.7rem;
  }

  .wflow-process-heading h2 {
    font-size: 4rem;
  }

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

  .wflow-process-rail article {
    grid-template-columns: 46px minmax(0, 1fr);
  }

  .wflow-process-rail article > span {
    grid-column: 1;
    grid-row: 1;
  }

  .wflow-process-rail article > div {
    grid-column: 2;
    grid-row: 1;
  }

  .wflow-process-rail small {
    grid-column: 2;
    grid-row: 2;
    min-width: 0;
    margin-top: 8px;
    justify-self: start;
    text-align: left;
  }

}

@media (max-width: 900px) {
  .wflow-problem-band,
  .wflow-process-band {
    grid-template-columns: 1fr;
  }

  .wflow-problem-heading,
  .wflow-problem-copy,
  .wflow-process-heading {
    max-width: 720px;
    margin-inline: auto;
    text-align: center;
  }

  .wflow-needs {
    grid-template-columns: 1fr;
  }

  .wflow-process-band {
    min-height: auto;
  }

  .wflow-process-heading p {
    margin-inline: auto;
  }

  .wflow-process-rail {
    width: min(100%, 760px);
    margin-inline: auto;
  }
}

@media (max-width: 760px) {
  body.wflow-page,
  body.wflow-page .smooth-scroll {
    background: #fff;
  }

  .wflow-page .hero-section {
    padding: 118px 14px 26px;
  }

  .wflow-page .wflow-hero-card {
    align-items: start;
    min-height: 850px;
    padding: 64px 22px 54px;
    background: #160c48 !important;
  }

  .wflow-page .wflow-hero-card::before {
    background:
      linear-gradient(180deg, rgba(46, 40, 121, 0.58) 0%, rgba(20, 12, 60, 0.72) 52%, rgba(20, 12, 60, 0.94) 100%);
    opacity: 1;
  }

  .wflow-page .wflow-hero-video {
    opacity: 0.66;
    object-position: 70% center;
    transform: scale(1.03);
  }

  .wflow-hero-watermark {
    right: 18px;
    bottom: -65px;
    width: 400px;
    height: auto;
    opacity: 0.28;
  }

  .wflow-page .rm-hero-copy {
    align-content: start;
    justify-items: center;
    width: 100%;
    padding-bottom: 180px;
  }

  .wflow-page .wflow-hero-logo {
    width: 178px;
    margin-bottom: 12px;
  }

  .wflow-page .wflow-hero-seal {
    left: auto;
    top: auto;
    width: 88px;
    margin: 12px auto 26px;
  }

  .wflow-page .rm-hero-copy h2 {
    gap: 4px;
    max-width: 340px;
    font-size: 2.95rem;
    line-height: 0.96;
  }

  .wflow-page .rm-hero-copy h2 mark {
    white-space: nowrap;
  }

  .wflow-page .rm-hero-copy p {
    max-width: 330px;
    margin-top: 24px;
    font-size: 1rem;
    line-height: 1.36;
  }

  .wflow-page .rm-hero-copy .hero-cta {
    width: min(100%, 310px);
    margin-top: 2px;
  }

  .wflow-context-transmission {
    width: min(100%, 350px);
    margin: 0 auto 38px;
  }

  .wflow-live-status {
    margin-left: 0;
    width: 100%;
    justify-content: center;
  }

  .wflow-signal-line {
    height: 92px;
    margin-top: 12px;
  }

  .wflow-station {
    top: 26px;
    gap: 13px;
    font-size: 0.68rem;
  }

  .wflow-station i {
    width: 28px;
    height: 28px;
  }

  .wflow-signal-line::before,
  .wflow-signal-line::after {
    top: 40px;
  }

  .wflow-packet {
    top: 27px;
    min-width: 42px;
    height: 26px;
    font-size: 0.62rem;
  }

  .wflow-page .rm-service-tags {
    width: 100%;
    margin-left: 0;
    margin-top: -4px;
    background: linear-gradient(180deg, #fff 0%, #e8e6f3 34px);
  }

  .wflow-problem-band,
  .wflow-process-band {
    gap: 44px;
    padding: 78px 20px;
  }

  .wflow-problem-band {
    padding-bottom: 0;
  }

  .wflow-section-index {
    margin-bottom: 18px;
  }

  .wflow-problem-heading h2,
  .wflow-gains-title h2,
  .wflow-process-heading h2 {
    max-width: 350px;
    margin-inline: auto;
    font-size: 3.25rem;
    line-height: 0.92;
  }

  .wflow-problem-heading mark {
    white-space: nowrap;
  }

  .wflow-problem-heading h2 {
    justify-items: center;
  }

  .wflow-problem-copy p {
    max-width: 350px;
    margin-inline: auto;
    font-size: 1rem;
  }

  .wflow-needs ol {
    grid-template-columns: 1fr;
    width: 100%;
  }

  .wflow-needs li,
  .wflow-needs li:nth-child(4),
  .wflow-needs li:nth-child(5) {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    grid-template-rows: auto 1fr;
    gap: 28px;
    align-items: start;
    min-height: 250px;
    padding: 30px 26px;
    border: 0;
    border-right: 1px solid rgba(81, 62, 178, 0.2);
    border-bottom: 1px solid rgba(81, 62, 178, 0.2);
    text-align: left;
  }

  .wflow-need-icon {
    grid-column: 1 / -1;
    grid-row: 2;
    align-self: end;
    width: 62px;
    height: 62px;
  }

  .wflow-need-icon svg {
    width: 50px;
    height: 50px;
  }

  .wflow-needs li strong {
    grid-column: 2;
    grid-row: 1;
    align-self: center;
    max-width: 250px;
    font-size: 1.35rem;
  }

  .wflow-process-heading p {
    max-width: 340px;
    font-size: 1rem;
  }

  .wflow-process-rail {
    width: min(100%, 360px);
    padding-left: 48px;
  }

  .wflow-process-rail::before {
    left: 11px;
  }

  .wflow-process-runner {
    left: -11px;
  }

  .wflow-process-rail article {
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 12px;
    min-height: 148px;
    text-align: left;
  }

  .wflow-process-rail article > span {
    grid-column: 1;
    grid-row: 1;
  }

  .wflow-process-rail article > div {
    grid-column: 2;
    grid-row: 1;
  }

  .wflow-process-rail small {
    grid-column: 2;
    grid-row: 2;
    min-width: 0;
    margin-top: 10px;
    justify-self: start;
    font-size: 0.68rem;
    text-align: left;
  }

  .wflow-process-rail h3 {
    font-size: 1.75rem;
  }

  .wflow-process-rail p {
    font-size: 0.94rem;
  }

  .wflow-gains-band {
    padding: 24px 12px;
  }

  .wflow-gains-shell {
    padding: 68px 18px 72px;
    border-radius: 28px;
  }

  .wflow-gains-title {
    margin-bottom: 48px;
  }

  .wflow-gains-grid {
    grid-template-columns: 1fr;
    width: min(100%, 360px);
  }

  .wflow-gains-grid article {
    grid-template-columns: 48px minmax(0, 1fr) 48px;
    gap: 12px;
    min-height: 152px;
    padding: 24px 0;
    text-align: left;
  }

  .wflow-gain-icon {
    width: 42px;
    height: 42px;
  }

  .wflow-gain-icon svg {
    width: 21px;
    height: 21px;
  }

  .wflow-gains-grid h3 {
    font-size: 1.4rem;
  }

  .wflow-gains-grid p {
    font-size: 0.92rem;
  }

  .wflow-gains-grid article > strong {
    font-size: 2.7rem;
  }

  .wflow-proof-band {
    padding-top: 82px;
  }
}

@media (max-width: 420px) {
  .wflow-page .wflow-hero-card {
    min-height: 830px;
  }

  .wflow-page .rm-hero-copy h2 {
    max-width: 315px;
    font-size: 2.65rem;
  }

  .wflow-problem-heading h2,
  .wflow-gains-title h2,
  .wflow-process-heading h2 {
    font-size: 2.85rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .wflow-live-status i,
  .wflow-signal-line::after,
  .wflow-packet,
  .wflow-process-runner {
    animation: none !important;
  }

  .wflow-process-runner svg,
  .wflow-process-rail article {
    animation: none !important;
  }

  .wflow-process-rail article {
    color: #fff;
  }

  .wflow-process-rail small {
    color: #513eb2;
    background: #09f7a3;
    box-shadow: 0 10px 28px rgba(9, 247, 163, 0.22);
    animation: none !important;
  }
}

.cloud-map-band {
  position: relative;
  overflow: hidden;
  padding: 116px clamp(34px, 5vw, 84px) 96px;
  background: #09f7a3;
  color: #513eb2;
}

.cloud-map-band::before {
  display: none;
}

.cloud-map-heading {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(520px, 0.9fr) minmax(420px, 0.74fr);
  gap: clamp(48px, 7vw, 120px);
  align-items: end;
}

.cloud-map-heading h2,
.cloud-console-copy h2,
.cloud-outcomes-title h2 {
  margin: 0;
  font-size: clamp(58px, 6.2vw, 116px);
  line-height: 0.88;
  letter-spacing: 0;
}

.cloud-map-heading p,
.cloud-console-copy p {
  max-width: 610px;
  margin: 0;
  color: rgba(76, 64, 171, 0.74);
  font-size: clamp(18px, 1.35vw, 24px);
  line-height: 1.28;
}

.cloud-map-heading mark,
.cloud-console-copy mark,
.cloud-outcomes-title mark {
  position: relative;
  z-index: 0;
  display: inline-block;
  padding: 0 0.12em 0.04em;
  color: #513eb2;
  background: transparent;
}

.cloud-map-heading mark::before,
.cloud-console-copy mark::before,
.cloud-outcomes-title mark::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0.12em -0.02em -0.03em;
  border-radius: 12px;
  background: #fff;
}

.cloud-network {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(420px, 560px) minmax(420px, 560px) minmax(420px, 560px);
  gap: clamp(22px, 2.6vw, 48px);
  align-items: center;
  justify-items: center;
  justify-content: center;
  min-height: 430px;
  margin-top: 84px;
}

.cloud-network-line {
  position: absolute;
  left: 14%;
  right: 14%;
  top: 50%;
  height: 4px;
  border-radius: 999px;
  overflow: hidden;
  background: linear-gradient(90deg, transparent, rgba(81,62,178,0.22), rgba(255,255,255,0.82), rgba(81,62,178,0.22), transparent);
  box-shadow: 0 0 30px rgba(255,255,255,0.34);
}

.cloud-network-line::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 -260px;
  width: 260px;
  border-radius: inherit;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), #fff, rgba(9,247,163,0.95), transparent);
  box-shadow: 0 0 28px rgba(255,255,255,0.68), 0 0 34px rgba(9,247,163,0.52);
  animation: cloudCircuitRun 4.8s linear infinite;
}

.cloud-network-line.is-bottom {
  display: none;
}

.cloud-network-node {
  position: relative;
  z-index: 2;
  display: grid;
  align-content: center;
  width: 100%;
  min-height: 292px;
  padding: 34px;
  border: 0;
  border-radius: 34px;
  background-color: #513eb2;
  background-image:
    linear-gradient(180deg, rgba(32, 22, 105, 0.18), rgba(32, 22, 105, 0.38)),
    var(--cloud-node-bg);
  background-size: cover;
  background-position: center;
  box-shadow:
    0 34px 82px rgba(81, 62, 178, 0.2),
    inset 0 1px 0 rgba(255,255,255,0.16);
  overflow: hidden;
}

.cloud-network-node.is-erp {
  --cloud-node-bg: url("./images/fundowe1.png");
}

.cloud-network-node.is-xml {
  --cloud-node-bg: url("./images/fundowe2.png");
}

.cloud-network-node::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 86% 86%, rgba(9, 247, 163, 0.2), transparent 32%),
    linear-gradient(90deg, rgba(81, 62, 178, 0.18), rgba(81, 62, 178, 0));
  pointer-events: none;
}

.cloud-network-node small,
.cloud-network-node span {
  position: relative;
  z-index: 1;
  color: rgba(255,255,255,0.72);
  font-size: 16px;
}

.cloud-network-node strong {
  position: relative;
  z-index: 1;
  margin: 14px 0 18px;
  color: #fff;
  font-size: clamp(42px, 4vw, 72px);
  line-height: 0.9;
}

.cloud-network-core {
  position: relative;
  z-index: 3;
  display: grid;
  place-items: center;
  align-content: center;
  justify-self: center;
  width: clamp(500px, 32vw, 660px);
  aspect-ratio: 1;
  margin-inline: auto;
  border-radius: 50%;
  background: transparent;
  color: #513eb2;
  box-shadow: none;
}

.cloud-core-image {
  position: relative;
  z-index: 2;
  width: 120%;
  max-width: none;
  height: auto;
  object-fit: contain;
  filter: none;
  transform-origin: 47% 50%;
  animation: cloudImagePulse 3.8s ease-in-out infinite;
}

.cloud-core-ring {
  display: none;
}

.cloud-core-ring:nth-child(2) {
  inset: -14px;
  animation-delay: 1.2s;
}

.cloud-xml-stream {
  position: absolute;
  z-index: 2;
  inset: 0;
  pointer-events: none;
}

.cloud-xml-stream span {
  position: absolute;
  left: 14%;
  top: 50%;
  padding: 12px 18px;
  border-radius: 999px;
  background: #fff;
  color: #513eb2;
  box-shadow: 0 18px 40px rgba(81,62,178,0.16);
  font-size: 15px;
  animation: cloudXmlMove 8s linear infinite;
}

.cloud-xml-stream span:nth-child(2) {
  top: 50%;
  animation-delay: -2s;
}

.cloud-xml-stream span:nth-child(3) {
  top: 50%;
  animation-delay: -4s;
}

.cloud-xml-stream span:nth-child(4) {
  top: 50%;
  animation-delay: -6s;
}

.cloud-needs-strip {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  max-width: 1260px;
  margin: 38px auto 0;
}

.cloud-needs-strip span {
  padding: 13px 18px;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 999px;
  background: #513eb2;
  color: #fff;
  font-size: 16px;
  box-shadow: 0 16px 34px rgba(42, 31, 118, 0.16);
}

.cloud-console-band {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(540px, 1fr) minmax(420px, 0.58fr);
  gap: clamp(48px, 6vw, 118px);
  align-items: center;
  min-height: 860px;
  padding: 120px clamp(34px, 5vw, 84px);
  background: #140c3c;
  color: #fff;
}

.cloud-console-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    url("./images/cloud-flow-bg.png") left center / 74% auto no-repeat;
  filter: saturate(1.08) hue-rotate(8deg) contrast(1.02);
  transform: scale(1);
  transform-origin: left center;
  mask-image: linear-gradient(90deg, #000 0%, #000 38%, rgba(0,0,0,0.72) 50%, rgba(0,0,0,0.26) 60%, rgba(0,0,0,0.04) 68%, transparent 74%);
  -webkit-mask-image: linear-gradient(90deg, #000 0%, #000 38%, rgba(0,0,0,0.72) 50%, rgba(0,0,0,0.26) 60%, rgba(0,0,0,0.04) 68%, transparent 74%);
  animation: cloudFlowBgZoom 12s ease-in-out infinite;
}

.cloud-console-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(20,12,60,0.12), rgba(20,12,60,0.22) 42%, rgba(20,12,60,0.82) 62%, rgba(20,12,60,0.98) 82%, #140c3c 100%),
    radial-gradient(circle at 72% 52%, rgba(9,247,163,0.18), transparent 28%);
  pointer-events: none;
}

.cloud-console-shell {
  position: relative;
  z-index: 1;
  min-height: 620px;
  perspective: 1200px;
}

.cloud-console-shell::before {
  display: none;
}

.cloud-console-window {
  overflow: hidden;
  min-height: 520px;
  border: 1px solid rgba(241,239,255,0.2);
  border-radius: 34px;
  background: rgba(10, 8, 34, 0.66);
  box-shadow: 0 44px 100px rgba(0,0,0,0.28), inset 0 1px 0 rgba(255,255,255,0.14);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  transform: rotateX(9deg) rotateY(-12deg);
  animation: cloudConsoleFloat 8s ease-in-out infinite;
}

.cloud-console-window.is-image {
  min-height: auto;
  width: min(980px, 112%);
  margin-left: -8%;
  border: 1px solid rgba(241,239,255,0.2);
  border-radius: 36px;
  background: #f8f9ff;
  box-shadow:
    0 54px 120px rgba(0,0,0,0.34),
    0 22px 54px rgba(9,247,163,0.12),
    inset 0 1px 0 rgba(255,255,255,0.9);
  transform: rotateX(12deg) rotateY(-16deg) rotateZ(-2deg) translateY(10px);
  transform-origin: center right;
}

.cloud-console-window.is-image::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(9,247,163,0.16), transparent 34%),
    radial-gradient(circle at 74% 22%, rgba(9,247,163,0.18), transparent 18%);
  mix-blend-mode: color;
  pointer-events: none;
}

.cloud-console-window.is-image img {
  display: block;
  width: 100%;
  height: auto;
  filter: saturate(1.22) hue-rotate(14deg) contrast(1.03);
  transform: scale(1.015);
}

.cloud-console-top {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 20px 24px;
  border-bottom: 1px solid rgba(241,239,255,0.12);
}

.cloud-console-top i {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: #f1efff;
}

.cloud-console-top i:nth-child(2),
.cloud-console-top i:nth-child(3) {
  background: #09f7a3;
}

.cloud-console-top span {
  margin-left: auto;
  color: rgba(241,239,255,0.62);
  font-size: 14px;
}

.cloud-console-grid {
  display: grid;
  grid-template-columns: 0.82fr 0.82fr 1.3fr;
  gap: 18px;
  padding: 24px;
}

.cloud-console-metric,
.cloud-console-log {
  min-height: 420px;
  border-radius: 26px;
  background: linear-gradient(145deg, rgba(241,239,255,0.92), rgba(241,239,255,0.62));
  color: #513eb2;
  padding: 28px;
}

.cloud-console-metric {
  display: grid;
  align-content: end;
}

.cloud-console-metric small {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(76,64,171,0.55);
}

.cloud-console-metric strong {
  margin-top: 14px;
  font-size: clamp(50px, 5vw, 82px);
  line-height: 0.9;
}

.cloud-console-metric.is-live {
  background:
    radial-gradient(circle at 76% 18%, rgba(9,247,163,0.68), transparent 26%),
    linear-gradient(145deg, #f1efff, #fff);
}

.cloud-console-log {
  display: grid;
  align-content: center;
  gap: 22px;
}

.cloud-console-log span {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(76,64,171,0.72);
  font-size: 17px;
}

.cloud-console-log b {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #09f7a3;
  box-shadow: 0 0 0 8px rgba(9,247,163,0.14);
}

.cloud-console-copy h2 {
  position: relative;
  z-index: 1;
  color: #fff;
}

.cloud-console-copy mark {
  color: #513eb2;
}

.cloud-console-copy mark::before {
  background: #09f7a3;
}

.cloud-console-copy p {
  position: relative;
  z-index: 1;
  margin-top: 30px;
  color: rgba(241,239,255,0.74);
}

.cloud-console-steps {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0;
  margin: 48px 0 0;
  padding: 0;
  list-style: none;
}

.cloud-console-steps li {
  display: grid;
  grid-template-columns: 52px 1fr;
  column-gap: 18px;
  padding: 20px 0;
  border-top: 1px solid rgba(241,239,255,0.14);
}

.cloud-console-steps li:last-child {
  border-bottom: 1px solid rgba(241,239,255,0.14);
}

.cloud-console-steps span {
  grid-row: span 2;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #09f7a3;
  color: #513eb2;
  font-weight: 600;
}

.cloud-console-steps strong {
  font-size: 24px;
}

.cloud-console-steps small {
  margin-top: 4px;
  color: rgba(241,239,255,0.58);
  font-size: 16px;
}

.cloud-outcomes-band {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 68px;
  padding: 136px clamp(64px, 8vw, 128px);
  background: #ddd6ef;
  color: #513eb2;
}

.cloud-outcomes-band::before {
  content: "";
  position: absolute;
  inset: 54px clamp(16px, 3vw, 42px);
  border-radius: 32px;
  background:
    radial-gradient(circle at 50% 8%, rgba(81, 62, 178, 0.07), transparent 34%),
    linear-gradient(180deg, rgba(255,255,255,0.98), rgba(255,255,255,0.9));
  box-shadow:
    0 30px 90px rgba(81, 62, 178, 0.08),
    inset 0 1px 0 rgba(255,255,255,0.9);
}

.cloud-outcomes-title {
  position: relative;
  z-index: 1;
  max-width: 1120px;
  margin-inline: auto;
  text-align: center;
}

.cloud-outcomes-title mark::before {
  background: #09f7a3;
}

.cloud-outcomes-table {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 1360px;
  margin-inline: auto;
  border-top: 1px solid rgba(81,62,178,0.14);
  border-left: 1px solid rgba(81,62,178,0.14);
}

.cloud-outcomes-table article {
  display: grid;
  grid-template-rows: auto auto 1fr;
  min-height: 260px;
  padding: 30px;
  border-right: 1px solid rgba(81,62,178,0.14);
  border-bottom: 1px solid rgba(81,62,178,0.14);
  background: rgba(255,255,255,0.16);
  transition: background 0.35s ease, transform 0.35s ease;
}

.cloud-outcomes-table article:hover {
  background: rgba(255,255,255,0.72);
  transform: translateY(-6px);
}

.cloud-outcomes-table span {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  margin-bottom: 58px;
  border-radius: 16px;
  background: #fff;
  color: #513eb2;
  box-shadow: 0 18px 40px rgba(81,62,178,0.08);
}

.cloud-outcomes-table svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cloud-outcomes-table strong {
  max-width: 310px;
  font-size: clamp(28px, 2.2vw, 42px);
  line-height: 0.98;
}

.cloud-outcomes-table p {
  max-width: 340px;
  margin: 14px 0 0;
  color: rgba(76,64,171,0.62);
  font-size: 18px;
  line-height: 1.22;
}

@keyframes cloudCorePulse {
  0%, 100% { transform: scale(1); opacity: 0.75; }
  50% { transform: scale(1.08); opacity: 0.28; }
}

@keyframes cloudImagePulse {
  0%, 100% { transform: translateX(-5%) scale(0.96); }
  50% { transform: translateX(-5%) scale(1.04); }
}

@keyframes cloudCircuitRun {
  0% { transform: translateX(0); opacity: 0; }
  10%, 86% { opacity: 1; }
  100% { transform: translateX(calc(72vw + 520px)); opacity: 0; }
}

@keyframes cloudFlowBgZoom {
  0%, 100% {
    transform: scale(1);
    background-size: 74% auto;
  }
  50% {
    transform: scale(1.035);
    background-size: 77% auto;
  }
}

@keyframes cloudXmlMove {
  0% {
    transform: translateX(0) translateY(-50%) scale(0.88);
    opacity: 0;
    background: #fff;
    color: #513eb2;
  }
  12%, 36% {
    opacity: 1;
    background: #fff;
    color: #513eb2;
  }
  46%, 58% {
    opacity: 1;
    background: #c6fff1;
    color: #513eb2;
    box-shadow: 0 18px 44px rgba(198,255,241,0.48), 0 0 28px rgba(255,255,255,0.62);
  }
  70%, 82% {
    opacity: 1;
    background: #fff;
    color: #513eb2;
  }
  100% {
    transform: translateX(68vw) translateY(-50%) scale(1);
    opacity: 0;
    background: #fff;
    color: #513eb2;
  }
}

@keyframes cloudXmlMoveMobile {
  0% {
    transform: translateX(-50%) translateY(0) scale(0.82);
    opacity: 0;
    background: #fff;
    color: #513eb2;
  }
  12%, 35% {
    opacity: 1;
    background: #fff;
    color: #513eb2;
  }
  47%, 58% {
    opacity: 1;
    background: #b9ffef;
    color: #513eb2;
    box-shadow: 0 14px 34px rgba(185,255,239,0.5), 0 0 24px rgba(255,255,255,0.58);
  }
  72%, 84% {
    opacity: 1;
    background: #fff;
    color: #513eb2;
  }
  100% {
    transform: translateX(-50%) translateY(760px) scale(0.92);
    opacity: 0;
    background: #fff;
    color: #513eb2;
  }
}

@keyframes cloudConsoleFloat {
  0%, 100% { transform: rotateX(9deg) rotateY(-12deg) translateY(0); }
  50% { transform: rotateX(7deg) rotateY(-9deg) translateY(-16px); }
}

@media (max-width: 900px) {
  .cloud-map-band,
  .cloud-console-band,
  .cloud-outcomes-band {
    padding: 76px 20px;
  }

  .cloud-outcomes-band {
    padding: 78px 28px;
  }

  .cloud-outcomes-band::before {
    inset: 24px 12px;
    border-radius: 30px;
  }

  .cloud-map-band::before {
    inset: 24px 12px;
    border-radius: 30px;
  }

  .cloud-map-heading,
  .cloud-console-band {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .cloud-map-heading h2,
  .cloud-console-copy h2,
  .cloud-outcomes-title h2 {
    max-width: 360px;
    margin-inline: auto;
    font-size: clamp(42px, 11vw, 62px);
  }

  .cloud-map-heading p,
  .cloud-console-copy p {
    max-width: 350px;
    margin-inline: auto;
    font-size: 16px;
  }

  .cloud-network {
    grid-template-columns: 1fr;
    gap: 22px;
    min-height: auto;
    margin-top: 48px;
    overflow: hidden;
  }

  .cloud-network-line {
    left: 50%;
    right: auto;
    top: 80px !important;
    bottom: 80px;
    width: 2px;
    height: auto;
    transform: translateX(-50%);
    background: linear-gradient(180deg, transparent, rgba(255,255,255,0.9), transparent);
  }

  .cloud-network-line::after {
    display: none;
  }

  .cloud-network-line.is-bottom {
    display: none;
  }

  .cloud-network-core {
    width: 315px;
    max-width: 86vw;
    order: 2;
    margin-block: -8px;
  }

  .cloud-network-core strong {
    font-size: 40px;
  }

  .cloud-network-node {
    min-height: 190px;
    width: min(100%, 340px);
    margin-inline: auto;
    text-align: center;
  }

  .cloud-network-node.is-erp {
    order: 1;
  }

  .cloud-network-node.is-xml {
    order: 3;
  }

  .cloud-network-node strong {
    font-size: 44px;
  }

  .cloud-xml-stream {
    display: block;
    z-index: 1;
    overflow: hidden;
  }

  .cloud-xml-stream span {
    left: 50%;
    top: -46px;
    padding: 8px 12px;
    font-size: 11px;
    box-shadow: 0 12px 28px rgba(81,62,178,0.16);
    animation: cloudXmlMoveMobile 7s linear infinite;
  }

  .cloud-xml-stream span:nth-child(1) {
    top: -46px;
    animation-delay: -0.4s;
  }

  .cloud-xml-stream span:nth-child(2) {
    top: -46px;
    animation-delay: -2.2s;
  }

  .cloud-xml-stream span:nth-child(3) {
    top: -46px;
    animation-delay: -4s;
  }

  .cloud-xml-stream span:nth-child(4) {
    top: -46px;
    animation-delay: -5.8s;
  }

  .cloud-needs-strip {
    display: grid;
    justify-items: center;
    width: min(100%, 350px);
    margin-top: 34px;
    margin-inline: auto;
  }

  .cloud-needs-strip span {
    width: 100%;
    text-align: center;
  }

  .cloud-console-band {
    gap: 52px;
    min-height: auto;
    padding-block: 96px;
  }

  .cloud-console-band::before {
    opacity: 0.42;
    background-position: 32% center;
    mask-image: linear-gradient(180deg, #000 0%, rgba(0,0,0,0.62) 48%, transparent 100%);
    -webkit-mask-image: linear-gradient(180deg, #000 0%, rgba(0,0,0,0.62) 48%, transparent 100%);
  }

  .cloud-console-band::after {
    background: linear-gradient(180deg, rgba(20,12,60,0.72), rgba(20,12,60,0.96) 58%, #140c3c 100%);
  }

  .cloud-console-shell {
    display: none;
  }

  .cloud-console-window {
    min-height: auto;
    transform: none;
    animation: none;
  }

  .cloud-console-grid {
    grid-template-columns: 1fr;
  }

  .cloud-console-metric,
  .cloud-console-log {
    min-height: 160px;
    text-align: left;
  }

  .cloud-console-steps {
    width: min(100%, 350px);
    margin-inline: auto;
    text-align: left;
  }

  .cloud-outcomes-table {
    grid-template-columns: 1fr;
    width: min(100%, 360px);
    border-left: 1px solid rgba(81,62,178,0.14);
  }

  .cloud-outcomes-table article {
    min-height: 230px;
    text-align: left;
  }

  .cloud-outcomes-table span {
    margin-bottom: 42px;
  }
}
