@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
  color-scheme: light;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background:
    radial-gradient(circle at top left, rgba(109, 94, 252, 0.14), transparent 28%),
    radial-gradient(circle at top right, rgba(20, 184, 166, 0.08), transparent 24%),
    linear-gradient(180deg, #f8f5ef 0%, #f3efe8 100%);
  color: #1f2937;
  overflow-x: hidden;
}


*,
*::before,
*::after {
  box-sizing: border-box;
}

.site-container {
  width: min(100%, 80rem);
  margin-inline: auto;
}
.text-gradient {
  background: linear-gradient(90deg, #6d5efc, #13b8a6);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.bg-primary-grad {
  background: linear-gradient(135deg, #6d5efc, #7c70ff);
}

.soft-card {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(120, 134, 156, 0.14);
  box-shadow: 0 24px 70px rgba(55, 65, 81, 0.08);
}

.glass-card {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 18px 45px rgba(55, 65, 81, 0.08);
  backdrop-filter: blur(18px);
}

.card-hover {
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.card-hover:hover {
  transform: translateY(-6px);
  border-color: rgba(109, 94, 252, 0.32);
  box-shadow: 0 28px 60px rgba(55, 65, 81, 0.14);
}

.nav-link {
  color: #5f6b7a;
  transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.nav-link:hover {
  color: #1f2937;
}

.nav-link.active,
.mobile-nav-link.active {
  color: #5b21b6;
  background: rgba(109, 94, 252, 0.09);
  border-color: rgba(109, 94, 252, 0.18);
}

.hero-shell,
.section-shell,
.cta-shell,
.page-shell {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(120, 134, 156, 0.12);
  box-shadow: 0 22px 65px rgba(55, 65, 81, 0.08);
}

.floating-wa {
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.32);
}

.section-kicker {
  letter-spacing: 0.2em;
}

.hero-metric strong {
  display: block;
  font-size: 1.85rem;
  line-height: 1;
  color: #0f172a;
}

.gradient-outline {
  position: relative;
  overflow: hidden;
}

.gradient-outline::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(109, 94, 252, 0.28), rgba(19, 184, 166, 0.2));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(109, 94, 252, 0.14), transparent 32%),
    radial-gradient(circle at bottom left, rgba(19, 184, 166, 0.1), transparent 24%);
  pointer-events: none;
}

.demo-frame {
  background: linear-gradient(180deg, #0f172a 0%, #111827 100%);
}

.demo-dot {
  width: 0.65rem;
  height: 0.65rem;
  border-radius: 9999px;
}

.feature-list li {
  position: relative;
  padding-left: 1.6rem;
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6rem;
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 9999px;
  background: linear-gradient(135deg, rgba(109, 94, 252, 0.95), rgba(19, 184, 166, 0.82));
  box-shadow: 0 0 0 4px rgba(109, 94, 252, 0.08);
}

.process-step::before {
  content: attr(data-step);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 9999px;
  background: rgba(109, 94, 252, 0.1);
  color: #5b21b6;
  font-weight: 700;
  margin-bottom: 1rem;
}

.footer-link {
  color: #64748b;
  transition: color 0.2s ease;
}

.footer-link:hover {
  color: #111827;
}
