:root {
  --bg: #070b14;
  --bg-2: #0b1220;
  --surface: rgba(255, 255, 255, 0.06);
  --surface-2: rgba(255, 255, 255, 0.08);
  --border: rgba(255, 255, 255, 0.12);
  --text: rgba(255, 255, 255, 0.92);
  --muted: rgba(255, 255, 255, 0.68);
  --muted-2: rgba(255, 255, 255, 0.55);
  --primary: #7c8cff;
  --primary-2: #59d9c2;
  --accent: #c7b2ff;
  --shadow: 0 18px 60px rgba(0, 0, 0, 0.45);
  --shadow-soft: 0 14px 50px rgba(0, 0, 0, 0.22);
  --radius: 18px;
  --radius-lg: 24px;
  --max: 1160px;
  --pad-x: clamp(18px, 3vw, 28px);
  --pad-y: clamp(64px, 8vw, 110px);
  color-scheme: dark;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji",
    "Segoe UI Emoji";
  background: radial-gradient(1200px 900px at 15% 0%, rgba(124, 140, 255, 0.22), transparent 52%),
    radial-gradient(900px 700px at 90% 8%, rgba(89, 217, 194, 0.18), transparent 55%),
    radial-gradient(900px 700px at 50% 105%, rgba(199, 178, 255, 0.16), transparent 60%),
    linear-gradient(180deg, var(--bg), var(--bg-2));
  color: var(--text);
  line-height: 1.5;
  letter-spacing: -0.01em;
}
a {
  color: inherit;
  text-decoration: none;
}
img,
svg {
  display: block;
  max-width: 100%;
}
.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}
.top-glow {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.7;
  background: radial-gradient(1000px 600px at 50% -120px, rgba(124, 140, 255, 0.22), transparent 64%);
  mix-blend-mode: screen;
  z-index: 0;
}
.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='.22'/%3E%3C/svg%3E");
  opacity: 0.25;
  z-index: 0;
}
header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(14px);
  background: rgba(7, 11, 20, 0.62);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.header-inner {
  position: relative;
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  box-shadow: 0 14px 40px rgba(124, 140, 255, 0.2);
  display: block;
  flex: 0 0 auto;
}
.brand-sub {
  display: block;
  font-weight: 600;
  font-size: 12px;
  color: var(--muted-2);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-top: 2px;
}
.nav-links {
  display: flex;
  gap: 14px;
  align-items: center;
}
.nav-links a {
  font-size: 14px;
  color: var(--muted);
  padding: 8px 10px;
  border-radius: 12px;
  transition: background 180ms ease, color 180ms ease;
}
.nav-links a:hover {
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.9);
}
.nav-cta {
  display: flex;
  gap: 10px;
  align-items: center;
}
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.92);
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 180ms ease, border-color 180ms ease, transform 160ms ease;
}
.nav-toggle:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.18);
}
.nav-toggle:active {
  transform: translateY(1px);
}
.mobile-nav {
  position: absolute;
  top: calc(100% - 4px);
  left: 0;
  right: 0;
  z-index: 30;
  padding: 10px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(7, 11, 20, 0.92);
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.35);
}
.mobile-nav a {
  display: block;
  padding: 12px 14px;
  border-radius: 14px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
  transition: background 180ms ease, transform 160ms ease;
}
.mobile-nav a:hover {
  background: rgba(255, 255, 255, 0.06);
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 16px;
  font-weight: 650;
  font-size: 14px;
  border-radius: 14px;
  border: 1px solid transparent;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, border-color 160ms ease;
  will-change: transform;
}
.btn-sm {
  padding: 10px 14px;
  font-size: 13px;
  border-radius: 12px;
}
.btn:active {
  transform: translateY(1px);
}
.btn-primary {
  background: linear-gradient(135deg, rgba(124, 140, 255, 0.95), rgba(89, 217, 194, 0.92));
  color: rgba(8, 10, 16, 0.95);
  box-shadow: 0 18px 45px rgba(89, 217, 194, 0.14), 0 18px 55px rgba(124, 140, 255, 0.14);
}
.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 48px rgba(89, 217, 194, 0.18), 0 18px 58px rgba(124, 140, 255, 0.18);
}
.btn-ghost {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.9);
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.16);
  transform: translateY(-1px);
}
.icon {
  width: 18px;
  height: 18px;
  opacity: 0.95;
}
main {
  position: relative;
  z-index: 1;
}
.hero {
  padding: clamp(36px, 5vw, 72px) 0 var(--pad-y);
}
.hero--compact {
  padding: clamp(18px, 3.5vw, 42px) 0 var(--pad-y);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
}
.kicker {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  color: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.04);
  font-size: 13px;
  margin-bottom: 16px;
}
.kicker-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(89, 217, 194, 0.9);
  box-shadow: 0 0 0 6px rgba(89, 217, 194, 0.08);
}
h1 {
  margin: 0;
  font-size: clamp(32px, 4.3vw, 54px);
  line-height: 1.06;
  letter-spacing: -0.04em;
}
.hero p {
  margin: 16px 0 22px;
  max-width: 58ch;
  color: var(--muted);
  font-size: clamp(15px, 1.4vw, 18px);
}
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}
.hero-meta {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  color: var(--muted-2);
  font-size: 13px;
}
.meta-item {
  display: inline-flex;
  gap: 10px;
  align-items: center;
}
.meta-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.09);
}
.hero-visual {
  position: relative;
}
.visual-shell {
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.05));
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.visual-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  background: rgba(7, 11, 20, 0.35);
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}
.dots {
  display: inline-flex;
  gap: 7px;
}
.dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
}
.topbar-label {
  font-size: 12px;
  color: var(--muted-2);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.visual-body {
  padding: 16px;
}
.dash-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 14px;
}
.dash-card {
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.11);
  padding: 14px;
  box-shadow: var(--shadow-soft);
}
.dash-title {
  font-size: 12px;
  color: var(--muted-2);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0 0 10px;
}
.mini-kpi {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
.kpi {
  border-radius: 14px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.09);
}
.kpi strong {
  display: block;
  font-size: 18px;
  letter-spacing: -0.03em;
}
.kpi span {
  display: block;
  margin-top: 4px;
  font-size: 12px;
  color: var(--muted-2);
}
.chart {
  margin-top: 12px;
  height: 110px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(135deg, rgba(124, 140, 255, 0.18), rgba(89, 217, 194, 0.12));
  position: relative;
  overflow: hidden;
}
.chart svg {
  position: absolute;
  inset: 0;
  opacity: 0.95;
}
.list {
  display: grid;
  gap: 10px;
}
.row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.09);
}
.row small {
  color: var(--muted-2);
}
.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  padding: 7px 10px;
  font-size: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.85);
}
.pill::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: rgba(124, 140, 255, 0.9);
}
.tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  padding: 7px 10px;
  font-size: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.85);
}
.tag::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: rgba(89, 217, 194, 0.9);
}
.float-card {
  position: absolute;
  right: -14px;
  bottom: -18px;
  width: min(260px, 76%);
  border-radius: 20px;
  background: rgba(7, 11, 20, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow);
  padding: 14px;
  transform: translateY(10px);
}
.float-card strong {
  font-size: 14px;
  display: block;
}
.float-card p {
  margin: 8px 0 0;
  font-size: 13px;
  color: var(--muted);
}
section {
  padding: var(--pad-y) 0;
}
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 18px;
  margin-bottom: 26px;
}
h2 {
  font-size: clamp(24px, 3vw, 34px);
  margin: 0;
  letter-spacing: -0.03em;
}
.section-head p {
  margin: 0;
  color: var(--muted);
  max-width: 60ch;
}
.surface {
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.09);
}
.trust {
  padding-top: 0;
}
.trust-inner {
  display: grid;
  gap: 16px;
  padding: 22px;
}
.trust-title {
  font-size: 13px;
  color: var(--muted-2);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.logos {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
}
.logo {
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(255, 255, 255, 0.04);
  padding: 14px 10px;
  color: rgba(255, 255, 255, 0.76);
  text-align: center;
  font-weight: 650;
  letter-spacing: -0.02em;
  font-size: 13px;
}
.cards {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 14px;
}
.card {
  grid-column: span 6;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 18px;
  position: relative;
  overflow: hidden;
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
  min-height: 172px;
}
.card-quarter {
  grid-column: span 3;
}
.card-third {
  grid-column: span 4;
}
.card:hover {
  transform: translateY(-3px);
  border-color: rgba(124, 140, 255, 0.26);
  background: rgba(255, 255, 255, 0.05);
}
.card-icon {
  width: 40px;
  height: 40px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(124, 140, 255, 0.22), rgba(89, 217, 194, 0.16));
  border: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 12px;
}
.card h3 {
  margin: 0;
  font-size: 18px;
  letter-spacing: -0.02em;
}
.card p {
  margin: 10px 0 14px;
  color: var(--muted);
  font-size: 14px;
}
.link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
  font-weight: 650;
  transition: color 160ms ease, transform 160ms ease;
}
.link:hover {
  transform: translateX(1px);
  color: rgba(124, 140, 255, 0.95);
}
.link svg {
  width: 16px;
  height: 16px;
  opacity: 0.92;
}
.chips {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 10px;
}
.chip {
  border-radius: 16px;
  padding: 14px 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.85);
  text-align: center;
  font-weight: 650;
  letter-spacing: -0.01em;
  transition: background 200ms ease, border-color 200ms ease, transform 200ms ease;
}
.chip:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(89, 217, 194, 0.24);
}
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(18px, 3vw, 34px);
  align-items: start;
}
.feature-list {
  display: grid;
  gap: 12px;
}
.feature {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.check {
  width: 26px;
  height: 26px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(89, 217, 194, 0.12);
  border: 1px solid rgba(89, 217, 194, 0.22);
  flex: 0 0 auto;
  margin-top: 1px;
}
.feature strong {
  display: block;
  font-size: 14px;
  margin-bottom: 2px;
}
.feature span {
  color: var(--muted);
  font-size: 14px;
}
.reasons {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.reason {
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 16px;
}
.reason strong {
  display: block;
  font-size: 14px;
  margin-bottom: 8px;
}
.reason p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}
.showcase {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.screen {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: var(--shadow-soft);
  transition: transform 200ms ease, border-color 200ms ease;
}
.screen:hover {
  transform: translateY(-3px);
  border-color: rgba(199, 178, 255, 0.26);
}
.screen-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 14px 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(7, 11, 20, 0.35);
}
.screen-head strong {
  font-size: 14px;
}
.screen-body {
  padding: 14px;
}
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.quote {
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 18px;
  min-height: 190px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.quote p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
}
.quote-footer {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
  color: var(--muted);
  font-size: 13px;
}
.avatar {
  width: 36px;
  height: 36px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(199, 178, 255, 0.26), rgba(124, 140, 255, 0.18));
  border: 1px solid rgba(255, 255, 255, 0.1);
  flex: 0 0 auto;
}
.cta {
  padding-bottom: clamp(70px, 9vw, 120px);
}
.cta-inner {
  padding: clamp(24px, 4vw, 34px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(124, 140, 255, 0.18), rgba(89, 217, 194, 0.12));
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow);
}
.cta-inner h2 {
  margin: 0;
}
.cta-inner p {
  margin: 10px 0 0;
  color: var(--muted);
}
footer {
  padding: 44px 0 52px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(7, 11, 20, 0.35);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 18px;
}
.footer-col h4 {
  margin: 0 0 12px;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.86);
}
.footer-col a,
.footer-col div {
  display: block;
  padding: 8px 0;
  color: var(--muted);
  font-size: 14px;
}
.footer-col a:hover {
  color: rgba(124, 140, 255, 0.95);
}
.fineprint {
  margin-top: 26px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.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;
}
.prose {
  color: var(--muted);
  font-size: 15px;
  max-width: 80ch;
}
.prose p {
  margin: 0 0 12px;
}
.prose p:last-child {
  margin-bottom: 0;
}
.bullets {
  margin: 12px 0 0;
  padding-left: 18px;
  color: var(--muted);
  font-size: 14px;
}
.bullets li {
  margin: 8px 0;
}
.tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.tab {
  appearance: none;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.86);
  padding: 10px 12px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}
.tab:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(89, 217, 194, 0.22);
}
.tab[aria-selected="true"] {
  background: linear-gradient(135deg, rgba(124, 140, 255, 0.28), rgba(89, 217, 194, 0.2));
  border-color: rgba(124, 140, 255, 0.26);
}
.mini-shot {
  height: 78px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: linear-gradient(135deg, rgba(124, 140, 255, 0.18), rgba(89, 217, 194, 0.12));
  position: relative;
  overflow: hidden;
}
.mini-shot::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(closest-side at 20% 30%, rgba(255, 255, 255, 0.22), transparent 60%),
    radial-gradient(closest-side at 70% 70%, rgba(89, 217, 194, 0.26), transparent 62%),
    radial-gradient(closest-side at 80% 20%, rgba(124, 140, 255, 0.28), transparent 58%);
  opacity: 0.55;
}
.mini-shot::before {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 12px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  box-shadow: 0 -16px 0 rgba(255, 255, 255, 0.1), 0 -32px 0 rgba(255, 255, 255, 0.08);
  opacity: 0.8;
}
.stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.stat {
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 18px;
}
.stat strong {
  display: block;
  font-size: 30px;
  letter-spacing: -0.04em;
}
.stat span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 14px;
}
.carousel {
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.09);
  overflow: hidden;
}
.carousel-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 100%;
  transition: transform 420ms ease;
  will-change: transform;
}
.carousel-card {
  padding: 22px;
}
.carousel-quote {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
}
.carousel-meta {
  margin-top: 12px;
  color: var(--muted);
  font-size: 13px;
}
.stars {
  display: flex;
  gap: 5px;
  color: rgba(255, 209, 102, 0.92);
}
.star {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
}
.form {
  display: grid;
  gap: 12px;
}
.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.field label {
  display: block;
  font-weight: 700;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.86);
  margin-bottom: 8px;
}
.control {
  width: 100%;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.9);
  padding: 12px 12px;
  outline: none;
  transition: border-color 160ms ease, background 160ms ease, transform 160ms ease;
}
.control:focus {
  border-color: rgba(124, 140, 255, 0.35);
  background: rgba(255, 255, 255, 0.06);
}
.control::placeholder {
  color: rgba(255, 255, 255, 0.46);
}
select.control option,
select.control optgroup {
  background: #ffffff;
  color: #0b1220;
}
textarea.control {
  min-height: 120px;
  resize: vertical;
}
.form-note {
  color: var(--muted);
  font-size: 13px;
  margin: 0;
}
.alert {
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.04);
}
.alert-success {
  border-color: rgba(89, 217, 194, 0.25);
  background: rgba(89, 217, 194, 0.08);
}
.alert-error {
  border-color: rgba(255, 99, 99, 0.28);
  background: rgba(255, 99, 99, 0.08);
}
.map {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.02);
}
.map iframe {
  width: 100%;
  height: 320px;
  display: block;
  border: 0;
}
.quick-links {
  display: grid;
  gap: 10px;
}
.quick-links a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  text-decoration: none;
  color: rgba(255, 255, 255, 0.9);
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}
.quick-links a:hover {
  transform: translateY(-1px);
  border-color: rgba(89, 217, 194, 0.22);
  background: rgba(255, 255, 255, 0.05);
}
.quick-links .q-icon {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(124, 140, 255, 0.22), rgba(89, 217, 194, 0.14));
  border: 1px solid rgba(255, 255, 255, 0.09);
}
.whatsapp-fab {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 40;
  width: 54px;
  height: 54px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(37, 211, 102, 0.9);
  color: #07110d;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
  transition: transform 180ms ease, filter 180ms ease;
}
.whatsapp-fab:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
}
.whatsapp-fab .icon {
  width: 22px;
  height: 22px;
}
.carousel-dots {
  display: flex;
  gap: 8px;
  padding: 14px 18px 18px;
}
.dot-btn {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}
.dot-btn:hover {
  transform: translateY(-1px);
  border-color: rgba(89, 217, 194, 0.28);
}
.dot-btn[aria-selected="true"] {
  background: rgba(89, 217, 194, 0.55);
  border-color: rgba(89, 217, 194, 0.6);
}
.timeline {
  position: relative;
  display: grid;
  gap: 12px;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 10px;
  bottom: 10px;
  width: 2px;
  background: rgba(255, 255, 255, 0.08);
}
.timeline-item {
  position: relative;
  padding-left: 54px;
}
.timeline-dot {
  position: absolute;
  left: 6px;
  top: 18px;
  width: 26px;
  height: 26px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(124, 140, 255, 0.14);
  border: 1px solid rgba(124, 140, 255, 0.22);
  color: rgba(255, 255, 255, 0.86);
  font-weight: 750;
  font-size: 13px;
}
.faq {
  display: grid;
  gap: 12px;
}
.faq-item {
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.09);
  padding: 14px 16px;
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-item p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}
.workflow {
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.09);
  padding: 18px;
}
.workflow-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  align-items: start;
}
.wf-node {
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 14px;
  min-height: 120px;
  position: relative;
  overflow: hidden;
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}
.wf-node:hover {
  transform: translateY(-2px);
  border-color: rgba(89, 217, 194, 0.22);
  background: rgba(255, 255, 255, 0.05);
}
.wf-node strong {
  display: block;
  letter-spacing: -0.02em;
}
.wf-node p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}
.wf-rail {
  grid-column: 1 / -1;
  height: 2px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  position: relative;
  margin-top: -6px;
}
.wf-rail::after {
  content: "";
  position: absolute;
  left: 0;
  top: -1px;
  height: 4px;
  width: 28%;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(124, 140, 255, 0.9), rgba(89, 217, 194, 0.9));
  opacity: 0.35;
  animation: wfMove 2600ms ease-in-out infinite;
}
@keyframes wfMove {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(240%);
  }
  100% {
    transform: translateX(0);
  }
}
@media (max-width: 980px) {
  .workflow-grid {
    grid-template-columns: 1fr;
  }
  .wf-rail {
    display: none;
  }
  .stats {
    grid-template-columns: 1fr;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .map iframe {
    height: 260px;
  }
}
.divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
  margin: 22px 0;
}
.pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.mini-card {
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 18px;
}
.mini-card h3 {
  margin: 0 0 10px;
  font-size: 16px;
  letter-spacing: -0.02em;
}
.mini-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}
.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.step {
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 18px;
  min-height: 160px;
}
.step-top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.step-num {
  width: 32px;
  height: 32px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(124, 140, 255, 0.14);
  border: 1px solid rgba(124, 140, 255, 0.22);
  color: rgba(255, 255, 255, 0.86);
  font-weight: 750;
  font-size: 13px;
}
.step h3 {
  margin: 0;
  font-size: 15px;
  letter-spacing: -0.02em;
}
.step p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}
[data-animate] {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 650ms ease, transform 650ms ease;
}
[data-animate].is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}
@media (max-width: 980px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .float-card {
    right: 14px;
    bottom: 14px;
  }
  .logos {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .chips {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .split {
    grid-template-columns: 1fr;
  }
  .reasons {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .showcase {
    grid-template-columns: 1fr;
  }
  .testimonial-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .nav-links {
    display: none;
  }
  .nav-toggle {
    display: inline-flex;
  }
  .card-quarter {
    grid-column: span 6;
  }
  .card-third {
    grid-column: span 6;
  }
  .steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .pair {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 520px) {
  header .nav-cta .btn-ghost {
    display: none;
  }
  .cards {
    gap: 12px;
  }
  .card {
    grid-column: span 12;
  }
  .cta-inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .steps {
    grid-template-columns: 1fr;
  }
}
