/* ===== HERO SECTION ===== */
#hero {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  opacity: 0;
}

.hero-container {
  max-width: 680px;
  padding: 0 24px;
}

/* ===== HERO BADGE ===== */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 16px;
  border: 1px solid var(--accent-20);
  background: var(--accent-04);
  margin-bottom: 28px;
}

.hero-badge .dot {
  width: 5px;
  height: 5px;
  background: var(--accent-hex);
  animation: pulse-dot 2s ease-in-out infinite;
}

.hero-badge span {
  font-size: 9px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent-hex);
}

/* ===== HERO TYPOGRAPHY ===== */
.hero-headline {
  font-family: var(--font-headline);
  font-size: clamp(34px, 5.5vw, 68px);
  color: var(--text-white);
  line-height: 1.08;
  margin: 0 0 24px 0;
  letter-spacing: -0.01em;
  font-weight: 700;
}

.hero-accent {
  color: var(--accent-hex);
  font-style: normal;
}

.hero-subtitle {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 500px;
  margin: 0 auto;
}
