@font-face {
  font-family: Archivo;
  src: url("assets/Archivo-Regular.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: Archivo;
  src: url("assets/Archivo-Medium.woff2") format("woff2");
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: Archivo;
  src: url("assets/Archivo-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-display: swap;
}
@font-face {
  font-family: Archivo;
  src: url("assets/Archivo-Bold.woff2") format("woff2");
  font-weight: 700 900;
  font-display: swap;
}
@font-face {
  font-family: Bebas;
  src: url("assets/BebasNeue-Regular.woff2") format("woff2");
  font-weight: 400;
  font-display: swap;
}

:root {
  --ink: #08111f;
  --ink-2: #0c192b;
  --ink-3: #13233a;
  --paper: #f4f3ef;
  --paper-2: #ebe9e2;
  --white: #fff;
  --blue: #3155f5;
  --blue-2: #6783ff;
  --green: #21d187;
  --green-deep: #008f58;
  --lime: #b9f347;
  --muted: #667085;
  --line: rgba(8, 17, 31, 0.13);
  --line-dark: rgba(255, 255, 255, 0.13);
  --shadow: 0 28px 80px rgba(2, 10, 23, 0.18);
  --wrap: min(1240px, calc(100vw - 48px));
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Archivo, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  overflow-x: hidden;
}
body.drawer-open {
  overflow: hidden;
}
button,
a {
  font: inherit;
}
button {
  color: inherit;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  display: block;
  max-width: 100%;
}
.wrap {
  width: var(--wrap);
  margin-inline: auto;
}
.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 10000;
  background: #fff;
  color: #000;
  padding: 10px 14px;
  transform: translateY(-150%);
}
.skip-link:focus {
  transform: none;
}
.section {
  padding: 130px 0;
}
.launch-bar {
  position: relative;
  z-index: 102;
  background: #baf24a;
  color: #08111f;
  font-size: 12px;
  font-weight: 600;
}
.launch-inner {
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.launch-inner span {
  display: flex;
  align-items: center;
  gap: 8px;
}
.launch-inner span i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #08111f;
  box-shadow: 0 0 0 4px rgba(8, 17, 31, 0.09);
}
.launch-inner a {
  opacity: 0.72;
}
.launch-inner a:hover {
  opacity: 1;
}
.site-header {
  position: fixed;
  top: 34px;
  left: 0;
  right: 0;
  z-index: 100;
  color: #fff;
  transition: 0.35s ease;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  top: 0;
  background: rgba(7, 17, 31, 0.9);
  backdrop-filter: blur(20px);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.15);
}
.header-inner {
  height: 82px;
  display: flex;
  align-items: center;
  gap: 34px;
}
.brand {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
}
.brand img {
  width: 172px;
  filter: brightness(0) invert(1);
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-left: auto;
  font-size: 13px;
  font-weight: 600;
}
.main-nav > a,
.nav-dropdown-button {
  padding: 28px 0;
  color: rgba(255, 255, 255, 0.74);
  transition: 0.2s;
}
.main-nav > a:hover,
.nav-dropdown-button:hover {
  color: #fff;
}
.nav-dropdown {
  position: relative;
}
.nav-dropdown-button {
  border: 0;
  background: none;
  cursor: pointer;
  display: flex;
  gap: 7px;
  align-items: center;
}
.nav-dropdown-button span {
  font-size: 16px;
  transition: transform 0.2s;
}
.nav-dropdown.open .nav-dropdown-button span {
  transform: rotate(180deg);
}
.mega-menu {
  position: absolute;
  top: 68px;
  left: 50%;
  width: 500px;
  padding: 12px;
  background: #fff;
  color: var(--ink);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  border-radius: 20px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.28);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, -8px);
  transition: 0.25s;
}
.nav-dropdown:hover .mega-menu,
.nav-dropdown.open .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}
.mega-menu a {
  padding: 16px;
  border-radius: 13px;
  display: flex;
  gap: 12px;
  align-items: center;
}
.mega-menu a:hover {
  background: #f3f5ff;
}
.mega-number {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: #e9edff;
  color: var(--blue);
  font-size: 11px;
  font-weight: 800;
}
.mega-menu b,
.mega-menu small {
  display: block;
}
.mega-menu b {
  font-size: 13px;
}
.mega-menu small {
  font-size: 11px;
  color: var(--muted);
  margin-top: 2px;
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}
.header-login {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.74);
}
.button {
  border: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border-radius: 12px;
  font-weight: 700;
  transition:
    transform 0.2s,
    box-shadow 0.2s,
    background 0.2s,
    color 0.2s;
}
.button:hover {
  transform: translateY(-2px);
}
.button-small {
  padding: 12px 16px;
  font-size: 12px;
}
.button-large {
  min-height: 56px;
  padding: 0 24px;
  font-size: 14px;
}
.button-primary {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 10px 30px rgba(49, 85, 245, 0.35);
}
.button-primary:hover {
  background: #4565ff;
  box-shadow: 0 16px 34px rgba(49, 85, 245, 0.45);
}
.button-ghost {
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.button-light {
  background: #fff;
  color: var(--ink);
}
.button-dark {
  background: var(--ink);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.button-full {
  width: 100%;
}
.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: 850px;
  background: #07111f;
  color: #fff;
  padding: 175px 0 64px;
  overflow: hidden;
}
.hero-grid,
.final-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, black, transparent 90%);
}
.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(1px);
  pointer-events: none;
}
.hero-glow-one {
  width: 700px;
  height: 700px;
  right: -190px;
  top: -220px;
  background: radial-gradient(circle, rgba(49, 85, 245, 0.34), transparent 68%);
}
.hero-glow-two {
  width: 540px;
  height: 540px;
  left: 18%;
  bottom: -360px;
  background: radial-gradient(
    circle,
    rgba(33, 209, 135, 0.13),
    transparent 70%
  );
}
.hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 64px;
  align-items: center;
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.eyebrow span {
  color: #c9ff5c;
  font-weight: 700;
}
.eyebrow i {
  width: 20px;
  height: 1px;
  background: rgba(255, 255, 255, 0.3);
}
.hero h1,
.section h2,
.final-cta h2 {
  font-size: clamp(48px, 5.3vw, 82px);
  line-height: 0.98;
  letter-spacing: -0.055em;
  margin: 27px 0 28px;
  font-weight: 700;
}
.hero h1 em,
.section h2 em {
  font-style: normal;
  color: var(--blue-2);
}
.hero-lead {
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.66);
  max-width: 610px;
}
.hero-lead strong {
  color: #fff;
}
.hero-ctas {
  display: flex;
  gap: 12px;
  margin: 36px 0 24px;
}
.trust-row {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  color: rgba(255, 255, 255, 0.56);
  font-size: 11px;
}
.trust-row b {
  color: var(--green);
  margin-right: 4px;
}
.hero-product {
  position: relative;
  min-width: 0;
  perspective: 1000px;
}
.orbit {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(103, 131, 255, 0.2);
}
.orbit-one {
  width: 650px;
  height: 650px;
  right: -130px;
  top: -100px;
}
.orbit-two {
  width: 470px;
  height: 470px;
  right: -35px;
  top: -10px;
  border-color: rgba(185, 243, 71, 0.12);
}
.app-window {
  position: relative;
  z-index: 2;
  background: #f7f7f5;
  color: var(--ink);
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  box-shadow: 0 50px 110px rgba(0, 0, 0, 0.55);
  overflow: hidden;
  transform: rotateY(-4deg) rotateX(1deg);
}
.window-topbar {
  height: 66px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 18px;
  border-bottom: 1px solid #e6e5e1;
}
.window-brand {
  display: flex;
  align-items: center;
  gap: 9px;
  font-weight: 800;
  font-size: 10px;
  letter-spacing: 0.08em;
}
.window-brand small {
  display: block;
  color: #8790a1;
  font-size: 6px;
  letter-spacing: 0.14em;
  margin-top: 1px;
}
.mini-logo {
  display: grid;
  place-items: center;
  width: 31px;
  height: 31px;
  background: var(--blue);
  color: #fff;
  border-radius: 9px;
  font-size: 11px;
  font-weight: 800;
}
.window-status {
  font-size: 8px;
  color: #556070;
}
.window-status i {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  margin-right: 5px;
}
.window-body {
  display: grid;
  grid-template-columns: 115px 1fr;
  min-height: 395px;
}
.mock-sidebar {
  background: #fff;
  padding: 18px 10px;
  border-right: 1px solid #e5e5e1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.mock-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px;
  border-radius: 8px;
  font-size: 8px;
  font-weight: 600;
  color: #7b8494;
}
.mock-nav b {
  font-size: 11px;
}
.mock-nav.active {
  background: var(--blue);
  color: #fff;
}
.mock-content {
  padding: 23px 20px;
}
.mock-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 18px;
}
.mock-heading small,
.kpi-card small,
.chart-title small {
  display: block;
  color: #8790a1;
  font-size: 6px;
  letter-spacing: 0.12em;
}
.mock-heading strong {
  display: block;
  font-size: 18px;
  margin-top: 2px;
  letter-spacing: -0.04em;
}
.mock-heading > span {
  font-size: 6px;
  color: #9aa2b0;
}
.kpi-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr;
  gap: 8px;
}
.kpi-card {
  background: #fff;
  padding: 14px 12px;
  border: 1px solid #e6e5e1;
  border-radius: 11px;
}
.kpi-card strong {
  display: block;
  font-size: 13px;
  margin: 9px 0 4px;
}
.kpi-card span {
  font-size: 6px;
  color: #8992a0;
}
.kpi-feature {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
}
.kpi-feature small,
.kpi-feature span {
  color: rgba(255, 255, 255, 0.7);
}
.chart-card {
  margin-top: 10px;
  background: #fff;
  border: 1px solid #e6e5e1;
  border-radius: 11px;
  padding: 14px;
}
.chart-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.chart-title strong {
  display: block;
  font-size: 15px;
  margin-top: 3px;
}
.chart-title em {
  font-style: normal;
  color: var(--green-deep);
  background: #dcf8ea;
  padding: 4px 7px;
  border-radius: 20px;
  font-size: 7px;
}
.chart-bars {
  height: 142px;
  display: flex;
  align-items: flex-end;
  gap: 9px;
  padding: 20px 8px 2px;
  border-bottom: 1px solid #e8e7e3;
  background: repeating-linear-gradient(
    to bottom,
    transparent 0,
    transparent 34px,
    #f1f0ed 35px
  );
}
.chart-bars i {
  height: var(--h);
  flex: 1;
  border-radius: 4px 4px 0 0;
  background: linear-gradient(#6f89ff, #3155f5);
  animation: barRise 1.2s both;
}
.chart-bars i:nth-child(2) {
  animation-delay: 0.08s;
}
.chart-bars i:nth-child(3) {
  animation-delay: 0.16s;
}
.chart-bars i:nth-child(4) {
  animation-delay: 0.24s;
}
.chart-bars i:nth-child(5) {
  animation-delay: 0.32s;
}
.chart-bars i:nth-child(6) {
  animation-delay: 0.4s;
}
.chart-bars i:nth-child(7) {
  animation-delay: 0.48s;
}
@keyframes barRise {
  from {
    height: 0;
  }
}
.floating-proof {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 9px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
  border: 1px solid #fff;
  border-radius: 12px;
  padding: 11px 14px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.28);
  animation: float 5s ease-in-out infinite;
}
.floating-proof > span {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: #e4f9ef;
  color: var(--green-deep);
  font-size: 11px;
}
.floating-proof small,
.floating-proof b {
  display: block;
}
.floating-proof small {
  font-size: 6px;
  letter-spacing: 0.1em;
  color: #8992a0;
}
.floating-proof b {
  font-size: 9px;
  margin-top: 2px;
}
.proof-stock {
  left: -38px;
  bottom: 78px;
}
.proof-stock > span {
  background: #fff0f1;
  color: #e54d5f;
}
.proof-sale {
  right: -20px;
  bottom: -28px;
  animation-delay: -2.5s;
}
@keyframes float {
  50% {
    transform: translateY(-8px);
  }
}
.hero-foot {
  position: relative;
  z-index: 2;
  margin-top: 70px;
  color: rgba(255, 255, 255, 0.38);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-foot i {
  display: block;
  width: 54px;
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
}

.numbers-strip {
  background: #fff;
  border-bottom: 1px solid var(--line);
}
.numbers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.numbers-grid article {
  padding: 35px 28px;
  border-left: 1px solid var(--line);
}
.numbers-grid article:last-child {
  border-right: 1px solid var(--line);
}
.numbers-grid strong,
.numbers-grid span {
  display: block;
}
.numbers-grid strong {
  font-family: Bebas, Archivo, sans-serif;
  font-size: 43px;
  letter-spacing: 0.01em;
  line-height: 1;
  color: var(--ink);
}
.numbers-grid span {
  font-size: 11px;
  color: var(--muted);
  margin-top: 7px;
}
.section-kicker {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #536071;
}
.section-kicker span {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 8px;
  border: 1px solid var(--line);
  font-size: 9px;
  color: var(--blue);
}
.section-kicker.light {
  color: rgba(255, 255, 255, 0.6);
}
.section-kicker.light span {
  border-color: rgba(255, 255, 255, 0.2);
  color: #b9f347;
}
.manifesto {
  background: var(--paper);
}
.manifesto-head {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 80px;
  align-items: end;
}
.manifesto-head h2 {
  font-size: clamp(44px, 5.1vw, 74px);
  max-width: 850px;
}
.manifesto-head p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 32px;
}
.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 55px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.problem-grid article {
  padding: 35px 30px 38px 0;
  border-right: 1px solid var(--line);
}
.problem-grid article + article {
  padding-left: 30px;
}
.problem-grid article:last-child {
  border-right: 0;
}
.problem-icon {
  font-family: Bebas;
  font-size: 28px;
  color: var(--blue);
}
.problem-grid p {
  color: var(--muted);
  font-size: 12px;
  margin: 35px 0 5px;
}
.problem-grid h3 {
  font-size: 20px;
  letter-spacing: -0.03em;
  margin: 0;
}
.solution-line {
  margin-top: 45px;
  background: var(--ink);
  color: #fff;
  border-radius: 18px;
  padding: 26px 30px;
  display: grid;
  grid-template-columns: 190px 1fr;
  align-items: center;
}
.solution-line > span {
  font-family: Bebas;
  font-size: 27px;
  color: #b9f347;
  letter-spacing: 0.04em;
}
.solution-line p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
  margin: 0;
}
.solution-line b {
  color: #fff;
}
.product-stage {
  background: var(--ink);
  color: #fff;
}
.stage-header {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 80px;
  align-items: end;
}
.stage-header h2 {
  font-size: clamp(42px, 5vw, 72px);
  margin-bottom: 0;
}
.stage-header p {
  color: rgba(255, 255, 255, 0.56);
  line-height: 1.8;
  margin-bottom: 8px;
}
.feature-tabs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 70px;
  border-bottom: 1px solid var(--line-dark);
}
.feature-tab {
  position: relative;
  border: 0;
  background: none;
  color: rgba(255, 255, 255, 0.46);
  padding: 20px 0;
  text-align: left;
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
}
.feature-tab span {
  font-size: 8px;
  margin-right: 8px;
}
.feature-tab:after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -1px;
  height: 2px;
  background: #b9f347;
  transition: 0.35s;
}
.feature-tab.active {
  color: #fff;
}
.feature-tab.active:after {
  right: 18%;
}
.feature-panel {
  display: none;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 70px;
  align-items: center;
  padding-top: 65px;
}
.feature-panel.active {
  display: grid;
  animation: panelIn 0.5s ease both;
}
@keyframes panelIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
}
.feature-label {
  font-size: 9px;
  letter-spacing: 0.14em;
  color: #b9f347;
  font-weight: 700;
}
.feature-copy h3 {
  font-size: 34px;
  line-height: 1.08;
  letter-spacing: -0.045em;
  margin: 18px 0;
}
.feature-copy > p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 14px;
  line-height: 1.75;
}
.feature-copy ul {
  list-style: none;
  padding: 0;
  margin: 24px 0;
}
.feature-copy li {
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.72);
}
.feature-copy li:before {
  content: "✓";
  color: #b9f347;
  margin-right: 8px;
}
.feature-copy > a {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  margin-top: 8px;
}
.feature-copy > a span {
  color: #b9f347;
}
.feature-ui {
  min-width: 0;
  background: #f5f4f0;
  color: var(--ink);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.36);
}
.ui-top {
  height: 58px;
  background: #fff;
  border-bottom: 1px solid #e5e3dd;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 18px;
  font-size: 9px;
}
.ui-top span {
  font-weight: 800;
}
.ui-top i {
  font-style: normal;
  display: inline-grid;
  place-items: center;
  width: 24px;
  height: 24px;
  background: var(--blue);
  color: #fff;
  border-radius: 7px;
  margin-right: 8px;
}
.ui-top b {
  color: #8b93a0;
  font-size: 7px;
  letter-spacing: 0.08em;
}
.sales-columns {
  display: grid;
  grid-template-columns: 1.25fr 0.9fr 0.78fr;
  min-height: 350px;
}
.sales-products,
.sales-cart,
.sales-pay {
  padding: 18px 14px;
  border-right: 1px solid #e0ded7;
}
.sales-pay {
  border: 0;
  background: #fff;
}
.sales-columns small {
  font-size: 7px;
  color: #798394;
  letter-spacing: 0.08em;
}
.ui-search {
  height: 42px;
  background: #fff;
  border: 1px solid #dcd9d2;
  border-radius: 9px;
  margin: 10px 0;
  display: flex;
  align-items: center;
  padding: 0 10px;
  color: #7e8796;
  font-size: 8px;
}
.ui-search span {
  margin-left: 7px;
}
.ui-search kbd {
  margin-left: auto;
  border: 1px solid #e5e2db;
  border-radius: 5px;
  padding: 3px 5px;
  font-size: 6px;
}
.quick-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7px;
}
.quick-grid b {
  min-height: 58px;
  background: #fff;
  border: 1px solid #e4e1da;
  border-radius: 8px;
  padding: 9px;
  font-size: 8px;
}
.quick-grid em {
  display: block;
  color: var(--green-deep);
  font-style: normal;
  margin-top: 8px;
}
.sales-cart > div {
  position: relative;
  background: #fff;
  padding: 10px;
  border-radius: 8px;
  border: 1px solid #e5e2dc;
  margin-top: 10px;
}
.sales-cart b,
.sales-cart span,
.sales-cart em {
  display: block;
}
.sales-cart b {
  font-size: 8px;
  padding-right: 35px;
}
.sales-cart span {
  font-size: 6px;
  color: #8c94a1;
  margin-top: 4px;
}
.sales-cart em {
  position: absolute;
  right: 8px;
  top: 10px;
  font-size: 7px;
  color: var(--green-deep);
  font-style: normal;
  font-weight: 700;
}
.pay-types {
  display: flex;
  gap: 5px;
  margin: 10px 0;
}
.pay-types b {
  flex: 1;
  background: #e9edff;
  color: var(--blue);
  padding: 9px 3px;
  text-align: center;
  border-radius: 7px;
  font-size: 7px;
}
.sales-pay p {
  font-size: 7px;
  color: #7c8594;
  margin-top: 85px;
}
.sales-pay p strong {
  display: block;
  color: var(--green-deep);
  font-family: Bebas;
  font-size: 28px;
  margin-top: 5px;
}
.sales-pay button {
  width: 100%;
  border: 0;
  border-radius: 8px;
  padding: 11px;
  background: var(--blue);
  color: #fff;
  font-size: 7px;
  font-weight: 700;
}
.stock-toolbar {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  padding: 15px;
  background: #f4f3ef;
}
.stock-toolbar div {
  background: #fff;
  border: 1px solid #dfdcd5;
  border-radius: 8px;
  padding: 10px 12px;
  font-size: 8px;
  color: #8a93a1;
}
.stock-toolbar button {
  border: 0;
  border-radius: 8px;
  background: var(--blue);
  color: #fff;
  padding: 0 14px;
  font-size: 8px;
  font-weight: 700;
}
.stock-table {
  background: #fff;
  margin: 0 15px 16px;
  border: 1px solid #e1ded8;
  border-radius: 10px;
  overflow: hidden;
}
.stock-row {
  display: grid;
  grid-template-columns: 1.25fr 0.85fr 0.48fr 0.43fr;
  align-items: center;
  min-height: 61px;
  padding: 0 13px;
  border-top: 1px solid #ece9e3;
  font-size: 8px;
}
.stock-row:first-child {
  border-top: 0;
}
.stock-head {
  min-height: 35px;
  color: #8991a0;
  font-size: 6px;
  font-weight: 700;
}
.stock-row > span:first-child {
  position: relative;
  padding-left: 29px;
}
.stock-row b,
.stock-row small {
  display: block;
}
.stock-row small {
  color: #8d95a2;
  margin-top: 2px;
}
.stock-row em {
  font-style: normal;
  background: #f2f1ed;
  padding: 4px 7px;
  border-radius: 10px;
  font-weight: 700;
}
.stock-row .stock-ok {
  background: #e5f7ee;
  color: var(--green-deep);
}
.stock-row .stock-low {
  background: #ffe5e9;
  color: #dc4257;
}
.product-dot {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 21px;
  height: 21px;
  border-radius: 6px;
}
.product-dot:after {
  content: "◉";
  display: grid;
  place-items: center;
  height: 100%;
  font-style: normal;
}
.product-dot.blue {
  background: #e7ecff;
  color: var(--blue);
}
.product-dot.pink {
  background: #ffe9f0;
  color: #c94b78;
}
.product-dot.amber {
  background: #fff0d9;
  color: #ce8424;
}
.edit-button {
  border: 1px solid #d9d6cf;
  background: #fff;
  border-radius: 7px;
  padding: 6px 8px;
  font-size: 7px;
  font-weight: 700;
}
.finance-ui {
  padding-bottom: 20px;
}
.finance-total {
  margin: 18px;
  background: var(--blue);
  color: #fff;
  border-radius: 12px;
  padding: 19px;
}
.finance-total small,
.finance-total strong,
.finance-total span {
  display: block;
}
.finance-total small {
  font-size: 6px;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.68);
}
.finance-total strong {
  font-family: Bebas;
  font-size: 34px;
  margin: 5px 0;
}
.finance-total span {
  font-size: 7px;
  color: #c9ff5c;
}
.finance-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin: 0 18px;
}
.finance-cards article {
  background: #fff;
  border: 1px solid #e2dfd8;
  border-radius: 10px;
  padding: 14px;
}
.finance-cards small {
  font-size: 6px;
  color: #8b93a1;
}
.finance-cards b {
  display: block;
  font-size: 11px;
  margin: 8px 0;
}
.line {
  display: block;
  width: 100%;
  height: 3px;
  border-radius: 5px;
}
.line.green {
  background: var(--green);
}
.line.blue {
  background: var(--blue);
}
.line.amber {
  background: #ffad47;
}
.finance-detail {
  margin: 16px 18px 0;
  background: #fff;
  border: 1px solid #e2dfd8;
  border-radius: 10px;
  padding: 14px;
}
.finance-detail span {
  font-size: 7px;
  font-weight: 700;
}
.finance-detail > div {
  display: flex;
  gap: 3px;
  margin-top: 12px;
}
.finance-detail i {
  display: block;
  height: 8px;
  background: var(--blue);
  border-radius: 5px;
}
.finance-detail i:nth-child(2) {
  background: var(--green);
}
.finance-detail i:nth-child(3) {
  background: #ffad47;
}
.customer-ui {
  padding-bottom: 18px;
}
.customer-card {
  margin: 18px;
  background: #fff;
  border: 1px solid #e1ded7;
  border-radius: 12px;
  padding: 16px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
}
.avatar {
  display: grid;
  place-items: center;
  width: 45px;
  height: 45px;
  border-radius: 13px;
  background: #e8ecff;
  color: var(--blue);
  font-weight: 800;
  font-size: 11px;
}
.customer-card small,
.customer-card strong,
.customer-card p {
  display: block;
  margin: 0;
}
.customer-card small {
  font-size: 6px;
  letter-spacing: 0.1em;
  color: var(--green-deep);
}
.customer-card strong {
  font-size: 12px;
  margin: 4px 0;
}
.customer-card p {
  font-size: 7px;
  color: #89919e;
}
.customer-card em {
  font-style: normal;
  color: var(--blue);
  font-weight: 800;
  font-size: 10px;
}
.customer-actions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin: 0 18px;
}
.customer-actions article {
  background: #fff;
  border: 1px solid #e1ded7;
  border-radius: 10px;
  padding: 15px;
}
.customer-actions span {
  display: grid;
  place-items: center;
  width: 25px;
  height: 25px;
  border-radius: 7px;
  background: #e9edff;
  color: var(--blue);
  font-size: 9px;
}
.customer-actions b,
.customer-actions small {
  display: block;
}
.customer-actions b {
  font-size: 9px;
  margin: 16px 0 4px;
}
.customer-actions small {
  font-size: 6px;
  color: #89919e;
  line-height: 1.5;
}

.catalog {
  background: #efede6;
}
.catalog-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 90px;
  align-items: center;
}
.catalog-number {
  position: relative;
  min-height: 430px;
  background: var(--blue);
  color: #fff;
  border-radius: 24px;
  padding: 55px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.catalog-number:before,
.catalog-number:after {
  content: "";
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
}
.catalog-number:before {
  width: 480px;
  height: 480px;
  top: -310px;
  right: -100px;
}
.catalog-number:after {
  width: 330px;
  height: 330px;
  top: -215px;
  right: -20px;
}
.catalog-number strong {
  font-family: Bebas;
  font-size: 160px;
  line-height: 0.78;
  letter-spacing: -0.03em;
}
.catalog-number strong span {
  color: #b9f347;
}
.catalog-number p {
  font-size: 18px;
  max-width: 360px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.75);
}
.catalog-copy h2 {
  font-size: clamp(42px, 4.4vw, 66px);
}
.catalog-copy p {
  color: var(--muted);
  line-height: 1.75;
}
.category-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 30px;
}
.category-cloud span {
  padding: 10px 13px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: #f7f6f2;
  font-size: 10px;
  font-weight: 600;
}
.desktop-section {
  background: #efede6;
  padding-top: 0;
}
.desktop-card {
  position: relative;
  background: var(--ink);
  color: #fff;
  border-radius: 28px;
  overflow: hidden;
  min-height: 610px;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.desktop-card:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 45%, rgba(49, 85, 245, 0.18));
  pointer-events: none;
}
.desktop-copy {
  position: relative;
  z-index: 2;
  padding: 75px;
}
.desktop-copy h2 {
  font-size: clamp(45px, 4.5vw, 65px);
}
.desktop-copy p {
  max-width: 530px;
  color: rgba(255, 255, 255, 0.58);
  line-height: 1.75;
}
.desktop-facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(255, 255, 255, 0.1);
  margin-top: 40px;
}
.desktop-facts span {
  background: var(--ink);
  padding: 18px 0;
  font-size: 9px;
  color: rgba(255, 255, 255, 0.5);
}
.desktop-facts span:nth-child(odd) {
  padding-right: 20px;
}
.desktop-facts span:nth-child(even) {
  padding-left: 20px;
}
.desktop-facts b {
  display: block;
  color: #fff;
  font-size: 11px;
  margin-bottom: 4px;
}
.desktop-visual {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  min-height: 500px;
}
.shield-ring {
  width: 350px;
  height: 350px;
  border-radius: 50%;
  border: 1px solid rgba(103, 131, 255, 0.32);
  display: grid;
  place-items: center;
  box-shadow:
    0 0 0 55px rgba(49, 85, 245, 0.06),
    0 0 0 110px rgba(49, 85, 245, 0.025);
}
.shield-core {
  width: 210px;
  height: 210px;
  border-radius: 50%;
  background: linear-gradient(145deg, #3155f5, #1735b9);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  color: #b9f347;
  box-shadow: 0 25px 80px rgba(49, 85, 245, 0.35);
}
.shield-core small,
.shield-core b {
  display: block;
}
.shield-core small {
  font-size: 7px;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.14em;
  margin-top: 17px;
}
.shield-core b {
  font-size: 12px;
  color: #fff;
  margin-top: 5px;
}
.signal {
  position: absolute;
  background: #fff;
  color: var(--ink);
  border-radius: 10px;
  padding: 10px 13px;
  font-size: 8px;
  font-weight: 700;
  box-shadow: 0 16px 45px rgba(0, 0, 0, 0.35);
}
.signal i {
  font-style: normal;
  color: var(--green-deep);
  margin-left: 7px;
}
.signal-one {
  top: 110px;
  left: 35px;
}
.signal-two {
  right: 42px;
  top: 210px;
}
.signal-three {
  left: 80px;
  bottom: 105px;
}
.workflow {
  background: var(--paper);
}
.workflow-head {
  display: flex;
  justify-content: space-between;
  gap: 70px;
  align-items: end;
}
.workflow-head h2 {
  font-size: clamp(42px, 4.7vw, 68px);
}
.workflow-head p {
  max-width: 400px;
  color: var(--muted);
  margin-bottom: 35px;
}
.workflow-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 45px;
}
.workflow-grid article {
  position: relative;
  min-height: 335px;
  padding: 30px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  transition: 0.3s;
}
.workflow-grid article:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}
.workflow-grid article > span {
  font-size: 9px;
  color: #8b93a0;
}
.workflow-icon {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: #e9edff;
  color: var(--blue);
  font-size: 22px;
  margin: 75px 0 25px;
}
.workflow-grid h3 {
  font-size: 24px;
  margin: 0 0 8px;
}
.workflow-grid p {
  color: var(--muted);
  font-size: 13px;
  max-width: 260px;
}
.workflow-grid article:nth-child(2) .workflow-icon {
  background: #e4f9ef;
  color: var(--green-deep);
}
.workflow-grid article:nth-child(3) {
  background: var(--blue);
  color: #fff;
}
.workflow-grid article:nth-child(3) > span,
.workflow-grid article:nth-child(3) p {
  color: rgba(255, 255, 255, 0.65);
}
.workflow-grid article:nth-child(3) .workflow-icon {
  background: #b9f347;
  color: var(--ink);
}
.release {
  background: var(--blue);
  color: #fff;
  overflow: hidden;
}
.release-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
  align-items: center;
}
.version-pill {
  display: inline-flex;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 30px;
  padding: 8px 12px;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #b9f347;
}
.release-copy h2 {
  font-size: clamp(44px, 4.9vw, 70px);
}
.release-copy h2 em {
  color: #b9f347;
}
.release-copy > p {
  color: rgba(255, 255, 255, 0.68);
}
.release-copy ul {
  padding: 0;
  list-style: none;
  margin: 33px 0;
}
.release-copy li {
  padding: 15px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}
.release-copy li b,
.release-copy li span {
  display: block;
}
.release-copy li b {
  font-size: 13px;
}
.release-copy li span {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 4px;
}
.release-stack {
  position: relative;
  height: 570px;
}
.release-window {
  position: absolute;
  border-radius: 20px;
  background: #f7f6f2;
  color: var(--ink);
  box-shadow: 0 35px 90px rgba(6, 18, 75, 0.42);
}
.release-back {
  width: 75%;
  height: 390px;
  right: -30px;
  top: 15px;
  padding: 40px;
  background: #0b1b36;
  color: #fff;
  transform: rotate(8deg);
}
.release-back small {
  color: #b9f347;
  font-size: 8px;
  letter-spacing: 0.12em;
}
.release-back strong {
  display: block;
  font-size: 28px;
  margin-top: 10px;
}
.release-line {
  margin-top: 80px;
}
.release-line i {
  display: block;
  height: 38px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  margin: 8px 0;
}
.release-front {
  width: 92%;
  height: 440px;
  left: 0;
  bottom: 20px;
  padding: 18px;
  transform: rotate(-2deg);
}
.release-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 8px;
  font-weight: 800;
}
.release-bar b {
  color: var(--blue);
}
.release-columns {
  display: grid;
  grid-template-columns: 1.1fr 0.8fr 0.65fr;
  gap: 8px;
  height: 290px;
  margin-top: 10px;
}
.release-columns i {
  background: #fff;
  border: 1px solid #dfdcd5;
  border-radius: 10px;
}
.release-columns i:nth-child(2) {
  background: #faf9f6;
}
.release-columns i:nth-child(3) {
  background: #e8ecff;
  border-color: #d6ddff;
}
.release-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 12px;
  font-size: 9px;
}
.release-total strong {
  font-family: Bebas;
  font-size: 27px;
  color: var(--green-deep);
}
.positioning {
  background: var(--paper);
}
.positioning-layout {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 80px;
  align-items: start;
}
.positioning-title h2 {
  font-size: clamp(43px, 4.7vw, 67px);
}
.comparison {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
  margin-top: 45px;
}
.comparison-side {
  padding: 38px 30px;
}
.comparison-side small {
  font-size: 8px;
  letter-spacing: 0.12em;
  font-weight: 800;
}
.comparison-side ul {
  list-style: none;
  padding: 0;
  margin: 25px 0 0;
}
.comparison-side li {
  font-size: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}
.comparison-side li:before {
  content: "×";
  margin-right: 8px;
  color: #dc4257;
  font-weight: 800;
}
.comparison-side.with {
  background: var(--ink);
  color: #fff;
}
.comparison-side.with small {
  color: #b9f347;
}
.comparison-side.with li {
  border-color: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.72);
}
.comparison-side.with li:before {
  content: "✓";
  color: #b9f347;
}
.comparison-divider {
  display: grid;
  place-items: center;
  width: 32px;
  font-size: 7px;
  font-weight: 800;
  color: #8991a0;
  background: #eeece6;
}
.pricing {
  background: var(--ink);
  color: #fff;
}
.pricing-layout {
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  gap: 110px;
  align-items: center;
}
.pricing-copy h2 {
  font-size: clamp(48px, 5.2vw, 75px);
}
.pricing-copy h2 em {
  color: #b9f347;
}
.pricing-copy > p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 17px;
}
.pricing-guarantees {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 32px;
}
.pricing-guarantees span {
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 30px;
  padding: 9px 12px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 9px;
}
.pricing-guarantees span::first-letter {
  color: #b9f347;
}
.price-card {
  background: #fff;
  color: var(--ink);
  border-radius: 24px;
  padding: 34px;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.35);
}
.price-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.price-card-top span {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.1em;
}
.price-card-top em {
  font-style: normal;
  background: #e5f8ee;
  color: var(--green-deep);
  padding: 6px 9px;
  border-radius: 20px;
  font-size: 8px;
}
.price {
  display: flex;
  align-items: flex-start;
  margin: 25px 0 0;
}
.price small {
  font-size: 17px;
  margin: 12px 7px 0 0;
}
.price strong {
  font-family: Bebas;
  font-size: 108px;
  line-height: 0.8;
  letter-spacing: -0.03em;
}
.price sup {
  font-family: Bebas;
  font-size: 39px;
  line-height: 1;
  margin-left: 2px;
}
.price-card > p {
  font-size: 11px;
  color: var(--muted);
  margin-top: 16px;
}
.price-card ul {
  list-style: none;
  padding: 20px 0;
  margin: 25px 0;
  border-top: 1px solid var(--line);
}
.price-card li {
  font-size: 11px;
  padding: 7px 0;
}
.price-card li:before {
  content: "✓";
  color: var(--green-deep);
  font-weight: 800;
  margin-right: 8px;
}
.trial-link {
  display: block;
  text-align: center;
  color: var(--blue);
  font-size: 11px;
  font-weight: 700;
  margin-top: 18px;
}
.secure-note {
  display: block;
  text-align: center;
  color: #8b93a0;
  font-size: 8px;
  margin-top: 14px;
}
.faq {
  background: #efede6;
}
.faq-layout {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 100px;
}
.faq-title {
  position: sticky;
  top: 130px;
  align-self: start;
}
.faq-title h2 {
  font-size: clamp(43px, 4.5vw, 64px);
}
.faq-title p {
  font-size: 12px;
  color: var(--muted);
}
.faq-title p a {
  color: var(--blue);
  font-weight: 700;
}
.faq-list {
  border-top: 1px solid var(--line);
}
.faq-list details {
  border-bottom: 1px solid var(--line);
}
.faq-list summary {
  list-style: none;
  cursor: pointer;
  padding: 25px 0;
  font-size: 15px;
  font-weight: 700;
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
.faq-list summary::-webkit-details-marker {
  display: none;
}
.faq-list summary span {
  color: var(--blue);
  font-size: 21px;
  font-weight: 400;
  transition: 0.2s;
}
.faq-list details[open] summary span {
  transform: rotate(45deg);
}
.faq-list p {
  font-size: 13px;
  line-height: 1.75;
  color: var(--muted);
  max-width: 690px;
  margin: -5px 40px 25px 0;
}
.final-cta {
  position: relative;
  background: #b9f347;
  color: var(--ink);
  padding: 110px 0;
  overflow: hidden;
}
.final-grid {
  background-image:
    linear-gradient(rgba(8, 17, 31, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(8, 17, 31, 0.07) 1px, transparent 1px);
  mask-image: linear-gradient(to right, black, transparent);
}
.final-content {
  position: relative;
  z-index: 1;
  text-align: center;
}
.final-content > span {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.15em;
}
.final-cta h2 {
  font-size: clamp(50px, 6vw, 86px);
  margin: 20px auto;
  max-width: 950px;
}
.final-cta p {
  max-width: 600px;
  margin: 0 auto 32px;
  color: rgba(8, 17, 31, 0.68);
}
.final-content > div {
  display: flex;
  justify-content: center;
  gap: 10px;
}
.site-footer {
  background: #06101d;
  color: #fff;
  padding: 75px 0 25px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 50px;
}
.footer-brand img {
  width: 180px;
  filter: brightness(0) invert(1);
}
.footer-brand p {
  font-size: 13px;
  margin: 22px 0 7px;
}
.footer-brand span {
  font-size: 9px;
  color: rgba(255, 255, 255, 0.4);
}
.footer-grid > div:not(.footer-brand) {
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.footer-grid strong {
  font-size: 10px;
  letter-spacing: 0.12em;
  color: #b9f347;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.footer-grid a {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.55);
}
.footer-grid a:hover {
  color: #fff;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  margin-top: 55px;
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.32);
  font-size: 8px;
}
.whatsapp-float {
  position: fixed;
  z-index: 90;
  right: 22px;
  bottom: 22px;
  background: #fff;
  color: var(--ink);
  border: 1px solid var(--line);
  box-shadow: 0 14px 45px rgba(0, 0, 0, 0.18);
  border-radius: 40px;
  padding: 7px 14px 7px 7px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 9px;
}
.whatsapp-float span {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #20c56c;
  color: #fff;
  font-size: 16px;
}
.whatsapp-float b {
  font-weight: 700;
}

.checkout-overlay[hidden] {
  display: none;
}
.checkout-overlay {
  position: fixed;
  z-index: 1000;
  inset: 0;
  background: rgba(2, 8, 18, 0.72);
  backdrop-filter: blur(10px);
  display: flex;
  justify-content: flex-end;
}
.checkout-drawer {
  position: relative;
  width: min(480px, 100%);
  height: 100%;
  overflow-y: auto;
  background: #f5f4ef;
  color: var(--ink);
  padding: 32px;
  box-shadow: -25px 0 80px rgba(0, 0, 0, 0.3);
  animation: drawerIn 0.35s ease;
}
@keyframes drawerIn {
  from {
    transform: translateX(100%);
  }
}
.checkout-close {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 10px;
  font-size: 22px;
  cursor: pointer;
}
.checkout-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-right: 50px;
}
.checkout-brand small,
.checkout-brand strong {
  display: block;
}
.checkout-brand small {
  font-size: 7px;
  color: var(--blue);
  letter-spacing: 0.13em;
  font-weight: 800;
}
.checkout-brand strong {
  font-size: 16px;
  margin-top: 2px;
}
.checkout-summary {
  margin: 30px 0 22px;
  background: var(--ink);
  color: #fff;
  border-radius: 16px;
  padding: 22px;
}
.checkout-summary span,
.checkout-summary strong,
.checkout-summary small {
  display: block;
}
.checkout-summary span {
  font-size: 9px;
  color: rgba(255, 255, 255, 0.55);
}
.checkout-summary strong {
  font-family: Bebas;
  font-size: 44px;
  margin: 8px 0;
}
.checkout-summary small {
  font-size: 8px;
  color: #b9f347;
}
.checkout-body h3 {
  font-size: 25px;
  margin: 0;
}
.checkout-body > p {
  font-size: 12px !important;
  line-height: 1.6;
}
.checkout-body label {
  display: block;
  font-size: 9px !important;
  letter-spacing: 0.05em;
  font-weight: 700;
  text-transform: uppercase;
  margin: 14px 0 6px;
}
.checkout-body input[type="text"],
.checkout-body input[type="email"] {
  width: 100%;
  height: 48px;
  border: 1px solid #d8d5cd;
  border-radius: 10px;
  background: #fff;
  padding: 0 13px;
  outline: none;
}
.checkout-body input:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(49, 85, 245, 0.1);
}
.checkout-body .pill {
  min-height: 50px;
  padding: 0 18px;
  border-radius: 10px;
  font-size: 12px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}
.checkout-body .pill-primary {
  background: var(--blue);
  color: #fff;
}
.checkout-body .pill-ghost {
  background: #fff;
  border: 1px solid var(--line);
  color: var(--ink);
}
.checkout-body .qr {
  width: 210px;
  height: 210px;
  margin: 20px auto;
  background: #fff;
  padding: 10px;
  border-radius: 12px;
}
.checkout-body .chip {
  display: inline-block;
  margin: 0;
  font-size: 8px;
  padding: 6px 9px;
  border-radius: 20px;
}
.checkout-body .chip-blue {
  background: #e8ecff;
  color: var(--blue);
}

.reveal,
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.reveal.in,
.reveal-stagger.in > * {
  opacity: 1;
  transform: none;
}
.reveal-delay {
  transition-delay: 0.14s;
}
.reveal-stagger.in > *:nth-child(2) {
  transition-delay: 0.09s;
}
.reveal-stagger.in > *:nth-child(3) {
  transition-delay: 0.18s;
}

@media (max-width: 1080px) {
  :root {
    --wrap: min(100% - 34px, 940px);
  }
  .main-nav {
    gap: 18px;
  }
  .header-login {
    display: none;
  }
  .hero {
    min-height: auto;
  }
  .hero-layout {
    grid-template-columns: 1fr;
    gap: 65px;
  }
  .hero-copy {
    max-width: 780px;
  }
  .hero-product {
    max-width: 760px;
    margin-inline: auto;
  }
  .manifesto-head,
  .stage-header,
  .catalog-layout,
  .release-layout,
  .positioning-layout,
  .pricing-layout,
  .faq-layout {
    gap: 50px;
  }
  .feature-panel {
    grid-template-columns: 1fr;
    gap: 45px;
  }
  .feature-copy {
    max-width: 650px;
  }
  .desktop-copy {
    padding: 55px;
  }
  .desktop-card {
    grid-template-columns: 1.1fr 0.9fr;
  }
  .shield-ring {
    width: 270px;
    height: 270px;
  }
  .shield-core {
    width: 170px;
    height: 170px;
  }
  .signal {
    display: none;
  }
  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr;
  }
}
@media (max-width: 820px) {
  html {
    scroll-padding-top: 80px;
  }
  .launch-inner {
    justify-content: flex-start;
    overflow: hidden;
    white-space: nowrap;
  }
  .launch-inner a {
    display: none;
  }
  .site-header {
    top: 34px;
  }
  .header-inner {
    height: 70px;
  }
  .site-header.scrolled {
    top: 0;
  }
  .brand img {
    width: 145px;
  }
  .menu-toggle {
    display: flex;
    margin-left: auto;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
  }
  .menu-toggle span {
    width: 17px;
    height: 1.5px;
    background: #fff;
    transition: 0.2s;
  }
  .menu-toggle.open span:first-child {
    transform: translateY(4px) rotate(45deg);
  }
  .menu-toggle.open span:last-child {
    transform: translateY(-4px) rotate(-45deg);
  }
  .header-actions {
    display: none;
  }
  .main-nav {
    position: fixed;
    top: 104px;
    left: 14px;
    right: 14px;
    background: #fff;
    color: var(--ink);
    border-radius: 18px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
    padding: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }
  .site-header.scrolled .main-nav {
    top: 78px;
  }
  .main-nav.open {
    display: flex;
  }
  .main-nav > a,
  .nav-dropdown-button {
    color: var(--ink);
    padding: 15px 10px;
    width: 100%;
    text-align: left;
  }
  .mega-menu {
    position: static;
    width: 100%;
    transform: none;
    box-shadow: none;
    padding: 4px;
    background: #f3f2ee;
    display: none;
    opacity: 1;
    visibility: visible;
    grid-template-columns: 1fr;
  }
  .nav-dropdown.open .mega-menu {
    display: grid;
    transform: none;
  }
  .nav-dropdown:hover .mega-menu:not(:hover) {
    transform: none;
  }
  .hero {
    padding: 145px 0 55px;
  }
  .hero-layout {
    gap: 55px;
  }
  .hero h1 {
    font-size: clamp(44px, 11vw, 67px);
  }
  .hero-lead {
    font-size: 16px;
  }
  .app-window {
    transform: none;
  }
  .proof-stock {
    left: -8px;
  }
  .proof-sale {
    right: -8px;
  }
  .numbers-grid {
    grid-template-columns: 1fr 1fr;
  }
  .numbers-grid article:nth-child(3) {
    border-top: 1px solid var(--line);
  }
  .numbers-grid article:nth-child(4) {
    border-top: 1px solid var(--line);
    border-right: 1px solid var(--line);
  }
  .section {
    padding: 90px 0;
  }
  .manifesto-head,
  .stage-header,
  .catalog-layout,
  .desktop-card,
  .workflow-head,
  .release-layout,
  .positioning-layout,
  .pricing-layout,
  .faq-layout {
    grid-template-columns: 1fr;
    display: grid;
  }
  .manifesto-head p,
  .stage-header p,
  .workflow-head p {
    margin: 0;
  }
  .problem-grid {
    grid-template-columns: 1fr;
  }
  .problem-grid article,
  .problem-grid article + article {
    padding: 28px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .problem-grid article:last-child {
    border-bottom: 0;
  }
  .problem-grid p {
    margin-top: 18px;
  }
  .solution-line {
    grid-template-columns: 1fr;
    gap: 7px;
  }
  .feature-tabs {
    overflow-x: auto;
    grid-template-columns: repeat(4, minmax(130px, 1fr));
  }
  .catalog-number {
    min-height: 350px;
  }
  .desktop-card {
    min-height: auto;
  }
  .desktop-copy {
    padding: 50px 32px;
  }
  .desktop-visual {
    min-height: 430px;
  }
  .workflow-grid {
    grid-template-columns: 1fr;
  }
  .workflow-grid article {
    min-height: 240px;
  }
  .workflow-icon {
    margin: 38px 0 22px;
  }
  .release-stack {
    height: 490px;
  }
  .positioning-title h2 {
    max-width: 700px;
  }
  .pricing-copy {
    padding-right: 0;
  }
  .faq-title {
    position: static;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .footer-brand {
    grid-column: 1/-1;
  }
  .final-content > div {
    flex-wrap: wrap;
  }
}
@media (max-width: 570px) {
  :root {
    --wrap: calc(100% - 28px);
  }
  .hero {
    padding-top: 132px;
  }
  .eyebrow {
    align-items: flex-start;
    flex-wrap: wrap;
  }
  .eyebrow i {
    display: none;
  }
  .hero h1 {
    font-size: 45px;
    line-height: 1.01;
  }
  .hero-lead {
    font-size: 14px;
  }
  .hero-ctas {
    flex-direction: column;
  }
  .hero-ctas .button {
    width: 100%;
  }
  .trust-row {
    gap: 8px 14px;
  }
  .hero-product {
    margin: 0 -32px 0 0;
  }
  .window-body {
    grid-template-columns: 68px 1fr;
    min-height: 320px;
  }
  .mock-sidebar {
    padding: 10px 5px;
  }
  .mock-nav {
    font-size: 0;
    justify-content: center;
  }
  .mock-nav b {
    font-size: 11px;
  }
  .mock-content {
    padding: 15px 10px;
  }
  .kpi-grid {
    grid-template-columns: 1fr 1fr;
  }
  .kpi-card:last-child {
    display: none;
  }
  .chart-bars {
    height: 95px;
    gap: 5px;
  }
  .floating-proof {
    display: none;
  }
  .numbers-grid strong {
    font-size: 34px;
  }
  .numbers-grid article {
    padding: 25px 15px;
  }
  .numbers-grid span {
    font-size: 9px;
  }
  .section {
    padding: 75px 0;
  }
  .section h2 {
    font-size: 41px;
  }
  .feature-tabs {
    margin-top: 40px;
  }
  .feature-panel {
    padding-top: 40px;
  }
  .feature-copy h3 {
    font-size: 29px;
  }
  .feature-ui {
    margin-inline: -7px;
  }
  .sales-columns {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .sales-cart,
  .sales-pay {
    display: none;
  }
  .sales-products {
    border: 0;
  }
  .stock-row {
    grid-template-columns: 1.15fr 0.65fr 0.5fr;
  }
  .stock-row > span:nth-child(2) {
    display: none;
  }
  .stock-toolbar {
    grid-template-columns: 1fr;
  }
  .stock-toolbar button {
    min-height: 37px;
  }
  .finance-cards {
    grid-template-columns: 1fr 1fr;
  }
  .finance-cards article:last-child {
    display: none;
  }
  .customer-actions {
    grid-template-columns: 1fr;
  }
  .customer-actions article:nth-child(3) {
    display: none;
  }
  .catalog-number {
    padding: 35px;
    min-height: 300px;
  }
  .catalog-number strong {
    font-size: 115px;
  }
  .desktop-copy {
    padding: 40px 24px;
  }
  .desktop-facts {
    grid-template-columns: 1fr;
  }
  .desktop-facts span:nth-child(n) {
    padding: 13px 0;
  }
  .desktop-visual {
    min-height: 370px;
  }
  .shield-ring {
    width: 230px;
    height: 230px;
  }
  .release-stack {
    height: 390px;
  }
  .release-back {
    height: 300px;
  }
  .release-front {
    height: 330px;
  }
  .release-columns {
    height: 205px;
  }
  .comparison {
    grid-template-columns: 1fr;
  }
  .comparison-divider {
    width: 100%;
    height: 30px;
  }
  .price-card {
    padding: 25px 20px;
  }
  .price strong {
    font-size: 90px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 35px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 7px;
  }
  .whatsapp-float b {
    display: none;
  }
  .whatsapp-float {
    padding-right: 7px;
  }
  .checkout-drawer {
    padding: 25px 18px;
  }
  .checkout-summary {
    margin-top: 24px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    animation: none !important;
    transition: none !important;
  }
  .reveal,
  .reveal-stagger > * {
    opacity: 1;
    transform: none;
  }
}

/* Oferta dupla preparada para o lançamento do Delivery PRO */
.pricing-layout-dual {
  grid-template-columns: 0.66fr 1.34fr;
  gap: 70px;
}
.pricing-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.system-trial-banner {
  grid-column: 1/-1;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 28px 30px;
  border: 2px solid #b9f347;
  border-radius: 20px;
  background: linear-gradient(
    135deg,
    rgba(185, 243, 71, 0.2),
    rgba(49, 85, 245, 0.12)
  );
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.2);
}
.system-trial-banner > span {
  padding: 14px 17px;
  border-radius: 12px;
  background: #b9f347;
  color: #08111f;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
}
.system-trial-banner div {
  display: grid;
  gap: 3px;
}
.system-trial-banner b {
  font-size: 17px;
}
.system-trial-banner small {
  color: rgba(255, 255, 255, 0.6);
  font-size: 11px;
}
.system-trial-banner a {
  padding: 13px 16px;
  border-radius: 11px;
  background: #b9f347;
  color: #08111f;
  font-size: 11px;
  font-weight: 800;
  white-space: nowrap;
}
.pricing-options > .price-card {
  grid-column: 1/2;
}
.delivery-coming-soon {
  grid-column: 2/3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 330px;
  padding: 34px;
  border: 1px solid rgba(103, 131, 255, 0.4);
  border-radius: 24px;
  background: linear-gradient(
    145deg,
    rgba(49, 85, 245, 0.16),
    rgba(255, 255, 255, 0.04)
  );
  color: #fff;
}
.delivery-coming-soon > span {
  align-self: flex-start;
  padding: 7px 10px;
  border-radius: 30px;
  background: #3155f5;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.12em;
}
.delivery-coming-soon h3 {
  margin: 22px 0 10px;
  font-size: 34px;
  letter-spacing: -0.04em;
}
.delivery-coming-soon p {
  color: rgba(255, 255, 255, 0.66);
  font-size: 12px;
  line-height: 1.7;
}
.delivery-coming-soon a {
  margin-top: 20px;
  color: #b9f347;
  font-size: 11px;
  font-weight: 800;
}
.pricing-options .price-card {
  padding: 28px;
}
.pricing-options .price strong {
  font-size: 82px;
}
.pricing-options .price sup {
  max-width: 64px;
  font-size: 24px;
  line-height: 0.9;
}
.price-card-pro {
  position: relative;
  border: 2px solid #3155f5;
  overflow: hidden;
}
.price-card-pro:before {
  content: "LANÇAMENTO";
  position: absolute;
  right: -36px;
  top: 20px;
  width: 135px;
  padding: 6px 0;
  transform: rotate(39deg);
  background: #e12632;
  color: #fff;
  text-align: center;
  font-size: 7px;
  font-weight: 900;
  letter-spacing: 0.1em;
}
.price-card-pro .price-card-top em {
  background: #fff0f1;
  color: #d51f2c;
}
.legacy-benefit {
  grid-column: 1/-1;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: center;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.07);
}
.legacy-benefit b {
  color: #b9f347;
  font-size: 10px;
  letter-spacing: 0.08em;
}
.legacy-benefit span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 11px;
  line-height: 1.6;
}
@media (max-width: 1080px) {
  .pricing-layout-dual {
    grid-template-columns: 1fr;
  }
  .pricing-options {
    max-width: 850px;
  }
}
@media (max-width: 700px) {
  .pricing-options {
    grid-template-columns: 1fr;
  }
  .pricing-options > .price-card,
  .delivery-coming-soon {
    grid-column: 1;
  }
  .legacy-benefit {
    grid-template-columns: 1fr;
  }
  .system-trial-banner {
    grid-template-columns: 1fr;
  }
  .system-trial-banner a {
    justify-self: start;
  }
}

/* Identidade clara sobre fundos escuros: preserva o ícone azul e usa tipografia viva. */
.brand {
  gap: 12px;
}
.brand img {
  width: 50px;
  height: 50px;
  border-radius: 0;
  filter: none;
  object-fit: contain;
}
.brand > span {
  font-size: 18px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.015em;
  color: #fff;
}
.brand small {
  display: block;
  font-size: 6.5px;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.56);
  margin-top: 6px;
}
.footer-logo {
  width: max-content;
}
.footer-brand > .footer-logo img {
  width: 38px;
  height: 38px;
  filter: none;
}
@media (max-width: 820px) {
  .brand {
    gap: 9px;
  }
  .brand img {
    width: 42px;
    height: 42px;
  }
  .brand > span {
    font-size: 14px;
  }
  .brand small {
    font-size: 5px;
    margin-top: 4px;
  }
}
/* Separação clara entre o produto instalado e o serviço online. */
.product-separation {
  padding: 34px 0;
  background: #f4f7ff;
}
.product-separation-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.product-choice {
  min-height: 190px;
  padding: 28px 30px;
  border: 1px solid #dce4f4;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 15px 35px rgba(25, 50, 110, 0.08);
}
.product-choice.active {
  border: 2px solid #3155f5;
  background: linear-gradient(145deg, #fff, #eef3ff);
}
.product-choice small {
  color: #3155f5;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .13em;
}
.product-choice h2 {
  margin: 12px 0 9px;
  color: #080d19;
  font-size: clamp(25px, 2.5vw, 36px);
  letter-spacing: -.04em;
}
.product-choice p {
  max-width: 580px;
  margin: 0 0 16px;
  color: #59667d;
  font-size: 13px;
  line-height: 1.65;
}
.product-choice b,
.product-choice a {
  color: #173fd1;
  font-size: 11px;
  font-weight: 800;
}
.main-nav > a small {
  margin-left: 4px;
  color: #3155f5;
  font-size: 7px;
  font-weight: 900;
}
@media (max-width: 720px) {
  .product-separation-grid { grid-template-columns: 1fr; }
  .product-choice { min-height: 0; padding: 23px; }
}
