:root {
  --home-bg: #f6f7fb;
  --home-surface: #ffffff;
  --home-text: #0f172a;
  --home-muted: #667085;
  --home-border: #e5e7eb;
  --home-primary: #4f46e5;
  --home-primary-dark: #4338ca;
  --home-soft: #eef2ff;
  --home-shadow: 0 16px 45px rgba(15, 23, 42, 0.08);
  --radius-xl: 30px;
  --radius-lg: 20px;
  --radius-md: 16px;
}

* {
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

html,
body {
  margin: 0;
  padding: 0;
}

body.home-body {
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(79, 70, 229, 0.08), transparent 30%),
    radial-gradient(circle at bottom right, rgba(16, 185, 129, 0.06), transparent 25%),
    var(--home-bg);
  color: var(--home-text);
}

.site-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  background: rgba(246, 247, 251, 0.82);
  border-bottom: 1px solid rgba(229, 231, 235, 0.7);
}

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

.site-logo img {
  height: 34px;
  width: auto;
  display: block;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 26px;
}

.site-nav a,
.site-link-btn {
  text-decoration: none;
  color: var(--home-text);
  font-size: 14px;
  font-weight: 500;
}

.site-header__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.site-primary-btn,
.site-secondary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  transition: 0.15s ease;
}

.site-primary-btn {
  background: var(--home-primary);
  color: #fff;
  box-shadow: 0 12px 24px rgba(79, 70, 229, 0.18);
}

.site-primary-btn:hover {
  background: var(--home-primary-dark);
  color: #fff;
}

.site-secondary-btn {
  border: 1px solid #c7d2fe;
  background: #fff;
  color: var(--home-primary);
}

.site-secondary-btn:hover {
  background: #f8faff;
}

.site-primary-btn--lg,
.site-secondary-btn--lg {
  min-height: 54px;
  padding: 0 24px;
}

.hero-section {
  padding: 54px 0 40px;
}

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

.hero-eyebrow,
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 14px;
  border-radius: 999px;
  background: var(--home-soft);
  color: var(--home-primary);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero-copy h1 {
  margin: 18px 0 0;
  font-size: clamp(44px, 6vw, 76px);
  line-height: 1.02;
  letter-spacing: -0.03em;
  font-weight: 700;
  max-width: 760px;
}

.hero-lead {
  margin: 22px 0 0;
  max-width: 620px;
  font-size: 19px;
  line-height: 1.7;
  color: var(--home-muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 28px;
}

.hero-meta__item {
  min-width: 160px;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255,255,255,0.7);
  border: 1px solid rgba(229, 231, 235, 0.9);
}

.hero-meta__item strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
}

.hero-meta__item span {
  display: block;
  margin-top: 5px;
  font-size: 13px;
  color: var(--home-muted);
}

.hero-visual {
  position: relative;
}

.hero-card {
  position: relative;
  border-radius: 34px;
  padding: 20px;
  background: linear-gradient(180deg, #ffffff 0%, #eef2ff 100%);
  border: 1px solid #dbe3ff;
  box-shadow: var(--home-shadow);
  min-height: 560px;
}

.hero-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hero-card__badge {
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: #e0e7ff;
  color: var(--home-primary);
  font-size: 12px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
}

.hero-card__dots {
  display: flex;
  gap: 6px;
}

.hero-card__dots span {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #c7d2fe;
}

.hero-card__screen {
  margin-top: 20px;
  height: calc(100% - 20px);
  border-radius: 26px;
  background: #fff;
  padding: 24px;
  border: 1px solid #edf0f6;
}

.hero-stat {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 18px;
  border-radius: 18px;
  background: #f8faff;
  border: 1px solid #e5e7eb;
}

.hero-stat span {
  font-size: 14px;
  color: var(--home-muted);
}

.hero-stat strong {
  font-size: 28px;
  font-weight: 800;
}

.hero-stat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 18px;
}

.hero-mini-card {
  min-height: 120px;
  border-radius: 22px;
  border: 1px solid #e8ebf3;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  padding: 20px;
}

.hero-mini-card i {
  font-size: 22px;
  color: var(--home-primary);
}

.hero-mini-card span {
  font-size: 15px;
  font-weight: 700;
}

.floating-pill {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 18px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid #e5e7eb;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.10);
  font-size: 14px;
  font-weight: 600;
}

.floating-pill i {
  color: var(--home-primary);
}

.floating-pill--one {
  left: -30px;
  bottom: 150px;
}

.floating-pill--two {
  right: -24px;
  top: 140px;
}

.floating-pill--three {
  right: 18px;
  bottom: 42px;
}

.feature-section,
.steps-section,
.cta-section {
  padding: 34px 0 70px;
}

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

.section-heading h2 {
  margin: 18px 0 0;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.08;
}

.section-heading p {
  margin: 16px 0 0;
  font-size: 17px;
  line-height: 1.7;
  color: var(--home-muted);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 28px;
}

.feature-card,
.step-card {
  background: rgba(255,255,255,0.8);
  border: 1px solid rgba(229, 231, 235, 0.95);
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.04);
}

.feature-icon {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #eef2ff;
  color: var(--home-primary);
  font-size: 22px;
}

.feature-card h3,
.step-card h3 {
  margin: 18px 0 0;
  font-size: 20px;
}

.feature-card p,
.step-card p {
  margin: 12px 0 0;
  font-size: 15px;
  line-height: 1.7;
  color: var(--home-muted);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 28px;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: #111827;
  color: #fff;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.cta-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 30px;
  border-radius: 30px;
  background: linear-gradient(135deg, #4f46e5 0%, #4338ca 100%);
  color: #fff;
  box-shadow: 0 18px 45px rgba(79, 70, 229, 0.18);
}

.cta-card h2 {
  margin: 12px 0 0;
  font-size: clamp(28px, 4vw, 42px);
}

.cta-card p {
  margin: 14px 0 0;
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255,255,255,0.82);
}

.cta-card .section-eyebrow {
  background: rgba(255,255,255,0.14);
  color: #fff;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.cta-card .site-primary-btn {
  background: #fff;
  color: var(--home-primary);
}

.cta-card .site-secondary-btn {
  border-color: rgba(255,255,255,0.28);
  background: rgba(255,255,255,0.08);
  color: #fff;
}

.site-footer {
  padding-top: 30px;
  border-top: 1px solid rgba(229, 231, 235, 0.9);
  background: rgba(255,255,255,0.6);
}

.site-footer__inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 24px;
}

.site-footer__logo {
  height: 30px;
  width: auto;
}

.site-footer__text {
  max-width: 420px;
  margin-top: 16px;
  color: var(--home-muted);
  line-height: 1.7;
}

.site-footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.site-footer__links a {
  text-decoration: none;
  color: var(--home-text);
  font-weight: 500;
}

.site-footer__bottom {
  border-top: 1px solid rgba(229, 231, 235, 0.9);
  padding: 16px;
  text-align: center;
  color: var(--home-muted);
  font-size: 14px;
}

@media (max-width: 1024px) {
  .hero-grid,
  .feature-grid,
  .steps-grid,
  .site-footer__inner,
  .cta-card {
    grid-template-columns: 1fr;
    flex-direction: column;
  }

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

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

  .floating-pill {
    position: static;
    margin-top: 12px;
  }

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

  .site-nav {
    display: none;
  }
}

@media (max-width: 640px) {
  .site-shell {
    width: min(100% - 20px, 100%);
  }

  .site-header__inner {
    min-height: 72px;
  }

  .site-header__actions {
    gap: 8px;
  }

  .site-link-btn {
    display: none;
  }

  .hero-section {
    padding: 28px 0 26px;
  }

  .hero-copy h1 {
    font-size: 42px;
  }

  .hero-lead {
    font-size: 16px;
  }

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

  .site-primary-btn,
  .site-secondary-btn {
    width: 100%;
  }

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

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