:root {
  color-scheme: light;
  --font-display: "Onest", "Avenir Next", Arial, sans-serif;
  --font-body: "Onest", "Avenir Next", Arial, sans-serif;
  --ink: #151925;
  --ink-soft: #596174;
  --blue: #2454f5;
  --blue-dark: #173ec7;
  --blue-soft: #e8eeff;
  --blue-mist: #f3f6ff;
  --green: #13845f;
  --green-soft: #e2f5ec;
  --coral: #d95542;
  --coral-soft: #ffe9e5;
  --yellow: #8b6800;
  --yellow-soft: #fff3c9;
  --surface: #ffffff;
  --surface-soft: #f5f7fa;
  --surface-strong: #e9edf3;
  --line: #e1e6ee;
  --night: #171d2a;
  --radius-control: 999px;
  --radius-small: 18px;
  --radius-medium: 28px;
  --radius-large: 40px;
  --radius-band: 48px;
  --shadow-soft: 0 20px 60px rgba(21, 25, 37, 0.09);
  --shadow-float: 0 10px 30px rgba(21, 25, 37, 0.08);
  --container: 1280px;
  --container-header: 1360px;
  --inventory-cycle: 8.8s;
  --wms-cycle: 9.2s;
  --ease-enter: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-state: cubic-bezier(0.2, 0, 0, 1);
}

* {
  box-sizing: border-box;
  letter-spacing: 0;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--surface);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.58;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

button,
input,
select,
textarea {
  color: inherit;
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: inherit;
  text-decoration: none;
}

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

h1,
h2,
h3 {
  font-family: var(--font-display);
}

h1,
h2 {
  line-height: 1.04;
}

h1 {
  margin-bottom: 20px;
  font-size: 64px;
  font-weight: 700;
}

h2 {
  margin-bottom: 20px;
  font-size: 48px;
  font-weight: 700;
}

h3 {
  margin-bottom: 8px;
  font-size: 21px;
  font-weight: 700;
  line-height: 1.25;
}

p {
  margin-bottom: 24px;
  color: var(--ink-soft);
}

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 3000;
  padding: 12px 18px;
  border-radius: var(--radius-control);
  background: var(--night);
  color: #fff;
  transform: translateY(-160%);
  transition: transform 180ms var(--ease-state);
}

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

.container {
  width: min(calc(100% - 64px), var(--container));
  margin-inline: auto;
}

.narrow {
  width: min(calc(100% - 40px), 820px);
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: 76px;
  background: rgba(255, 255, 255, 0.96);
  transition: box-shadow 180ms var(--ease-state), border-color 180ms var(--ease-state);
}

.site-header.is-scrolled {
  border-bottom: 1px solid rgba(225, 230, 238, 0.84);
  box-shadow: 0 10px 30px rgba(21, 25, 37, 0.05);
}

.site-header__inner {
  display: grid;
  grid-template-columns: minmax(160px, 1fr) auto minmax(300px, 1fr);
  align-items: center;
  height: 100%;
  gap: 22px;
}

.container.site-header__inner {
  width: min(calc(100% - 40px), var(--container-header));
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 132px;
  min-height: 44px;
}

.brand img {
  width: 132px;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  justify-self: center;
  gap: 26px;
}

.site-nav a,
.header-login {
  position: relative;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: #4d5567;
  font-size: 15px;
  font-weight: 600;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 5px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue);
  opacity: 0;
  transform: translateX(-50%) scale(0.2);
  transition: opacity 180ms var(--ease-state), transform 180ms var(--ease-state);
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a[aria-current="page"] {
  color: var(--ink);
}

.site-nav a[aria-current="page"]::after {
  opacity: 1;
  transform: translateX(-50%) scale(1);
}

.site-header__actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  justify-self: end;
  gap: 10px;
}

.button {
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: var(--radius-control);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 650;
  line-height: 1;
  text-align: center;
  transition: background-color 180ms var(--ease-state), border-color 180ms var(--ease-state), color 180ms var(--ease-state), box-shadow 180ms var(--ease-state), transform 140ms var(--ease-state);
}

.button:hover {
  transform: translateY(-1px);
}

.button:active {
  transform: translateY(0) scale(0.985);
}

.button-primary {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 9px 24px rgba(36, 84, 245, 0.2);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--blue-dark);
}

.button-secondary {
  border-color: var(--line);
  background: #fff;
  color: var(--ink);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: #cbd3e1;
  background: var(--surface-soft);
}

.button-quiet {
  min-height: 44px;
  padding-inline: 14px;
  background: transparent;
  color: var(--ink);
}

.button-light {
  background: #fff;
  color: var(--blue-dark);
}

.button-light:hover,
.button-light:focus-visible {
  background: var(--blue-mist);
}

.icon-button {
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: var(--surface-soft);
  cursor: pointer;
  display: inline-grid;
  place-items: center;
  transition: background-color 180ms var(--ease-state), transform 140ms var(--ease-state);
}

.icon-button:hover,
.icon-button:focus-visible {
  background: var(--blue-soft);
}

.icon-button:active {
  transform: scale(0.95);
}

.button svg,
.icon-button svg {
  width: 19px;
  height: 19px;
  stroke-width: 2;
}

:focus-visible {
  outline: 3px solid #173ec7;
  outline-offset: 3px;
}

.mobile-menu-button {
  display: none;
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: none;
}

.mobile-menu.is-open {
  display: block;
}

.mobile-menu__backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(21, 25, 37, 0.36);
}

.mobile-menu__sheet {
  position: absolute;
  right: 8px;
  bottom: 8px;
  left: 8px;
  max-height: calc(100dvh - 16px);
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 20px;
  border-radius: 32px;
  background: #fff;
  box-shadow: var(--shadow-soft);
  transform: translateY(18px);
  opacity: 0;
  animation: sheet-in 220ms var(--ease-enter) forwards;
}

.mobile-menu__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.mobile-menu__top strong {
  font-family: var(--font-display);
  font-size: 19px;
}

.mobile-menu nav {
  display: grid;
  gap: 2px;
  margin-bottom: 16px;
}

.mobile-menu nav a {
  min-height: 52px;
  padding: 0 14px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  font-weight: 650;
}

.mobile-menu nav a:hover,
.mobile-menu nav a:focus-visible,
.mobile-menu nav a[aria-current="page"] {
  background: var(--blue-mist);
  color: var(--blue-dark);
}

.mobile-menu__cta {
  width: 100%;
}

@keyframes sheet-in {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero {
  position: relative;
  isolation: isolate;
  padding: 50px 0 0;
  min-height: calc(100svh - 76px);
  overflow: hidden;
  background: #ffffff;
}

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

.hero-bg-shapes {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-bg-shape {
  position: absolute;
  display: block;
  --parallax-x: 0px;
  --parallax-y: 0px;
  transform: translate3d(var(--parallax-x), var(--parallax-y), 0);
  will-change: transform;
  transition: transform 160ms var(--ease-state);
}

.hero-bg-shape--oval {
  left: 50%;
  top: 58%;
  width: min(1180px, 94vw);
  height: 260px;
  border: 1px solid rgba(226, 231, 238, 0.34);
  border-radius: 50%;
  background:
    radial-gradient(ellipse at center, rgba(232, 237, 245, 0.66) 0%, rgba(242, 245, 249, 0.58) 45%, rgba(255, 255, 255, 0) 74%);
  transform: translate3d(calc(-50% + var(--parallax-x)), var(--parallax-y), 0);
}

.hero-bg-shape--line {
  height: 1px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(36, 84, 245, 0), rgba(36, 84, 245, 0.16), rgba(36, 84, 245, 0));
}

.hero-bg-shape--line-one {
  left: 6%;
  top: 68%;
  width: 190px;
  rotate: -10deg;
}

.hero-bg-shape--line-two {
  right: 6%;
  top: 55%;
  width: 150px;
  opacity: 0.58;
  rotate: 14deg;
}

.hero-bg-shape--line-three {
  left: 62%;
  top: 82%;
  width: 210px;
  opacity: 0.38;
  rotate: -6deg;
}

.hero-bg-shape--dash {
  width: 88px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(36, 84, 245, 0.03), rgba(36, 84, 245, 0.18));
}

.hero-bg-shape--dash-one {
  left: 18%;
  top: 78%;
  opacity: 0.7;
  rotate: 9deg;
}

.hero-bg-shape--dash-two {
  right: 20%;
  top: 70%;
  width: 118px;
  opacity: 0.52;
  rotate: -13deg;
}

.hero__copy {
  width: min(100%, 940px);
  margin-inline: auto;
  text-align: center;
}

.hero h1 span {
  display: block;
}

.hero-title span {
  color: var(--ink);
}

.hero-title span:first-child {
  color: var(--blue);
}

.hero__lead {
  max-width: 710px;
  margin: 0 auto 28px;
  color: #4f586b;
  font-size: 20px;
  line-height: 1.5;
}

.hero__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.hero__note {
  margin: 12px 0 0;
  color: #626b7d;
  font-size: 14px;
}

.hero-product {
  position: relative;
  width: min(100%, 1260px);
  margin: 34px auto -2px;
  padding: 0;
  overflow: visible;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.hero-product img {
  width: 100%;
  height: auto;
}

.hero-product img {
  border-radius: 0;
  object-fit: contain;
  object-position: center;
  box-shadow: none;
  animation: product-settle 420ms var(--ease-enter) both, notebook-drift 9s ease-in-out 520ms infinite;
}

@keyframes product-settle {
  from {
    opacity: 0.88;
    transform: translateY(10px);
  }
}

@keyframes notebook-drift {
  0%, 100% {
    transform: translateY(0);
  }

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

@keyframes marketplace-breathe {
  0%, 100% {
    transform: translateY(0);
    box-shadow: 0 12px 28px rgba(21, 25, 37, 0.08);
  }

  50% {
    transform: translateY(-3px);
    box-shadow: 0 16px 34px rgba(21, 25, 37, 0.1);
  }
}

.integration-band {
  padding: 28px 0 0;
}

.integration-band__inner {
  min-height: 108px;
  padding: 20px 28px;
  border-radius: 32px;
  background: var(--surface-soft);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.integration-band__label {
  margin: 0;
  color: #5f6879;
  font-size: 15px;
  white-space: nowrap;
}

.marketplace-logos {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 34px;
}

.marketplace-logo {
  width: 112px;
  height: 54px;
  display: grid;
  place-items: center;
}

.marketplace-logo img {
  width: auto;
  max-width: 104px;
  max-height: 38px;
  filter: saturate(0.82);
}

.section {
  padding: 88px 0;
}

.section--tight {
  padding-top: 0;
}

.section-head {
  max-width: 760px;
  margin-bottom: 42px;
}

.section-head--center {
  margin-inline: auto;
  text-align: center;
}

.section-head p {
  max-width: 640px;
  margin-bottom: 0;
  font-size: 18px;
}

.workflow-band {
  padding: 56px;
  border-radius: var(--radius-band);
  background: var(--night);
  color: #fff;
  corner-shape: squircle;
}

.workflow-band h2 {
  max-width: 760px;
  margin-bottom: 42px;
  color: #fff;
}

.workflow {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.13);
}

.workflow__step {
  min-width: 0;
  padding: 28px 24px 8px 0;
}

.workflow__step + .workflow__step {
  padding-left: 24px;
  border-left: 1px solid rgba(255, 255, 255, 0.13);
}

.workflow__index {
  width: 34px;
  height: 34px;
  margin-bottom: 22px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
}

.workflow__step:nth-child(1) .workflow__index {
  background: #d8e2ff;
  color: #173ec7;
}

.workflow__step:nth-child(2) .workflow__index {
  background: #dff5ea;
  color: #0d6d4e;
}

.workflow__step:nth-child(3) .workflow__index {
  background: #fff0c4;
  color: #745600;
}

.workflow__step:nth-child(4) .workflow__index {
  background: #ffe0dc;
  color: #a83b2b;
}

.workflow__step:nth-child(5) .workflow__index {
  background: #ddd7ff;
  color: #4a31b3;
}

.workflow__step h3 {
  color: #fff;
  font-size: 19px;
}

.workflow__step p {
  margin-bottom: 0;
  color: #b9c0cd;
  font-size: 15px;
}

.showcase {
  width: 100%;
  min-width: 0;
  display: grid;
  gap: 24px;
}

.showcase__toolbar {
  width: 100%;
  min-width: 0;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

.showcase__toolbar h2 {
  margin-bottom: 0;
}

.segmented {
  max-width: 100%;
  padding: 5px;
  border-radius: var(--radius-control);
  background: var(--surface-soft);
  display: inline-flex;
  gap: 4px;
}

.segmented button {
  min-height: 42px;
  padding: 0 17px;
  border: 0;
  border-radius: var(--radius-control);
  background: transparent;
  color: #616a7b;
  cursor: pointer;
  font-size: 14px;
  font-weight: 650;
  transition: background-color 180ms var(--ease-state), color 180ms var(--ease-state), box-shadow 180ms var(--ease-state);
}

.segmented button.is-active,
.segmented button[aria-selected="true"] {
  background: #fff;
  color: var(--ink);
  box-shadow: 0 5px 16px rgba(21, 25, 37, 0.08);
}

.showcase__stage {
  position: relative;
  width: 100%;
  min-width: 0;
  min-height: 570px;
  padding: 26px 26px 0;
  overflow: hidden;
  border-radius: var(--radius-band);
  background: var(--blue-mist);
  corner-shape: squircle;
}

.showcase__stage img {
  width: 100%;
  min-height: 544px;
  border-radius: 28px 28px 0 0;
  object-fit: contain;
  object-position: top left;
  box-shadow: var(--shadow-soft);
  opacity: 1;
  transform: translateY(0);
  transition: opacity 180ms var(--ease-state), transform 220ms var(--ease-enter);
}

.showcase__stage.is-changing img {
  opacity: 0;
  transform: translateY(8px);
}

.stock-sync-panel {
  min-height: 520px;
  padding: 56px;
  border-radius: var(--radius-band);
  background:
    radial-gradient(circle at 76% 18%, rgba(36, 84, 245, 0.36), transparent 28%),
    linear-gradient(135deg, #111827 0%, #17233c 56%, #eef5ff 57%, #f8fbff 100%);
  color: #fff;
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
  align-items: center;
  gap: 46px;
  overflow: hidden;
  corner-shape: squircle;
}

.stock-sync-panel h2,
.stock-sync-panel p {
  color: #fff;
}

.stock-sync-panel p {
  color: #c7d0df;
}

.stock-sync-points {
  margin-top: 26px;
  display: grid;
  gap: 12px;
}

.stock-sync-points span {
  width: fit-content;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius-control);
  background: rgba(255, 255, 255, 0.08);
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
}

.stock-sync-points svg {
  width: 18px;
  height: 18px;
  color: #9db4ff;
}

.stock-sync-animation {
  position: relative;
  min-height: 420px;
  border: 1px solid rgba(182, 197, 232, 0.7);
  border-radius: 38px;
  background:
    linear-gradient(90deg, rgba(36, 84, 245, 0.08) 1px, transparent 1px),
    linear-gradient(180deg, rgba(36, 84, 245, 0.08) 1px, transparent 1px),
    rgba(255, 255, 255, 0.88);
  background-size: 34px 34px;
  box-shadow: 0 24px 54px rgba(21, 25, 37, 0.12);
  overflow: hidden;
}

.stock-sync-animation::before,
.stock-sync-animation::after {
  content: "";
  position: absolute;
  inset: 50% auto auto 50%;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  border: 1px solid rgba(36, 84, 245, 0.1);
  transform: translate(-50%, -50%);
}

.stock-sync-animation::after {
  width: 230px;
  height: 230px;
}

.stock-market,
.stock-hub,
.stock-node {
  position: absolute;
  z-index: 2;
  border: 1px solid rgba(222, 228, 239, 0.9);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 14px 34px rgba(21, 25, 37, 0.08);
}

.stock-market {
  width: 176px;
  min-height: 94px;
  padding: 16px;
  border-radius: 26px;
  display: grid;
  grid-template-columns: 74px 1fr;
  align-items: center;
  gap: 4px 12px;
}

.stock-market img {
  grid-row: 1 / span 2;
  max-width: 68px;
  max-height: 34px;
}

.stock-market strong {
  color: var(--ink);
  font-size: 15px;
}

.stock-market span {
  color: var(--coral);
  font-size: 20px;
  font-weight: 800;
}

.stock-market--ml {
  left: 7%;
  top: 11%;
}

.stock-market--shopee {
  right: 7%;
  bottom: 12%;
  animation-delay: 1.6s;
}

.stock-hub {
  left: 50%;
  top: 50%;
  width: 182px;
  height: 182px;
  border-radius: 46px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 5px;
  transform: translate(-50%, -50%);
}

.stock-hub span {
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.stock-hub strong {
  color: var(--ink);
  font-size: 24px;
}

.stock-hub em {
  color: var(--green);
  font-size: 30px;
  font-style: normal;
  font-weight: 800;
  animation: stockCounter 7.2s var(--ease-state) infinite;
}

.stock-node {
  width: 102px;
  height: 64px;
  border-radius: 22px;
  display: grid;
  place-items: center;
}

.stock-node img {
  width: auto;
  max-width: 72px;
  max-height: 30px;
  filter: saturate(0.85);
}

.stock-node--ml {
  left: 8%;
  bottom: 12%;
}

.stock-node--shopee {
  left: 31%;
  bottom: 8%;
}

.stock-node--amazon {
  right: 30%;
  top: 8%;
}

.stock-node--tiktok {
  right: 8%;
  top: 13%;
}

.stock-pulse {
  position: absolute;
  z-index: 3;
  left: 50%;
  top: 50%;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 10px rgba(36, 84, 245, 0.14);
  opacity: 0;
}

.stock-pulse--ml {
  left: 17%;
  top: 23%;
  animation: stockPulseMl 7.2s var(--ease-enter) infinite;
}

.stock-pulse--shopee {
  left: 78%;
  top: 76%;
  animation: stockPulseShopee 7.2s var(--ease-enter) infinite;
}

.stock-pulse--out {
  animation: stockPulseOut 7.2s var(--ease-enter) infinite;
}

.stock-pulse--out-a { --x: -272px; --y: 112px; animation-delay: 2.75s; }
.stock-pulse--out-b { --x: -92px; --y: 144px; animation-delay: 2.9s; }
.stock-pulse--out-c { --x: 116px; --y: -148px; animation-delay: 3.05s; }
.stock-pulse--out-d { --x: 286px; --y: -118px; animation-delay: 3.2s; }

@keyframes stockPulseMl {
  0%, 9%, 100% { opacity: 0; transform: translate(0, 0) scale(0.72); }
  13%, 28% { opacity: 1; }
  42% { opacity: 1; transform: translate(210px, 112px) scale(1); }
  48% { opacity: 0; transform: translate(230px, 126px) scale(0.7); }
}

@keyframes stockPulseShopee {
  0%, 25%, 100% { opacity: 0; transform: translate(0, 0) scale(0.72); }
  31%, 46% { opacity: 1; }
  60% { opacity: 1; transform: translate(-224px, -100px) scale(1); }
  66% { opacity: 0; transform: translate(-238px, -112px) scale(0.7); }
}

@keyframes stockPulseOut {
  0%, 12%, 100% { opacity: 0; transform: translate(0, 0) scale(0.72); }
  22%, 58% { opacity: 1; }
  74% { opacity: 0; transform: translate(var(--x), var(--y)) scale(0.8); }
}

@keyframes stockCounter {
  0%, 22% { color: var(--green); transform: scale(1); }
  32%, 45% { color: var(--coral); transform: scale(1.08); }
  56%, 100% { color: var(--green); transform: scale(1); }
}

.fiscal-band {
  padding: 56px;
  border-radius: var(--radius-band);
  background: linear-gradient(135deg, #f8fbff 0%, #eef4ff 100%);
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 1.05fr);
  align-items: center;
  gap: 54px;
  overflow: hidden;
  corner-shape: squircle;
}

.fiscal-visual {
  position: relative;
  min-height: 320px;
}

.fiscal-doc {
  position: absolute;
  border: 1px solid rgba(216, 224, 239, 0.95);
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 26px 58px rgba(21, 25, 37, 0.1);
}

.fiscal-doc--front {
  left: 14%;
  top: 18%;
  z-index: 2;
  width: 260px;
  min-height: 210px;
  padding: 30px;
  display: grid;
  align-content: center;
  gap: 10px;
}

.fiscal-doc--front::before,
.fiscal-doc--front::after {
  content: "";
  width: 100%;
  height: 10px;
  border-radius: 999px;
  background: #e7edf8;
}

.fiscal-doc--front::after {
  width: 68%;
}

.fiscal-doc--front span {
  width: fit-content;
  padding: 8px 13px;
  border-radius: var(--radius-control);
  background: var(--blue-soft);
  color: var(--blue);
  font-weight: 800;
}

.fiscal-doc--front strong {
  color: var(--ink);
  font-size: 28px;
}

.fiscal-doc--front em {
  color: var(--ink-soft);
  font-style: normal;
  font-weight: 700;
}

.fiscal-doc--back {
  left: 24%;
  top: 8%;
  width: 250px;
  height: 216px;
  transform: rotate(8deg);
}

.fiscal-chip {
  position: absolute;
  z-index: 3;
  min-width: 66px;
  min-height: 48px;
  padding: 0 15px;
  border-radius: 18px;
  background: var(--blue);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 14px;
  font-weight: 800;
  box-shadow: 0 16px 32px rgba(36, 84, 245, 0.2);
  animation: fiscalFloat 4.4s var(--ease-enter) infinite;
}

.fiscal-chip--one {
  left: 7%;
  top: 9%;
}

.fiscal-chip--two {
  right: 18%;
  top: 26%;
  background: var(--green);
  animation-delay: 0.45s;
}

.fiscal-chip--three {
  right: 25%;
  bottom: 15%;
  background: var(--night);
  animation-delay: 0.9s;
}

.fiscal-tags {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.fiscal-tags span {
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-control);
  background: #fff;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  font-size: 14px;
  font-weight: 800;
}

@keyframes fiscalFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-9px); }
}

.operation-band {
  padding: 56px;
  border-radius: var(--radius-band);
  background: var(--green-soft);
  display: grid;
  grid-template-columns: minmax(300px, 0.8fr) minmax(0, 1.5fr);
  align-items: center;
  gap: 52px;
  corner-shape: squircle;
}

.operation-band__copy h2 {
  max-width: 420px;
}

.operation-band__copy p {
  max-width: 430px;
  margin-bottom: 28px;
  color: #3f6557;
  font-size: 18px;
}

.stock-sync-panel .operation-band__copy p {
  color: #c7d0df;
}

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

.quiet-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #294d41;
  font-weight: 600;
}

.quiet-list svg {
  width: 20px;
  height: 20px;
  color: var(--green);
}

.operation-band__media {
  min-width: 0;
  padding: 18px 18px 0;
  overflow: hidden;
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: var(--shadow-soft);
}

.operation-band__media img {
  width: 100%;
  min-height: 430px;
  border-radius: 22px 22px 0 0;
  object-fit: cover;
  object-position: top left;
}

.channels {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-large);
  background: #fff;
}

.channel-row {
  min-height: 112px;
  padding: 22px 30px;
  display: grid;
  grid-template-columns: 180px 1fr auto;
  align-items: center;
  gap: 28px;
}

.channel-row + .channel-row {
  border-top: 1px solid var(--line);
}

.channel-row__brand {
  height: 48px;
  display: flex;
  align-items: center;
}

.channel-row__brand img {
  width: auto;
  max-width: 130px;
  max-height: 40px;
}

.channel-row p {
  margin: 0;
  font-size: 16px;
}

.channel-row__status {
  min-height: 36px;
  padding: 0 14px;
  border-radius: var(--radius-control);
  background: var(--green-soft);
  color: #0d6d4e;
  display: inline-flex;
  align-items: center;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}

.pricing-section {
  background: var(--surface-soft);
}

.pricing-section .container {
  padding-block: 88px;
}

.pricing-toolbar {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 34px;
}

.pricing-toolbar h2 {
  margin-bottom: 0;
}

.billing-toggle {
  position: relative;
  padding: 5px;
  border-radius: var(--radius-control);
  background: var(--surface-strong);
  display: inline-flex;
  isolation: isolate;
}

.billing-toggle::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: 5px;
  bottom: 5px;
  left: 5px;
  width: calc(50% - 5px);
  border-radius: var(--radius-control);
  background: #fff;
  box-shadow: 0 5px 16px rgba(111, 86, 0, 0.1);
  transform: translateX(0);
  transition: transform 260ms var(--ease-enter);
}

.billing-toggle[data-cycle="annual"]::before {
  transform: translateX(100%);
}

.billing-toggle button {
  position: relative;
  z-index: 1;
  min-width: 88px;
  min-height: 48px;
  padding: 0 18px;
  border: 0;
  border-radius: var(--radius-control);
  background: transparent;
  cursor: pointer;
  color: #596273;
  font-size: 14px;
  font-weight: 650;
}

.billing-toggle button.is-active {
  color: var(--ink);
}

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

.plan {
  min-width: 0;
  padding: 25px 22px 22px;
  border-radius: var(--radius-medium);
  background: #fff;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 30px rgba(21, 25, 37, 0.06);
  corner-shape: squircle;
}

.plan--featured {
  background: var(--blue);
  color: #fff;
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(36, 84, 245, 0.24);
}

.plan-choice-badge {
  width: fit-content;
  min-height: 22px;
  margin-bottom: 12px;
  padding: 2px 9px 2px 3px;
  border-radius: 999px;
  background: #fff;
  color: var(--blue-dark);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  box-shadow: 0 8px 18px rgba(11, 27, 84, 0.12);
}

.plan-choice-badge strong {
  font: inherit;
}

.plan-choice-badge__icon {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  display: inline-grid;
  place-items: center;
  flex: 0 0 18px;
}

.plan-choice-badge__icon svg {
  width: 10px;
  height: 10px;
  stroke-width: 2.4;
}

.plan__marker {
  min-height: 24px;
  margin-bottom: 12px;
  color: var(--blue-dark);
  font-size: 12px;
  font-weight: 700;
}

.plan--featured .plan__marker,
.plan--featured p,
.plan--featured li {
  color: #f4f7ff;
}

.plan h3 {
  font-size: 20px;
}

.plan__price {
  min-height: 70px;
  margin-bottom: 6px;
}

.plan__price strong {
  display: block;
  font-family: var(--font-display);
  font-size: 30px;
  line-height: 1.08;
}

.plan__price span {
  color: #7a7460;
  font-size: 13px;
}

.plan--featured .plan__price span {
  color: #f4f7ff;
}

.plan ul {
  min-height: 210px;
  margin: 18px 0 24px;
  padding: 0;
  list-style: none;
  display: grid;
  align-content: start;
  gap: 9px;
}

.plan li {
  color: #5f6470;
  font-size: 14px;
}

.plan--featured li {
  color: #f4f7ff;
}

.plan .button {
  width: 100%;
  margin-top: auto;
  padding-inline: 14px;
}

.plan--featured .button {
  background: #fff;
  color: var(--blue-dark);
  box-shadow: none;
}

.pricing-more {
  margin-top: 28px;
  text-align: center;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-question {
  width: 100%;
  min-height: 76px;
  padding: 16px 4px;
  border: 0;
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  text-align: left;
}

.faq-question span {
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  border-radius: 50%;
  background: var(--surface-soft);
  display: grid;
  place-items: center;
}

.faq-question svg {
  width: 18px;
  height: 18px;
  transition: transform 180ms var(--ease-state);
}

.faq-question[aria-expanded="true"] svg {
  transform: rotate(45deg);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 220ms var(--ease-state);
}

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

.faq-question[aria-expanded="true"] + .faq-answer {
  grid-template-rows: 1fr;
}

.faq-answer p {
  max-width: 700px;
  padding: 0 4px 24px;
  margin: 0;
}

.site-footer {
  padding: 66px 0 30px;
  border-radius: var(--radius-band) var(--radius-band) 0 0;
  background: var(--night);
  color: #fff;
}

.site-footer__top {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 54px;
  padding-bottom: 50px;
}

.site-footer__brand img {
  width: 176px;
  height: auto;
  object-fit: contain;
  margin-bottom: 20px;
}

.site-footer__brand p {
  max-width: 330px;
  margin: 0;
  color: #adb5c3;
  font-size: 15px;
}

.site-footer h3 {
  margin-bottom: 14px;
  color: #fff;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
}

.site-footer nav {
  display: grid;
  gap: 10px;
}

.site-footer nav a {
  color: #adb5c3;
  font-size: 14px;
}

.site-footer nav a:hover,
.site-footer nav a:focus-visible {
  color: #fff;
}

.site-footer__bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  justify-content: space-between;
  gap: 24px;
  color: #858fa0;
  font-size: 12px;
}

.reveal {
  opacity: 0;
  transform: translate3d(0, 34px, 0);
  transition: opacity 620ms var(--ease-enter), transform 720ms var(--ease-enter);
  will-change: opacity, transform;
}

.reveal-left {
  transform: translate3d(-44px, 0, 0);
}

.reveal-right {
  transform: translate3d(44px, 0, 0);
}

.reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.reveal-sequence > * {
  opacity: 0;
  transform: translate3d(0, 22px, 0);
  transition: opacity 520ms var(--ease-enter), transform 620ms var(--ease-enter);
  transition-delay: calc(var(--i, 0) * 58ms + 90ms);
  will-change: opacity, transform;
}

.reveal.is-visible .reveal-sequence > *,
.is-visible.reveal-sequence > * {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

/* Internal pages */
.page-hero {
  padding: 72px 0 64px;
}

.page-hero__inner {
  max-width: 1000px;
}

.page-hero h1 {
  max-width: 940px;
  font-size: 56px;
}

.page-hero p {
  max-width: 720px;
  font-size: 20px;
}

.page-hero__actions {
  display: flex;
  gap: 12px;
  margin-top: 30px;
}

.page-hero--center .page-hero__inner {
  margin-inline: auto;
  text-align: center;
}

.page-hero--center .page-hero__inner > * {
  margin-inline: auto;
}

.page-hero--center .page-hero__actions {
  justify-content: center;
}

.page-product {
  width: min(calc(100% - 64px), 1280px);
  height: min(54vw, 620px);
  min-height: 460px;
  margin: 0 auto 38px;
  padding: 24px 24px 0;
  overflow: hidden;
  border-radius: var(--radius-band);
  background: var(--blue-mist);
  box-shadow: var(--shadow-soft);
}

.page-product picture {
  display: block;
  width: 100%;
  height: 100%;
}

.page-product img {
  width: 100%;
  height: 100%;
  border-radius: 30px 30px 0 0;
  object-fit: cover;
  object-position: top left;
  box-shadow: 0 14px 38px rgba(21, 25, 37, 0.1);
}

.page-section {
  padding: 82px 0;
}

body[data-page="legal"] {
  background:
    linear-gradient(180deg, #fff 0%, #fff 36%, #f6f8fc 36%, #f6f8fc 100%);
}

.legal-hero {
  padding-bottom: 36px;
}

.legal-kicker {
  display: block;
  margin-bottom: 16px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.legal-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.legal-meta span {
  min-height: 36px;
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-control);
  background: #fff;
  color: #596174;
  font-size: 13px;
  font-weight: 740;
}

.legal-section {
  padding-top: 22px;
}

.legal-layout {
  display: grid;
  grid-template-columns: minmax(220px, 280px) minmax(0, 1fr);
  align-items: start;
  gap: 28px;
}

.legal-toc {
  position: sticky;
  top: 98px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-float);
}

.legal-toc strong {
  display: block;
  margin-bottom: 16px;
  font-size: 18px;
}

.legal-toc nav {
  display: grid;
  gap: 6px;
}

.legal-toc a {
  min-height: 38px;
  padding: 8px 12px;
  border-radius: 14px;
  color: #5c6577;
  font-size: 14px;
  font-weight: 700;
}

.legal-toc a:hover,
.legal-toc a:focus-visible {
  background: var(--blue-mist);
  color: var(--blue);
}

.legal-document {
  padding: 38px;
  border: 1px solid var(--line);
  border-radius: var(--radius-band);
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.legal-summary-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 44px;
}

.legal-summary-grid div {
  min-height: 116px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--surface-soft);
}

.legal-summary-grid span {
  display: block;
  margin-bottom: 10px;
  color: #748096;
  font-size: 12px;
  font-weight: 780;
  text-transform: uppercase;
}

.legal-summary-grid strong {
  display: block;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.34;
}

.legal-document .legal-copy {
  max-width: 920px;
}

.legal-document .legal-copy h2 {
  margin: 42px 0 12px;
  color: var(--ink);
  font-size: 28px;
  line-height: 1.15;
}

.legal-document .legal-copy h2:first-child {
  margin-top: 0;
}

.legal-document .legal-copy p {
  margin: 0 0 14px;
  color: #434b5c;
  font-size: 16px;
  line-height: 1.72;
}

.legal-callout {
  margin-top: 46px;
  padding: 28px;
  border: 1px solid rgba(36, 84, 245, 0.18);
  border-radius: 32px;
  background: var(--blue-mist);
}

.legal-callout strong {
  display: block;
  margin-bottom: 8px;
  font-size: 21px;
}

.legal-callout p {
  max-width: 680px;
}

.legal-callout .button {
  margin-top: 12px;
}

.wms-proof {
  padding: 50px;
  border-radius: var(--radius-band);
  background: var(--night);
  color: #fff;
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  align-items: center;
  gap: 52px;
}

.wms-proof__copy h2 {
  color: #fff;
}

.wms-proof__copy p {
  max-width: 450px;
  margin-bottom: 0;
  color: #b9c0cd;
  font-size: 18px;
}

.wms-proof__screens {
  min-width: 0;
  display: flex;
  align-items: end;
  justify-content: center;
  gap: 18px;
}

.wms-proof__screens img {
  width: min(48%, 310px);
  min-width: 0;
  height: auto;
  max-height: 590px;
  border-radius: 0;
  object-fit: contain;
  object-position: top;
  box-shadow: none;
  filter: drop-shadow(0 22px 48px rgba(0, 0, 0, 0.22));
}

.wms-proof__screens img:only-child {
  width: min(100%, 390px);
}

.wms-proof__caption {
  margin: 14px 0 0;
  color: #aeb6c3;
  font-size: 13px;
  text-align: center;
}

.soft-band {
  padding: 48px;
  border-radius: var(--radius-band);
  background: var(--blue-mist);
  corner-shape: squircle;
}

.media-flow {
  display: grid;
  gap: 84px;
}

.media-row {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.65fr);
  align-items: center;
  gap: 54px;
}

.media-row:nth-child(even) {
  grid-template-columns: minmax(280px, 0.65fr) minmax(0, 1.45fr);
}

.media-row:nth-child(even) .media-row__media {
  order: 2;
}

.media-row__media {
  padding: 18px;
  border: 0;
  overflow: hidden;
  border-radius: var(--radius-large);
  background: var(--blue-mist);
  box-shadow: var(--shadow-soft);
}

.media-row__media img {
  width: 100%;
  border-radius: 24px;
}

.media-row__copy p {
  font-size: 18px;
}

.inline-facts {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.inline-facts li {
  min-height: 54px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 10px;
  color: #4d5567;
}

.inline-facts svg {
  width: 19px;
  color: var(--blue);
}

.compare-table {
  width: 100%;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-large);
  background: #fff;
}

.compare-scroll {
  overflow-x: auto;
  padding-bottom: 8px;
  scrollbar-gutter: stable;
}

.compare-scroll .compare-table {
  min-width: 760px;
}

.page-note {
  margin-top: 20px;
  color: #626b7d;
  font-size: 14px;
}

.feature-strips {
  border-top: 1px solid var(--line);
}

.feature-strip {
  min-height: 118px;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 60px minmax(180px, 0.55fr) minmax(0, 1fr);
  align-items: center;
  gap: 24px;
}

.feature-strip__icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--blue-mist);
  color: var(--blue);
  display: grid;
  place-items: center;
}

.feature-strip__icon svg {
  width: 21px;
  height: 21px;
}

.feature-strip h3,
.feature-strip p {
  margin: 0;
}

.feature-strip p {
  max-width: 720px;
}

.integration-intro {
  padding: 50px;
  border-radius: var(--radius-band);
  background: var(--surface-soft);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: center;
  gap: 24px;
}

.integration-intro img {
  width: auto;
  max-width: 150px;
  max-height: 52px;
  margin-inline: auto;
}

.addon-list {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-large);
}

.addon-row {
  min-height: 76px;
  padding: 18px 26px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 24px;
}

.addon-row + .addon-row {
  border-top: 1px solid var(--line);
}

.addon-row strong {
  font-family: var(--font-display);
}

.addon-row span {
  color: var(--ink-soft);
}

.legal-copy {
  max-width: 780px;
}

.legal-copy h2 {
  margin-top: 58px;
  font-size: 32px;
}

.legal-copy p {
  font-size: 17px;
}

.compare-row {
  min-height: 72px;
  padding: 14px 24px;
  display: grid;
  grid-template-columns: minmax(180px, 1fr) repeat(4, minmax(120px, 0.8fr));
  align-items: center;
  gap: 16px;
}

.compare-row + .compare-row {
  border-top: 1px solid var(--line);
}

.compare-row--head {
  background: var(--surface-soft);
  color: #697184;
  font-size: 13px;
  font-weight: 700;
}

.compare-row strong {
  font-family: var(--font-display);
}

.compare-cell {
  color: #596174;
  font-size: 14px;
}

.compare-cell.is-yes {
  color: var(--green);
  font-weight: 700;
}

.steps {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.step {
  min-height: 132px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 80px minmax(0, 1fr) minmax(200px, 0.55fr);
  align-items: start;
  gap: 24px;
}

.step__number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--blue-soft);
  color: var(--blue-dark);
  display: grid;
  place-items: center;
  font-weight: 700;
}

.step p {
  margin: 0;
}

.step__result {
  padding: 16px 18px;
  border-radius: var(--radius-small);
  background: var(--surface-soft);
  color: #596174;
  font-size: 14px;
}

.company-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-large);
}

.company-fact {
  min-height: 150px;
  padding: 28px;
}

.company-fact:nth-child(n + 4) {
  border-top: 1px solid var(--line);
}

.company-fact:not(:nth-child(3n + 1)) {
  border-left: 1px solid var(--line);
}

.company-fact span {
  display: block;
  margin-bottom: 14px;
  color: #596174;
  font-size: 13px;
  font-weight: 700;
}

.company-fact strong {
  font-family: var(--font-display);
  font-size: 18px;
}

.support-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.7fr) minmax(0, 1.35fr);
  gap: 48px;
  align-items: start;
}

.support-aside {
  position: sticky;
  top: 110px;
}

.support-panel {
  padding: 34px;
  border-radius: var(--radius-large);
  background: var(--blue-mist);
}

.support-panel__intro {
  max-width: 620px;
}

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

.field {
  display: grid;
  gap: 8px;
  color: #444d5e;
  font-size: 14px;
  font-weight: 650;
}

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

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 52px;
  padding: 13px 16px;
  border: 1px solid #7d899c;
  border-radius: 16px;
  background: #fff;
  outline: 0;
  font-size: 16px;
}

.field textarea {
  min-height: 160px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(36, 84, 245, 0.12);
}

.hidden-honeypot {
  position: absolute;
  left: -9999px;
}

.support-error {
  display: none;
  margin-top: 14px;
  padding: 12px 16px;
  border-radius: 14px;
  background: var(--coral-soft);
  color: #9e3325;
  font-size: 14px;
}

.support-error:not(:empty) {
  display: block;
}

.support-chat {
  display: none;
}

.support-panel.is-chatting .support-form-shell {
  display: none;
}

.support-panel.is-chatting .support-chat {
  display: block;
}

.support-chat__log {
  max-height: 420px;
  margin: 22px 0;
  overflow: auto;
  display: grid;
  gap: 12px;
}

.support-chat__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.support-chat__header h2 {
  margin: 0;
  font-size: 28px;
}

.support-status {
  min-height: 34px;
  padding: 0 13px;
  border-radius: var(--radius-control);
  background: var(--green-soft);
  color: #0d6d4e;
  display: inline-flex;
  align-items: center;
  font-size: 13px;
  font-weight: 700;
}

.support-message {
  max-width: 82%;
  padding: 15px 17px;
  border-radius: 20px 20px 20px 6px;
  background: #fff;
}

.support-message.is-customer {
  margin-left: auto;
  border-radius: 20px 20px 6px 20px;
  background: var(--blue);
  color: #fff;
}

.support-message strong {
  display: block;
  margin-bottom: 5px;
  font-size: 12px;
}

.support-message p {
  margin: 0;
  color: inherit;
  font-size: 15px;
}

.support-message-form input {
  min-width: 0;
  min-height: 52px;
  padding: 13px 17px;
  border: 1px solid #d8deea;
  border-radius: var(--radius-control);
  outline: 0;
}

.support-message-form input:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(36, 84, 245, 0.12);
}

.support-message-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}

.lightbox {
  width: min(94vw, 1440px);
  max-height: 92vh;
  padding: 16px;
  border: 0;
  border-radius: var(--radius-large);
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.lightbox::backdrop {
  background: rgba(21, 25, 37, 0.62);
}

.lightbox img {
  width: 100%;
  max-height: calc(92vh - 32px);
  object-fit: contain;
  border-radius: 24px;
}

.lightbox__close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: #fff;
  box-shadow: var(--shadow-float);
}

@media (max-width: 1120px) {
  .site-header__inner {
    grid-template-columns: 150px 1fr auto;
  }

  .site-nav {
    gap: 18px;
  }

  .header-login {
    display: none;
  }

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

  .plan--featured {
    transform: none;
  }

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

  .workflow__step:nth-child(4) {
    padding-left: 0;
    border-left: 0;
  }

  .workflow__step:nth-child(n + 4) {
    margin-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.13);
  }
}

@media (max-width: 900px) {
  h1 {
    font-size: 50px;
  }

  h2 {
    font-size: 40px;
  }

  .container {
    width: min(calc(100% - 40px), var(--container));
  }

  .site-header {
    height: 68px;
  }

  .site-header__inner {
    display: flex;
    justify-content: space-between;
  }

  .site-nav,
  .site-header__actions .button-primary {
    display: none;
  }

  .site-header__actions {
    margin-left: auto;
  }

  .header-login {
    display: inline-flex;
  }

  .mobile-menu-button {
    display: inline-grid;
  }

  .hero {
    min-height: calc(100svh - 68px);
    padding-top: 38px;
  }

  .hero-bg-shape--oval {
    top: 60%;
    width: 960px;
    height: 220px;
  }

  .hero-bg-shape--line-one {
    left: -2%;
    top: 70%;
  }

  .hero-bg-shape--line-two {
    right: -4%;
    top: 58%;
  }

  .hero-bg-shape--line-three {
    left: 54%;
    top: 84%;
  }

  .hero-product {
    height: auto;
  }

  .integration-band__inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .marketplace-logos {
    width: 100%;
    justify-content: space-between;
    gap: 16px;
  }

  .marketplace-logo {
    width: auto;
    flex: 1;
  }

  .workflow-band {
    padding: 42px 34px;
  }

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

  .workflow__step,
  .workflow__step + .workflow__step,
  .workflow__step:nth-child(4) {
    min-height: 94px;
    margin: 0;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.13);
    border-left: 0;
    display: grid;
    grid-template-columns: 44px 1fr;
    column-gap: 14px;
  }

  .workflow__index {
    grid-row: 1 / span 2;
    margin: 0;
  }

  .workflow__step h3,
  .workflow__step p {
    grid-column: 2;
  }

  .showcase__toolbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .segmented {
    width: 100%;
    overflow-x: auto;
  }

  .segmented button {
    flex: 1 0 auto;
  }

  .showcase__stage {
    min-height: 480px;
  }

  .showcase__stage img {
    min-height: 454px;
  }

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

  .operation-band__media img {
    min-height: 360px;
  }

  .channel-row {
    grid-template-columns: 150px 1fr;
  }

  .channel-row__status {
    display: none;
  }

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

  .media-row,
  .media-row:nth-child(even) {
    grid-template-columns: 1fr;
  }

  .media-row:nth-child(even) .media-row__media {
    order: 0;
  }

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

  .company-fact,
  .company-fact:nth-child(n + 4),
  .company-fact:not(:nth-child(3n + 1)) {
    border: 0;
  }

  .company-fact:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }

  .company-fact:nth-child(even) {
    border-left: 1px solid var(--line);
  }

  .support-layout {
    grid-template-columns: 1fr;
  }

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

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

  .support-aside {
    position: static;
  }
}

@media (max-width: 640px) {
  body {
    font-size: 16px;
  }

  h1 {
    font-size: 38px;
    line-height: 1.08;
  }

  h2 {
    font-size: 34px;
    line-height: 1.08;
  }

  h3 {
    font-size: 19px;
  }

  .container {
    width: calc(100% - 32px);
  }

  .site-header {
    height: 64px;
  }

  .brand,
  .brand img {
    width: 112px;
  }

  .header-login {
    min-width: 58px;
    justify-content: center;
    padding-inline: 8px;
  }

  .hero {
    min-height: 780px;
    padding-top: 24px;
  }

  .hero__copy {
    text-align: left;
  }

  .hero h1 {
    margin-bottom: 14px;
  }

  .hero__lead {
    margin: 0 0 22px;
    font-size: 16px;
    line-height: 1.48;
  }

  .hero__actions {
    display: block;
  }

  .hero__actions .button {
    width: 100%;
    min-height: 52px;
  }

  .hero__actions .button-secondary {
    display: none;
  }

  .hero__note {
    margin-top: 10px;
    text-align: center;
  }

  .hero-product {
    height: auto;
    margin-top: 24px;
    padding: 0;
    border-radius: 0;
  }

  .hero-product img {
    border-radius: 0;
    object-position: center;
  }

  .integration-band {
    padding-top: 18px;
  }

  .integration-band__inner {
    min-height: 0;
    padding: 20px;
    gap: 18px;
    border-radius: 24px;
  }

  .integration-band__label {
    white-space: normal;
  }

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

  .marketplace-logo {
    height: 48px;
  }

  .marketplace-logo img {
    max-width: 94px;
    max-height: 34px;
  }

  .section,
  .page-section {
    padding: 64px 0;
  }

  .section-head {
    margin-bottom: 30px;
  }

  .section-head p {
    font-size: 16px;
  }

  .workflow-band,
  .operation-band,
  .soft-band {
    padding: 30px 22px;
    border-radius: 32px;
  }

  .workflow-band h2 {
    margin-bottom: 30px;
  }

  .showcase {
    gap: 18px;
  }

  .showcase__stage {
    min-height: 460px;
    padding: 12px 12px 0;
    border-radius: 32px;
  }

  .showcase__stage img {
    min-width: 780px;
    min-height: 448px;
    border-radius: 22px 22px 0 0;
    object-position: top left;
  }

  .showcase__stage[data-mobile-view="true"] img {
    min-width: 0;
    width: 100%;
    height: auto;
    min-height: 0;
    object-fit: contain;
  }

  .segmented {
    width: 100%;
    padding: 4px;
    scrollbar-width: none;
  }

  .segmented::-webkit-scrollbar {
    display: none;
  }

  .segmented button {
    min-height: 44px;
    padding-inline: 16px;
  }

  .operation-band {
    gap: 30px;
  }

  .operation-band__media {
    padding: 10px 10px 0;
    border-radius: 26px;
  }

  .operation-band__media img {
    min-width: 720px;
    min-height: 380px;
    object-position: top left;
  }

  .channel-row {
    min-height: 0;
    padding: 22px;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .channel-row__brand {
    height: 40px;
  }

  .channel-row p {
    font-size: 15px;
  }

  .pricing-section .container {
    padding-block: 76px;
  }

  .pricing-toolbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .billing-toggle {
    width: 100%;
  }

  .billing-toggle button {
    flex: 1;
  }

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

  .plan {
    padding: 26px 24px;
  }

  .plan ul {
    min-height: 0;
  }

  .site-footer {
    padding-top: 50px;
    border-radius: 32px 32px 0 0;
  }

  .site-footer__top {
    grid-template-columns: 1fr 1fr;
    gap: 34px 22px;
  }

  .site-footer__brand {
    grid-column: 1 / -1;
  }

  .site-footer__bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .page-hero {
    padding: 34px 0 42px;
  }

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

  .page-hero p {
    font-size: 17px;
  }

  .page-hero__actions {
    flex-direction: column;
  }

  .page-hero__actions .button {
    width: 100%;
  }

  .page-product {
    width: calc(100% - 32px);
    height: 460px;
    min-height: 0;
    padding: 12px 12px 0;
    border-radius: 32px;
  }

  .page-product img {
    min-width: 780px;
    border-radius: 22px 22px 0 0;
  }

  .page-product picture img {
    width: 100%;
    height: 100%;
    min-width: 0;
    object-fit: cover;
    object-position: top center;
  }

  .page-product--wide {
    height: 248px;
    padding-bottom: 12px;
  }

  .page-product--wide picture {
    display: grid;
    place-items: center;
  }

  .page-product--wide picture img {
    height: auto;
    max-height: 100%;
    border-radius: 22px;
    object-fit: contain;
  }

  .media-flow {
    gap: 62px;
  }

  .media-row {
    gap: 28px;
  }

  .media-row__media {
    padding: 10px;
    border-radius: 28px;
  }

  .media-row__media img {
    min-width: 720px;
    border-radius: 20px;
  }

  .compare-table {
    border-radius: 28px;
  }

  .compare-row {
    grid-template-columns: minmax(122px, 1fr) repeat(4, minmax(78px, 0.75fr));
    gap: 8px;
    padding: 14px 12px;
  }

  .compare-cell {
    font-size: 12px;
  }

  .step {
    min-height: 0;
    grid-template-columns: 52px 1fr;
    gap: 16px;
  }

  .step__result {
    grid-column: 2;
  }

  .feature-strip {
    min-height: 0;
    grid-template-columns: 48px 1fr;
    gap: 14px;
  }

  .feature-strip__icon {
    grid-row: 1 / span 2;
  }

  .feature-strip p {
    grid-column: 2;
  }

  .integration-intro {
    padding: 30px 22px;
    border-radius: 32px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .integration-intro img {
    max-width: 112px;
    max-height: 42px;
  }

  .addon-row {
    padding-inline: 20px;
  }

  .company-facts {
    grid-template-columns: 1fr;
  }

  .company-fact,
  .company-fact:nth-child(n + 3),
  .company-fact:nth-child(even) {
    border: 0;
  }

  .company-fact + .company-fact {
    border-top: 1px solid var(--line);
  }

  .support-panel {
    order: 1;
    padding: 24px 20px;
    border-radius: 28px;
  }

  .wms-proof {
    padding: 18px 16px;
    border-radius: 32px;
    gap: 0;
  }

  .wms-proof__copy {
    display: none;
  }

  .wms-proof__screens img {
    width: 100%;
    min-width: 0;
    height: auto;
    max-height: none;
    object-fit: contain;
  }

  .wms-proof__screens img + img {
    display: none;
  }

  .support-aside {
    order: 2;
  }

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

  .field--full {
    grid-column: auto;
  }

  .support-message-form {
    grid-template-columns: 1fr;
  }
}

/* 2026-08 mobile/app refinement */
.hero-marketplaces {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin: 4px 0 22px;
}

.hero-marketplaces span {
  width: 66px;
  height: 66px;
  border: 1px solid rgba(210, 217, 231, 0.8);
  border-radius: 24px;
  background: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 12px 28px rgba(21, 25, 37, 0.08);
  animation: marketplace-breathe 8.4s ease-in-out infinite;
}

.hero-marketplaces span:nth-child(2) {
  animation-delay: 0.7s;
}

.hero-marketplaces span:nth-child(3) {
  animation-delay: 1.4s;
}

.hero-marketplaces span:nth-child(4) {
  animation-delay: 2.1s;
}

.hero-marketplaces img {
  width: auto;
  max-width: 46px;
  max-height: 34px;
}

.hero-product {
  width: min(100%, 1240px);
  height: auto;
  background: transparent;
}

.hero-product img {
  object-fit: contain;
  object-position: center;
}

.marketplace-logos--bubbles {
  flex-wrap: wrap;
  gap: 16px;
}

.marketplace-logos--bubbles .marketplace-logo {
  width: 146px;
  height: 72px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: #fff;
  box-shadow: 0 8px 18px rgba(21, 25, 37, 0.05);
}

.marketplace-logo--soon span {
  padding-inline: 16px;
  color: #687184;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
}

.workflow-panel {
  padding: 52px;
  border-radius: var(--radius-band);
  background: var(--night);
  color: #fff;
  overflow: hidden;
}

.workflow-panel .section-head {
  margin-bottom: 34px;
}

.workflow-panel h2 {
  margin: 0;
  color: #fff;
}

.operation-flow {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  align-items: center;
  gap: 10px;
}

.operation-flow article {
  min-height: 138px;
  padding: 22px 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.07);
  display: grid;
  place-items: center;
  gap: 14px;
  text-align: center;
}

.operation-flow article svg {
  width: 28px;
  height: 28px;
  color: #b9c9ff;
}

.operation-flow span {
  display: none;
}

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

.operation-flow--light article {
  border-color: var(--line);
  background: #fff;
  color: var(--ink);
}

.operation-flow--light article svg {
  color: var(--blue);
}

.showcase {
  width: min(100%, 1280px);
  margin-inline: auto;
}

.showcase__stage {
  min-height: 600px;
}

.showcase__stage img {
  height: 100%;
  min-height: 574px;
  object-fit: contain;
  object-position: top left;
}

.wms-motion-band {
  min-height: 430px;
  padding: 56px;
  border-radius: var(--radius-band);
  background: linear-gradient(135deg, #edf3ff 0%, #f4fbf8 100%);
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.15fr);
  align-items: center;
  gap: 42px;
  overflow: hidden;
}

.wms-title {
  display: grid;
  gap: 6px;
}

.wms-title > span {
  color: var(--blue);
  font-size: clamp(56px, 6vw, 92px);
  line-height: 0.9;
}

.wms-title > strong {
  color: var(--ink);
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1;
}

.wms-pack-flow {
  position: relative;
  min-height: 330px;
  border-radius: 38px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.72)),
    radial-gradient(circle at 18% 26%, rgba(36, 84, 245, 0.12), transparent 30%);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.wms-pack-flow::before {
  content: "";
  position: absolute;
  left: 11%;
  right: 11%;
  top: 48%;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(36, 84, 245, 0), rgba(36, 84, 245, 0.24), rgba(36, 84, 245, 0));
}

.wms-pack-shelf {
  position: absolute;
  left: 7%;
  top: 21%;
  width: 156px;
  height: 170px;
  padding: 18px 16px;
  border-radius: 28px;
  background: #172031;
  display: grid;
  gap: 14px;
  box-shadow: 0 20px 42px rgba(21, 25, 37, 0.18);
}

.wms-shelf-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.wms-shelf-row::after {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  height: 2px;
  background: rgba(255, 255, 255, 0.16);
}

.wms-shelf-row:first-child::after {
  top: 83px;
}

.wms-shelf-row:last-child::after {
  bottom: 18px;
}

.wms-product {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.92);
  position: relative;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.12);
}

.wms-product::before,
.wms-product::after {
  content: "";
  position: absolute;
}

.wms-product--shoe::before {
  width: 30px;
  height: 16px;
  border-radius: 5px 13px 8px 5px;
  background: #1e293b;
  transform: rotate(-10deg);
}

.wms-product--phone-static,
.wms-product--phone {
  background: #0f172a;
}

.wms-product--phone-static::before,
.wms-product--phone::before {
  width: 22px;
  height: 34px;
  border-radius: 6px;
  background: linear-gradient(180deg, #1d4ed8, #60a5fa);
}

.wms-product--duck::before {
  width: 30px;
  height: 24px;
  border-radius: 50% 50% 44% 44%;
  background: #facc15;
}

.wms-product--duck::after {
  right: 8px;
  top: 12px;
  border-left: 8px solid #f97316;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
}

.wms-product--bottle::before {
  width: 20px;
  height: 34px;
  border-radius: 8px 8px 10px 10px;
  background: linear-gradient(180deg, #93c5fd, #2563eb);
}

.wms-product--bottle::after {
  top: 4px;
  width: 12px;
  height: 7px;
  border-radius: 4px 4px 1px 1px;
  background: #1d4ed8;
}

.wms-product--phone {
  position: absolute;
  z-index: 4;
  left: 22%;
  top: 37%;
  animation: wmsPhoneMove 6.2s var(--ease-enter) infinite;
}

.wms-card--pick {
  position: absolute;
  left: 36%;
  top: 34%;
  min-width: 126px;
  min-height: 64px;
  padding: 0 16px;
  border-radius: 20px;
  background: #fff;
  color: var(--blue);
  display: grid;
  place-items: center;
  font-size: 13px;
  font-weight: 800;
  box-shadow: 0 16px 36px rgba(21, 25, 37, 0.08);
  opacity: 0;
  animation: wmsPickCard 6.2s var(--ease-enter) infinite;
}

.wms-box-visual {
  position: absolute;
  z-index: 3;
  left: 59%;
  top: 38%;
  width: 96px;
  height: 84px;
  transform-origin: 50% 75%;
  animation: wmsBoxMove 6.2s var(--ease-enter) infinite;
}

.wms-box-body {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 62px;
  border-radius: 14px 14px 18px 18px;
  background: linear-gradient(180deg, #d6a66b, #b98242);
  box-shadow: 0 16px 32px rgba(111, 74, 32, 0.18);
}

.wms-box-flap {
  position: absolute;
  top: 8px;
  width: 52px;
  height: 34px;
  border-radius: 9px;
  background: #e5bb80;
  transform-origin: bottom center;
  animation: wmsFlapClose 6.2s var(--ease-enter) infinite;
}

.wms-box-flap--left {
  left: 0;
  transform: rotate(-43deg);
}

.wms-box-flap--right {
  right: 0;
  transform: rotate(43deg);
}

.wms-box-label {
  position: absolute;
  left: 16px;
  top: 38px;
  z-index: 2;
  width: 38px;
  height: 25px;
  border-radius: 5px;
  background: #fff;
  opacity: 0;
  animation: wmsLabelAppear 6.2s var(--ease-enter) infinite;
}

.wms-box-label::before,
.wms-box-label::after {
  content: "";
  position: absolute;
  left: 7px;
  right: 7px;
  height: 2px;
  border-radius: 999px;
  background: #8ea0bd;
}

.wms-box-label::before {
  top: 8px;
}

.wms-box-label::after {
  top: 15px;
}

.wms-pack-steps {
  position: absolute;
  left: 22%;
  right: 14%;
  bottom: 28px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.wms-pack-steps span {
  color: #7b8496;
  font-size: 13px;
  font-weight: 800;
  text-align: center;
  animation-duration: 6.2s;
  animation-timing-function: var(--ease-state);
  animation-iteration-count: infinite;
}

.wms-pack-steps .is-step-one {
  animation-name: wmsStepOne;
}

.wms-pack-steps .is-step-two {
  animation-name: wmsStepTwo;
}

.wms-pack-steps .is-step-three {
  animation-name: wmsStepThree;
}

@keyframes wmsPhoneMove {
  0%, 12% { opacity: 0; transform: translate(0, 0) scale(0.86); }
  18%, 30% { opacity: 1; transform: translate(68px, 2px) scale(1); }
  42% { opacity: 1; transform: translate(204px, -2px) scale(1.04); }
  57% { opacity: 1; transform: translate(242px, 54px) scale(0.82); }
  66%, 100% { opacity: 0; transform: translate(242px, 74px) scale(0.62); }
}

@keyframes wmsPickCard {
  0%, 15%, 44%, 100% { opacity: 0; transform: translateY(8px) scale(0.96); }
  22%, 36% { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes wmsBoxMove {
  0%, 38% { opacity: 0; transform: translateX(0) scale(0.9); }
  45%, 73% { opacity: 1; transform: translateX(0) scale(1); }
  92% { opacity: 1; transform: translateX(132px) scale(0.96); }
  100% { opacity: 0; transform: translateX(172px) scale(0.9); }
}

@keyframes wmsFlapClose {
  0%, 52% { transform: rotate(var(--open-angle, -43deg)); }
  66%, 100% { transform: rotate(0deg); }
}

.wms-box-flap--left {
  --open-angle: -43deg;
}

.wms-box-flap--right {
  --open-angle: 43deg;
}

@keyframes wmsLabelAppear {
  0%, 66% { opacity: 0; transform: translateY(6px) scale(0.86); }
  76%, 100% { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes wmsStepOne {
  0%, 39%, 100% { color: #7b8496; }
  15%, 38% { color: var(--blue); }
}

@keyframes wmsStepTwo {
  0%, 43%, 73%, 100% { color: #7b8496; }
  48%, 72% { color: var(--blue); }
}

@keyframes wmsStepThree {
  0%, 70%, 100% { color: #7b8496; }
  76%, 94% { color: var(--blue); }
}

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

.channel-card {
  min-height: 174px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: #fff;
  display: grid;
  align-content: space-between;
  gap: 16px;
  box-shadow: 0 10px 28px rgba(21, 25, 37, 0.05);
}

.channel-grid--large .channel-card {
  min-height: 240px;
}

.channel-grid--soon {
  margin-top: 20px;
}

.channel-card__brand {
  height: 64px;
  display: flex;
  align-items: center;
}

.channel-card__brand--text {
  gap: 14px;
}

.channel-card__brand img {
  width: auto;
  max-width: 142px;
  max-height: 48px;
}

.channel-card__brand strong {
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 20px;
  line-height: 1.05;
}

.channel-card__brand svg {
  width: 34px;
  height: 34px;
  padding: 8px;
  border-radius: 14px;
  background: rgba(36, 84, 245, 0.1);
  color: var(--blue);
  box-sizing: border-box;
}

.channel-card span {
  width: fit-content;
  min-height: 34px;
  padding: 0 13px;
  border-radius: var(--radius-control);
  background: var(--green-soft);
  color: #0d6d4e;
  display: inline-flex;
  align-items: center;
  font-size: 13px;
  font-weight: 700;
}

.channel-card p {
  margin: 0;
  font-size: 15px;
}

.channel-card--soon {
  border-color: rgba(218, 226, 241, 0.92);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(247, 249, 252, 0.98) 100%);
  box-shadow: 0 10px 28px rgba(21, 25, 37, 0.035);
}

.channel-card--soon .channel-card__brand img {
  filter: grayscale(1);
  opacity: 0.7;
}

.channel-card--soon .channel-card__brand strong {
  color: #536072;
}

.channel-card--soon span {
  background: #eef2f7;
  color: #64748b;
}

.capability-grid {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

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

.capability-grid--dense {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.capability-grid article,
.app-feature-grid article {
  min-height: 142px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: #fff;
  display: grid;
  align-content: start;
  gap: 12px;
}

.capability-grid svg,
.app-feature-grid svg {
  width: 24px;
  height: 24px;
  color: var(--blue);
}

.capability-grid span,
.app-feature-grid span {
  color: var(--ink-soft);
  font-size: 15px;
}

.capability-grid--dense article {
  min-height: 136px;
  padding: 20px;
  border-radius: 26px;
}

.capability-grid--dense strong {
  font-size: 15px;
}

.capability-grid--dense span {
  font-size: 13px;
  line-height: 1.42;
}

.marketplace-soon {
  margin-top: 20px;
  min-height: 164px;
  padding: 30px;
  border: 1px solid rgba(225, 230, 238, 0.9);
  border-radius: 34px;
  background: #fff;
  display: grid;
  place-items: center;
  gap: 8px;
  text-align: center;
  box-shadow: 0 16px 42px rgba(21, 25, 37, 0.055);
}

.marketplace-soon__stack {
  position: relative;
  width: min(100%, 430px);
  height: 72px;
  margin-bottom: 6px;
}

.marketplace-soon__stack span {
  position: absolute;
  top: 18px;
  left: 50%;
  min-width: 120px;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  background: #fff;
  color: #687184;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
  box-shadow: 0 10px 26px rgba(21, 25, 37, 0.08);
  transform: translateX(-50%);
}

.marketplace-soon__stack span:nth-child(1) { transform: translateX(-170%) rotate(-8deg); }
.marketplace-soon__stack span:nth-child(2) { transform: translateX(-92%) translateY(14px) rotate(5deg); }
.marketplace-soon__stack span:nth-child(3) { z-index: 2; color: var(--blue); transform: translateX(-50%) translateY(-2px); }
.marketplace-soon__stack span:nth-child(4) { transform: translateX(0%) translateY(14px) rotate(-5deg); }
.marketplace-soon__stack span:nth-child(5) { transform: translateX(68%) rotate(8deg); }

.marketplace-soon strong {
  font-size: 22px;
}

.marketplace-soon p {
  margin: 0;
  font-size: 15px;
}

.integration-map {
  padding: 48px;
  border-radius: var(--radius-band);
  background: var(--blue-mist);
  display: grid;
  grid-template-columns: minmax(260px, 0.7fr) minmax(0, 1fr);
  align-items: center;
  gap: 42px;
}

.control-field {
  position: relative;
  min-height: 360px;
  padding: 58px;
  border-radius: var(--radius-band);
  background: radial-gradient(circle at 18% 20%, rgba(36, 84, 245, 0.12), transparent 30%), var(--night);
  color: #fff;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(21, 25, 37, 0.16);
  corner-shape: squircle;
}

.control-field canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.control-field__content {
  position: relative;
  z-index: 1;
  min-height: 244px;
  display: flex;
  align-items: center;
  gap: 34px;
}

.control-field__content img {
  width: 142px;
  height: 142px;
  flex: 0 0 142px;
  object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.2));
}

.control-field h2 {
  max-width: 720px;
  color: #fff;
}

.control-field p {
  max-width: 760px;
  margin: 0;
  color: #c7d0df;
  font-size: 19px;
}

.plan {
  transition: transform 180ms var(--ease-state), box-shadow 180ms var(--ease-state);
}

.plan:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 44px rgba(21, 25, 37, 0.1);
}

.plan--featured:hover {
  transform: translateY(-12px);
}

.plan h3 {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
}

.plan__price {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  column-gap: 9px;
}

.plan__price:has(.plan__cash) {
  column-gap: 6px;
}

.plan__price strong {
  display: inline-block;
}

.plan__price:has(.plan__cash) strong {
  font-size: 28px;
}

.plan__price > span {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0 8px;
}

.plan__price:has(.plan__cash) > span {
  white-space: nowrap;
  font-size: 11px;
}

.plan__installment,
.plan__cash {
  display: inline;
}

.plan__cash {
  flex-basis: 100%;
  margin-top: 4px;
  font-size: 13px;
}

.plan-compare .compare-row {
  grid-template-columns: minmax(190px, 1.15fr) repeat(5, minmax(112px, 0.82fr));
}

.plan-check {
  position: relative;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  overflow: hidden;
  color: transparent;
  display: inline-grid;
  place-items: center;
}

.plan-check::before {
  color: #fff;
  font-size: 14px;
  font-weight: 900;
  line-height: 1;
}

.plan-check.is-yes {
  background: var(--green);
}

.plan-check.is-yes::before {
  content: "✓";
}

.plan-check.is-no {
  background: #e64d42;
}

.plan-check.is-no::before {
  content: "×";
}

.app-hero {
  padding: 76px 0 82px;
  background: linear-gradient(180deg, #ffffff 0%, #f4f7ff 100%);
  overflow: hidden;
}

.app-hero__inner {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(320px, 1fr);
  align-items: center;
  gap: 60px;
}

.app-hero__copy h1 {
  max-width: 620px;
}

.app-title-lockup {
  position: relative;
  display: inline-block;
}

.app-title-icon {
  position: absolute;
  top: -20px;
  right: -8px;
  z-index: 3;
  width: 92px;
  height: 92px;
  object-fit: contain;
  pointer-events: none;
  user-select: none;
  transform: rotate(-13deg);
  transform-origin: 30% 72%;
  filter: drop-shadow(0 20px 34px rgba(21, 25, 37, 0.14));
}

.app-hero__copy h1 strong {
  color: var(--blue);
  font-weight: inherit;
}

.app-hero__copy h1 > span {
  display: block;
}

.app-hero__copy p {
  max-width: 520px;
  font-size: 20px;
}

.phone-stage {
  position: relative;
  min-height: 700px;
  display: grid;
  place-items: center;
}

.iphone-frame {
  position: relative;
  width: min(390px, 84vw);
  height: min(760px, 160vw);
  padding: 18px;
  border: 10px solid #111621;
  border-radius: 58px;
  background: #111621;
  box-shadow: 0 30px 80px rgba(21, 25, 37, 0.22);
  overflow: hidden;
}

.iphone-frame__sensor {
  position: absolute;
  top: 14px;
  left: 50%;
  z-index: 2;
  width: 118px;
  height: 32px;
  border-radius: 999px;
  background: #111621;
  transform: translateX(-50%);
}

.iphone-frame img {
  width: 100%;
  height: 100%;
  border-radius: 40px;
  object-fit: cover;
  object-position: top center;
}

.app-floating-icon {
  position: absolute;
  top: 46px;
  right: 8%;
  z-index: 3;
  width: 156px;
  height: 156px;
  border-radius: 0;
  object-fit: contain;
  box-shadow: none;
  animation: float-icon 4.2s var(--ease-enter) infinite alternate;
}

@keyframes float-icon {
  from { transform: translate3d(0, 0, 0) rotate(-4deg); }
  to { transform: translate3d(0, -18px, 0) rotate(3deg); }
}

.app-device-hero {
  position: relative;
  min-height: 740px;
  display: grid;
  place-items: center;
}

.app-device-hero__media {
  position: relative;
  width: 100%;
  display: grid;
  place-items: center;
}

.app-device-hero__media--triple {
  width: min(100%, 980px);
}

.app-device-hero__badge {
  position: absolute;
  top: -26px;
  left: 50%;
  z-index: 4;
  width: 106px;
  height: 106px;
  object-fit: contain;
  pointer-events: none;
  user-select: none;
  transform: translateX(-50%);
  filter: drop-shadow(0 18px 28px rgba(21, 25, 37, 0.14));
  animation: app-badge-float 4.2s var(--ease-enter) infinite alternate;
}

@keyframes app-badge-float {
  from { transform: translate3d(-50%, 8px, 0) rotate(-3deg); }
  to { transform: translate3d(-50%, -14px, 0) rotate(3deg); }
}

.app-phone-hero {
  width: min(430px, 80vw);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 30px 56px rgba(21, 25, 37, 0.16));
}

.app-phone-hero--triple {
  width: 100%;
  max-height: 690px;
  object-position: center bottom;
}

@media (min-width: 1025px) {
  body[data-page="app"] .app-hero {
    min-height: calc(100vh - 84px);
    padding: 54px 0 50px;
    display: flex;
    align-items: center;
  }

  body[data-page="app"] .app-hero__inner {
    grid-template-columns: minmax(390px, 0.84fr) minmax(560px, 1.16fr);
    align-items: center;
    gap: 10px;
  }

  body[data-page="app"] .app-hero__copy {
    max-width: 700px;
    padding-top: 34px;
    align-self: center;
  }

  body[data-page="app"] .app-hero__copy h1 {
    max-width: 740px;
    margin-bottom: 20px;
    line-height: 0.96;
  }

  body[data-page="app"] .app-title-icon {
    top: 3px;
    right: -54px;
    width: 126px;
    height: 126px;
  }

  body[data-page="app"] .app-hero__copy p {
    max-width: 600px;
    margin-bottom: 0;
  }

  body[data-page="app"] .app-hero__copy .page-hero__actions {
    margin-top: 22px;
  }

  body[data-page="app"] .app-device-hero {
    min-height: 690px;
    margin-right: 0;
    place-items: center;
  }

  body[data-page="app"] .app-device-hero__media {
    place-items: center;
  }

  body[data-page="app"] .app-device-hero__media--triple {
    width: min(58vw, 940px);
    transform: translate(-14px, 74px);
  }

  body[data-page="app"] .app-device-hero__badge {
    top: -118px;
    width: 118px;
    height: 118px;
  }

  body[data-page="app"] .app-phone-hero--triple {
    width: 100%;
    max-height: min(74vh, 700px);
  }
}

@media (max-width: 1024px) {
  body[data-page="app"] .app-hero__copy .page-hero__actions.reveal,
  body[data-page="app"] .app-device-hero.reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

@media (max-width: 520px) {
  body[data-page="app"] .app-title-icon {
    top: -28px;
    right: -42px;
    width: 58px;
    height: 58px;
  }
}

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

body[data-page="app"] .app-feature-grid.reveal-sequence > article {
  transform: translate3d(0, 34px, 0);
}

body[data-page="app"] .app-feature-grid.reveal.is-visible > article,
body[data-page="app"] .app-feature-grid.is-visible.reveal-sequence > article {
  transform: translate3d(0, 0, 0);
}

body[data-page="app"] .app-feature-grid.reveal {
  transform: none;
}

body[data-page="app"] .app-feature-grid.reveal-sequence > article:nth-child(1) {
  --i: 0;
  --feature-delay: 0ms;
}

body[data-page="app"] .app-feature-grid.reveal-sequence > article:nth-child(2) {
  --i: 1;
  --feature-delay: 90ms;
}

body[data-page="app"] .app-feature-grid.reveal-sequence > article:nth-child(3) {
  --i: 2;
  --feature-delay: 180ms;
}

body[data-page="app"] .app-feature-grid.reveal-sequence > article:nth-child(4) {
  --i: 3;
  --feature-delay: 270ms;
}

body[data-page="app"] .app-feature-grid article > svg {
  opacity: 0;
  transform: translate3d(0, 14px, 0);
  transition:
    opacity 480ms var(--ease-enter),
    transform 620ms var(--ease-enter);
  transition-delay: calc(var(--feature-delay, 0ms) + 140ms);
}

body[data-page="app"] .app-feature-grid.reveal.is-visible article > svg {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

body[data-page="app"] .app-feature-grid article strong.word-reveal {
  --word-delay-base: calc(var(--feature-delay, 0ms) + 180ms);
  --word-delay-step: 38ms;
}

body[data-page="app"] .app-feature-grid article span.word-reveal {
  --word-delay-base: calc(var(--feature-delay, 0ms) + 240ms);
  --word-delay-step: 30ms;
}

.app-screens {
  padding: 50px;
  border-radius: var(--radius-band);
  background: var(--night);
  color: #fff;
  display: grid;
  grid-template-columns: minmax(260px, 0.55fr) minmax(0, 1fr);
  gap: 46px;
  align-items: center;
  overflow: hidden;
}

.app-screens h2 {
  color: #fff;
}

.app-screens p {
  color: #c0c7d4;
  font-size: 18px;
}

.app-screens__gallery {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 16px;
}

.app-screens__gallery img {
  width: min(31%, 245px);
  border-radius: 32px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.app-device-section {
  padding: 54px;
  border: 1px solid rgba(225, 230, 238, 0.82);
  border-radius: var(--radius-band);
  background: linear-gradient(135deg, #fff 0%, #f4f7ff 100%);
  display: grid;
  grid-template-columns: minmax(260px, 0.88fr) minmax(300px, 1fr);
  align-items: center;
  gap: 56px;
  overflow: hidden;
  box-shadow: 0 18px 52px rgba(21, 25, 37, 0.06);
  corner-shape: squircle;
}

.app-device-section--image-right {
  grid-template-columns: minmax(300px, 1fr) minmax(260px, 0.88fr);
}

.app-device-visual {
  min-height: 620px;
  display: grid;
  place-items: center;
}

.app-device-visual img {
  width: min(420px, 100%);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 28px 58px rgba(21, 25, 37, 0.15));
}

.app-device-copy h2 {
  max-width: 540px;
}

.app-device-copy p {
  max-width: 500px;
  font-size: 18px;
}

.app-download-modal {
  position: fixed;
  inset: 0;
  z-index: 4200;
  display: grid;
  place-items: center;
  padding: 24px;
}

.app-download-modal[hidden] {
  display: none;
}

.app-download-modal__backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(8, 13, 24, 0.46);
  cursor: pointer;
  animation: appDownloadBackdropIn 180ms var(--ease-state) both;
}

.app-download-modal__sheet {
  position: relative;
  z-index: 1;
  width: min(100%, 430px);
  padding: 28px;
  border: 1px solid rgba(225, 230, 238, 0.92);
  border-radius: 32px;
  background: #fff;
  color: var(--ink);
  display: grid;
  justify-items: center;
  gap: 14px;
  text-align: center;
  box-shadow: 0 28px 86px rgba(12, 18, 31, 0.22);
  animation: appDownloadSheetIn 240ms var(--ease-enter) both;
}

.app-download-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
}

.app-download-modal__icon {
  width: 68px;
  height: 68px;
  object-fit: contain;
}

.app-download-modal h2 {
  max-width: 320px;
  margin: 0;
  font-size: 28px;
  line-height: 1.04;
}

.app-download-modal p {
  max-width: 340px;
  margin: 0;
  color: #59657a;
  font-size: 15px;
  font-weight: 650;
  line-height: 1.45;
}

.app-download-modal__qr {
  width: min(100%, 300px);
  padding: 10px;
  border: 1px solid #e5eaf2;
  border-radius: 26px;
  background: #f8fafc;
  display: grid;
  place-items: center;
}

.app-download-modal__qr img {
  width: min(100%, 280px);
  height: auto;
  border-radius: 18px;
  background: #fff;
}

.app-download-modal .button {
  width: min(100%, 260px);
}

.app-download-modal small {
  max-width: 330px;
  color: #7a8496;
  font-size: 12px;
  font-weight: 680;
  line-height: 1.4;
}

.install-page {
  min-height: 100vh;
  padding: 146px 20px 64px;
  background:
    linear-gradient(180deg, rgba(247, 250, 255, 0.92), rgba(255, 255, 255, 1) 44%),
    #fff;
}

.install-shell {
  width: min(100%, 1080px);
  min-height: min(650px, calc(100vh - 210px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.72fr);
  align-items: center;
  gap: 42px;
}

.install-copy {
  display: grid;
  align-content: center;
  justify-items: start;
  gap: 20px;
}

.install-copy img {
  width: 88px;
  height: 88px;
  object-fit: contain;
  filter: drop-shadow(0 18px 34px rgba(24, 85, 255, 0.18));
}

.install-copy h1 {
  max-width: 620px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(46px, 7vw, 92px);
  line-height: 0.94;
  letter-spacing: 0;
}

.install-copy p {
  max-width: 520px;
  margin: 0;
  color: #59657a;
  font-size: clamp(17px, 2vw, 22px);
  font-weight: 650;
  line-height: 1.44;
}

.install-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.install-copy small {
  max-width: 520px;
  color: #687386;
  font-size: 14px;
  font-weight: 680;
  line-height: 1.45;
}

.install-card {
  padding: 18px;
  border: 1px solid #e2e8f0;
  border-radius: 32px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 24px 80px rgba(15, 23, 42, 0.1);
  display: grid;
  gap: 12px;
}

.install-card article {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 14px;
  padding: 18px;
  border: 1px solid #edf1f7;
  border-radius: 24px;
  background: #f8fafc;
  transition: border-color 180ms var(--ease-state), background 180ms var(--ease-state), box-shadow 180ms var(--ease-state);
}

.install-card article.is-current {
  border-color: rgba(24, 85, 255, 0.32);
  background: #fff;
  box-shadow: 0 16px 36px rgba(24, 85, 255, 0.1);
}

.install-card span {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  background: #e9efff;
  color: var(--blue);
  display: grid;
  place-items: center;
}

.install-card article.is-current span {
  background: var(--blue);
  color: #fff;
}

.install-card svg {
  width: 24px;
  height: 24px;
}

.install-card strong {
  display: block;
  margin: 2px 0 6px;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.1;
}

.install-card p {
  margin: 0;
  color: #687386;
  font-size: 14px;
  font-weight: 650;
  line-height: 1.42;
}

body.app-download-open {
  overflow: hidden;
}

@keyframes appDownloadBackdropIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes appDownloadSheetIn {
  from {
    opacity: 0;
    transform: translate3d(0, 18px, 0) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@media (max-width: 860px) {
  .install-page {
    padding: 112px 18px 48px;
  }

  .install-shell {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .install-copy {
    justify-items: center;
    text-align: center;
  }

  .install-copy img {
    width: 74px;
    height: 74px;
  }

  .install-copy h1 {
    font-size: clamp(42px, 13vw, 64px);
  }

  .install-actions {
    width: 100%;
    justify-content: center;
  }

  .install-actions .button {
    min-width: min(100%, 220px);
  }

  .install-card {
    border-radius: 28px;
    padding: 12px;
  }

  .install-card article {
    grid-template-columns: 48px 1fr;
    padding: 14px;
    text-align: left;
  }

  .install-card span {
    width: 48px;
    height: 48px;
  }
}

.implementation-hero {
  padding: 48px;
  border-radius: var(--radius-band);
  background: var(--blue-mist);
  display: grid;
  grid-template-columns: minmax(260px, 0.62fr) minmax(0, 1fr);
  gap: 40px;
  align-items: center;
}

.implementation-cover {
  padding: 74px 0 36px;
  background: linear-gradient(180deg, #ffffff 0%, #f3f6ff 100%);
  overflow: hidden;
}

.implementation-cover__inner {
  display: grid;
  grid-template-columns: minmax(320px, 0.68fr) minmax(420px, 1fr);
  align-items: center;
  gap: 46px;
}

.implementation-cover__copy h1 {
  max-width: 600px;
}

.implementation-cover__copy p {
  max-width: 560px;
  font-size: 19px;
}

.implementation-cover__inner > img {
  width: min(100%, 760px);
  height: auto;
  justify-self: center;
  object-fit: contain;
  filter: drop-shadow(0 28px 58px rgba(21, 25, 37, 0.16));
}

.page-note--muted {
  margin-top: -12px;
  color: #788196;
  font-size: 14px !important;
}

.implementation-points {
  display: grid;
  gap: 14px;
}

.implementation-points article {
  min-height: 108px;
  padding: 20px;
  border-radius: 26px;
  background: #fff;
  display: grid;
  grid-template-columns: 42px 1fr;
  align-items: center;
  gap: 10px 16px;
  box-shadow: 0 12px 30px rgba(21, 25, 37, 0.06);
}

.implementation-points svg {
  width: 24px;
  height: 24px;
  color: var(--blue);
}

.implementation-points strong {
  align-self: end;
}

.implementation-points span {
  grid-column: 2;
  align-self: start;
  color: var(--ink-soft);
  font-size: 14px;
}

.steps--compact .step {
  grid-template-columns: 80px minmax(0, 1fr) minmax(210px, 0.45fr);
}

.site-footer__brand img {
  width: 176px;
  height: auto;
  object-fit: contain;
}

@media (max-width: 1120px) {
  .stock-sync-panel,
  .fiscal-band {
    grid-template-columns: 1fr;
  }

  .stock-sync-animation {
    min-height: 390px;
  }

  .operation-flow,
  .channel-grid,
  .capability-grid,
  .capability-grid--dense,
  .app-feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .app-hero__inner,
  .app-device-section,
  .app-device-section--image-right,
  .integration-map,
  .implementation-hero,
  .implementation-cover__inner {
    grid-template-columns: 1fr;
  }

  .app-hero__copy {
    text-align: center;
  }

  .app-hero__copy h1,
  .app-hero__copy p,
  .app-hero__copy .page-hero__actions {
    margin-inline: auto;
    justify-content: center;
  }

  body[data-page="app"] .app-device-hero {
    min-height: auto;
  }

  body[data-page="app"] .app-device-hero__media--triple {
    width: min(940px, 100%);
    transform: none;
  }

  body[data-page="app"] .app-device-hero__badge {
    top: -18px;
    width: 96px;
    height: 96px;
  }

  body[data-page="app"] .app-phone-hero--triple {
    width: 100%;
    max-height: 620px;
  }
}

@media (max-width: 900px) {
  .reveal-left,
  .reveal-right {
    transform: translate3d(0, 30px, 0);
  }

  .hero-product {
    width: min(100%, 760px);
    margin-top: 24px;
  }

  .stock-sync-panel,
  .fiscal-band {
    padding: 42px 30px;
  }

  .fiscal-band {
    gap: 28px;
  }

  .fiscal-visual {
    min-height: 280px;
  }

  .fiscal-doc--front {
    left: 8%;
  }

  .fiscal-doc--back {
    left: 20%;
  }

  .showcase__stage {
    min-height: 420px;
  }

  .showcase__stage img {
    min-height: 394px;
  }

  .wms-motion-band,
  .app-screens {
    grid-template-columns: 1fr;
    padding: 38px 26px;
  }

  .wms-pack-flow {
    min-height: 340px;
  }

  .app-screens__gallery img {
    width: min(32%, 210px);
  }

  .app-device-hero {
    min-height: 650px;
  }

  .app-floating-icon {
    top: 34px;
    right: 9%;
    width: 128px;
    height: 128px;
  }

  .app-device-section {
    padding: 38px 24px;
    border-radius: 34px;
    gap: 28px;
  }

  .app-device-visual {
    min-height: 560px;
  }

  .implementation-cover {
    padding-top: 46px;
  }

  .implementation-cover__inner {
    gap: 28px;
  }

  .implementation-cover__inner > img {
    width: min(100%, 620px);
  }

  .control-field {
    padding: 38px 28px;
  }
}

@media (max-width: 640px) {
  .hero {
    min-height: 0;
  }

  .hero h1 {
    font-size: 39px;
  }

  .hero-marketplaces span {
    width: 56px;
    height: 56px;
    border-radius: 20px;
  }

  .hero-marketplaces img {
    max-width: 40px;
    max-height: 28px;
  }

  .hero-product {
    width: min(100%, 520px);
    height: auto;
    padding: 0;
    border-radius: 0;
  }

  .hero-product img {
    border-radius: 0;
    object-fit: contain;
    object-position: center;
  }

  .integration-band__inner {
    padding: 22px;
  }

  .marketplace-logos--bubbles .marketplace-logo {
    width: calc(50% - 8px);
    flex: 0 0 calc(50% - 8px);
  }

  .workflow-panel {
    padding: 32px 22px;
    border-radius: 32px;
  }

  .stock-sync-panel,
  .fiscal-band {
    padding: 30px 20px;
    border-radius: 32px;
    gap: 28px;
  }

  .stock-sync-animation {
    min-height: 500px;
    border-radius: 28px;
  }

  .stock-market {
    width: 128px;
    min-height: 86px;
    padding: 14px;
    grid-template-columns: 1fr;
    gap: 3px;
  }

  .stock-market img {
    grid-row: auto;
    max-width: 74px;
  }

  .stock-market strong {
    font-size: 13px;
  }

  .stock-market span {
    font-size: 18px;
  }

  .stock-market--ml {
    left: 7%;
    top: 7%;
  }

  .stock-market--shopee {
    right: 7%;
    bottom: 8%;
  }

  .stock-hub {
    width: 142px;
    height: 142px;
    border-radius: 34px;
  }

  .stock-hub strong {
    font-size: 20px;
  }

  .stock-hub em {
    font-size: 24px;
  }

  .stock-node {
    width: 74px;
    height: 52px;
    border-radius: 18px;
  }

  .stock-node img {
    max-width: 54px;
    max-height: 24px;
  }

  .stock-node--ml {
    left: 8%;
    bottom: 28%;
  }

  .stock-node--shopee {
    left: 9%;
    bottom: 13%;
  }

  .stock-node--amazon {
    right: 8%;
    top: 23%;
  }

  .stock-node--tiktok {
    right: 8%;
    top: 39%;
  }

  .fiscal-visual {
    min-height: 260px;
  }

  .fiscal-doc--front {
    left: 3%;
    top: 18%;
    width: 224px;
    min-height: 184px;
    padding: 24px;
  }

  .fiscal-doc--front strong {
    font-size: 24px;
  }

  .fiscal-doc--back {
    left: 18%;
    width: 210px;
    height: 190px;
  }

  .fiscal-chip--two {
    right: 4%;
  }

  .fiscal-chip--three {
    right: 10%;
  }

  .operation-flow,
  .channel-grid,
  .capability-grid,
  .capability-grid--wide,
  .capability-grid--dense,
  .app-feature-grid {
    grid-template-columns: 1fr;
  }

  .operation-flow article {
    min-height: 96px;
    grid-auto-flow: column;
    justify-content: start;
    padding-inline: 22px;
  }

  .wms-motion-band {
    padding: 30px 20px;
    border-radius: 32px;
  }

  .wms-title > span {
    font-size: 58px;
  }

  .wms-title > strong {
    font-size: 34px;
  }

  .wms-pack-flow {
    min-height: 360px;
    border-radius: 28px;
  }

  .wms-pack-shelf {
    left: 6%;
    top: 20%;
    width: 118px;
    height: 146px;
    padding: 15px 13px;
  }

  .wms-shelf-row {
    gap: 8px;
  }

  .wms-product {
    width: 36px;
    height: 36px;
    border-radius: 12px;
  }

  .wms-product--phone-static::before,
  .wms-product--phone::before {
    width: 17px;
    height: 27px;
    border-radius: 5px;
  }

  .wms-product--phone {
    left: 24%;
    top: 38%;
  }

  .wms-card--pick {
    left: 35%;
    top: 31%;
    min-width: 98px;
    min-height: 54px;
    font-size: 12px;
  }

  .wms-box-visual {
    left: 62%;
    top: 39%;
    width: 74px;
    height: 68px;
  }

  .wms-box-body {
    height: 50px;
  }

  .wms-box-flap {
    width: 40px;
    height: 28px;
  }

  .wms-pack-steps {
    left: 5%;
    right: 5%;
    bottom: 24px;
    gap: 4px;
  }

  .wms-pack-steps span {
    font-size: 11px;
  }

  @keyframes wmsPhoneMove {
    0%, 12% { opacity: 0; transform: translate(0, 0) scale(0.86); }
    18%, 30% { opacity: 1; transform: translate(42px, 2px) scale(1); }
    42% { opacity: 1; transform: translate(122px, -2px) scale(1.04); }
    57% { opacity: 1; transform: translate(150px, 45px) scale(0.82); }
    66%, 100% { opacity: 0; transform: translate(150px, 64px) scale(0.62); }
  }

  @keyframes wmsBoxMove {
    0%, 38% { opacity: 0; transform: translateX(0) scale(0.9); }
    45%, 73% { opacity: 1; transform: translateX(0) scale(1); }
    92% { opacity: 1; transform: translateX(74px) scale(0.96); }
    100% { opacity: 0; transform: translateX(96px) scale(0.9); }
  }

  .showcase__stage {
    min-height: 300px;
    padding: 12px 12px 0;
    border-radius: 30px;
  }

  .showcase__stage img {
    min-height: 286px;
    border-radius: 22px 22px 0 0;
  }

  .app-hero {
    padding: 42px 0 58px;
  }

  .app-hero__inner {
    gap: 28px;
  }

  .app-device-hero {
    min-height: 570px;
  }

  .iphone-frame {
    width: min(340px, 88vw);
    height: min(660px, 164vw);
    border-radius: 48px;
  }

  .iphone-frame img {
    border-radius: 32px;
  }

  .app-floating-icon {
    top: 16px;
    right: 4%;
    width: 98px;
    height: 98px;
  }

  .app-phone-hero {
    width: min(350px, 86vw);
  }

  body[data-page="app"] .app-device-hero__media--triple {
    width: min(760px, 112vw);
  }

  body[data-page="app"] .app-device-hero__badge {
    top: -12px;
    width: 70px;
    height: 70px;
  }

  body[data-page="app"] .app-phone-hero--triple {
    width: 100%;
    max-height: 470px;
  }

  .app-screens {
    padding: 34px 18px;
    border-radius: 32px;
  }

  .app-screens__gallery {
    overflow-x: auto;
    justify-content: flex-start;
    padding-bottom: 8px;
  }

  .app-screens__gallery img {
    width: 220px;
    flex: 0 0 220px;
  }

  .app-device-visual {
    min-height: 500px;
  }

  .app-device-visual img {
    width: min(330px, 92vw);
  }

  .implementation-hero,
  .integration-map {
    padding: 28px 20px;
    border-radius: 32px;
  }

  .control-field {
    min-height: 390px;
    padding: 28px 20px;
    border-radius: 32px;
  }

  .control-field__content {
    min-height: 300px;
    display: grid;
    align-content: center;
    text-align: center;
  }

  .control-field__content img {
    width: 112px;
    height: 112px;
    justify-self: center;
  }

  .marketplace-soon__stack {
    width: min(100%, 310px);
  }

  .marketplace-soon__stack span {
    min-width: 96px;
    font-size: 11px;
  }

  .plan-compare .compare-row {
    grid-template-columns: minmax(142px, 1fr) repeat(5, minmax(84px, 0.7fr));
  }

  .steps--compact .step {
    grid-template-columns: 52px 1fr;
  }
}

/* Home refinement pass */
.container.site-header__inner {
  width: min(calc(100% - 42px), 1460px);
}

.site-header__inner {
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 22px;
}

.brand,
.site-header__actions {
  position: relative;
  z-index: 2;
}

.site-header__actions {
  margin-left: auto;
}

.site-nav {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 1;
  transform: translate(-50%, -50%);
}

.stock-sync-animation.inventory-sync-stage {
  min-height: 430px;
  border-color: rgba(196, 210, 242, 0.84);
  border-radius: 42px;
  background:
    radial-gradient(circle at 52% 47%, rgba(36, 84, 245, 0.13), transparent 33%),
    radial-gradient(circle at 12% 13%, rgba(36, 84, 245, 0.12), transparent 27%),
    radial-gradient(circle at 87% 78%, rgba(127, 180, 255, 0.13), transparent 26%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(241, 247, 255, 0.9));
  background-size: auto;
}

.stock-sync-animation.inventory-sync-stage::before,
.stock-sync-animation.inventory-sync-stage::after {
  inset: 50% auto auto 50%;
  border-color: rgba(36, 84, 245, 0.12);
}

.inventory-connector {
  position: absolute;
  z-index: 1;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(36, 84, 245, 0), rgba(36, 84, 245, 0.34), rgba(36, 84, 245, 0));
  transform-origin: left center;
}

.inventory-connector--ml {
  left: 21%;
  top: 30%;
  width: 30%;
  transform: rotate(21deg);
}

.inventory-connector--shopee {
  right: 20%;
  bottom: 30%;
  width: 31%;
  transform: rotate(202deg);
}

.inventory-connector--amazon {
  left: 50%;
  top: 42%;
  width: 31%;
  transform: rotate(-25deg);
}

.inventory-connector--tiktok {
  left: 50%;
  top: 60%;
  width: 31%;
  transform: rotate(25deg);
}

.inventory-sale,
.inventory-hub,
.inventory-channel {
  position: absolute;
  z-index: 3;
  border: 1px solid rgba(222, 228, 239, 0.92);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 16px 38px rgba(21, 25, 37, 0.08);
  backdrop-filter: blur(12px);
}

.inventory-sale {
  width: 168px;
  min-height: 86px;
  padding: 14px;
  border-radius: 26px;
  display: grid;
  grid-template-columns: 58px 1fr;
  align-items: center;
  gap: 2px 11px;
  animation: inventorySaleCard var(--inventory-cycle) var(--ease-enter) infinite;
}

.inventory-sale img {
  grid-row: 1 / span 2;
  max-width: 58px;
  max-height: 31px;
}

.inventory-sale strong {
  color: var(--ink);
  font-size: 13px;
  line-height: 1.1;
}

.inventory-sale span {
  color: var(--coral);
  font-size: 22px;
  font-weight: 850;
  line-height: 1;
}

.inventory-sale--ml {
  left: 6%;
  top: 12%;
}

.inventory-sale--shopee {
  right: 6%;
  bottom: 12%;
  animation-delay: 2.1s;
}

.inventory-hub {
  left: 50%;
  top: 50%;
  width: 176px;
  height: 176px;
  border-radius: 46px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 5px;
  transform: translate(-50%, -50%);
}

.inventory-hub::before {
  content: "";
  position: absolute;
  inset: -12px;
  z-index: -1;
  border: 1px solid rgba(36, 84, 245, 0.14);
  border-radius: 58px;
  animation: inventoryHubPulse 3.6s var(--ease-enter) infinite;
}

.inventory-hub img {
  width: 54px;
  height: 54px;
}

.inventory-hub strong {
  color: var(--ink);
  font-size: 22px;
  line-height: 1;
}

.inventory-hub span {
  color: var(--blue);
  font-size: 15px;
  font-weight: 850;
}

.inventory-channel {
  width: 128px;
  min-height: 92px;
  padding: 12px 12px 10px;
  border-radius: 24px;
  display: grid;
  place-items: center;
  gap: 2px;
}

.inventory-channel img {
  max-width: 58px;
  max-height: 24px;
}

.inventory-channel strong {
  color: var(--ink);
  font-size: 12px;
  line-height: 1.08;
  text-align: center;
}

.inventory-channel b {
  position: relative;
  min-width: 42px;
  min-height: 24px;
  color: var(--blue);
  font-size: 20px;
  line-height: 1;
}

.inventory-channel b span {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  animation: inventoryStockBefore var(--inventory-cycle) var(--ease-enter) infinite;
}

.inventory-channel b span + span {
  opacity: 0;
  animation-name: inventoryStockAfter;
}

.inventory-channel small {
  color: var(--green);
  font-size: 11px;
  font-weight: 850;
  opacity: 0;
  animation: inventoryUpdated var(--inventory-cycle) var(--ease-enter) infinite;
}

.inventory-channel--ml {
  left: 8%;
  bottom: 18%;
}

.inventory-channel--shopee {
  left: 29%;
  bottom: 7%;
}

.inventory-channel--amazon {
  right: 29%;
  top: 8%;
}

.inventory-channel--tiktok {
  right: 8%;
  top: 22%;
}

.inventory-pulse {
  position: absolute;
  z-index: 2;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 8px rgba(36, 84, 245, 0.1);
  opacity: 0;
}

.inventory-pulse--in-a {
  left: 22%;
  top: 32%;
  animation: inventoryPulseInA var(--inventory-cycle) var(--ease-enter) infinite;
}

.inventory-pulse--in-b {
  right: 22%;
  bottom: 32%;
  animation: inventoryPulseInB var(--inventory-cycle) var(--ease-enter) infinite;
}

.inventory-pulse--out-a {
  left: 50%;
  top: 50%;
  animation: inventoryPulseOutA var(--inventory-cycle) var(--ease-enter) infinite;
}

.inventory-pulse--out-b {
  left: 50%;
  top: 50%;
  animation: inventoryPulseOutB var(--inventory-cycle) var(--ease-enter) infinite;
}

.inventory-pulse--out-c {
  left: 50%;
  top: 50%;
  animation: inventoryPulseOutC var(--inventory-cycle) var(--ease-enter) infinite;
}

.inventory-pulse--out-d {
  left: 50%;
  top: 50%;
  animation: inventoryPulseOutD var(--inventory-cycle) var(--ease-enter) infinite;
}

.fiscal-flow-visual {
  min-height: 360px;
  display: grid;
  place-items: center;
}

.fiscal-flow-visual::before {
  content: "";
  position: absolute;
  inset: 24px 8%;
  border: 1px solid rgba(36, 84, 245, 0.08);
  border-radius: 42px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.18));
}

.fiscal-order-flow {
  position: relative;
  z-index: 3;
  width: min(100%, 370px);
  min-height: 214px;
  padding: 26px;
  border: 1px solid rgba(214, 224, 243, 0.95);
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 24px 56px rgba(21, 25, 37, 0.1);
  animation: fiscalOrderCycle 18s var(--ease-enter) infinite;
}

.fiscal-flow-label {
  width: fit-content;
  min-height: 34px;
  padding: 0 12px;
  border-radius: var(--radius-control);
  background: var(--blue-soft);
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  font-size: 13px;
  font-weight: 850;
}

.fiscal-order-flow strong {
  margin-top: 17px;
  color: var(--ink);
  display: block;
  font-size: 27px;
  line-height: 1.08;
}

.fiscal-status-rotator {
  position: relative;
  margin-top: 26px;
  min-height: 40px;
}

.fiscal-status {
  position: absolute;
  inset: 0 auto auto 0;
  min-height: 38px;
  padding: 0 13px;
  border-radius: var(--radius-control);
  background: #f3f6ff;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 14px;
  font-weight: 800;
  opacity: 0;
  transform: translate3d(0, 10px, 0);
  animation: fiscalStatusCycle 18s var(--ease-enter) infinite;
  animation-delay: calc(var(--step) * 3s);
}

.fiscal-status i {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  flex: 0 0 auto;
}

.fiscal-status--loading i {
  border: 2px solid rgba(36, 84, 245, 0.16);
  border-top-color: var(--blue);
  animation: fiscalSpin 800ms linear infinite;
}

.fiscal-status--done {
  color: var(--green);
  background: var(--green-soft);
}

.fiscal-status--done i {
  background: var(--green);
  position: relative;
}

.fiscal-status--done i::before {
  content: "";
  position: absolute;
  left: 5px;
  top: 4px;
  width: 6px;
  height: 9px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.fiscal-flow-lines {
  margin-top: 24px;
  display: grid;
  gap: 9px;
}

.fiscal-flow-lines span {
  height: 8px;
  border-radius: 999px;
  background: #e8edf7;
  animation: fiscalLineFill 18s var(--ease-enter) infinite;
}

.fiscal-flow-lines span:nth-child(2) {
  width: 78%;
  animation-delay: 120ms;
}

.fiscal-flow-lines span:nth-child(3) {
  width: 54%;
  animation-delay: 220ms;
}

.fiscal-next-order {
  position: absolute;
  z-index: 2;
  left: 50%;
  bottom: 30px;
  width: min(80%, 308px);
  min-height: 62px;
  border: 1px solid rgba(214, 224, 243, 0.78);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.58);
  color: #7b8496;
  display: grid;
  place-items: center;
  font-size: 13px;
  font-weight: 850;
  transform: translateX(-50%);
}

.fiscal-flow-visual .fiscal-chip--one {
  left: 8%;
  top: 10%;
}

.fiscal-flow-visual .fiscal-chip--two {
  right: 9%;
  top: 52%;
}

.fiscal-flow-visual .fiscal-chip--three {
  right: 17%;
  bottom: 11%;
}

.wms-pack-flow {
  min-height: 360px;
  background:
    radial-gradient(circle at 18% 20%, rgba(36, 84, 245, 0.14), transparent 28%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(241, 246, 255, 0.82));
}

.wms-pack-flow::before {
  left: 17%;
  right: 11%;
  top: 50%;
  background: linear-gradient(90deg, rgba(36, 84, 245, 0), rgba(36, 84, 245, 0.2), rgba(36, 84, 245, 0));
}

.wms-illustration {
  position: absolute;
  inset: 16px 22px 60px;
}

.wms-illustration-svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.flow-lane {
  fill: none;
  stroke: rgba(36, 84, 245, 0.18);
  stroke-width: 4;
  stroke-linecap: round;
  stroke-dasharray: 7 11;
}

.flow-rack-floor {
  fill: rgba(15, 23, 42, 0.08);
}

.flow-rack-post,
.flow-rack-shelf {
  fill: url(#homeWmsRack);
}

.flow-rack-highlight {
  fill: none;
  stroke: rgba(255, 255, 255, 0.18);
  stroke-width: 2;
  stroke-linecap: round;
}

.flow-stock-phone rect,
.flow-stock-bottle path,
.flow-stock-box rect {
  fill: rgba(255, 255, 255, 0.94);
  stroke: rgba(36, 84, 245, 0.24);
  stroke-width: 2;
}

.flow-stock-phone circle,
.flow-stock-box path {
  fill: none;
  stroke: rgba(36, 84, 245, 0.34);
  stroke-width: 2;
}

.flow-product-shadow {
  fill: rgba(21, 25, 37, 0.12);
}

.flow-product-body {
  fill: url(#homeWmsProduct);
}

.flow-product-screen {
  fill: #f7fbff;
}

.flow-product-camera,
.flow-product-home {
  fill: rgba(15, 23, 42, 0.52);
}

.flow-product-glare {
  fill: none;
  stroke: rgba(36, 84, 245, 0.22);
  stroke-width: 4;
  stroke-linecap: round;
}

.flow-parcel-top {
  fill: #e9f1ff;
}

.flow-parcel-side {
  fill: #d7e6ff;
}

.flow-parcel-front {
  fill: #ffffff;
  stroke: rgba(36, 84, 245, 0.28);
  stroke-width: 1.6;
}

.flow-parcel-top,
.flow-parcel-side {
  stroke: rgba(36, 84, 245, 0.28);
  stroke-width: 1.6;
}

.flow-parcel-lines {
  fill: none;
  stroke: rgba(36, 84, 245, 0.42);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.flow-pick-station {
  opacity: 0;
  animation: flowPickStation var(--wms-cycle) var(--ease-enter) infinite;
}

.flow-pick-station rect {
  fill: rgba(255, 255, 255, 0.92);
  stroke: rgba(36, 84, 245, 0.2);
  stroke-width: 2;
}

.flow-pick-station path {
  fill: none;
  stroke: rgba(36, 84, 245, 0.3);
  stroke-width: 4;
  stroke-linecap: round;
}

.flow-shelf-picked-product {
  opacity: 0;
  animation: flowShelfProduct var(--wms-cycle) var(--ease-enter) infinite;
}

.flow-moving-product {
  transform-box: fill-box;
  transform-origin: center;
  animation: flowProductMove var(--wms-cycle) var(--ease-enter) infinite;
}

.flow-box-back,
.flow-box-front {
  transform-box: fill-box;
  transform-origin: center;
  animation: flowBoxTravel var(--wms-cycle) var(--ease-enter) infinite;
}

.flow-box-back {
  transform: translate(420px, 98px);
}

.flow-box-front {
  transform: translate(420px, 98px);
}

.flow-box-body {
  fill: rgba(201, 145, 80, 0.9);
}

.flow-box-edge,
.flow-box-tape {
  fill: none;
  stroke: rgba(121, 76, 33, 0.5);
  stroke-width: 2.4;
  stroke-linecap: round;
}

.flow-box-left-flap,
.flow-box-right-flap {
  fill: rgba(223, 178, 119, 0.95);
  transform-box: fill-box;
  transform-origin: bottom center;
  animation: flowFlapClose var(--wms-cycle) var(--ease-enter) infinite;
}

.flow-box-left-flap {
  --flap-closed: rotate(24deg) translate(16px, 16px);
}

.flow-box-right-flap {
  --flap-closed: rotate(-24deg) translate(-16px, 16px);
}

.flow-box-label {
  opacity: 0;
  animation: flowLabelAppear var(--wms-cycle) var(--ease-enter) infinite;
}

.flow-box-label rect {
  fill: rgba(255, 255, 255, 0.96);
}

.flow-box-label path {
  fill: none;
  stroke: #8190aa;
  stroke-width: 2;
  stroke-linecap: round;
}

.wms-pack-steps {
  left: 29%;
  right: 7%;
  bottom: 26px;
}

.wms-pack-steps span {
  animation-duration: var(--wms-cycle);
}

.channel-grid {
  gap: 22px;
}

.channel-card {
  min-height: 138px;
  padding: 22px;
  gap: 18px;
}

.channel-card__brand {
  height: auto;
  gap: 14px;
}

.channel-card__brand strong {
  color: var(--ink);
  font-size: 16px;
  line-height: 1.1;
}

.channel-card__brand img {
  max-width: 86px;
  max-height: 38px;
}

.capability-divider {
  margin-top: 28px;
  padding-top: 26px;
  border-top: 1px solid rgba(225, 230, 238, 0.86);
}

.capability-divider span {
  width: fit-content;
  min-height: 36px;
  padding: 0 14px;
  border: 1px solid rgba(225, 230, 238, 0.95);
  border-radius: var(--radius-control);
  background: #fff;
  color: #697286;
  display: inline-flex;
  align-items: center;
  font-size: 13px;
  font-weight: 850;
}

.reveal {
  transition-duration: 920ms, 1040ms;
}

.reveal-sequence > * {
  transition-duration: 780ms, 920ms;
  transition-delay: calc(var(--i, 0) * 78ms + 90ms);
}

@keyframes inventorySaleCard {
  0%, 11%, 100% { opacity: 0.38; transform: translate3d(0, 0, 0) scale(0.96); }
  16%, 45% { opacity: 1; transform: translate3d(0, -4px, 0) scale(1); }
  53%, 94% { opacity: 0.58; transform: translate3d(0, 0, 0) scale(0.98); }
}

@keyframes inventoryHubPulse {
  0%, 100% { opacity: 0.5; transform: scale(0.96); }
  48% { opacity: 1; transform: scale(1.04); }
}

@keyframes inventoryStockBefore {
  0%, 50% { opacity: 1; transform: translateY(0); }
  58%, 100% { opacity: 0; transform: translateY(-8px); }
}

@keyframes inventoryStockAfter {
  0%, 52% { opacity: 0; transform: translateY(8px); }
  62%, 100% { opacity: 1; transform: translateY(0); }
}

@keyframes inventoryUpdated {
  0%, 60% { opacity: 0; transform: translateY(5px); }
  67%, 100% { opacity: 1; transform: translateY(0); }
}

@keyframes inventoryPulseInA {
  0%, 12%, 100% { opacity: 0; transform: translate3d(0, 0, 0) scale(0.8); }
  18% { opacity: 1; transform: translate3d(72px, 48px, 0) scale(1); }
  30% { opacity: 1; transform: translate3d(168px, 96px, 0) scale(1); }
  40% { opacity: 0; transform: translate3d(232px, 134px, 0) scale(0.72); }
}

@keyframes inventoryPulseInB {
  0%, 24%, 100% { opacity: 0; transform: translate3d(0, 0, 0) scale(0.8); }
  31% { opacity: 1; transform: translate3d(-78px, -50px, 0) scale(1); }
  43% { opacity: 1; transform: translate3d(-180px, -98px, 0) scale(1); }
  52% { opacity: 0; transform: translate3d(-238px, -132px, 0) scale(0.72); }
}

@keyframes inventoryPulseOutA {
  0%, 52%, 100% { opacity: 0; transform: translate(-50%, -50%) scale(0.8); }
  62% { opacity: 1; transform: translate(-185px, 128px) scale(1); }
  76% { opacity: 0; transform: translate(-246px, 157px) scale(0.7); }
}

@keyframes inventoryPulseOutB {
  0%, 54%, 100% { opacity: 0; transform: translate(-50%, -50%) scale(0.8); }
  64% { opacity: 1; transform: translate(-69px, 170px) scale(1); }
  78% { opacity: 0; transform: translate(-110px, 205px) scale(0.7); }
}

@keyframes inventoryPulseOutC {
  0%, 56%, 100% { opacity: 0; transform: translate(-50%, -50%) scale(0.8); }
  66% { opacity: 1; transform: translate(84px, -156px) scale(1); }
  80% { opacity: 0; transform: translate(118px, -208px) scale(0.7); }
}

@keyframes inventoryPulseOutD {
  0%, 58%, 100% { opacity: 0; transform: translate(-50%, -50%) scale(0.8); }
  68% { opacity: 1; transform: translate(216px, -78px) scale(1); }
  82% { opacity: 0; transform: translate(280px, -102px) scale(0.7); }
}

@keyframes fiscalOrderCycle {
  0%, 84% { transform: translate3d(0, 0, 0) scale(1); opacity: 1; }
  92% { transform: translate3d(0, 52px, 0) scale(0.97); opacity: 0; }
  93% { transform: translate3d(0, -34px, 0) scale(0.97); opacity: 0; }
  100% { transform: translate3d(0, 0, 0) scale(1); opacity: 1; }
}

@keyframes fiscalStatusCycle {
  0%, 12% { opacity: 1; transform: translate3d(0, 0, 0); }
  16%, 100% { opacity: 0; transform: translate3d(0, -8px, 0); }
}

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

@keyframes fiscalLineFill {
  0%, 10% { transform: scaleX(0.24); transform-origin: left; }
  58%, 100% { transform: scaleX(1); transform-origin: left; }
}

@keyframes flowShelfProduct {
  0%, 8% { opacity: 1; }
  13%, 100% { opacity: 0; }
}

@keyframes flowPickStation {
  0%, 18%, 100% { opacity: 0; transform: translateY(10px); }
  25%, 45% { opacity: 1; transform: translateY(0); }
  58% { opacity: 0; transform: translateY(-6px); }
}

@keyframes flowProductMove {
  0%, 8% { opacity: 0; transform: translate(92px, 118px) scale(0.36); }
  14%, 32% { opacity: 1; transform: translate(262px, 106px) scale(0.52); }
  44%, 58% { opacity: 1; transform: translate(452px, 126px) scale(0.42); }
  70%, 100% { opacity: 0; transform: translate(452px, 164px) scale(0.24); }
}

@keyframes flowBoxTravel {
  0%, 36% { opacity: 0; transform: translate(420px, 104px) scale(0.96); }
  44%, 76% { opacity: 1; transform: translate(420px, 104px) scale(1); }
  92% { opacity: 1; transform: translate(548px, 104px) scale(1); }
  100% { opacity: 0; transform: translate(616px, 104px) scale(0.96); }
}

@keyframes flowFlapClose {
  0%, 56% { transform: none; }
  68%, 100% { transform: var(--flap-closed); }
}

@keyframes flowLabelAppear {
  0%, 68% { opacity: 0; transform: translateY(6px) scale(0.9); }
  78%, 100% { opacity: 1; transform: translateY(0) scale(1); }
}

@media (max-width: 1120px) {
  .site-header__inner {
    display: flex;
  }

  .site-nav {
    gap: 18px;
  }

  .inventory-channel {
    width: 118px;
  }

  .wms-pack-steps {
    left: 25%;
    right: 5%;
  }
}

@media (max-width: 900px) {
  .container.site-header__inner {
    width: min(calc(100% - 40px), var(--container));
  }

  .site-nav,
  .site-header__actions .button-primary {
    display: none;
  }

  .site-header__inner {
    justify-content: space-between;
  }

  .stock-sync-animation.inventory-sync-stage {
    min-height: 430px;
  }

  .inventory-sale {
    width: 134px;
    min-height: 78px;
    grid-template-columns: 1fr;
  }

  .inventory-sale img {
    grid-row: auto;
  }

  .inventory-hub {
    width: 142px;
    height: 142px;
    border-radius: 36px;
  }

  .inventory-channel {
    width: 106px;
    min-height: 86px;
  }

  .fiscal-flow-visual {
    min-height: 330px;
  }

  .wms-illustration {
    inset: 22px 10px 64px;
  }
}

@media (max-width: 640px) {
  .container.site-header__inner {
    width: calc(100% - 24px);
  }

  .header-login {
    display: none;
  }

  .site-header__actions {
    gap: 8px;
  }

  .hero {
    min-height: 0;
  }

  .hero-bg-shape--oval {
    top: 61%;
    width: 620px;
    height: 154px;
    opacity: 0.88;
  }

  .hero-bg-shape--line-one {
    left: -22%;
    top: 72%;
    width: 190px;
  }

  .hero-bg-shape--line-two {
    right: -24%;
    top: 60%;
    width: 170px;
  }

  .hero-bg-shape--line-three,
  .hero-bg-shape--dash-two {
    display: none;
  }

  .hero-bg-shape--dash-one {
    left: 10%;
    top: 82%;
    width: 74px;
  }

  .hero__copy,
  .operation-band__copy,
  .stock-sync-panel h2,
  .stock-sync-panel p {
    min-width: 0;
    max-width: 100%;
  }

  .hero h1 {
    font-size: 32px;
    line-height: 1.12;
  }

  .hero-title span,
  .stock-sync-panel h2 {
    overflow-wrap: break-word;
  }

  .hero__lead {
    max-width: 100%;
  }

  .hero__actions .button {
    max-width: 100%;
    padding-inline: 16px;
  }

  .stock-sync-panel h2 {
    font-size: 31px;
    line-height: 1.12;
  }

  .stock-sync-panel {
    width: 100%;
    min-width: 0;
    grid-template-columns: minmax(0, 1fr);
  }

  .stock-sync-panel > * {
    min-width: 0;
  }

  .stock-sync-panel p {
    overflow-wrap: break-word;
  }

  .stock-sync-animation.inventory-sync-stage {
    width: 100%;
    min-width: 0;
    min-height: 520px;
  }

  .inventory-sale {
    width: 118px;
    min-height: 74px;
    padding: 12px;
    border-radius: 22px;
  }

  .inventory-sale strong {
    font-size: 12px;
  }

  .inventory-sale span {
    font-size: 19px;
  }

  .inventory-hub {
    width: 128px;
    height: 128px;
    border-radius: 32px;
  }

  .inventory-hub img {
    width: 44px;
    height: 44px;
  }

  .inventory-hub strong {
    font-size: 20px;
  }

  .inventory-hub span {
    font-size: 13px;
  }

  .inventory-channel {
    width: 88px;
    min-height: 82px;
    padding: 10px 8px;
    border-radius: 20px;
  }

  .inventory-channel img {
    max-width: 48px;
    max-height: 22px;
  }

  .inventory-channel strong {
    font-size: 11px;
  }

  .inventory-channel b {
    min-width: 34px;
    font-size: 17px;
  }

  .inventory-sale--ml {
    left: 5%;
    top: 7%;
  }

  .inventory-sale--shopee {
    right: 5%;
    bottom: 7%;
  }

  .inventory-channel--ml {
    left: 5%;
    bottom: 28%;
  }

  .inventory-channel--shopee {
    left: 6%;
    bottom: 13%;
  }

  .inventory-channel--amazon {
    right: 5%;
    top: 23%;
  }

  .inventory-channel--tiktok {
    right: 5%;
    top: 39%;
  }

  .fiscal-order-flow {
    width: min(100%, 300px);
    padding: 22px;
  }

  .fiscal-order-flow strong {
    font-size: 22px;
  }

  .fiscal-status {
    font-size: 12px;
  }

  .fiscal-flow-visual .fiscal-chip--one {
    left: 12%;
    top: 2%;
  }

  .fiscal-flow-visual .fiscal-chip--two {
    right: 6%;
    top: 54%;
  }

  .fiscal-flow-visual .fiscal-chip--three {
    right: 13%;
    bottom: 10%;
  }

  .fiscal-next-order {
    bottom: 22px;
  }

  .wms-pack-steps {
    left: 8%;
    right: 5%;
    gap: 6px;
  }

  .wms-pack-steps span {
    font-size: 11px;
  }
}

/* Home visual depth pass */
body {
  background: #f8fbff;
}

.hero {
  background:
    linear-gradient(180deg, rgba(248, 251, 255, 0.98) 0%, #ffffff 68%, #f8fbff 100%),
    linear-gradient(118deg, rgba(36, 84, 245, 0.1) 0%, rgba(255, 255, 255, 0) 42%, rgba(19, 132, 95, 0.06) 100%);
}

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

.hero::before {
  left: -12%;
  right: -12%;
  bottom: -17%;
  height: 47%;
  background:
    linear-gradient(110deg, rgba(255, 255, 255, 0) 0%, rgba(222, 231, 255, 0.54) 36%, rgba(255, 255, 255, 0) 76%),
    linear-gradient(180deg, rgba(36, 84, 245, 0.07), rgba(36, 84, 245, 0));
  clip-path: polygon(0 38%, 21% 18%, 49% 31%, 74% 9%, 100% 27%, 100% 100%, 0 100%);
  opacity: 0.76;
}

.hero::after {
  inset: 8% 0 auto;
  height: 70%;
  background:
    repeating-linear-gradient(112deg, rgba(36, 84, 245, 0) 0 58px, rgba(36, 84, 245, 0.075) 59px, rgba(36, 84, 245, 0) 61px),
    linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(36, 84, 245, 0.08), rgba(255, 255, 255, 0));
  mask-image: linear-gradient(90deg, transparent, #000 18%, #000 78%, transparent);
  opacity: 0.46;
}

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

.hero-bg-shape--oval {
  border-color: rgba(203, 215, 242, 0.48);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.54), rgba(255, 255, 255, 0)),
    radial-gradient(ellipse at center, rgba(226, 233, 250, 0.72) 0%, rgba(242, 246, 252, 0.4) 49%, rgba(255, 255, 255, 0) 75%);
}

.hero-bg-shape--route {
  width: min(560px, 42vw);
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(36, 84, 245, 0), rgba(36, 84, 245, 0.18), rgba(19, 132, 95, 0.12), rgba(36, 84, 245, 0));
  opacity: 0.7;
  overflow: hidden;
  --route-distance: min(560px, 42vw);
}

.hero-bg-shape--route i {
  position: absolute;
  left: 0;
  top: 50%;
  width: 74px;
  height: 2px;
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(36, 84, 245, 0), rgba(36, 84, 245, 0.85), rgba(34, 211, 238, 0));
  box-shadow: 0 0 16px rgba(36, 84, 245, 0.22);
  transform: translate3d(-82px, -50%, 0) scaleX(0.35);
  animation: hero-route-stream 7.8s linear infinite;
}

.hero-bg-shape--route-one {
  left: 14%;
  top: 31%;
  rotate: -7deg;
}

.hero-bg-shape--route-two {
  right: 10%;
  top: 42%;
  width: min(680px, 48vw);
  rotate: 11deg;
  --route-distance: min(680px, 48vw);
}

.hero-bg-shape--route-two i {
  animation-delay: -2.6s;
}

.hero-bg-shape--route-three {
  left: 23%;
  top: 86%;
  width: min(720px, 52vw);
  opacity: 0.5;
  rotate: 3deg;
  --route-distance: min(720px, 52vw);
}

.hero-bg-shape--route-three i {
  animation-delay: -5.1s;
}

@keyframes hero-route-stream {
  0% {
    opacity: 0;
    transform: translate3d(-82px, -50%, 0) scaleX(0.35);
  }

  14%,
  74% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translate3d(var(--route-distance), -50%, 0) scaleX(1);
  }
}

.integration-band--alive {
  position: relative;
  z-index: 1;
  padding-bottom: 28px;
  overflow: hidden;
  background:
    linear-gradient(180deg, #f8fbff 0%, #ffffff 62%, #f7fbf9 100%),
    linear-gradient(90deg, rgba(36, 84, 245, 0.06), rgba(19, 132, 95, 0.05));
}

.integration-band--alive::before {
  content: "";
  position: absolute;
  left: 6%;
  right: 6%;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(36, 84, 245, 0), rgba(36, 84, 245, 0.2), rgba(19, 132, 95, 0.12), rgba(36, 84, 245, 0));
}

.integration-band--alive .integration-band__inner {
  position: relative;
  border: 1px solid rgba(214, 224, 242, 0.78);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 22px 58px rgba(23, 42, 86, 0.07);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.section--stock,
.section--fiscal,
.section--wms,
.section--channels,
.section--faq,
.pricing-section--alive {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.section--stock > .container,
.section--fiscal > .container,
.section--wms > .container,
.section--channels > .container,
.section--faq > .narrow,
.pricing-section--alive > .container {
  position: relative;
  z-index: 1;
}

.section--stock {
  background:
    linear-gradient(180deg, #ffffff 0%, #f4f8ff 52%, #ffffff 100%),
    linear-gradient(118deg, rgba(36, 84, 245, 0.07), rgba(19, 132, 95, 0.045));
}

.section--stock::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    repeating-linear-gradient(124deg, rgba(36, 84, 245, 0) 0 72px, rgba(36, 84, 245, 0.07) 73px, rgba(36, 84, 245, 0) 76px),
    linear-gradient(90deg, rgba(36, 84, 245, 0.04), rgba(255, 255, 255, 0) 48%, rgba(19, 132, 95, 0.045));
  mask-image: linear-gradient(180deg, transparent 0%, #000 18%, #000 82%, transparent 100%);
  opacity: 0.8;
}

.section--stock::after {
  content: "";
  position: absolute;
  left: -18%;
  right: 52%;
  top: 16%;
  bottom: 14%;
  z-index: 0;
  pointer-events: none;
  border: 1px solid rgba(36, 84, 245, 0.09);
  border-radius: 50%;
  transform: rotate(-8deg);
  opacity: 0.55;
}

.section--stock .stock-sync-panel {
  box-shadow: 0 30px 76px rgba(23, 32, 60, 0.16);
}

.section--fiscal.section--tight {
  padding-top: 74px;
}

.section--fiscal {
  background:
    linear-gradient(180deg, #ffffff 0%, #f8fbff 45%, #fffaf8 100%),
    linear-gradient(122deg, rgba(36, 84, 245, 0.055), rgba(217, 85, 66, 0.05) 68%, rgba(19, 132, 95, 0.04));
}

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

.section--fiscal::before {
  left: 7%;
  right: 7%;
  top: 28px;
  height: 1px;
  background: linear-gradient(90deg, rgba(217, 85, 66, 0), rgba(217, 85, 66, 0.16), rgba(36, 84, 245, 0.14), rgba(217, 85, 66, 0));
}

.section--fiscal::after {
  right: -96px;
  top: 78px;
  width: 520px;
  height: 290px;
  border: 1px solid rgba(210, 219, 235, 0.78);
  border-radius: 34px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.76), rgba(255, 255, 255, 0.18)),
    repeating-linear-gradient(180deg, rgba(36, 84, 245, 0.06) 0 2px, rgba(255, 255, 255, 0) 2px 32px);
  box-shadow: -34px 36px 0 rgba(255, 255, 255, 0.38), -68px 72px 0 rgba(232, 238, 249, 0.32);
  transform: rotate(-7deg);
  opacity: 0.62;
}

.section--fiscal .fiscal-band {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92) 0%, rgba(239, 245, 255, 0.94) 62%, rgba(255, 250, 247, 0.94) 100%);
  box-shadow: 0 24px 62px rgba(23, 42, 86, 0.08);
}

.section--wms {
  background:
    linear-gradient(180deg, #fffaf8 0%, #f5fbff 42%, #ffffff 100%),
    linear-gradient(118deg, rgba(19, 132, 95, 0.055), rgba(36, 84, 245, 0.065));
}

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

.section--wms::before {
  left: -8%;
  right: -8%;
  top: 12%;
  height: 46%;
  background:
    repeating-linear-gradient(90deg, rgba(23, 62, 199, 0) 0 96px, rgba(23, 62, 199, 0.075) 97px, rgba(23, 62, 199, 0) 99px),
    linear-gradient(180deg, rgba(36, 84, 245, 0.035), rgba(255, 255, 255, 0));
  transform: skewY(-3deg);
  opacity: 0.72;
}

.section--wms::after {
  left: 8%;
  right: 8%;
  bottom: 48px;
  height: 1px;
  background: linear-gradient(90deg, rgba(36, 84, 245, 0), rgba(36, 84, 245, 0.18), rgba(19, 132, 95, 0.16), rgba(36, 84, 245, 0));
}

.section--wms .wms-motion-band {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.88) 0%, rgba(239, 246, 255, 0.9) 58%, rgba(245, 252, 249, 0.9) 100%);
  box-shadow: 0 26px 70px rgba(23, 42, 86, 0.09);
}

.section--channels {
  background:
    linear-gradient(180deg, #ffffff 0%, #f7fbff 44%, #ffffff 100%),
    linear-gradient(90deg, rgba(36, 84, 245, 0.04), rgba(19, 132, 95, 0.035), rgba(217, 85, 66, 0.028));
}

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

.section--channels::before {
  inset: 0;
  background:
    repeating-linear-gradient(115deg, rgba(36, 84, 245, 0) 0 88px, rgba(36, 84, 245, 0.045) 89px, rgba(36, 84, 245, 0) 92px);
  mask-image: linear-gradient(180deg, transparent, #000 24%, #000 72%, transparent);
  opacity: 0.7;
}

.section--channels::after {
  left: 10%;
  right: 10%;
  top: 176px;
  height: 1px;
  background: linear-gradient(90deg, rgba(36, 84, 245, 0), rgba(36, 84, 245, 0.18), rgba(19, 132, 95, 0.14), rgba(36, 84, 245, 0));
}

.section--channels .channel-card,
.section--channels .capability-grid article {
  box-shadow: 0 16px 38px rgba(23, 42, 86, 0.06);
}

.pricing-section--alive {
  background:
    linear-gradient(180deg, #f6f9ff 0%, #eef4ff 52%, #f7fbf9 100%),
    linear-gradient(118deg, rgba(36, 84, 245, 0.08), rgba(19, 132, 95, 0.05));
}

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

.pricing-section--alive::before {
  left: 6%;
  right: 6%;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(36, 84, 245, 0), rgba(36, 84, 245, 0.24), rgba(19, 132, 95, 0.14), rgba(36, 84, 245, 0));
}

.pricing-section--alive::after {
  left: -12%;
  right: -12%;
  bottom: -18%;
  height: 46%;
  background:
    repeating-linear-gradient(118deg, rgba(36, 84, 245, 0) 0 86px, rgba(36, 84, 245, 0.055) 87px, rgba(36, 84, 245, 0) 90px);
  opacity: 0.68;
  transform: skewY(3deg);
}

.pricing-section--alive .plan {
  box-shadow: 0 16px 42px rgba(23, 42, 86, 0.07);
}

.pricing-section--alive .plan--featured {
  box-shadow: 0 28px 70px rgba(36, 84, 245, 0.23);
}

.section--faq {
  background:
    linear-gradient(180deg, #f7fbf9 0%, #ffffff 30%, #ffffff 100%),
    linear-gradient(90deg, rgba(19, 132, 95, 0.035), rgba(36, 84, 245, 0.035));
}

.section--faq::before {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  top: 0;
  z-index: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(19, 132, 95, 0), rgba(19, 132, 95, 0.12), rgba(36, 84, 245, 0.12), rgba(19, 132, 95, 0));
  pointer-events: none;
}

@media (max-width: 900px) {
  .hero-bg-shape--route {
    width: min(440px, 72vw);
    --route-distance: min(440px, 72vw);
  }

  .hero-bg-shape--route-two {
    right: -8%;
    top: 44%;
  }

  .hero-bg-shape--route-three {
    left: 6%;
  }

  .section--fiscal::after {
    right: -220px;
    opacity: 0.32;
  }
}

@media (max-width: 768px) {
  .hero {
    background:
      linear-gradient(180deg, rgba(248, 251, 255, 0.98) 0%, #ffffff 72%, #f7fbff 100%),
      linear-gradient(122deg, rgba(36, 84, 245, 0.1), rgba(19, 132, 95, 0.045));
  }

  .hero::before {
    left: -28%;
    right: -28%;
    bottom: -12%;
    height: 36%;
    opacity: 0.5;
  }

  .hero::after {
    inset: 12% 0 auto;
    height: 50%;
    opacity: 0.28;
  }

  .hero-bg-shape--route-two,
  .hero-bg-shape--route-three {
    display: none;
  }

  .hero-bg-shape--route-one {
    left: -18%;
    top: 36%;
    width: 390px;
    --route-distance: 390px;
    opacity: 0.42;
  }

  .integration-band--alive {
    padding-bottom: 18px;
  }

  .section--stock::before,
  .section--wms::before,
  .section--channels::before,
  .pricing-section--alive::after {
    opacity: 0.34;
  }

  .section--stock::after,
  .section--fiscal::after {
    opacity: 0.18;
  }

  .section--fiscal.section--tight {
    padding-top: 58px;
  }

  .section--channels::after {
    top: 132px;
  }
}

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

  .reveal,
  .reveal-sequence > * {
    opacity: 1;
    transform: none;
  }

  .hero-bg-shape {
    --parallax-x: 0px !important;
    --parallax-y: 0px !important;
    transition: none !important;
  }

  .hero-bg-shape--route i {
    display: none;
  }
}

/* Home refinement pass 2026-08-18 */
.hero {
  background: #fff;
}

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

.hero::before {
  left: -8%;
  right: -8%;
  bottom: -54px;
  z-index: 0;
  height: 178px;
  background:
    radial-gradient(ellipse at 50% 28%, rgba(224, 232, 247, 0.82), rgba(242, 246, 252, 0.5) 35%, rgba(255, 255, 255, 0) 72%),
    linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(236, 241, 249, 0.82) 46%, rgba(255, 255, 255, 0) 80%);
  opacity: 0.98;
}

.hero::after {
  left: 0;
  right: 0;
  bottom: -1px;
  z-index: 2;
  height: 88px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.96) 62%, #fff 100%);
}

.hero > .container {
  z-index: 1;
}

.hero .hero-title span:not(:first-child) {
  color: var(--ink) !important;
  -webkit-text-fill-color: var(--ink) !important;
  opacity: 1 !important;
}

.hero .hero-title span {
  background: none !important;
  background-image: none !important;
  -webkit-background-clip: initial !important;
  background-clip: initial !important;
}

.hero .hero-title span:first-child {
  color: var(--blue) !important;
  -webkit-text-fill-color: var(--blue) !important;
}

.hero .hero-title span:not(:first-child) {
  color: var(--ink) !important;
  -webkit-text-fill-color: var(--ink) !important;
}

.integration-band--alive {
  background: #fff;
}

.integration-band--alive::before {
  display: none;
}

.integration-band--alive .integration-band__inner {
  background: #fff;
}

.section--stock {
  padding-block: 108px;
  color: #fff;
  background:
    radial-gradient(circle at 78% 18%, rgba(36, 84, 245, 0.34), transparent 26%),
    radial-gradient(circle at 22% 72%, rgba(19, 132, 95, 0.2), transparent 24%),
    radial-gradient(circle at 48% 52%, rgba(34, 211, 238, 0.12), transparent 32%),
    linear-gradient(135deg, #030817 0%, #071430 48%, #0d1735 100%);
}

.section--stock::before {
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(circle at 8% 14%, rgba(255, 255, 255, 0.92) 0 1px, transparent 2px),
    radial-gradient(circle at 24% 38%, rgba(164, 184, 255, 0.86) 0 1px, transparent 2px),
    radial-gradient(circle at 42% 18%, rgba(255, 255, 255, 0.7) 0 1px, transparent 2px),
    radial-gradient(circle at 63% 65%, rgba(164, 184, 255, 0.72) 0 1px, transparent 2px),
    radial-gradient(circle at 88% 28%, rgba(255, 255, 255, 0.84) 0 1px, transparent 2px),
    radial-gradient(circle at 73% 84%, rgba(34, 211, 238, 0.68) 0 1px, transparent 2px);
  background-size: 260px 220px, 330px 260px, 420px 300px, 360px 280px, 300px 240px, 460px 320px;
  opacity: 0.78;
  mask-image: none;
  animation: stock-stars-drift 18s linear infinite;
}

.section--stock::after {
  left: auto;
  right: -78px;
  top: 72px;
  bottom: auto;
  z-index: 0;
  width: 240px;
  height: 240px;
  border: 1px solid rgba(115, 143, 255, 0.26);
  border-radius: 50%;
  background:
    radial-gradient(circle at 34% 30%, rgba(255, 255, 255, 0.2), transparent 10%),
    radial-gradient(circle at 50% 50%, rgba(36, 84, 245, 0.34), rgba(14, 27, 68, 0.84) 58%, rgba(4, 9, 24, 0) 70%);
  box-shadow:
    -160px 172px 0 -108px rgba(34, 211, 238, 0.24),
    -68px 292px 0 -134px rgba(255, 255, 255, 0.2);
  opacity: 0.72;
  transform: none;
  animation: stock-planet-float 11s ease-in-out infinite;
}

.section--stock .stock-sync-panel {
  position: relative;
  isolation: isolate;
  border: 1px solid rgba(148, 163, 184, 0.24);
  background: rgba(6, 13, 31, 0.52);
  box-shadow: 0 34px 92px rgba(0, 0, 0, 0.34);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
}

.section--stock .stock-sync-panel::before {
  content: "";
  position: absolute;
  inset: 1px;
  z-index: -1;
  border-radius: inherit;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    radial-gradient(circle at 72% 18%, rgba(36, 84, 245, 0.2), transparent 34%);
}

.section--stock .operation-band__copy h2,
.section--stock .operation-band__copy p,
.section--stock .stock-sync-panel h2,
.section--stock .stock-sync-panel p {
  color: #fff;
}

.section--stock .stock-sync-panel p {
  color: rgba(226, 232, 240, 0.84);
}

.section--stock .stock-sync-points span {
  border-color: rgba(191, 219, 254, 0.16);
  background: rgba(15, 23, 42, 0.42);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.stock-sync-animation.inventory-sync-stage {
  min-height: 452px;
  border: 1px solid rgba(148, 163, 184, 0.22);
  border-radius: 34px;
  background:
    radial-gradient(circle at 50% 52%, rgba(36, 84, 245, 0.18), transparent 30%),
    radial-gradient(circle at 18% 18%, rgba(34, 211, 238, 0.1), transparent 26%),
    rgba(8, 15, 34, 0.54);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    inset 0 0 46px rgba(36, 84, 245, 0.08),
    0 24px 70px rgba(0, 0, 0, 0.22);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.stock-sync-animation.inventory-sync-stage::before,
.stock-sync-animation.inventory-sync-stage::after {
  border-color: rgba(125, 160, 255, 0.13);
}

.inventory-connector {
  left: 50%;
  top: 50%;
  width: clamp(128px, 31%, 230px);
  height: 2px;
  --connector-length: clamp(128px, 31vw, 230px);
  background: linear-gradient(90deg, rgba(125, 160, 255, 0.22), rgba(34, 211, 238, 0.34), rgba(125, 160, 255, 0));
  transform-origin: left center;
}

.inventory-connector::after {
  content: "";
  position: absolute;
  left: -6px;
  top: -5px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #54e4ff;
  box-shadow:
    0 0 14px rgba(84, 228, 255, 0.95),
    0 0 34px rgba(36, 84, 245, 0.72);
  opacity: 0;
}

.inventory-connector--ml {
  transform: rotate(220deg);
}

.inventory-connector--shopee {
  transform: rotate(140deg);
}

.inventory-connector--amazon {
  transform: rotate(320deg);
}

.inventory-connector--tiktok {
  transform: rotate(40deg);
}

.inventory-sync-stage.phase-in.source-ml .inventory-connector--ml::after,
.inventory-sync-stage.phase-in.source-shopee .inventory-connector--shopee::after,
.inventory-sync-stage.phase-in.source-amazon .inventory-connector--amazon::after,
.inventory-sync-stage.phase-in.source-tiktok .inventory-connector--tiktok::after {
  animation: inventory-pulse-to-hub 820ms var(--ease-enter) forwards;
}

.inventory-sync-stage.phase-out .inventory-connector::after {
  animation: inventory-pulse-from-hub 900ms var(--ease-enter) forwards;
}

.inventory-hub,
.inventory-channel {
  border-color: rgba(148, 163, 184, 0.28);
  background: rgba(255, 255, 255, 0.92);
  box-shadow:
    0 18px 46px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.inventory-hub {
  width: 164px;
  height: 164px;
  border-radius: 8px;
  gap: 4px;
}

.inventory-hub::before {
  inset: -10px;
  border-color: rgba(84, 228, 255, 0.18);
  border-radius: 16px;
}

.inventory-hub img {
  width: 48px;
  height: 48px;
}

.inventory-hub strong {
  font-size: 21px;
}

.inventory-hub span {
  color: var(--blue);
  font-size: 13px;
  line-height: 1.1;
}

.inventory-hub em {
  color: #3c465c;
  font-size: 12px;
  font-style: normal;
  font-weight: 850;
  line-height: 1.1;
}

.inventory-hub em b {
  color: var(--blue-dark);
  font-size: 17px;
}

.inventory-hub.is-receiving {
  animation: inventory-hub-receive 520ms var(--ease-enter);
}

.inventory-hub.is-restocking {
  box-shadow:
    0 20px 54px rgba(19, 132, 95, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.inventory-channel {
  width: 158px;
  min-height: 126px;
  padding: 13px;
  border-radius: 8px;
  grid-template-columns: 42px 1fr;
  place-items: initial;
  align-items: center;
  gap: 6px 10px;
}

.inventory-channel.is-active {
  border-color: rgba(217, 85, 66, 0.58);
  box-shadow:
    0 18px 50px rgba(217, 85, 66, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
  animation: inventory-card-pulse 620ms var(--ease-enter);
}

.inventory-channel img {
  width: 42px;
  height: 42px;
  max-width: 42px;
  max-height: 42px;
  object-fit: contain;
}

.inventory-channel strong {
  color: var(--ink);
  font-size: 12px;
  line-height: 1.08;
  text-align: left;
}

.inventory-channel .stock-number {
  position: relative;
  grid-column: 1 / -1;
  display: block;
  width: 100%;
  height: 42px;
  min-width: 0;
  min-height: 42px;
  overflow: hidden;
  color: var(--blue-dark);
  font-size: 39px;
  font-variant-numeric: tabular-nums;
  font-weight: 900;
  line-height: 42px;
}

.inventory-channel .stock-number::after {
  content: " unidades";
  position: absolute;
  left: 58px;
  top: 23px;
  margin-left: 0;
  color: #687286;
  font-size: 12px;
  font-weight: 850;
  line-height: 1;
}

.inventory-channel .stock-number span {
  position: absolute;
  inset: 0 auto auto 0;
  display: block;
  animation: none;
}

.inventory-channel .stock-number .num-new {
  opacity: 0;
}

.inventory-channel .stock-number.count-down .num-old {
  animation: stock-number-down-old 520ms var(--ease-enter) forwards;
}

.inventory-channel .stock-number.count-down .num-new {
  animation: stock-number-down-new 520ms var(--ease-enter) forwards;
}

.inventory-channel .stock-number.count-up .num-old {
  animation: stock-number-up-old 520ms var(--ease-enter) forwards;
}

.inventory-channel .stock-number.count-up .num-new {
  animation: stock-number-up-new 520ms var(--ease-enter) forwards;
}

.inventory-channel small {
  grid-column: 1 / -1;
  color: #687286;
  font-size: 11px;
  font-weight: 850;
  opacity: 1;
  animation: none;
}

.inventory-channel--ml {
  left: 5%;
  top: 14%;
  bottom: auto;
}

.inventory-channel--shopee {
  left: 5%;
  bottom: 14%;
}

.inventory-channel--amazon {
  right: 5%;
  top: 14%;
}

.inventory-channel--tiktok {
  right: 5%;
  top: auto;
  bottom: 14%;
}

.section--fiscal {
  background: #fff;
}

.section--fiscal::before {
  inset: -90px -16%;
  z-index: 0;
  height: auto;
  background:
    conic-gradient(from 222deg at 18% 38%, transparent 0 63%, rgba(36, 84, 245, 0.16) 64%, transparent 69% 100%),
    conic-gradient(from 38deg at 86% 34%, transparent 0 66%, rgba(19, 132, 95, 0.14) 67%, transparent 72% 100%),
    conic-gradient(from 176deg at 66% 76%, transparent 0 68%, rgba(217, 85, 66, 0.12) 69%, transparent 74% 100%),
    radial-gradient(ellipse at 50% 48%, rgba(36, 84, 245, 0.05), transparent 55%);
  opacity: 0.8;
  animation: fiscal-light-drift 7.2s ease-in-out infinite alternate;
}

.section--fiscal::after {
  left: 6%;
  right: 6%;
  top: auto;
  bottom: 28px;
  width: auto;
  height: 1px;
  border: 0;
  border-radius: 0;
  background: linear-gradient(90deg, rgba(36, 84, 245, 0), rgba(36, 84, 245, 0.13), rgba(19, 132, 95, 0.1), rgba(36, 84, 245, 0));
  box-shadow: none;
  transform: none;
  opacity: 0.8;
}

.section--fiscal .fiscal-band {
  position: relative;
  isolation: isolate;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(225, 230, 238, 0.78);
  box-shadow: 0 24px 62px rgba(23, 42, 86, 0.07);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.section--fiscal .fiscal-band::before,
.section--fiscal .fiscal-band::after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 360px;
  height: 150px;
  border-top: 2px solid rgba(36, 84, 245, 0.13);
  border-radius: 50%;
  pointer-events: none;
}

.section--fiscal .fiscal-band::before {
  left: -80px;
  top: 44px;
  animation: fiscal-arc-one 5.8s ease-in-out infinite;
}

.section--fiscal .fiscal-band::after {
  right: -92px;
  bottom: 34px;
  border-top-color: rgba(19, 132, 95, 0.12);
  animation: fiscal-arc-two 6.4s ease-in-out infinite;
}

.fiscal-flow-visual::before,
.fiscal-next-order,
.fiscal-flow-visual .fiscal-chip {
  display: none;
}

.fiscal-order-flow {
  width: min(100%, 386px);
  min-height: 198px;
  border-radius: 8px;
  animation: fiscalOrderCycle 9s var(--ease-enter) infinite;
}

.fiscal-status {
  animation: fiscal-status-quick 9s var(--ease-enter) infinite;
  animation-delay: calc(var(--step) * 1.8s);
}

.fiscal-flow-lines span {
  animation-duration: 9s;
}

.fiscal-heading span,
.fiscal-heading em {
  display: block;
}

.fiscal-heading {
  font-size: clamp(40px, 3.25vw, 52px);
  line-height: 1.08;
}

.fiscal-heading span:first-child,
.fiscal-heading span:nth-child(2) {
  white-space: nowrap;
}

.fiscal-heading em {
  position: relative;
  width: fit-content;
  color: var(--blue);
  font-style: normal;
}

.fiscal-heading em::after {
  content: "";
  position: absolute;
  left: -2px;
  right: -8px;
  bottom: 4px;
  z-index: -1;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(36, 84, 245, 0.18), rgba(34, 211, 238, 0.22), rgba(36, 84, 245, 0.08));
  transform: rotate(-1.5deg);
}

.section--wms .wms-motion-band {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94) 0%, rgba(247, 251, 255, 0.96) 56%, rgba(244, 252, 248, 0.96) 100%);
}

.wms-pack-flow {
  min-height: 380px;
  background:
    radial-gradient(circle at 17% 22%, rgba(36, 84, 245, 0.1), transparent 26%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(242, 247, 255, 0.88));
}

.flow-rack-post,
.flow-rack-shelf {
  filter: drop-shadow(0 7px 9px rgba(15, 23, 42, 0.16));
}

.flow-rack-shelf {
  height: 14px;
}

.flow-rack-highlight {
  stroke: rgba(255, 255, 255, 0.28);
}

.flow-stock-parcel,
.flow-stock-phone,
.flow-stock-bottle,
.flow-stock-box {
  filter: drop-shadow(0 5px 5px rgba(15, 23, 42, 0.12));
}

.flow-pick-station {
  animation: flowPickStation var(--wms-cycle) var(--ease-enter) infinite;
}

.flow-pick-station rect {
  fill: rgba(255, 255, 255, 0.96);
}

.flow-moving-product {
  z-index: 1;
  animation: flowProductMove var(--wms-cycle) var(--ease-enter) infinite;
}

.flow-box-back,
.flow-box-front {
  animation: flowBoxTravel var(--wms-cycle) var(--ease-enter) infinite;
}

.flow-box-body {
  fill: rgba(198, 137, 70, 0.98);
}

.flow-box-front {
  z-index: 3;
}

.flow-box-left-flap,
.flow-box-right-flap {
  animation: flowFlapClose var(--wms-cycle) var(--ease-enter) infinite;
}

.flow-box-label {
  animation: flowLabelAppear var(--wms-cycle) var(--ease-enter) infinite;
}

.wms-pack-steps {
  left: 29%;
  right: 8%;
  bottom: 24px;
}

.wms-pack-steps span {
  min-height: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: #748098;
  animation-duration: var(--wms-cycle);
}

.section--channels::after {
  display: none;
}

.channel-card {
  position: relative;
  overflow: hidden;
  transition:
    border-color 180ms var(--ease-state),
    box-shadow 220ms var(--ease-state),
    transform 220ms var(--ease-state);
}

.channel-card::before {
  content: "";
  position: absolute;
  inset: -45% auto -45% -75%;
  z-index: 0;
  width: 62%;
  background: linear-gradient(110deg, rgba(255, 255, 255, 0), rgba(84, 228, 255, 0.2), rgba(36, 84, 245, 0.16), rgba(255, 255, 255, 0));
  transform: skewX(-16deg) translateX(0);
  opacity: 0;
  pointer-events: none;
}

.channel-card > * {
  position: relative;
  z-index: 1;
}

.channel-card:hover,
.channel-card:focus-within {
  border-color: rgba(36, 84, 245, 0.22);
  box-shadow:
    0 22px 54px rgba(36, 84, 245, 0.14),
    0 0 0 1px rgba(84, 228, 255, 0.08);
  transform: translateY(-3px);
}

.channel-card:hover::before,
.channel-card:focus-within::before {
  opacity: 1;
  animation: channel-light-sweep 780ms var(--ease-enter) forwards;
}

.capability-divider {
  display: flex;
  justify-content: center;
  text-align: center;
}

.site-footer__bottom {
  justify-content: center;
  text-align: center;
}

@keyframes stock-stars-drift {
  to {
    background-position: 92px 44px, -116px 82px, 74px -96px, -82px -60px, 124px 70px, -144px 120px;
  }
}

@keyframes stock-planet-float {
  0%, 100% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }

  50% {
    transform: translate3d(-18px, 14px, 0) rotate(4deg);
  }
}

@keyframes inventory-pulse-to-hub {
  0% {
    opacity: 0;
    transform: translateX(var(--connector-length)) scale(0.7);
  }

  18%, 72% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translateX(0) scale(1);
  }
}

@keyframes inventory-pulse-from-hub {
  0% {
    opacity: 0;
    transform: translateX(0) scale(0.76);
  }

  18%, 74% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translateX(var(--connector-length)) scale(1);
  }
}

@keyframes inventory-hub-receive {
  0%, 100% {
    transform: translate(-50%, -50%) scale(1);
  }

  46% {
    transform: translate(-50%, -50%) scale(1.04);
  }
}

@keyframes inventory-card-pulse {
  0%, 100% {
    transform: scale(1);
  }

  48% {
    transform: scale(1.04);
  }
}

@keyframes stock-number-down-old {
  to {
    opacity: 0;
    transform: translateY(-36px);
  }
}

@keyframes stock-number-down-new {
  from {
    opacity: 0;
    transform: translateY(36px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes stock-number-up-old {
  to {
    opacity: 0;
    transform: translateY(36px);
  }
}

@keyframes stock-number-up-new {
  from {
    opacity: 0;
    transform: translateY(-36px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fiscal-light-drift {
  from {
    transform: translate3d(-18px, 8px, 0) rotate(-1deg);
  }

  to {
    transform: translate3d(22px, -14px, 0) rotate(1.4deg);
  }
}

@keyframes fiscal-arc-one {
  0%, 100% {
    opacity: 0.34;
    transform: translate3d(0, 0, 0) rotate(-8deg);
  }

  50% {
    opacity: 0.72;
    transform: translate3d(32px, 20px, 0) rotate(5deg);
  }
}

@keyframes fiscal-arc-two {
  0%, 100% {
    opacity: 0.28;
    transform: translate3d(0, 0, 0) rotate(9deg);
  }

  50% {
    opacity: 0.66;
    transform: translate3d(-40px, -18px, 0) rotate(-4deg);
  }
}

@keyframes fiscal-status-quick {
  0%, 18% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }

  22%, 100% {
    opacity: 0;
    transform: translate3d(0, -8px, 0);
  }
}

@keyframes fiscalOrderCycle {
  0%, 88% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }

  94% {
    opacity: 0.72;
    transform: translate3d(0, 24px, 0) scale(0.985);
  }

  95% {
    opacity: 0.72;
    transform: translate3d(0, -18px, 0) scale(0.985);
  }

  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes flowShelfProduct {
  0%, 9% { opacity: 1; }
  14%, 100% { opacity: 0; }
}

@keyframes flowPickStation {
  0%, 17%, 100% { opacity: 0; transform: translateY(10px); }
  23%, 42% { opacity: 1; transform: translateY(0); }
  52% { opacity: 0; transform: translateY(-6px); }
}

@keyframes flowProductMove {
  0%, 9% { opacity: 0; transform: translate(92px, 118px) scale(0.34); }
  15%, 34% { opacity: 1; transform: translate(263px, 100px) scale(0.52); }
  45%, 55% { opacity: 1; transform: translate(452px, 72px) scale(0.43); }
  67% { opacity: 1; transform: translate(452px, 142px) scale(0.39); }
  75%, 100% { opacity: 0; transform: translate(452px, 160px) scale(0.39); }
}

@keyframes flowBoxTravel {
  0%, 38% { opacity: 0; transform: translate(420px, 152px) scale(0.84); }
  48%, 78% { opacity: 1; transform: translate(420px, 108px) scale(0.88); }
  92% { opacity: 1; transform: translate(548px, 108px) scale(0.88); }
  100% { opacity: 0; transform: translate(612px, 108px) scale(0.84); }
}

@keyframes flowFlapClose {
  0%, 66% { transform: none; }
  78%, 100% { transform: var(--flap-closed); }
}

@keyframes flowLabelAppear {
  0%, 78% { opacity: 0; transform: translateY(7px) scale(0.92); }
  86%, 100% { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes channel-light-sweep {
  to {
    transform: skewX(-16deg) translateX(285%);
  }
}

@media (max-width: 900px) {
  .section--stock {
    padding-block: 78px;
  }

  .stock-sync-panel {
    grid-template-columns: minmax(0, 1fr);
  }

  .stock-sync-animation.inventory-sync-stage {
    min-height: 492px;
  }

  .inventory-channel {
    width: 136px;
  }

  .inventory-hub {
    width: 142px;
    height: 142px;
  }

  .fiscal-heading em::after {
    bottom: 2px;
  }
}

@media (max-width: 640px) {
  .hero::before {
    height: 132px;
    bottom: -44px;
  }

  .hero::after {
    height: 72px;
  }

  .section--stock .stock-sync-panel {
    padding: 28px 18px;
  }

  .stock-sync-animation.inventory-sync-stage {
    min-height: 520px;
  }

  .inventory-hub {
    width: 124px;
    height: 124px;
    border-radius: 8px;
  }

  .inventory-hub img {
    width: 38px;
    height: 38px;
  }

  .inventory-hub strong {
    font-size: 17px;
  }

  .inventory-hub em {
    font-size: 11px;
  }

  .inventory-channel {
    width: 112px;
    min-height: 112px;
    padding: 10px;
    grid-template-columns: 32px 1fr;
    gap: 4px 8px;
  }

  .inventory-channel img {
    width: 32px;
    height: 32px;
    max-width: 32px;
    max-height: 32px;
  }

  .inventory-channel strong {
    font-size: 10.5px;
  }

  .inventory-channel .stock-number {
    height: 34px;
    min-height: 34px;
    font-size: 30px;
    line-height: 34px;
  }

  .inventory-channel .stock-number::after {
    left: 43px;
    top: 18px;
    font-size: 10px;
  }

  .inventory-channel--ml {
    left: 4%;
    top: 9%;
  }

  .inventory-channel--shopee {
    left: 4%;
    bottom: 9%;
  }

  .inventory-channel--amazon {
    right: 4%;
    top: 9%;
  }

  .inventory-channel--tiktok {
    right: 4%;
    bottom: 9%;
  }

  .inventory-connector {
    width: clamp(104px, 31%, 160px);
    --connector-length: clamp(104px, 31vw, 160px);
  }

  .fiscal-order-flow {
    min-height: 190px;
  }

  .fiscal-heading {
    font-size: 34px;
  }

  .fiscal-heading span:first-child,
  .fiscal-heading span:nth-child(2) {
    white-space: normal;
  }

  .wms-pack-steps {
    left: 5%;
    right: 5%;
  }

  .site-footer__bottom {
    line-height: 1.5;
  }
}

@media (prefers-reduced-motion: reduce) {
  .section--stock::before,
  .section--stock::after,
  .section--fiscal::before,
  .section--fiscal .fiscal-band::before,
  .section--fiscal .fiscal-band::after {
    animation: none !important;
  }
}

/* Focused corrections 2026-08-18 */
.stock-sync-animation.inventory-sync-stage {
  border: 0;
  background: transparent;
  box-shadow: none;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}

.section--stock .stock-sync-panel {
  background: rgba(6, 13, 31, 0.42);
  box-shadow: 0 34px 92px rgba(0, 0, 0, 0.32);
  -webkit-backdrop-filter: blur(16px) saturate(1.18);
  backdrop-filter: blur(16px) saturate(1.18);
}

.section--stock .stock-sync-panel::before {
  opacity: 0.68;
}

.stock-sync-animation.inventory-sync-stage::before,
.stock-sync-animation.inventory-sync-stage::after {
  display: none !important;
}

.inventory-hub img {
  background: transparent !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}

.fiscal-order-flow {
  animation: none !important;
  will-change: transform, opacity;
}

.fiscal-order-flow.is-exiting {
  animation: fiscal-card-exit-down 280ms var(--ease-enter) forwards !important;
}

.fiscal-order-flow.is-entering {
  animation: fiscal-card-enter-top 330ms var(--ease-enter) both !important;
}

.fiscal-status-rotator {
  min-height: 42px;
  overflow: visible;
}

.fiscal-status-live {
  position: absolute;
  inset: 0 auto auto 0;
  min-height: 38px;
  padding: 0 14px;
  border-radius: var(--radius-control);
  background: var(--blue-soft);
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 14px;
  font-weight: 850;
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition:
    background-color 240ms var(--ease-state),
    color 240ms var(--ease-state),
    transform 220ms var(--ease-enter),
    opacity 220ms var(--ease-enter);
  will-change: background-color, color, transform, opacity;
}

.fiscal-status-live.is-entering {
  animation: fiscal-status-enter-up 260ms var(--ease-enter) both;
}

.fiscal-status-live i {
  position: relative;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(36, 84, 245, 0.18);
  border-top-color: var(--blue);
  border-radius: 50%;
  flex: 0 0 auto;
  background: transparent;
  animation: fiscal-status-spin 760ms linear infinite;
  transition:
    background-color 260ms var(--ease-state),
    border-color 260ms var(--ease-state),
    transform 300ms var(--ease-enter);
}

.fiscal-status-live i::before {
  content: "";
  position: absolute;
  left: 5px;
  top: 3px;
  width: 5px;
  height: 8px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  opacity: 0;
  transform: rotate(45deg) scale(0.58);
  transform-origin: center;
  transition: opacity 180ms var(--ease-state), transform 220ms var(--ease-enter);
}

.fiscal-status-live.is-done {
  background: var(--green-soft);
  color: var(--green);
}

.fiscal-status-live.is-done i {
  border-color: var(--green);
  background: var(--green);
  animation: fiscal-icon-complete 320ms var(--ease-enter) both;
}

.fiscal-status-live.is-done i::before {
  opacity: 1;
  transform: rotate(45deg) scale(1);
}

@media (max-width: 640px) {
  .section--fiscal .fiscal-band {
    gap: 24px;
  }

  .fiscal-flow-visual {
    min-height: 292px;
    align-items: start;
  }

  .fiscal-order-flow {
    width: 100%;
    min-height: 224px;
    padding: 22px;
    box-shadow: 0 20px 48px rgba(21, 25, 37, 0.11);
  }
}

.pricing-section,
.pricing-section--alive {
  background: #fff !important;
}

.pricing-section--alive::before,
.pricing-section--alive::after {
  display: none !important;
}

.section--channels .channel-card::before,
.section--channels .channel-card:hover::before,
.section--channels .channel-card:focus-within::before {
  display: none !important;
  animation: none !important;
}

.section--channels .channel-card,
.section--channels .capability-grid article {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  transform: perspective(900px) rotateX(0deg) rotateY(0deg) translateY(0);
  transform-style: preserve-3d;
  will-change: transform;
  transition:
    border-color 180ms var(--ease-state),
    box-shadow 220ms var(--ease-state),
    transform 180ms var(--ease-state);
}

.section--channels .channel-card > *,
.section--channels .capability-grid article > * {
  transform: translateZ(18px);
}

.section--channels .channel-card:hover,
.section--channels .channel-card:focus-within,
.section--channels .capability-grid article:hover,
.section--channels .capability-grid article:focus-within,
.section--channels .channel-card.is-tilting,
.section--channels .capability-grid article.is-tilting {
  border-color: rgba(36, 84, 245, 0.24);
  box-shadow:
    0 28px 64px rgba(23, 42, 86, 0.16),
    0 10px 28px rgba(36, 84, 245, 0.1);
  transform: perspective(900px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y)) translateY(-7px);
}

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

@keyframes fiscal-icon-complete {
  0% {
    transform: rotate(0deg) scale(0.86);
  }

  55% {
    transform: rotate(220deg) scale(1.08);
  }

  100% {
    transform: rotate(360deg) scale(1);
  }
}

@keyframes fiscal-status-enter-up {
  from {
    opacity: 0;
    transform: translate3d(0, 14px, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fiscal-card-exit-down {
  to {
    opacity: 0;
    transform: translate3d(0, 42px, 0) scale(0.98);
  }
}

@keyframes fiscal-card-enter-top {
  from {
    opacity: 0;
    transform: translate3d(0, -34px, 0) scale(0.98);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@media (hover: none), (pointer: coarse) {
  .section--channels .channel-card,
  .section--channels .capability-grid article,
  .section--channels .channel-card:hover,
  .section--channels .capability-grid article:hover {
    transform: none;
  }

  .section--channels .channel-card > *,
  .section--channels .capability-grid article > * {
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .fiscal-order-flow,
  .fiscal-status-live,
  .fiscal-status-live i,
  .section--channels .channel-card,
  .section--channels .capability-grid article {
    animation: none !important;
    transition: none !important;
    transform: none !important;
  }
}

/* Hero orbit performance pass */
.hero {
  isolation: isolate;
  background: #fff !important;
}

.hero__copy {
  position: relative;
  z-index: 2;
}

.hero::before,
.hero::after,
.hero-bg-shapes,
.hero-bg-shape {
  display: none !important;
  content: none !important;
}

.hero .hero-title {
  color: var(--ink) !important;
  background: transparent !important;
  background-image: none !important;
  -webkit-background-clip: border-box !important;
  background-clip: border-box !important;
  -webkit-text-fill-color: var(--ink) !important;
}

.hero .hero-title,
.hero .hero-title span {
  background: none !important;
  background-image: none !important;
  -webkit-background-clip: border-box !important;
  background-clip: border-box !important;
  filter: none !important;
  opacity: 1 !important;
  mix-blend-mode: normal !important;
  text-shadow: none !important;
}

.hero .hero-title span:first-child {
  color: var(--blue) !important;
  -webkit-text-fill-color: var(--blue) !important;
}

.hero .hero-title span:nth-child(2),
.hero .hero-title span:nth-child(3),
.hero .hero-title span:not(:first-child) {
  color: var(--ink) !important;
  -webkit-text-fill-color: var(--ink) !important;
}

/* Clean hero/header pass 2026-08-18 */
.container.site-header__inner {
  width: min(calc(100% - 96px), 1240px);
  display: grid;
  grid-template-columns: minmax(150px, 1fr) auto minmax(260px, 1fr);
  gap: 18px;
}

.site-nav {
  position: relative;
  left: auto;
  top: auto;
  transform: none;
  gap: 20px;
}

.site-header__actions {
  gap: 8px;
}

.brand {
  width: 176px;
  min-height: 44px;
}

.brand img {
  width: 176px;
  height: auto;
}

.hero {
  background: #fff !important;
}

@media (max-width: 980px) {
  .container.site-header__inner {
    width: min(calc(100% - 56px), var(--container-header));
    display: flex;
    justify-content: space-between;
  }

  .site-header__actions {
    flex: 0 0 auto;
    margin-left: auto;
  }
}

@media (max-width: 640px) {
  .site-header {
    overflow: visible;
  }

  .container.site-header__inner {
    width: 100%;
    min-height: 68px;
    padding-inline: 24px;
    position: relative;
    align-items: center;
  }

  .site-header__actions {
    position: absolute;
    top: 50%;
    right: 24px;
    margin-left: 0;
    height: 44px;
    display: flex;
    align-items: center;
    transform: translateY(-50%);
  }

  .site-header__actions .button,
  .site-header__actions .header-login {
    display: none !important;
  }

  .site-header__actions .mobile-menu-button {
    display: inline-grid !important;
    position: static !important;
    width: 44px;
    height: 44px;
    z-index: 1;
    background: #f5f7fa;
    color: var(--ink);
  }

  .hero__actions {
    width: 100%;
    max-width: 100%;
    display: flex;
  }

  .hero__actions .button {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    padding-inline: 14px;
  }

  .brand,
  .brand img {
    width: 136px;
  }
}

/* Hero title typewriter 2026-08-18 */
.hero .hero-title .hero-title__typing {
  min-height: 1.05em;
  color: var(--ink) !important;
  -webkit-text-fill-color: var(--ink) !important;
  white-space: nowrap;
  text-wrap: nowrap;
}

.hero .hero-title .hero-title__typing *,
.hero .hero-title .hero-title__typing .hero-title__typing-inner,
.hero .hero-title .hero-title__typing .hero-title__typing-text,
.hero .hero-title .hero-title__typing .hero-title__caret,
.hero .hero-title .hero-title__typing-text,
.hero .hero-title .hero-title__caret {
  color: var(--ink) !important;
  -webkit-text-fill-color: var(--ink) !important;
}

.hero h1 .hero-title__typing-inner {
  display: inline-flex !important;
  align-items: baseline;
  justify-content: center;
}

.hero h1 .hero-title__typing-text,
.hero h1 .hero-title__caret {
  display: inline-block !important;
}

.hero-title__caret {
  flex: 0 0 auto;
  width: max(3px, 0.045em);
  height: 0.82em;
  margin-left: 0.12em;
  border-radius: 2px;
  background: currentColor !important;
  background-image: none !important;
  opacity: 1;
  transform: translateY(0.1em);
  animation: hero-title-caret-blink 920ms step-end infinite;
}

.hero-title__typing.is-static .hero-title__caret {
  display: none !important;
}

@keyframes hero-title-caret-blink {
  0%, 68% {
    opacity: 1;
  }

  69%, 100% {
    opacity: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-title__caret {
    animation: none;
  }
}

/* Hero scroll device composition 2026-08-18 */
.hero-device-stage {
  --hero-mac-x: 0%;
  --hero-mac-y: 0%;
  --hero-mac-scale: 1;
  --hero-phone-opacity: 0;
  --hero-phone-x: 30%;
  --hero-phone-y: 4%;
  --hero-phone-scale: 0.82;
  position: relative;
  width: min(100%, 1260px) !important;
  aspect-ratio: 1566 / 1004;
  margin: 34px auto clamp(18px, 5vw, 70px) !important;
  overflow: visible !important;
  perspective: 1600px;
  transform-style: preserve-3d;
  contain: layout;
  isolation: isolate;
}

.hero-device-scene {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  pointer-events: none;
}

.hero-device-scene::before,
.hero-device-scene::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: 0;
  border-radius: 999px;
}

.hero-device-scene::before {
  left: 8%;
  right: 12%;
  bottom: -2.8%;
  height: 15.5%;
  background:
    radial-gradient(ellipse at 50% 52%, rgba(15, 23, 42, 0.18) 0%, rgba(15, 23, 42, 0.11) 38%, rgba(15, 23, 42, 0) 72%);
  filter: blur(18px);
  opacity: 0.82;
  transform: translate3d(-3%, 0, -1px);
}

.hero-device-scene::after {
  right: 5.5%;
  bottom: 24%;
  width: clamp(134px, 14.5vw, 208px);
  height: 7.2%;
  background:
    radial-gradient(ellipse at 50% 50%, rgba(15, 23, 42, 0.17) 0%, rgba(15, 23, 42, 0.08) 42%, rgba(15, 23, 42, 0) 72%);
  filter: blur(13px);
  opacity: calc(var(--hero-phone-opacity) * 0.72);
  transform: translate3d(var(--hero-phone-x), var(--hero-phone-y), -1px) scale(var(--hero-phone-scale));
  transform-origin: 52% 50%;
}

.hero-device-layer {
  position: absolute;
  transform-style: preserve-3d;
  will-change: transform, opacity;
}

.hero-device-layer--macbook {
  inset: 0;
  z-index: 1;
  transform: translate3d(var(--hero-mac-x), var(--hero-mac-y), 0) scale(var(--hero-mac-scale));
  transform-origin: 47% 76%;
}

.hero-device-layer--phone {
  z-index: 2;
  top: 18%;
  right: 5.5%;
  width: clamp(136px, 13.35vw, 195px);
  aspect-ratio: 853 / 1844;
  opacity: var(--hero-phone-opacity);
  transform: translate3d(var(--hero-phone-x), var(--hero-phone-y), 80px) scale(var(--hero-phone-scale));
  transform-origin: 52% 72%;
  filter: drop-shadow(0 18px 22px rgba(18, 24, 38, 0.13));
}

.hero-device-image {
  position: absolute;
  inset: 0;
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  object-fit: contain;
  object-position: center;
  border-radius: 0 !important;
  box-shadow: none !important;
  animation: none !important;
  backface-visibility: hidden;
  will-change: opacity, transform;
}

.hero-device-image--macbook-front {
  filter: drop-shadow(0 30px 44px rgba(18, 24, 38, 0.15));
}

.hero-device-image--phone-front {
  opacity: 1;
}

@media (max-width: 900px) {
  .hero-device-stage {
    width: min(100%, 760px) !important;
  }

  .hero-device-layer--phone {
    top: 10%;
    right: 0%;
    width: clamp(110px, 17.8vw, 154px);
  }
}

@media (max-width: 640px) {
  .hero-device-stage {
    width: min(100%, 520px) !important;
    margin-top: 24px !important;
    margin-bottom: 26px !important;
  }

  .hero-device-layer--phone {
    top: 8%;
    right: -1%;
    width: clamp(76px, 19vw, 92px);
    filter: drop-shadow(0 16px 24px rgba(18, 24, 38, 0.15));
  }

  .hero-device-scene::before {
    left: 7%;
    right: 11%;
    bottom: -1.5%;
    height: 14%;
    filter: blur(12px);
    opacity: 0.72;
  }

  .hero-device-scene::after {
    right: -1%;
    bottom: 44%;
    width: clamp(76px, 19vw, 92px);
    height: 6.8%;
    filter: blur(9px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-device-stage {
    --hero-mac-x: 0%;
    --hero-mac-y: 0%;
    --hero-mac-scale: 1;
    --hero-phone-opacity: 0;
    --hero-phone-x: 30%;
    --hero-phone-y: 4%;
    --hero-phone-scale: 0.82;
  }
}

/* Desktop header motion pass 2026-08-18 */
.site-header {
  overflow: visible;
  border-bottom: 0;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(18px) saturate(132%);
  -webkit-backdrop-filter: blur(18px) saturate(132%);
  transition:
    height 320ms var(--ease-enter),
    background 260ms var(--ease-state),
    box-shadow 260ms var(--ease-state),
    border-color 260ms var(--ease-state),
    backdrop-filter 260ms var(--ease-state);
}

.site-header.is-scrolled {
  border-bottom: 0;
  box-shadow: 0 10px 34px rgba(21, 25, 37, 0.045);
}

.site-header__inner {
  position: relative;
  transition:
    transform 320ms var(--ease-enter),
    width 320ms var(--ease-enter),
    gap 260ms var(--ease-state);
}

.site-header__inner::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(225, 230, 238, 0), rgba(190, 199, 214, 0.7) 9%, rgba(190, 199, 214, 0.78) 91%, rgba(225, 230, 238, 0));
  opacity: 0.72;
  pointer-events: none;
  transition:
    opacity 260ms var(--ease-state),
    transform 320ms var(--ease-enter);
}

.site-header__inner::after {
  content: none;
  display: none;
}

.site-header .brand,
.site-header .brand img,
.site-header .site-nav,
.site-header .site-nav a,
.site-header .header-login,
.site-header .button {
  transition:
    width 320ms var(--ease-enter),
    min-height 320ms var(--ease-enter),
    padding 320ms var(--ease-enter),
    gap 260ms var(--ease-state),
    font-size 260ms var(--ease-state),
    opacity 260ms var(--ease-state),
    color 180ms var(--ease-state),
    background 180ms var(--ease-state),
    box-shadow 180ms var(--ease-state),
    transform 180ms var(--ease-state);
}

@media (min-width: 981px) {
  .site-header.is-compact {
    height: 58px;
    background: rgba(255, 255, 255, 0.74);
    backdrop-filter: blur(22px) saturate(160%);
    -webkit-backdrop-filter: blur(22px) saturate(160%);
    box-shadow: 0 12px 32px rgba(21, 25, 37, 0.055);
  }

  .site-header.is-compact .container.site-header__inner {
    width: min(calc(100% - 132px), 1120px);
    gap: 14px;
  }

  .site-header.is-compact .brand,
  .site-header.is-compact .brand img {
    width: 150px;
  }

  .site-header.is-compact .site-nav {
    gap: 14px;
  }

  .site-header.is-compact .site-nav a,
  .site-header.is-compact .header-login {
    min-height: 38px;
    font-size: 14px;
  }

  .site-header.is-compact .button {
    min-height: 40px;
    padding-inline: 18px;
    box-shadow: 0 14px 30px rgba(36, 84, 245, 0.18);
  }

  .site-header.is-compact .button-quiet {
    opacity: 0.84;
  }

  .site-header.is-compact .site-header__inner::before,
  .site-header.is-compact .site-header__inner::after {
    opacity: 0.56;
    transform: scaleX(0.96);
  }
}

@media (max-width: 980px) {
  .site-header__inner::before,
  .site-header__inner::after {
    left: 24px;
    right: 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .site-header,
  .site-header__inner,
  .site-header__inner::before,
  .site-header__inner::after,
  .site-header .brand,
  .site-header .brand img,
  .site-header .site-nav,
  .site-header .site-nav a,
  .site-header .header-login,
  .site-header .button {
    transition-duration: 0.01ms !important;
  }
}

/* Home motion refinement 2026-08-19 */
.hero-device-stage {
  --hero-mac-x: 0%;
  --hero-mac-y: 0%;
  --hero-mac-scale: 1;
  --hero-phone-opacity: 0;
  --hero-phone-x: 52%;
  --hero-phone-y: 0%;
  --hero-phone-scale: 0.74;
}

.hero-device-stage.is-device-shifted {
  --hero-mac-x: -2.2%;
  --hero-mac-scale: 0.965;
  --hero-phone-opacity: 1;
  --hero-phone-x: 0%;
  --hero-phone-scale: 1;
}

.hero-device-layer--macbook,
.hero-device-layer--phone,
.hero-device-scene::after {
  transition:
    transform 880ms cubic-bezier(0.16, 1, 0.3, 1),
    opacity 620ms cubic-bezier(0.2, 0, 0, 1),
    filter 620ms cubic-bezier(0.2, 0, 0, 1);
}

.section--stock {
  padding-block: 104px;
  overflow: hidden;
}

.section--stock::before {
  animation-duration: 26s;
  opacity: 0.58;
}

.section--stock::after {
  left: -26vw;
  right: auto;
  top: 14%;
  bottom: auto;
  z-index: 0;
  width: 146vw;
  height: 62%;
  border: 0;
  border-radius: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.92), rgba(84, 228, 255, 0.22), rgba(255, 255, 255, 0)),
    linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(164, 184, 255, 0.82), rgba(84, 228, 255, 0.18), rgba(255, 255, 255, 0)),
    linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.74), rgba(36, 84, 245, 0.18), rgba(255, 255, 255, 0));
  background-repeat: no-repeat;
  background-size: 260px 2px, 178px 1px, 214px 2px;
  background-position: 9% 22%, 42% 66%, 72% 34%;
  box-shadow: none;
  filter:
    drop-shadow(0 0 9px rgba(84, 228, 255, 0.32))
    drop-shadow(0 0 18px rgba(36, 84, 245, 0.18));
  opacity: 0;
  pointer-events: none;
  transform: rotate(-18deg) translate3d(-18%, -8%, 0);
  animation: stock-shooting-stars 7.6s linear infinite;
}

.section--stock .stock-sync-panel {
  --stock-panel-radius: 44px;
  min-height: 500px;
  grid-template-columns: minmax(430px, 0.94fr) minmax(0, 1.06fr);
  border-radius: var(--stock-panel-radius);
  border-color: rgba(190, 205, 232, 0.24);
  align-items: center;
  overflow: hidden;
  corner-shape: initial;
}

.section--stock .stock-sync-panel::before {
  inset: 0;
  border-radius: var(--stock-panel-radius);
}

.section--stock .stock-sync-panel::after {
  content: "";
  position: absolute;
  inset: 1px;
  z-index: -1;
  border-radius: calc(var(--stock-panel-radius) - 1px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  pointer-events: none;
}

.section--stock .stock-sync-panel.reveal,
.section--fiscal .fiscal-band.reveal {
  opacity: 1;
  transform: none;
  transition: none;
}

.section--stock .operation-band__copy {
  min-height: 100%;
  display: grid;
  align-content: center;
}

.section--stock .operation-band__copy h2 {
  max-width: 540px;
  margin-bottom: 14px;
  font-size: clamp(38px, 3.6vw, 54px);
  line-height: 1.02;
}

.section--stock .stock-sync-panel p {
  max-width: 470px;
  margin-bottom: 0;
  color: rgba(226, 232, 240, 0.86);
  font-size: clamp(17px, 1.35vw, 21px);
  line-height: 1.42;
}

.section--stock .stock-sync-panel:not(.is-visible) .operation-band__copy,
.section--stock .stock-sync-panel:not(.is-visible) .inventory-sync-stage {
  opacity: 0;
}

.section--stock .stock-sync-panel:not(.is-visible) .operation-band__copy {
  transform: translate3d(-46px, 0, 0);
}

.section--stock .stock-sync-panel:not(.is-visible) .inventory-sync-stage {
  transform: translate3d(46px, 0, 0);
}

.section--stock .stock-sync-panel.is-visible .operation-band__copy,
.section--stock .stock-sync-panel.is-visible .inventory-sync-stage {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition:
    opacity 640ms var(--ease-enter),
    transform 780ms var(--ease-enter);
}

.section--stock .stock-sync-panel.is-visible .inventory-sync-stage {
  transition-delay: 110ms;
}

.section--fiscal .fiscal-band {
  grid-template-columns: minmax(0, 0.88fr) minmax(430px, 1.12fr);
  overflow: hidden;
}

.section--fiscal .fiscal-heading {
  max-width: 680px;
  font-size: clamp(38px, 3vw, 50px);
}

.section--fiscal .fiscal-heading span:first-child,
.section--fiscal .fiscal-heading span:nth-child(2) {
  white-space: normal;
}

.section--fiscal .fiscal-band:not(.is-visible) .fiscal-flow-visual,
.section--fiscal .fiscal-band:not(.is-visible) .fiscal-heading span,
.section--fiscal .fiscal-band:not(.is-visible) .fiscal-heading em,
.section--fiscal .fiscal-band:not(.is-visible) .fiscal-copy,
.section--fiscal .fiscal-band:not(.is-visible) .fiscal-tags > * {
  opacity: 0;
  transform: translate3d(0, 24px, 0);
}

.section--fiscal .fiscal-band:not(.is-visible) .fiscal-flow-visual {
  transform: translate3d(-38px, 0, 0);
}

.section--fiscal .fiscal-band.is-visible .fiscal-flow-visual,
.section--fiscal .fiscal-band.is-visible .fiscal-heading span,
.section--fiscal .fiscal-band.is-visible .fiscal-heading em,
.section--fiscal .fiscal-band.is-visible .fiscal-copy,
.section--fiscal .fiscal-band.is-visible .fiscal-tags > * {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition:
    opacity 560ms var(--ease-enter),
    transform 700ms var(--ease-enter),
    background-position 780ms var(--ease-enter);
}

.section--fiscal .fiscal-band.is-visible .fiscal-flow-visual {
  transition-delay: 60ms;
}

.section--fiscal .fiscal-heading span,
.section--fiscal .fiscal-heading em {
  background-image: linear-gradient(90deg, var(--ink) 0%, var(--ink) 38%, var(--blue) 52%, var(--ink) 74%);
  background-size: 240% 100%;
  background-position: 100% 0;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.section--fiscal .fiscal-heading em {
  background-image: linear-gradient(90deg, var(--blue-dark) 0%, var(--blue) 42%, #22d3ee 62%, var(--blue) 100%);
}

.section--fiscal .fiscal-band.is-visible .fiscal-heading span,
.section--fiscal .fiscal-band.is-visible .fiscal-heading em {
  background-position: 0 0;
  transition-delay: calc(var(--i, 0) * 105ms + 90ms);
}

.section--fiscal .fiscal-band.is-visible .fiscal-copy {
  transition-delay: 410ms;
}

.section--fiscal .fiscal-band.is-visible .fiscal-tags > * {
  transition-delay: calc(var(--i, 0) * 85ms + 520ms);
}

.fiscal-status-live i {
  width: 20px;
  height: 20px;
  border: 0;
  background:
    conic-gradient(from 0deg, var(--blue) 0 84deg, rgba(36, 84, 245, 0.18) 84deg 360deg);
  animation: fiscal-status-spin 760ms linear infinite;
  box-shadow: inset 0 0 0 1px rgba(36, 84, 245, 0.08);
}

.fiscal-status-live i::after {
  content: "";
  position: absolute;
  inset: 4px;
  border-radius: inherit;
  background: #fff;
  opacity: 1;
  transform: scale(1);
  transition: opacity 220ms var(--ease-state), transform 260ms var(--ease-enter);
}

.fiscal-status-live i::before {
  z-index: 2;
  left: 6px;
  top: 4px;
  width: 5px;
  height: 8px;
  border-width: 0 2px 2px 0;
  border-radius: 1px;
  transform: rotate(45deg) scale(0.58);
}

.fiscal-status-live.is-done i {
  border: 0;
  background: var(--green);
  animation: fiscal-icon-fill-check 460ms cubic-bezier(0.16, 1, 0.3, 1) both;
  box-shadow: 0 0 0 5px rgba(19, 132, 95, 0.08);
}

.fiscal-status-live.is-done i::after {
  opacity: 0;
  transform: scale(0.42);
}

.fiscal-status-live.is-done i::before {
  opacity: 1;
  transform: rotate(45deg) scale(1);
}

.pricing-title {
  display: flex;
  flex-wrap: wrap;
  gap: 0.22em;
}

.pricing-title span {
  display: inline-block;
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.pricing-section--alive .container:not(.is-visible) .pricing-title span,
.pricing-section--alive .container:not(.is-visible) .plan {
  opacity: 0;
  transform: translate3d(0, 28px, 0);
}

.pricing-section--alive .container.is-visible .pricing-title span {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition:
    opacity 520ms var(--ease-enter),
    transform 650ms var(--ease-enter);
  transition-delay: calc(var(--i, 0) * 70ms + 60ms);
}

.pricing-section--alive .container.is-visible .plan {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition:
    opacity 560ms var(--ease-enter),
    transform 720ms var(--ease-enter),
    border-color 180ms var(--ease-state),
    box-shadow 220ms var(--ease-state);
  transition-delay: calc(var(--i, 0) * 88ms + 220ms);
}

@keyframes stock-shooting-stars {
  0% {
    opacity: 0;
    transform: rotate(-18deg) translate3d(-20%, -8%, 0);
  }

  9%,
  36% {
    opacity: 0.74;
  }

  54% {
    opacity: 0;
    transform: rotate(-18deg) translate3d(22%, 8%, 0);
  }

  100% {
    opacity: 0;
    transform: rotate(-18deg) translate3d(22%, 8%, 0);
  }
}

@keyframes fiscal-icon-fill-check {
  0% {
    transform: scale(0.9) rotate(0deg);
  }

  62% {
    transform: scale(1.08) rotate(0deg);
  }

  100% {
    transform: scale(1) rotate(0deg);
  }
}

@media (max-width: 900px) {
  .section--stock .stock-sync-panel {
    --stock-panel-radius: 34px;
    grid-template-columns: 1fr;
  }

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

  .pricing-title {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .hero-device-stage.is-device-shifted {
    --hero-mac-x: -2.6%;
    --hero-mac-scale: 0.985;
  }

  .section--stock {
    padding-block: 72px;
  }

  .section--stock .stock-sync-panel:not(.is-visible) .operation-band__copy,
  .section--stock .stock-sync-panel:not(.is-visible) .inventory-sync-stage,
  .section--fiscal .fiscal-band:not(.is-visible) .fiscal-flow-visual {
    transform: translate3d(0, 30px, 0);
  }

  .section--stock .operation-band__copy h2 {
    font-size: 34px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-device-stage,
  .hero-device-stage.is-device-shifted {
    --hero-mac-x: 0%;
    --hero-mac-scale: 1;
    --hero-phone-opacity: 0;
    --hero-phone-x: 52%;
    --hero-phone-scale: 0.74;
  }

  .hero-device-layer--macbook,
  .hero-device-layer--phone,
  .hero-device-scene::after,
  .section--stock::after,
  .section--stock .operation-band__copy,
  .section--stock .inventory-sync-stage,
  .section--fiscal .fiscal-flow-visual,
  .section--fiscal .fiscal-heading span,
  .section--fiscal .fiscal-heading em,
  .section--fiscal .fiscal-copy,
  .section--fiscal .fiscal-tags > *,
  .pricing-title span,
  .pricing-section .plan {
    animation: none !important;
    transition: none !important;
    transform: none !important;
  }

  .section--stock .stock-sync-panel:not(.is-visible) .operation-band__copy,
  .section--stock .stock-sync-panel:not(.is-visible) .inventory-sync-stage,
  .section--fiscal .fiscal-band:not(.is-visible) .fiscal-flow-visual,
  .section--fiscal .fiscal-band:not(.is-visible) .fiscal-heading span,
  .section--fiscal .fiscal-band:not(.is-visible) .fiscal-heading em,
  .section--fiscal .fiscal-band:not(.is-visible) .fiscal-copy,
  .section--fiscal .fiscal-band:not(.is-visible) .fiscal-tags > *,
  .pricing-section .container:not(.is-visible) .pricing-title span,
  .pricing-section .container:not(.is-visible) .plan {
    opacity: 1;
  }
}

/* Fiscal heading keeps its original composition while words reveal individually. */
.section--fiscal .fiscal-heading {
  display: block;
}

.section--fiscal .fiscal-heading .fiscal-heading__line,
.section--fiscal .fiscal-band:not(.is-visible) .fiscal-heading .fiscal-heading__line,
.section--fiscal .fiscal-band.is-visible .fiscal-heading .fiscal-heading__line {
  display: flex;
  flex-wrap: nowrap;
  column-gap: 0.18em;
  width: fit-content;
  max-width: 100%;
  opacity: 1;
  transform: none;
  transition: none;
  background: none;
  color: inherit;
  -webkit-background-clip: initial;
  background-clip: initial;
}

.section--fiscal .fiscal-heading .fiscal-heading__line--highlight,
.section--fiscal .fiscal-band.is-visible .fiscal-heading .fiscal-heading__line--highlight,
.section--fiscal .fiscal-band:not(.is-visible) .fiscal-heading .fiscal-heading__line--highlight {
  position: relative;
  color: var(--blue);
  font-style: normal;
  z-index: 0;
}

.section--fiscal .fiscal-heading .fiscal-heading__word {
  display: inline-block;
  opacity: 0;
  transform: translate3d(0, 30px, 0);
  background-image: linear-gradient(90deg, var(--ink) 0%, var(--ink) 38%, var(--blue) 52%, var(--ink) 74%);
  background-size: 240% 100%;
  background-position: 100% 0;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  transition:
    opacity 720ms var(--ease-enter),
    transform 860ms var(--ease-enter),
    background-position 920ms var(--ease-enter);
  transition-delay: calc(var(--i, 0) * 84ms + 90ms);
  will-change: opacity, transform;
}

.section--fiscal .fiscal-heading .fiscal-heading__word--highlight {
  background-image: linear-gradient(90deg, var(--blue-dark) 0%, var(--blue) 42%, #22d3ee 62%, var(--blue) 100%);
}

.section--fiscal .fiscal-band.is-visible .fiscal-heading .fiscal-heading__word {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  background-position: 0 0;
}

.section--fiscal .fiscal-heading .fiscal-heading__line--highlight::after {
  opacity: 0;
  transform: translate3d(0, 18px, 0) rotate(-1.5deg);
  transform-origin: center;
  transition:
    opacity 520ms var(--ease-enter),
    transform 680ms var(--ease-enter);
}

.section--fiscal .fiscal-band.is-visible .fiscal-heading .fiscal-heading__line--highlight::after {
  opacity: 1;
  transform: translate3d(0, 0, 0) rotate(-1.5deg);
  transition-delay: 900ms;
}

@media (max-width: 640px) {
  .section--fiscal .fiscal-heading .fiscal-heading__line,
  .section--fiscal .fiscal-band:not(.is-visible) .fiscal-heading .fiscal-heading__line,
  .section--fiscal .fiscal-band.is-visible .fiscal-heading .fiscal-heading__line {
    flex-wrap: wrap;
  }
}

@media (prefers-reduced-motion: reduce) {
  .section--fiscal .fiscal-heading .fiscal-heading__word {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
    background-position: 0 0 !important;
  }

  .section--fiscal .fiscal-heading .fiscal-heading__line--highlight::after {
    opacity: 1 !important;
    transform: rotate(-1.5deg) !important;
    transition: none !important;
  }
}

/* Home channels and WMS refinement pass 2026-08-20 */
.section--channels .channel-title {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.24em;
}

.section--channels .channel-title span {
  display: inline-block;
  opacity: 0;
  transform: translate3d(0, 24px, 0);
  transition:
    opacity 720ms var(--ease-enter),
    transform 820ms var(--ease-enter);
  transition-delay: calc(var(--i, 0) * 80ms + 80ms);
  will-change: opacity, transform;
}

.section--channels .container.is-visible .channel-title span {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.section--channels .channel-grid.reveal-sequence > * {
  transition-delay: calc(var(--i, 0) * 92ms + 540ms);
}

.section--channels .capability-grid--home.reveal-sequence > * {
  transition-delay: calc(var(--i, 0) * 72ms + 1020ms);
}

.section--channels .container:not(.is-visible) .channel-grid.reveal-sequence > *,
.section--channels .container:not(.is-visible) .capability-grid--home.reveal-sequence > * {
  opacity: 0 !important;
  transform: perspective(900px) rotateX(0deg) rotateY(0deg) translate3d(0, 34px, 0) !important;
}

.flow-rack-brace {
  fill: none;
  stroke: rgba(122, 133, 152, 0.44);
  stroke-width: 3;
  stroke-linecap: round;
}

.flow-rack-upright {
  fill: url(#homeWmsRackPost);
  filter: drop-shadow(0 5px 7px rgba(15, 23, 42, 0.14));
}

.flow-rack-upright--middle {
  opacity: 0.9;
}

.flow-rack-beam {
  fill: url(#homeWmsRackBeam);
  filter: drop-shadow(0 7px 9px rgba(36, 84, 245, 0.18));
}

.flow-rack-slots {
  fill: none;
  stroke: rgba(15, 23, 42, 0.18);
  stroke-width: 1.6;
  stroke-linecap: round;
}

.flow-stock-row {
  filter: drop-shadow(0 5px 6px rgba(15, 23, 42, 0.12));
}

.flow-stock-item {
  transform-box: fill-box;
  transform-origin: center;
}

.flow-stock-row--top .flow-stock-item {
  animation: wmsShelfFloatTop 5.8s var(--ease-state) infinite;
}

.flow-stock-row--middle .flow-stock-item {
  animation: wmsShelfFloatMiddle 6.3s var(--ease-state) infinite;
}

.flow-stock-row--bottom .flow-stock-item {
  animation: wmsShelfFloatBottom 6.7s var(--ease-state) infinite;
}

.flow-stock-icon-bg {
  fill: rgba(255, 255, 255, 0.96);
  stroke: rgba(36, 84, 245, 0.28);
  stroke-width: 2;
}

.flow-stock-icon-fill {
  fill: #f6f9ff;
  stroke: rgba(36, 84, 245, 0.32);
  stroke-width: 2;
  stroke-linejoin: round;
}

.flow-stock-icon-screen {
  fill: rgba(36, 84, 245, 0.12);
  stroke: rgba(36, 84, 245, 0.28);
  stroke-width: 1.6;
}

.flow-stock-icon-detail {
  fill: none;
  stroke: rgba(36, 84, 245, 0.48);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.flow-stock-icon-dot {
  fill: rgba(36, 84, 245, 0.72);
}

.flow-box-inside {
  fill: rgba(121, 76, 33, 0.18);
}

.flow-box-body {
  fill: url(#homeWmsBox);
}

.flow-box-flap,
.flow-box-front-flap {
  fill: rgba(226, 178, 115, 0.98);
  stroke: rgba(121, 76, 33, 0.34);
  stroke-width: 1.8;
  stroke-linejoin: round;
  transform-box: fill-box;
  animation: flowFlapClose var(--wms-cycle) var(--ease-enter) infinite;
}

.flow-box-flap {
  transform-origin: 50% 100%;
}

.flow-box-front-flap {
  transform-origin: 50% 0%;
}

.flow-box-flap--left {
  --flap-closed: rotate(26deg) translate3d(14px, 16px, 0);
}

.flow-box-flap--right {
  --flap-closed: rotate(-26deg) translate3d(-14px, 16px, 0);
}

.flow-box-front-flap--left {
  --flap-closed: rotate(-19deg) translate3d(13px, -9px, 0);
}

.flow-box-front-flap--right {
  --flap-closed: rotate(19deg) translate3d(-13px, -9px, 0);
}

@keyframes wmsShelfFloatTop {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(0, -2px, 0); }
}

@keyframes wmsShelfFloatMiddle {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(0, 2px, 0); }
}

@keyframes wmsShelfFloatBottom {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(0, -1px, 0); }
}

@keyframes flowFlapClose {
  0%, 62% {
    transform: none;
  }

  76%, 100% {
    transform: var(--flap-closed);
  }
}

@media (max-width: 640px) {
  .section--channels .channel-title {
    justify-content: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  .section--channels .channel-title span,
  .section--channels .channel-grid.reveal-sequence > *,
  .section--channels .capability-grid--home.reveal-sequence > *,
  .section--wms .wms-title__word,
  body[data-page="precos"] .pricing-page-hero .page-hero__actions,
  body[data-page="precos"] .pricing-section--entry .pricing-toolbar h2,
  body[data-page="precos"] .pricing-section--entry .billing-toggle,
  body[data-page="precos"] .pricing-section--entry .plan,
  body[data-page="precos"] .compare-scroll .compare-row,
  body[data-page="implantacao"] .implementation-hero.reveal .implementation-points article,
  body[data-page="implantacao"] .steps--compact.reveal .step,
  .flow-stock-row--top .flow-stock-item,
  .flow-stock-row--middle .flow-stock-item,
  .flow-stock-row--bottom .flow-stock-item,
  .flow-box-flap,
  .flow-box-front-flap {
    animation: none !important;
    transition: none !important;
    transform: none !important;
    opacity: 1 !important;
  }
}

/* Home WMS and marketplace entrance polish 2026-08-20 */
.word-reveal {
  --word-delay-base: 90ms;
  --word-delay-step: 58ms;
}

.word-reveal__word {
  display: inline-block;
  opacity: 0;
  transform: translate3d(0, 26px, 0);
  transition:
    opacity 720ms var(--ease-enter),
    transform 860ms var(--ease-enter);
  transition-delay: calc(var(--word-delay-base) + var(--i, 0) * var(--word-delay-step));
  will-change: opacity, transform;
}

.word-reveal.is-visible .word-reveal__word,
.reveal.is-visible .word-reveal .word-reveal__word,
.reveal.is-visible.word-reveal .word-reveal__word {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

p.word-reveal,
.section-head p.word-reveal,
.operation-band__copy p.word-reveal,
.page-hero p.word-reveal,
.app-hero__copy p.word-reveal,
.app-device-copy p.word-reveal,
.implementation-cover__copy p.word-reveal {
  --word-delay-base: 340ms;
}

.section--stock .stock-sync-panel:not(.is-visible) .operation-band__copy,
.section--stock .stock-sync-panel.is-visible .operation-band__copy {
  opacity: 1;
  transform: none;
  transition: none;
}

.section--stock .operation-band__copy h2.word-reveal {
  --word-delay-base: 120ms;
}

.section--stock .operation-band__copy p.word-reveal {
  --word-delay-base: 420ms;
}

.feature-strip p.word-reveal {
  --word-delay-base: 240ms;
}

.section--wms .wms-title__line {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.2em;
  overflow: hidden;
  text-align: center;
  width: 100%;
}

.section--wms .wms-title__line--brand {
  gap: 0;
}

.section--wms .wms-title__word {
  display: inline-block;
  opacity: 0;
  transform: translate3d(0, 28px, 0);
  transition:
    opacity 720ms var(--ease-enter),
    transform 860ms var(--ease-enter);
  transition-delay: calc(var(--i, 0) * 86ms + 130ms);
  will-change: opacity, transform;
}

.section--wms .wms-motion-band.is-visible .wms-title__word {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.section--channels .channel-grid.reveal-sequence > *,
.section--channels .capability-grid--home.reveal-sequence > * {
  opacity: 0;
  transform: perspective(900px) rotateX(0deg) rotateY(0deg) translate3d(0, 36px, 0);
  pointer-events: none;
}

.section--channels .channel-grid.reveal-sequence > * {
  transition:
    opacity 900ms var(--ease-enter) calc(var(--i, 0) * 92ms + 540ms),
    transform 980ms var(--ease-enter) calc(var(--i, 0) * 92ms + 540ms),
    border-color 180ms var(--ease-state),
    box-shadow 220ms var(--ease-state);
}

.section--channels .capability-grid--home.reveal-sequence > * {
  transition:
    opacity 900ms var(--ease-enter) calc(var(--i, 0) * 72ms + 1020ms),
    transform 980ms var(--ease-enter) calc(var(--i, 0) * 72ms + 1020ms),
    border-color 180ms var(--ease-state),
    box-shadow 220ms var(--ease-state);
}

.section--channels .container.is-visible .channel-grid.reveal-sequence > *,
.section--channels .container.is-visible .capability-grid--home.reveal-sequence > * {
  opacity: 1;
  transform: perspective(900px) rotateX(0deg) rotateY(0deg) translate3d(0, 0, 0);
}

.section--channels .container.is-entry-complete .channel-grid.reveal-sequence > *,
.section--channels .container.is-entry-complete .capability-grid--home.reveal-sequence > * {
  pointer-events: auto;
}

.section--channels .container.is-visible .channel-card:hover,
.section--channels .container.is-visible .channel-card:focus-within,
.section--channels .container.is-visible .capability-grid article:hover,
.section--channels .container.is-visible .capability-grid article:focus-within,
.section--channels .container.is-visible .channel-card.is-tilting,
.section--channels .container.is-visible .capability-grid article.is-tilting {
  transform: perspective(900px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y)) translateY(-7px);
}

/* Home WMS flow refinement 2026-08-20 */
.section--wms {
  --wms-cycle: 6.6s;
}

.section--wms .wms-pack-flow::before,
.section--wms .flow-lane,
.section--wms .flow-rack-brace,
.section--wms .flow-rack-upright--middle,
.section--wms .flow-rack-slots,
.section--wms .flow-shelf-picked-product {
  display: none !important;
}

.section--wms .flow-rack-upright {
  fill: url(#homeWmsRackPost);
  filter: drop-shadow(0 5px 7px rgba(15, 23, 42, 0.13));
}

.section--wms .flow-rack-beam {
  fill: url(#homeWmsRackBeam);
  filter: drop-shadow(0 7px 9px rgba(36, 84, 245, 0.18));
}

.section--wms .wms-pack-steps {
  left: 35%;
  right: 10%;
}

#homeWmsStockPhone .flow-stock-icon-bg,
.flow-product-body {
  fill: #111827;
  stroke: rgba(15, 23, 42, 0.72);
}

#homeWmsStockPhone .flow-stock-icon-screen,
.flow-product-screen {
  fill: #dbeafe;
  stroke: rgba(59, 130, 246, 0.34);
}

#homeWmsStockLaptop .flow-stock-icon-bg {
  fill: #64748b;
  stroke: rgba(51, 65, 85, 0.58);
}

#homeWmsStockLaptop .flow-stock-icon-fill {
  fill: #94a3b8;
  stroke: rgba(51, 65, 85, 0.55);
}

#homeWmsStockLaptop .flow-stock-icon-detail {
  stroke: rgba(15, 23, 42, 0.58);
}

#homeWmsStockDuck .flow-stock-icon-fill {
  fill: #facc15;
  stroke: rgba(202, 138, 4, 0.66);
}

#homeWmsStockDuck .flow-stock-icon-detail {
  stroke: rgba(120, 53, 15, 0.58);
}

#homeWmsStockDuck .flow-stock-icon-dot {
  fill: #111827;
}

#homeWmsStockBottle .flow-stock-icon-bg {
  fill: #22c55e;
  stroke: rgba(21, 128, 61, 0.58);
}

#homeWmsStockBottle .flow-stock-icon-detail {
  stroke: rgba(6, 95, 70, 0.58);
}

#homeWmsStockSneaker .flow-stock-icon-fill {
  fill: #ef4444;
  stroke: rgba(153, 27, 27, 0.56);
}

#homeWmsStockSneaker .flow-stock-icon-detail {
  stroke: rgba(127, 29, 29, 0.62);
}

#homeWmsStockHeadphones .flow-stock-icon-fill {
  fill: #8b5cf6;
  stroke: rgba(91, 33, 182, 0.54);
}

#homeWmsStockHeadphones .flow-stock-icon-detail {
  stroke: rgba(67, 56, 202, 0.58);
}

#homeWmsStockShirt .flow-stock-icon-fill {
  fill: #14b8a6;
  stroke: rgba(15, 118, 110, 0.58);
}

#homeWmsStockShirt .flow-stock-icon-detail {
  stroke: rgba(19, 78, 74, 0.55);
}

#homeWmsStockWatch .flow-stock-icon-fill {
  fill: #0f172a;
  stroke: rgba(15, 23, 42, 0.62);
}

#homeWmsStockWatch .flow-stock-icon-bg {
  fill: #f8fafc;
  stroke: rgba(15, 23, 42, 0.36);
}

#homeWmsStockWatch .flow-stock-icon-detail {
  stroke: rgba(15, 23, 42, 0.72);
}

#homeWmsParcel .flow-parcel-top {
  fill: #d6a063;
  stroke: rgba(121, 76, 33, 0.45);
}

#homeWmsParcel .flow-parcel-side {
  fill: #b7793b;
  stroke: rgba(121, 76, 33, 0.48);
}

#homeWmsParcel .flow-parcel-front {
  fill: #c88a4b;
  stroke: rgba(121, 76, 33, 0.5);
}

#homeWmsParcel .flow-parcel-lines {
  stroke: rgba(92, 55, 24, 0.62);
}

.flow-product-camera,
.flow-product-home {
  fill: rgba(248, 250, 252, 0.9);
}

.flow-product-glare {
  stroke: rgba(125, 211, 252, 0.62);
}

.flow-pick-station {
  display: none;
  animation: none;
}

.flow-box-back,
.flow-box-inside,
.flow-box-edge,
.flow-box-tape,
.flow-box-flap,
.flow-box-front-flap {
  display: none;
}

.flow-box-body {
  fill: #b98245;
  stroke: none;
}

.flow-box-flap-line {
  fill: none;
  stroke: #b98245;
  stroke-width: 1.8;
  stroke-linecap: round;
  transform-box: view-box;
  animation: flowFlapClose var(--wms-cycle) var(--ease-enter) infinite;
}

.flow-box-flap-line--left {
  transform-origin: 32px 78px;
  --flap-closed: rotate(135deg);
}

.flow-box-flap-line--right {
  transform-origin: 128px 78px;
  --flap-closed: rotate(-135deg);
}

.flow-stock-row--top .flow-moving-product {
  transform-box: view-box;
  transform-origin: 0 0;
  animation: flowProductMove var(--wms-cycle) var(--ease-enter) infinite;
  filter: drop-shadow(0 6px 8px rgba(15, 23, 42, 0.14));
}

.flow-box-front {
  transform-box: view-box;
  transform-origin: 0 0;
  animation: flowBoxTravel var(--wms-cycle) var(--ease-enter) infinite;
}

.flow-box-label {
  animation: flowLabelAppear var(--wms-cycle) var(--ease-enter) infinite;
}

.flow-box-label rect {
  fill: rgba(255, 255, 255, 0.96);
  stroke: rgba(121, 76, 33, 0.16);
}

.flow-box-label path {
  stroke: rgba(71, 85, 105, 0.72);
  stroke-width: 2;
}

@keyframes flowProductMove {
  0%, 15.15% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }

  20.45%, 32.58% {
    opacity: 1;
    transform: translate3d(238px, 30px, 0) scale(1.38);
  }

  38.64%, 45.45% {
    opacity: 1;
    transform: translate3d(383px, 18px, 0) scale(1.38);
  }

  61.36%, 63% {
    opacity: 1;
    transform: translate3d(383px, 110px, 0) scale(1.38);
  }

  63.1%, 100% {
    opacity: 0;
    transform: translate3d(383px, 110px, 0) scale(1.38);
  }
}

@keyframes flowBoxTravel {
  0%, 32.58% {
    opacity: 0;
    transform: translate(375px, 132px) scale(0.98);
  }

  45.45%, 69.7% {
    opacity: 1;
    transform: translate(375px, 104px) scale(1);
  }

  75%, 92% {
    opacity: 1;
    transform: translate(522px, 104px) scale(1);
  }

  100% {
    opacity: 0;
    transform: translate(706px, 104px) scale(0.96);
  }
}

@keyframes flowFlapClose {
  0%, 63% {
    transform: none;
  }

  70%, 100% {
    transform: var(--flap-closed);
  }
}

@keyframes flowLabelAppear {
  0%, 72% {
    opacity: 0;
    transform: translateY(6px) scale(0.94);
  }

  80%, 100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes wmsStepOne {
  0%, 15.15%, 32.58%, 100% {
    color: #7b8496;
  }

  20.45%, 32% {
    color: var(--blue);
  }
}

@keyframes wmsStepTwo {
  0%, 32.58%, 72%, 100% {
    color: #7b8496;
  }

  38.64%, 70% {
    color: var(--blue);
  }
}

@keyframes wmsStepThree {
  0%, 72%, 100% {
    color: #7b8496;
  }

  75%, 96% {
    color: var(--blue);
  }
}

/* Site content pass: marketplaces, WMS page, app CTA and pricing polish */
.marketplace-soon--logos {
  min-height: 220px;
  padding: 36px 30px 34px;
  border-color: rgba(214, 224, 242, 0.82);
  background:
    radial-gradient(circle at 24% 18%, rgba(36, 84, 245, 0.08), transparent 34%),
    linear-gradient(135deg, #ffffff 0%, #f7fbff 100%);
}

.marketplace-soon__logos {
  position: relative;
  width: min(100%, 310px);
  min-height: 188px;
  margin-bottom: 10px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
  justify-items: center;
  gap: 14px 18px;
}

.marketplace-logo-tile {
  width: 104px;
  height: 82px;
  border: 1px solid rgba(225, 230, 238, 0.9);
  border-radius: 24px;
  background: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 16px 34px rgba(21, 25, 37, 0.09);
}

.marketplace-logo-tile img {
  width: auto;
  max-width: 78px;
  max-height: 42px;
  object-fit: contain;
}

.marketplace-logo-tile--shein {
  z-index: 2;
  transform: translate(-8px, -5px) scale(1.08);
  box-shadow: 0 22px 44px rgba(21, 25, 37, 0.12);
}

.marketplace-logo-tile:nth-child(2) {
  transform: translate(8px, 9px);
}

.marketplace-logo-tile:nth-child(3) {
  transform: translate(-7px, -2px);
}

.marketplace-logo-tile:nth-child(4) {
  transform: translate(9px, 11px);
}

.wms-hero {
  padding: 92px 0 76px;
  overflow: hidden;
  background:
    radial-gradient(circle at 74% 28%, rgba(36, 84, 245, 0.16), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #f3f7ff 100%);
}

.wms-hero__inner {
  display: grid;
  grid-template-columns: minmax(300px, 0.82fr) minmax(420px, 1fr);
  align-items: center;
  gap: 54px;
}

.wms-hero__copy h1 {
  max-width: 610px;
  margin-bottom: 22px;
  font-size: clamp(42px, 5vw, 68px);
}

.wms-hero__brand,
.wms-hero__copy h1 .wms-hero__brand {
  display: block;
  color: var(--blue);
  font-size: clamp(68px, 8vw, 112px);
  line-height: 0.86;
  margin-bottom: 12px;
}

.wms-hero__copy p {
  max-width: 520px;
  font-size: 20px;
}

.wms-hero__copy {
  position: relative;
  z-index: 2;
}

.wms-hero__visual {
  position: relative;
  min-height: 570px;
}

.wms-hero__visual--image {
  display: grid;
  place-items: center;
  min-height: 600px;
  margin-left: -74px;
  overflow: visible;
  pointer-events: none;
}

.wms-hero__image {
  width: min(136%, 960px);
  max-width: none;
  height: auto;
  display: block;
  border-radius: 0;
  box-shadow: none;
  filter: drop-shadow(0 38px 76px rgba(21, 25, 37, 0.18));
  transform: translateX(2%) rotate(-0.8deg);
}

.wms-device-card {
  position: absolute;
  overflow: hidden;
  border: 1px solid rgba(218, 226, 241, 0.92);
  background: #fff;
  box-shadow: 0 28px 70px rgba(21, 25, 37, 0.13);
}

.wms-device-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.wms-device-card--desktop {
  left: 0;
  top: 32px;
  width: min(76%, 470px);
  height: 330px;
  border-radius: 30px;
  transform: rotate(-2.2deg);
}

.wms-device-card--phone {
  right: 6%;
  bottom: 36px;
  width: min(34%, 210px);
  height: 454px;
  border-radius: 34px;
  transform: rotate(4deg);
  z-index: 2;
}

.wms-printer {
  position: absolute;
  left: 9%;
  bottom: 28px;
  z-index: 3;
  width: 230px;
  height: 150px;
}

.wms-printer__body {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 24px;
  height: 88px;
  border-radius: 28px;
  background: #111827;
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 20px 48px rgba(21, 25, 37, 0.22);
}

.wms-printer__body svg {
  width: 42px;
  height: 42px;
  color: #dbeafe;
}

.wms-printer__label {
  position: absolute;
  left: 52px;
  right: 52px;
  bottom: 0;
  height: 62px;
  padding: 13px 14px;
  border: 1px solid rgba(214, 224, 242, 0.9);
  border-radius: 8px;
  background: #fff;
  display: grid;
  gap: 7px;
  box-shadow: 0 10px 22px rgba(21, 25, 37, 0.08);
  animation: wmsLabelPrint 3.8s var(--ease-enter) infinite;
}

.wms-printer__label b {
  display: block;
  height: 5px;
  border-radius: 999px;
  background: #d8e2ff;
}

.wms-printer__label b:nth-child(2) {
  width: 72%;
  background: #c7d2fe;
}

.wms-printer__label b:nth-child(3) {
  width: 46%;
  background: var(--blue);
}

.wms-printer__scan {
  position: absolute;
  right: -20px;
  top: 0;
  width: 80px;
  height: 80px;
  border: 2px solid rgba(36, 84, 245, 0.42);
  border-left-color: transparent;
  border-bottom-color: transparent;
  border-radius: 50%;
  transform: rotate(-18deg);
  animation: wmsScanPulse 2.6s var(--ease-enter) infinite;
}

.wms-flow-section {
  background: #fff;
}

.wms-flow-summary {
  padding: 52px;
  border-radius: var(--radius-band);
  background:
    radial-gradient(circle at 12% 12%, rgba(36, 84, 245, 0.09), transparent 34%),
    linear-gradient(135deg, #f8fbff 0%, #ffffff 100%);
  box-shadow: 0 18px 54px rgba(21, 25, 37, 0.06);
}

.wms-flow-summary .section-head {
  max-width: 820px;
}

.wms-phase-grid {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.wms-phase-grid article {
  min-height: 230px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: #fff;
  display: grid;
  align-content: start;
  gap: 13px;
}

.wms-phase-grid p {
  margin: 0;
  font-size: 15px;
}

.wms-process-list {
  margin-top: 34px;
  display: grid;
  gap: 22px;
}

.wms-process-card {
  min-height: 390px;
  padding: 30px;
  border: 1px solid rgba(218, 226, 241, 0.92);
  border-radius: 38px;
  background: rgba(255, 255, 255, 0.92);
  display: grid;
  grid-template-columns: minmax(240px, 0.68fr) minmax(0, 1.32fr);
  align-items: center;
  gap: 34px;
  overflow: hidden;
  box-shadow: 0 18px 46px rgba(21, 25, 37, 0.055);
}

.wms-process-card--reverse .wms-process-card__copy {
  order: 2;
}

.wms-process-card--reverse .wms-process-media {
  order: 1;
}

.wms-process-card__copy span {
  width: fit-content;
  min-height: 34px;
  padding: 0 14px;
  border-radius: var(--radius-control);
  background: rgba(36, 84, 245, 0.1);
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  font-size: 13px;
  font-weight: 800;
}

.wms-process-card__copy h3 {
  margin: 18px 0 12px;
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 0.98;
}

.wms-process-card__copy p {
  max-width: 430px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 17px;
}

.wms-process-media {
  position: relative;
  min-height: 330px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wms-process-image {
  display: block;
  height: auto;
  filter: drop-shadow(0 24px 44px rgba(21, 25, 37, 0.15));
}

.wms-process-media--dual {
  justify-content: flex-end;
  padding-right: 18px;
}

.wms-process-image--macbook {
  width: min(82%, 620px);
}

.wms-process-image--iphone {
  width: min(27%, 172px);
  margin-left: -72px;
  transform: translateY(24px);
  z-index: 2;
}

.wms-process-image--wide {
  width: min(100%, 700px);
}

.wms-process-media--single {
  justify-content: flex-start;
}

.wms-process-media--printer {
  min-height: 330px;
  overflow: visible;
}

.wms-process-image--printer {
  width: min(92%, 520px);
  filter: drop-shadow(0 24px 44px rgba(21, 25, 37, 0.13));
}

.wms-final-cta {
  min-height: 210px;
  padding: 42px 48px;
  border-radius: var(--radius-band);
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.22), transparent 32%),
    linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  box-shadow: 0 28px 70px rgba(36, 84, 245, 0.2);
}

.wms-final-cta h2,
.wms-final-cta p {
  color: #fff;
}

.wms-final-cta h2 {
  margin-bottom: 8px;
  font-size: clamp(30px, 4vw, 52px);
}

.wms-final-cta p {
  max-width: 620px;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
}

.app-more-cta {
  min-height: 210px;
  padding: 42px 48px;
  border-radius: var(--radius-band);
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.22), transparent 32%),
    linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
  color: #fff;
  display: flex;
  align-items: center;
  gap: 26px;
  box-shadow: 0 28px 70px rgba(36, 84, 245, 0.2);
  corner-shape: squircle;
}

.app-more-cta img {
  width: 108px;
  height: 108px;
  flex: 0 0 108px;
  object-fit: contain;
  filter: drop-shadow(0 18px 30px rgba(0, 0, 0, 0.18));
}

/* Public scheduling page */
.schedule-page {
  min-height: calc(100dvh - 76px);
  padding: 76px 0 96px;
  background: linear-gradient(180deg, #ffffff 0%, #f7f8fb 56%, #ffffff 100%);
}

.schedule-layout {
  min-height: min(780px, calc(100dvh - 112px));
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(430px, 1fr);
  align-items: start;
  gap: 58px;
}

.page-kicker {
  width: fit-content;
  min-height: 30px;
  padding: 0 13px;
  border-radius: var(--radius-control);
  background: rgba(36, 84, 245, 0.1);
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  font-size: 12px;
  font-weight: 800;
}

.schedule-copy h1 {
  max-width: 620px;
  margin: 0 0 18px;
  font-size: clamp(46px, 6.3vw, 76px);
  letter-spacing: 0;
}

.schedule-copy p {
  max-width: 560px;
  font-size: 19px;
}

.schedule-copy__points {
  margin-top: 28px;
  display: grid;
  gap: 12px;
}

.schedule-copy__points span {
  width: fit-content;
  min-height: 48px;
  padding: 0 17px 0 12px;
  border: 1px solid rgba(218, 226, 241, 0.92);
  border-radius: var(--radius-control);
  background: rgba(255, 255, 255, 0.84);
  color: #273044;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 750;
  box-shadow: 0 12px 32px rgba(21, 25, 37, 0.055);
}

.schedule-copy__points i {
  width: 19px;
  height: 19px;
  color: var(--blue);
}

.schedule-card {
  padding: 30px;
  border: 1px solid rgba(218, 226, 241, 0.96);
  border-radius: 42px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 30px 80px rgba(21, 25, 37, 0.11);
}

.schedule-card__head {
  margin-bottom: 22px;
}

.schedule-card__head h2 {
  margin: 0;
  font-size: clamp(26px, 3vw, 36px);
}

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

.schedule-picker {
  margin-top: 22px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 178px;
  gap: 16px;
  align-items: start;
}

.schedule-calendar,
.schedule-times {
  border: 1px solid rgba(218, 226, 241, 0.94);
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 14px 38px rgba(21, 25, 37, 0.055);
}

.schedule-calendar {
  padding: 18px;
}

.schedule-calendar__top {
  min-height: 42px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.schedule-calendar__top strong {
  color: #172033;
  font-size: 17px;
  text-transform: capitalize;
}

.schedule-icon-button {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(218, 226, 241, 0.96);
  border-radius: 14px;
  background: var(--surface-soft);
  color: var(--ink);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: border-color 160ms var(--ease-state), background 160ms var(--ease-state), color 160ms var(--ease-state);
}

.schedule-icon-button:hover,
.schedule-icon-button:focus-visible {
  border-color: rgba(36, 84, 245, 0.38);
  background: var(--blue-soft);
  color: var(--blue);
}

.schedule-icon-button:disabled {
  opacity: 0.42;
  cursor: not-allowed;
}

.schedule-icon-button i {
  width: 18px;
  height: 18px;
}

.schedule-weekdays,
.schedule-days {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 6px;
}

.schedule-weekdays {
  margin-bottom: 8px;
  color: #8b94a5;
  font-size: 12px;
  font-weight: 800;
  text-align: center;
}

.schedule-day {
  min-width: 0;
  min-height: 42px;
  border: 0;
  border-radius: 14px;
  background: transparent;
  color: #273044;
  display: grid;
  place-items: center;
  font-weight: 760;
  cursor: pointer;
  transition: background 160ms var(--ease-state), color 160ms var(--ease-state), transform 160ms var(--ease-state);
}

.schedule-day:hover,
.schedule-day:focus-visible {
  background: var(--blue-soft);
  color: var(--blue);
}

.schedule-day.is-selected {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 10px 20px rgba(36, 84, 245, 0.24);
}

.schedule-day.is-muted {
  color: #c6ccd7;
}

.schedule-day:disabled,
.schedule-day.is-disabled {
  background: #f2f4f8;
  color: #a2abb9;
  cursor: not-allowed;
  text-decoration: line-through;
}

.schedule-day.is-empty {
  pointer-events: none;
  visibility: hidden;
}

.schedule-times {
  min-height: 100%;
  padding: 18px;
  display: grid;
  align-content: center;
  gap: 14px;
}

.schedule-times__label {
  color: #172033;
  display: grid;
  justify-items: center;
  gap: 2px;
  text-align: center;
  line-height: 1;
}

.schedule-times__label strong,
.schedule-times__label small {
  display: block;
}

.schedule-times__label strong {
  font-size: 15px;
  font-weight: 840;
}

.schedule-times__label small {
  color: #7c8798;
  font-size: 12px;
  font-weight: 760;
}

.schedule-time-grid {
  display: grid;
  gap: 8px;
}

.schedule-time {
  min-height: 42px;
  border: 1px solid rgba(218, 226, 241, 0.98);
  border-radius: 15px;
  background: #fff;
  color: #273044;
  font-size: 14px;
  font-weight: 820;
  cursor: pointer;
  transition: border-color 160ms var(--ease-state), background 160ms var(--ease-state), color 160ms var(--ease-state), transform 160ms var(--ease-state);
}

.schedule-time:hover,
.schedule-time:focus-visible {
  border-color: rgba(36, 84, 245, 0.42);
  background: var(--blue-soft);
  color: var(--blue);
}

.schedule-time.is-selected {
  border-color: var(--blue);
  background: var(--blue);
  color: #fff;
  box-shadow: 0 10px 22px rgba(36, 84, 245, 0.22);
}

.schedule-time:disabled {
  background: #f2f4f8;
  color: #98a2b2;
  cursor: not-allowed;
  text-decoration: line-through;
}

.schedule-time small {
  display: block;
  margin-top: -2px;
  color: inherit;
  font-size: 10px;
  font-weight: 750;
  opacity: 0.72;
  text-decoration: none;
}

.schedule-error {
  min-height: 0;
  margin-top: 14px;
  padding: 0;
  color: #a13b2f;
  font-size: 14px;
  font-weight: 700;
}

.schedule-error:not(:empty) {
  min-height: 42px;
  padding: 11px 14px;
  border-radius: 15px;
  background: var(--coral-soft);
}

.schedule-submit {
  width: 100%;
  margin-top: 16px;
}

.schedule-success {
  min-height: min(720px, calc(100dvh - 120px));
  display: grid;
  place-items: center;
}

.schedule-success[hidden] {
  display: none;
}

.schedule-success__card {
  width: min(100%, 620px);
  padding: 54px 38px;
  border: 1px solid rgba(218, 226, 241, 0.96);
  border-radius: var(--radius-band);
  background: #fff;
  text-align: center;
  box-shadow: 0 30px 80px rgba(21, 25, 37, 0.11);
}

.schedule-success__icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 22px;
  border-radius: 50%;
  background: var(--green-soft);
  color: var(--green);
  display: grid;
  place-items: center;
}

.schedule-success__icon i {
  width: 34px;
  height: 34px;
  stroke-width: 3;
}

.schedule-success__card h1 {
  margin-bottom: 14px;
  font-size: clamp(34px, 5vw, 54px);
}

.schedule-success__card p {
  max-width: 430px;
  margin: 0 auto;
  font-size: 18px;
}

/* Checkout */
.checkout-page {
  position: relative;
  overflow: hidden;
  padding: 54px 0 96px;
  background:
    linear-gradient(180deg, #ffffff 0%, #f7f9fc 54%, #ffffff 100%);
}

.checkout-page::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 126px;
  height: 1px;
  background: linear-gradient(90deg, rgba(36, 84, 245, 0), rgba(36, 84, 245, 0.14), rgba(36, 84, 245, 0));
  pointer-events: none;
}

.checkout-intro {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 34px;
}

.checkout-intro h1 {
  max-width: 720px;
  margin-bottom: 14px;
  font-size: clamp(42px, 5.4vw, 72px);
  line-height: 0.98;
}

.checkout-intro p {
  max-width: 680px;
  margin: 0;
  color: #5d6677;
  font-size: 18px;
}

.checkout-intro__back {
  min-height: 44px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-control);
  background: #fff;
  color: #445068;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 760;
  white-space: nowrap;
  box-shadow: 0 10px 28px rgba(21, 25, 37, 0.05);
  transition: border-color 180ms var(--ease-state), color 180ms var(--ease-state), transform 160ms var(--ease-state);
}

.checkout-intro__back:hover,
.checkout-intro__back:focus-visible {
  border-color: rgba(36, 84, 245, 0.28);
  color: var(--blue);
  transform: translateY(-1px);
}

.checkout-intro__back i {
  width: 17px;
  height: 17px;
}

.checkout-shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 370px;
  align-items: start;
  gap: 26px;
}

.checkout-flow,
.checkout-summary,
.checkout-success {
  border: 1px solid rgba(225, 230, 238, 0.92);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 24px 70px rgba(21, 25, 37, 0.08);
}

.checkout-flow {
  min-width: 0;
  padding: 26px;
  border-radius: 32px;
}

.checkout-progress {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  margin: 0 0 30px;
  padding: 0 0 22px;
  border-bottom: 1px solid var(--line);
  list-style: none;
}

.checkout-progress li {
  min-width: 0;
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  align-items: center;
  gap: 9px;
  color: #7a8495;
  font-size: 13px;
  font-weight: 800;
}

.checkout-progress span {
  width: 30px;
  height: 30px;
  border: 1px solid #d5dce8;
  border-radius: 50%;
  background: #fff;
  color: #6b7587;
  display: grid;
  place-items: center;
  font-size: 12px;
  font-weight: 900;
  transition: background 180ms var(--ease-state), border-color 180ms var(--ease-state), color 180ms var(--ease-state);
}

.checkout-progress strong {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.checkout-progress li.is-active {
  color: var(--ink);
}

.checkout-progress li.is-active span,
.checkout-progress li.is-complete span {
  border-color: var(--blue);
  background: var(--blue);
  color: #fff;
}

.checkout-stage {
  min-height: 444px;
  animation: checkoutStageIn 360ms var(--ease-enter) both;
}

.checkout-stage.is-exiting {
  animation: checkoutStageOut 190ms var(--ease-state) forwards;
}

.checkout-stage__head {
  max-width: 760px;
  margin-bottom: 22px;
}

.checkout-stage__head h2 {
  margin-bottom: 8px;
  font-size: clamp(30px, 3vw, 42px);
  line-height: 1.04;
}

.checkout-stage__head p {
  max-width: 620px;
  margin: 0;
  color: #637086;
  font-size: 16px;
}

.checkout-cycle {
  width: fit-content;
  display: flex;
  gap: 6px;
  padding: 5px;
  border: 1px solid var(--line);
  border-radius: var(--radius-control);
  background: #f2f5fa;
  margin-bottom: 20px;
}

.checkout-cycle button {
  min-height: 38px;
  padding: 0 16px;
  border: 0;
  border-radius: var(--radius-control);
  background: transparent;
  color: #626d80;
  cursor: pointer;
  font-size: 13px;
  font-weight: 850;
}

.checkout-cycle button.is-active {
  background: #fff;
  color: var(--blue);
  box-shadow: 0 6px 18px rgba(21, 25, 37, 0.08);
}

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

.checkout-plan-option {
  min-height: 154px;
  padding: 17px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
  color: var(--ink);
  display: grid;
  align-content: start;
  gap: 8px;
  text-align: left;
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(21, 25, 37, 0.05);
  transition: border-color 180ms var(--ease-state), box-shadow 220ms var(--ease-state), transform 180ms var(--ease-state), background 180ms var(--ease-state);
}

.checkout-plan-option:hover,
.checkout-plan-option:focus-visible {
  border-color: rgba(36, 84, 245, 0.28);
  transform: translateY(-2px);
}

.checkout-plan-option.is-active {
  border-color: var(--blue);
  background: linear-gradient(180deg, #ffffff 0%, #f5f8ff 100%);
  box-shadow: 0 18px 42px rgba(36, 84, 245, 0.14);
}

.checkout-plan-option span {
  color: #667185;
  font-size: 13px;
  font-weight: 850;
}

.checkout-plan-option strong {
  color: var(--ink);
  font-size: 28px;
  line-height: 1;
}

.checkout-plan-option small {
  color: #6b7484;
  font-size: 12px;
  font-weight: 720;
  line-height: 1.25;
}

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

.checkout-fields .field--wide {
  grid-column: span 1;
}

.checkout-fields .field input {
  border-color: #d4dbe7;
  border-radius: 14px;
  background: #fff;
}

.checkout-fields .field span {
  color: #4e586b;
}

.checkout-free-note {
  min-height: 120px;
  padding: 22px;
  border: 1px solid rgba(19, 132, 95, 0.22);
  border-radius: 22px;
  background: #f0fbf6;
  color: #0f6a4b;
  display: flex;
  align-items: center;
  gap: 14px;
}

.checkout-free-note i {
  width: 26px;
  height: 26px;
}

.checkout-free-note strong,
.checkout-free-note span {
  display: block;
}

.checkout-free-note span {
  margin-top: 4px;
  color: #346f59;
  font-size: 14px;
  font-weight: 680;
}

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

.checkout-review div {
  min-height: 92px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #f7f9fc;
  display: grid;
  align-content: center;
  gap: 5px;
}

.checkout-review span {
  color: #6b7586;
  font-size: 12px;
  font-weight: 820;
  text-transform: uppercase;
}

.checkout-review strong {
  color: var(--ink);
  font-size: 17px;
  line-height: 1.25;
}

.checkout-terms {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  align-items: start;
  gap: 11px;
  margin-top: 20px;
  color: #5a6477;
  font-size: 14px;
  font-weight: 680;
  line-height: 1.45;
}

.checkout-terms input {
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  accent-color: var(--blue);
}

.checkout-terms a {
  color: var(--blue);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.checkout-actions {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding-top: 24px;
  margin-top: 24px;
  border-top: 1px solid var(--line);
}

.checkout-actions .button[disabled] {
  cursor: not-allowed;
  opacity: 0.42;
  transform: none;
}

.checkout-summary {
  position: sticky;
  top: 100px;
  padding: 24px;
  border-radius: 30px;
}

.checkout-summary__top {
  display: grid;
  gap: 4px;
  margin-bottom: 20px;
}

.checkout-summary__top span {
  color: #748096;
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.checkout-summary__top strong {
  color: var(--ink);
  font-size: 28px;
  line-height: 1.05;
}

.checkout-summary__price {
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 5px;
}

.checkout-summary__price strong {
  color: var(--blue);
  font-size: 40px;
  line-height: 1;
}

.checkout-summary__price span {
  color: #657083;
  font-size: 13px;
  font-weight: 760;
}

.checkout-summary__list {
  display: grid;
  gap: 0;
  margin: 18px 0 22px;
}

.checkout-summary__list div {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid #edf1f6;
}

.checkout-summary__list dt,
.checkout-summary__list dd {
  margin: 0;
  font-size: 14px;
  font-weight: 760;
}

.checkout-summary__list dt {
  color: #6c7688;
}

.checkout-summary__list dd {
  color: var(--ink);
  text-align: right;
}

.checkout-summary__notice {
  padding: 14px;
  border-radius: 20px;
  background: var(--blue-mist);
  color: var(--blue);
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  gap: 10px;
}

.checkout-summary__notice i {
  width: 20px;
  height: 20px;
  margin-top: 2px;
}

.checkout-summary__notice p {
  margin: 0;
  color: #465d9b;
  font-size: 12px;
  font-weight: 720;
  line-height: 1.45;
}

.checkout-success {
  width: min(100%, 720px);
  margin: 52px auto 0;
  padding: 48px;
  border-radius: 34px;
  text-align: center;
}

.checkout-success span {
  width: 68px;
  height: 68px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  display: grid;
  place-items: center;
}

.checkout-success span i {
  width: 34px;
  height: 34px;
  stroke-width: 3;
}

.checkout-success h2 {
  margin-bottom: 12px;
  font-size: clamp(34px, 4vw, 48px);
}

.checkout-success p {
  max-width: 520px;
  margin: 0 auto 24px;
}

body[data-page="checkout"] .public-chat-widget {
  display: none;
}

/* Checkout dedicated page */
body[data-page="checkout"] {
  background: #fff;
}

body[data-page="checkout"] main {
  background: #fff;
}

body[data-page="checkout"] .site-header {
  background: rgba(255, 255, 255, 0.94);
}

body[data-page="checkout"] .checkout-page {
  min-height: calc(100svh - 78px);
  padding: clamp(16px, 2.6vw, 28px) 0 clamp(30px, 4vw, 54px);
  overflow: visible;
  background: #fff;
}

body[data-page="checkout"] .checkout-page::before {
  content: none;
}

body[data-page="checkout"] .checkout-shell {
  width: min(80vw, 1360px);
  min-width: min(100% - 32px, 720px);
  margin: 0 auto;
  display: block;
  transform-origin: top center;
}

body[data-page="checkout"] .checkout-frame,
body[data-page="checkout"] .checkout-success {
  border: 1px solid #e3e8f2;
  border-radius: 34px;
  background: #fff;
  box-shadow: 0 24px 76px rgba(16, 24, 40, 0.08);
}

body[data-page="checkout"] .checkout-frame {
  padding: clamp(18px, 2.2vw, 26px);
}

body[data-page="checkout"] .checkout-frame > .checkout-progress:first-child {
  margin-top: 0;
}

body[data-page="checkout"] .checkout-frame__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 28px;
}

body[data-page="checkout"] .checkout-back,
body[data-page="checkout"] .checkout-secondary {
  min-height: 44px;
  padding: 0 16px;
  border: 1px solid #dbe3ef;
  border-radius: 999px;
  background: #fff;
  color: #344054;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  font: inherit;
  font-size: 14px;
  font-weight: 760;
  line-height: 1;
  transition: border-color 180ms var(--ease-state), color 180ms var(--ease-state), transform 180ms var(--ease-state), background 180ms var(--ease-state);
}

body[data-page="checkout"] .checkout-back:hover,
body[data-page="checkout"] .checkout-secondary:hover,
body[data-page="checkout"] .checkout-back:focus-visible,
body[data-page="checkout"] .checkout-secondary:focus-visible {
  border-color: rgba(37, 94, 255, 0.35);
  background: #f8faff;
  color: var(--blue);
  transform: translateY(-1px);
}

body[data-page="checkout"] .checkout-back i,
body[data-page="checkout"] .checkout-secondary i,
body[data-page="checkout"] .checkout-primary i {
  width: 17px;
  height: 17px;
}

body[data-page="checkout"] .checkout-frame__title {
  display: grid;
  justify-items: end;
  gap: 3px;
  text-align: right;
}

body[data-page="checkout"] .checkout-frame__title span {
  color: #667085;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

body[data-page="checkout"] .checkout-frame__title strong {
  color: #101828;
  font-size: clamp(17px, 1.6vw, 22px);
  line-height: 1.15;
}

body[data-page="checkout"] .checkout-progress {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: 0 0 13px;
  padding: 0 0 13px;
  border-bottom: 1px solid #e5eaf2;
}

body[data-page="checkout"] .checkout-progress li {
  min-height: 44px;
  padding: 6px 9px;
  border: 1px solid #e5eaf2;
  border-radius: 18px;
  background: #f8fafc;
  grid-template-columns: 34px minmax(0, 1fr);
  color: #667085;
  transition: border-color 180ms var(--ease-state), background 180ms var(--ease-state), color 180ms var(--ease-state), box-shadow 180ms var(--ease-state);
}

body[data-page="checkout"] .checkout-progress li.is-active,
body[data-page="checkout"] .checkout-progress li.is-complete {
  border-color: rgba(37, 94, 255, 0.22);
  background: #f3f6ff;
  color: #101828;
}

body[data-page="checkout"] .checkout-progress span {
  width: 30px;
  height: 30px;
  border-color: #d5dce8;
  font-size: 12px;
}

body[data-page="checkout"] .checkout-progress small {
  display: block;
  overflow: hidden;
  margin-top: 2px;
  color: #7b8495;
  font-size: 11px;
  font-weight: 720;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.checkout-modal[hidden],
.checkout-loading[hidden] {
  display: none !important;
}

.checkout-modal,
.checkout-loading {
  position: fixed;
  inset: 0;
  z-index: 100000;
  display: grid;
  place-items: center;
  padding: 24px;
}

.checkout-modal__backdrop,
.checkout-loading__backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(15, 23, 42, 0.42);
}

.checkout-modal__panel,
.checkout-loading__panel {
  position: relative;
  z-index: 1;
  width: min(100%, 430px);
  border: 1px solid #e5eaf2;
  border-radius: 24px;
  background: #fff;
  color: #111827;
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.22);
}

.checkout-modal__panel {
  display: grid;
  justify-items: center;
  gap: 14px;
  padding: 28px;
  text-align: center;
}

.checkout-modal__icon {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  background: #fff1f0;
  color: #d92d20;
  display: grid;
  place-items: center;
}

.checkout-modal__icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.checkout-modal__panel h2 {
  margin: 0;
  color: #111827;
  font-size: 24px;
  line-height: 1.12;
}

.checkout-modal__panel p {
  max-width: 34ch;
  margin: 0;
  color: #475467;
  font-size: 15px;
  font-weight: 650;
  line-height: 1.45;
}

.checkout-modal__action {
  min-height: 44px;
  margin-top: 4px;
  padding: 0 22px;
  border: 0;
  border-radius: 999px;
  background: var(--blue);
  color: #fff;
  cursor: pointer;
  font: inherit;
  font-size: 14px;
  font-weight: 860;
}

.checkout-loading__panel {
  width: min(100%, 310px);
  min-height: 126px;
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 14px;
  padding: 24px;
}

.checkout-loading__spinner {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 3px solid rgba(37, 84, 255, 0.16);
  border-top-color: var(--blue);
  animation: checkoutSpin 760ms linear infinite;
}

.checkout-loading__panel strong {
  color: #111827;
  font-size: 15px;
  font-weight: 850;
}

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

body[data-page="checkout"] .checkout-stage {
  min-height: 418px;
  animation: checkoutStageIn 360ms var(--ease-enter) both;
}

body[data-page="checkout"] .checkout-stage__head {
  max-width: none;
  margin-bottom: 18px;
}

body[data-page="checkout"] .checkout-stage__head > span {
  display: block;
  margin-bottom: 8px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

body[data-page="checkout"] .checkout-stage__head h1 {
  margin: 0;
  color: #101828;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.04;
}

body[data-page="checkout"] .checkout-stage__head--row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
}

body[data-page="checkout"] .checkout-panel {
  border: 1px solid #e7ecf4;
  border-radius: 26px;
  background: #fbfcfe;
  padding: clamp(18px, 2.4vw, 28px);
}

body[data-page="checkout"] [data-checkout-stage="0"] {
  min-height: auto;
}

body[data-page="checkout"] [data-checkout-stage="0"] .checkout-stage__head {
  margin-bottom: 12px;
}

body[data-page="checkout"] [data-checkout-stage="0"] .checkout-stage__head > span {
  margin-bottom: 5px;
  font-size: 11px;
}

body[data-page="checkout"] [data-checkout-stage="0"] .checkout-stage__head h1 {
  font-size: clamp(25px, 2.45vw, 34px);
}

body[data-page="checkout"] [data-checkout-stage="0"] .checkout-panel {
  padding: 16px 18px;
  border-radius: 22px;
}

body[data-page="checkout"] .checkout-fields--company {
  gap: 10px 14px;
}

body[data-page="checkout"] .checkout-fields--company > .field {
  gap: 5px;
}

body[data-page="checkout"] .checkout-fields--company .field > span {
  font-size: 12px;
}

body[data-page="checkout"] .checkout-fields--company .field input {
  min-height: 42px;
  border-radius: 14px;
  font-size: 14px;
  padding: 0 13px;
}

body[data-page="checkout"] .checkout-fields--company .checkout-input-action {
  gap: 8px;
}

body[data-page="checkout"] .checkout-fields--company .checkout-input-action button {
  min-height: 42px;
  padding: 0 14px;
}

body[data-page="checkout"] .checkout-fields--company [data-checkout-cnpj-status] {
  min-height: 14px;
  font-size: 11px;
}

body[data-page="checkout"] .checkout-fields {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

body[data-page="checkout"] .checkout-fields > .field {
  min-width: 0;
  grid-column: span 2;
  display: grid;
  align-content: start;
  align-self: start;
  gap: 7px;
}

body[data-page="checkout"] .checkout-fields > .field--full {
  grid-column: 1 / -1;
}

body[data-page="checkout"] .checkout-fields > .field--wide {
  grid-column: span 3;
}

body[data-page="checkout"] .checkout-fields > .field--small {
  grid-column: span 1;
}

body[data-page="checkout"] .checkout-fields > .field--third {
  grid-column: span 1;
}

body[data-page="checkout"] .field > span,
body[data-page="checkout"] .checkout-method strong,
body[data-page="checkout"] .checkout-selected-plan span,
body[data-page="checkout"] .checkout-history-head span {
  color: #475467;
  font-size: 13px;
  font-weight: 850;
}

body[data-page="checkout"] .checkout-fields .field input,
body[data-page="checkout"] .checkout-card-form .field select,
body[data-page="checkout"] .checkout-coupon-row input {
  min-height: 48px;
  width: 100%;
  border: 1px solid #d7deea;
  border-radius: 17px;
  background: #fff;
  color: #101828;
  font: inherit;
  font-size: 15px;
  font-weight: 650;
  outline: none;
  padding: 0 15px;
  transition: border-color 180ms var(--ease-state), box-shadow 180ms var(--ease-state);
}

body[data-page="checkout"] .checkout-fields .field input:focus,
body[data-page="checkout"] .checkout-card-form .field select:focus,
body[data-page="checkout"] .checkout-coupon-row input:focus {
  border-color: rgba(37, 94, 255, 0.58);
  box-shadow: 0 0 0 4px rgba(37, 94, 255, 0.1);
}

body[data-page="checkout"] input:-webkit-autofill,
body[data-page="checkout"] input:-webkit-autofill:hover,
body[data-page="checkout"] input:-webkit-autofill:focus,
body[data-page="checkout"] input:-webkit-autofill:active {
  border-color: #d7deea !important;
  background-color: #fff !important;
  background-image: none !important;
  -webkit-background-clip: text;
  -webkit-box-shadow: 0 0 0 1000px #fff inset !important;
  box-shadow: 0 0 0 1000px #fff inset !important;
  -webkit-text-fill-color: #101828 !important;
  caret-color: #101828;
  transition: background-color 999999s ease-out 0s, color 999999s ease-out 0s;
}

body[data-page="checkout"] .checkout-input-action {
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
}

body[data-page="checkout"] .checkout-input-action button,
body[data-page="checkout"] .checkout-coupon-row button,
body[data-page="checkout"] .checkout-primary {
  min-height: 46px;
  border: 0;
  border-radius: 999px;
  background: var(--blue);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  font: inherit;
  font-size: 14px;
  font-weight: 860;
  line-height: 1;
  padding: 0 18px;
  box-shadow: 0 12px 26px rgba(37, 94, 255, 0.18);
  transition: transform 180ms var(--ease-state), box-shadow 180ms var(--ease-state), background 180ms var(--ease-state);
}

body[data-page="checkout"] .checkout-input-action button:hover,
body[data-page="checkout"] .checkout-coupon-row button:hover,
body[data-page="checkout"] .checkout-primary:hover,
body[data-page="checkout"] .checkout-input-action button:focus-visible,
body[data-page="checkout"] .checkout-coupon-row button:focus-visible,
body[data-page="checkout"] .checkout-primary:focus-visible {
  background: #174bdf;
  box-shadow: 0 16px 32px rgba(37, 94, 255, 0.24);
  transform: translateY(-1px);
}

body[data-page="checkout"] .checkout-input-action button i,
body[data-page="checkout"] .checkout-coupon-row i {
  width: 17px;
  height: 17px;
}

body[data-page="checkout"] [data-checkout-cnpj-status] {
  min-height: 18px;
  color: #667085;
  font-size: 12px;
  font-weight: 720;
}

body[data-page="checkout"] [data-checkout-stage="0"] {
  min-height: auto;
}

body[data-page="checkout"] [data-checkout-stage="0"] .checkout-stage__head {
  margin-bottom: 10px;
}

body[data-page="checkout"] [data-checkout-stage="0"] .checkout-stage__head > span {
  margin-bottom: 5px;
  font-size: 11px;
}

body[data-page="checkout"] [data-checkout-stage="0"] .checkout-stage__head h1 {
  font-size: clamp(24px, 2.25vw, 32px);
}

body[data-page="checkout"] [data-checkout-stage="0"] .checkout-panel {
  padding: 14px 18px;
  border-radius: 22px;
}

body[data-page="checkout"] .checkout-fields--company {
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 8px 12px;
}

body[data-page="checkout"] .checkout-fields--company > .field {
  grid-column: span 6;
  gap: 4px;
}

body[data-page="checkout"] .checkout-fields--company > .field--full {
  grid-column: 1 / -1;
}

body[data-page="checkout"] .checkout-fields--company > .field--cnpj {
  grid-column: span 4;
}

body[data-page="checkout"] .checkout-fields--company > .field--company-name {
  grid-column: span 8;
}

body[data-page="checkout"] .checkout-fields--company > .field--main-cnae {
  grid-column: 1 / -1;
}

body[data-page="checkout"] .checkout-fields--company > .field--trade-name,
body[data-page="checkout"] .checkout-fields--company > .field--registration-status {
  grid-column: span 6;
}

body[data-page="checkout"] .checkout-fields--company > .field:nth-child(6),
body[data-page="checkout"] .checkout-fields--company > .field:nth-child(9) {
  grid-column: span 4;
}

body[data-page="checkout"] .checkout-fields--company > .field:nth-child(7),
body[data-page="checkout"] .checkout-fields--company > .field:nth-child(10) {
  grid-column: span 6;
}

body[data-page="checkout"] .checkout-fields--company > .field:nth-child(8),
body[data-page="checkout"] .checkout-fields--company > .field:nth-child(11) {
  grid-column: span 2;
}

body[data-page="checkout"] .checkout-fields--company .field > span {
  font-size: 11px;
}

body[data-page="checkout"] .checkout-fields--company .field input {
  min-height: 38px;
  border-radius: 14px;
  font-size: 14px;
  padding: 0 13px;
}

body[data-page="checkout"] .checkout-fields--company .checkout-input-action {
  position: relative;
  display: block;
  min-width: 0;
}

body[data-page="checkout"] .checkout-fields--company .checkout-input-action button {
  position: absolute;
  top: 4px;
  right: 4px;
  bottom: 4px;
  width: 38px;
  min-width: 38px;
  min-height: 0;
  height: auto;
  padding: 0;
  border-radius: 11px;
  color: #fff;
  font-size: 0;
  line-height: 0;
  overflow: hidden;
  box-shadow: none;
  white-space: nowrap;
}

body[data-page="checkout"] .checkout-fields--company .checkout-input-action button svg {
  width: 18px;
  height: 18px;
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.25;
}

body[data-page="checkout"] .checkout-fields--company .checkout-input-action input {
  padding-right: 52px;
}

body[data-page="checkout"] .checkout-fields--company [data-checkout-cnpj-status] {
  min-height: 12px;
  font-size: 11px;
}

body[data-page="checkout"] .checkout-password-input {
  position: relative;
}

body[data-page="checkout"] .checkout-password-input input {
  padding-right: 52px;
}

body[data-page="checkout"] .checkout-password-input button {
  position: absolute;
  right: 7px;
  top: 50%;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  background: #f2f5fb;
  color: #64748b;
  display: grid;
  place-items: center;
  cursor: pointer;
  transform: translateY(-50%);
}

body[data-page="checkout"] .checkout-password-input button i {
  width: 18px;
  height: 18px;
}

body[data-page="checkout"] .checkout-password-rules {
  display: grid;
  gap: 6px;
  margin-top: 2px;
}

body[data-page="checkout"] .checkout-password-rules span,
body[data-page="checkout"] .checkout-password-match {
  color: #667085;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 720;
}

body[data-page="checkout"] .checkout-password-rules i {
  width: 14px;
  height: 14px;
  color: #d92d20;
}

body[data-page="checkout"] .checkout-password-rules span.is-valid {
  color: #14895f;
}

body[data-page="checkout"] .checkout-password-rules span.is-valid i {
  color: #14895f;
}

body[data-page="checkout"] .checkout-password-match {
  min-height: 18px;
  color: #d92d20;
  visibility: hidden;
}

body[data-page="checkout"] .checkout-password-match.is-visible {
  visibility: visible;
}

body[data-page="checkout"] .checkout-password-match.is-valid {
  color: #14895f;
}

body[data-page="checkout"] .checkout-password-match.is-invalid {
  color: #d92d20;
}

body[data-page="checkout"] .checkout-cycle {
  margin: 0;
  border-radius: 999px;
  background: #f1f5fb;
}

body[data-page="checkout"] .checkout-cycle button {
  border-radius: 999px;
}

body[data-page="checkout"] .checkout-plans {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

body[data-page="checkout"] .checkout-plan-option {
  min-height: 250px;
  border-radius: 24px;
  padding: 18px;
  gap: 10px;
}

body[data-page="checkout"] .checkout-plan-option span {
  color: var(--blue);
  font-size: 13px;
}

body[data-page="checkout"] .checkout-plan-option strong {
  display: flex;
  align-items: baseline;
  gap: 1px;
  font-size: clamp(22px, 1.85vw, 28px);
  min-width: 0;
  white-space: nowrap;
}

body[data-page="checkout"] .checkout-plan-price-period {
  color: #667085;
  font-size: 9px;
  font-weight: 850;
  line-height: 1;
  transform: translateX(-2px);
}

body[data-page="checkout"] .checkout-plan-annual-cash {
  color: #667085;
  font-weight: 760;
}

body[data-page="checkout"] .checkout-plan-option ul {
  display: grid;
  gap: 7px;
  margin: 5px 0 0;
  padding: 0;
  list-style: none;
}

body[data-page="checkout"] .checkout-plan-option li {
  color: #667085;
  font-size: 12px;
  font-weight: 720;
  line-height: 1.25;
}

body[data-page="checkout"] .checkout-payment-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(290px, 360px);
  gap: 20px;
  align-items: start;
}

body[data-page="checkout"] .checkout-payment-main {
  min-width: 0;
  display: grid;
  gap: 16px;
}

body[data-page="checkout"] .checkout-selected-plan {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

body[data-page="checkout"] .checkout-selected-plan div,
body[data-page="checkout"] .checkout-history,
body[data-page="checkout"] .checkout-free-box,
body[data-page="checkout"] .checkout-method-card,
body[data-page="checkout"] .checkout-coupon-applied {
  border: 1px solid #e5eaf2;
  border-radius: 22px;
  background: #fff;
}

body[data-page="checkout"] .checkout-selected-plan div {
  min-height: 76px;
  display: grid;
  align-content: center;
  gap: 5px;
  padding: 14px;
}

body[data-page="checkout"] .checkout-selected-plan strong {
  color: #101828;
  font-size: 18px;
  line-height: 1.1;
}

body[data-page="checkout"] .checkout-coupon-row {
  min-height: 52px;
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  padding: 5px 5px 5px 15px;
  border: 1px solid #e5eaf2;
  border-radius: 999px;
  background: #fff;
}

body[data-page="checkout"] .checkout-coupon-row input {
  min-height: 40px;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  padding: 0;
}

body[data-page="checkout"] .checkout-coupon-row input:focus {
  border-color: transparent;
  box-shadow: none;
}

body[data-page="checkout"] .checkout-coupon-row button {
  min-height: 40px;
  padding: 0 15px;
  box-shadow: none;
}

body[data-page="checkout"] .checkout-coupon-applied {
  padding: 12px 15px;
  color: #14895f;
  font-size: 13px;
  font-weight: 760;
}

body[data-page="checkout"] .checkout-free-box {
  padding: 16px;
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 12px;
}

body[data-page="checkout"] .checkout-free-box > i {
  width: 34px;
  height: 34px;
  padding: 8px;
  border-radius: 50%;
  background: #e9fff5;
  color: #14895f;
}

body[data-page="checkout"] .checkout-free-box strong {
  display: block;
  color: #101828;
  font-size: 15px;
  line-height: 1.25;
}

body[data-page="checkout"] .checkout-free-box p {
  margin: 4px 0 0;
  color: #667085;
  font-size: 13px;
  font-weight: 650;
  line-height: 1.45;
}

body[data-page="checkout"] .checkout-methods {
  display: grid;
  gap: 10px;
}

body[data-page="checkout"] .checkout-method-card {
  overflow: hidden;
}

body[data-page="checkout"] .checkout-method-card.is-active {
  border-color: rgba(37, 94, 255, 0.42);
  box-shadow: 0 16px 38px rgba(37, 94, 255, 0.1);
}

body[data-page="checkout"] .checkout-method {
  width: 100%;
  min-height: 74px;
  padding: 15px;
  border: 0;
  background: transparent;
  color: #101828;
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  cursor: pointer;
  text-align: left;
}

body[data-page="checkout"] .checkout-method > i {
  width: 38px;
  height: 38px;
  padding: 9px;
  border-radius: 50%;
  background: #f1f5fb;
  color: var(--blue);
}

body[data-page="checkout"] .checkout-method span {
  display: block;
  margin-top: 3px;
  color: #667085;
  font-size: 12px;
  font-weight: 650;
  line-height: 1.35;
}

body[data-page="checkout"] .checkout-card-form {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  padding: 0 15px 16px;
}

body[data-page="checkout"] .checkout-card-form .field {
  grid-column: span 3;
}

body[data-page="checkout"] .checkout-card-form .field:not(.field--full):not(.field--third) {
  grid-column: span 3;
}

body[data-page="checkout"] .checkout-card-form .field--third {
  grid-column: span 1;
}

body[data-page="checkout"] .checkout-card-form .checkout-installments-field {
  grid-column: 1 / -1;
}

body[data-page="checkout"] .checkout-installments-select {
  position: relative;
}

body[data-page="checkout"] .checkout-installments-select > button {
  min-height: 48px;
  width: 100%;
  border: 1px solid #d7deea;
  border-radius: 17px;
  background: #fff;
  color: #101828;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  cursor: pointer;
  font: inherit;
  font-size: 15px;
  font-weight: 760;
  line-height: 1.1;
  padding: 0 14px 0 15px;
  text-align: left;
  transition: border-color 180ms var(--ease-state), box-shadow 180ms var(--ease-state);
}

body[data-page="checkout"] .checkout-installments-select > button:hover,
body[data-page="checkout"] .checkout-installments-select > button:focus-visible,
body[data-page="checkout"] .checkout-installments-select.is-open > button {
  border-color: rgba(37, 94, 255, 0.58);
  box-shadow: 0 0 0 4px rgba(37, 94, 255, 0.1);
  outline: none;
}

body[data-page="checkout"] .checkout-installments-select > button i {
  width: 17px;
  height: 17px;
  color: #667085;
  flex: 0 0 auto;
}

body[data-page="checkout"] .checkout-installments-menu {
  position: absolute;
  z-index: 2100;
  left: 0;
  right: 0;
  top: calc(100% + 8px);
  max-height: 260px;
  overflow: auto;
  border: 1px solid #dbe3ef;
  border-radius: 17px;
  background: #fff;
  padding: 6px;
  box-shadow: 0 18px 42px rgba(20, 30, 54, 0.14);
}

body[data-page="checkout"] .checkout-installments-menu button {
  min-height: 38px;
  width: 100%;
  border: 0;
  border-radius: 12px;
  background: transparent;
  color: #344054;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  font: inherit;
  font-size: 14px;
  font-weight: 720;
  padding: 0 10px;
  text-align: left;
}

body[data-page="checkout"] .checkout-installments-menu button:hover,
body[data-page="checkout"] .checkout-installments-menu button:focus-visible {
  background: #f4f7ff;
  color: var(--blue);
  outline: none;
}

body[data-page="checkout"] .checkout-installments-menu button.is-selected {
  background: #edf3ff;
  color: var(--blue);
}

body[data-page="checkout"] .checkout-terms {
  margin-top: 2px;
  padding: 13px 2px 0;
}

body[data-page="checkout"] .checkout-history {
  padding: 18px;
  box-shadow: none;
}

body[data-page="checkout"] .checkout-history-head {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid #e5eaf2;
}

body[data-page="checkout"] .checkout-history-head strong {
  color: var(--blue);
  font-size: 15px;
  line-height: 1.2;
}

body[data-page="checkout"] .checkout-history-line {
  position: relative;
  display: grid;
  grid-template-columns: 16px minmax(0, 1fr);
  gap: 12px;
  padding: 16px 0;
  border-bottom: 0;
}

body[data-page="checkout"] .checkout-history-line::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 33px;
  bottom: -16px;
  width: 1px;
  background: #d4dbe8;
}

body[data-page="checkout"] .checkout-history-line:last-child::after {
  content: none;
}

body[data-page="checkout"] .checkout-history-line:last-child {
  padding-bottom: 0;
}

body[data-page="checkout"] .checkout-history-dot {
  width: 11px;
  height: 11px;
  margin-top: 4px;
  border-radius: 50%;
  background: #c9d2e1;
}

body[data-page="checkout"] .checkout-history-line b {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  color: #101828;
  font-size: 14px;
  line-height: 1.25;
}

body[data-page="checkout"] .checkout-history-line b em {
  color: #667085;
  font-style: normal;
  font-weight: 760;
}

body[data-page="checkout"] .checkout-history-line p {
  margin: 0;
  color: #667085;
  font-size: 13px;
  font-weight: 650;
  line-height: 1.35;
}

body[data-page="checkout"] .checkout-history-line strong {
  color: #101828;
  font-size: 22px;
  line-height: 1.05;
}

body[data-page="checkout"] .checkout-actions {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid #e5eaf2;
}

body[data-page="checkout"] .checkout-actions .checkout-secondary[disabled] {
  cursor: not-allowed;
  opacity: 0.44;
  transform: none;
}

body[data-page="checkout"] .checkout-success {
  width: min(100%, 760px);
  margin: 0 auto;
}

body[data-page="checkout"] .checkout-success .checkout-secondary {
  text-decoration: none;
}

body[data-page="checkout"] .public-chat-widget {
  display: none;
}

@media (max-width: 1180px) {
  body[data-page="checkout"] .checkout-shell {
    width: min(92vw, 1040px);
  }

  body[data-page="checkout"] .checkout-plans {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body[data-page="checkout"] .checkout-payment-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  body[data-page="checkout"] .checkout-page {
    padding: 18px 0 46px;
  }

  body[data-page="checkout"] .checkout-shell {
    width: min(100% - 24px, 560px);
    min-width: 0;
  }

  body[data-page="checkout"] .checkout-frame {
    padding: 16px;
    border-radius: 28px;
  }

  body[data-page="checkout"] .checkout-frame__header {
    align-items: start;
    margin-bottom: 18px;
  }

  body[data-page="checkout"] .checkout-frame__title {
    justify-items: start;
    text-align: left;
  }

  body[data-page="checkout"] .checkout-back span {
    display: none;
  }

  body[data-page="checkout"] .checkout-back {
    width: 44px;
    padding: 0;
  }

  body[data-page="checkout"] .checkout-progress {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 6px;
    overflow: visible;
  }

  body[data-page="checkout"] .checkout-progress li {
    min-height: 46px;
    padding: 7px 4px;
    grid-template-columns: 1fr;
    justify-items: center;
  }

  body[data-page="checkout"] .checkout-progress li div {
    display: none;
  }

  body[data-page="checkout"] .checkout-progress span {
    width: 31px;
    height: 31px;
  }

  body[data-page="checkout"] .checkout-stage {
    min-height: 0;
  }

  body[data-page="checkout"] .checkout-stage__head--row {
    align-items: start;
    flex-direction: column;
  }

  body[data-page="checkout"] .checkout-stage__head h1 {
    font-size: 30px;
  }

  body[data-page="checkout"] .checkout-panel {
    padding: 14px;
    border-radius: 22px;
  }

  body[data-page="checkout"] .checkout-fields,
  body[data-page="checkout"] .checkout-selected-plan,
  body[data-page="checkout"] .checkout-card-form,
  body[data-page="checkout"] .checkout-plans {
    grid-template-columns: 1fr;
  }

  body[data-page="checkout"] .checkout-fields > .field,
  body[data-page="checkout"] .checkout-fields > .field--wide,
  body[data-page="checkout"] .checkout-fields > .field--small,
  body[data-page="checkout"] .checkout-fields > .field--third,
  body[data-page="checkout"] .checkout-card-form .field,
  body[data-page="checkout"] .checkout-card-form .field--third {
    grid-column: 1 / -1;
  }

  body[data-page="checkout"] .checkout-fields--company > .field:nth-child(n) {
    grid-column: 1 / -1;
  }

  body[data-page="checkout"] .checkout-input-action {
    display: block;
  }

  body[data-page="checkout"] .checkout-input-action button {
    width: auto;
  }

  body[data-page="checkout"] .checkout-plan-option {
    min-height: 0;
  }

  body[data-page="checkout"] .checkout-actions {
    flex-direction: column-reverse;
  }

  body[data-page="checkout"] .checkout-actions button {
    width: 100%;
  }
}

@keyframes checkoutStageIn {
  from {
    opacity: 0;
    transform: translate3d(28px, 0, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes checkoutStageOut {
  to {
    opacity: 0;
    transform: translate3d(-18px, 0, 0);
  }
}

@media (max-width: 1120px) {
  .checkout-shell {
    grid-template-columns: minmax(0, 1fr);
  }

  .checkout-summary {
    position: static;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
  }

  .checkout-summary__price,
  .checkout-summary__list,
  .checkout-summary__notice {
    margin: 0;
  }

  .checkout-summary__list {
    grid-column: 1 / -1;
  }

  .checkout-summary__notice {
    grid-column: 1 / -1;
  }

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

@media (max-width: 760px) {
  .checkout-page {
    padding: 34px 0 70px;
  }

  .checkout-intro {
    align-items: start;
    flex-direction: column;
    gap: 18px;
  }

  .checkout-intro h1 {
    font-size: 40px;
  }

  .checkout-flow {
    padding: 20px;
    border-radius: 28px;
  }

  .checkout-progress {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 4px;
    overflow: visible;
    padding-bottom: 16px;
  }

  .checkout-progress li {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    gap: 7px;
  }

  .checkout-progress strong {
    max-width: 100%;
    font-size: 10px;
  }

  .checkout-stage {
    min-height: 0;
  }

  .checkout-plans,
  .checkout-fields,
  .checkout-review,
  .checkout-summary {
    grid-template-columns: 1fr;
  }

  .checkout-plan-option {
    min-height: 116px;
  }

  .checkout-summary__price strong {
    font-size: 34px;
  }

  .checkout-actions {
    flex-direction: column-reverse;
  }

  .checkout-actions .button {
    width: 100%;
  }
}

/* Public floating chat */
.public-chat-widget {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 1600;
  font-family: var(--font-body);
}

.public-chat-widget::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 1;
  background: #050914;
  opacity: 0;
  pointer-events: none;
  transition: opacity 260ms var(--ease-state);
}

.public-chat-widget.is-open::before {
  opacity: 0;
}

.public-chat-toggle {
  position: relative;
  z-index: 2;
  width: 60px;
  height: 60px;
  border: 0;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: 0 18px 40px rgba(36, 84, 245, 0.28);
  transition: transform 180ms var(--ease-state), box-shadow 180ms var(--ease-state), opacity 180ms var(--ease-state);
}

.public-chat-toggle:hover,
.public-chat-toggle:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 22px 48px rgba(36, 84, 245, 0.34);
}

.public-chat-toggle i {
  width: 25px;
  height: 25px;
}

.public-chat-toggle::after {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ff3b42;
  box-shadow: 0 0 12px rgba(255, 59, 66, 0.64);
  opacity: 0;
  transform: scale(0.4);
  transition: opacity 160ms var(--ease-state), transform 180ms var(--ease-state);
}

.public-chat-widget.has-unread .public-chat-toggle::after {
  opacity: 1;
  transform: scale(1);
}

.public-chat-panel {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  width: min(388px, calc(100vw - 28px));
  height: min(620px, calc(100dvh - 108px));
  border: 1px solid rgba(218, 226, 241, 0.98);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.98);
  display: grid;
  grid-template-rows: auto 1fr auto;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translate3d(0, 16px, 0) scale(0.96);
  transform-origin: right bottom;
  box-shadow: 0 28px 80px rgba(21, 25, 37, 0.16);
  transition: opacity 180ms var(--ease-state), transform 220ms var(--ease-enter);
}

.public-chat-widget.is-open .public-chat-toggle {
  opacity: 0;
  pointer-events: none;
  transform: scale(0.88);
}

.public-chat-widget.is-open .public-chat-panel {
  opacity: 1;
  pointer-events: auto;
  transform: translate3d(0, 0, 0) scale(1);
}

.public-chat-header {
  padding: 18px 18px 14px;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.public-chat-title {
  display: flex;
  align-items: center;
  gap: 11px;
}

.public-chat-avatar {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  border-radius: 16px;
  background: var(--blue);
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 12px 26px rgba(36, 84, 245, 0.22);
}

.public-chat-avatar i {
  width: 22px;
  height: 22px;
  color: #fff;
  stroke: #fff;
  display: block;
}

.public-chat-title strong {
  display: block;
  color: var(--ink);
  font-size: 16px;
  line-height: 1.1;
}

.public-chat-subtitle {
  display: block;
  margin-top: 2px;
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 700;
}

.public-chat-close {
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--surface-soft);
  color: var(--ink-soft);
  display: grid;
  place-items: center;
  cursor: pointer;
}

.public-chat-close i {
  width: 18px;
  height: 18px;
}

.public-chat-log {
  min-height: 0;
  padding: 18px;
  overflow: auto;
  display: grid;
  align-content: start;
  gap: 12px;
  background: linear-gradient(180deg, #ffffff 0%, #f8faff 100%);
}

.public-chat-message {
  max-width: 88%;
  padding: 13px 15px;
  border-radius: 18px 18px 18px 6px;
  background: #fff;
  color: #273044;
  font-size: 14px;
  line-height: 1.45;
  box-shadow: 0 10px 26px rgba(21, 25, 37, 0.06);
}

.public-chat-message.is-user {
  justify-self: end;
  border-radius: 18px 18px 6px 18px;
  background: var(--blue);
  color: #fff;
}

.public-chat-message strong {
  display: block;
  margin-bottom: 4px;
  color: inherit;
  font-size: 11px;
  font-weight: 850;
  opacity: 0.78;
}

.public-chat-message p {
  margin: 0;
  color: inherit;
  font-size: inherit;
}

.public-chat-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.public-chat-action {
  min-height: 34px;
  padding: 8px 12px;
  border: 1px solid rgba(36, 84, 245, 0.18);
  border-radius: 999px;
  background: #fff;
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 12px;
  font-weight: 850;
  line-height: 1;
  cursor: pointer;
  transition: background 160ms var(--ease-state), border-color 160ms var(--ease-state), transform 160ms var(--ease-state);
}

.public-chat-action:hover,
.public-chat-action:focus-visible {
  border-color: rgba(36, 84, 245, 0.34);
  background: var(--blue-soft);
  transform: translateY(-1px);
}

.public-chat-action--link {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
}

.public-chat-action--link:hover,
.public-chat-action--link:focus-visible {
  background: #1e49df;
  color: #fff;
}

.public-chat-message--typing {
  width: fit-content;
  min-width: 64px;
  padding: 14px 15px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.public-chat-message--typing strong,
.public-chat-message--typing p {
  display: none;
}

.public-chat-typing-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #8994a7;
  animation: publicChatTyping 900ms ease-in-out infinite;
}

.public-chat-typing-dot:nth-child(2) {
  animation-delay: 120ms;
}

.public-chat-typing-dot:nth-child(3) {
  animation-delay: 240ms;
}

@keyframes publicChatTyping {
  0%,
  80%,
  100% {
    opacity: 0.38;
    transform: translateY(0);
  }

  40% {
    opacity: 1;
    transform: translateY(-4px);
  }
}

.public-chat-choices {
  display: grid;
  gap: 8px;
}

.public-chat-choice {
  width: 100%;
  min-height: 42px;
  padding: 10px 13px;
  border: 1px solid rgba(36, 84, 245, 0.18);
  border-radius: 16px;
  background: #fff;
  color: var(--blue);
  text-align: left;
  font-size: 13px;
  font-weight: 820;
  cursor: pointer;
  transition: background 160ms var(--ease-state), border-color 160ms var(--ease-state);
}

.public-chat-choice:hover,
.public-chat-choice:focus-visible {
  border-color: rgba(36, 84, 245, 0.38);
  background: var(--blue-soft);
}

.public-chat-queue {
  width: fit-content;
  max-width: 88%;
  min-height: 0;
  padding: 10px 12px;
  border-radius: var(--radius-control);
  background: var(--blue-soft);
  color: var(--blue);
  display: grid;
  gap: 2px;
  font-size: 12px;
  font-weight: 850;
}

.public-chat-queue strong,
.public-chat-queue span {
  display: block;
}

.public-chat-queue span {
  color: #526077;
  font-size: 11px;
  font-weight: 760;
}

.public-chat-queue-status {
  padding: 8px 16px 0;
  background: #fff;
  color: #6c7689;
  font-size: 12px;
  font-weight: 760;
  line-height: 1.35;
  text-align: center;
}

.public-chat-queue-status[hidden] {
  display: none;
}

.public-chat-queue-status strong {
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
}

.public-chat-form {
  padding: 14px;
  border-top: 1px solid var(--line);
  background: #fff;
  display: grid;
  grid-template-columns: 1fr 46px;
  gap: 9px;
}

.public-chat-form input {
  min-width: 0;
  min-height: 46px;
  padding: 12px 15px;
  border: 1px solid #d8deea;
  border-radius: var(--radius-control);
  outline: 0;
  background: #fff;
  font-size: 14px;
}

.public-chat-form input:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(36, 84, 245, 0.1);
}

.public-chat-form button {
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
}

.public-chat-form button:disabled {
  opacity: 0.55;
  cursor: progress;
}

.public-chat-form button i {
  width: 19px;
  height: 19px;
}

.public-chat-error {
  margin: 0 14px 12px;
  padding: 10px 12px;
  border-radius: 14px;
  background: var(--coral-soft);
  color: #9e3325;
  display: none;
  font-size: 12px;
  font-weight: 750;
}

.public-chat-error:not(:empty) {
  display: block;
}

.app-more-cta h2,
.app-more-cta p {
  color: #fff;
}

.app-more-cta h2 {
  margin-bottom: 8px;
}

.app-more-cta p {
  max-width: 620px;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
}

.addon-row--stacked strong {
  display: grid;
  gap: 3px;
}

.addon-row--stacked em {
  color: var(--ink-soft);
  font-size: 13px;
  font-style: normal;
  font-weight: 600;
}

.plan-check {
  width: 20px;
  height: 20px;
  position: relative;
  overflow: hidden;
  color: transparent;
  font-size: 0;
  text-indent: -9999px;
  display: inline-grid;
  place-items: center;
  box-shadow: 0 7px 16px rgba(21, 25, 37, 0.08);
}

.plan-check::before,
.plan-check::after {
  content: "";
  position: absolute;
  display: block;
}

.plan-check.is-yes {
  background: #12b981;
}

.plan-check.is-yes::before {
  left: 50%;
  top: 50%;
  width: 6px;
  height: 10px;
  border-right: 2.4px solid #fff;
  border-bottom: 2.4px solid #fff;
  border-radius: 1px;
  transform: translate(-50%, -58%) rotate(45deg);
  transform-origin: center;
}

.plan-check.is-yes::after {
  display: none;
}

.plan-check.is-no {
  background: #ff4d5d;
}

.plan-check.is-no::before,
.plan-check.is-no::after {
  left: 50%;
  top: 50%;
  width: 10px;
  height: 2.4px;
  border-radius: 999px;
  background: #fff;
  transform-origin: center;
}

.plan-check.is-no::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.plan-check.is-no::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

body[data-page="precos"] .pricing-page-hero .page-hero__actions {
  animation: pricingEntryRise 660ms var(--ease-enter) 360ms backwards;
}

body[data-page="precos"] .pricing-section--entry .pricing-toolbar h2 {
  animation: pricingEntryRise 660ms var(--ease-enter) 520ms backwards;
}

body[data-page="precos"] .pricing-section--entry .plan {
  --plan-entry-y: 0px;
  animation: pricingPlanRise 760ms var(--ease-enter) backwards;
  animation-delay: calc(720ms + var(--i, 0) * 90ms);
}

body[data-page="precos"] .pricing-section--entry .plan--featured {
  --plan-entry-y: -8px;
}

body[data-page="precos"] .pricing-section--entry .billing-toggle {
  animation: pricingEntryRise 620ms var(--ease-enter) 1260ms backwards;
}

body[data-page="precos"] .compare-scroll .compare-row {
  opacity: 0;
  transform: translate3d(0, 22px, 0);
  transition:
    opacity 560ms var(--ease-enter),
    transform 680ms var(--ease-enter);
  transition-delay: calc(var(--row-index, 0) * 58ms + 110ms);
  will-change: opacity, transform;
}

body[data-page="precos"] .compare-scroll.is-visible .compare-row {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

body[data-page="precos"] .compare-row:nth-child(1) { --row-index: 0; }
body[data-page="precos"] .compare-row:nth-child(2) { --row-index: 1; }
body[data-page="precos"] .compare-row:nth-child(3) { --row-index: 2; }
body[data-page="precos"] .compare-row:nth-child(4) { --row-index: 3; }
body[data-page="precos"] .compare-row:nth-child(5) { --row-index: 4; }
body[data-page="precos"] .compare-row:nth-child(6) { --row-index: 5; }
body[data-page="precos"] .compare-row:nth-child(7) { --row-index: 6; }
body[data-page="precos"] .compare-row:nth-child(8) { --row-index: 7; }
body[data-page="precos"] .compare-row:nth-child(9) { --row-index: 8; }
body[data-page="precos"] .compare-row:nth-child(10) { --row-index: 9; }
body[data-page="precos"] .compare-row:nth-child(11) { --row-index: 10; }
body[data-page="precos"] .compare-row:nth-child(12) { --row-index: 11; }

body[data-page="implantacao"] .implementation-hero.reveal .implementation-points article {
  opacity: 0;
  transform: translate3d(42px, 0, 0);
  transition:
    opacity 620ms var(--ease-enter),
    transform 760ms var(--ease-enter),
    box-shadow 220ms var(--ease-state);
  will-change: opacity, transform;
}

body[data-page="implantacao"] .implementation-hero.reveal.is-visible .implementation-points article {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

body[data-page="implantacao"] .implementation-hero.reveal.is-visible .implementation-points article:nth-child(1) {
  transition-delay: 260ms;
}

body[data-page="implantacao"] .implementation-hero.reveal.is-visible .implementation-points article:nth-child(2) {
  transition-delay: 380ms;
}

body[data-page="implantacao"] .implementation-hero.reveal.is-visible .implementation-points article:nth-child(3) {
  transition-delay: 500ms;
}

body[data-page="implantacao"] .steps--compact.reveal .step {
  opacity: 0;
  transform: translate3d(0, 24px, 0);
  transition:
    opacity 560ms var(--ease-enter),
    transform 680ms var(--ease-enter);
  transition-delay: calc(var(--step-index, 0) * 84ms + 120ms);
  will-change: opacity, transform;
}

body[data-page="implantacao"] .steps--compact.reveal.is-visible .step {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

body[data-page="implantacao"] .steps--compact .step:nth-child(1) { --step-index: 0; }
body[data-page="implantacao"] .steps--compact .step:nth-child(2) { --step-index: 1; }
body[data-page="implantacao"] .steps--compact .step:nth-child(3) { --step-index: 2; }
body[data-page="implantacao"] .steps--compact .step:nth-child(4) { --step-index: 3; }
body[data-page="implantacao"] .steps--compact .step:nth-child(5) { --step-index: 4; }

@keyframes pricingEntryRise {
  from {
    opacity: 0;
    transform: translate3d(0, 24px, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes pricingPlanRise {
  from {
    opacity: 0;
    transform: translate3d(0, calc(var(--plan-entry-y, 0px) + 30px), 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, var(--plan-entry-y, 0px), 0);
  }
}

@keyframes wmsLabelPrint {
  0%, 18% {
    transform: translateY(-18px);
    opacity: 0;
  }

  36%, 82% {
    transform: translateY(0);
    opacity: 1;
  }

  100% {
    transform: translateY(18px);
    opacity: 0;
  }
}

@keyframes wmsScanPulse {
  0%, 100% {
    opacity: 0.28;
    transform: rotate(-18deg) scale(0.88);
  }

  46% {
    opacity: 1;
    transform: rotate(-18deg) scale(1.08);
  }
}

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

  .wms-hero__copy,
  .wms-hero__copy p,
  .wms-hero__copy .page-hero__actions {
    margin-inline: auto;
    text-align: center;
    justify-content: center;
  }

  .wms-hero__visual {
    width: min(100%, 680px);
    margin-inline: auto;
    margin-left: auto;
  }

  .wms-hero__image {
    width: min(100%, 720px);
    transform: none;
  }

  .wms-process-card,
  .wms-process-card--reverse {
    grid-template-columns: 1fr;
  }

  .wms-process-card--reverse .wms-process-card__copy,
  .wms-process-card--reverse .wms-process-media {
    order: initial;
  }

  .wms-process-card__copy,
  .wms-process-card__copy p {
    max-width: none;
  }
}

@media (max-width: 900px) {
  .wms-phase-grid {
    grid-template-columns: 1fr;
  }

  .wms-final-cta {
    display: grid;
    text-align: center;
    justify-items: center;
  }
}

@media (max-width: 640px) {
  .marketplace-soon__logos {
    width: min(100%, 250px);
    min-height: 188px;
  }

  .marketplace-logo-tile {
    width: 100px;
    height: 76px;
  }

  .wms-hero {
    padding: 58px 0 50px;
  }

  .wms-hero__brand,
  .wms-hero__copy h1 .wms-hero__brand {
    font-size: 68px;
  }

  .wms-hero__visual {
    min-height: 300px;
  }

  .wms-hero__image {
    width: min(112%, 520px);
    border-radius: 0;
    filter: drop-shadow(0 24px 48px rgba(21, 25, 37, 0.14));
  }

  .wms-device-card--desktop {
    width: 84%;
    height: 286px;
  }

  .wms-device-card--phone {
    right: 0;
    width: 38%;
    height: 356px;
  }

  .wms-printer {
    left: 0;
    width: 190px;
    transform: scale(0.88);
    transform-origin: left bottom;
  }

  .wms-flow-summary,
  .wms-process-card,
  .wms-final-cta,
  .app-more-cta {
    padding: 34px 24px;
    border-radius: 34px;
  }

  .wms-process-list {
    margin-top: 24px;
  }

  .wms-process-card {
    min-height: unset;
    gap: 22px;
  }

  .wms-process-media {
    min-height: 240px;
  }

  .wms-process-media--dual {
    justify-content: center;
    padding-right: 0;
  }

  .wms-process-image--macbook {
    width: 86%;
  }

  .wms-process-image--iphone {
    width: 30%;
    margin-left: -46px;
    transform: translateY(16px);
  }

  .wms-process-media--printer {
    min-height: 230px;
  }

  .wms-process-image--printer {
    width: min(104%, 420px);
  }

  .app-more-cta {
    display: grid;
    text-align: center;
    justify-items: center;
  }

  .addon-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}

@media (max-width: 1120px) {
  .schedule-layout {
    grid-template-columns: 1fr;
    gap: 34px;
    align-items: start;
  }

  .schedule-copy h1,
  .schedule-copy p {
    max-width: 780px;
  }
}

@media (max-width: 900px) {
  .schedule-page {
    padding: 42px 0 74px;
  }

  .schedule-picker {
    grid-template-columns: 1fr;
  }

  .schedule-times {
    min-height: 0;
  }

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

@media (max-width: 640px) {
  body[data-page="app"] .app-hero {
    overflow: hidden;
    padding-bottom: 40px;
  }

  body[data-page="app"] .app-device-hero {
    min-height: 339px;
  }

  body[data-page="app"] .app-hero__copy {
    width: 100%;
    max-width: 100%;
    text-align: center;
  }

  body[data-page="app"] .app-hero__copy h1,
  body[data-page="app"] .app-hero__copy p {
    max-width: 100%;
  }

  body[data-page="app"] .app-hero__copy .page-hero__actions {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  body[data-page="app"] .app-hero__copy .page-hero__actions .button {
    width: 100%;
    min-width: 0;
  }

  body[data-page="app"] .app-device-hero__media--triple {
    width: min(420px, calc(100vw - 32px));
    transform: translateY(44px);
  }

  body[data-page="app"] .app-device-hero__badge {
    top: -66px;
    width: 76px;
    height: 76px;
  }

  body[data-page="app"] .app-phone-hero--triple {
    width: 100%;
    max-height: 480px;
    transform: scale(1.14);
    transform-origin: center top;
  }

  body[data-page="app"] .app-feature-grid.reveal-sequence > * {
    transform: translate3d(0, 30px, 0);
  }

  body[data-page="app"] .app-hero + .page-section {
    padding-top: 32px;
  }

  .schedule-page {
    padding: 26px 0 60px;
  }

  .schedule-layout {
    min-height: 0;
  }

  .schedule-copy h1 {
    font-size: 36px;
  }

  .schedule-copy p {
    font-size: 16px;
  }

  .schedule-copy__points span {
    width: 100%;
    min-height: 44px;
    font-size: 13px;
  }

  .schedule-card {
    padding: 20px;
    border-radius: 30px;
  }

  .schedule-form-grid {
    grid-template-columns: 1fr;
  }

  .schedule-calendar,
  .schedule-times {
    border-radius: 22px;
  }

  .schedule-day {
    min-height: 38px;
    border-radius: 12px;
    font-size: 13px;
  }

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

  .schedule-success__card {
    padding: 42px 24px;
    border-radius: 34px;
  }

  .public-chat-widget {
    right: 12px;
    bottom: 12px;
  }

  .public-chat-widget.is-open::before {
    opacity: 0.46;
  }

  .public-chat-toggle {
    width: 56px;
    height: 56px;
  }

  .public-chat-panel {
    width: calc(100vw - 24px);
    height: min(720px, calc(100dvh - 48px));
    border-radius: 26px;
  }

  .public-chat-form {
    grid-template-columns: 1fr 44px;
  }

  .public-chat-form button {
    width: 44px;
    height: 44px;
  }

  body[data-page="agendamento"] .public-chat-widget {
    display: none;
  }
}

@media (max-width: 640px) {
  .reveal {
    transform: translate3d(-30px, 0, 0);
  }

  .reveal:nth-child(even),
  .hero-device-stage.reveal,
  .wms-hero__visual.reveal,
  .app-device-hero.reveal,
  .implementation-cover__visual.reveal,
  .schedule-card.reveal {
    transform: translate3d(30px, 0, 0);
  }

  .reveal.is-visible {
    transform: translate3d(0, 0, 0);
  }

  .reveal-sequence > * {
    transform: translate3d(-26px, 0, 0);
  }

  .reveal-sequence > *:nth-child(even) {
    transform: translate3d(26px, 0, 0);
  }

  .reveal.is-visible .reveal-sequence > *,
  .is-visible.reveal-sequence > * {
    transform: translate3d(0, 0, 0);
  }

  .word-reveal__word,
  .section--channels .channel-title span,
  .section--wms .wms-title__word {
    transform: translate3d(0, 26px, 0);
  }

  .word-reveal.is-visible .word-reveal__word,
  .section--channels .channel-title.is-visible span,
  .section--wms .wms-title.is-visible .wms-title__word {
    transform: translate3d(0, 0, 0);
  }

  .section--stock .stock-sync-panel:not(.is-visible) .operation-band__copy,
  .section--fiscal .fiscal-band:not(.is-visible) .fiscal-heading span,
  .section--fiscal .fiscal-band:not(.is-visible) .fiscal-heading em,
  .section--fiscal .fiscal-band:not(.is-visible) .fiscal-copy,
  .section--fiscal .fiscal-band:not(.is-visible) .fiscal-tags > * {
    transform: translate3d(0, 28px, 0);
  }

  .section--stock .stock-sync-panel:not(.is-visible) .inventory-sync-stage,
  .section--fiscal .fiscal-band:not(.is-visible) .fiscal-flow-visual {
    transform: translate3d(28px, 0, 0);
  }

  body[data-page="precos"] .pricing-page-hero .page-hero__actions,
  body[data-page="precos"] .pricing-section--entry .billing-toggle {
    animation-name: pricingEntrySlideMobile;
  }

  body[data-page="precos"] .pricing-section--entry .plan {
    --mobile-plan-entry-x: -28px;
    animation-name: pricingPlanSlideMobile;
  }

  body[data-page="precos"] .pricing-section--entry .plan:nth-child(even) {
    --mobile-plan-entry-x: 28px;
  }

  body[data-page="precos"] .compare-scroll .compare-row {
    transform: translate3d(-26px, 0, 0);
  }

  body[data-page="precos"] .compare-scroll .compare-row:nth-child(even) {
    transform: translate3d(26px, 0, 0);
  }

  body[data-page="precos"] .compare-scroll .compare-row.is-visible {
    transform: translate3d(0, 0, 0);
  }
}

@keyframes pricingEntrySlideMobile {
  from {
    opacity: 0;
    transform: translate3d(-24px, 0, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes pricingPlanSlideMobile {
  from {
    opacity: 0;
    transform: translate3d(var(--mobile-plan-entry-x, -28px), var(--plan-entry-y, 0), 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, var(--plan-entry-y, 0), 0);
  }
}

@media (max-width: 980px) {
  .legal-layout {
    grid-template-columns: 1fr;
  }

  .legal-toc {
    position: static;
  }

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

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

@media (max-width: 640px) {
  body[data-page="legal"] {
    background: #fff;
  }

  .legal-hero {
    padding-bottom: 18px;
  }

  .legal-meta {
    gap: 8px;
  }

  .legal-meta span {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .legal-section {
    padding-top: 0;
  }

  .legal-toc {
    display: none;
  }

  .legal-document {
    padding: 22px;
    border-radius: 32px;
    box-shadow: none;
  }

  .legal-summary-grid {
    grid-template-columns: 1fr;
    margin-bottom: 30px;
  }

  .legal-summary-grid div {
    min-height: 0;
    padding: 16px;
    border-radius: 20px;
  }

  .legal-document .legal-copy h2 {
    margin-top: 34px;
    font-size: 23px;
  }

  .legal-document .legal-copy p {
    font-size: 15px;
    line-height: 1.68;
  }

  .legal-callout {
    padding: 22px;
    border-radius: 26px;
  }

  .legal-callout .button {
    width: 100%;
  }
}

/* Centralized commercial copy */
@media (max-width: 860px) {
  body[data-page="home"] .hero__copy,
  body[data-page="home"] .page-hero__inner,
  body[data-page="home"] .section-head,
  body[data-page="home"] .operation-band__copy,
  body[data-page="home"] .pricing-toolbar,
  body[data-page="home"] .wms-title,
  body[data-page="integracoes"] .page-hero__inner,
  body[data-page="integracoes"] .section-head,
  body[data-page="wms"] .page-hero__inner,
  body[data-page="wms"] .section-head,
  body[data-page="wms"] .wms-hero__copy,
  body[data-page="wms"] .wms-final-cta > div,
  body[data-page="app"] .page-hero__inner,
  body[data-page="app"] .section-head,
  body[data-page="app"] .app-hero__copy,
  body[data-page="app"] .app-device-copy,
  body[data-page="app"] .app-more-cta > div,
  body[data-page="precos"] .page-hero__inner,
  body[data-page="precos"] .section-head,
  body[data-page="precos"] .pricing-toolbar,
  body[data-page="implantacao"] .page-hero__inner,
  body[data-page="implantacao"] .section-head,
  body[data-page="implantacao"] .implementation-cover__copy,
  body[data-page="implantacao"] .implementation-hero > div:first-child,
  body[data-page="agendamento"] .schedule-copy,
  body[data-page="suporte"] .page-hero__inner,
  body[data-page="suporte"] .section-head,
  body[data-page="install"] .install-copy {
    margin-inline: auto;
    text-align: center;
    justify-items: center;
  }

  body[data-page="home"] .hero__copy > *,
  body[data-page="home"] .hero__lead,
  body[data-page="home"] .page-hero__inner > *,
  body[data-page="home"] .section-head > *,
  body[data-page="home"] .section-head p,
  body[data-page="home"] .operation-band__copy > *,
  body[data-page="home"] .pricing-toolbar > *,
  body[data-page="home"] .wms-title > *,
  body[data-page="integracoes"] .page-hero__inner > *,
  body[data-page="integracoes"] .section-head > *,
  body[data-page="integracoes"] .section-head p,
  body[data-page="wms"] .page-hero__inner > *,
  body[data-page="wms"] .section-head > *,
  body[data-page="wms"] .section-head p,
  body[data-page="wms"] .wms-hero__copy > *,
  body[data-page="wms"] .wms-hero__copy h1,
  body[data-page="wms"] .wms-hero__copy p,
  body[data-page="wms"] .wms-final-cta > div > *,
  body[data-page="app"] .page-hero__inner > *,
  body[data-page="app"] .section-head > *,
  body[data-page="app"] .section-head p,
  body[data-page="app"] .app-hero__copy > *,
  body[data-page="app"] .app-hero__copy h1,
  body[data-page="app"] .app-hero__copy p,
  body[data-page="app"] .app-device-copy > *,
  body[data-page="app"] .app-more-cta > div > *,
  body[data-page="precos"] .page-hero__inner > *,
  body[data-page="precos"] .section-head > *,
  body[data-page="precos"] .section-head p,
  body[data-page="precos"] .pricing-toolbar > *,
  body[data-page="implantacao"] .page-hero__inner > *,
  body[data-page="implantacao"] .section-head > *,
  body[data-page="implantacao"] .section-head p,
  body[data-page="implantacao"] .implementation-cover__copy > *,
  body[data-page="implantacao"] .implementation-hero > div:first-child > *,
  body[data-page="agendamento"] .schedule-copy > *,
  body[data-page="suporte"] .page-hero__inner > *,
  body[data-page="suporte"] .section-head > *,
  body[data-page="suporte"] .section-head p,
  body[data-page="install"] .install-copy > * {
    margin-left: auto;
    margin-right: auto;
  }

  body[data-page="home"] .section--wms .wms-title__line {
    justify-content: center;
    text-align: center;
    width: 100%;
  }

  body[data-page="home"] .hero__actions,
  body[data-page="home"] .page-hero__actions,
  body[data-page="integracoes"] .page-hero__actions,
  body[data-page="wms"] .page-hero__actions,
  body[data-page="wms"] .wms-hero__copy .page-hero__actions,
  body[data-page="app"] .page-hero__actions,
  body[data-page="app"] .app-hero__copy .page-hero__actions,
  body[data-page="precos"] .page-hero__actions,
  body[data-page="implantacao"] .page-hero__actions,
  body[data-page="implantacao"] .implementation-cover__copy .page-hero__actions,
  body[data-page="agendamento"] .schedule-copy__points,
  body[data-page="install"] .install-actions {
    justify-content: center;
    justify-items: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .word-reveal__word,
  .section--wms .wms-title__word,
  .flow-moving-product,
  .flow-box-front,
  .flow-box-flap-line,
  .flow-box-label,
  .wms-printer__label,
  .wms-printer__scan,
  .public-chat-typing-dot,
  .section--channels .channel-grid.reveal-sequence > *,
  .section--channels .capability-grid--home.reveal-sequence > * {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
    animation: none !important;
  }

  .public-chat-widget::before {
    transition: none !important;
  }
}
