:root {
  --bg: #ffffff;
  --surface: #f8fafc;
  --surface-2: #eef2ff;
  --text: #0f172a;
  --muted: #475569;
  --line: #dbe4f0;
  --primary: #9c29c4;
  --accent: #2563eb;
  --accent-2: #16a34a;
  --danger: #b91c1c;
  --green: #62e6c0;

  --radius: 18px;
  --radius-sm: 12px;
  --radius-lg: 28px;

  --shadow: 0 12px 40px rgba(15, 23, 42, 0.08);
  --shadow-md: 0 16px 34px rgba(15, 23, 42, 0.10);
  --shadow-lg: 0 24px 56px rgba(15, 23, 42, 0.14);

  --container: 1420px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font: 400 16px/1.6 Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--bg);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

img {
  display: block;
  max-width: 100%;
  height: auto;
}

button,
input,
select,
textarea {
  font: inherit;
}

.container {
  width: min(var(--container), calc(100% - 48px));
  margin-inline: auto;
}

.section {
  padding: 5rem 0;
}

.section-sm {
  padding: 3rem 0;
}

.muted {
  color: var(--muted);
}

h1,
h2,
h3 {
  margin: 0 0 1rem;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

h1 { font-size: clamp(2.2rem, 6vw, 4.4rem); }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }

p {
  margin: 0 0 1rem;
}

.lead {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: var(--muted);
}

.grid {
  display: grid;
  gap: 1.5rem;
}

.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  min-height: 48px;
  padding: 0.95rem 1.35rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 700;
  line-height: 1;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.18);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: #020617;
}

.btn-secondary {
  background: #fff;
  color: var(--text);
  border-color: var(--line);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  background: var(--surface);
}

.btn-sm {
  padding: 0.8rem 1rem;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.badge {
  display: inline-flex;
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  background: #dbeafe;
  color: #1d4ed8;
  font-weight: 700;
  font-size: 0.86rem;
}

/* =========================================
   HERO GLOBAL
========================================= */

.hero {
  padding: 4.5rem 0 3rem;
  background:
    radial-gradient(circle at top left, rgba(37, 99, 235, 0.14), transparent 35%),
    radial-gradient(circle at right 10% bottom 20%, rgba(22, 163, 74, 0.10), transparent 30%),
    linear-gradient(180deg, #fff 0%, #f8fafc 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  gap: 2rem;
  align-items: center;
}

.hero-content {
  min-width: 0;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  font-size: 0.92rem;
  font-weight: 800;
  color: #6d6ff1;
  letter-spacing: 0.02em;
}

.hero-eyebrow::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--green));
  box-shadow: 0 0 0 8px rgba(122, 123, 244, 0.08);
}

.hero-title {
  margin: 0 0 1.25rem;
  max-width: 11ch;
  line-height: 0.96;
  letter-spacing: -0.06em;
  font-size: clamp(2.8rem, 5.7vw, 5.6rem);
}

.hero-text {
  max-width: 60ch;
  margin: 0 0 1.5rem;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin: 1.5rem 0 1rem;
}

.hero-live {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin: 1rem 0 0;
  font-size: 0.92rem;
  line-height: 1.4;
  color: var(--muted);
}

.hero-live-dot {
  position: relative;
  width: 10px;
  height: 10px;
  flex: 0 0 10px;
  border-radius: 50%;
  background: #22c55e;
}

.hero-live-dot::after {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(34, 197, 94, 0.45);
  transform: scale(1);
  animation: heroLivePulse 1.8s ease-out infinite;
}

.hero-live-count {
  color: #16a34a;
  font-weight: 800;
}

@keyframes heroLivePulse {
  0% {
    transform: scale(1);
    opacity: 0.9;
  }
  70% {
    transform: scale(2.8);
    opacity: 0;
  }
  100% {
    transform: scale(2.8);
    opacity: 0;
  }
}

.hero-visual {
  position: relative;
  min-height: 670px;
}

.hero-aura {
  position: absolute;
  inset: 10% 6% 10%;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(169, 216, 255, 0.95) 0%, rgba(169, 216, 255, 0.48) 34%, rgba(255, 255, 255, 0) 70%);
  filter: blur(16px);
}

.hero-figure-wrap {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  min-height: 670px;
  height: 100%;
}

.hero-figure {
  position: relative;
  z-index: 2;
  width: min(100%, 760px);
  object-fit: contain;
}

.hero-float {
  position: absolute;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 22px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.85);
  box-shadow: var(--shadow-md);
  font-weight: 800;
  white-space: nowrap;
}

.hero-float-icon {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  color: #0d4a3e;
  background: linear-gradient(135deg, #64e8c4, #74f0d2);
  box-shadow: 0 0 0 8px rgba(100, 232, 196, 0.14);
}

.hero-float--1 { top: 20%; right: 3%; }
.hero-float--2 { top: 48%; right: -2%; }
.hero-float--3 { bottom: 18%; right: 5%; }

.checklist,
.simple-list,
.stats,
.footer-grid ul,
.faq-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.checklist li,
.simple-list li {
  position: relative;
  padding-left: 1.6rem;
  margin-bottom: 0.85rem;
}

.checklist li::before,
.simple-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent-2);
  font-weight: 800;
}

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

  .grid-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

  .hero-visual,
  .hero-figure-wrap {
    min-height: 560px;
  }
}

@media (max-width: 768px) {
  .button-row,
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .section {
    padding: 4rem 0;
  }

  .section-sm {
    padding: 2.5rem 0;
  }

  .hero {
    padding: 3.75rem 0 2.5rem;
  }

  .hero-visual,
  .hero-figure-wrap {
    min-height: auto;
  }

  .hero-figure-wrap {
    flex-direction: column;
    gap: 10px;
  }

  .hero-float {
    position: static;
    margin: 10px auto 0;
    justify-content: center;
  }
}

@media (max-width: 560px) {
  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }
}