/* ── HERO ── */
.hero {
  background: var(--navy);
  min-height: 90vh; display: flex; align-items: center;
  position: relative; overflow: hidden; padding: 80px 0 0;
}
/* Atmospheric depth — no grid */
.hero::before {
  content: '';
  position: absolute; top: -160px; right: -80px;
  width: 800px; height: 800px;
  background: radial-gradient(ellipse, rgba(56,189,248,.14) 0%, transparent 60%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute; bottom: -120px; left: -60px;
  width: 600px; height: 600px;
  background: radial-gradient(ellipse, rgba(45,79,138,.5) 0%, transparent 65%);
  pointer-events: none;
}
/* Subtle top-edge highlight */
.hero-top-line {
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(56,189,248,.4), transparent);
}
.hero-inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 72px; align-items: center;
  padding-bottom: 80px;
}
.hero-eyebrow {
  font-size: 11px; font-weight: 700; letter-spacing: .16em;
  text-transform: uppercase; color: var(--sky);
  display: flex; align-items: center; gap: 10px; margin-bottom: 20px;
  opacity: 0; animation: heroIn .5s var(--ease-out) .05s forwards;
}
.hero-eyebrow::before {
  content: ''; display: inline-block; width: 24px; height: 1.5px;
  background: var(--sky); border-radius: 2px;
}
.hero-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900; font-size: clamp(52px, 7vw, 84px);
  color: white; line-height: .9; letter-spacing: -.02em;
  margin-bottom: 22px;
  opacity: 0; animation: heroIn .6s var(--ease-out) .15s forwards;
}
.hero-title .accent {
  color: var(--sky); display: block; font-style: italic;
}
.hero-sub {
  font-size: clamp(15px, 1.6vw, 17px);
  color: rgba(255,255,255,.68); line-height: 1.75;
  margin-bottom: 36px; max-width: 480px;
  opacity: 0; animation: heroIn .6s var(--ease-out) .25s forwards;
}
.hero-ctas {
  display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 52px;
  opacity: 0; animation: heroIn .6s var(--ease-out) .35s forwards;
}
@keyframes heroIn {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: none; }
}
.btn-hero-primary {
  font-family: 'Barlow', sans-serif; font-size: 15px; font-weight: 700;
  padding: 14px 28px; border-radius: var(--r);
  background: var(--sky); color: var(--navy); border: none; cursor: pointer;
  display: inline-flex; align-items: center; gap: 8px;
  transition: var(--transition); text-decoration: none;
  box-shadow: var(--shadow-sky);
}
.btn-hero-primary:hover { background: #22b0ef; transform: translateY(-2px); box-shadow: 0 8px 28px rgba(56,189,248,.4); }
.btn-hero-inv {
  font-family: 'Barlow', sans-serif; font-size: 15px; font-weight: 600;
  padding: 14px 28px; border-radius: var(--r);
  background: rgba(255,255,255,.1); color: white;
  border: 1.5px solid rgba(255,255,255,.2); cursor: pointer;
  display: inline-flex; align-items: center; gap: 8px;
  transition: var(--transition); text-decoration: none;
  backdrop-filter: blur(8px);
}
.btn-hero-inv:hover { background: rgba(255,255,255,.18); border-color: rgba(255,255,255,.35); transform: translateY(-1px); }

/* Hero stat strip */
.hero-stats-strip {
  opacity: 0; animation: heroIn .6s var(--ease-out) .45s forwards;
  display: flex; border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 28px; gap: 0;
}
.hero-stat { flex: 1; padding: 0 24px 0 0; }
.hero-stat + .hero-stat { border-left: 1px solid rgba(255,255,255,.1); padding-left: 24px; }
.hero-stat-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900; font-size: 30px; color: white; line-height: 1; margin-bottom: 4px;
}
.hero-stat-lbl { font-size: 11px; color: rgba(255,255,255,.5); letter-spacing: .04em; }

/* Hero visual panel — float-in cards */
.hero-visual {
  display: flex; flex-direction: column; gap: 10px;
  opacity: 0; animation: heroIn .7s var(--ease-out) .3s forwards;
}
.hero-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-lg); padding: 16px 18px;
  display: flex; align-items: center; gap: 14px;
  transition: var(--transition); cursor: pointer;
  backdrop-filter: blur(4px);
}
.hero-card:hover { background: rgba(255,255,255,.12); border-color: rgba(56,189,248,.3); transform: translateX(-4px); }
.hero-card-icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: var(--sky);
}
.hero-card-icon i { font-size: 18px; }
.hero-card-title { font-size: 13px; font-weight: 600; color: white; margin-bottom: 2px; line-height: 1.3; }
.hero-card-sub { font-size: 11px; color: rgba(255,255,255,.5); }
.hero-card-arrow { margin-left: auto; color: rgba(255,255,255,.25); font-size: 14px; flex-shrink: 0; transition: var(--transition); }
.hero-card:hover .hero-card-arrow { color: var(--sky); transform: translateX(-2px); }
.hero-card-badge {
  margin-left: auto; flex-shrink: 0;
  font-size: 10px; font-weight: 700; padding: 3px 9px;
  border-radius: var(--r-full);
  background: rgba(56,189,248,.15); color: var(--sky-mid);
}

/* ── DIRECTORY SPOTLIGHT ── */
.section { padding: 80px 0; }
.section-alt { background: var(--surface-2); }
.eyebrow {
  font-size: 11px; font-weight: 700; letter-spacing: .16em;
  text-transform: uppercase; color: var(--sky);
  display: flex; align-items: center; gap: 8px; margin-bottom: 10px;
}
.eyebrow::before {
  content: ''; display: inline-block; width: 16px; height: 1.5px;
  background: var(--sky); border-radius: 2px;
}
.section-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800; font-size: clamp(28px, 4vw, 42px);
  color: var(--navy); line-height: 1.0; letter-spacing: -.01em; margin-bottom: 12px;
}
.section-sub { font-size: 15px; color: var(--text-2); line-height: 1.75; max-width: 520px; }

.spotlight-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.spotlight-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 22px;
  cursor: pointer; transition: var(--transition);
  text-decoration: none; display: block;
  box-shadow: var(--shadow-1);
}
.spotlight-card:hover {
  border-color: rgba(56,189,248,.4);
  box-shadow: var(--shadow-2);
  transform: translateY(-3px);
}
.spotlight-icon {
  width: 48px; height: 48px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px; font-size: 22px;
}
.spotlight-title { font-size: 14px; font-weight: 700; color: var(--text-1); margin-bottom: 6px; }
.spotlight-desc { font-size: 12px; color: var(--text-2); line-height: 1.6; margin-bottom: 14px; }
.spotlight-cta {
  font-size: 12px; font-weight: 700; color: var(--navy);
  display: flex; align-items: center; gap: 4px; transition: var(--transition);
}
.spotlight-card:hover .spotlight-cta { color: var(--sky); gap: 7px; }

/* ── QUIZ CTA ── */
.quiz-section {
  background: var(--navy); padding: 80px 0;
  position: relative; overflow: hidden;
}
.quiz-section::before {
  content: '';
  position: absolute; top: -100px; right: -60px;
  width: 600px; height: 600px;
  background: radial-gradient(ellipse, rgba(56,189,248,.12) 0%, transparent 65%);
  pointer-events: none;
}
.quiz-section::after {
  content: '';
  position: absolute; bottom: -80px; left: -40px;
  width: 400px; height: 400px;
  background: radial-gradient(ellipse, rgba(45,79,138,.6) 0%, transparent 65%);
  pointer-events: none;
}
.quiz-inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr auto;
  gap: 56px; align-items: center;
}
.quiz-eyebrow {
  font-size: 11px; font-weight: 700; letter-spacing: .16em;
  text-transform: uppercase; color: var(--sky);
  display: flex; align-items: center; gap: 8px; margin-bottom: 12px;
}
.quiz-eyebrow::before { content: ''; display: inline-block; width: 16px; height: 1.5px; background: var(--sky); border-radius: 2px; }
.quiz-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900; font-size: clamp(30px, 4vw, 50px);
  color: white; line-height: .95; letter-spacing: -.02em; margin-bottom: 14px;
}
.quiz-sub { font-size: 15px; color: rgba(255,255,255,.65); line-height: 1.7; max-width: 480px; }
.quiz-chips { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 20px; }
.quiz-chip {
  font-size: 11px; font-weight: 600; padding: 4px 12px;
  border-radius: var(--r-full);
  background: rgba(255,255,255,.08); color: rgba(255,255,255,.7);
  border: 1px solid rgba(255,255,255,.12);
}
.quiz-cta-col { flex-shrink: 0; text-align: center; }

/* ── SCHOLARSHIPS ── */
.schol-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.schol-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--r-lg); overflow: hidden;
  text-decoration: none; display: block; color: inherit;
  transition: var(--transition); box-shadow: var(--shadow-1);
}
.schol-card:hover { border-color: rgba(56,189,248,.4); box-shadow: var(--shadow-2); transform: translateY(-3px); }
.schol-featured-bar {
  background: var(--navy); color: white;
  font-size: 10px; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; padding: 6px 16px;
  display: flex; align-items: center; gap: 6px;
}
.schol-body { padding: 20px; }
.schol-top { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 14px; }
.schol-logo {
  width: 42px; height: 42px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800; font-size: 12px; flex-shrink: 0;
}
.schol-name { font-size: 13px; font-weight: 700; color: var(--text-1); margin-bottom: 2px; line-height: 1.3; }
.schol-org { font-size: 11px; color: var(--text-3); }
.schol-amount {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600; font-size: 26px; color: var(--green);
  margin-bottom: 4px; line-height: 1;
}
.schol-deadline { font-size: 12px; color: var(--text-2); margin-bottom: 12px; }
.schol-deadline strong { color: var(--text-1); }
.schol-footer { display: flex; align-items: center; justify-content: space-between; padding-top: 12px; border-top: 1px solid var(--border); margin-top: 12px; }
.badge {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 10px; font-weight: 700; padding: 3px 9px;
  border-radius: var(--r-full); white-space: nowrap;
}
.badge-sky    { background: var(--sky-light); color: #0369a1; }
.badge-green  { background: var(--green-bg); color: var(--green); }
.badge-amber  { background: var(--amber-bg); color: var(--amber); }
.badge-purple { background: var(--purple-bg); color: var(--purple); }
.badge-red    { background: var(--red-bg); color: var(--red); }
.badge-teal   { background: var(--teal-bg); color: var(--teal); }
.badge-gray   { background: var(--surface-2); color: var(--text-2); }
.badge-navy   { background: var(--navy); color: white; }
.tags { display: flex; gap: 5px; flex-wrap: wrap; }

/* ── MISSION STRIP ── */
.mission-section {
  background: var(--navy); padding: 64px 0;
  position: relative; overflow: hidden;
}
.mission-section::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(56,189,248,.3), transparent);
}
.mission-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: rgba(255,255,255,.08); border-radius: var(--r-lg); overflow: hidden;
}
.mission-item {
  background: var(--navy); padding: 36px 32px;
}
.mission-icon-wrap {
  width: 44px; height: 44px; border-radius: 11px;
  background: rgba(56,189,248,.12);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.mission-icon-wrap i { font-size: 20px; color: var(--sky); }
.mission-title { font-size: 15px; font-weight: 700; color: white; margin-bottom: 8px; }
.mission-desc { font-size: 13px; color: rgba(255,255,255,.58); line-height: 1.65; }

/* ── SCROLL REVEAL ── */
.fade-up { opacity: 0; transform: translateY(20px); transition: opacity .5s var(--ease-out), transform .5s var(--ease-out); }
.fade-up.visible { opacity: 1; transform: none; }
.fade-up:nth-child(2) { transition-delay: .07s; }
.fade-up:nth-child(3) { transition-delay: .14s; }
.fade-up:nth-child(4) { transition-delay: .21s; }

/* ── RESPONSIVE ── */
@media(max-width:1024px) {
  .spotlight-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .hero { min-height: auto; padding: 72px 0 0; }
  .quiz-inner { grid-template-columns: 1fr; text-align: center; }
  .quiz-chips { justify-content: center; }
  .quiz-eyebrow { justify-content: center; }
}
@media(max-width:768px) {
  .schol-grid { grid-template-columns: 1fr; }
  .mission-grid { grid-template-columns: 1fr; }
  .section { padding: 56px 0; }
  .hero-ctas { flex-direction: column; }
  .btn-hero-primary, .btn-hero-inv { width: 100%; justify-content: center; }
  .hero-stats-strip { flex-direction: column; gap: 16px; }
  .hero-stat + .hero-stat { border-left: none; padding-left: 0; border-top: 1px solid rgba(255,255,255,.1); padding-top: 16px; }
}
@media(max-width:480px) {
  .spotlight-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .hero { padding: 56px 0 0; }
}
