/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px 80px;
  position: relative;
}
.hero-glow {
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
  width: min(600px, 100vw);
  height: 400px;
  pointer-events: none;
  background: radial-gradient(
    ellipse,
    rgba(250, 204, 21, 0.08) 0%,
    transparent 70%
  );
  border-radius: 50%;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--card);
  border: 1px solid var(--yellow-dim);
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 0.75rem;
  color: var(--yellow);
  margin-bottom: 28px;
  animation: fadeDown 0.6s ease both;
}
.hero h1 {
  font-family: var(--font-title);
  font-size: clamp(2.8rem, 7vw, 5rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 24px;
  animation: fadeDown 0.6s 0.1s ease both;
}
.hero h1 span {
  background: linear-gradient(135deg, var(--yellow) 30%, var(--blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  color: var(--white2);
  font-size: 0.95rem;
  line-height: 1.8;
  max-width: 540px;
  margin: 0 auto 40px;
  animation: fadeDown 0.6s 0.2s ease both;
}
.hero-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeDown 0.6s 0.3s ease both;
}
.btn-hero {
  padding: 14px 32px;
  background: linear-gradient(135deg, var(--yellow), var(--yellow-dim));
  color: #0e0e14;
  font-weight: 800;
  font-size: 0.9rem;
  font-family: var(--font-body);
  border: none;
  border-radius: 12px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s;
  display: inline-block;
}
.btn-hero:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px var(--yellow-glow);
}
.btn-ghost {
  padding: 14px 32px;
  background: transparent;
  color: var(--white2);
  font-weight: 600;
  font-size: 0.9rem;
  font-family: var(--font-body);
  border: 1px solid var(--border);
  border-radius: 12px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s;
  display: inline-block;
}
.btn-ghost:hover {
  border-color: var(--yellow-dim);
  color: var(--yellow);
}
