/* ═══════════════════════════════════════════════════════════════
   DIRECTION D — homepage hero (navy band + sample report card)
   Loaded by index.html only, AFTER styles.css + redesign-shared.css.
   Everything here is scoped under .hero so it can't leak onto other
   pages that also load redesign-shared.css.
   ═══════════════════════════════════════════════════════════════ */

/* ── HERO: left-aligned two-column grid, full-bleed navy band ── */
.hero {
  display: block;
  min-height: auto;
  text-align: left;
  max-width: 1120px;
  margin: 0 auto;
  padding: 140px 44px 56px;
  position: relative;
  z-index: 1;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 100vw;
  margin-left: -50vw;
  background: var(--navy-deep);
  z-index: -1;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 56px;
  align-items: start;
}

/* badge pill → uppercase kicker */
.hero-badge {
  background: none;
  border: none;
  border-radius: 0;
  padding: 0;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 16px;
  animation: none;
}
.badge-dot { display: none; }

.hero h1 {
  font-size: clamp(2.3rem, 4.5vw, 3.3rem);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.025em;
  color: #fff;
  max-width: none;
  margin-bottom: 0;
  animation: none;
}
.hero h1 .u { box-shadow: inset 0 -0.18em 0 rgba(244,124,32,0.5); }
.h1-line2 {
  display: block;
  margin-top: 16px;
  font-size: clamp(1.02rem, 1.6vw, 1.2rem);
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0;
  color: #C7D0F0;
  background: none !important;
  -webkit-background-clip: initial !important;
  background-clip: initial !important;
  -webkit-text-fill-color: #C7D0F0 !important;
}
.hero-sub {
  font-size: 1.02rem;
  font-weight: 400;
  color: #9AA6CE;
  max-width: 48ch;
  margin: 16px 0 0;
  animation: none;
}

/* CTA row (replaces glass search-card) */
.cta-row { margin-top: 28px; display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.btn-primary {
  display: inline-block;
  background: var(--orange);
  color: #fff;
  text-decoration: none;
  padding: 14px 28px;
  font-size: 0.94rem;
  font-weight: 600;
  border-radius: 6px;
  transition: background 0.15s;
}
.btn-primary:hover { background: #d96a15; }
.cta-note { font-size: 0.82rem; color: #9AA6CE; }

/* ── SAMPLE REPORT CARD (right column, reuses demo-* classes) ── */
.report {
  border: none;
  border-radius: 10px;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(10,18,50,0.28);
}
.report-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 13px 18px;
  border-bottom: 1px solid var(--line);
}
.report-title { font-weight: 600; font-size: 0.85rem; color: var(--inkD); }
.report-tag {
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.report-foot {
  padding: 12px 18px;
  background: #FAF8F3;
  border-top: 1px solid var(--line);
  font-size: 0.8rem;
}
.report-foot a { color: var(--navy); font-weight: 600; text-decoration: none; }
.report-foot a:hover { color: var(--orange); }

.demo-profiles { display: block; max-width: none; margin: 0; }
.demo-profile-card {
  border: none;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  background: #fff;
  opacity: 1;
  padding: 14px 18px;
}
.demo-profile-card:last-child { border-bottom: none; }
.demo-rank { display: none; }
.demo-avatar {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  font-family: 'Manrope', sans-serif !important;
  font-weight: 700;
  font-size: 0.82rem;
  background: var(--navy) !important;
  color: #fff !important;
}
.demo-avatar.alt  { background: var(--orange) !important; }
.demo-avatar.alt2 { background: var(--navy-deep) !important; }
.demo-profile-name { font-weight: 600; color: var(--inkD); }
.demo-score-num {
  font-weight: 800;
  background: none !important;
  -webkit-background-clip: initial !important;
  background-clip: initial !important;
  -webkit-text-fill-color: var(--navy-deep) !important;
  color: var(--navy-deep) !important;
}

/* ── STATS: top-border bars, left-aligned, on the navy band ── */
.hero .stats-row {
  justify-content: flex-start;
  gap: 0;
  margin-top: 56px;
  animation: none;
}
.hero .stat {
  text-align: left;
  flex: 1;
  border-top: 3px solid rgba(255,255,255,0.18);
  padding: 16px 24px 0 0;
  margin-right: 28px;
}
.hero .stat:first-child { border-top-color: var(--orange); }
.hero .stat:last-child { margin-right: 0; }
.hero .stat-num {
  font-weight: 800;
  background: none !important;
  -webkit-background-clip: initial !important;
  background-clip: initial !important;
  -webkit-text-fill-color: #fff !important;
  color: #fff !important;
}
.hero .stat-label { color: #9AA6CE; }
.hero .stat-divider { display: none; }

/* ── SPOTLIGHT: flatten tabs and badges ── */
.spot-tab { border-radius: 6px !important; }
.spot-badge { border-radius: 4px !important; }

/* ── WHY FREEFINDTALENT: 4-up grid ── */
@media (min-width: 1024px) {
  .features-grid { grid-template-columns: repeat(4, 1fr); }
}

/* ── RESPONSIVE ── */
@media (max-width: 920px) {
  .hero { padding: 120px 24px 32px; }
  .hero-grid { grid-template-columns: 1fr; gap: 36px; }
  .hero .stats-row { flex-wrap: wrap; }
  .hero .stat { flex-basis: 40%; margin-right: 20px; margin-bottom: 16px; }
}
@media (max-width: 640px) {
  .demo-profile-name,
  .demo-profile-title { white-space: normal; overflow: visible; text-overflow: clip; }
  .demo-score-num { font-size: 1rem; }
}
