/* ============================================
   HERO SECTIONS
   ============================================ */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 6rem;
}

.hero__content {
  position: relative;
  z-index: 2;
}

.hero__label {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: var(--space-xl);
  display: inline-flex;
  align-items: center;
  gap: var(--space-md);
}

.hero__label::before {
  content: "";
  width: 2rem;
  height: 1px;
  background: var(--color-accent);
}

.hero__title {
  font-size: var(--text-5xl);
  font-weight: var(--weight-bold);
  line-height: 1.05;
  margin-bottom: var(--space-2xl);
  max-width: 14ch;
}

.hero__title span {
  color: var(--color-accent);
  position: relative;
}

.hero__subtitle {
  font-size: var(--text-xl);
  color: var(--color-text-secondary);
  max-width: 50ch;
  line-height: 1.6;
  margin-bottom: var(--space-3xl);
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
  flex-wrap: wrap;
}

.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  color: var(--color-text-muted);
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  animation: float 3s ease-in-out infinite;
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--color-accent), transparent);
}

/* Hero gradient background */
.hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  overflow: hidden;
}

.hero__bg::before {
  content: "";
  position: absolute;
  top: -30%;
  right: -10%;
  width: 60vw;
  height: 60vw;
  background: radial-gradient(
    ellipse,
    var(--color-accent-glow),
    transparent 70%
  );
  opacity: 0.6;
  animation: pulse 8s ease-in-out infinite alternate;
}

.hero__bg::after {
  content: "";
  position: absolute;
  bottom: -20%;
  left: -15%;
  width: 50vw;
  height: 50vw;
  background: radial-gradient(
    ellipse,
    rgba(201, 169, 110, 0.05),
    transparent 70%
  );
  opacity: 0.4;
}

/* --- Page Hero (non-home pages) --- */
.page-hero {
  padding: calc(6rem + var(--space-5xl)) 0 var(--space-4xl);
  position: relative;
}

.page-hero__label {
  font-family: var(--font-mono);
  font-size: var(--text-xs);
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: var(--space-lg);
  display: inline-flex;
  align-items: center;
  gap: var(--space-md);
}

.page-hero__label::before {
  content: "";
  width: 1.5rem;
  height: 1px;
  background: var(--color-accent);
}

.page-hero__title {
  font-size: var(--text-4xl);
  margin-bottom: var(--space-xl);
}

.page-hero__text {
  font-size: var(--text-lg);
  color: var(--color-text-secondary);
  max-width: 55ch;
  line-height: 1.7;
}

@keyframes float {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(-8px);
  }
}

@keyframes pulse {
  0% {
    opacity: 0.4;
    transform: scale(1);
  }
  100% {
    opacity: 0.7;
    transform: scale(1.05);
  }
}
