/* --- HERO SECTION --- */

.hero-container {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
}

.hero-container hgroup {
  margin-bottom: 3rem;
}

.hero-container h1 {
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
  line-height: 1.5;
}

/* ===== NEW: underline always visible ===== */
.hero-highlight {
  position: relative;
  display: inline-block;
  padding-bottom: 0.25rem;
}

.hero-highlight .underline {
  position: absolute;
  left: 0;
  bottom: -0.25rem;
  width: 100%;
  height: 8px;
  overflow: visible;
}

.hero-highlight .underline path {
  fill: none;
  stroke: var(--pico-primary);
  stroke-width: 3;
  stroke-linecap: round;
}
/* End new highlight */

.hero-container p {
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.4;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 2rem;
}

/* Mobile Tweaks */
@media (max-width: 768px) {
  .hero-container {
    padding: 2rem 0;
    min-height: auto;
  }

  .hero-container h1 {
    font-size: 2rem;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }

  .hero-actions a {
    width: 100%;
  }
}
