* {
  box-sizing: border-box;
}

:root {
  --bg: #070511;
  --bg-soft: #110d22;
  --card: rgba(255, 255, 255, 0.06);
  --card-border: rgba(255, 255, 255, 0.12);
  --text: #f5f7ff;
  --muted: #bfc5dd;
  --primary: #8b5cf6;
  --primary-2: #5eead4;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  --radius: 22px;
  --container: 1180px;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background:
    radial-gradient(circle at top left, rgba(139, 92, 246, 0.22), transparent 30%),
    radial-gradient(circle at right center, rgba(94, 234, 212, 0.12), transparent 25%),
    linear-gradient(180deg, #05030d 0%, #080613 40%, #0c0a18 100%);
  color: var(--text);
}

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  background: rgba(5, 3, 13, 0.7);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  gap: 18px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.logo-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  color: #05030d;
  font-size: 1.1rem;
  font-weight: 800;
}

.logo-text {
  font-size: 0.98rem;
}

.menu {
  display: flex;
  gap: 22px;
  color: var(--muted);
}

.menu a:hover {
  color: var(--text);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 700;
  transition: 0.25s ease;
  border: 1px solid transparent;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--primary), #6d5dfc);
  box-shadow: 0 20px 40px rgba(139, 92, 246, 0.28);
}

.btn-secondary,
.btn-outline {
  border-color: rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.04);
}

.btn-block {
  width: 100%;
}

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

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--primary-2);
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
}

.hero-copy h1,
.section-heading h2,
.steps-grid h2,
.benefits-copy h2,
.cta-band h2 {
  margin: 0;
  line-height: 1.05;
}

.hero-copy h1 {
  font-size: clamp(2.4rem, 5vw, 4.6rem);
  max-width: 12ch;
}

.hero-copy h1 span {
  background: linear-gradient(135deg, #ffffff, var(--primary-2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-copy p,
.section-heading p,
.steps-grid p,
.benefits-copy p,
.feature-card p,
.step-card p,
.faq-item p,
.pricing-card p,
.site-footer p {
  color: var(--muted);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin: 30px 0;
}

.trust-list,
.check-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.trust-list li,
.check-list li {
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.04);
  color: #e8ecfb;
}

.trust-list li {
  padding: 10px 14px;
  border-radius: 999px;
}

.check-list li {
  margin-bottom: 12px;
  padding: 14px 16px;
  border-radius: 16px;
}

.check-list li::before {
  content: "✓";
  margin-right: 10px;
  color: var(--primary-2);
  font-weight: 800;
}

.hero-visual {
  position: relative;
  min-height: 450px;
  display: grid;
  place-items: center;
}

.hero-visual img {
  position: relative;
  z-index: 2;
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: var(--shadow);
}

.glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(40px);
}

.glow-one {
  width: 220px;
  height: 220px;
  background: rgba(139, 92, 246, 0.22);
  top: 8%;
  right: 10%;
}

.glow-two {
  width: 200px;
  height: 200px;
  background: rgba(94, 234, 212, 0.16);
  bottom: 6%;
  left: 5%;
}

.stats {
  padding: 20px 0 30px;
}

.stats-grid,
.cards-grid,
.steps,
.benefits-grid,
.footer-content,
.cta-band-content {
  display: grid;
  gap: 20px;
}

.stats-grid {
  grid-template-columns: repeat(4, 1fr);
}

.stat-card,
.feature-card,
.step-card,
.pricing-card,
.faq-item {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.stat-card {
  padding: 24px;
}

.stat-card strong {
  display: block;
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.stat-card span {
  color: var(--muted);
}

.section {
  padding: 86px 0;
}

.section-dark {
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0));
}

.section-heading {
  max-width: 720px;
  margin-bottom: 32px;
}

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

.feature-card {
  padding: 28px;
}

.icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.22), rgba(94, 234, 212, 0.16));
  margin-bottom: 18px;
}

.steps-grid,
.benefits-grid,
.cta-band-content,
.footer-content {
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
}

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

.step-card {
  padding: 26px;
}

.step-number {
  display: inline-flex;
  margin-bottom: 10px;
  font-weight: 800;
  color: var(--primary-2);
}

.pricing-card {
  padding: 32px;
}

.pricing-tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--primary-2);
  margin-bottom: 12px;
  letter-spacing: 0.1em;
}

.faq-list {
  display: grid;
  gap: 16px;
}

.faq-item {
  padding: 18px 22px;
}

.faq-item summary {
  cursor: pointer;
  font-weight: 700;
}

.faq-item p {
  margin: 14px 0 4px;
}

.cta-band {
  padding: 20px 0 90px;
}

.cta-band-content {
  padding: 34px;
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,0.12);
  background:
    linear-gradient(135deg, rgba(139, 92, 246, 0.18), rgba(94, 234, 212, 0.08)),
    rgba(255,255,255,0.04);
  box-shadow: var(--shadow);
}

.site-footer {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0 40px;
}

@media (max-width: 980px) {
  .hero-grid,
  .stats-grid,
  .cards-grid,
  .steps-grid,
  .benefits-grid,
  .cta-band-content,
  .footer-content {
    grid-template-columns: 1fr;
  }

  .menu {
    display: none;
  }

  .hero {
    padding-top: 40px;
  }

  .hero-copy h1 {
    max-width: 100%;
  }
}

@media (max-width: 640px) {
  .nav {
    min-height: 70px;
  }

  .logo-text {
    font-size: 0.88rem;
  }

  .btn {
    width: 100%;
  }

  .hero-actions {
    flex-direction: column;
  }

  .section {
    padding: 72px 0;
  }

  .cta-band-content,
  .feature-card,
  .step-card,
  .pricing-card,
  .stat-card {
    padding: 22px;
  }
}
