:root {
  --bg: #F5F3FF;
  --surface: #ffffff;
  --surface-strong: rgba(139, 92, 246, 0.1);
  --text: #1B0F2F;
  --muted: #A8A3B8;
  --line: rgba(27, 15, 47, 0.12);
  --primary: #8B5CF6;
  --primary-dark: #2D1854;
  --accent: #2D1854;
  --dark: #1B0F2F;
  --shadow: 0 24px 80px rgba(45, 24, 84, 0.16);
  --radius: 28px;
  --site-header-height: 122px;
}

.btn,
.hero-cta,
.nav-login,
.nav-create,
.code-panel__try,
.code-panel__tool {
  position: relative;
  border: none;
  background: var(--hbg-fill, #ffffff);
}

.btn::before,
.hero-cta::before,
.nav-login::before,
.nav-create::before,
.code-panel__try::before,
.code-panel__tool::before {
  display: none;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

[id] {
  scroll-margin-top: calc(var(--site-header-height, 110px) + 20px);
}

main {
  overflow-x: visible;
}

img,
canvas {
  max-width: 100%;
  height: auto;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 12% 8%, rgba(139, 92, 246, 0.22), transparent 28rem),
    radial-gradient(circle at 86% 18%, rgba(45, 24, 84, 0.08), transparent 32rem),
    var(--bg);
  color: var(--text);
  font-family: "Inter", Arial, sans-serif;
  line-height: 1.5;
}

body.nav-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
  -webkit-tap-highlight-color: rgba(139, 92, 246, 0.15);
}

button,
input {
  font: inherit;
  -webkit-tap-highlight-color: rgba(139, 92, 246, 0.15);
}

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 50;
  width: 100%;
  background: transparent;
  color: #f5f3ff;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  pointer-events: none;
  transition: none;
}

.site-header.is-scrolled .site-header__nav {
  background: rgba(18, 10, 32, 0.72);
  box-shadow: 0 20px 80px rgba(124, 58, 237, 0.28);
}

.header-top {
  position: relative;
  overflow: hidden;
  pointer-events: auto;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at 30% 0%, rgba(139, 92, 246, 0.28), transparent 32rem),
    rgba(18, 10, 32, 0.82);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
}

.header-top::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(245, 243, 255, 0.08), transparent);
  content: "";
  pointer-events: none;
}

.header-top-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 38px;
  color: rgba(245, 243, 255, 0.78);
  font-size: 0.78rem;
  font-weight: 800;
}

.header-top-inner a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 14px;
  border: 1px solid rgba(245, 243, 255, 0.28);
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(245, 243, 255, 0.18), rgba(139, 92, 246, 0.18)),
    rgba(245, 243, 255, 0.08);
  color: #F5F3FF;
  box-shadow:
    0 0 26px rgba(139, 92, 246, 0.28),
    inset 0 1px 0 rgba(245, 243, 255, 0.18);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.header-top-inner a:hover {
  border-color: rgba(245, 243, 255, 0.48);
  transform: translateY(-1px);
}

.header-top-inner a::after {
  content: "›";
  font-size: 1rem;
  line-height: 1;
}

.site-header__shell {
  width: min(1120px, calc(100% - 32px));
  margin: 12px auto 0;
  pointer-events: auto;
}

.site-header__nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  min-height: 64px;
  padding: 0 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  background: rgba(18, 10, 32, 0.55);
  box-shadow: 0 20px 80px rgba(124, 58, 237, 0.22);
  backdrop-filter: blur(22px) saturate(160%);
  -webkit-backdrop-filter: blur(22px) saturate(160%);
  transition: background 0.2s ease, box-shadow 0.2s ease;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.brand-logo {
  display: block;
  width: auto;
  height: 34px;
  object-fit: contain;
}

.site-header .brand-logo {
  filter: brightness(0) invert(1);
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--primary), #F5F3FF);
  color: #1B0F2F;
  box-shadow: 0 10px 24px rgba(139, 92, 246, 0.36);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 26px;
  color: rgba(245, 243, 255, 0.78);
  font-size: 0.82rem;
  font-weight: 700;
}

.nav-menu a {
  position: relative;
  transition: color 0.2s ease;
}

.nav-menu a:not(:last-child)::after {
  position: absolute;
  top: 50%;
  right: -15px;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(139, 92, 246, 0.42);
  content: "";
  transform: translateY(-50%);
}

.nav-menu a:hover {
  color: #c4b5fd;
}

.nav-menu-actions {
  display: none;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  overflow: visible;
}

.nav-login,
.nav-create {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 12px 28px;
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 600;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease,
    background 0.3s ease;
}

.nav-login {
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 10px 35px rgba(0, 0, 0, 0.25);
}

.nav-login:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.16);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.24),
    0 16px 45px rgba(124, 58, 237, 0.28);
}

.nav-create {
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.16),
    rgba(139, 92, 246, 0.45),
    rgba(109, 40, 217, 0.55)
  );
  color: #ffffff;
  box-shadow: 0 12px 40px rgba(124, 58, 237, 0.35);
}

.nav-create:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.25);
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.22),
    rgba(168, 85, 247, 0.55),
    rgba(124, 58, 237, 0.65)
  );
  box-shadow: 0 18px 60px rgba(168, 85, 247, 0.45);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 99px;
  background: #f5f3ff;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 800;
}

.btn-primary {
  --hbg-fill: linear-gradient(135deg, var(--primary), var(--accent));
  color: #F5F3FF;
}

.btn-outline {
  --hbg-fill: #ffffff;
  border: 1px solid rgba(139, 92, 246, 0.28);
  color: var(--text);
}

.btn-ghost {
  --hbg-fill: #ffffff;
  color: var(--text);
}

.btn-small {
  min-height: 42px;
  padding: 0 18px;
  font-size: 0.9rem;
}

.hero,
.hero-section {
  position: relative;
  overflow: hidden;
  padding: calc(var(--site-header-height) + 48px) 0 clamp(28px, 4vw, 48px);
}

.hero.hero-section + .benefits-marquee {
  margin-top: 0;
}

.hero-section {
  background: #07030d;
}

.hero-color-bends {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: #07030d;
}

#hero-color-bends-root,
#hero-color-bends-root .color-bends-container {
  width: 100%;
  height: 100%;
  min-height: 100%;
}

.hero-color-bends canvas {
  max-width: none;
  width: 100% !important;
  height: 100% !important;
  display: block;
}

.hero-color-bends__shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(0, 0, 0, 0.2);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 10;
}

.hero.hero-section h1 {
  margin: 16px 0 0;
  color: #ffffff;
  font-size: clamp(2.5rem, 3.35vw, 4rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
  text-shadow: 0 0 32px rgba(168, 85, 247, 0.18);
}

.hero-gradient-text {
  display: inline;
  background: linear-gradient(
    90deg,
    #f3e8ff 0%,
    #e9d5ff 12%,
    #c084fc 38%,
    #a855f7 68%,
    #8b5cf6 88%,
    #f3e8ff 100%
  );
  background-size: 220% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  animation: axxonTextShine 7s ease-in-out infinite;
  filter: drop-shadow(0 0 28px rgba(168, 85, 247, 0.32));
}

@keyframes axxonTextShine {
  0%,
  100% {
    background-position: 0% center;
  }

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

.hero.hero-section .hero-copy > p {
  max-width: 560px;
  margin-top: 20px;
  color: rgba(216, 208, 232, 0.78);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.65;
}

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

.hero.hero-section .eyebrow {
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  color: #f5f3ff;
  box-shadow: 0 0 32px rgba(168, 85, 247, 0.18);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.hero.hero-section .eyebrow::after {
  display: none;
  content: none;
}

.hero.hero-section .eyebrow-stack {
  color: rgba(245, 243, 255, 0.92);
}

.hero.hero-section .eyebrow-separator {
  background: rgba(255, 255, 255, 0.45);
  box-shadow: 0 0 8px rgba(168, 85, 247, 0.35);
}

.hero.hero-section .eyebrow-icon {
  filter: drop-shadow(0 8px 16px rgba(168, 85, 247, 0.28));
}

.benefits-marquee {
  position: relative;
  z-index: 2;
  min-height: 64px;
  height: clamp(64px, 5.4vw, 80px);
  margin-top: 0;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(139, 92, 246, 0.14), transparent 18%, transparent 82%, rgba(139, 92, 246, 0.14)),
    linear-gradient(135deg, #1B0F2F 0%, #2D1854 42%, #3B1574 100%);
  border-top: 1px solid rgba(196, 181, 253, 0.14);
  border-bottom: 1px solid rgba(139, 92, 246, 0.28);
  box-shadow: inset 0 1px 0 rgba(245, 243, 255, 0.06);
}

.benefits-marquee--bridge {
  margin-top: 0;
  z-index: 3;
  border-top: 1px solid rgba(139, 92, 246, 0.18);
  border-bottom: 1px solid rgba(139, 92, 246, 0.12);
}

.benefits-marquee__viewport {
  height: 100%;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.benefits-marquee__track {
  display: flex;
  width: max-content;
  animation: benefitsMarquee var(--marquee-duration, 16s) linear infinite;
  will-change: transform;
}

.benefits-marquee__group {
  display: flex;
  align-items: center;
  gap: clamp(28px, 4vw, 56px);
  padding-right: clamp(28px, 4vw, 56px);
  flex-shrink: 0;
}

.benefits-marquee__item {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #F5F3FF;
  font-size: clamp(0.82rem, 1.05vw, 0.95rem);
  font-weight: 800;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.benefits-marquee__icon {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
}

.benefits-marquee__icon img {
  display: block;
  width: 18px;
  height: 18px;
  object-fit: contain;
}

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

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

.diferenciais {
  position: relative;
  padding: clamp(56px, 6vw, 80px) 0;
  background: #FAF8FF;
  overflow: hidden;
}

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

.diferenciais__header {
  margin-bottom: clamp(24px, 3vw, 32px);
}

.diferenciais__badge {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  margin-bottom: 18px;
  padding: 0 14px;
  border: 1px solid rgba(92, 43, 170, 0.14);
  border-radius: 999px;
  background: #FFFFFF;
  color: var(--primary-dark);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.diferenciais__intro h2 {
  margin: 0;
  max-width: 620px;
  color: var(--text);
  font-size: clamp(2.35rem, 4.6vw, 4.1rem);
  font-weight: 900;
  letter-spacing: -0.06em;
  line-height: 0.98;
}

.diferenciais__accent {
  color: #7C3AED;
}

.diferenciais__divider {
  height: 1px;
  margin-bottom: 0;
  background: linear-gradient(90deg, rgba(92, 43, 170, 0.16), rgba(92, 43, 170, 0.05), transparent);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(28px, 3.5vw, 52px);
  align-items: center;
}

.hero-grid > *,
.split-grid > *,
.suite-grid > *,
.faq-premium__grid > *,
.payment-grid > *,
.code-panels,
.checkout-visual,
.checkout-copy {
  min-width: 0;
}

.hero-copy {
  max-width: 640px;
  margin-left: clamp(-132px, -7vw, -68px);
  padding-left: 0;
}

.eyebrow {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 11px;
  width: fit-content;
  max-width: min(520px, 100%);
  padding: 7px 13px 7px 7px;
  border: 1px solid rgba(139, 92, 246, 0.22);
  border-radius: 18px;
  background:
    linear-gradient(#ffffff, #ffffff) padding-box,
    linear-gradient(135deg, rgba(139, 92, 246, 0.55), rgba(45, 24, 84, 0.12)) border-box;
  color: #2D1854;
  box-shadow:
    0 18px 46px rgba(45, 24, 84, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
  overflow: visible;
}

.eyebrow::after {
  position: absolute;
  top: -40%;
  right: -12%;
  width: 120px;
  height: 120px;
  border-radius: inherit;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.22), transparent 62%);
  content: "";
  pointer-events: none;
}

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

.tag {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  width: fit-content;
  padding: 8px 12px;
  border: 1px solid rgba(139, 92, 246, 0.32);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  color: var(--primary-dark);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.eyebrow-icon {
  display: block;
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  object-fit: contain;
  filter: drop-shadow(0 10px 18px rgba(45, 24, 84, 0.2));
}

.eyebrow-stack {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-width: 0;
  color: #2D1854;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.045em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.eyebrow-item {
  display: inline-flex;
  align-items: center;
}

.eyebrow-separator {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(139, 92, 246, 0.46);
  box-shadow: 0 0 10px rgba(139, 92, 246, 0.42);
}

.hero h1,
.section-heading h2,
.split-grid h2,
.suite h2,
.limits h2,
.support h2 {
  margin: 18px 0 16px;
  color: var(--text);
  letter-spacing: -0.07em;
  line-height: 0.96;
}

.hero h1 {
  max-width: 640px;
  font-size: clamp(3.2rem, 4.15vw, 4.85rem);
  line-height: 0.98;
}

.gradient-text {
  display: inline;
  background: linear-gradient(90deg, #2D1854, #5B21B6, #4C1D95, #2D1854);
  background-size: 180% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 10px rgba(139, 92, 246, 0.18));
  animation: subtleGradientText 6s linear infinite;
}

@keyframes subtleGradientText {
  from {
    background-position: 0% 50%;
  }

  to {
    background-position: -180% 50%;
  }
}

.hero-copy p,
.section-heading p,
.split-grid p,
.suite p,
.limits p,
.support p {
  max-width: 540px;
  color: var(--muted);
  font-size: 1.08rem;
}

.hero-copy p {
  color: #6B7280;
  font-weight: 600;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
  overflow: visible;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 28px;
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 600;
  white-space: nowrap;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease,
    background 0.3s ease;
}

.hero-cta-primary {
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.16),
    rgba(139, 92, 246, 0.45),
    rgba(109, 40, 217, 0.55)
  );
  color: #ffffff;
  box-shadow: 0 12px 40px rgba(124, 58, 237, 0.35);
}

.hero-cta-primary:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.25);
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.22),
    rgba(168, 85, 247, 0.55),
    rgba(124, 58, 237, 0.65)
  );
  box-shadow: 0 18px 60px rgba(168, 85, 247, 0.45);
}

.hero-cta-secondary {
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 10px 35px rgba(0, 0, 0, 0.25);
}

.hero-cta-secondary:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.16);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.24),
    0 16px 45px rgba(124, 58, 237, 0.28);
}

.hero-social-proof {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  column-gap: 12px;
  width: fit-content;
  max-width: 100%;
  margin-top: 20px;
  padding: 0;
  animation: heroSocialProofIn 0.75s ease-out 0.15s both;
}

.hero-social-proof__avatars {
  display: flex;
  align-items: center;
  align-self: center;
  height: 36px;
}

.hero-social-proof__avatars > div {
  display: flex;
  align-items: center;
  height: 100%;
}

.hero-social-proof__avatars a {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  line-height: 0;
  pointer-events: none;
}

.hero-social-proof__avatars img {
  display: block;
  width: 36px;
  height: 36px;
}

.hero-social-proof__text {
  align-self: center;
  margin: 0;
  max-width: 300px;
  color: rgba(216, 208, 232, 0.8);
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.3;
}

.hero-social-proof__highlight {
  color: #ffffff;
  font-weight: 600;
}

@keyframes heroSocialProofIn {
  from {
    opacity: 0;
    transform: translateY(14px);
  }

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

.hero-card {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 34px;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.88), rgba(245, 243, 255, 0.9));
  box-shadow: var(--shadow);
  transform: rotate(2deg);
}

.hero-card::before {
  position: absolute;
  inset: -18px;
  z-index: -1;
  border-radius: 42px;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.34), transparent);
  content: "";
}

.hero-dashboard.hero-card::before {
  display: none;
  content: none;
}

.hero-dashboard {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  transform: none;
  overflow: visible;
  margin-top: 0;
  width: 100%;
}

.hero-dashboard::before {
  display: none;
}

.dashboard-stage {
  position: relative;
  width: min(100%, clamp(280px, 54vw, 940px));
  max-width: 100%;
  aspect-ratio: 1;
  min-height: 0;
  margin: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
  perspective: 1200px;
  perspective-origin: center center;
}

.dashboard-desktop {
  position: relative;
  z-index: 1;
  top: auto;
  right: auto;
  width: 100%;
  max-width: 100%;
  overflow: visible;
  background: transparent;
  box-shadow: none;
  border-radius: 0;
  transform-style: preserve-3d;
}

.dashboard-desktop:hover {
  transform: none;
}

.dashboard-desktop img {
  display: block;
  width: 100%;
  height: auto;
  transform-style: preserve-3d;
  backface-visibility: hidden;
  animation: logo3dPremium 10s ease-in-out infinite;
  filter: none;
  will-change: transform;
}

@keyframes logo3dPremium {
  0%,
  100% {
    transform: translateY(0) rotateY(-10deg) rotateX(2deg) scale(1);
  }

  50% {
    transform: translateY(-12px) rotateY(6deg) rotateX(-2deg) scale(1.018);
  }
}

.hero-notifications {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.hero-notify {
  position: absolute;
  display: block;
  width: clamp(220px, 24vw, 340px);
  height: auto;
  mix-blend-mode: screen;
  filter:
    contrast(1.22)
    brightness(0.9)
    drop-shadow(0 18px 36px rgba(27, 15, 47, 0.32));
  animation: heroNotifyFloat var(--notify-dur, 5.4s) ease-in-out infinite;
  animation-delay: var(--notify-delay, 0s);
  will-change: transform;
}

.hero-notify--1 {
  top: 2%;
  right: -6%;
  --notify-delay: 0s;
  --notify-dur: 5.2s;
}

.hero-notify--2 {
  top: 28%;
  left: -12%;
  --notify-delay: 0.7s;
  --notify-dur: 6s;
}

.hero-notify--3 {
  bottom: 20%;
  right: -10%;
  --notify-delay: 1.3s;
  --notify-dur: 5.6s;
}

.hero-notify--4 {
  bottom: 4%;
  left: -4%;
  --notify-delay: 2s;
  --notify-dur: 6.4s;
}

@keyframes heroNotifyFloat {
  0%,
  100% {
    transform: translateY(0);
  }

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

.card-toolbar {
  display: flex;
  gap: 8px;
  padding: 20px;
}

.card-toolbar span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(27, 15, 47, 0.2);
}

.payment-preview {
  padding: 0 24px 24px;
}

.preview-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.preview-head span,
.transaction-list small {
  color: var(--muted);
  font-size: 0.85rem;
}

.preview-head strong {
  display: block;
  margin-top: 4px;
  font-size: 2.5rem;
  letter-spacing: -0.07em;
}

.status-pill {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(139, 92, 246, 0.2);
  color: #2D1854 !important;
  font-weight: 900;
}

.chart-bars {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  height: 172px;
  margin: 30px 0;
  padding: 18px;
  border-radius: 24px;
  background: var(--dark);
}

.chart-bars span {
  flex: 1;
  min-width: 22px;
  border-radius: 999px 999px 8px 8px;
  background: linear-gradient(180deg, #F5F3FF, var(--primary));
}

.bar-38 {
  height: 38%;
}

.bar-62 {
  height: 62%;
}

.bar-48 {
  height: 48%;
}

.bar-82 {
  height: 82%;
}

.bar-70 {
  height: 70%;
}

.bar-94 {
  height: 94%;
}

.bar-76 {
  height: 76%;
}

.transaction-list {
  display: grid;
  gap: 12px;
}

.transaction-list > div {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.72);
}

.icon {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 14px;
  font-weight: 900;
}

.pix {
  background: rgba(139, 92, 246, 0.28);
}

.card {
  background: rgba(245, 243, 255, 0.9);
}

.boleto {
  background: rgba(139, 92, 246, 0.14);
}

.section {
  padding: 86px 0;
}

.section-heading {
  max-width: 720px;
  margin: 0 auto 42px;
  text-align: center;
}

.section-heading.align-left {
  margin: 0;
  text-align: left;
}

.section-heading h2,
.split-grid h2,
.suite h2,
.limits h2,
.support h2 {
  font-size: clamp(2.25rem, 5vw, 4.6rem);
}

.logos {
  padding: 32px 0 70px;
}

.products-showcase,
.payment-showcase {
  position: relative;
  padding: clamp(72px, 8vw, 108px) 0 clamp(88px, 9vw, 120px);
  overflow: hidden;
  background: linear-gradient(180deg, #FAF8FF 0%, #FFFFFF 46%, #F5F3FF 100%);
}

.payment-showcase__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.payment-showcase__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}

.payment-showcase__glow--one {
  top: -8%;
  left: -4%;
  width: min(520px, 42vw);
  height: min(520px, 42vw);
  background: rgba(139, 92, 246, 0.22);
}

.payment-showcase__glow--two {
  top: 12%;
  right: -6%;
  width: min(440px, 36vw);
  height: min(440px, 36vw);
  background: rgba(124, 58, 237, 0.14);
}

.payment-showcase__glow--three {
  bottom: -12%;
  left: 32%;
  width: min(560px, 46vw);
  height: min(280px, 24vw);
  background: rgba(45, 24, 84, 0.1);
}

.payment-showcase__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(139, 92, 246, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(139, 92, 246, 0.045) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(circle at center, #000 32%, transparent 88%);
  opacity: 0.55;
}

.payment-showcase__container {
  position: relative;
  z-index: 1;
}

.payment-showcase__header {
  max-width: 760px;
  margin: 0 auto clamp(44px, 5vw, 60px);
  text-align: center;
}

.payment-showcase__badge {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  margin-bottom: 20px;
  padding: 0 16px;
  border: 1px solid rgba(139, 92, 246, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(12px);
  color: var(--primary-dark);
  box-shadow: 0 12px 32px rgba(45, 24, 84, 0.07);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.payment-showcase__header h2 {
  margin: 0 0 16px;
  color: var(--text);
  font-size: clamp(2.2rem, 4.8vw, 3.65rem);
  font-weight: 900;
  letter-spacing: -0.06em;
  line-height: 1.02;
}

.payment-showcase__gradient {
  background: linear-gradient(135deg, #7C3AED 0%, #A78BFA 48%, #5B21B6 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.payment-showcase__header p {
  max-width: 580px;
  margin: 0 auto;
  color: #7A738C;
  font-size: clamp(0.98rem, 1.15vw, 1.06rem);
  font-weight: 500;
  line-height: 1.75;
}

.payment-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 24px);
}

.payment-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: clamp(420px, 38vw, 460px);
  border: 1px solid rgba(139, 92, 246, 0.14);
  border-radius: 28px;
  background:
    linear-gradient(165deg, rgba(255, 255, 255, 0.88) 0%, rgba(250, 248, 255, 0.62) 100%);
  box-shadow:
    0 24px 60px rgba(45, 24, 84, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(18px);
  overflow: hidden;
  transition:
    transform 0.38s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.38s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.38s ease;
}

.payment-card::before {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(145deg, rgba(139, 92, 246, 0.28), rgba(139, 92, 246, 0.04) 42%, rgba(255, 255, 255, 0.12));
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask-composite: exclude;
  opacity: 0.55;
  content: "";
  pointer-events: none;
  transition: opacity 0.38s ease;
}

.payment-card::after {
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: radial-gradient(circle at 50% 0%, rgba(167, 139, 250, 0.35), transparent 58%);
  opacity: 0;
  content: "";
  pointer-events: none;
  transition: opacity 0.38s ease;
}

.payment-card:hover {
  transform: translateY(-8px);
  border-color: rgba(139, 92, 246, 0.32);
  box-shadow:
    0 32px 80px rgba(45, 24, 84, 0.14),
    0 0 0 1px rgba(167, 139, 250, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 1);
}

.payment-card:hover::before {
  opacity: 1;
}

.payment-card:hover::after {
  opacity: 1;
}

.payment-card__visual {
  position: relative;
  flex: 1;
  min-height: 210px;
  padding: 22px 22px 8px;
}

.payment-card__body {
  position: relative;
  z-index: 1;
  padding: 8px 26px 28px;
}

.payment-card__icon {
  display: grid;
  width: 48px;
  height: 48px;
  margin-bottom: 16px;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.22), rgba(45, 24, 84, 0.08));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.85),
    0 10px 24px rgba(139, 92, 246, 0.12);
  color: var(--primary-dark);
  transition: transform 0.38s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.38s ease;
}

.payment-card:hover .payment-card__icon {
  transform: translateY(-2px) scale(1.04);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.95),
    0 14px 28px rgba(139, 92, 246, 0.2);
}

.payment-card__icon svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  stroke-width: 1.8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.payment-card__icon img {
  display: block;
  width: 22px;
  height: 22px;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(12%) sepia(32%) saturate(2400%) hue-rotate(243deg) brightness(92%) contrast(92%);
}

.payment-card h3 {
  margin: 0 0 10px;
  color: var(--text);
  font-size: 1.14rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.2;
}

.payment-card p {
  margin: 0;
  color: #7A738C;
  font-size: 0.94rem;
  line-height: 1.68;
}

.payment-mock {
  position: relative;
  height: 100%;
  min-height: 180px;
  border: 1px solid rgba(139, 92, 246, 0.1);
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(245, 243, 255, 0.45));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
  overflow: hidden;
}

.payment-mock__tag {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  padding: 5px 10px;
  border: 1px solid rgba(139, 92, 246, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: #6D28D9;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.payment-mock--pix {
  display: grid;
  place-items: center;
}

.payment-mock__qr {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 3px;
  width: 88px;
  padding: 10px;
  border: 1px solid rgba(139, 92, 246, 0.12);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(45, 24, 84, 0.08);
}

.payment-mock__qr span {
  aspect-ratio: 1;
  border-radius: 2px;
  background: rgba(45, 24, 84, 0.08);
}

.payment-mock__qr span:nth-child(1),
.payment-mock__qr span:nth-child(2),
.payment-mock__qr span:nth-child(3),
.payment-mock__qr span:nth-child(7),
.payment-mock__qr span:nth-child(13),
.payment-mock__qr span:nth-child(18),
.payment-mock__qr span:nth-child(19),
.payment-mock__qr span:nth-child(20),
.payment-mock__qr span:nth-child(24),
.payment-mock__qr span:nth-child(30),
.payment-mock__qr span:nth-child(31),
.payment-mock__qr span:nth-child(32),
.payment-mock__qr span:nth-child(5),
.payment-mock__qr span:nth-child(10),
.payment-mock__qr span:nth-child(15),
.payment-mock__qr span:nth-child(22),
.payment-mock__qr span:nth-child(27) {
  background: linear-gradient(135deg, #7C3AED, #5B21B6);
}

.payment-mock__notify {
  position: absolute;
  left: 14px;
  bottom: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border: 1px solid rgba(139, 92, 246, 0.12);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 10px 24px rgba(45, 24, 84, 0.1);
  color: #1B0F2F;
  font-size: 0.72rem;
  font-weight: 800;
  white-space: nowrap;
}

.payment-mock__notify-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, #8B5CF6, #6D28D9);
  box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.18);
}

.payment-mock--card {
  padding: 16px;
}

.payment-mock__credit {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: min(100%, 168px);
  height: 96px;
  padding: 14px;
  border-radius: 14px;
  background: linear-gradient(135deg, #6D28D9 0%, #4C1D95 52%, #2D1854 100%);
  box-shadow: 0 16px 32px rgba(45, 24, 84, 0.22);
  color: #F5F3FF;
}

.payment-mock__chip {
  width: 28px;
  height: 20px;
  border-radius: 4px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.55), rgba(255, 255, 255, 0.18));
}

.payment-mock__card-num {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  opacity: 0.92;
}

.payment-mock__card-brand {
  align-self: flex-end;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.85;
}

.payment-mock__chart {
  position: absolute;
  right: 16px;
  bottom: 18px;
  display: flex;
  align-items: flex-end;
  gap: 4px;
  width: 92px;
  height: 56px;
}

.payment-mock__chart span {
  flex: 1;
  height: var(--h);
  border-radius: 4px 4px 1px 1px;
  background: linear-gradient(180deg, #C4B5FD, #7C3AED);
  opacity: 0.85;
}

.payment-mock__approval {
  position: absolute;
  left: 16px;
  bottom: 18px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.payment-mock__approval strong {
  color: #5B21B6;
  font-size: 1.35rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
}

.payment-mock__approval span {
  color: #8B849E;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.payment-mock--link {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 18px 16px;
}

.payment-mock__link-row {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
}

.payment-mock__link-url {
  flex: 1;
  min-width: 0;
  padding: 9px 12px;
  border: 1px solid rgba(139, 92, 246, 0.12);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.92);
  color: #5B21B6;
  font-size: 0.72rem;
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.payment-mock__copy {
  flex: 0 0 auto;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(139, 92, 246, 0.18);
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.14), rgba(45, 24, 84, 0.06));
  color: #6D28D9;
  font-size: 0.68rem;
  font-weight: 900;
  cursor: default;
}

.payment-mock__link-qr {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3px;
  width: 64px;
  padding: 8px;
  border: 1px solid rgba(139, 92, 246, 0.12);
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 10px 22px rgba(45, 24, 84, 0.08);
}

.payment-mock__link-qr span {
  aspect-ratio: 1;
  border-radius: 2px;
  background: rgba(45, 24, 84, 0.08);
}

.payment-mock__link-qr span:nth-child(1),
.payment-mock__link-qr span:nth-child(2),
.payment-mock__link-qr span:nth-child(4),
.payment-mock__link-qr span:nth-child(5),
.payment-mock__link-qr span:nth-child(8),
.payment-mock__link-qr span:nth-child(9),
.payment-mock__link-qr span:nth-child(12),
.payment-mock__link-qr span:nth-child(13),
.payment-mock__link-qr span:nth-child(14),
.payment-mock__link-qr span:nth-child(16) {
  background: linear-gradient(135deg, #7C3AED, #5B21B6);
}

.payment-mock__status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 12px;
  border: 1px solid rgba(139, 92, 246, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: #6D28D9;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.payment-mock__status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #8B5CF6;
  box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.2);
  animation: paymentStatusPulse 2.4s ease-in-out infinite;
}

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

  50% {
    opacity: 0.72;
    transform: scale(0.92);
  }
}

.section-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 14px;
  border: 1px solid rgba(139, 92, 246, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--primary-dark);
  box-shadow: 0 12px 30px rgba(45, 24, 84, 0.06);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.logos p {
  margin: 0 0 20px;
  color: var(--muted);
  text-align: center;
  font-weight: 700;
}

.logo-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.logo-row li {
  padding: 13px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  color: var(--muted);
  font-weight: 900;
}

.price-card,
.stack-cards article,
.testimonial-card,
.support-card,
.limit-card {
  border: 1px solid rgba(139, 92, 246, 0.1);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 50px rgba(45, 24, 84, 0.06);
}

.stack-cards h3 {
  margin: 0 0 12px;
  color: var(--text);
  font-size: 1.12rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.2;
}

.stack-cards p,
.testimonial-card span {
  margin: 0;
  color: #8B849E;
  font-size: 0.95rem;
  line-height: 1.65;
}

.split-section,
.checkout-section {
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.56), transparent);
}

.checkout-copy p {
  max-width: 520px;
}

.checkout-points {
  display: grid;
  gap: 12px;
  margin: 28px 0 32px;
  padding: 0;
  list-style: none;
}

.checkout-points li {
  position: relative;
  padding-left: 28px;
  color: #6B6580;
  font-size: 0.98rem;
  font-weight: 600;
  line-height: 1.5;
}

.checkout-points li::before {
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, #8B5CF6, #2D1854);
  box-shadow: 0 0 0 4px rgba(139, 92, 246, 0.12);
  content: "";
}

.checkout-visual {
  position: relative;
  min-width: 0;
}

.checkout-stage {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  background: transparent;
  box-shadow:
    0 28px 70px rgba(45, 24, 84, 0.14),
    0 0 60px rgba(139, 92, 246, 0.12);
  transform:
    perspective(1200px)
    rotateY(-10deg)
    rotateX(4deg);
  transform-origin: center center;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.5s ease;
}

.checkout-stage:hover {
  transform:
    perspective(1200px)
    rotateY(0deg)
    rotateX(0deg);
  box-shadow:
    0 32px 80px rgba(45, 24, 84, 0.16),
    0 0 70px rgba(139, 92, 246, 0.16);
}

.checkout-stage img {
  display: block;
  width: 100%;
  height: auto;
}

.split-grid,
.suite-grid {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 48px;
  align-items: center;
}

.split-grid--reverse {
  grid-template-columns: 1fr 0.85fr;
}

.split-grid--reverse .checkout-visual {
  order: 1;
}

.split-grid--reverse .checkout-copy {
  order: 2;
}

.checkout-global-section {
  background:
    radial-gradient(circle at 18% 50%, rgba(139, 92, 246, 0.12), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.42), rgba(18, 10, 34, 0.04));
}

.checkout-visual--globe {
  display: grid;
  place-items: center;
  min-height: 460px;
}

.globe-stage {
  position: relative;
  width: min(100%, 720px);
  aspect-ratio: 1;
  margin: 0 auto;
}

.globe-stage::before {
  position: absolute;
  inset: 4%;
  z-index: 0;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 42%, rgba(139, 92, 246, 0.18), transparent 52%),
    radial-gradient(circle, #120A22 0%, #1B0F2F 62%, rgba(27, 15, 47, 0.15) 100%);
  box-shadow:
    inset 0 0 60px rgba(139, 92, 246, 0.12),
    0 24px 70px rgba(27, 15, 47, 0.18);
  content: "";
  pointer-events: none;
}

.globe-wrap {
  position: absolute;
  inset: 0;
}

.globe-wrap canvas,
.globe-stage canvas {
  display: block;
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: grab;
  touch-action: none;
  transition: opacity 0.5s ease;
}

.globe-wrap canvas.is-ready,
.globe-stage canvas.is-ready {
  opacity: 1;
}

.globe-stage__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: radial-gradient(circle at 50% 48%, rgba(139, 92, 246, 0.2), transparent 64%);
  pointer-events: none;
}

.globe-stage::after {
  position: absolute;
  inset: -10%;
  z-index: 0;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.24), transparent 70%);
  content: "";
  pointer-events: none;
}

.price-card {
  padding: 34px;
  background: linear-gradient(160deg, #2D1854, #1B0F2F);
  color: #F5F3FF;
}

.price-card span,
.price-card p {
  color: var(--muted);
}

.price-card strong {
  display: block;
  margin: 10px 0 0;
  color: #F5F3FF;
  font-size: clamp(4rem, 9vw, 7rem);
  letter-spacing: -0.08em;
}

.price-card ul {
  display: grid;
  gap: 12px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.price-card li {
  padding: 13px 14px;
  border-radius: 14px;
  background: rgba(245, 243, 255, 0.08);
}

.integrations {
  overflow: visible;
}

.integrations-heading {
  max-width: 760px;
  margin: 0 auto 48px;
}

.integrations-heading h2 {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.integrations-heading p {
  max-width: 580px;
  margin: 0 auto;
  color: #8B849E;
  font-size: 1.02rem;
  font-weight: 500;
  line-height: 1.7;
  text-wrap: balance;
}

.code-panels {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  width: min(100%, 520px);
  margin: 0 auto;
  transition: width 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.code-panels.is-revealed {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: min(100%, 1060px);
}

.code-panels__fx {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 6;
  overflow: visible;
}

.code-panels__beam,
.code-panels__flash,
.code-panels__ring,
.code-panels__particles {
  position: absolute;
  opacity: 0;
}

.code-panels__beam {
  top: 50%;
  left: 12%;
  width: 0;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(139, 92, 246, 0.2),
    #C792EA,
    #F5F3FF,
    #8B5CF6,
    transparent
  );
  box-shadow:
    0 0 18px rgba(139, 92, 246, 0.8),
    0 0 40px rgba(199, 146, 234, 0.45);
  transform: translateY(-50%);
}

.code-panels.is-beaming .code-panels__beam {
  animation: beamShoot 0.75s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.code-panels__flash {
  inset: -8%;
  border-radius: 24px;
  background: radial-gradient(circle at 72% 50%, rgba(139, 92, 246, 0.45), transparent 58%);
}

.code-panels.is-success-flash .code-panels__flash {
  animation: successFlash 1s ease-out forwards;
}

.code-panels__ring {
  top: 50%;
  left: 72%;
  width: 20px;
  height: 20px;
  border: 2px solid rgba(199, 146, 234, 0.9);
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0.2);
  box-shadow: 0 0 30px rgba(139, 92, 246, 0.55);
}

.code-panels.is-revealed .code-panels__ring {
  animation: successRing 1.1s cubic-bezier(0.22, 1, 0.36, 1) 0.15s forwards;
}

.code-panels__particles {
  inset: 0;
}

.code-panels__particles.is-active .code-fx-particle {
  animation-play-state: running;
}

.code-fx-particle {
  position: absolute;
  top: 50%;
  left: 68%;
  width: var(--size, 4px);
  height: var(--size, 4px);
  border-radius: 50%;
  background: radial-gradient(circle, #F5F3FF 0%, #8B5CF6 55%, transparent 100%);
  box-shadow: 0 0 12px rgba(139, 92, 246, 0.85);
  opacity: 0;
  transform: translate(-50%, -50%);
  animation: particleBurst 1.05s ease-out var(--delay, 0s) forwards;
  animation-play-state: paused;
}

.code-panel.is-sending {
  animation: requestPulse 1.1s ease-in-out infinite;
}

.code-panel.is-sending::after {
  position: absolute;
  inset: 0;
  z-index: 4;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(139, 92, 246, 0.16) 48%,
    transparent 100%
  );
  content: "";
  pointer-events: none;
  animation: scanLine 1.1s linear infinite;
}

.code-panel.is-sending .code-panel__try.is-loading {
  position: relative;
  overflow: hidden;
}

.code-panel.is-sending .code-panel__try.is-loading::after {
  display: none;
}

.code-panel--response {
  opacity: 0;
  transform: perspective(1000px) rotateY(-38deg) translateX(70px) scale(0.82);
  filter: blur(14px) brightness(1.6);
}

.code-panels.is-revealed .code-panel--response {
  animation: responseSpectacular 1.05s cubic-bezier(0.34, 1.25, 0.64, 1) forwards;
}

.code-panels.is-revealed .code-panel__status {
  animation: statusPop 0.75s cubic-bezier(0.34, 1.56, 0.64, 1) 0.55s both;
}

.code-panel--response.is-animating .code-line--spectacular {
  opacity: 0;
  transform: translateX(-18px) scale(0.94);
  filter: blur(5px);
  animation: spectacularLineIn 0.55s cubic-bezier(0.34, 1.45, 0.64, 1) forwards;
}

.code-panel__try.is-loading:disabled {
  cursor: wait;
  opacity: 0.92;
}

.code-panel__try:disabled {
  opacity: 0.78;
  cursor: default;
  transform: none;
}
  0% {
    left: 12%;
    width: 0;
    opacity: 0;
  }

  15% {
    opacity: 1;
  }

  100% {
    left: 12%;
    width: 76%;
    opacity: 0;
  }
}

@keyframes successFlash {
  0% {
    opacity: 0;
    transform: scale(0.92);
  }

  25% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: scale(1.08);
  }
}

@keyframes successRing {
  0% {
    opacity: 0.95;
    transform: translate(-50%, -50%) scale(0.2);
  }

  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(8);
  }
}

@keyframes particleBurst {
  0% {
    opacity: 1;
    transform: translate(-50%, -50%) rotate(var(--angle)) translateX(0) scale(1);
  }

  100% {
    opacity: 0;
    transform: translate(-50%, -50%) rotate(var(--angle)) translateX(var(--distance)) scale(0);
  }
}

@keyframes requestPulse {
  0%,
  100% {
    box-shadow:
      0 24px 60px rgba(27, 15, 47, 0.22),
      0 0 0 1px rgba(255, 255, 255, 0.04) inset,
      0 0 0 rgba(139, 92, 246, 0);
  }

  50% {
    box-shadow:
      0 28px 70px rgba(27, 15, 47, 0.28),
      0 0 0 1px rgba(139, 92, 246, 0.35) inset,
      0 0 42px rgba(139, 92, 246, 0.35);
  }
}

@keyframes scanLine {
  0% {
    transform: translateY(-110%);
  }

  100% {
    transform: translateY(110%);
  }
}

@keyframes responseSpectacular {
  0% {
    opacity: 0;
    transform: perspective(1000px) rotateY(-38deg) translateX(70px) scale(0.82);
    filter: blur(14px) brightness(1.6);
  }

  55% {
    filter: blur(0) brightness(1.25);
  }

  100% {
    opacity: 1;
    transform: perspective(1000px) rotateY(0deg) translateX(0) scale(1);
    filter: blur(0) brightness(1);
  }
}

@keyframes statusPop {
  0% {
    opacity: 0;
    transform: scale(0.4);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes spectacularLineIn {
  0% {
    opacity: 0;
    transform: translateX(-18px) scale(0.94);
    filter: blur(5px);
  }

  70% {
    opacity: 1;
    transform: translateX(3px) scale(1.01);
    filter: blur(0);
  }

  100% {
    opacity: 1;
    transform: translateX(0) scale(1);
    filter: blur(0);
  }
}

.code-panel {
  position: relative;
  width: 100%;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(139, 92, 246, 0.28);
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(139, 92, 246, 0.08), transparent 28%),
    #120A22;
  box-shadow:
    0 24px 60px rgba(27, 15, 47, 0.22),
    0 0 0 1px rgba(255, 255, 255, 0.04) inset;
}

.code-panel__top {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-bottom: 1px solid rgba(139, 92, 246, 0.16);
  background: rgba(255, 255, 255, 0.03);
}

.code-panel__dots {
  display: inline-flex;
  gap: 5px;
}

.code-panel__dots span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
}

.code-panel__dots span:nth-child(1) {
  background: #FF5F57;
}

.code-panel__dots span:nth-child(2) {
  background: #FEBC2E;
}

.code-panel__dots span:nth-child(3) {
  background: #28C840;
}

.code-panel__path {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  color: rgba(245, 243, 255, 0.72);
  font-size: 0.78rem;
  font-weight: 600;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.code-panel__example {
  padding: 4px 9px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(245, 243, 255, 0.72);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.code-panel__status {
  background: rgba(139, 92, 246, 0.18);
  color: #D8B4FE;
}

.code-panel__scroll {
  position: relative;
  height: 300px;
  overflow: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(139, 92, 246, 0.45) rgba(255, 255, 255, 0.06);
}

.code-panel__scroll::-webkit-scrollbar {
  width: 7px;
  height: 7px;
}

.code-panel__scroll::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.04);
}

.code-panel__scroll::-webkit-scrollbar-thumb {
  border: 2px solid transparent;
  border-radius: 999px;
  background: rgba(139, 92, 246, 0.45);
  background-clip: padding-box;
}

.code-panel__editor {
  display: flex;
  align-items: flex-start;
  min-width: max-content;
}

.code-panel__gutter {
  flex: 0 0 42px;
  padding: 14px 10px 18px 0;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  color: rgba(245, 243, 255, 0.28);
  font-family: "JetBrains Mono", Consolas, monospace;
  font-size: 0.72rem;
  line-height: 1.65;
  text-align: right;
  user-select: none;
}

.code-line-number {
  display: block;
}

.code-panel__pre {
  flex: 1;
  margin: 0;
  padding: 14px 16px 18px;
  color: #E6E1FF;
  font-family: "JetBrains Mono", Consolas, monospace;
  font-size: 0.72rem;
  line-height: 1.65;
  tab-size: 2;
}

.code-panel__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 12px;
  border-top: 1px solid rgba(139, 92, 246, 0.16);
  background: rgba(255, 255, 255, 0.03);
}

.code-panel__tools {
  display: inline-flex;
  gap: 8px;
}

.code-panel__tool {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 10px;
  --hbg-fill: #1a1030;
  color: rgba(245, 243, 255, 0.72);
  cursor: pointer;
  transition: color 0.2s ease;
}

.code-panel__tool:hover {
  color: #F5F3FF;
}

.code-panel__tool svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  stroke-width: 1.8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.code-panel__try {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 16px;
  border-radius: 999px;
  --hbg-fill: linear-gradient(135deg, var(--primary), var(--accent));
  color: #F5F3FF;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 800;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.code-panel__pre code {
  display: block;
}

.code-line {
  display: block;
  opacity: 0;
  transform: translateY(6px);
  animation: codeLineIn 0.45s ease forwards;
}

.code-line:nth-child(1) { animation-delay: 0.04s; }
.code-line:nth-child(2) { animation-delay: 0.08s; }
.code-line:nth-child(3) { animation-delay: 0.12s; }
.code-line:nth-child(4) { animation-delay: 0.16s; }
.code-line:nth-child(5) { animation-delay: 0.2s; }
.code-line:nth-child(6) { animation-delay: 0.24s; }
.code-line:nth-child(7) { animation-delay: 0.28s; }
.code-line:nth-child(8) { animation-delay: 0.32s; }
.code-line:nth-child(9) { animation-delay: 0.36s; }
.code-line:nth-child(10) { animation-delay: 0.4s; }
.code-line:nth-child(11) { animation-delay: 0.44s; }
.code-line:nth-child(12) { animation-delay: 0.48s; }
.code-line:nth-child(13) { animation-delay: 0.52s; }
.code-line:nth-child(14) { animation-delay: 0.56s; }
.code-line:nth-child(15) { animation-delay: 0.6s; }
.code-line:nth-child(16) { animation-delay: 0.64s; }
.code-line:nth-child(17) { animation-delay: 0.68s; }
.code-line:nth-child(18) { animation-delay: 0.72s; }
.code-line:nth-child(19) { animation-delay: 0.76s; }
.code-line:nth-child(20) { animation-delay: 0.8s; }
.code-line:nth-child(n+21) { animation-delay: 0.84s; }

.code-cursor {
  display: inline-block;
  width: 8px;
  height: 1.05em;
  margin-left: 2px;
  vertical-align: text-bottom;
  background: #C792EA;
  box-shadow: 0 0 10px rgba(199, 146, 234, 0.65);
  animation: cursorBlink 1s step-end infinite;
}

.tok-cmd {
  color: #C792EA;
}

.tok-flag {
  color: #82AAFF;
}

.tok-method {
  color: #FFCB6B;
}

.tok-string {
  color: #C3E88D;
}

.tok-key {
  color: #89DDFF;
}

.tok-number {
  color: #F78C6C;
}

.tok-null {
  color: #FF5370;
}

.tok-url {
  color: #80CBC4;
  text-decoration: underline;
  text-decoration-color: rgba(128, 203, 196, 0.35);
}

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

@keyframes cursorBlink {
  0%,
  49% {
    opacity: 1;
  }

  50%,
  100% {
    opacity: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .code-line,
  .code-line--spectacular {
    opacity: 1;
    transform: none;
    animation: none;
    filter: none;
  }

  .dashboard-stage,
  .dashboard-desktop,
  .dashboard-desktop img {
    animation: none;
    transform: none;
  }

  .dashboard-desktop img {
    filter: none;
  }

  .benefits-marquee__track {
    animation: none;
  }

  .faq-premium .accordion-panel {
    transition: none;
  }

  .code-cursor {
    animation: none;
  }

  .code-panels,
  .code-panel.is-sending,
  .code-panel.is-sending::after,
  .code-panels__beam,
  .code-panels__flash,
  .code-panels__ring,
  .code-fx-particle,
  .code-panel__status {
    animation: none;
    transition: none;
  }

  .code-panels.is-revealed .code-panel--response {
    opacity: 1;
    transform: none;
    filter: none;
  }

  .payment-mock__status-dot {
    animation: none;
  }

  .payment-card,
  .payment-card__icon {
    transition: none;
  }

  .payment-card:hover {
    transform: none;
  }
}

.suite-grid {
  align-items: start;
}

.stack-cards {
  display: grid;
  gap: 16px;
}

.stack-cards article {
  padding: 28px;
}

.limits {
  padding-top: 44px;
}

.limit-card {
  display: grid;
  grid-template-columns: 1fr 0.86fr;
  gap: 32px;
  align-items: center;
  padding: clamp(28px, 5vw, 52px);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(245, 243, 255, 0.92)),
    var(--surface);
}

.limit-list {
  display: grid;
  gap: 14px;
}

.limit-list div {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.68);
}

.limit-list strong {
  display: block;
  font-size: 1.75rem;
  letter-spacing: -0.06em;
}

.limit-list span {
  color: var(--muted);
}

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

.testimonial-card {
  padding: 28px;
}

.testimonial-card p {
  margin: 0 0 24px;
  font-size: 1.05rem;
}

.testimonial-card strong,
.testimonial-card span {
  display: block;
}

.support-card {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 34px;
  align-items: center;
  padding: clamp(28px, 5vw, 52px);
  background: linear-gradient(160deg, #2D1854, #1B0F2F);
  color: #F5F3FF;
}

.support-card h2 {
  color: #F5F3FF;
}

.support-card p {
  color: var(--muted);
}

.contact-form {
  display: grid;
  gap: 14px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-weight: 800;
}

.contact-form input {
  min-height: 54px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(245, 243, 255, 0.08);
  color: #F5F3FF;
  outline: none;
  padding: 0 16px;
}

.contact-form input::placeholder {
  color: rgba(168, 163, 184, 0.7);
}

.faq-premium {
  position: relative;
  padding: clamp(72px, 8vw, 108px) 0;
  background:
    radial-gradient(circle at 14% 18%, rgba(139, 92, 246, 0.14), transparent 28%),
    radial-gradient(circle at 88% 72%, rgba(91, 33, 182, 0.12), transparent 32%),
    linear-gradient(180deg, #0B0614 0%, #07030D 100%);
  color: #F5F3FF;
  overflow: hidden;
}

.faq-premium__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(139, 92, 246, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(139, 92, 246, 0.05) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse at center, #000 24%, transparent 88%);
}

.faq-premium__square {
  position: absolute;
  border: 1px solid rgba(157, 100, 255, 0.18);
  border-radius: 18px;
  background: rgba(139, 92, 246, 0.04);
  box-shadow:
    inset 0 0 0 1px rgba(196, 181, 253, 0.04),
    0 0 40px rgba(139, 92, 246, 0.08);
}

.faq-premium__square--one {
  top: 12%;
  left: 4%;
  width: 112px;
  height: 112px;
}

.faq-premium__square--two {
  top: 28%;
  left: 16%;
  width: 88px;
  height: 88px;
  border-color: rgba(167, 139, 250, 0.28);
  box-shadow: 0 0 48px rgba(139, 92, 246, 0.16);
}

.faq-premium__square--three {
  bottom: 16%;
  left: 8%;
  width: 132px;
  height: 132px;
}

.faq-premium__square--four {
  top: 18%;
  right: 10%;
  width: 96px;
  height: 96px;
  border-color: rgba(167, 139, 250, 0.22);
}

.faq-premium__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: start;
}

.faq-premium__intro {
  max-width: 420px;
}

.faq-premium__title {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 0 0 24px;
  font-size: clamp(3rem, 6vw, 5.4rem);
  font-weight: 900;
  letter-spacing: -0.06em;
  line-height: 0.94;
}

.faq-premium__title span:first-child {
  color: #FFFFFF;
}

.faq-premium__title-muted {
  color: rgba(196, 181, 253, 0.52);
}

.faq-premium__lead {
  max-width: 360px;
  margin: 0;
  color: rgba(221, 214, 254, 0.72);
  font-size: 1rem;
  line-height: 1.7;
}

.faq-premium__accordion {
  display: grid;
  gap: 14px;
}

.faq-premium .accordion-item {
  width: 100%;
  overflow: hidden;
  border: 1px solid rgba(157, 100, 255, 0.18);
  border-radius: 16px;
  background: rgba(12, 6, 22, 0.62);
  backdrop-filter: blur(10px);
  color: #F5F3FF;
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease;
}

.faq-premium .accordion-item:hover {
  border-color: rgba(167, 139, 250, 0.32);
  background: rgba(18, 8, 34, 0.72);
  box-shadow: 0 0 28px rgba(139, 92, 246, 0.12);
}

.faq-premium .accordion-item:has(.accordion-trigger[aria-expanded="true"]),
.faq-premium .accordion-item.is-open {
  border-color: rgba(167, 139, 250, 0.36);
  background: rgba(22, 10, 40, 0.78);
  box-shadow: 0 0 32px rgba(139, 92, 246, 0.16);
}

.faq-premium .accordion-trigger {
  width: 100%;
  min-height: 76px;
  display: flex;
  align-items: center;
  border: 0;
  background: transparent;
  color: #F5F3FF;
  cursor: pointer;
  padding: 0 24px;
  margin: 0;
  text-align: left;
  box-sizing: border-box;
  transition: color 0.2s ease;
}

.faq-premium .accordion-trigger:hover {
  color: #EDE9FE;
}

.faq-premium .accordion-trigger span {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  font-size: clamp(0.95rem, 1.2vw, 1.05rem);
  font-weight: 700;
  line-height: 1.45;
}

.faq-premium .accordion-trigger span::after {
  content: "+";
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: rgba(139, 92, 246, 0.12);
  color: #DDD6FE;
  font-size: 1.15rem;
  font-weight: 500;
  line-height: 28px;
  text-align: center;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.faq-premium .accordion-trigger[aria-expanded="true"] span::after {
  content: "−";
  transform: none;
  background: rgba(139, 92, 246, 0.22);
  color: #F5F3FF;
  line-height: 26px;
}

.faq-premium .accordion-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-premium .accordion-panel__inner {
  overflow: visible;
}

.faq-premium .accordion-panel p {
  max-width: 640px;
  margin: 0;
  padding: 0 24px 22px;
  color: rgba(221, 214, 254, 0.74);
  font-size: 0.95rem;
  line-height: 1.7;
}

.footer {
  position: relative;
  z-index: 90;
  padding: clamp(72px, 8vw, 96px) 0 0;
  background:
    radial-gradient(circle at 18% 0%, rgba(139, 92, 246, 0.12), transparent 34%),
    radial-gradient(circle at 82% 12%, rgba(91, 33, 182, 0.1), transparent 28%),
    linear-gradient(180deg, #120822 0%, #0B0614 52%, #07030D 100%);
  color: #F5F3FF;
  border-top: 1px solid rgba(139, 92, 246, 0.16);
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(196, 181, 253, 0.35), transparent);
  pointer-events: none;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) repeat(3, minmax(0, 1fr));
  gap: clamp(32px, 4vw, 56px);
  align-items: start;
}

.footer-brand__logo {
  display: inline-flex;
}

.footer-brand__logo img {
  display: block;
  width: auto;
  height: 38px;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(98%) sepia(8%) saturate(746%) hue-rotate(219deg) brightness(104%) contrast(101%);
}

.footer-brand__text {
  max-width: 380px;
  margin: 24px 0 28px;
  color: rgba(221, 214, 254, 0.78);
  font-size: 0.95rem;
  line-height: 1.72;
}

.footer-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  background: linear-gradient(135deg, #8B5CF6 0%, #6D28D9 48%, #2D1854 100%);
  color: #F5F3FF;
  font-size: 0.92rem;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.footer-cta:hover {
  filter: brightness(1.06);
  box-shadow: 0 14px 32px rgba(139, 92, 246, 0.28);
}

.footer-column h3 {
  margin: 0 0 22px;
  color: #FFFFFF;
  font-size: 1.02rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.footer-links {
  display: grid;
  gap: 14px;
}

.footer-links a {
  display: block;
  width: fit-content;
  color: rgba(245, 243, 255, 0.84);
  font-size: 0.92rem;
  line-height: 1.5;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: #C4B5FD;
}

.footer-contact {
  display: grid;
  gap: 14px;
  color: rgba(221, 214, 254, 0.78);
  font-size: 0.92rem;
  line-height: 1.55;
}

.footer-contact a {
  display: block;
  width: fit-content;
  color: rgba(245, 243, 255, 0.84);
  transition: color 0.2s ease;
}

.footer-contact a:hover {
  color: #C4B5FD;
}

.footer-bottom {
  display: flex;
  justify-content: flex-start;
  margin-top: clamp(48px, 6vw, 64px);
  padding: 24px 0 clamp(24px, 4vw, 32px);
  border-top: 1px solid rgba(139, 92, 246, 0.14);
  color: rgba(168, 163, 184, 0.72);
  font-size: 0.88rem;
}

@media (max-width: 1100px) {
  :root {
    --site-header-height: 130px;
  }

  .hero {
    overflow: visible;
    padding-bottom: clamp(24px, 4vw, 40px);
  }

  .hero.hero-section + .benefits-marquee,
  .benefits-marquee {
    margin-top: 0;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .hero-copy {
    max-width: none;
    margin-left: 0;
    width: 100%;
  }

  .hero-social-proof {
    justify-content: flex-start;
  }

  .eyebrow {
    display: flex;
    align-items: flex-start;
    width: 100%;
    max-width: 100%;
    border-radius: 20px;
    padding: 8px 12px 8px 8px;
  }

  .eyebrow-stack {
    flex: 1;
    flex-wrap: wrap;
    row-gap: 6px;
    column-gap: 8px;
    white-space: normal;
    line-height: 1.35;
    font-size: 0.7rem;
  }

  .eyebrow::after {
    right: 0;
    top: -20%;
    width: 72px;
    height: 72px;
  }

  .hero-dashboard {
    margin-top: 0;
    width: 100%;
  }

  .dashboard-stage {
    width: min(94vw, 600px);
    max-width: none;
    margin: 0 auto;
    aspect-ratio: 1;
  }

  .hero-notify {
    width: clamp(180px, 40vw, 280px);
    filter:
      contrast(1.22)
      brightness(0.9)
      drop-shadow(0 16px 32px rgba(27, 15, 47, 0.3));
  }

  .hero-notify--1 {
    top: 0;
    right: -4%;
  }

  .hero-notify--2 {
    top: 26%;
    left: -8%;
  }

  .hero-notify--3 {
    bottom: 18%;
    right: -6%;
  }

  .hero-notify--4 {
    bottom: 2%;
    left: -2%;
  }

  .dashboard-desktop {
    position: relative;
    top: auto;
    right: auto;
    width: 100%;
    max-width: 100%;
    transform: none;
    box-shadow: none;
  }

  .dashboard-desktop:hover {
    transform: none;
  }

  .split-grid,
  .suite-grid,
  .limit-card,
  .support-card {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .faq-premium__grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .faq-premium__intro {
    max-width: none;
  }

  .split-grid--reverse .checkout-copy {
    order: 1;
  }

  .split-grid--reverse .checkout-visual {
    order: 2;
  }

  .checkout-stage,
  .checkout-stage:hover {
    transform: none;
  }

  .code-panels,
  .code-panels.is-revealed {
    grid-template-columns: 1fr;
    width: 100%;
    max-width: 100%;
  }

  .products-showcase {
    overflow: visible;
  }
}

@media (max-width: 980px) {
  .nav-toggle {
    display: block;
  }

  .nav-actions {
    display: none;
  }

  .nav-menu {
    position: fixed;
    top: calc(var(--site-header-height) + 8px);
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 24px;
    background: rgba(18, 10, 32, 0.94);
    box-shadow: 0 24px 80px rgba(124, 58, 237, 0.28);
    backdrop-filter: blur(22px) saturate(160%);
    -webkit-backdrop-filter: blur(22px) saturate(160%);
    max-height: calc(100dvh - 128px);
    overflow-y: auto;
  }

  .nav-menu.is-open {
    display: flex;
  }

  .nav-menu a {
    padding: 12px;
  }

  .nav-menu a::after {
    display: none;
  }

  .nav-menu-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 8px;
    padding-top: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .header-top-inner {
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    padding: 8px 0;
    min-height: auto;
    text-align: center;
    font-size: 0.72rem;
  }

  .hero {
    padding-top: calc(var(--site-header-height) + 28px);
    padding-bottom: clamp(20px, 4vw, 36px);
  }

  .hero.hero-section + .benefits-marquee,
  .benefits-marquee {
    margin-top: 0;
  }

  .benefits-marquee__group {
    gap: 24px;
    padding-right: 24px;
  }

  .benefits-marquee__item {
    gap: 10px;
    font-size: 0.8rem;
  }

  .benefits-marquee__icon {
    width: 26px;
    height: 26px;
  }

  .benefits-marquee__icon img {
    width: 16px;
    height: 16px;
  }

  .hero-grid,
  .split-grid,
  .suite-grid,
  .limit-card,
  .support-card {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .faq-premium__grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .faq-premium__intro {
    max-width: none;
  }

  .hero h1,
  .section-heading h2,
  .split-grid h2,
  .suite h2,
  .limits h2,
  .support h2,
  .integrations-heading h2 {
    line-height: 1.12;
    letter-spacing: -0.05em;
    overflow-wrap: anywhere;
  }

  .hero-copy {
    max-width: none;
    margin-left: 0;
    width: 100%;
  }

  .hero-social-proof {
    justify-content: flex-start;
  }

  .eyebrow {
    display: flex;
    align-items: flex-start;
    width: 100%;
    max-width: 100%;
    border-radius: 20px;
    padding: 8px 12px 8px 8px;
  }

  .eyebrow-stack {
    flex: 1;
    flex-wrap: wrap;
    row-gap: 6px;
    column-gap: 8px;
    white-space: normal;
    line-height: 1.35;
    font-size: 0.7rem;
  }

  .eyebrow::after {
    right: 0;
    top: -20%;
    width: 72px;
    height: 72px;
  }

  .hero-dashboard {
    margin-top: 0;
  }

  .dashboard-stage {
    width: min(92vw, 560px);
    max-width: none;
    margin: 0 auto;
    aspect-ratio: 1;
  }

  .hero-notify {
    width: clamp(168px, 44vw, 240px);
  }

  .hero-notify--3,
  .hero-notify--4 {
    display: block;
  }

  .dashboard-desktop {
    position: relative;
    top: auto;
    right: auto;
    width: 100%;
    max-width: 100%;
    transform: none;
    box-shadow: none;
  }

  .dashboard-desktop:hover {
    transform: none;
  }

  .checkout-stage,
  .checkout-stage:hover {
    transform: none;
  }

  .code-panels,
  .code-panels.is-revealed {
    grid-template-columns: 1fr;
    width: 100%;
    max-width: 100%;
  }

  .checkout-copy .btn,
  .hero-cta {
    width: 100%;
    max-width: 100%;
  }

  .checkout-visual--globe {
    min-height: auto;
    padding: 12px 0;
  }

  .globe-stage {
    width: min(100%, 360px);
    margin: 0 auto;
  }

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

  .split-grid--reverse .checkout-visual,
  .split-grid--reverse .checkout-copy {
    order: unset;
  }

  .split-grid--reverse .checkout-copy {
    order: 1;
  }

  .split-grid--reverse .checkout-visual {
    order: 2;
  }

  .hero-card {
    transform: none;
  }

  .payment-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .payment-card {
    min-height: auto;
  }

  .products-showcase,
  .payment-showcase {
    padding: clamp(56px, 7vw, 72px) 0 clamp(64px, 8vw, 80px);
    overflow: visible;
  }

  .payment-showcase__header h2 {
    font-size: clamp(1.85rem, 6.5vw, 2.75rem);
  }

  .section {
    padding: 64px 0;
  }

  .integrations-heading {
    margin-bottom: 28px;
  }

  .integrations-heading h2,
  .section-heading h2,
  .split-grid h2,
  .diferenciais__intro h2 {
    font-size: clamp(1.85rem, 6.5vw, 2.75rem);
  }
}

@media (max-width: 680px) {
  :root {
    --site-header-height: 128px;
  }
  .container {
    width: min(100% - 24px, 1180px);
  }

  .site-header__shell {
    width: min(1120px, calc(100% - 20px));
    margin-top: 10px;
  }

  .site-header__nav {
    min-height: 58px;
    padding: 0 14px;
    border-radius: 20px;
  }

  .nav {
    min-height: 58px;
    gap: 10px;
  }

  .brand-logo {
    height: 28px;
  }

  .header-top-inner span {
    flex: 1 1 100%;
  }

  .header-top-inner a {
    padding: 5px 12px;
    font-size: 0.72rem;
  }

  .hero {
    padding-top: calc(var(--site-header-height) + 20px);
    padding-bottom: clamp(20px, 4vw, 32px);
  }

  .hero.hero-section + .benefits-marquee,
  .benefits-marquee {
    margin-top: 0;
  }

  .diferenciais {
    padding: 64px 0;
  }

  .hero h1 {
    font-size: clamp(1.85rem, 8.5vw, 2.65rem);
    line-height: 1.05;
  }

  .hero.hero-section .hero-copy > p {
    margin-top: 16px;
    font-size: 0.9375rem;
  }

  .hero.hero-section .hero-actions {
    margin-top: 24px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .hero-social-proof {
    justify-content: center;
    margin-top: 18px;
  }

  .hero-social-proof__text {
    max-width: 260px;
    font-size: 0.8125rem;
  }

  .hero-cta {
    flex: none;
    min-width: 0;
    min-height: 48px;
    padding: 12px 20px;
    font-size: 0.88rem;
  }

  .dashboard-stage {
    width: min(90vw, 480px);
    max-width: none;
    margin: 0 auto;
    aspect-ratio: 1;
  }

  .hero-notify {
    width: min(52vw, 210px);
  }

  .hero-notify--2 {
    top: 22%;
    left: -6%;
  }

  .hero-notify--3 {
    bottom: 16%;
    right: -4%;
  }

  .hero-notify--4 {
    bottom: 0;
    left: -2%;
  }

  .checkout-visual--globe {
    min-height: 0;
    padding: 8px 0 0;
  }

  .globe-stage {
    width: min(100%, 300px);
  }

  .gradient-text {
    filter: none;
  }

  .integrations {
    overflow: visible;
  }

  .code-panel {
    max-width: 100%;
  }

  .code-panel__editor {
    min-width: 0;
    width: 100%;
  }

  .code-panel__pre {
    overflow-x: auto;
    font-size: 0.66rem;
  }

  .code-panel__gutter {
    flex: 0 0 34px;
    padding-right: 6px;
    font-size: 0.66rem;
  }

  .code-panel__scroll {
    height: 200px;
  }

  .code-panel__top {
    flex-wrap: wrap;
  }

  .code-panel__example {
    display: none;
  }

  .code-panel__footer {
    flex-direction: column;
    align-items: stretch;
  }

  .code-panel__tools {
    justify-content: flex-end;
  }

  .code-panel__try {
    width: 100%;
    min-height: 42px;
  }

  .limit-list strong {
    font-size: 1.45rem;
  }

  .payment-grid,
  .testimonial-track {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px 28px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .payment-card {
    min-height: auto;
  }

  .payment-card__body {
    padding: 8px 20px 22px;
  }

  .payment-card__visual {
    min-height: 190px;
    padding: 18px 18px 8px;
  }

  .testimonial-card,
  .stack-cards article {
    padding: 22px 20px;
  }

  .checkout-points {
    margin: 22px 0 24px;
  }

  .checkout-copy h2 {
    font-size: clamp(1.75rem, 8vw, 2.4rem);
  }

  .section-heading {
    margin-bottom: 28px;
  }

  .integrations-heading p,
  .section-heading p,
  .payment-showcase__header p {
    font-size: 0.95rem;
    line-height: 1.65;
  }

  .support-card,
  .limit-card {
    padding: 22px 18px;
  }

  .support-card {
    gap: 24px;
  }

  .contact-form input {
    min-height: 48px;
  }

  .preview-head,
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .preview-head strong {
    font-size: 2rem;
  }

  .transaction-list > div {
    grid-template-columns: auto 1fr;
  }

  .transaction-list b {
    grid-column: 2;
  }

  .section {
    padding: 56px 0;
  }
}

@media (max-width: 480px) {
  :root {
    --site-header-height: 112px;
  }

  .container {
    width: min(100% - 20px, 1180px);
  }

  .header-top-inner {
    font-size: 0.68rem;
    padding: 6px 0;
  }

  .header-top-inner span {
    line-height: 1.35;
  }

  .hero {
    padding-top: calc(var(--site-header-height) + 16px);
  }

  .hero h1 {
    font-size: clamp(1.85rem, 9.5vw, 2.45rem);
    line-height: 1.12;
  }

  .integrations-heading h2,
  .section-heading h2,
  .split-grid h2,
  .suite h2,
  .limits h2,
  .support h2 {
    font-size: clamp(1.75rem, 9vw, 2.35rem);
    letter-spacing: -0.05em;
  }

  .faq-premium {
    padding: 64px 0;
  }

  .faq-premium__title {
    font-size: clamp(2.6rem, 11vw, 3.6rem);
  }

  .faq-premium__square {
    opacity: 0.55;
  }

  .faq-premium .accordion-trigger {
    min-height: 76px;
    padding: 0 18px;
  }

  .faq-premium .accordion-panel p {
    padding: 0 18px 18px;
  }

  .btn {
    width: 100%;
    min-height: 48px;
  }

  .nav-menu {
    top: calc(var(--site-header-height) + 6px);
    left: 10px;
    right: 10px;
  }

  .footer {
    padding: 64px 0 0;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-brand {
    grid-column: auto;
  }

  .footer-brand__text {
    max-width: none;
  }

  .footer-bottom {
    margin-top: 40px;
    padding-bottom: 24px;
  }
}
