:root {
  --landing-navy: #080d29;
  --landing-navy-soft: #11183d;
  --landing-blue: #5f6df4;
  --landing-blue-bright: #7380ff;
  --landing-blue-soft: #e8eaff;
  --landing-white: #ffffff;
  --landing-ink: #11182b;
  --landing-muted: #667089;
  --landing-line: rgba(18, 29, 61, .11);
  --landing-container: 1480px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body.landing-body {
  margin: 0;
  overflow-x: clip;
  color: var(--landing-ink);
  background: #fff;
  font-family: Inter, Aptos, "Segoe UI", sans-serif;
  text-rendering: optimizeLegibility;
  touch-action: manipulation;
}

.landing-body a {
  color: inherit;
  text-decoration: none;
}

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

.landing-container {
  width: min(calc(100% - 3rem), var(--landing-container));
  margin-inline: auto;
}

.landing-skip-link {
  position: fixed;
  top: .75rem;
  left: .75rem;
  z-index: 2000;
  padding: .75rem 1rem;
  color: #fff;
  background: var(--landing-blue);
  border-radius: .7rem;
  transform: translateY(-150%);
  transition: transform .18s ease;
}

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

.landing-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  height: 92px;
  color: rgba(255, 255, 255, .82);
  transition:
    height .25s ease,
    background .25s ease,
    border-color .25s ease,
    backdrop-filter .25s ease;
}

.landing-header.is-scrolled {
  height: 76px;
  background: rgba(8, 13, 41, .82);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  backdrop-filter: blur(18px);
}

.landing-header__inner {
  display: grid;
  height: 100%;
  grid-template-columns: 180px 1fr 180px;
  align-items: center;
}

.landing-brand {
  display: inline-flex;
  width: max-content;
  align-items: center;
}

.landing-brand img {
  display: block;
  width: 142px;
  height: auto;
}

.landing-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.2rem;
  font-size: .92rem;
  font-weight: 650;
}

.landing-nav a {
  position: relative;
  padding-block: .6rem;
  transition: color .18s ease;
}

.landing-nav a::after {
  position: absolute;
  right: 0;
  bottom: .2rem;
  left: 0;
  height: 2px;
  background: var(--landing-blue-bright);
  border-radius: 99px;
  content: "";
  transform: scaleX(0);
  transition: transform .18s ease;
}

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

.landing-nav a:hover::after,
.landing-nav a:focus-visible::after {
  transform: scaleX(1);
}

.landing-mobile-toggle,
.landing-mobile-menu {
  display: none;
}

.landing-mobile-toggle {
  position: relative;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  padding: 0;
  color: #fff;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: .85rem;
  cursor: pointer;
  backdrop-filter: blur(12px);
}

.landing-mobile-toggle span {
  display: block;
  width: 19px;
  height: 2px;
  background: currentColor;
  border-radius: 99px;
  transition: transform .24s ease, opacity .18s ease, width .24s ease;
}

.landing-mobile-toggle:focus-visible {
  outline: 3px solid rgba(115, 128, 255, .6);
  outline-offset: 3px;
}

.landing-mobile-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(7px) rotate(45deg);
}

.landing-mobile-toggle[aria-expanded="true"] span:nth-child(2) {
  width: 0;
  opacity: 0;
}

.landing-mobile-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-7px) rotate(-45deg);
}

.landing-mobile-menu {
  position: fixed;
  inset: 76px 0 0;
  z-index: 999;
  padding: .75rem 1rem 1rem;
  opacity: 0;
  background: rgba(4, 7, 24, .68);
  backdrop-filter: blur(12px);
  transition: opacity .22s ease;
}

.landing-mobile-menu__panel {
  display: flex;
  max-height: calc(100dvh - 94px);
  flex-direction: column;
  padding: 1.6rem;
  overflow-y: auto;
  color: #fff;
  background:
    radial-gradient(circle at 100% 0, rgba(95, 109, 244, .25), transparent 16rem),
    #0d1335;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 1.4rem;
  box-shadow: 0 30px 80px rgba(0, 0, 0, .48);
  transform: translateY(-14px) scale(.985);
  transform-origin: top;
  transition: transform .25s cubic-bezier(.22, 1, .36, 1);
}

.landing-mobile-menu.is-open {
  opacity: 1;
}

.landing-mobile-menu.is-open .landing-mobile-menu__panel {
  transform: translateY(0) scale(1);
}

.landing-mobile-menu__eyebrow {
  margin-bottom: 1rem;
  color: #919cff;
  font-size: .68rem;
  font-weight: 850;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.landing-mobile-menu nav {
  display: grid;
  border-top: 1px solid rgba(255, 255, 255, .1);
}

.landing-mobile-menu nav a {
  display: flex;
  min-height: 66px;
  align-items: center;
  gap: 1rem;
  color: rgba(255, 255, 255, .92);
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  font-size: clamp(1.15rem, 5vw, 1.4rem);
  font-weight: 760;
  letter-spacing: -.025em;
}

.landing-mobile-menu nav a span {
  color: #7f8aff;
  font-size: .62rem;
  font-weight: 850;
  letter-spacing: .08em;
}

.landing-mobile-menu nav a:focus-visible {
  outline: 3px solid rgba(115, 128, 255, .6);
  outline-offset: -3px;
}

.landing-mobile-menu__cta {
  width: 100%;
  margin-top: 1.35rem;
}

.landing-mobile-menu__panel > p {
  margin: 1rem 0 0;
  color: rgba(224, 228, 255, .55);
  font-size: .78rem;
  line-height: 1.55;
  text-align: center;
}

.landing-body.is-menu-open {
  overflow: hidden;
}

.landing-button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: .65rem;
  padding: .75rem 1.25rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: .92rem;
  font-weight: 780;
  line-height: 1;
  transition:
    transform .18s ease,
    background .18s ease,
    border-color .18s ease,
    box-shadow .18s ease;
}

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

.landing-button:focus-visible,
.landing-nav a:focus-visible,
.landing-brand:focus-visible {
  outline: 3px solid rgba(115, 128, 255, .55);
  outline-offset: 3px;
}

.landing-button--header {
  min-height: 44px;
  justify-self: end;
  padding-inline: 1.25rem;
  color: #fff !important;
  background: rgba(255, 255, 255, .08);
  border-color: rgba(255, 255, 255, .15);
  backdrop-filter: blur(10px);
}

.landing-button--header:hover {
  background: rgba(255, 255, 255, .15);
}

.landing-button--primary {
  color: #fff !important;
  background: linear-gradient(135deg, var(--landing-blue-bright), #4e5de0);
  box-shadow: 0 16px 40px rgba(75, 89, 223, .34);
}

.landing-button--primary:hover {
  box-shadow: 0 20px 48px rgba(75, 89, 223, .42);
}

.landing-button--ghost {
  color: #e6e9ff !important;
  background: rgba(255, 255, 255, .05);
  border-color: rgba(255, 255, 255, .14);
}

.landing-button--ghost:hover {
  background: rgba(255, 255, 255, .1);
}

.landing-hero {
  position: relative;
  min-height: 850px;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(115deg, rgba(10, 15, 48, .98) 0%, rgba(10, 15, 48, .96) 47%, rgba(13, 20, 57, .92) 100%),
    var(--landing-navy);
}

.landing-hero::before {
  position: absolute;
  inset: 0;
  opacity: .12;
  background-image:
    linear-gradient(rgba(255, 255, 255, .08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .08) 1px, transparent 1px);
  background-size: 64px 64px;
  content: "";
  mask-image: linear-gradient(to bottom, #000, transparent 82%);
}

.landing-hero__glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(10px);
}

.landing-hero__glow--one {
  top: -220px;
  right: -100px;
  width: 640px;
  height: 640px;
  opacity: .3;
  background: radial-gradient(circle, #6371ff 0%, rgba(99, 113, 255, 0) 69%);
}

.landing-hero__glow--two {
  bottom: -330px;
  left: 18%;
  width: 620px;
  height: 620px;
  opacity: .15;
  background: radial-gradient(circle, #9ba5ff 0%, rgba(99, 113, 255, 0) 69%);
}

.landing-hero__grid {
  position: relative;
  z-index: 2;
  display: grid;
  min-width: 0;
  min-height: 790px;
  grid-template-columns: minmax(0, .82fr) minmax(580px, 1.18fr);
  align-items: center;
  gap: 4rem;
  padding-top: 104px;
  padding-bottom: 52px;
}

.landing-hero__copy {
  position: relative;
  z-index: 2;
  min-width: 0;
  padding-bottom: 1rem;
  animation: landing-copy-in .75s cubic-bezier(.22, 1, .36, 1) both;
}

.landing-eyebrow,
.landing-kicker {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  color: #9ea8ff;
  font-size: .72rem;
  font-weight: 850;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.landing-eyebrow::before,
.landing-kicker::before {
  width: 28px;
  height: 2px;
  background: currentColor;
  border-radius: 99px;
  content: "";
}

.landing-hero h1 {
  max-width: 650px;
  margin: 1.5rem 0 1.35rem;
  font-size: clamp(3.55rem, 5.7vw, 6.25rem);
  font-weight: 840;
  letter-spacing: -.07em;
  line-height: .94;
}

.landing-hero h1 span {
  color: transparent;
  background: linear-gradient(100deg, #fff 0%, #aeb6ff 45%, #7684ff 100%);
  background-clip: text;
  -webkit-background-clip: text;
}

.landing-hero__copy > p {
  max-width: 590px;
  margin: 0;
  color: #b8c0d5;
  font-size: 1.08rem;
  line-height: 1.72;
}

.landing-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
  margin-top: 2rem;
}

.landing-hero__benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  margin: 1.5rem 0 0;
  padding: 0;
  color: #8e99b5;
  font-size: .82rem;
  list-style: none;
}

.landing-hero__benefits li {
  display: flex;
  align-items: center;
  gap: .45rem;
}

.landing-hero__benefits span {
  display: grid;
  width: 1.25rem;
  height: 1.25rem;
  place-items: center;
  color: #b8c0ff;
  background: rgba(113, 128, 244, .15);
  border-radius: 50%;
  font-size: .66rem;
}

.landing-product {
  position: relative;
  min-width: 0;
  width: 760px;
  max-width: 100%;
  justify-self: end;
  animation: landing-product-in .9s .12s cubic-bezier(.22, 1, .36, 1) both;
  perspective: 1200px;
}

.landing-product__halo {
  position: absolute;
  inset: 5% -5% -12% 8%;
  opacity: .45;
  background: radial-gradient(ellipse, rgba(92, 108, 244, .65), rgba(92, 108, 244, 0) 68%);
  filter: blur(28px);
}

.landing-product__window {
  position: relative;
  overflow: hidden;
  background: #f4f6fb;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 1.35rem;
  box-shadow:
    0 50px 110px rgba(0, 0, 0, .4),
    0 0 0 8px rgba(255, 255, 255, .035);
  transform: rotateY(-3deg) rotateX(1deg);
}

.landing-product__topbar {
  display: grid;
  height: 52px;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 1rem;
  color: #6c7690;
  background: rgba(255, 255, 255, .96);
  border-bottom: 1px solid #e6e9f1;
  font-size: .69rem;
  font-weight: 700;
}

.landing-product__dots {
  display: flex;
  gap: .35rem;
}

.landing-product__dots span {
  width: .48rem;
  height: .48rem;
  background: #d9deea;
  border-radius: 50%;
}

.landing-product__live {
  display: inline-flex;
  justify-self: end;
  align-items: center;
  gap: .35rem;
  color: #2f8b68;
}

.landing-product__live i {
  width: .42rem;
  height: .42rem;
  background: #36b283;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(54, 178, 131, .12);
}

.landing-product__body {
  display: grid;
  min-height: 430px;
  grid-template-columns: 62px 1fr;
}

.landing-product__sidebar {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem .75rem;
  background: #0d1434;
}

.landing-product__sidebar img {
  width: 28px;
  height: 28px;
  margin-bottom: .65rem;
}

.landing-product__sidebar span {
  width: 30px;
  height: 30px;
  background:
    linear-gradient(#76819a 0 0) center / 12px 2px no-repeat,
    rgba(255, 255, 255, .04);
  border-radius: .55rem;
}

.landing-product__sidebar span.is-active {
  background:
    linear-gradient(#fff 0 0) center / 12px 2px no-repeat,
    rgba(108, 122, 255, .32);
  box-shadow: inset 2px 0 #7180f4;
}

.landing-product__content {
  min-width: 0;
  padding: 1.25rem;
}

.landing-product__heading,
.landing-card-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.landing-product__heading > div,
.landing-card-heading > div {
  display: grid;
  gap: .22rem;
}

.landing-product__heading small,
.landing-card-heading small {
  color: #8b94a8;
  font-size: .52rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.landing-product__heading strong {
  color: #1a2237;
  font-size: .86rem;
}

.landing-product__heading > span {
  padding: .45rem .65rem;
  color: #65708a;
  background: #fff;
  border: 1px solid #e4e7ef;
  border-radius: .5rem;
  font-size: .56rem;
  font-weight: 750;
}

.landing-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .7rem;
  margin-top: 1rem;
}

.landing-metrics article {
  display: grid;
  gap: .32rem;
  min-width: 0;
  padding: .85rem;
  background: #fff;
  border: 1px solid #e7eaf1;
  border-radius: .75rem;
  box-shadow: 0 8px 20px rgba(21, 29, 57, .045);
}

.landing-metrics span {
  overflow: hidden;
  color: #8790a4;
  font-size: .49rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.landing-metrics strong {
  overflow: hidden;
  color: #1c2438;
  font-size: 1.12rem;
  letter-spacing: -.04em;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.landing-metrics small {
  color: #8d96a8;
  font-size: .52rem;
}

.landing-metrics small.is-positive {
  color: #27966d;
}

.landing-dashboard-grid {
  display: grid;
  grid-template-columns: 1.55fr .85fr;
  gap: .7rem;
  margin-top: .7rem;
}

.landing-chart,
.landing-ranking {
  min-width: 0;
  padding: .9rem;
  background: #fff;
  border: 1px solid #e7eaf1;
  border-radius: .75rem;
  box-shadow: 0 8px 20px rgba(21, 29, 57, .045);
}

.landing-card-heading strong {
  color: #263047;
  font-size: .67rem;
}

.landing-card-heading b {
  color: #273149;
  font-size: .65rem;
}

.landing-chart__plot {
  display: flex;
  height: 128px;
  align-items: end;
  justify-content: space-around;
  gap: .5rem;
  margin-top: .75rem;
  padding: 0 .6rem;
  background:
    repeating-linear-gradient(to bottom, transparent 0, transparent 31px, #edf0f5 32px);
  border-bottom: 1px solid #e1e5ed;
}

.landing-chart__plot span {
  width: 16px;
  height: var(--bar);
  min-height: 4px;
  background: linear-gradient(180deg, #7180f4, #4353c8);
  border-radius: .3rem .3rem .08rem .08rem;
  transform-origin: bottom;
  animation: landing-bars 1s .65s cubic-bezier(.22, 1, .36, 1) both;
}

.landing-chart__plot span:nth-child(2n) {
  background: linear-gradient(180deg, #b6c0e5, #8e9bc7);
}

.landing-chart__labels {
  display: flex;
  justify-content: space-around;
  padding: .5rem .55rem 0;
  color: #9ba3b3;
  font-size: .45rem;
}

.landing-ranking ol {
  display: grid;
  gap: .55rem;
  margin: .75rem 0 0;
  padding: 0;
  list-style: none;
}

.landing-ranking li {
  display: grid;
  grid-template-columns: 1.5rem 1fr;
  align-items: center;
  gap: .5rem;
  min-width: 0;
}

.landing-ranking li > b {
  display: grid;
  width: 1.5rem;
  height: 1.5rem;
  place-items: center;
  color: #5362d4;
  background: #edf0ff;
  border-radius: .38rem;
  font-size: .52rem;
}

.landing-ranking li:first-child > b {
  color: #8b6200;
  background: #fff2cd;
}

.landing-ranking li > span {
  display: grid;
  min-width: 0;
  gap: .1rem;
  overflow: hidden;
  color: #313a4d;
  font-size: .56rem;
  font-weight: 750;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.landing-ranking li small {
  color: #9098a9;
  font-size: .45rem;
  font-weight: 500;
}

.landing-float-card {
  position: absolute;
  z-index: 3;
  color: #1a2236;
  background: rgba(255, 255, 255, .97);
  border: 1px solid rgba(255, 255, 255, .8);
  border-radius: .9rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, .24);
  backdrop-filter: blur(12px);
}

.landing-float-card--stock {
  bottom: -32px;
  left: -42px;
  display: flex;
  align-items: center;
  gap: .7rem;
  padding: .85rem 1rem;
  animation: landing-float 5s 1s ease-in-out infinite;
}

.landing-float-card__icon {
  display: grid;
  width: 2rem;
  height: 2rem;
  place-items: center;
  color: #fff;
  background: #37ad80;
  border-radius: .6rem;
  font-size: .75rem;
  font-weight: 900;
}

.landing-float-card--stock div {
  display: grid;
  gap: .12rem;
}

.landing-float-card small {
  color: #7c8699;
  font-size: .56rem;
}

.landing-float-card strong {
  font-size: .72rem;
}

.landing-float-card--sale {
  top: 82px;
  right: -30px;
  display: grid;
  gap: .16rem;
  padding: .85rem 1rem;
  animation: landing-float 5s 1.6s ease-in-out infinite reverse;
}

.landing-float-card--sale strong {
  color: #4050c5;
  font-size: 1rem;
}

.landing-float-card--sale span {
  color: #a0a7b5;
  font-size: .49rem;
}

.landing-hero__modules {
  position: relative;
  z-index: 3;
  display: flex;
  min-height: 60px;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  color: #8994b1;
  border-top: 1px solid rgba(255, 255, 255, .08);
  font-size: .74rem;
  font-weight: 760;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.landing-hero__modules i {
  width: 4px;
  height: 4px;
  background: #5261d8;
  border-radius: 50%;
}

.landing-section {
  position: relative;
  padding: 8rem 0;
}

.landing-section--light {
  overflow: hidden;
  background:
    radial-gradient(circle at 15% 5%, rgba(98, 112, 244, .08), transparent 32%),
    #f7f8fc;
}

.landing-section__intro {
  display: grid;
  max-width: 760px;
  gap: 1.3rem;
  margin-bottom: 3.5rem;
}

.landing-kicker {
  color: #5665d7;
}

.landing-section__intro h2,
.landing-statement h2,
.landing-cta h2 {
  margin: 0;
  color: #11182b;
  font-size: clamp(2.8rem, 5vw, 5.3rem);
  font-weight: 830;
  letter-spacing: -.065em;
  line-height: .98;
}

.landing-section__intro p,
.landing-statement p {
  max-width: 680px;
  margin: 0;
  color: var(--landing-muted);
  font-size: 1.06rem;
  line-height: 1.75;
}

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

.landing-feature {
  position: relative;
  display: flex;
  min-height: 420px;
  flex-direction: column;
  padding: 2rem;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--landing-line);
  border-radius: 1.4rem;
  box-shadow: 0 18px 50px rgba(24, 34, 67, .06);
  transition:
    transform .25s ease,
    box-shadow .25s ease;
}

.landing-feature::after {
  position: absolute;
  right: -70px;
  bottom: -70px;
  width: 190px;
  height: 190px;
  opacity: .12;
  background: radial-gradient(circle, var(--landing-blue), transparent 68%);
  border-radius: 50%;
  content: "";
}

.landing-feature:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 65px rgba(24, 34, 67, .11);
}

.landing-feature--featured {
  color: #fff;
  background:
    radial-gradient(circle at 90% 5%, rgba(115, 128, 255, .32), transparent 34%),
    var(--landing-navy-soft);
  border-color: rgba(255, 255, 255, .08);
}

.landing-feature__number {
  align-self: flex-end;
  color: #a2a9ba;
  font-size: .65rem;
  font-weight: 850;
  letter-spacing: .1em;
}

.landing-feature__icon {
  display: grid;
  width: 3.2rem;
  height: 3.2rem;
  margin-top: 2rem;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, #7885ff, #4e5ed7);
  border-radius: .9rem;
  box-shadow: 0 12px 26px rgba(72, 87, 211, .25);
  font-size: 1.3rem;
}

.landing-feature h3 {
  max-width: 280px;
  margin: 2rem 0 .8rem;
  color: #172037;
  font-size: 1.65rem;
  letter-spacing: -.035em;
  line-height: 1.08;
}

.landing-feature--featured h3 {
  color: #fff;
}

.landing-feature p {
  margin: 0;
  color: #6d778d;
  font-size: .95rem;
  line-height: 1.7;
}

.landing-feature--featured p {
  color: #aeb7ce;
}

.landing-feature__tag {
  width: max-content;
  margin-top: auto;
  padding: .5rem .7rem;
  color: #5362cf;
  background: #eef0ff;
  border-radius: 999px;
  font-size: .66rem;
  font-weight: 820;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.landing-feature--featured .landing-feature__tag {
  color: #d6dbff;
  background: rgba(115, 128, 255, .16);
}

.landing-section--statement {
  overflow: hidden;
  padding: 6.5rem 0;
  color: #fff;
  background:
    radial-gradient(circle at 85% 15%, rgba(95, 109, 244, .18), transparent 30rem),
    linear-gradient(110deg, rgba(8, 13, 41, .98), rgba(17, 24, 61, .97)),
    var(--landing-navy);
}

.landing-section--statement::before {
  position: absolute;
  top: -12rem;
  right: -12rem;
  width: 32rem;
  height: 32rem;
  border: 1px solid rgba(121, 133, 255, .12);
  border-radius: 50%;
  box-shadow:
    0 0 0 5rem rgba(121, 133, 255, .025),
    0 0 0 10rem rgba(121, 133, 255, .018);
  content: "";
}

.landing-statement {
  min-height: 0;
  text-align: center;
}

.landing-statement__copy {
  position: relative;
  z-index: 1;
  max-width: 1050px;
  margin-inline: auto;
}

.landing-statement h2 {
  max-width: 1000px;
  margin-top: 1.5rem;
  margin-inline: auto;
  color: #fff;
  font-size: clamp(3.1rem, 5vw, 5.6rem);
}

.landing-statement p {
  max-width: 650px;
  margin-top: 1.75rem;
  margin-inline: auto;
  color: #abb5cc;
}

.landing-section--cta {
  padding: 5rem 0;
  background: #eef0ff;
}

.landing-section--workflow {
  overflow: hidden;
  background:
    radial-gradient(circle at 92% 16%, rgba(95, 109, 244, .09), transparent 28%),
    #fff;
}

.landing-workflow {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(420px, 1.1fr);
  align-items: start;
  gap: 7rem;
}

.landing-workflow__copy {
  position: sticky;
  top: 130px;
}

.landing-workflow__copy h2 {
  max-width: 660px;
  margin: 1.5rem 0;
  color: #11182b;
  font-size: clamp(2.8rem, 4.6vw, 5rem);
  font-weight: 830;
  letter-spacing: -.065em;
  line-height: .98;
}

.landing-workflow__copy p {
  max-width: 590px;
  margin: 0;
  color: var(--landing-muted);
  font-size: 1.03rem;
  line-height: 1.75;
}

.landing-steps {
  display: grid;
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.landing-steps li {
  display: grid;
  min-height: 150px;
  grid-template-columns: 4rem 1fr;
  align-items: center;
  gap: 1.25rem;
  padding: 1.6rem;
  background: #f8f9fd;
  border: 1px solid var(--landing-line);
  border-radius: 1.25rem;
  transition:
    border-color .22s ease,
    transform .22s ease,
    box-shadow .22s ease;
}

.landing-steps li:hover {
  border-color: rgba(95, 109, 244, .3);
  box-shadow: 0 20px 46px rgba(23, 32, 67, .08);
  transform: translateX(-8px);
}

.landing-steps li > b {
  display: grid;
  width: 4rem;
  height: 4rem;
  place-items: center;
  color: #5665d7;
  background: #e9ecff;
  border-radius: 1rem;
  font-size: .75rem;
  letter-spacing: .08em;
}

.landing-steps li > div {
  display: grid;
  gap: .4rem;
}

.landing-steps strong {
  color: #182139;
  font-size: 1.12rem;
}

.landing-steps span {
  color: #707a90;
  font-size: .9rem;
  line-height: 1.55;
}

.landing-section--contact {
  padding-top: 5rem;
  color: #fff;
  background:
    radial-gradient(circle at 0 100%, rgba(97, 111, 244, .24), transparent 33%),
    #080d29;
}

.landing-contact {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(460px, 1.1fr);
  align-items: center;
  gap: 6rem;
}

.landing-contact__copy h2 {
  max-width: 640px;
  margin: 1.5rem 0;
  color: #fff;
  font-size: clamp(2.8rem, 4.8vw, 5.2rem);
  font-weight: 830;
  letter-spacing: -.065em;
  line-height: .98;
}

.landing-contact__copy > p {
  max-width: 590px;
  margin: 0;
  color: #acb5cc;
  font-size: 1rem;
  line-height: 1.75;
}

.landing-contact__promise {
  display: grid;
  max-width: 520px;
  grid-template-columns: 2.6rem 1fr;
  align-items: center;
  gap: .85rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, .1);
}

.landing-contact__promise > span {
  display: grid;
  width: 2.6rem;
  height: 2.6rem;
  place-items: center;
  color: #fff;
  background: rgba(115, 128, 255, .18);
  border: 1px solid rgba(115, 128, 255, .32);
  border-radius: .8rem;
}

.landing-contact__promise p {
  display: grid;
  gap: .2rem;
  margin: 0;
  color: #9fa9c2;
  font-size: .78rem;
  line-height: 1.5;
}

.landing-contact__promise strong {
  color: #fff;
  font-size: .9rem;
}

.landing-contact-form {
  display: grid;
  gap: 1rem;
  padding: 2rem;
  color: #182139;
  background: rgba(255, 255, 255, .98);
  border: 1px solid rgba(255, 255, 255, .8);
  border-radius: 1.5rem;
  box-shadow: 0 38px 90px rgba(0, 0, 0, .3);
}

.landing-contact-form__row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.landing-contact-form label {
  display: grid;
  gap: .5rem;
  min-width: 0;
}

.landing-contact-form label > span {
  color: #3d475f;
  font-size: .78rem;
  font-weight: 760;
}

.landing-contact-form input,
.landing-contact-form textarea {
  width: 100%;
  min-height: 52px;
  padding: .8rem .9rem;
  color: #182139;
  background: #f8f9fc;
  border: 1px solid #dde2ec;
  border-radius: .75rem;
  font: inherit;
  font-size: .9rem;
  outline: none;
  resize: vertical;
  transition:
    background .18s ease,
    border-color .18s ease,
    box-shadow .18s ease;
}

.landing-contact-form textarea {
  min-height: 112px;
}

.landing-contact-form input:focus,
.landing-contact-form textarea:focus {
  background: #fff;
  border-color: #7582ef;
  box-shadow: 0 0 0 4px rgba(95, 109, 244, .12);
}

.landing-contact-form input::placeholder,
.landing-contact-form textarea::placeholder {
  color: #99a2b3;
}

.landing-contact-form .landing-button {
  width: 100%;
  margin-top: .25rem;
  border: 0;
  cursor: pointer;
}

.landing-contact-form__note {
  margin: 0;
  color: #7d879a;
  font-size: .7rem;
  line-height: 1.5;
  text-align: center;
}

.landing-cta {
  display: flex;
  min-height: 320px;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 3.5rem;
  color: #fff;
  background:
    radial-gradient(circle at 100% 0%, rgba(132, 144, 255, .52), transparent 35%),
    linear-gradient(135deg, #4656d5, #18235c);
  border-radius: 2rem;
  box-shadow: 0 30px 70px rgba(54, 68, 176, .24);
}

.landing-cta .landing-kicker {
  color: #c8ceff;
}

.landing-cta h2 {
  max-width: 700px;
  margin-top: 1.2rem;
  color: #fff;
}

.landing-button--light {
  flex: 0 0 auto;
  color: #26337d !important;
  background: #fff;
  box-shadow: 0 15px 36px rgba(3, 8, 30, .18);
}

.landing-footer {
  padding: 3.5rem 0;
  color: #929db9;
  background: #070b22;
}

.landing-footer .landing-container {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 2rem;
}

.landing-footer img {
  width: 130px;
}

.landing-footer p,
.landing-footer span {
  margin: 0;
  font-size: .78rem;
}

.landing-js [data-reveal] {
  opacity: 0;
  transform: translateY(34px);
  transition:
    opacity .7s cubic-bezier(.22, 1, .36, 1),
    transform .7s cubic-bezier(.22, 1, .36, 1);
}

.landing-js [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.landing-feature-grid [data-reveal]:nth-child(2) {
  transition-delay: .1s;
}

.landing-feature-grid [data-reveal]:nth-child(3) {
  transition-delay: .2s;
}

@keyframes landing-copy-in {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
}

@keyframes landing-product-in {
  from {
    opacity: 0;
    transform: translateX(36px) scale(.97);
  }
}

@keyframes landing-bars {
  from {
    transform: scaleY(0);
  }
}

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

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

.landing-section--demo {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 82% 24%, rgba(95, 109, 244, .2), transparent 34rem),
    radial-gradient(circle at 12% 78%, rgba(68, 82, 208, .13), transparent 30rem),
    var(--landing-navy);
}

.landing-section--demo::before {
  position: absolute;
  inset: 0;
  opacity: .1;
  background-image:
    linear-gradient(rgba(255, 255, 255, .09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .09) 1px, transparent 1px);
  background-size: 72px 72px;
  content: "";
  mask-image: linear-gradient(to bottom, transparent, #000 16%, #000 82%, transparent);
}

.landing-demo__glow {
  position: absolute;
  top: 26%;
  left: 54%;
  width: 720px;
  height: 720px;
  border-radius: 50%;
  background: rgba(84, 99, 239, .15);
  filter: blur(100px);
  pointer-events: none;
  transform: translate(-50%, -50%);
}

.landing-demo__intro,
.landing-demo {
  position: relative;
  z-index: 1;
}

.landing-demo__intro {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.landing-demo__intro .landing-kicker {
  color: #aeb5ff;
}

.landing-demo__intro h2 {
  margin: 1rem 0 1.25rem;
  font-size: clamp(3.2rem, 6vw, 6.2rem);
  letter-spacing: -.065em;
  line-height: .92;
}

.landing-demo__intro h2 span {
  color: transparent;
  background: linear-gradient(100deg, #fff 5%, #818cff 80%);
  background-clip: text;
  -webkit-background-clip: text;
}

.landing-demo__intro p {
  max-width: 670px;
  margin: 0 auto;
  color: rgba(225, 229, 255, .68);
  font-size: 1.08rem;
  line-height: 1.75;
}

.landing-demo {
  margin-top: 3.6rem;
}

.landing-demo__tabs {
  display: flex;
  width: max-content;
  max-width: 100%;
  margin: 0 auto;
  gap: .35rem;
  padding: .4rem;
  background: rgba(255, 255, 255, .055);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 999px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .18);
  backdrop-filter: blur(18px);
  overscroll-behavior-x: contain;
  touch-action: manipulation;
}

.landing-demo__tabs button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  gap: .65rem;
  padding: .75rem 1.35rem;
  color: rgba(228, 231, 255, .65);
  background: transparent;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font: inherit;
  font-size: .93rem;
  font-weight: 750;
  touch-action: manipulation;
  user-select: none;
  transition: color .2s ease, background .2s ease, transform .2s ease;
}

.landing-demo.is-switching .landing-demo__tabs button {
  cursor: wait;
}

.landing-demo__tabs button span {
  color: rgba(154, 164, 255, .72);
  font-size: .7rem;
  letter-spacing: .08em;
}

.landing-demo__tabs button:hover {
  color: #fff;
}

.landing-demo__tabs button.is-active {
  color: var(--landing-navy);
  background: #fff;
  box-shadow: 0 10px 28px rgba(0, 0, 0, .18);
}

.landing-demo__tabs button.is-active span {
  color: var(--landing-blue);
}

.landing-demo__tabs button:focus-visible {
  outline: 3px solid rgba(115, 128, 255, .7);
  outline-offset: 3px;
}

.landing-demo__panels {
  min-width: 0;
  overflow-anchor: none;
}

.landing-demo-panel {
  display: grid;
  min-width: 0;
  min-height: 660px;
  grid-template-columns: minmax(280px, .52fr) minmax(600px, 1.48fr);
  align-items: center;
  gap: clamp(2.5rem, 5vw, 5rem);
  padding: 4rem 0 1rem;
}

.landing-demo-panel[hidden] {
  display: none;
}

.landing-demo-panel.is-entering {
  animation: landing-demo-enter .45s cubic-bezier(.22, 1, .36, 1);
}

.landing-demo-panel__copy {
  max-width: 440px;
}

.landing-demo-panel__number {
  display: block;
  margin-bottom: 1rem;
  color: #9da6ff;
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.landing-demo-panel__copy h3 {
  margin: 0 0 1.25rem;
  font-size: clamp(2.35rem, 3.5vw, 4.4rem);
  letter-spacing: -.055em;
  line-height: .98;
}

.landing-demo-panel__copy > p {
  margin: 0;
  color: rgba(225, 229, 255, .65);
  font-size: 1.03rem;
  line-height: 1.72;
}

.landing-demo-panel__copy ul {
  display: grid;
  margin: 1.7rem 0 0;
  gap: .85rem;
  padding: 0;
  list-style: none;
}

.landing-demo-panel__copy li {
  display: flex;
  align-items: center;
  gap: .75rem;
  color: rgba(241, 243, 255, .86);
  font-size: .92rem;
  font-weight: 650;
}

.landing-demo-panel__copy li span {
  display: inline-grid;
  width: 1.55rem;
  height: 1.55rem;
  flex: 0 0 1.55rem;
  place-items: center;
  color: #b7beff;
  background: rgba(111, 124, 255, .13);
  border: 1px solid rgba(139, 150, 255, .22);
  border-radius: 50%;
  font-size: .72rem;
}

.landing-demo-stage {
  position: relative;
  min-width: 0;
  perspective: 1400px;
}

.landing-demo-window {
  overflow: hidden;
  color: var(--landing-ink);
  background: #f5f7fc;
  border: 1px solid rgba(255, 255, 255, .55);
  border-radius: 1.35rem;
  box-shadow:
    0 42px 100px rgba(0, 0, 0, .4),
    0 0 0 8px rgba(255, 255, 255, .035);
  transform: rotateY(-2deg) rotateX(1deg);
  transform-origin: center;
}

.landing-demo-window__bar {
  display: flex;
  height: 44px;
  align-items: center;
  gap: .38rem;
  padding: 0 1rem;
  color: #6c7489;
  background: rgba(255, 255, 255, .92);
  border-bottom: 1px solid #e7eaf2;
  font-size: .66rem;
}

.landing-demo-window__bar i {
  width: .48rem;
  height: .48rem;
  background: #d5d9e5;
  border-radius: 50%;
}

.landing-demo-window__bar strong {
  margin: 0 auto;
  font-weight: 750;
}

.landing-demo-window__bar b {
  color: #20946d;
  font-weight: 750;
}

.landing-demo-window__body {
  display: grid;
  min-height: 440px;
  grid-template-columns: 62px 1fr;
}

.landing-demo-sidebar {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 1.2rem;
  padding: 1.05rem .7rem;
  background: #111735;
}

.landing-demo-sidebar img {
  width: 28px;
  height: 28px;
  margin-bottom: .4rem;
}

.landing-demo-sidebar span {
  width: 26px;
  height: 26px;
  opacity: .6;
  background: linear-gradient(#737d9c 0 0) center / 11px 2px no-repeat;
  border-radius: .5rem;
}

.landing-demo-sidebar span.is-active {
  opacity: 1;
  background-color: rgba(100, 114, 244, .27);
  box-shadow: inset 2px 0 #7783ff;
}

.landing-demo-screen {
  min-width: 0;
  padding: 1.45rem;
}

.landing-demo-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.landing-demo-title div {
  display: grid;
  gap: .25rem;
}

.landing-demo-title small,
.landing-sales-summary small,
.landing-metrics-preview small {
  color: #8a93a9;
  font-size: .62rem;
  font-style: normal;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.landing-demo-title strong {
  font-size: 1rem;
}

.landing-demo-title em {
  padding: .55rem .75rem;
  color: #fff;
  background: #5363df;
  border-radius: .55rem;
  font-size: .62rem;
  font-style: normal;
  font-weight: 750;
}

.landing-demo-screen--pos {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(205px, .72fr);
  gap: 1rem;
}

.landing-pos-catalog,
.landing-pos-cart {
  min-width: 0;
  padding: 1.15rem;
  background: #fff;
  border: 1px solid #e6e9f1;
  border-radius: .9rem;
}

.landing-pos-search,
.landing-inventory-tools {
  display: flex;
  min-height: 42px;
  align-items: center;
  gap: .55rem;
  margin-top: 1.15rem;
  padding: .65rem .8rem;
  color: #8992a8;
  background: #f6f7fb;
  border: 1px solid #e2e6ef;
  border-radius: .62rem;
  font-size: .7rem;
}

.landing-pos-products {
  display: grid;
  margin-top: .85rem;
  gap: .55rem;
}

.landing-pos-products > div {
  display: grid;
  grid-template-columns: 34px 1fr auto;
  align-items: center;
  gap: .65rem;
  padding: .62rem;
  background: #fafbfe;
  border: 1px solid #edf0f6;
  border-radius: .65rem;
}

.landing-pos-products b {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  background: #eef0ff;
  border-radius: .55rem;
  font-size: 1rem;
}

.landing-pos-products span,
.landing-cart-lines span {
  display: grid;
  gap: .15rem;
}

.landing-pos-products strong,
.landing-cart-lines span,
.landing-pos-products em {
  font-size: .69rem;
  font-style: normal;
}

.landing-pos-products small,
.landing-cart-lines small {
  color: #9199ad;
  font-size: .56rem;
}

.landing-cart-lines {
  display: grid;
  margin: 1rem 0;
}

.landing-cart-lines > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .5rem;
  padding: .75rem 0;
  border-bottom: 1px solid #edf0f5;
}

.landing-cart-lines b {
  font-size: .67rem;
}

.landing-cart-total {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-top: 1rem;
}

.landing-cart-total span {
  color: #7d869b;
  font-size: .72rem;
}

.landing-cart-total strong {
  font-size: 1.35rem;
}

.landing-pos-cart button {
  width: 100%;
  min-height: 40px;
  margin-top: 1rem;
  color: #fff;
  background: #5363df;
  border: 0;
  border-radius: .6rem;
  font: inherit;
  font-size: .7rem;
  font-weight: 800;
}

.landing-inventory-tools {
  justify-content: space-between;
  margin-bottom: 1rem;
}

.landing-inventory-tools span {
  flex: 1;
}

.landing-inventory-tools b {
  color: #5f687c;
  font-size: .62rem;
}

.landing-mini-table {
  overflow: hidden;
  background: #fff;
  border: 1px solid #e5e8f0;
  border-radius: .8rem;
}

.landing-mini-table > div {
  display: grid;
  min-height: 62px;
  align-items: center;
  padding: .55rem .85rem;
  border-bottom: 1px solid #edf0f5;
  font-size: .66rem;
}

.landing-mini-table > div:last-child {
  border-bottom: 0;
}

.landing-mini-table > .is-heading {
  min-height: 36px;
  color: #9199ac;
  background: #f7f8fb;
  font-size: .55rem;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.landing-mini-table--inventory > div {
  grid-template-columns: 1.65fr .8fr .55fr .45fr;
  gap: .7rem;
}

.landing-mini-table--inventory > div > span:first-child {
  display: flex;
  align-items: center;
  gap: .6rem;
}

.landing-mini-table--inventory i {
  display: grid;
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  place-items: center;
  border-radius: .52rem;
  font-style: normal;
}

.landing-mini-table--inventory i.is-coffee { background: #fff0da; }
.landing-mini-table--inventory i.is-food { background: #e7f5e9; }
.landing-mini-table--inventory i.is-drink { background: #e6efff; }
.landing-mini-table--inventory i.is-home { background: #f2e9ff; }

.landing-mini-table--inventory b {
  display: grid;
  gap: .2rem;
}

.landing-mini-table--inventory b small {
  color: #9aa2b4;
  font-size: .53rem;
  font-weight: 500;
}

.landing-mini-table em {
  padding: .35rem .45rem;
  color: #596274;
  background: #f1f3f7;
  border-radius: 99px;
  font-size: .54rem;
  font-style: normal;
}

.landing-mini-table strong.is-ok { color: #218d69; }
.landing-mini-table strong.is-low { color: #d48718; }
.landing-mini-table strong.is-critical { color: #df5262; }

.landing-sales-summary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .7rem;
  margin: 1rem 0;
}

.landing-sales-summary article {
  display: grid;
  min-width: 0;
  gap: .38rem;
  padding: .85rem;
  background: #fff;
  border: 1px solid #e5e8f0;
  border-radius: .72rem;
}

.landing-sales-summary strong {
  font-size: 1.05rem;
}

.landing-mini-table--sales > div {
  min-height: 55px;
  grid-template-columns: 1fr .7fr 1fr .8fr;
}

.landing-metrics-preview {
  display: grid;
  min-height: 225px;
  grid-template-columns: 1.5fr .72fr;
  gap: .75rem;
}

.landing-metrics-preview > div {
  padding: 1rem;
  background: #fff;
  border: 1px solid #e5e8f0;
  border-radius: .75rem;
}

.landing-metrics-preview__chart > div {
  display: flex;
  height: 165px;
  align-items: flex-end;
  justify-content: space-around;
  gap: .55rem;
  padding: 1rem .6rem .15rem;
  background:
    repeating-linear-gradient(to bottom, transparent 0 43px, #eef0f5 44px);
}

.landing-metrics-preview__chart span {
  width: 11%;
  height: var(--demo-bar);
  background: linear-gradient(#7d88ff, #4f5edc);
  border-radius: .35rem .35rem .05rem .05rem;
}

.landing-metrics-preview__category {
  display: grid;
  place-items: center;
  text-align: center;
}

.landing-metrics-preview__category i {
  display: block;
  width: 92px;
  height: 92px;
  margin: .4rem;
  background: conic-gradient(#5969eb 0 47%, #38a77c 47% 69%, #f0b34f 69% 88%, #ca658b 88%);
  border: 17px solid transparent;
  border-radius: 50%;
  background-clip: padding-box;
  box-shadow: inset 0 0 0 8px #fff;
}

.landing-metrics-preview__category strong {
  font-size: .75rem;
}

.landing-metrics-preview__category span {
  color: #8b94a8;
  font-size: .6rem;
}

.landing-demo-float {
  position: absolute;
  z-index: 4;
  display: flex;
  padding: .9rem 1rem;
  color: var(--landing-ink);
  background: rgba(255, 255, 255, .96);
  border: 1px solid rgba(13, 21, 54, .08);
  border-radius: .85rem;
  box-shadow: 0 24px 54px rgba(0, 0, 0, .3);
  animation: landing-float 4.8s ease-in-out infinite;
}

.landing-demo-float small,
.landing-demo-float span {
  color: #838ca1;
  font-size: .6rem;
}

.landing-demo-float strong {
  font-size: .92rem;
}

.landing-demo-float--change,
.landing-demo-float--growth {
  right: -1rem;
  bottom: -1.6rem;
  align-items: flex-start;
  flex-direction: column;
  gap: .22rem;
}

.landing-demo-float--change strong {
  color: #5262df;
  font-size: 1.35rem;
}

.landing-demo-float--stock,
.landing-demo-float--pdf {
  bottom: -1.2rem;
  left: -1.25rem;
  align-items: center;
  gap: .75rem;
}

.landing-demo-float--stock > span,
.landing-demo-float--pdf > span {
  display: grid;
  width: 2.2rem;
  height: 2.2rem;
  place-items: center;
  color: #fff;
  background: #32a57c;
  border-radius: .6rem;
  font-size: .7rem;
  font-weight: 850;
}

.landing-demo-float--pdf > span {
  background: #e45366;
}

.landing-demo-float--stock div,
.landing-demo-float--pdf div {
  display: grid;
  gap: .15rem;
}

.landing-demo-float--growth strong {
  color: #21966e;
  font-size: 1.28rem;
}

@keyframes landing-demo-enter {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

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

  .landing-hero__grid {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 4rem;
    padding-top: 160px;
    padding-bottom: 100px;
  }

  .landing-hero__copy {
    max-width: 760px;
  }

  .landing-product {
    width: min(820px, calc(100% - 2rem));
    justify-self: center;
  }

  .landing-product__window {
    transform: none;
  }

  .landing-feature {
    min-height: 390px;
  }

  .landing-workflow,
  .landing-contact {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }

  .landing-workflow__copy {
    position: static;
  }

  .landing-demo-panel {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 3rem;
    padding-top: 4rem;
  }

  .landing-demo-panel__copy {
    max-width: 720px;
  }

  .landing-demo-stage {
    width: min(900px, calc(100% - 2rem));
    margin: 0 auto 2rem;
  }

  .landing-demo__tabs {
    display: grid;
    width: min(100%, 760px);
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .landing-demo__tabs button {
    width: 100%;
    min-width: 0;
    justify-content: center;
    padding-inline: .8rem;
  }

}

@media (max-width: 820px) {
  .landing-container {
    width: min(calc(100% - 2rem), var(--landing-container));
  }

  .landing-header {
    height: 76px;
    background: rgba(8, 13, 41, .82);
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    backdrop-filter: blur(18px);
  }

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

  .landing-nav {
    display: none;
  }

  .landing-mobile-toggle {
    display: flex;
    order: 3;
  }

  .landing-mobile-menu {
    display: block;
  }

  .landing-brand img {
    width: 126px;
  }

  .landing-button--header {
    display: none;
  }

  .landing-hero__grid {
    gap: 3.5rem;
    padding-top: 130px;
    padding-bottom: 82px;
  }

  .landing-hero h1 {
    font-size: clamp(3.25rem, 12.5vw, 5.5rem);
  }

  .landing-product {
    width: 100%;
    border-radius: 1rem;
  }

  .landing-product__window {
    width: 100%;
    overflow: hidden;
  }

  .landing-float-card--stock {
    bottom: -38px;
    left: 14px;
  }

  .landing-float-card--sale {
    top: 76px;
    right: 12px;
  }

  .landing-feature-grid {
    grid-template-columns: 1fr;
  }

  .landing-feature {
    min-height: 360px;
  }

  .landing-contact-form {
    padding: 1.5rem;
  }

  .landing-cta {
    align-items: flex-start;
    flex-direction: column;
    padding: 2.4rem;
  }

  .landing-footer .landing-container {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .landing-demo__tabs {
    width: 100%;
    overflow: hidden;
    border-radius: 1rem;
  }

  .landing-demo__tabs button {
    min-width: 0;
  }

  .landing-demo-panel {
    padding-top: 3rem;
  }

  .landing-demo-stage {
    width: 100%;
    border-radius: 1.1rem;
  }

  .landing-demo-window {
    width: 100%;
    transform: none;
  }

}

@media (max-width: 560px) {
  .landing-button {
    min-height: 50px;
  }

  .landing-button--header {
    min-height: 40px;
    padding-inline: 1rem;
    font-size: .82rem;
  }

  .landing-hero__copy > p {
    font-size: 1rem;
  }

  .landing-hero__actions {
    display: grid;
  }

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

  .landing-hero__benefits {
    display: grid;
  }

  .landing-product__window {
    border-radius: 1rem;
  }

  .landing-product__topbar {
    height: 44px;
    padding-inline: .75rem;
    font-size: .58rem;
  }

  .landing-product__body {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .landing-product__sidebar {
    display: none;
  }

  .landing-product__content {
    padding: .8rem;
  }

  .landing-product__heading > span {
    padding: .4rem .5rem;
  }

  .landing-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .55rem;
    margin-top: .7rem;
  }

  .landing-metrics article {
    padding: .7rem;
  }

  .landing-metrics article:last-child {
    grid-column: 1 / -1;
  }

  .landing-dashboard-grid {
    grid-template-columns: 1fr;
    gap: .55rem;
    margin-top: .55rem;
  }

  .landing-chart__plot {
    height: 105px;
  }

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

  .landing-float-card--sale {
    display: none;
  }

  .landing-float-card--stock {
    left: 50%;
    width: max-content;
    transform: translateX(-50%);
    animation: none;
  }

  .landing-hero__modules {
    flex-wrap: wrap;
    gap: .7rem 1rem;
    padding-block: 1rem;
  }

  .landing-section {
    padding: 5.5rem 0;
  }

  .landing-section__intro h2,
  .landing-statement h2,
  .landing-cta h2 {
    font-size: clamp(2.55rem, 12vw, 4rem);
  }

  .landing-section--statement {
    padding: 5.5rem 0;
  }

  .landing-statement h2 {
    font-size: clamp(2.65rem, 12vw, 4rem);
  }

  .landing-statement p {
    margin-top: 1.25rem;
    font-size: .96rem;
  }

  .landing-feature {
    min-height: 380px;
    padding: 1.6rem;
  }

  .landing-steps li {
    min-height: 132px;
    grid-template-columns: 3.2rem 1fr;
    gap: 1rem;
    padding: 1.25rem;
  }

  .landing-steps li > b {
    width: 3.2rem;
    height: 3.2rem;
  }

  .landing-contact-form__row {
    grid-template-columns: 1fr;
  }

  .landing-contact-form {
    padding: 1.25rem;
    border-radius: 1.1rem;
  }

  .landing-section--cta {
    padding: 1rem 0;
  }

  .landing-cta {
    min-height: 360px;
    padding: 2rem 1.5rem;
    border-radius: 1.35rem;
  }

  .landing-button--light {
    width: 100%;
  }

  .landing-demo__intro h2 {
    font-size: clamp(3rem, 15vw, 4.5rem);
  }

  .landing-demo__intro p {
    font-size: .98rem;
  }

  .landing-demo {
    margin-top: 2.5rem;
  }

  .landing-demo__tabs button {
    min-height: 48px;
    gap: .3rem;
    padding-inline: .35rem;
    font-size: .78rem;
  }

  .landing-demo__tabs button span {
    display: none;
  }

  .landing-demo-panel__copy h3 {
    font-size: clamp(2.45rem, 11vw, 3.5rem);
  }

  .landing-demo-panel__copy > p {
    font-size: .96rem;
  }

  .landing-demo-panel {
    gap: 2.3rem;
  }

  .landing-demo-stage {
    overflow: visible;
    padding-bottom: .5rem;
  }

  .landing-demo-window {
    width: 100%;
    border-radius: 1rem;
  }

  .landing-demo-window__bar {
    height: 40px;
    padding-inline: .7rem;
  }

  .landing-demo-window__bar b {
    display: none;
  }

  .landing-demo-window__body {
    min-height: 0;
    grid-template-columns: 42px minmax(0, 1fr);
  }

  .landing-demo-sidebar {
    gap: .7rem;
    padding: .8rem .4rem;
  }

  .landing-demo-sidebar img {
    width: 23px;
    height: 23px;
  }

  .landing-demo-sidebar span {
    width: 24px;
    height: 24px;
  }

  .landing-demo-screen {
    padding: .7rem;
  }

  .landing-demo-title {
    gap: .5rem;
  }

  .landing-demo-title strong {
    font-size: .82rem;
  }

  .landing-demo-title em {
    padding: .45rem .5rem;
    font-size: .5rem;
  }

  .landing-demo-screen--pos {
    grid-template-columns: 1fr;
    gap: .6rem;
  }

  .landing-pos-catalog,
  .landing-pos-cart {
    padding: .75rem;
  }

  .landing-pos-search {
    min-height: 36px;
    margin-top: .75rem;
  }

  .landing-pos-products {
    gap: .4rem;
    margin-top: .55rem;
  }

  .landing-pos-products > div {
    padding: .5rem;
  }

  .landing-cart-lines {
    margin: .55rem 0;
  }

  .landing-cart-lines > div {
    padding: .5rem 0;
  }

  .landing-inventory-tools {
    min-height: 36px;
    margin: .7rem 0;
  }

  .landing-inventory-tools b {
    display: none;
  }

  .landing-mini-table > div {
    min-height: 54px;
    padding: .5rem .6rem;
  }

  .landing-mini-table--inventory > div {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .landing-mini-table--inventory > div > span:nth-child(2),
  .landing-mini-table--inventory > div > span:nth-child(3) {
    display: none;
  }

  .landing-sales-summary {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .45rem;
    margin: .7rem 0;
  }

  .landing-sales-summary article {
    padding: .65rem;
  }

  .landing-sales-summary article:last-child {
    grid-column: 1 / -1;
  }

  .landing-mini-table--sales > div {
    grid-template-columns: 1fr auto;
  }

  .landing-mini-table--sales > div > span:nth-child(2),
  .landing-mini-table--sales > div > span:nth-child(3) {
    display: none;
  }

  .landing-metrics-preview {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .landing-metrics-preview__chart > div {
    height: 130px;
  }

  .landing-metrics-preview__category {
    min-height: 180px;
  }

  .landing-demo-float {
    display: none;
  }
}

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

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

  .landing-js [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
