body {
  margin: 0;
}

.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  min-height: 100svh;
  padding: 2rem 1.5rem 0;
  background-image: url("../images/hero-bg-mobile.webp");
  background-size: cover;
  background-position: top center;
  color: #fff;
  text-align: center;
  overflow: hidden;
}

@media (min-width: 768px) {
  .hero {
    justify-content: center;
    align-items: flex-start;
    padding: 4rem 6rem;
    background-image: url("../images/hero-bg-desktop.webp");
    background-position: left center;
    text-align: left;
  }
}

.hero__content {
  max-width: 38rem;
  transform: translateY(-10%);
}

@media (min-width: 768px) {
  .hero__content {
    transform: none;
  }
}

.hero__eyebrow {
  display: inline-block;
  margin: 0 0 0.75rem;
  padding: 0.35rem 1rem;
  border: 1px solid var(--accent);
  border-radius: 999px;
  color: var(--accent);
  font-family: var(--font-sans);
  font-size: clamp(0.8rem, 1.5vw, 0.9rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero__title {
  margin: 0 0 1rem;
  font-family: var(--font-sans);
  font-size: clamp(1.5rem, 4.5vw, 2.25rem);
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.hero__subtitle {
  margin: 0 0 1.5rem;
  font-family: var(--font-sans);
  font-size: clamp(0.95rem, 2.5vw, 1.15rem);
  line-height: 1.4;
}

.hero__highlight {
  background-color: transparent;
  color: var(--accent);
  font-weight: 700;
}

.hero__cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  min-height: 3rem;
  padding: 0.9rem 2rem;
  border-radius: 999px;
  background: linear-gradient(135deg, color-mix(in oklch, var(--accent), white 25%), var(--accent) 65%);
  color: var(--accent-foreground);
  font-family: var(--font-sans);
  font-size: clamp(0.95rem, 2vw, 1.05rem);
  font-weight: 700;
  text-decoration: none;
  box-shadow: var(--shadow-lg);
  transition: filter 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.hero__cta::before {
  content: "";
  position: absolute;
  inset: -4px;
  z-index: -1;
  border-radius: inherit;
  background: var(--accent);
  animation: hero-cta-glow 2.8s ease-in-out infinite;
}

.hero__cta::after {
  content: "›";
  transition: transform 0.2s ease;
}

.hero__cta:hover,
.hero__cta:active {
  filter: brightness(0.92);
  transform: translateY(-2px);
  box-shadow: var(--shadow-xl);
}

.hero__cta:hover::before {
  animation-play-state: paused;
  opacity: 0;
}

.hero__cta:hover::after {
  transform: translateX(3px);
}

.hero__cta:focus-visible {
  outline: 2px solid var(--ring);
  outline-offset: 2px;
}

@keyframes hero-cta-glow {
  0%, 100% { opacity: 0; }
  50% { opacity: 0.45; }
}

@media (prefers-reduced-motion: reduce) {
  .hero__cta::before {
    animation: none;
    opacity: 0;
  }
}

.hero__list {
  margin: 1.5rem 0 0;
  padding-left: 0;
  list-style: none;
  font-family: var(--font-sans);
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  line-height: 1.4;
  text-align: center;
}

@media (min-width: 768px) {
  .hero__list {
    text-align: left;
  }
}

.hero__list li + li {
  margin-top: 0.5rem;
}
