body[data-page="home"] .site-header {
  box-shadow: 0 1px 0 rgba(219, 227, 239, 0.5);
  transition:
    background-color var(--transition-base),
    box-shadow var(--transition-base),
    backdrop-filter var(--transition-base),
    transform var(--transition-base);
}

body[data-page="home"] .site-header.is-scrolled {
  background-color: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  box-shadow: 0 10px 30px rgba(11, 16, 32, 0.08);
}

body[data-page="home"] .site-header.is-scrolling-down {
  transform: translateY(0);
}

body[data-page="home"] .site-header.is-scrolling-up {
  transform: translateY(0);
}

body[data-page="home"] .hero h1 {
  max-width: 14ch;
}

body[data-page="home"] .hero__lead {
  max-width: 52ch;
}

body[data-page="home"] .hero__media {
  position: relative;
}

body[data-page="home"] .hero__media::before {
  content: "";
  position: absolute;
  inset: -1.25rem -1.25rem auto auto;
  width: 12rem;
  height: 12rem;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(6, 182, 212, 0.18) 0%,
    rgba(6, 182, 212, 0) 70%
  );
  pointer-events: none;
  z-index: 0;
}

body[data-page="home"] .hero-card {
  position: relative;
  z-index: 1;
}

body[data-page="home"] .section-heading h2 {
  max-width: 18ch;
}

body[data-page="home"] .section--problem .card,
body[data-page="home"] .section--benefits .card,
body[data-page="home"] .step-card,
body[data-page="home"] .stat-card,
body[data-page="home"] .faq-item {
  transition:
    transform var(--transition-base),
    box-shadow var(--transition-base),
    border-color var(--transition-base),
    background-color var(--transition-base);
}

body[data-page="home"] .section--problem .card:hover,
body[data-page="home"] .section--benefits .card:hover,
body[data-page="home"] .step-card:hover,
body[data-page="home"] .stat-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-border-strong);
}

body[data-page="home"] .section--problem .card h3,
body[data-page="home"] .section--benefits .card h3,
body[data-page="home"] .step-card h3,
body[data-page="home"] .stat-card strong {
  color: var(--color-heading);
}

body[data-page="home"] .section--solution .section-grid__content,
body[data-page="home"] .section--proof .section-grid__content {
  max-width: 36rem;
}

body[data-page="home"] .section--solution .check-list,
body[data-page="home"] .section--proof .stat-list {
  margin-top: var(--space-2);
}

body[data-page="home"] .section--faq .section-heading h2,
body[data-page="home"] .section--final-cta h2 {
  max-width: 16ch;
}

body[data-page="home"] .faq-item:hover {
  border-color: var(--color-border-strong);
}

body[data-page="home"] .faq-item summary:hover {
  background-color: rgba(242, 245, 251, 0.7);
}

body[data-page="home"] .faq-item summary:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

body[data-page="home"] .final-cta {
  position: relative;
  overflow: hidden;
}

body[data-page="home"] .final-cta::after {
  content: "";
  position: absolute;
  inset: auto -4rem -4rem auto;
  width: 14rem;
  height: 14rem;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(6, 182, 212, 0.22) 0%,
    rgba(6, 182, 212, 0) 72%
  );
  pointer-events: none;
}

body[data-page="home"] .final-cta__actions .btn {
  min-width: 16rem;
}

body[data-page="home"] .site-footer__grid {
  align-items: center;
}

body[data-page="home"] .site-footer__nav {
  justify-self: end;
}

@media (max-width: 1024px) {
  body[data-page="home"] .hero h1,
  body[data-page="home"] .section-heading h2,
  body[data-page="home"] .section--faq .section-heading h2,
  body[data-page="home"] .section--final-cta h2 {
    max-width: none;
  }

  body[data-page="home"] .site-footer__nav {
    justify-self: start;
  }
}

@media (max-width: 768px) {
  body[data-page="home"] .hero__media::before,
  body[data-page="home"] .final-cta::after {
    display: none;
  }

  body[data-page="home"] .hero__actions .btn,
  body[data-page="home"] .final-cta__actions .btn {
    width: 100%;
    min-width: 0;
  }

  body[data-page="home"] .hero__trust,
  body[data-page="home"] .hero__chips {
    gap: var(--space-2);
  }

  body[data-page="home"] .trust-chip {
    width: 100%;
    justify-content: center;
  }

  body[data-page="home"] .site-footer__grid {
    gap: var(--space-6);
  }
}
