/* ════════════════════════════════════════
   HERO
════════════════════════════════════════ */

/* Scroll-reveal animation, scoped to this section */
.hero-reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.85s var(--ease), transform 0.85s var(--ease);
}
.hero-reveal.hero-delay-1 { transition-delay: 0.1s; }
.hero-reveal.hero-delay-2 { transition-delay: 0.2s; }
.hero-reveal.hero-delay-3 { transition-delay: 0.3s; }
.hero-reveal.hero-in { opacity: 1; transform: none; }

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

/* full-bleed photo layer */
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    url('https://images.unsplash.com/photo-1540962351504-03099e0a754b?w=2000&q=85')
    center/cover no-repeat;
}
/* Rich gradient: navy-deep → purple overlay */
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(
    120deg,
    rgba(8,15,58,0.97) 0%,
    rgba(8,15,58,0.88) 38%,
    rgba(74,13,143,0.55) 70%,
    rgba(74,13,143,0.2) 100%
  );
}
/* Subtle angled divider */
.hero-angle {
  position: absolute; bottom: -2px; left: 0; right: 0; z-index: 2;
  height: 120px;
  background: var(--white);
  clip-path: polygon(0 100%, 100% 0, 100% 100%);
}

.hero-inner {
  position: relative; z-index: 3;
  padding: 120px 4rem 160px;
  max-width: 1200px; width: 100%;
  margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center;
}

/* Left: copy */
.hero-copy {}

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  margin-bottom: 1.75rem;
  font-size: 11px; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--red);
}
.hero-eyebrow::before {
  content: '';
  display: block; width: 28px; height: 1.5px; background: var(--red);
}

.hero h1 {
  font-family: var(--f-display);
  font-size: clamp(44px, 5.5vw, 72px);
  font-weight: 800; line-height: 1.08;
  color: var(--white); margin-bottom: 1.5rem;
}
.hero h1 em {
  font-style: italic; color: #a87cff;
}

.hero-sub {
  font-size: 16px; font-weight: 300; line-height: 1.8;
  color: rgba(255,255,255,0.68);
  max-width: 460px; margin-bottom: 3rem;
}

.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3.5rem; }

.hero-btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--red); color: var(--white);
  font-size: 13px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 15px 32px; border-radius: 4px;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 24px rgba(232,62,49,0.35);
}
.hero-btn-primary:hover { background: var(--red-light); transform: translateY(-2px); box-shadow: 0 8px 32px rgba(232,62,49,0.45); }

.hero-btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1.5px solid rgba(255,255,255,0.35); color: rgba(255,255,255,0.85);
  font-size: 13px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 14px 28px; border-radius: 4px;
  transition: border-color 0.2s, color 0.2s;
}
.hero-btn-secondary:hover { border-color: var(--white); color: var(--white); }

/* Hero stats row */
.hero-stats {
  display: flex; gap: 2.5rem;
  padding-top: 2.5rem; border-top: 1px solid rgba(255,255,255,0.12);
}
.hero-hstat { display: flex; flex-direction: column; gap: 2px; }
.hero-hstat-n {
  font-family: var(--f-head); font-size: 38px; font-weight: 800;
  color: var(--red); line-height: 1;
}
.hero-hstat-l {
  font-size: 10.5px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}

/* Right: Quiz card */
.hero-quiz {
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 16px;
  padding: 2.5rem;
}
.hero-quiz-tag {
  display: inline-block;
  background: var(--red); color: var(--white);
  font-size: 9.5px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase;
  padding: 4px 12px; border-radius: 20px; margin-bottom: 1.25rem;
}
.hero-quiz-title {
  font-family: var(--f-head); font-size: 32px; font-weight: 700;
  text-transform: uppercase; color: var(--white); line-height: 1.1;
  margin-bottom: 0.5rem;
}
.hero-quiz-sub {
  font-size: 13px; color: rgba(255,255,255,0.55); font-weight: 300;
  line-height: 1.65; margin-bottom: 2rem;
}

.hero-quiz-steps {
  display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 2rem;
}
.hero-quiz-step {
  display: flex; align-items: center; gap: 12px;
  font-size: 12.5px; color: rgba(255,255,255,0.7);
}
.hero-qs-dot {
  width: 28px; height: 28px; border-radius: 50%;
  background: rgba(74,13,143,0.6); border: 1px solid rgba(160,102,232,0.5);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  font-size: 10px; font-weight: 700; color: #c090ff;
}

.hero-quiz-btn {
  display: block; width: 100%; text-align: center;
  background: linear-gradient(135deg, var(--purple), var(--purple-mid));
  color: var(--white); font-size: 13px; font-weight: 700; letter-spacing: 0.06em;
  text-transform: uppercase; padding: 15px; border-radius: 8px;
  transition: opacity 0.2s, transform 0.15s;
  box-shadow: 0 4px 20px rgba(74,13,143,0.4);
}
.hero-quiz-btn:hover { opacity: 0.9; transform: translateY(-1px); }
