/* =========================
   HOME HERO
========================= */

:root {
  --font-sans: "DM Sans", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  --font-mono: "DM Mono", ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
}

* {
    font-family: var(--font-sans);
}

.home-hero {
  position: relative;
  padding: clamp(56px, 8vw, 96px) 0;
  background:
    radial-gradient(circle at center, rgba(0, 0, 0, 0.04), transparent 60%),
    var(--c-bg-bright);
  overflow: hidden;
}

.home-hero__inner {
  display: grid;
  justify-items: center;
  gap: var(--sp-4);
}

.home-hero__badge {
  display: inline-flex;
  align-items: center;
  padding: 10px 18px;
  border-radius: var(--r-round);
  background: var(--c-bg-white);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.06);
  margin: 0 0 var(--sp-4);
}

.home-hero__title {
  margin: 0 0 var(--sp-3);
  color: var(--c-text);
}

.home-hero__subtitle {
  max-width: 54ch;
  margin: 0 0 var(--sp-6);
}

.home-hero__cta {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--sp-3);
  flex-wrap: wrap;
  margin-bottom: var(--sp-7);
}

.home-hero__rating {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.home-hero__star {
  color: var(--Orange-100);
  font-size: 1.1em;
  line-height: 1;
}

.home-hero__score {
  color: var(--c-text);
  font-weight: 700;
}

.home-hero__review-link {
  color: inherit;
  text-decoration: none;
}

.home-hero__review-link:hover {
  text-decoration: underline;
}

@media (max-width: 480px) {
  .home-hero__cta {
    width: 100%;
  }

  .home-hero__cta .btn {
    width: 100%;
    justify-content: center;
  }
}