/* ── Hero ─────────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: transparent;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 40%, var(--c-bg) 100%);
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  animation: fadeInUp 1s ease both;
  padding: 8rem 1.5rem 10rem;
}

.hero__eyebrow {
  font-family: var(--f-mono);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-accent);
  margin-bottom: 1rem;
}

.hero__title {
  font-family: var(--f-head);
  font-size: clamp(2.5rem, 7vw, 5.5rem);
  font-weight: 700;
  line-height: 1.05;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, var(--c-text) 30%, var(--c-accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__lead {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--c-text-muted);
  max-width: 720px;
  margin: 0 auto 2.5rem;
  line-height: 1.8;
}

.hero__cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero__cta .btn--primary {
  animation: pulse-glow 3s ease infinite;
}

/* Scroll hint */
.hero__scroll-hint {
  position: absolute;
  bottom: 6rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  text-decoration: none;
  transition: opacity var(--t-normal);
}
.hero__scroll-hint:hover { opacity: 0.6; }

.hero__scroll-arrow {
  display: block;
  width: 20px;
  height: 20px;
  border-right: 2.5px solid var(--c-accent-h);
  border-bottom: 2.5px solid var(--c-accent-h);
  transform: rotate(45deg);
  animation: arrow-bounce 1.4s ease infinite;
}

.hero__scroll-arrow:nth-child(1) { opacity: 0.6; animation-delay: 0s; filter: drop-shadow(0 0 4px var(--c-accent-h)); }
.hero__scroll-arrow:nth-child(2) { opacity: 1;   animation-delay: 0.2s; filter: drop-shadow(0 0 8px var(--c-accent-h)); }

@keyframes arrow-bounce {
  0%, 100% { transform: rotate(45deg) translate(0, 0); }
  50%       { transform: rotate(45deg) translate(3px, 3px); }
}

/* ── Responsive ───────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero__content { padding: 6rem 1.5rem 8rem; }
}
@media (max-width: 768px) {
  .hero__content { padding: 5rem 1.25rem 7rem; }
  .hero__scroll-hint { bottom: 3.5rem; }
}
@media (max-width: 480px) {
  .hero__content { padding: 4rem 1rem 6rem; }
  .hero__scroll-hint { bottom: 2.5rem; }
}
