.hero {
  position: relative;
  min-height: calc(100vh - 72px);
  display: flex;
  align-items: center;
  padding: 96px 0 64px;
  overflow: hidden;
}

.hero .container { position: relative; z-index: 2; }
.hero-inner { text-align: center; margin: 0 auto; max-width: 860px; }

.hero-title {
  margin: 0 0 16px;
  font-size: clamp(40px, 6vw, 60px);
  line-height: 1.3;
  padding-bottom: 6px;
  display: inline-block;
  background: linear-gradient(90deg, var(--brand), var(--brand-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  white-space: normal;
  overflow-wrap: anywhere;
}

.hero-title::before {
  content: "❤";
  font-size: 1.1em;
  line-height: 1;
  display: inline-block;
  vertical-align: baseline;
  color: #e63946;
  margin-right: 0.05em;
  transform-origin: 50% 75%;
  animation: heroPulse 1.8s ease-in-out infinite;
}

@keyframes heroPulse {
  0%, 100% { transform: scale(1);    filter: brightness(1); }
  50%      { transform: scale(1.18); filter: brightness(1.15); }
}

.hero .lead {
  margin: 0 auto 24px;
  color: var(--muted);
  max-width: 780px;
}

.hero .cta-row {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-subnote {
  margin-top: 10px;
  font-size: 14px;
  color: var(--muted);
}

.scroll-indicator {
  position: absolute;
  left: 50%;
  bottom: 14px;
  transform: translateX(-50%);
  font-size: 12px;
  letter-spacing: .12em;
  color: var(--muted);
  opacity: .8;
  animation: breathe 3s ease-in-out infinite;
}

@keyframes breathe {
  0%,100% { opacity: .35; transform: translate(-50%,0); }
  50%     { opacity: .9;  transform: translate(-50%,-4px); }
}

@media (max-width: 640px) {
  .hero {
    min-height: auto;
    padding: 160px 0;  /* tightened for mobile */
  }
  .hero-subnote { font-size: 13px; }
}

/* Domain-forward micro elements */
.hero-points{
  display:flex;gap:14px;justify-content:center;flex-wrap:wrap;
  margin:14px 0 4px;padding:0;list-style:none;color:var(--muted);font-size:14px
}
.hero-points li{
  padding:6px 10px;border:1px solid var(--line);border-radius:999px;background:rgba(255,255,255,.03)
}

.hero-proof{
  display:flex;gap:12px;justify-content:center;align-items:center;flex-wrap:wrap;
  margin-top:10px
}
.hero-proof .badge{
  font-size:12px;color:var(--muted);
  padding:6px 10px;border:1px dashed var(--line);border-radius:999px;background:rgba(255,255,255,.02)
}
.hero-proof .tiny-link{
  font-size:12px;color:var(--brand);text-decoration:none
}
.hero-proof .tiny-link:hover{ text-decoration:underline }

.hero .cta-row .btn.primary{
  padding:12px 18px;font-weight:800
}

@media (max-width:640px){
  .hero-points{gap:10px}
  .hero-proof{gap:8px}
}

/* Core Benefits Strip */
.hero-points {
  display: flex;
  gap: 28px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.hero-points li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 400;
  color: var(--muted);
}

.point-icon {
  font-size: 18px;
  color: var(--brand);
  flex-shrink: 0;
}

@media (max-width: 640px) {
  .hero-points {
    gap: 16px;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}
