:root {
  color-scheme: dark;
  --black: #030303;
  --black-2: #070707;
  --panel: #0d0d0f;
  --panel-2: #111114;
  --white: #f7f7f2;
  --muted: #9a9a9d;
  --muted-2: #5f6066;
  --line: rgba(255, 255, 255, 0.13);
  --line-strong: rgba(255, 255, 255, 0.24);
  --blue: #173bff;
  --blue-2: #0c27b8;
  --blue-soft: rgba(23, 59, 255, 0.18);
  --radius: 8px;
  --max: 1240px;
  --font: "SF Pro Display", "SF Pro Text", -apple-system, BlinkMacSystemFont, "Inter", "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

.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;
}

html {
  scroll-behavior: auto;
  scroll-padding-top: 104px;
}

html.lenis,
html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--black);
  color: var(--white);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0;
  overflow-x: hidden;
  text-rendering: geometricPrecision;
}

body.is-transitioning main {
  pointer-events: none;
}

main {
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -3;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 96px 96px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.88), transparent 74%);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 78% 18%, rgba(23, 59, 255, 0.2), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent 32%);
}

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

button,
input {
  font: inherit;
}

a,
button,
[role="button"],
input[type="button"],
input[type="submit"],
input[type="reset"],
summary,
label[for],
.clickable,
.nav-link,
.cta,
.auth-social-button,
[data-password-toggle],
.auth-submit,
.auth-google,
.auth-check,
.pricing-card button,
.price-card .button,
.testimonial-card,
.whatsapp-float,
.nav-toggle,
.mobile-nav-toggle,
.billing-switch button,
.plan-mode,
.button,
.magnetic {
  cursor: pointer;
}

button:disabled,
[aria-disabled="true"],
.disabled,
input:disabled {
  cursor: not-allowed;
}

input,
textarea {
  cursor: text;
}

select,
input[type="checkbox"],
input[type="radio"] {
  cursor: pointer;
}

a:focus-visible,
button:focus-visible,
[role="button"]:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid rgba(75, 120, 255, 0.85);
  outline-offset: 3px;
}

::selection {
  background: rgba(23, 59, 255, 0.62);
}

.loader {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: grid;
  grid-template-rows: auto 1fr auto;
  padding: clamp(22px, 3vw, 42px);
  background:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    #010101;
  background-size: 88px 88px;
  color: #fff;
  overflow: hidden;
  clip-path: inset(0 0 0 0);
  transition:
    opacity 760ms cubic-bezier(0.22, 1, 0.36, 1),
    visibility 760ms,
    clip-path 980ms cubic-bezier(0.76, 0, 0.24, 1),
    transform 980ms cubic-bezier(0.76, 0, 0.24, 1);
}

.loader.is-done {
  opacity: 0;
  visibility: hidden;
  clip-path: inset(0 0 100% 0);
  transform: translateY(-12px);
  pointer-events: none;
}

.loader::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 34vh;
  background: linear-gradient(180deg, transparent, rgba(23, 59, 255, 0.28));
  transform: translateY(35%);
}

.loader-tags {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 8px;
}

.loader-tags span,
.loader-brand {
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  padding: 8px 13px;
  background: rgba(255, 255, 255, 0.045);
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  backdrop-filter: blur(16px);
}

.loader-brand {
  position: relative;
  z-index: 1;
  align-self: center;
  justify-self: start;
  border-radius: 7px;
}

.loader-count {
  position: relative;
  z-index: 1;
  justify-self: end;
  font-size: clamp(78px, 18vw, 260px);
  font-weight: 950;
  line-height: 0.78;
  letter-spacing: 0;
}

.loader-line {
  position: absolute;
  left: clamp(22px, 3vw, 42px);
  right: clamp(22px, 3vw, 42px);
  bottom: clamp(20px, 2.4vw, 34px);
  height: 1px;
  background: rgba(255, 255, 255, 0.18);
  overflow: hidden;
}

.loader-line::before {
  content: "";
  display: block;
  width: var(--loader-progress, 0%);
  height: 100%;
  background: var(--blue);
  box-shadow: 0 0 34px rgba(23, 59, 255, 0.72);
  transition: width 80ms linear;
}

.cursor-aura {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(circle, rgba(23, 59, 255, 0.24), transparent 62%);
  filter: blur(32px);
  opacity: 0;
  transform: translate3d(-50%, -50%, 0);
}

.cursor-system,
.hover-preview,
.page-transition {
  pointer-events: none;
}

.cursor-system {
  position: fixed;
  inset: 0;
  z-index: 2600;
  opacity: 0;
  transition: opacity 180ms ease;
}

.cursor-system.is-visible {
  opacity: 1;
}

.cursor-dot,
.cursor-ring,
.cursor-label {
  position: fixed;
  top: 0;
  left: 0;
  transform: translate3d(-50%, -50%, 0);
  will-change: transform;
}

.cursor-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #fff;
  mix-blend-mode: difference;
}

.cursor-ring {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  background: rgba(23, 59, 255, 0.08);
  backdrop-filter: blur(3px);
  transition: width 220ms ease, height 220ms ease, background 220ms ease, border-color 220ms ease;
}

.cursor-system.is-link .cursor-ring {
  width: 68px;
  height: 68px;
  border-color: rgba(23, 59, 255, 0.92);
  background: rgba(23, 59, 255, 0.18);
}

.cursor-system.is-project .cursor-ring {
  width: 104px;
  height: 104px;
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(23, 59, 255, 0.2);
}

.cursor-label {
  display: grid;
  place-items: center;
  width: 104px;
  height: 104px;
  color: #fff;
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
  opacity: 0;
  transition: opacity 160ms ease;
}

.cursor-system.is-project .cursor-label {
  opacity: 1;
}

.hover-preview {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2500;
  width: 220px;
  aspect-ratio: 4 / 3;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  background: #050505;
  overflow: hidden;
  opacity: 0;
  transform: translate3d(-50%, -50%, 0) scale(0.92) rotate(-2deg);
  transition: opacity 180ms ease, transform 180ms ease;
  will-change: transform, opacity;
}

.hover-preview.is-visible {
  opacity: 1;
}

.hover-preview img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  filter: saturate(0.85) contrast(1.12) brightness(0.86);
}

.page-transition {
  position: fixed;
  inset: 0;
  z-index: 2400;
  background:
    linear-gradient(90deg, rgba(23, 59, 255, 0.96), rgba(3, 3, 3, 0.98) 48%, rgba(247, 247, 242, 0.96));
  transform: translateY(101%);
  will-change: transform;
}

.scroll-meter {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1001;
  width: 100%;
  height: 3px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: left center;
  will-change: transform;
}

.section-inner {
  width: min(calc(100% - 40px), var(--max));
  margin-inline: auto;
}

.announcement {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 980;
  display: flex;
  justify-content: center;
  gap: 14px;
  width: 100%;
  min-height: 34px;
  padding: 7px 16px;
  background: var(--blue-2);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  overflow: hidden;
}

.announcement::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 -22%;
  width: 18%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  animation: announcementSheen 4.6s ease-in-out infinite;
}

.announcement a {
  color: #fff;
  opacity: 0.86;
}

.announcement a::after {
  content: "→";
  margin-left: 8px;
}

.promo-bar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: var(--promo-height);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  overflow: hidden;
  pointer-events: auto;
  background: linear-gradient(90deg, #1438c8, #245bff, #1438c8);
  color: #fff;
  font-size: 13px;
  font-weight: 750;
  letter-spacing: -0.015em;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 8px 28px rgba(37, 99, 255, 0.22);
  opacity: 1;
  transform: translateY(0);
  transition:
    transform 420ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.promo-bar::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 -22%;
  width: 18%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.22), transparent);
  animation: announcementSheen 4.6s ease-in-out infinite;
  pointer-events: none;
}

.promo-bar span,
.promo-bar a {
  position: relative;
  z-index: 1;
}

.promo-bar a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #fff;
  font-weight: 850;
  text-decoration: none;
  opacity: 0.96;
}

.promo-bar a::after {
  content: "→";
}

.promo-bar a:hover {
  opacity: 1;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.site-header.is-scrolled .promo-bar {
  opacity: 0;
  transform: translateY(-100%);
}

/* ── Super Professional Navbar ── */

@keyframes headerEntrance {
  from {
    opacity: 0;
    transform: translateY(-18px);
    filter: blur(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@keyframes navPillShine {
  0% { background-position: 200% center; }
  100% { background-position: -200% center; }
}

@keyframes ctaGlow {
  0%, 100% { box-shadow: 0 0 20px rgba(23, 59, 255, 0), 0 4px 16px rgba(0,0,0,0.2); }
  50% { box-shadow: 0 0 28px rgba(23, 59, 255, 0.25), 0 4px 16px rgba(0,0,0,0.2); }
}

@keyframes brandGlow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(23, 59, 255, 0); }
  50% { box-shadow: 0 0 16px 2px rgba(23, 59, 255, 0.22); }
}

@keyframes whatsappTextSpark {
  0% {
    opacity: 0;
    transform: translateX(-12px) scaleX(0.68);
  }

  45% {
    opacity: 0.82;
  }

  100% {
    opacity: 0;
    transform: translateX(8px) scaleX(1);
  }
}

@keyframes whatsappTextDissolve {
  0% {
    opacity: 0;
    transform: translateX(0) scaleX(1);
  }

  35% {
    opacity: 0.52;
  }

  100% {
    opacity: 0;
    transform: translateX(12px) scaleX(0.72);
  }
}

@keyframes authPulse {
  0%,
  100% {
    opacity: 0.4;
    transform: scale(0.82);
  }

  50% {
    opacity: 1;
    transform: scale(1.18);
  }
}

@keyframes authLightBloom {
  from {
    opacity: 0.18;
    transform: translate3d(0, 12px, 0) scale(0.92);
  }

  to {
    opacity: 0.42;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes authScan {
  0%,
  58% {
    transform: translateY(-120%);
    opacity: 0;
  }

  64% {
    opacity: 0.85;
  }

  78%,
  100% {
    transform: translateY(220%);
    opacity: 0;
  }
}

@keyframes authChipIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

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

@keyframes authFieldPulse {
  0%,
  100% {
    box-shadow: 0 0 0 rgba(45, 91, 255, 0);
  }

  45% {
    box-shadow: 0 0 0 3px rgba(45, 91, 255, 0.12);
  }
}

@keyframes authInvalidShake {
  0%,
  100% { transform: translateX(0); }
  24% { transform: translateX(-3px); }
  52% { transform: translateX(3px); }
  76% { transform: translateX(-1px); }
}

@keyframes authButtonArm {
  0%,
  100% { transform: translateY(0) scale(1); }
  45% { transform: translateY(-1px) scale(1.012); }
}

@keyframes authCheckRipple {
  from {
    opacity: 0.38;
    transform: scale(0.5);
  }

  to {
    opacity: 0;
    transform: scale(2.4);
  }
}

@keyframes testimonialMarquee {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(calc(-50% - var(--testimonial-half-gap, 11px)), 0, 0);
  }
}

.site-header {
  position: fixed;
  top: 34px;
  left: 0;
  right: 0;
  z-index: 960;
  pointer-events: none;
  padding: 0 clamp(16px, 4vw, 32px);
  animation: headerEntrance 800ms cubic-bezier(0.22, 1, 0.36, 1) 200ms both;
  transition:
    top 420ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.site-header.is-scrolled {
  top: 50px;
}

.liquid-navbar {
  position: relative;
  pointer-events: auto;
  isolation: isolate;
  overflow: visible;
  width: 100%;
  max-width: 1240px;
  height: 70px;
  margin: 0 auto;
  padding: 0 10px 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-top-color: rgba(255, 255, 255, 0.04);
  border-radius: 0 0 22px 22px;
  background: rgba(8, 10, 22, 0.28);
  box-shadow: none;
  transform: translateY(0);
  transition:
    max-width 420ms cubic-bezier(0.22, 1, 0.36, 1),
    height 420ms cubic-bezier(0.22, 1, 0.36, 1),
    border-radius 420ms cubic-bezier(0.22, 1, 0.36, 1),
    background 420ms cubic-bezier(0.22, 1, 0.36, 1),
    border-color 420ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 420ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.liquid-navbar__lens {
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025)),
    rgba(8, 10, 22, 0.36);
  backdrop-filter: blur(14px) saturate(145%);
  -webkit-backdrop-filter: blur(14px) saturate(145%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.11),
    inset 0 -1px 0 rgba(255, 255, 255, 0.035);
  transition:
    background 420ms cubic-bezier(0.22, 1, 0.36, 1),
    backdrop-filter 420ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.liquid-navbar__content {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
}

.liquid-navbar::before {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  top: 7px;
  z-index: 1;
  height: 1px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.42), transparent);
  opacity: 0.18;
  pointer-events: none;
  transition: opacity 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.liquid-navbar::after {
  content: "";
  position: absolute;
  left: 12%;
  right: 12%;
  bottom: -18px;
  z-index: -2;
  height: 34px;
  border-radius: 999px;
  background: radial-gradient(ellipse at center, rgba(37, 99, 255, 0.26), transparent 72%);
  filter: blur(18px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.site-header.is-scrolled .liquid-navbar {
  max-width: 1120px;
  height: 62px;
  border-radius: 999px;
  border-color: rgba(125, 165, 255, 0.26);
  background: rgba(8, 10, 22, 0.52);
  box-shadow:
    0 0 0 1px rgba(80, 120, 255, 0.1),
    0 18px 60px rgba(0, 0, 0, 0.38),
    0 0 72px rgba(38, 88, 255, 0.22);
}

.site-header.is-scrolled .liquid-navbar__lens {
  background:
    radial-gradient(circle at 50% 0%, rgba(80, 130, 255, 0.22), transparent 42%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.045)),
    rgba(8, 10, 22, 0.56);
  backdrop-filter: blur(22px) saturate(170%);
  -webkit-backdrop-filter: blur(22px) saturate(170%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    inset 1px 2px 0 rgba(255, 255, 255, 0.08),
    inset -1px -1px 0 rgba(255, 255, 255, 0.04),
    inset 0 -10px 24px rgba(37, 99, 255, 0.055);
}

.site-header.is-scrolled .liquid-navbar::before {
  opacity: 0.42;
}

.site-header.is-scrolled .liquid-navbar::after {
  opacity: 1;
}

/* ── Brand / Logo ── */

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
  font-weight: 800;
  font-size: 15px;
  letter-spacing: -0.01em;
  transition: opacity 180ms ease;
}

.brand:hover {
  opacity: 0.85;
}

.brand-mark {
  position: relative;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  background:
    linear-gradient(135deg, rgba(23, 59, 255, 0.15), rgba(10, 10, 14, 0.95));
  color: var(--white);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.02em;
  transition: border-color 240ms ease, box-shadow 300ms ease, transform 240ms ease;
  overflow: hidden;
}

.brand-mark::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, transparent 40%, rgba(255, 255, 255, 0.12) 50%, transparent 60%);
  background-size: 250% 250%;
  animation: navPillShine 4s ease-in-out infinite;
  pointer-events: none;
}

.brand:hover .brand-mark {
  border-color: rgba(23, 59, 255, 0.45);
  animation: brandGlow 2s ease-in-out infinite;
  transform: scale(1.04);
}

/* ── Navigation Pills ── */

.site-nav {
  justify-self: center;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 4px 5px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.055);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.site-header.is-scrolled .site-nav {
  border-color: rgba(255, 255, 255, 0.13);
  background: rgba(255, 255, 255, 0.075);
}

/* Sliding active indicator */
.site-nav::before {
  content: "";
  position: absolute;
  top: 4px;
  left: var(--pill-left, 5px);
  width: var(--pill-width, 0px);
  height: calc(100% - 8px);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  transition: left 380ms cubic-bezier(0.22, 1, 0.36, 1), width 380ms cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
  z-index: 0;
}

.site-nav a {
  position: relative;
  z-index: 1;
  border-radius: 999px;
  color: rgba(247, 247, 242, 0.55);
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 0.01em;
  padding: 8px 14px;
  transition: color 220ms ease;
  white-space: nowrap;
}

.site-nav a::after {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 50%;
  width: 0;
  height: 1.5px;
  background: var(--blue);
  border-radius: 2px;
  transform: translateX(-50%);
  transition: width 260ms cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: 0 0 6px rgba(23, 59, 255, 0.5);
}

.site-nav a:hover {
  color: rgba(247, 247, 242, 0.88);
}

.site-nav a:hover::after {
  width: 18px;
}

.site-nav a.is-active {
  color: var(--white);
}

.site-nav a.is-active::after {
  width: 0;
}

.site-nav a:focus-visible {
  color: var(--white);
  outline: 2px solid var(--blue);
  outline-offset: 2px;
}

/* ── Header CTA Button ── */

.header-cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 20px;
  border-radius: 999px;
  background: linear-gradient(135deg, #f7f7f2 0%, #e8e8e3 100%);
  color: #070707;
  font-size: 13.5px;
  font-weight: 850;
  letter-spacing: 0.01em;
  border: none;
  overflow: hidden;
  transition: transform 280ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 280ms ease;
  animation: ctaGlow 3s ease-in-out infinite;
}

/* Shine sweep on CTA */
.header-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 30%, rgba(255,255,255,0.7) 50%, transparent 70%);
  background-size: 250% 100%;
  animation: navPillShine 5s ease-in-out infinite;
  pointer-events: none;
}

.header-cta::after {
  content: "→";
  display: inline-block;
  margin-left: 6px;
  font-size: 14px;
  font-weight: 900;
  transition: transform 280ms cubic-bezier(0.22, 1, 0.36, 1);
}

.header-cta:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 8px 28px rgba(23, 59, 255, 0.2), 0 2px 8px rgba(0,0,0,0.15);
}

.header-cta:hover::after {
  transform: translateX(3px);
}

.header-cta:active {
  transform: translateY(0) scale(0.98);
}

.site-header.is-scrolled .header-cta {
  box-shadow:
    0 8px 24px rgba(0, 0, 0, 0.24),
    0 0 18px rgba(255, 255, 255, 0.1);
}

/* ── Mobile Toggle ── */

.nav-toggle {
  display: none;
  position: relative;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  transition: background 200ms ease, border-color 200ms ease;
}

.nav-toggle:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  border-radius: 999px;
  background: var(--white);
  transition: transform 280ms cubic-bezier(0.22, 1, 0.36, 1), opacity 180ms ease;
}

.nav-toggle.is-open span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.nav-toggle.is-open span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

/* ── Mini liquid glass navbar ── */

.site-header {
  inset: 0 0 auto 0;
  z-index: 1000;
  height: calc(var(--promo-height) + 72px);
  padding: 0;
  --promo-height: 34px;
  --nav-top: var(--promo-height);
  transition: transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.site-header.is-scrolled {
  top: 0;
}

.liquid-nav {
  position: absolute;
  top: var(--nav-top);
  left: 50%;
  isolation: isolate;
  pointer-events: auto;
  width: min(calc(100% - 32px), 1240px);
  height: 66px;
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0 14px 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-top-color: transparent;
  border-radius: 0 0 24px 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025)),
    rgba(8, 10, 22, 0.42);
  box-shadow: none;
  transform: translateX(-50%);
  transition:
    top 420ms cubic-bezier(0.22, 1, 0.36, 1),
    width 420ms cubic-bezier(0.22, 1, 0.36, 1),
    height 420ms cubic-bezier(0.22, 1, 0.36, 1),
    border-radius 420ms cubic-bezier(0.22, 1, 0.36, 1),
    border-color 420ms cubic-bezier(0.22, 1, 0.36, 1),
    background 420ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 420ms cubic-bezier(0.22, 1, 0.36, 1),
    backdrop-filter 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.liquid-nav__glass {
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.035)),
    rgba(8, 10, 22, 0.42);
  backdrop-filter: blur(14px) saturate(145%);
  -webkit-backdrop-filter: blur(14px) saturate(145%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    inset 0 -1px 0 rgba(255, 255, 255, 0.035);
  transition:
    background 420ms cubic-bezier(0.22, 1, 0.36, 1),
    backdrop-filter 420ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.liquid-nav__content {
  position: relative;
  z-index: 2;
  width: 100%;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 20px;
}

.liquid-nav::before {
  content: "";
  position: absolute;
  left: 20px;
  right: 20px;
  top: 7px;
  z-index: 1;
  height: 1px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.42), transparent);
  opacity: 0.22;
  pointer-events: none;
  transition: opacity 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.liquid-nav::after {
  content: "";
  position: absolute;
  left: 14%;
  right: 14%;
  bottom: -18px;
  z-index: -2;
  height: 34px;
  border-radius: 999px;
  background: radial-gradient(ellipse at center, rgba(37, 99, 255, 0.26), transparent 72%);
  filter: blur(18px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.site-header.is-scrolled .liquid-nav {
  top: 14px;
  width: min(calc(100% - 48px), 1120px);
  height: 60px;
  border-radius: 999px;
  border-color: rgba(125, 165, 255, 0.24);
  background:
    radial-gradient(circle at 50% 0%, rgba(80, 130, 255, 0.2), transparent 42%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.045)),
    rgba(8, 10, 22, 0.62);
  backdrop-filter: blur(22px) saturate(170%);
  -webkit-backdrop-filter: blur(22px) saturate(170%);
  box-shadow:
    0 0 0 1px rgba(80, 120, 255, 0.1),
    0 18px 60px rgba(0, 0, 0, 0.42),
    0 0 72px rgba(37, 99, 255, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.site-header.is-scrolled .liquid-nav__glass {
  background:
    radial-gradient(circle at 50% 0%, rgba(80, 130, 255, 0.22), transparent 44%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.045)),
    rgba(8, 10, 22, 0.58);
  backdrop-filter: blur(22px) saturate(170%);
  -webkit-backdrop-filter: blur(22px) saturate(170%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    inset 1px 2px 0 rgba(255, 255, 255, 0.08),
    inset -1px -1px 0 rgba(255, 255, 255, 0.04),
    inset 0 -10px 24px rgba(37, 99, 255, 0.055);
}

.site-header.is-scrolled .liquid-nav::before {
  opacity: 0.42;
}

.site-header.is-scrolled .liquid-nav::after {
  opacity: 1;
}

.nav-brand {
  min-width: 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  text-decoration: none;
}

.nav-logo {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04)),
    rgba(37, 99, 255, 0.12);
  color: #fff;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: -0.03em;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.15),
    0 0 18px rgba(37, 99, 255, 0.18);
}

.nav-brand-text {
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: -0.025em;
  white-space: nowrap;
}

.nav-links {
  justify-self: center;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 5px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.055);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.site-header.is-scrolled .nav-links {
  border-color: rgba(255, 255, 255, 0.13);
  background: rgba(255, 255, 255, 0.075);
}

.nav-links a {
  position: relative;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 14px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 750;
  letter-spacing: -0.015em;
  text-decoration: none;
  transition:
    color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.nav-links a:hover,
.nav-links a.is-active {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.nav-links a.is-active {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.075));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 0 22px rgba(37, 99, 255, 0.12);
}

.nav-auth {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.nav-login {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 750;
  text-decoration: none;
  transition: color 180ms ease;
}

.nav-login:hover {
  color: #fff;
}

.nav-register,
.mobile-register {
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 18px;
  background: #fff;
  color: #050711;
  font-size: 13px;
  font-weight: 850;
  letter-spacing: -0.02em;
  text-decoration: none;
  box-shadow:
    0 8px 28px rgba(0, 0, 0, 0.24),
    0 0 18px rgba(255, 255, 255, 0.08);
  transition:
    transform 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.nav-register:hover,
.mobile-register:hover {
  transform: translateY(-1px);
  background: #f4f6ff;
  box-shadow:
    0 12px 34px rgba(0, 0, 0, 0.3),
    0 0 24px rgba(255, 255, 255, 0.12);
}

.site-header.is-scrolled .nav-register {
  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.28),
    0 0 20px rgba(255, 255, 255, 0.1);
}

.nav-mobile-toggle {
  display: none;
  justify-self: end;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  color: #fff;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.nav-mobile-toggle span {
  display: block;
  width: 16px;
  height: 2px;
  margin: 4px auto;
  border-radius: 999px;
  background: currentColor;
  transition: transform 240ms cubic-bezier(0.22, 1, 0.36, 1);
}

.nav-mobile-toggle.is-open span:first-child {
  transform: translateY(3px) rotate(45deg);
}

.nav-mobile-toggle.is-open span:last-child {
  transform: translateY(-3px) rotate(-45deg);
}

.mobile-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 12px;
  right: 12px;
  display: none;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 22px;
  background: rgba(8, 10, 22, 0.72);
  backdrop-filter: blur(22px) saturate(160%);
  -webkit-backdrop-filter: blur(22px) saturate(160%);
  box-shadow:
    0 18px 60px rgba(0, 0, 0, 0.42),
    0 0 52px rgba(37, 99, 255, 0.14);
}

.mobile-menu a {
  min-height: 44px;
  display: flex;
  align-items: center;
  border-radius: 14px;
  padding: 0 14px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  font-weight: 750;
  text-decoration: none;
}

.mobile-menu a:hover {
  background: rgba(255, 255, 255, 0.07);
  color: #fff;
}

.site-header.is-open {
  transform: translateY(0) !important;
}

.site-header.is-open .mobile-menu {
  display: grid;
  gap: 2px;
}

.liquid-nav a:focus-visible,
.nav-mobile-toggle:focus-visible {
  outline: 2px solid rgba(125, 165, 255, 0.9);
  outline-offset: 3px;
}

.hero {
  position: relative;
  min-height: 100svh;
  padding: 154px 0 42px;
  overflow: hidden;
  isolation: isolate;
}

.hero-grid {
  position: absolute;
  inset: 92px 16px 16px;
  z-index: -1;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    radial-gradient(ellipse at 76% 20%, rgba(23, 59, 255, 0.2), transparent 34%);
  background-size: 80px 80px, 80px 80px, auto;
  mask-image: linear-gradient(to bottom, #000 0%, #000 78%, transparent 100%);
  transform: translate3d(0, var(--depth-y, 0px), 0);
  will-change: transform;
}

.hero-inner {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.55fr);
  gap: clamp(32px, 6vw, 86px);
  align-items: end;
  min-height: calc(100svh - 260px);
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-title {
  margin: 0;
  max-width: 860px;
  color: #fff;
  font-size: clamp(58px, 7vw, 112px);
  font-weight: 850;
  letter-spacing: -0.075em;
  line-height: 0.92;
}

.hero-title > .hero-title-visible {
  display: block;
  animation: titleLift 980ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.rotating-word-shell {
  position: relative;
  display: inline-flex;
  align-items: baseline;
  min-width: 12ch;
  min-height: 1.24em;
  padding-inline: 0.18em;
  padding-bottom: 0.18em;
  margin-inline: -0.18em;
  margin-bottom: -0.08em;
  overflow: visible;
  vertical-align: baseline;
}

.rotating-word-fit {
  position: relative;
  display: inline-flex;
  align-items: baseline;
  min-height: 1.16em;
}

.rotating-word-mask {
  position: relative;
  display: inline-flex;
  align-items: baseline;
  min-height: 1.18em;
  overflow: hidden;
  padding-inline: 0.18em;
  padding-top: 0.06em;
  padding-bottom: 0.2em;
  margin-inline: -0.18em;
  margin-top: -0.06em;
  margin-bottom: -0.12em;
}

.rotating-word {
  display: inline-block;
  line-height: 1.08;
  padding-inline: 0.12em;
  padding-bottom: 0.1em;
  margin-inline: -0.12em;
  background: linear-gradient(180deg, #fff 10%, #aac1ff 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  text-shadow: 0 0 28px rgba(45, 91, 255, 0.18);
  transform: translateY(0);
  will-change: transform, opacity, filter;
}

.rotating-word.is-entering {
  animation: rotatingWordIn 620ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.rotating-word.is-exiting {
  animation: rotatingWordOut 360ms cubic-bezier(0.55, 0, 0.2, 1) both;
}

.rotating-word-underline {
  position: absolute;
  left: var(--underline-x, 0px);
  bottom: 0.05em;
  width: var(--underline-width, 100%);
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    rgba(36, 91, 255, 0.95) 0%,
    rgba(130, 170, 255, 1) 50%,
    rgba(36, 91, 255, 0.95) 100%
  );
  box-shadow:
    0 0 12px rgba(45, 91, 255, 0.34),
    0 0 26px rgba(45, 91, 255, 0.16);
  opacity: 0.95;
  pointer-events: none;
  transform-origin: left center;
  transition:
    width 520ms cubic-bezier(0.22, 1, 0.36, 1),
    left 520ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 280ms ease,
    box-shadow 280ms ease;
}

.hero-lead {
  width: min(100%, 680px);
  margin: 28px 0 0;
  color: #c8ccd8;
  font-size: clamp(17px, 1.3vw, 21px);
  letter-spacing: -0.02em;
  line-height: 1.55;
}

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

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 20px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 850;
  overflow: hidden;
  transition: transform 170ms ease, background 170ms ease, border-color 170ms ease;
}

.button-primary {
  border: 1px solid var(--blue);
  background: var(--blue);
  color: #fff;
  box-shadow: 0 18px 70px rgba(23, 59, 255, 0.3);
}

.button-primary.is-paused {
  animation-play-state: paused;
}

.button-secondary {
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.04);
  color: var(--white);
}

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

.hero-product {
  position: relative;
  min-width: 0;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: rgba(9, 9, 10, 0.78);
  backdrop-filter: blur(22px);
  overflow: hidden;
  transform-style: preserve-3d;
  translate: 0 var(--motion-y, 0px);
  will-change: transform, translate;
}

.hero-product::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(105deg, transparent 18%, rgba(255, 255, 255, 0.12), transparent 42%);
  opacity: 0;
  transform: translateX(-120%);
  animation: panelSweep 5.8s ease-in-out infinite 1.4s;
}

.hero.is-animation-paused .hero-product::before,
.hero-product.is-paused::before {
  animation-play-state: paused;
}

.product-top,
.board-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 48px;
  padding: 0 16px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.product-top strong {
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.product-top strong::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 0 rgba(23, 59, 255, 0.8);
  animation: livePulse 1.8s ease-out infinite;
}

.hero.is-animation-paused .product-top strong::before {
  animation-play-state: paused;
}

.score-module {
  display: grid;
  gap: 14px;
  padding: 22px;
  border-bottom: 1px solid var(--line);
}

.score-module span,
.metric-cell span,
.review-chip span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.score-module strong {
  display: block;
  margin-top: 8px;
  font-size: clamp(76px, 8vw, 116px);
  line-height: 0.86;
}

.score-module p,
.review-chip p {
  margin: 0;
  color: #d5d5d1;
}

.product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid var(--line);
}

.metric-cell {
  display: grid;
  gap: 10px;
  min-height: 128px;
  padding: 18px;
}

.metric-cell + .metric-cell {
  border-left: 1px solid var(--line);
}

.metric-cell strong {
  font-size: 34px;
}

.rank-map {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  padding: 18px;
  border-bottom: 1px solid var(--line);
}

.rank-map span {
  aspect-ratio: 1;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.045);
  transition: background 260ms ease, border-color 260ms ease, box-shadow 260ms ease, transform 260ms ease;
  animation: cellIdle 5s ease-in-out infinite;
  animation-delay: calc(var(--cell-index, 0) * 55ms);
}

.rank-map span.is-paused {
  animation-play-state: paused;
}

.rank-map span:nth-child(3n),
.rank-map span:nth-child(8),
.rank-map span:nth-child(19) {
  background: var(--blue);
  border-color: var(--blue);
  box-shadow: 0 0 26px rgba(23, 59, 255, 0.35);
}

.rank-map span:nth-child(5n) {
  background: rgba(255, 255, 255, 0.16);
}

.rank-map.is-scanning span {
  transform: scale(0.94);
}

.rank-map.is-scanning span:nth-child(3n),
.rank-map.is-scanning span:nth-child(8),
.rank-map.is-scanning span:nth-child(19) {
  transform: scale(1.05);
}

.review-chip {
  display: grid;
  gap: 8px;
  padding: 18px;
}

.metrics-section {
  position: relative;
  z-index: 3;
  width: min(calc(100% - 48px), var(--max));
  margin: 42px auto 0;
}

.metrics-panel {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 22px;
  background:
    radial-gradient(circle at 50% 0%, rgba(37, 99, 255, 0.2), transparent 42%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.025)),
    rgba(8, 10, 18, 0.62);
  backdrop-filter: blur(18px) saturate(150%);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
  box-shadow:
    0 18px 70px rgba(0, 0, 0, 0.34),
    0 0 70px rgba(37, 99, 255, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  opacity: 0;
  transform: translateY(20px);
  filter: blur(8px);
  transition:
    opacity 700ms ease,
    transform 700ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 700ms ease;
}

.metrics-section.is-visible .metrics-panel {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

.metrics-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(80, 130, 255, 0.1), transparent);
  opacity: 0.5;
  pointer-events: none;
}

.metric-card {
  position: relative;
  min-height: 138px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 28px 32px 28px 30px;
}

.metric-card::before {
  content: none;
}

.metric-card:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 24px;
  right: 0;
  bottom: 24px;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.14), transparent);
}

.metric-number {
  display: inline-flex;
  align-items: flex-start;
  width: max-content;
  max-width: 100%;
  overflow: visible;
  padding-right: 0.12em;
  color: #fff;
  font-size: clamp(34px, 4vw, 54px);
  font-weight: 900;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.045em;
  line-height: 1;
}

.metric-digit {
  position: relative;
  display: inline-flex;
  align-items: flex-start;
  width: 0.68em;
  height: 1em;
  overflow: hidden;
  line-height: 1;
}

.metric-digit-track {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  transform: translateY(var(--digit-y, 0em));
  transition: transform 520ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.metric-digit-track span {
  height: 1em;
  display: flex;
  flex: 0 0 1em;
  align-items: flex-start;
  justify-content: center;
  line-height: 1;
}

.metric-separator {
  display: inline-flex;
  align-items: center;
  margin: 0 0.02em;
  color: rgba(255, 255, 255, 0.82);
}

.metric-number .metric-suffix {
  flex: 0 0 auto;
  align-self: flex-start;
  margin-top: 0.04em;
  margin-left: 0.06em;
  padding-right: 0.04em;
  color: #2f63ff;
  font-size: 0.64em;
  letter-spacing: -0.02em;
  line-height: 1;
}

.metric-card h3 {
  margin: 12px 0 0;
  color: #f4f6ff;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.metric-card p {
  max-width: 230px;
  margin: 7px 0 0;
  color: #aeb4c4;
  font-size: 13px;
  line-height: 1.45;
}

.gradual-blur {
  position: absolute;
  left: 0;
  right: 0;
  z-index: 2;
  display: flex;
  pointer-events: none;
  opacity: 0.85;
}

.gradual-blur--bottom {
  bottom: 0;
  height: 6rem;
  flex-direction: column;
}

.gradual-blur span {
  flex: 1;
  min-height: 0;
  background: rgba(3, 3, 3, 0.018);
}

.gradual-blur span:nth-child(1) {
  backdrop-filter: blur(0.35px);
  -webkit-backdrop-filter: blur(0.35px);
}

.gradual-blur span:nth-child(2) {
  backdrop-filter: blur(0.7px);
  -webkit-backdrop-filter: blur(0.7px);
}

.gradual-blur span:nth-child(3) {
  backdrop-filter: blur(1.1px);
  -webkit-backdrop-filter: blur(1.1px);
}

.gradual-blur span:nth-child(4) {
  backdrop-filter: blur(1.45px);
  -webkit-backdrop-filter: blur(1.45px);
}

.gradual-blur span:nth-child(5) {
  backdrop-filter: blur(1.6px);
  -webkit-backdrop-filter: blur(1.6px);
  background:
    linear-gradient(180deg, rgba(3, 3, 3, 0.01), rgba(3, 3, 3, 0.09)),
    rgba(3, 3, 3, 0.02);
}

.signal-strip {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
  color: #050505;
}

.signal-track {
  display: flex;
  width: max-content;
  gap: 26px;
  padding: 14px 0;
  animation: marquee 24s linear infinite;
}

.signal-track.is-paused {
  animation-play-state: paused;
}

.signal-track span {
  font-size: clamp(28px, 4vw, 64px);
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
}

.signal-track span::after {
  content: "/";
  margin-left: 26px;
  color: var(--blue);
}

.field-proof {
  padding-top: 112px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent 34%),
    var(--black);
}

.proof-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(520px, 1fr);
  gap: clamp(34px, 7vw, 92px);
  align-items: center;
}

.proof-copy {
  max-width: 680px;
}

.proof-copy .section-copy {
  margin-top: 24px;
}

.proof-gallery {
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  grid-template-rows: 250px 250px;
  gap: 12px;
  perspective: 1200px;
  translate: 0 var(--motion-y, 0px);
  will-change: translate;
}

.proof-card {
  position: relative;
  min-width: 0;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #080808;
  overflow: hidden;
  transform: translateY(var(--proof-y, 0));
  transition: border-color 180ms ease, transform 240ms ease;
}

.proof-card:hover {
  border-color: rgba(255, 255, 255, 0.32);
}

.proof-main {
  grid-row: 1 / 3;
}

.proof-card picture {
  display: block;
  width: 100%;
  height: 100%;
}

.proof-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  filter: saturate(0.8) contrast(1.1) brightness(0.72);
  transform: scale(1.05);
  transition: transform 900ms cubic-bezier(0.22, 1, 0.36, 1), filter 600ms ease;
}

.proof-main.is-webgl-ready img {
  opacity: 0;
}

.liquid-canvas {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
  width: 100%;
  height: 100%;
}

.proof-card:hover img {
  filter: saturate(0.94) contrast(1.12) brightness(0.84);
  transform: scale(1.01);
}

.proof-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, transparent 38%, rgba(0, 0, 0, 0.84)),
    radial-gradient(ellipse at 50% 20%, rgba(23, 59, 255, 0.24), transparent 46%);
  pointer-events: none;
}

.proof-card figcaption {
  position: absolute;
  z-index: 2;
  left: 16px;
  right: 16px;
  bottom: 14px;
  display: grid;
  gap: 5px;
}

.proof-card figcaption span {
  color: var(--blue);
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.proof-card figcaption strong {
  color: #fff;
  font-size: clamp(18px, 1.8vw, 28px);
  line-height: 1;
}

.section {
  position: relative;
  padding: 132px 0;
}

.section-title {
  margin: 0;
  max-width: 980px;
  font-size: clamp(40px, 6vw, 86px);
  line-height: 0.95;
  letter-spacing: 0;
}

.section-copy {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.statement {
  margin-bottom: 54px;
}

.system-board {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(12, 12, 14, 0.82);
  overflow: hidden;
}

.board-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.7fr 0.9fr;
  min-height: 380px;
}

.board-panel {
  position: relative;
  display: grid;
  align-content: end;
  gap: 16px;
  min-height: 320px;
  padding: 26px;
  border-right: 1px solid var(--line);
  overflow: hidden;
}

.board-panel:last-child {
  border-right: 0;
}

.board-panel.large h3 {
  max-width: 620px;
  margin: 0;
  font-size: clamp(34px, 4vw, 62px);
  line-height: 0.96;
}

.board-panel p {
  margin: 0;
  color: var(--muted);
}

.board-panel.blue {
  background: var(--blue);
  color: #fff;
}

.board-panel.blue .panel-label,
.board-panel.blue p {
  color: rgba(255, 255, 255, 0.76);
}

.board-panel.blue strong {
  font-size: 88px;
  line-height: 0.9;
}

.panel-label,
.plan-label,
.result-stack span,
.method-card span,
.service-row span {
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.mini-table {
  display: grid;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.mini-table div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 14px;
  border-bottom: 1px solid var(--line);
}

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

.mini-table span {
  color: var(--muted);
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.58fr);
  gap: clamp(30px, 6vw, 92px);
  align-items: end;
  margin-bottom: 54px;
}

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

.service-row {
  position: relative;
  display: grid;
  grid-template-columns: 90px minmax(260px, 0.5fr) 1fr;
  gap: 28px;
  align-items: center;
  min-height: 154px;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.service-row::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: var(--row-progress, 0%);
  height: 1px;
  background: var(--blue);
  box-shadow: 0 0 26px rgba(23, 59, 255, 0.65);
  transition: width 600ms cubic-bezier(0.22, 1, 0.36, 1);
}

.service-row.is-visible::before {
  --row-progress: 100%;
}

.service-row h3 {
  margin: 0;
  font-size: clamp(26px, 3vw, 44px);
  line-height: 1;
}

.service-row p {
  margin: 0;
  color: var(--muted);
}

.section-method {
  background: #fff;
  color: #050505;
}

.section-method .eyebrow,
.section-method .method-card span {
  color: var(--blue);
}

.method-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(420px, 1fr);
  gap: clamp(32px, 7vw, 90px);
}

.method-copy {
  position: sticky;
  top: 128px;
  align-self: start;
}

.method-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.method-card {
  min-height: 260px;
  padding: 22px;
  border: 1px solid rgba(0, 0, 0, 0.16);
  border-radius: var(--radius);
  background: #f5f5f0;
}

.method-card p {
  margin: 42px 0 0;
  color: #444;
  font-size: 18px;
}

.section-plans {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding-block: clamp(96px, 8.5vw, 134px) clamp(88px, 8vw, 124px);
  background:
    linear-gradient(90deg, rgba(3, 3, 3, 0.98), rgba(7, 10, 24, 0.94) 62%, rgba(3, 3, 3, 0.98));
}

.pricing-section::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 48%;
  z-index: -3;
  width: min(900px, 80vw);
  height: 520px;
  transform: translate(-50%, -50%);
  background:
    radial-gradient(circle at center,
      rgba(32, 108, 232, 0.34) 0%,
      rgba(49, 49, 245, 0.22) 28%,
      rgba(32, 108, 232, 0.09) 52%,
      transparent 72%);
  filter: blur(56px);
  opacity: 0.82;
  pointer-events: none;
}

.pricing-section::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -4;
  background:
    linear-gradient(to right, rgba(255, 255, 255, 0.038) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 72px 72px;
  opacity: 0.24;
  pointer-events: none;
  mask-image: radial-gradient(circle at center, #000 0%, transparent 72%);
  -webkit-mask-image: radial-gradient(circle at center, #000 0%, transparent 72%);
}

.plans-aura,
.plans-grid-surface {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.plans-aura {
  z-index: -2;
  background:
    radial-gradient(ellipse at 50% 52%, rgba(23, 59, 255, 0.28), transparent 36%),
    radial-gradient(ellipse at 78% 8%, rgba(255, 255, 255, 0.055), transparent 28%);
  opacity: 0.9;
}

.plans-grid-surface {
  z-index: -2;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.046) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 86px 86px;
  mask-image: radial-gradient(ellipse at 48% 34%, #000 0%, rgba(0, 0, 0, 0.78) 42%, transparent 78%);
  opacity: 0.74;
}

.pricing-sparkles {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  opacity: 0.36;
  pointer-events: none;
  mask-image: radial-gradient(circle at center, #000 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(circle at center, #000 0%, transparent 70%);
}

.pricing-sparkles span {
  position: absolute;
  width: 2px;
  height: 2px;
  border-radius: 999px;
  background: rgba(170, 205, 255, 0.9);
  box-shadow: 0 0 12px rgba(72, 132, 255, 0.8);
  animation: sparkleFloat 5s ease-in-out infinite;
}

.pricing-sparkles span.is-paused,
.badge-gem.is-paused,
.badge-gem.is-paused::after,
.pack-gem.is-paused {
  animation-play-state: paused;
}

.pricing-sparkles span:nth-child(1) { left: 11%; top: 34%; animation-delay: 0.2s; }
.pricing-sparkles span:nth-child(2) { left: 18%; top: 58%; animation-delay: 1.7s; }
.pricing-sparkles span:nth-child(3) { left: 24%; top: 44%; animation-delay: 3.1s; }
.pricing-sparkles span:nth-child(4) { left: 31%; top: 68%; animation-delay: 0.9s; }
.pricing-sparkles span:nth-child(5) { left: 38%; top: 36%; animation-delay: 2.4s; }
.pricing-sparkles span:nth-child(6) { left: 43%; top: 61%; animation-delay: 4.2s; }
.pricing-sparkles span:nth-child(7) { left: 48%; top: 28%; animation-delay: 1.1s; }
.pricing-sparkles span:nth-child(8) { left: 52%; top: 55%; animation-delay: 2.9s; }
.pricing-sparkles span:nth-child(9) { left: 57%; top: 39%; animation-delay: 0.4s; }
.pricing-sparkles span:nth-child(10) { left: 61%; top: 72%; animation-delay: 3.6s; }
.pricing-sparkles span:nth-child(11) { left: 66%; top: 31%; animation-delay: 1.9s; }
.pricing-sparkles span:nth-child(12) { left: 71%; top: 51%; animation-delay: 4.6s; }
.pricing-sparkles span:nth-child(13) { left: 76%; top: 66%; animation-delay: 0.7s; }
.pricing-sparkles span:nth-child(14) { left: 82%; top: 42%; animation-delay: 2.2s; }
.pricing-sparkles span:nth-child(15) { left: 87%; top: 59%; animation-delay: 3.8s; }
.pricing-sparkles span:nth-child(16) { left: 35%; top: 81%; animation-delay: 1.4s; }
.pricing-sparkles span:nth-child(17) { left: 54%; top: 82%; animation-delay: 2.7s; }
.pricing-sparkles span:nth-child(18) { left: 69%; top: 18%; animation-delay: 4.9s; }

.pricing-section:not(.is-visible) .reveal-item {
  opacity: 0;
  transform: translateY(24px);
  filter: blur(10px);
}

.pricing-section .reveal-item {
  will-change: opacity, transform, filter;
}

.pricing-section.is-visible .plans-heading .reveal-item,
.pricing-section.is-visible .trust-row {
  animation: pricingReveal 680ms cubic-bezier(0.22, 1, 0.36, 1) backwards;
}

.pricing-section.is-visible .plans-heading .reveal-item:nth-child(1) {
  animation-delay: 0ms;
}

.pricing-section.is-visible .plans-heading .reveal-item:nth-child(2) {
  animation-delay: 90ms;
}

.pricing-section.is-visible .plans-heading .reveal-item:nth-child(3) {
  animation-delay: 160ms;
}

.pricing-section.is-visible .pricing-grid .price-card:nth-child(1) {
  animation: pricingReveal 680ms cubic-bezier(0.22, 1, 0.36, 1) 220ms backwards;
}

.pricing-section.is-visible .pricing-grid .price-card:nth-child(2) {
  animation: pricingReveal 680ms cubic-bezier(0.22, 1, 0.36, 1) 320ms backwards;
}

.pricing-section.is-visible .pricing-grid .price-card:nth-child(3) {
  animation: pricingReveal 680ms cubic-bezier(0.22, 1, 0.36, 1) 420ms backwards;
}

.pricing-section.is-visible .pricing-grid .price-card:nth-child(4) {
  animation: pricingReveal 680ms cubic-bezier(0.22, 1, 0.36, 1) 520ms backwards;
}

.pricing-section.is-visible .trust-row {
  animation-delay: 620ms;
}

.plans-heading {
  position: relative;
  z-index: 3;
  display: block;
  max-width: 960px;
  margin-bottom: clamp(34px, 4.4vw, 52px);
}

.plans-heading-copy {
  max-width: 850px;
}

.plans-heading .section-title {
  max-width: 850px;
  font-size: clamp(42px, 4.8vw, 68px);
  line-height: 0.95;
}

.plans-note {
  max-width: 720px;
  margin: 22px 0 0;
  color: #d0d3dc;
  font-size: 18px;
  line-height: 1.65;
}

.billing-switch {
  justify-self: end;
  position: relative;
  display: inline-grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  padding: 5px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(14, 16, 30, 0.78);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(18px);
}

.billing-switch button {
  position: relative;
  min-height: 40px;
  border: 0;
  border-radius: 999px;
  padding: 0 15px;
  background: transparent;
  color: var(--muted);
  font-weight: 900;
}

.billing-switch button.is-active {
  background: #fff;
  color: #050505;
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.1);
}

.pricing-grid {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  width: min(calc(100% - 40px), 1200px);
  margin-inline: auto;
  padding-top: 28px;
  overflow: visible;
}

.pricing-grid-wrap::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 56%;
  z-index: -1;
  width: min(760px, 82vw);
  height: 240px;
  transform: translate(-50%, -50%);
  background:
    radial-gradient(ellipse at center,
      rgba(37, 99, 255, 0.24) 0%,
      rgba(37, 99, 255, 0.11) 38%,
      transparent 72%);
  filter: blur(48px);
  pointer-events: none;
}

.price-card {
  position: relative;
  display: grid;
  grid-template-rows:
    34px
    78px
    48px
    78px
    78px
    38px
    24px
    1fr
    54px;
  row-gap: 14px;
  min-height: 760px;
  padding: 30px 28px 26px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 10px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.022)),
    rgba(9, 10, 13, 0.9);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 22px 70px rgba(0, 0, 0, 0.26);
  overflow: hidden;
  backdrop-filter: blur(18px);
  transition: border-color 220ms ease, transform 220ms ease, box-shadow 220ms ease;
}

.price-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(420px circle at 50% 0%, rgba(255, 255, 255, 0.08), transparent 58%),
    linear-gradient(90deg, transparent, rgba(23, 59, 255, 0.08), transparent);
  opacity: 0;
  transition: opacity 220ms ease;
}

.price-card:hover {
  border-color: rgba(255, 255, 255, 0.32);
  transform: translateY(-4px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 30px 90px rgba(0, 0, 0, 0.34);
}

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

.price-card.featured {
  overflow: visible;
  border-color: rgba(47, 87, 255, 0.95);
  background:
    linear-gradient(180deg, rgba(23, 59, 255, 0.28), rgba(12, 16, 42, 0.94) 46%, rgba(255, 255, 255, 0.05)),
    rgba(10, 13, 32, 0.96);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 0 0 1px rgba(70, 120, 255, 0.75),
    0 0 48px rgba(49, 80, 245, 0.28),
    0 24px 90px rgba(0, 0, 0, 0.35);
}

.price-card.featured:hover {
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.13),
    0 0 0 1px rgba(110, 155, 255, 0.9),
    0 0 64px rgba(49, 80, 245, 0.38),
    0 28px 100px rgba(0, 0, 0, 0.42);
}

.pack-meta {
  grid-row: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  min-height: 28px;
  color: rgba(247, 247, 242, 0.72);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.pack-meta > span:last-child {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  padding: 0 9px;
  background: rgba(255, 255, 255, 0.055);
  color: rgba(247, 247, 242, 0.82);
}

.price-card.featured .pack-meta > span:last-child {
  border-color: rgba(90, 119, 255, 0.78);
  background: rgba(23, 59, 255, 0.24);
  color: #fff;
}

.featured-badge {
  position: absolute;
  top: -17px;
  left: 50%;
  z-index: 10;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  font-family: "Geist", "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 12px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.03em;
  white-space: nowrap;
  color: #ffffff;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.07)),
    rgba(15, 25, 58, 0.52);
  border: 1px solid rgba(90, 119, 255, 0.82);
  box-shadow:
    0 0 24px rgba(45, 91, 255, 0.42),
    0 8px 24px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transform: translateX(-50%);
  animation: badgeEnter 640ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease,
    background 180ms ease;
}

.featured-badge::before {
  content: "";
  position: absolute;
  inset: 1px;
  z-index: -1;
  border-radius: inherit;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.16), transparent);
  opacity: 0.48;
  pointer-events: none;
}

.badge-gem {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 15px;
  height: 15px;
  color: #aeeeff;
  filter:
    drop-shadow(0 0 8px rgba(88, 166, 255, 0.78))
    drop-shadow(0 0 18px rgba(45, 91, 255, 0.34));
  animation: gemGlow 2.8s ease-in-out infinite;
}

.badge-gem::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 999px;
  background: linear-gradient(115deg, transparent 22%, rgba(255, 255, 255, 0.82) 47%, transparent 66%);
  opacity: 0;
  transform: translateX(-46%) scale(0.7);
  animation: gemShimmer 3.4s ease-in-out infinite;
  mix-blend-mode: screen;
  pointer-events: none;
}

.badge-gem img {
  display: block;
  width: 14px;
  height: 14px;
  object-fit: contain;
}

.badge-gem picture {
  display: block;
  width: 14px;
  height: 14px;
}

.price-card.featured:hover .featured-badge,
.featured-badge:hover {
  border-color: rgba(172, 214, 255, 0.94);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0.09)),
    rgba(18, 32, 70, 0.62);
  box-shadow:
    0 0 32px rgba(58, 121, 255, 0.54),
    0 10px 30px rgba(0, 0, 0, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
  transform: translate(-50%, -1px);
}

.price-card.featured:hover .badge-gem,
.featured-badge:hover .badge-gem {
  filter:
    drop-shadow(0 0 10px rgba(145, 221, 255, 0.94))
    drop-shadow(0 0 24px rgba(63, 111, 255, 0.54));
}

@keyframes badgeEnter {
  from {
    opacity: 0;
    transform: translate(-50%, 4px) scale(0.96);
  }

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

@keyframes gemGlow {
  0%,
  100% {
    filter:
      drop-shadow(0 0 7px rgba(98, 180, 255, 0.56))
      drop-shadow(0 0 14px rgba(45, 91, 255, 0.26));
  }

  50% {
    filter:
      drop-shadow(0 0 11px rgba(179, 239, 255, 0.92))
      drop-shadow(0 0 22px rgba(68, 124, 255, 0.5));
  }
}

@keyframes gemShimmer {
  0%,
  58%,
  100% {
    opacity: 0;
    transform: translateX(-46%) scale(0.7);
  }

  67% {
    opacity: 0.42;
  }

  76% {
    opacity: 0;
    transform: translateX(48%) scale(0.7);
  }
}

@keyframes pricingReveal {
  from {
    opacity: 0;
    transform: translateY(24px);
    filter: blur(10px);
  }

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

@keyframes sparkleFloat {
  0%,
  100% {
    opacity: 0.2;
    transform: translateY(0) scale(0.8);
  }

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

.gem-icon-wrap {
  grid-row: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 78px;
}

.gem-picture {
  display: block;
  width: 58px;
  height: 58px;
}

.pack-gem {
  display: block;
  width: 58px;
  height: 58px;
  margin: 0;
  object-fit: contain;
  filter: drop-shadow(0 14px 24px rgba(0, 0, 0, 0.35));
}

.price-card.featured .pack-gem {
  filter:
    drop-shadow(0 14px 24px rgba(0, 0, 0, 0.35))
    drop-shadow(0 0 20px rgba(45, 135, 255, 0.32));
}

.price-card h3 {
  grid-row: 3;
  align-self: end;
  margin: 0;
  color: #fff;
  font-size: clamp(26px, 2.05vw, 33px);
  line-height: 1;
}

.card-description {
  grid-row: 4;
  margin: 0;
  color: #d0d3dc;
  max-width: 42ch;
  font-size: 15px;
  line-height: 1.55;
  min-height: 66px;
}

.price-row {
  grid-row: 5;
  display: flex;
  align-items: baseline;
  gap: 12px;
  min-height: 70px;
  margin: 0;
}

.price-current {
  color: #fff;
  font-size: clamp(46px, 4vw, 56px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.055em;
  white-space: nowrap;
}

.price-before {
  color: #8d929f;
  font-size: 18px;
  font-weight: 800;
  line-height: 1;
  text-decoration: line-through;
  text-decoration-thickness: 2px;
  text-decoration-color: rgba(255, 255, 255, 0.64);
  opacity: 0.75;
}

.price-before.placeholder {
  visibility: hidden;
}

.price-per-review {
  grid-row: 6;
  align-self: center;
  width: fit-content;
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  padding: 0 12px;
  background: rgba(255, 255, 255, 0.07);
  color: #e8ebf5;
  font-size: 13px;
  font-weight: 800;
}

.price-card.featured .price-per-review {
  border-color: rgba(120, 160, 255, 0.52);
  background: rgba(45, 91, 255, 0.22);
  color: #ffffff;
}

.features-title {
  grid-row: 7;
  align-self: end;
  color: #f4f6ff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1;
  text-transform: uppercase;
  opacity: 0.9;
}

.card-features {
  grid-row: 8;
  display: grid;
  gap: 11px;
  align-content: start;
  margin: 0;
  padding: 0;
  list-style: none;
}

.card-features li {
  position: relative;
  display: grid;
  grid-template-columns: 18px 1fr;
  align-items: start;
  gap: 10px;
  color: #d7d9e4;
  font-size: 14px;
  line-height: 1.35;
}

.card-features li::before {
  content: "✓";
  width: 18px;
  height: 18px;
  border: 1px solid rgba(91, 141, 255, 0.45);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
  background: rgba(37, 99, 255, 0.22);
  color: #ffffff;
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
  box-shadow: 0 0 12px rgba(45, 91, 255, 0.18);
}

.price-card.featured .card-features li::before {
  border-color: rgba(143, 180, 255, 0.6);
  background: rgba(77, 132, 255, 0.32);
  box-shadow: 0 0 14px rgba(77, 132, 255, 0.28);
}

.price-card .button {
  grid-row: 9;
  position: relative;
  align-self: end;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 48px;
  min-height: 48px;
  margin-top: 0;
  border: 1px solid rgba(45, 91, 255, 0.7);
  border-radius: 999px;
  background: rgba(45, 91, 255, 0.08);
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  box-shadow: none;
  transform: translateY(0) !important;
  transition: background 200ms ease, border-color 200ms ease, box-shadow 220ms ease, color 200ms ease;
}

.price-card .button::before,
.price-card .button::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 76%;
  height: 1px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(55, 92, 255, 0.9), transparent);
  opacity: 0;
  transform: translateX(-50%);
  transition: opacity 360ms ease;
}

.price-card .button::before {
  top: 0;
}

.price-card .button::after {
  bottom: -1px;
}

.price-card .button:hover,
.price-card .button:focus-visible {
  background: rgba(45, 91, 255, 0.18);
  border-color: #2d5bff;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 0 34px rgba(23, 59, 255, 0.18);
  transform: translateY(-1px) !important;
  outline: none;
}

.price-card .button:hover::before,
.price-card .button:hover::after,
.price-card .button:focus-visible::before,
.price-card .button:focus-visible::after {
  opacity: 1;
}

.price-card .button:focus-visible {
  outline: 2px solid rgba(93, 120, 255, 0.82);
  outline-offset: 3px;
}

.price-card .button-primary {
  border-color: transparent;
  background: var(--blue);
  box-shadow: 0 18px 58px rgba(23, 59, 255, 0.34);
}

.price-card .button-primary:hover,
.price-card .button-primary:focus-visible {
  border-color: #5d78ff;
  background: #2548ff;
  box-shadow: 0 18px 58px rgba(23, 59, 255, 0.42);
  transform: translateY(0) !important;
}

.trust-row {
  position: relative;
  z-index: 3;
  width: min(calc(100% - 40px), 1200px);
  margin-top: 32px;
  border: 0;
  border-radius: 0;
  padding: 0 18px;
  background: transparent;
  color: #b9bdc9;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.5;
  text-align: center;
}

.results-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1fr);
  gap: clamp(32px, 7vw, 90px);
  align-items: start;
}

.result-stack {
  display: grid;
  border-top: 1px solid var(--line);
}

.result-stack article {
  display: grid;
  grid-template-columns: 0.75fr 0.55fr 1fr;
  gap: 20px;
  align-items: center;
  min-height: 150px;
  border-bottom: 1px solid var(--line);
}

.result-stack strong {
  font-size: clamp(42px, 5vw, 76px);
  line-height: 0.9;
}

.result-stack p {
  margin: 0;
  color: var(--muted);
}

.testimonials-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding-block: clamp(104px, 9vw, 148px);
  background:
    radial-gradient(circle at 50% 48%, rgba(37, 99, 255, 0.14), transparent 38%),
    linear-gradient(90deg, rgba(3, 3, 3, 0.98), rgba(7, 10, 24, 0.92) 56%, rgba(3, 3, 3, 0.98));
}

.testimonials-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(to right, rgba(255, 255, 255, 0.038) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 78px 78px;
  opacity: 0.32;
  mask-image: radial-gradient(ellipse at 50% 44%, #000 0%, rgba(0, 0, 0, 0.72) 42%, transparent 78%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 44%, #000 0%, rgba(0, 0, 0, 0.72) 42%, transparent 78%);
  pointer-events: none;
}

.testimonials-section::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 56%;
  z-index: -1;
  width: min(980px, 84vw);
  height: 420px;
  transform: translate(-50%, -50%);
  background:
    radial-gradient(circle at center, rgba(37, 99, 255, 0.26), rgba(37, 99, 255, 0.09) 42%, transparent 72%);
  filter: blur(62px);
  opacity: 0.78;
  pointer-events: none;
}

.testimonials-shell {
  width: min(100%, 1440px);
}

.testimonials-header {
  max-width: 910px;
  margin: 0 auto clamp(38px, 5vw, 62px);
  text-align: center;
}

.testimonials-header .eyebrow {
  justify-content: center;
}

.testimonials-header .section-title {
  margin-inline: auto;
  max-width: 920px;
  font-size: clamp(42px, 5.8vw, 82px);
}

.testimonials-header .section-copy {
  max-width: 760px;
  margin: 22px auto 0;
  color: #c8ccd8;
}

.testimonial-marquee {
  position: relative;
  margin-inline: calc((100vw - min(100vw, 1440px)) / -2);
}

.testimonial-viewport {
  position: relative;
  overflow: hidden;
  padding: 8px 0 18px;
  mask-image: linear-gradient(to right, transparent 0%, #000 12%, #000 88%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 12%, #000 88%, transparent 100%);
}

.testimonial-track {
  --testimonial-gap: 22px;
  --testimonial-half-gap: 11px;
  display: flex;
  align-items: stretch;
  width: max-content;
  gap: var(--testimonial-gap);
  animation: testimonialMarquee 32s linear infinite;
  will-change: transform;
}

.testimonial-track.is-paused {
  animation-play-state: paused;
}

body.is-page-hidden *,
body.is-page-hidden *::before,
body.is-page-hidden *::after {
  animation-play-state: paused !important;
}

.testimonial-group {
  display: flex;
  align-items: stretch;
  gap: var(--testimonial-gap);
}

.testimonial-card {
  position: relative;
  width: clamp(348px, 29vw, 408px);
  min-height: 372px;
  display: grid;
  grid-template-rows: auto 1fr auto;
  align-content: stretch;
  border: 1px solid rgba(132, 162, 220, 0.18);
  border-radius: 24px;
  padding: 28px;
  background:
    radial-gradient(circle at 18% 0%, rgba(66, 127, 255, 0.18), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.032) 48%, rgba(57, 93, 180, 0.05)),
    rgba(8, 11, 24, 0.72);
  box-shadow:
    0 22px 70px rgba(0, 0, 0, 0.34),
    0 0 34px rgba(37, 99, 255, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px) saturate(155%);
  -webkit-backdrop-filter: blur(20px) saturate(155%);
  overflow: hidden;
  transition:
    border-color 220ms ease,
    box-shadow 220ms ease,
    transform 220ms ease,
    background 220ms ease;
}

.testimonial-card::before {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(220, 232, 255, 0.42), transparent);
  opacity: 0.46;
  pointer-events: none;
}

.testimonial-card::after {
  content: "";
  position: absolute;
  inset: auto 28px 92px 28px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(125, 165, 255, 0.26), transparent);
  pointer-events: none;
}

.testimonial-card:hover {
  border-color: rgba(117, 164, 255, 0.54);
  background:
    radial-gradient(circle at 50% 0%, rgba(58, 120, 255, 0.2), transparent 44%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.105), rgba(255, 255, 255, 0.036) 48%, rgba(57, 93, 180, 0.07)),
    rgba(8, 11, 24, 0.78);
  box-shadow:
    0 26px 86px rgba(0, 0, 0, 0.46),
    0 0 68px rgba(37, 99, 255, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.13);
  transform: translateY(-4px);
}

.testimonial-mark {
  position: absolute;
  top: 56px;
  right: 24px;
  color: rgba(77, 132, 255, 0.12);
  font-size: 88px;
  font-weight: 900;
  line-height: 0.75;
  pointer-events: none;
}

.testimonial-tag {
  position: relative;
  z-index: 1;
  width: fit-content;
  min-height: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  border-radius: 999px;
  color: #e3ebff;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(37, 99, 255, 0.12)),
    rgba(37, 99, 255, 0.08);
  border: 1px solid rgba(138, 176, 255, 0.26);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.13),
    0 0 20px rgba(37, 99, 255, 0.08);
}

.testimonial-quote {
  position: relative;
  z-index: 1;
  max-width: 100%;
  min-height: 168px;
  margin: 20px 0 0;
  color: #f1f4ff;
  font-size: 16px;
  font-weight: 640;
  line-height: 1.62;
  letter-spacing: -0.01em;
}

.testimonial-footer {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 66px;
  margin-top: 26px;
}

.testimonial-person {
  display: flex;
  align-items: center;
  min-width: 0;
  gap: 12px;
}

.testimonial-brand {
  display: grid;
  place-items: center;
  border: 1px solid rgba(125, 165, 255, 0.22);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.035)),
    rgba(37, 99, 255, 0.1);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 0 28px rgba(37, 99, 255, 0.14);
}

.testimonial-avatar-wrap {
  display: block;
  width: 54px;
  height: 54px;
  flex: 0 0 54px;
  border-radius: 999px;
}

.testimonial-avatar {
  display: block;
  width: 54px;
  height: 54px;
  flex: none;
  border-radius: 999px;
  object-fit: cover;
  border: 1px solid rgba(139, 180, 255, 0.6);
  background: #0b1020;
  box-shadow:
    0 0 0 4px rgba(37, 99, 255, 0.1),
    0 0 32px rgba(37, 99, 255, 0.24),
    0 12px 28px rgba(0, 0, 0, 0.3);
}

.testimonial-person h3 {
  margin: 0;
  color: #fff;
  font-size: 15.5px;
  font-weight: 850;
  letter-spacing: -0.015em;
}

.testimonial-person p {
  margin: 5px 0 0;
  color: #aeb7ca;
  font-size: 13px;
  font-weight: 720;
}

.testimonial-brand {
  width: 48px;
  height: 34px;
  flex: 0 0 48px;
  border-radius: 999px;
  color: rgba(232, 239, 255, 0.9);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.final-cta {
  position: relative;
  min-height: 760px;
  display: grid;
  align-items: center;
  padding: 132px 0;
  overflow: hidden;
}

.final-cta::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    radial-gradient(ellipse at 84% 22%, rgba(23, 59, 255, 0.28), transparent 34%),
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.032) 1px, transparent 1px);
  background-size: auto, 84px 84px, 84px 84px;
}

.cta-inner {
  position: relative;
  z-index: 1;
  max-width: 980px;
}

.cta-inner h2 {
  margin: 0;
  font-size: clamp(44px, 7vw, 102px);
  line-height: 0.92;
}

.cta-inner > p:not(.eyebrow) {
  max-width: 700px;
  margin: 24px 0 0;
  color: #d7d7d3;
  font-size: 20px;
}

.lead-form {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr)) auto;
  gap: 10px;
  width: min(100%, 1120px);
  margin-top: 44px;
  padding: 10px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: rgba(3, 3, 3, 0.72);
  backdrop-filter: blur(18px);
}

.lead-form label {
  display: grid;
  gap: 6px;
}

.lead-form label span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
}

.lead-form input {
  width: 100%;
  min-height: 50px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.055);
  color: var(--white);
  padding: 0 13px;
  outline: none;
}

.lead-form input:focus {
  border-color: var(--blue);
}

.lead-form .button {
  align-self: end;
  min-width: 190px;
  border-radius: 7px;
}

.form-status {
  grid-column: 1 / -1;
  min-height: 20px;
  margin: 0;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
}

.site-footer {
  padding: 44px 0;
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 34px;
  align-items: center;
}

.footer-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.footer-links {
  display: flex;
  gap: 18px;
}

.footer-links a {
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.footer-links a:hover {
  color: var(--white);
}

.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 2200;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 13px;
  width: 56px;
  height: 56px;
  padding: 0 16px;
  overflow: hidden;
  border: 1px solid rgba(58, 232, 146, 0.28);
  border-radius: 999px;
  color: #ffffff;
  text-decoration: none;
  background:
    radial-gradient(circle at 28px 16px, rgba(37, 211, 102, 0.18), transparent 42px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.105), rgba(255, 255, 255, 0.035)),
    rgba(6, 10, 16, 0.78);
  box-shadow:
    0 18px 50px rgba(0, 0, 0, 0.36),
    0 0 34px rgba(37, 211, 102, 0.15),
    0 0 46px rgba(23, 59, 255, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.13);
  backdrop-filter: blur(18px) saturate(150%);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
  transform: translate3d(0, 0, 0);
  transition:
    width 420ms cubic-bezier(0.22, 1, 0.36, 1),
    padding 420ms cubic-bezier(0.22, 1, 0.36, 1),
    border-color 260ms ease,
    box-shadow 260ms ease,
    background 260ms ease,
    transform 260ms ease;
}

.whatsapp-float,
.whatsapp-float:hover,
.whatsapp-float:focus,
.whatsapp-float:active,
.whatsapp-float *,
.whatsapp-float *::before,
.whatsapp-float *::after {
  text-decoration: none !important;
  text-decoration-line: none !important;
  -webkit-text-decoration: none !important;
}

.whatsapp-float--opening,
.whatsapp-float--open,
.whatsapp-float--closing {
  width: 242px;
  padding: 0 20px 0 17px;
  border-color: rgba(58, 232, 146, 0.52);
  background:
    radial-gradient(circle at 36px 16px, rgba(37, 211, 102, 0.24), transparent 54px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.04)),
    rgba(6, 10, 16, 0.84);
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.42),
    0 0 46px rgba(37, 211, 102, 0.22),
    0 0 56px rgba(23, 59, 255, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.16);
  transform: translate3d(0, -2px, 0);
}

.whatsapp-float:active {
  transform: translate3d(0, 0, 0) scale(0.98);
}

.whatsapp-float:focus-visible {
  outline: 2px solid rgba(37, 211, 102, 0.72);
  outline-offset: 4px;
}

.whatsapp-float__icon {
  position: relative;
  z-index: 2;
  width: 23px;
  height: 23px;
  flex: 0 0 auto;
  color: #25d366;
  filter: drop-shadow(0 0 10px rgba(37, 211, 102, 0.38));
  transition: color 240ms ease, filter 240ms ease, transform 240ms ease;
}

.whatsapp-float--opening .whatsapp-float__icon,
.whatsapp-float--open .whatsapp-float__icon {
  color: #43f08f;
  filter: drop-shadow(0 0 14px rgba(37, 211, 102, 0.5));
  transform: scale(1.02);
}

.whatsapp-float__icon svg {
  display: block;
  width: 100%;
  height: 100%;
}

.whatsapp-float__text-wrap {
  position: relative;
  z-index: 1;
  width: 0;
  height: 26px;
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  overflow: hidden;
  opacity: 0;
  transition:
    width 420ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 180ms ease;
}

.whatsapp-float--opening .whatsapp-float__text-wrap,
.whatsapp-float--open .whatsapp-float__text-wrap,
.whatsapp-float--closing .whatsapp-float__text-wrap {
  width: 164px;
  opacity: 1;
}

.whatsapp-float__text-effect {
  position: absolute;
  inset: 2px -12px 2px -8px;
  pointer-events: none;
  opacity: 0;
  background:
    radial-gradient(circle at 12% 50%, rgba(67, 240, 143, 0.8) 0 1px, transparent 2px),
    radial-gradient(circle at 32% 42%, rgba(255, 255, 255, 0.72) 0 1px, transparent 2px),
    radial-gradient(circle at 54% 58%, rgba(67, 240, 143, 0.64) 0 1px, transparent 2px),
    radial-gradient(circle at 74% 38%, rgba(160, 206, 255, 0.72) 0 1px, transparent 2px);
  filter: blur(0.4px);
  transform: translateX(-12px) scaleX(0.68);
}

.whatsapp-float--opening .whatsapp-float__text-effect {
  animation: whatsappTextSpark 360ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.whatsapp-float--closing .whatsapp-float__text-effect {
  animation: whatsappTextDissolve 260ms ease both;
}

.whatsapp-float__text-real {
  position: relative;
  display: inline-flex;
  align-items: center;
  color: #ffffff;
  font-family: "Geist", "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 14px;
  font-weight: 820;
  letter-spacing: -0.02em;
  line-height: 1.1;
  white-space: nowrap;
  opacity: 0;
  filter: blur(8px);
  transform: translateX(8px);
  transition:
    opacity 240ms ease,
    filter 300ms ease,
    transform 340ms cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-decoration: none !important;
  text-decoration-line: none !important;
  -webkit-text-decoration: none !important;
  border-bottom: 0 !important;
  box-shadow: none;
  background-image: none;
}

.whatsapp-float__text-real:hover,
.whatsapp-float__text-real:focus,
.whatsapp-float__text-real:active {
  text-decoration: none !important;
  text-decoration-line: none !important;
  -webkit-text-decoration: none !important;
  border-bottom: 0 !important;
  box-shadow: none;
  background-image: none;
}

.whatsapp-float--opening .whatsapp-float__text-real {
  opacity: 1;
  filter: blur(0);
  transform: translateX(0);
}

.whatsapp-float--open .whatsapp-float__text-real {
  opacity: 1;
  filter: blur(0);
  transform: translateX(0);
}

.whatsapp-float--closing .whatsapp-float__text-real {
  opacity: 0;
  filter: blur(6px);
  transform: translateX(5px);
}

.auth-page {
  min-height: 100svh;
  overflow-x: hidden;
}

.auth-is-leaving .auth-card {
  opacity: 0;
  filter: blur(8px);
  transform: translateY(14px) scale(0.985);
}

.auth-page .loader,
.auth-page .promo-bar {
  display: none;
}

.auth-page .site-header {
  --promo-height: 0px;
  height: 76px;
}

.auth-page .liquid-nav {
  top: 16px;
  border-radius: 999px;
  border-color: rgba(125, 165, 255, 0.2);
  background:
    radial-gradient(circle at 50% 0%, rgba(80, 130, 255, 0.14), transparent 42%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04)),
    rgba(8, 10, 22, 0.58);
  box-shadow:
    0 0 0 1px rgba(80, 120, 255, 0.08),
    0 18px 60px rgba(0, 0, 0, 0.34),
    0 0 64px rgba(37, 99, 255, 0.14);
}

.auth-shell {
  position: relative;
  min-height: 100svh;
  padding: 118px clamp(20px, 5vw, 56px) 42px;
  overflow: hidden;
}

.auth-stage {
  position: relative;
  z-index: 1;
  width: min(1120px, 100%);
  min-height: calc(100svh - 160px);
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(390px, 460px);
  align-items: center;
  gap: clamp(32px, 7vw, 96px);
  margin: 0 auto;
}

.auth-background {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 65% 38%, rgba(37, 99, 255, 0.22), transparent 34%),
    radial-gradient(circle at 18% 70%, rgba(37, 211, 102, 0.08), transparent 28%),
    linear-gradient(to right, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    #030303;
  background-size: auto, auto, 72px 72px, 72px 72px, auto;
  transform: translateY(var(--auth-bg-shift, 0px));
}

.auth-background::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(126, 165, 255, 0.16) 1px, transparent 1.4px);
  background-size: 24px 24px;
  mask-image: radial-gradient(circle at 60% 45%, black, transparent 58%);
  opacity: 0.42;
  animation: authLightBloom 900ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.auth-background::after {
  content: "";
  position: absolute;
  inset: -18%;
  background:
    radial-gradient(circle at 22% 22%, rgba(37, 99, 255, 0.14), transparent 16%),
    radial-gradient(circle at 82% 32%, rgba(117, 164, 255, 0.1), transparent 18%),
    linear-gradient(120deg, transparent 38%, rgba(255, 255, 255, 0.06), transparent 48%);
  filter: blur(18px);
  opacity: 0.48;
  transform: translateY(var(--auth-bg-y, 0px));
  animation: authLightBloom 1200ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.auth-copy {
  position: relative;
  z-index: 1;
  opacity: 0;
  filter: blur(8px);
  transform: translateY(18px);
  animation: authPanelIn 720ms cubic-bezier(0.22, 1, 0.36, 1) 80ms forwards;
}

.auth-copy h1 {
  max-width: 680px;
  margin: 14px 0 0;
  color: #fff;
  font-size: clamp(54px, 7vw, 96px);
  font-weight: 880;
  letter-spacing: -0.075em;
  line-height: 0.92;
}

.auth-copy > p:not(.eyebrow) {
  max-width: 610px;
  margin: 24px 0 0;
  color: #c8ccd8;
  font-size: clamp(17px, 1.4vw, 21px);
  line-height: 1.55;
  letter-spacing: -0.02em;
}

.auth-console {
  width: min(100%, 440px);
  margin-top: 34px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 22px;
  background:
    radial-gradient(circle at 50% 0%, rgba(37, 99, 255, 0.18), transparent 46%),
    rgba(8, 10, 22, 0.58);
  backdrop-filter: blur(18px) saturate(150%);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
  box-shadow:
    0 24px 80px rgba(0, 0, 0, 0.38),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  overflow: hidden;
  transform: translateY(var(--auth-console-y, 0px));
  transition: transform 320ms cubic-bezier(0.22, 1, 0.36, 1), border-color 220ms ease, box-shadow 220ms ease;
}

.auth-console::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(125, 165, 255, 0.16), transparent);
  opacity: 0;
  animation: authScan 5.6s ease-in-out 1.2s infinite;
  pointer-events: none;
}

.auth-console:hover {
  border-color: rgba(125, 165, 255, 0.2);
  box-shadow:
    0 26px 84px rgba(0, 0, 0, 0.42),
    0 0 50px rgba(37, 99, 255, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.auth-console__top,
.auth-console__score,
.auth-console__grid {
  padding: 18px;
}

.auth-console__top {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: #aeb4c4;
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.auth-console__top strong {
  color: #43f08f;
}

.auth-console__score span {
  display: block;
  color: #aeb4c4;
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.auth-console__score strong {
  display: block;
  margin-top: 6px;
  color: #fff;
  font-size: 64px;
  letter-spacing: -0.06em;
  line-height: 0.9;
}

.auth-console__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding-top: 0;
}

.auth-console__grid span {
  min-height: 38px;
  display: flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 0 12px;
  color: #d0d3dc;
  background: rgba(255, 255, 255, 0.045);
  font-size: 12px;
  font-weight: 760;
  opacity: 0;
  animation: authChipIn 520ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.auth-console__grid span:nth-child(1) { animation-delay: 180ms; }
.auth-console__grid span:nth-child(2) { animation-delay: 240ms; }
.auth-console__grid span:nth-child(3) { animation-delay: 300ms; }
.auth-console__grid span:nth-child(4) { animation-delay: 360ms; }

@keyframes authPanelIn {
  to {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0) scale(1);
  }
}

.auth-card {
  position: relative;
  z-index: 1;
  width: min(100%, 460px);
  justify-self: end;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: clamp(24px, 4vw, 34px);
  background:
    radial-gradient(circle at 50% 0%, rgba(37, 99, 255, 0.16), transparent 42%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.025)),
    rgba(8, 10, 22, 0.68);
  backdrop-filter: blur(22px) saturate(150%);
  -webkit-backdrop-filter: blur(22px) saturate(150%);
  box-shadow:
    0 24px 90px rgba(0, 0, 0, 0.45),
    0 0 80px rgba(37, 99, 255, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  opacity: 0;
  filter: blur(8px);
  transform: translateY(calc(18px + var(--auth-card-y, 0px))) scale(0.985);
  animation: authPanelIn 640ms cubic-bezier(0.22, 1, 0.36, 1) 140ms forwards;
  transition:
    opacity 260ms ease,
    filter 260ms ease,
    transform 320ms cubic-bezier(0.22, 1, 0.36, 1);
}

.auth-ready .auth-card {
  animation: none;
  opacity: 1;
  filter: blur(0);
  transform: translateY(var(--auth-card-y, 0px)) scale(1);
}

.auth-ready.auth-is-leaving .auth-card {
  opacity: 0;
  filter: blur(8px);
  transform: translateY(14px) scale(0.985);
}

.auth-card::before {
  content: "";
  position: absolute;
  left: 24px;
  right: 24px;
  top: 9px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.38), transparent);
  pointer-events: none;
}

.auth-card__header h2 {
  margin: 8px 0 0;
  color: #fff;
  font-size: clamp(30px, 4vw, 42px);
  letter-spacing: -0.055em;
  line-height: 1;
}

.auth-card__header p:not(.eyebrow) {
  margin: 12px 0 0;
  color: #b9bdc9;
  font-size: 14px;
  line-height: 1.5;
}

.auth-google,
.auth-submit {
  width: 100%;
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 850;
  letter-spacing: -0.015em;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease,
    opacity 180ms ease;
}

.auth-socials {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.auth-social-button {
  position: relative;
  min-height: 56px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  padding: 0 20px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.035)),
    rgba(12, 16, 32, 0.72);
  color: rgba(255, 255, 255, 0.92);
  font-size: 14px;
  font-weight: 850;
  letter-spacing: -0.015em;
  text-align: center;
  text-decoration: none;
  overflow: hidden;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transition:
    transform 220ms cubic-bezier(0.22, 1, 0.36, 1),
    border-color 220ms ease,
    box-shadow 220ms ease,
    background 220ms ease;
}

.auth-social-button::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 20%, rgba(255, 255, 255, 0.16), transparent 80%);
  transform: translateX(-120%);
  transition: transform 650ms cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}

.auth-social-button:hover,
.auth-social-button:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(88, 132, 255, 0.38);
  background:
    radial-gradient(circle at 50% 0%, rgba(36, 91, 255, 0.12), transparent 42%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.095), rgba(255, 255, 255, 0.04)),
    rgba(12, 16, 32, 0.78);
  box-shadow:
    0 16px 40px rgba(0, 0, 0, 0.32),
    0 0 42px rgba(36, 91, 255, 0.16);
}

.auth-social-button:hover::before,
.auth-social-button:focus-visible::before {
  transform: translateX(120%);
}

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

.auth-social-button.is-pending {
  border-color: rgba(125, 165, 255, 0.42);
  box-shadow:
    0 12px 34px rgba(0, 0, 0, 0.28),
    0 0 34px rgba(36, 91, 255, 0.16);
}

.auth-social-button > span {
  position: relative;
  z-index: 1;
}

.auth-social-icon {
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.auth-social-icon svg,
.auth-social-icon img {
  width: 22px;
  height: 22px;
  display: block;
  object-fit: contain;
}

.auth-social-google .auth-social-icon {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 0 18px rgba(255, 255, 255, 0.08);
}

.auth-social-google .auth-social-icon svg,
.auth-social-google .auth-social-icon img {
  width: 18px;
  height: 18px;
}

.auth-social-facebook .auth-social-icon {
  width: 26px;
  height: 26px;
}

.auth-google {
  margin-top: 24px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  background: rgba(255, 255, 255, 0.055);
  color: #fff;
}

.auth-google span {
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: #fff;
  color: #050711;
  font-size: 12px;
  transition: transform 180ms ease;
}

.auth-google:hover {
  border-color: rgba(125, 165, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-1px);
}

.auth-google:hover span {
  transform: translateX(1px) scale(1.04);
}

.auth-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 18px 0;
  color: rgba(185, 189, 201, 0.68);
  font-size: 12px;
  font-weight: 760;
}

.auth-divider::before,
.auth-divider::after {
  content: "";
  height: 1px;
  flex: 1;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1));
}

.auth-divider::after {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.1), transparent);
}

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

.auth-field {
  display: grid;
  gap: 8px;
  opacity: 0;
  transform: translateY(10px);
  animation: authChipIn 520ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.auth-field:nth-of-type(1) { animation-delay: 180ms; }
.auth-field:nth-of-type(2) { animation-delay: 240ms; }
.auth-field:nth-of-type(3) { animation-delay: 300ms; }
.auth-field:nth-of-type(4) { animation-delay: 360ms; }
.auth-field:nth-of-type(5) { animation-delay: 420ms; }

.auth-field label,
.auth-label-row label {
  color: #f4f6ff;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: -0.01em;
  transition: color 180ms ease, transform 180ms ease, text-shadow 180ms ease;
}

.auth-field.is-focused label,
.auth-field.has-value label {
  color: #ffffff;
  text-shadow: 0 0 18px rgba(45, 91, 255, 0.18);
  transform: translateY(-1px);
}

.auth-field label span {
  color: #8f96aa;
  font-weight: 700;
}

.auth-label-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.auth-label-row a,
.auth-switch a {
  color: #7da5ff;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}

.auth-label-row a:hover,
.auth-switch a:hover {
  color: #fff;
}

.auth-field input:not([type="checkbox"]),
.auth-password-control {
  width: 100%;
  height: 50px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.055);
  color: #fff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.auth-field input:not([type="checkbox"]) {
  position: relative;
}

.auth-field input:not([type="checkbox"]) {
  padding: 0 16px;
  outline: none;
  font: inherit;
}

.auth-field input::placeholder {
  color: rgba(208, 211, 220, 0.46);
}

.auth-password-control {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  padding-right: 7px;
}

.auth-password-control::before,
.auth-field::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.auth-password-control::before {
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(125, 165, 255, 0.3), transparent);
  opacity: 0;
  transform: translateX(-110%);
}

.auth-password-control.is-revealing::before {
  opacity: 1;
  transform: translateX(110%);
  transition: transform 420ms cubic-bezier(0.22, 1, 0.36, 1), opacity 160ms ease;
}

.auth-password-control input {
  height: 48px !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.auth-password-control button {
  position: relative;
  min-width: 42px;
  height: 36px;
  border: 0;
  border-radius: 999px;
  color: #c8ccd8;
  background: rgba(255, 255, 255, 0.06);
  font-size: 12px;
  font-weight: 850;
}

.auth-password-control button svg {
  width: 19px;
  height: 19px;
  display: block;
  margin: 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.auth-password-control button .eye-closed {
  opacity: 0;
  stroke-dasharray: 24;
  stroke-dashoffset: 24;
  transition: opacity 180ms ease, stroke-dashoffset 260ms ease;
}

.auth-password-control button .eye-open {
  opacity: 1;
  transition: opacity 180ms ease, transform 260ms ease;
  transform-origin: center;
}

.auth-password-control button.is-visible .eye-closed {
  opacity: 1;
  stroke-dashoffset: 0;
}

.auth-password-control button.is-visible .eye-open {
  opacity: 0.22;
  transform: scale(0.86);
}

.auth-field:focus-within input:not([type="checkbox"]),
.auth-field:focus-within .auth-password-control {
  border-color: rgba(45, 91, 255, 0.78);
  background: rgba(255, 255, 255, 0.075);
  box-shadow:
    0 0 0 3px rgba(45, 91, 255, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.auth-field.is-typing input:not([type="checkbox"]),
.auth-field.is-typing .auth-password-control {
  animation: authFieldPulse 180ms ease;
}

.auth-field.is-invalid input:not([type="checkbox"]),
.auth-field.is-invalid .auth-password-control {
  border-color: rgba(255, 92, 122, 0.72);
  box-shadow: 0 0 0 3px rgba(255, 92, 122, 0.12);
  animation: authInvalidShake 240ms ease;
}

.auth-field.is-valid {
  position: relative;
}

.auth-field.is-valid::after {
  right: 15px;
  bottom: 36px;
  width: 7px;
  height: 12px;
  border-right: 2px solid #9fb5ff;
  border-bottom: 2px solid #9fb5ff;
  transform: rotate(42deg);
  filter: drop-shadow(0 0 8px rgba(45, 91, 255, 0.42));
}

.auth-error {
  min-height: 16px;
  margin: 0;
  color: #ff8ba0;
  font-size: 12px;
  font-weight: 720;
  line-height: 1.35;
}

.auth-check {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #c8ccd8;
  font-size: 13px;
  font-weight: 720;
  line-height: 1.45;
}

.auth-check input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.auth-check-box {
  position: relative;
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  margin-top: 0;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.045);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.auth-check-box::before,
.auth-check-box::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.auth-check-box::before {
  inset: -10px;
  border-radius: 999px;
  background: rgba(36, 91, 255, 0.22);
  opacity: 0;
  transform: scale(0.45);
}

.auth-check-box::after {
  left: 6px;
  top: 3px;
  width: 6px;
  height: 11px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  stroke-dashoffset: 18;
  opacity: 0;
  transform: rotate(42deg) scale(0.82);
  transition: opacity 160ms ease, transform 220ms cubic-bezier(0.22, 1, 0.36, 1);
}

.auth-check:hover .auth-check-box {
  border-color: rgba(125, 165, 255, 0.42);
}

.auth-check input:focus-visible + .auth-check-box {
  outline: 2px solid rgba(125, 165, 255, 0.9);
  outline-offset: 3px;
}

.auth-check input:checked + .auth-check-box {
  border-color: rgba(36, 91, 255, 0.78);
  background: linear-gradient(180deg, #2d5bff, #173bff);
  box-shadow: 0 0 24px rgba(36, 91, 255, 0.32);
  transform: scale(1.04);
}

.auth-check input:checked + .auth-check-box::before {
  animation: authCheckRipple 460ms ease-out;
}

.auth-check input:checked + .auth-check-box::after {
  opacity: 1;
  transform: rotate(42deg) scale(1);
}

.auth-status {
  min-height: 18px;
  margin: 0;
  color: #9fb5ff;
  font-size: 13px;
  font-weight: 760;
}

.auth-social-status {
  margin-top: 10px;
  text-align: center;
}

.auth-status.is-error {
  color: #ff8ba0;
}

.auth-status.is-success {
  color: #43f08f;
}

.auth-submit {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(45, 91, 255, 0.72);
  background: linear-gradient(180deg, #2d5bff, #173bff);
  color: #fff;
  box-shadow:
    0 16px 46px rgba(23, 59, 255, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.auth-submit::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 28%, rgba(255, 255, 255, 0.28), transparent 58%);
  transform: translateX(-120%);
  transition: transform 620ms cubic-bezier(0.22, 1, 0.36, 1);
}

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

.auth-submit:hover:not(:disabled)::before {
  transform: translateX(120%);
}

.auth-submit.is-armed {
  animation: authButtonArm 520ms cubic-bezier(0.22, 1, 0.36, 1);
}

.auth-submit:hover:not(:disabled) {
  transform: translateY(-1px);
  box-shadow:
    0 20px 56px rgba(23, 59, 255, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.auth-submit:active:not(:disabled) {
  transform: translateY(0) scale(0.99);
}

.auth-submit:disabled {
  cursor: not-allowed;
  opacity: 0.48;
}

.auth-submit i {
  width: 7px;
  height: 7px;
  display: none;
  border-radius: 999px;
  background: currentColor;
  animation: authPulse 760ms ease-in-out infinite;
}

.auth-submit.is-loading i {
  display: inline-block;
}

.auth-switch {
  margin: 20px 0 0;
  color: #b9bdc9;
  text-align: center;
  font-size: 14px;
  font-weight: 720;
}

.hover-glow::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(520px circle at var(--x, 50%) var(--y, 50%), rgba(23, 59, 255, 0.16), transparent 44%);
  opacity: 0;
  transition: opacity 180ms ease;
}

.hover-glow:hover::after {
  opacity: 1;
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 760ms ease, transform 760ms ease;
  will-change: opacity, transform;
}

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

.hero .reveal {
  opacity: 1;
  transform: translateY(0);
}

.magnetic {
  will-change: transform;
}

.split-line {
  display: inline-block;
  overflow: hidden;
  vertical-align: top;
}

.hero-title .split-line {
  display: block;
}

.split-word {
  display: inline-block;
  transform: translateY(100%);
  will-change: transform;
}

[data-split].is-split {
  opacity: 1;
}

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

@keyframes titleLift {
  from {
    opacity: 0;
    transform: translateY(0.34em);
  }

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

@keyframes rotatingWordIn {
  from {
    opacity: 0;
    filter: blur(6px);
    transform: translateY(105%);
  }

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

@keyframes rotatingWordOut {
  from {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
  }

  to {
    opacity: 0;
    filter: blur(6px);
    transform: translateY(-80%);
  }
}

@keyframes announcementSheen {
  0%,
  48% {
    transform: translateX(0);
  }

  72%,
  100% {
    transform: translateX(720%);
  }
}

@keyframes panelSweep {
  0%,
  58% {
    opacity: 0;
    transform: translateX(-120%);
  }

  68% {
    opacity: 1;
  }

  82%,
  100% {
    opacity: 0;
    transform: translateX(140%);
  }
}

@keyframes livePulse {
  to {
    box-shadow: 0 0 0 12px rgba(23, 59, 255, 0);
  }
}

@keyframes cellIdle {
  0%,
  100% {
    filter: brightness(1);
  }

  50% {
    filter: brightness(1.35);
  }
}

@keyframes loaderAutoExit {
  0%,
  58% {
    opacity: 1;
    visibility: visible;
  }

  100% {
    opacity: 0;
    visibility: hidden;
  }
}

@keyframes mobileNavIn {
  from {
    opacity: 0;
    transform: translateY(8px) scale(0.97);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Final polish: calmer motion system, clearer nav, and a shorter studio-grade preloader. */
.loader {
  inset: 0 0 auto;
  display: block;
  height: 3px;
  padding: 0;
  background: transparent;
  overflow: hidden;
  clip-path: none;
  transition: opacity 220ms ease, visibility 220ms ease;
  animation: loaderAutoExit 640ms ease 180ms forwards;
}

.loader-tags {
  display: none;
}

.loader-brand {
  display: none;
}

.loader-count {
  display: none;
}

.loader-line {
  inset: 0;
  height: 100%;
  background: rgba(255, 255, 255, 0.08);
}

/* The main .site-header styles are already defined above; these are intentionally left empty
   to avoid conflicting with the new unified navbar system. */

.hero {
  min-height: 100svh;
  padding-top: 150px;
}

.hero-inner {
  grid-template-columns: minmax(0, 0.86fr) minmax(360px, 0.52fr);
  gap: clamp(30px, 5.4vw, 76px);
  align-items: center;
}

.hero-title {
  max-width: 860px;
  font-size: clamp(58px, 7vw, 112px);
  line-height: 0.92;
}

.hero-title span {
  animation: none;
  opacity: 1;
  transform: none;
}

.hero-lead {
  max-width: 680px;
  font-size: clamp(17px, 1.45vw, 21px);
}

.hero-product {
  align-self: center;
}

.cursor-system,
.hover-preview,
.page-transition,
.liquid-canvas {
  display: none !important;
}

@media (max-width: 1024px) {
  .pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: min(calc(100% - 40px), 1040px);
  }
}

@media (max-width: 900px) {
  .metrics-panel {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .metric-card:nth-child(2)::after {
    display: none;
  }
}

@media (max-width: 1120px) {
  .auth-stage {
    grid-template-columns: 1fr;
    gap: 34px;
    min-height: auto;
  }

  .auth-copy {
    text-align: center;
  }

  .auth-copy h1,
  .auth-copy > p:not(.eyebrow),
  .auth-console {
    margin-left: auto;
    margin-right: auto;
  }

  .auth-card {
    justify-self: center;
  }

  .site-header {
    padding: 0 12px;
  }

  .liquid-navbar {
    height: 62px;
    max-width: 720px;
    padding: 0 10px 0 12px;
    border-radius: 0 0 18px 18px;
  }

  .site-header.is-scrolled {
    top: 44px;
  }

  .site-header.is-scrolled .liquid-navbar {
    height: 58px;
    max-width: min(calc(100vw - 24px), 720px);
    border-radius: 999px;
  }

  .liquid-navbar__content {
    grid-template-columns: auto 44px;
    justify-content: space-between;
  }

  .nav-toggle {
    display: block;
    justify-self: end;
  }

  .site-nav,
  .header-cta {
    display: none;
  }

  /* Hide the sliding pill indicator on mobile */
  .site-nav::before {
    display: none;
  }

  .site-header.is-open {
    transform: translateY(0) !important;
  }

  .site-header.is-open .liquid-navbar {
    height: auto;
    border-radius: 16px;
    border-color: rgba(255, 255, 255, 0.16);
    background:
      linear-gradient(180deg, rgba(23, 59, 255, 0.04) 0%, rgba(5,5,8,0.92) 100%),
      rgba(5, 5, 8, 0.95);
    box-shadow:
      0 24px 64px rgba(0, 0, 0, 0.5),
      0 4px 12px rgba(0, 0, 0, 0.3);
  }

  .site-header.is-open .liquid-navbar__content {
    grid-template-rows: auto auto auto;
  }

  .site-header.is-open .site-nav {
    grid-column: 1 / -1;
    display: grid;
    justify-self: stretch;
    grid-template-columns: 1fr;
    gap: 4px;
    padding: 8px;
    border-radius: 12px;
    border-color: rgba(255, 255, 255, 0.08);
    margin-top: 10px;
    background: rgba(255, 255, 255, 0.045);
  }

  .site-header.is-open .site-nav a {
    min-height: 48px;
    display: grid;
    place-items: center;
    border-radius: 10px;
    text-align: center;
    font-size: 14px;
    color: rgba(247, 247, 242, 0.65);
    transition: background 200ms ease, color 200ms ease, transform 200ms ease;
  }

  .site-header.is-open .site-nav a::after {
    display: none;
  }

  .site-header.is-open .site-nav a:hover {
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
  }

  .site-header.is-open .site-nav a.is-active {
    background: rgba(23, 59, 255, 0.15);
    color: var(--white);
    border: 1px solid rgba(23, 59, 255, 0.25);
  }

  /* Staggered entrance animation for mobile nav items */
  .site-header.is-open .site-nav a:nth-child(1) { animation: mobileNavIn 300ms cubic-bezier(0.22, 1, 0.36, 1) 50ms both; }
  .site-header.is-open .site-nav a:nth-child(2) { animation: mobileNavIn 300ms cubic-bezier(0.22, 1, 0.36, 1) 100ms both; }
  .site-header.is-open .site-nav a:nth-child(3) { animation: mobileNavIn 300ms cubic-bezier(0.22, 1, 0.36, 1) 150ms both; }
  .site-header.is-open .site-nav a:nth-child(4) { animation: mobileNavIn 300ms cubic-bezier(0.22, 1, 0.36, 1) 200ms both; }
  .site-header.is-open .site-nav a:nth-child(5) { animation: mobileNavIn 300ms cubic-bezier(0.22, 1, 0.36, 1) 250ms both; }

  .site-header.is-open .header-cta {
    grid-column: 1 / -1;
    display: flex;
    min-height: 48px;
    border-radius: 10px;
    animation: mobileNavIn 300ms cubic-bezier(0.22, 1, 0.36, 1) 300ms both;
  }

  .hero-inner,
  .split-heading,
  .method-layout,
  .proof-layout {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    gap: 30px;
    align-items: start;
  }

  .hero-product {
    width: 100%;
    max-width: 560px;
  }

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

  .board-panel {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .board-panel:last-child {
    border-bottom: 0;
  }

  .method-copy {
    position: static;
  }

  .proof-gallery {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 230px 230px;
  }

  .billing-switch {
    justify-self: start;
  }

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

  .lead-form .button {
    grid-column: 1 / -1;
  }
}

@media (max-width: 760px) {
  .auth-shell {
    padding: 96px 18px 30px;
  }

  .auth-page .site-header,
  .auth-page .site-header.is-scrolled {
    top: 0;
    padding: 0;
  }

  .auth-page .liquid-nav,
  .auth-page .site-header.is-scrolled .liquid-nav {
    top: 10px;
    width: calc(100% - 24px);
    height: 58px;
    border-radius: 999px;
  }

  .auth-copy {
    display: none;
  }

  .auth-card {
    width: 100%;
    padding: 24px 18px;
  }

  .auth-card__header h2 {
    font-size: 34px;
  }

  .section-inner {
    width: calc(100vw - 46px);
    max-width: 390px;
  }

  .announcement {
    justify-content: flex-start;
    overflow: hidden;
    white-space: nowrap;
  }

  .announcement span {
    max-width: 54vw;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .site-header {
    top: 34px;
    padding: 0 10px;
  }

  .site-header.is-scrolled {
    top: 44px;
  }

  .liquid-navbar {
    max-width: 430px;
    height: 60px;
  }

  .site-header.is-scrolled .liquid-navbar {
    height: 56px;
    max-width: calc(100vw - 20px);
  }

  .brand > span:last-child {
    display: none;
  }

  .brand-mark {
    width: 36px;
    height: 36px;
    font-size: 12px;
  }

  .hero {
    padding: 128px 0 30px;
  }

  .hero-grid {
    inset: 82px 10px 10px;
  }

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

  .hero-title {
    max-width: 100%;
    font-size: clamp(46px, 14vw, 72px);
    letter-spacing: -0.065em;
    line-height: 0.95;
    text-wrap: auto;
  }

  .rotating-word-shell {
    min-width: min(10.6ch, calc(100% + 0.36em));
    min-height: 1.24em;
    padding-inline: 0.18em;
    padding-bottom: 0.18em;
  }

  .rotating-word-mask {
    min-height: 1.18em;
    padding-inline: 0.18em;
    padding-bottom: 0.22em;
  }

  .rotating-word {
    line-height: 1.06;
    padding-inline: 0.12em;
    padding-bottom: 0.1em;
  }

  .rotating-word-underline {
    bottom: 0.04em;
    height: 0.05em;
    min-height: 3px;
  }

  .hero-lead {
    max-width: 96%;
    margin-top: 22px;
    font-size: 16px;
    line-height: 1.55;
  }

  .hero-copy {
    max-width: none;
  }

  .hero-product,
  .system-board,
  .metrics-section,
  .lead-form {
    max-width: 100%;
  }

  .hero-actions .button {
    width: 100%;
  }

  .metrics-section {
    width: calc(100vw - 46px);
    margin-top: 30px;
  }

  .section {
    padding: 92px 0;
  }

  .section-title {
    font-size: clamp(36px, 12vw, 56px);
  }

  .testimonials-section {
    padding-block: 92px;
  }

  .testimonials-header {
    margin-bottom: 34px;
    text-align: left;
  }

  .testimonials-header .eyebrow,
  .testimonials-header .section-title,
  .testimonials-header .section-copy {
    margin-inline: 0;
  }

  .testimonial-viewport {
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent 0%, #000 7%, #000 93%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 7%, #000 93%, transparent 100%);
  }

  .testimonial-track {
    --testimonial-gap: 16px;
    --testimonial-half-gap: 8px;
    animation-duration: 26s;
  }

  .testimonial-card {
    width: min(324px, 82vw);
    min-height: 376px;
    padding: 24px;
  }

  .testimonial-card::after {
    inset-inline: 20px;
    bottom: 86px;
  }

  .testimonial-quote {
    min-height: 168px;
    font-size: 15px;
  }

  .plans-heading .section-title {
    font-size: clamp(34px, 10vw, 46px);
  }

  .plans-note {
    font-size: 16px;
  }

  .price-current {
    font-size: clamp(40px, 13vw, 48px);
  }

  .price-card {
    grid-template-rows:
      34px
      74px
      44px
      74px
      70px
      36px
      22px
      1fr
      50px;
    min-height: 700px;
    padding: 28px 18px 22px;
  }

  .gem-icon-wrap {
    height: 74px;
  }

  .service-row {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 24px 0;
  }

  .method-cards,
  .pricing-grid,
  .proof-gallery {
    grid-template-columns: 1fr;
  }

  .proof-gallery {
    grid-template-rows: none;
  }

  .testimonials-shell {
    width: min(calc(100% - 24px), 100%);
  }

  .testimonial-marquee {
    margin-inline: -12px;
  }

  .testimonial-card {
    width: min(324px, 82vw);
  }

  .proof-card,
  .proof-main {
    min-height: 320px;
    grid-row: auto;
  }

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

  .footer-grid {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .footer-links {
    flex-wrap: wrap;
  }
}

@media (max-width: 640px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .trust-row {
    border-radius: 0;
    padding-inline: 8px;
  }
}

@media (max-width: 560px) {
  .testimonial-card {
    width: min(318px, calc(100vw - 46px));
    min-height: 396px;
    border-radius: 18px;
    padding: 22px;
  }

  .testimonial-footer {
    align-items: flex-end;
    gap: 12px;
  }

  .testimonial-person h3 {
    font-size: 14px;
  }

  .testimonial-person p {
    font-size: 12px;
  }

  .testimonial-brand {
    width: 42px;
    height: 32px;
    font-size: 11px;
  }

  .metrics-panel {
    grid-template-columns: 1fr;
    border-radius: 18px;
  }

  .metric-card {
    min-height: auto;
    padding: 24px;
  }

  .metric-card:not(:last-child)::after,
  .metric-card:nth-child(2)::after {
    display: block;
    top: auto;
    left: 24px;
    right: 24px;
    bottom: 0;
    width: auto;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.14), transparent);
  }
}

@media (max-width: 980px) {
  .site-header {
    inset: 0 0 auto 0;
    padding: 0;
    --promo-height: 34px;
  }

  .site-header.is-scrolled {
    top: 0;
  }

  .liquid-nav {
    width: calc(100% - 24px);
    height: 64px;
    padding: 0 12px 0 14px;
    border-radius: 0 0 20px 20px;
  }

  .site-header.is-scrolled .liquid-nav {
    top: 10px;
    width: calc(100% - 24px);
    height: 58px;
    border-radius: 999px;
  }

  .promo-bar {
    gap: 10px;
    padding: 0 12px;
    font-size: 12px;
  }

  .promo-bar span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .liquid-nav__content {
    grid-template-columns: auto 1fr auto;
    gap: 14px;
  }

  .nav-links,
  .nav-auth {
    display: none;
  }

  .nav-mobile-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
}

@media (max-width: 520px) {
  .nav-brand-text {
    display: none;
  }
}

@media (max-width: 768px) {
  .whatsapp-float {
    right: 18px;
    bottom: 18px;
    width: 54px;
    height: 54px;
    padding: 0 16px;
  }

  .whatsapp-float--opening,
  .whatsapp-float--open,
  .whatsapp-float--closing {
    width: 54px;
    padding: 0 16px;
    transform: none;
  }

  .whatsapp-float__text-wrap {
    display: none;
  }
}

@media (hover: hover) and (pointer: fine) {
  body,
  a,
  button,
  input,
  textarea,
  select {
    cursor: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
  }

  .pricing-section .reveal-item,
  .price-card,
  .featured-badge,
  .pricing-sparkles span {
    animation: none !important;
    transition: none !important;
    transform: none !important;
    filter: none !important;
    opacity: 1 !important;
  }

  .whatsapp-float,
  .whatsapp-float * {
    animation: none !important;
    transition: none !important;
    transform: none !important;
    filter: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .cursor-aura {
    display: none;
  }

  .loader {
    display: none;
  }

  .cursor-system,
  .hover-preview,
  .page-transition {
    display: none;
  }

  .liquid-navbar,
  .liquid-navbar__lens,
  .liquid-navbar::before,
  .liquid-navbar::after,
  .liquid-nav,
  .liquid-nav__glass,
  .liquid-nav::before,
  .liquid-nav::after,
  .promo-bar,
  .nav-links a,
  .nav-register,
  .mobile-register,
  .metric-digit-track,
  .rotating-word,
  .rotating-word-underline {
    animation: none !important;
    transition: none !important;
    transform: none !important;
    filter: none !important;
  }

  .metrics-panel {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    transition: none !important;
  }

  .auth-background,
  .auth-background::before,
  .auth-background::after,
  .auth-copy,
  .auth-card,
  .auth-console,
  .auth-console::after,
  .auth-console__grid span,
  .auth-field,
  .auth-password-control,
  .auth-password-control::before,
  .auth-check-box,
  .auth-check-box::before,
  .auth-check-box::after,
  .auth-submit,
  .auth-submit::before,
  .auth-social-button,
  .auth-social-button::before,
  .auth-social-icon {
    animation: none !important;
    transition: none !important;
    transform: none !important;
    filter: none !important;
  }

  .auth-copy,
  .auth-card,
  .auth-console__grid span,
  .auth-field {
    opacity: 1 !important;
  }

  .auth-password-control::before,
  .auth-submit::before {
    opacity: 0 !important;
  }

  .testimonial-track {
    animation: none !important;
    transform: none !important;
  }

  .testimonial-viewport {
    overflow-x: auto;
    mask-image: none;
    -webkit-mask-image: none;
  }
}
