/* ===================== VARIABLES ===================== */
:root {
  --navy: #0B1F3A;
  --navy-light: #1B4A82;
  --gold: #D4A537;
  --gold-light: #F2CE6B;
  --ink: #1E2430;
  --muted: #5B6472;
  --bg-soft: #F7F8FA;
  --border: #E7E9EE;
  --white: #FFFFFF;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(11, 31, 58, 0.08);
  --font-head: 'Poppins', 'Segoe UI', sans-serif;
  --font-body: 'Inter', 'Segoe UI', sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
h1, h2, h3 { font-family: var(--font-head); color: var(--navy); margin: 0 0 .5em; line-height: 1.2; }
p { margin: 0 0 1em; color: var(--muted); }
ul { margin: 0; padding: 0; }

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .8rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: .6em;
}
.center { text-align: center; }
.section-sub.center { max-width: 560px; margin: 0 auto 3rem; }

/* ===================== BUTTONS ===================== */
.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: .95rem;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  border: 2px solid transparent;
  cursor: pointer;
}
.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy);
  box-shadow: 0 8px 20px rgba(212, 165, 55, 0.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 26px rgba(212, 165, 55, 0.45); }
.btn-ghost {
  color: var(--white);
  border-color: rgba(255,255,255,.5);
}
.btn-ghost:hover { border-color: #fff; background: rgba(255,255,255,.08); }
.btn-small { padding: 10px 20px; font-size: .85rem; }
.btn-full { width: 100%; text-align: center; border: none; font-family: var(--font-body); }

/* ===================== HEADER ===================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.brand-logo { height: 32px; }
.main-nav { display: flex; align-items: center; gap: 2rem; }
.main-nav a:not(.btn) {
  font-weight: 500;
  color: var(--ink);
  font-size: .95rem;
  position: relative;
}
.main-nav a:not(.btn)::after {
  content: '';
  position: absolute; left: 0; bottom: -6px;
  width: 0; height: 2px; background: var(--gold);
  transition: width .2s ease;
}
.main-nav a:not(.btn):hover::after { width: 100%; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px; height: 40px;
  background: none; border: none; cursor: pointer;
}
.nav-toggle span { display: block; height: 2px; background: var(--navy); border-radius: 2px; }

/* ===================== HERO ===================== */
.hero {
  background-size: cover;
  background-position: center;
  padding: 130px 0 110px;
  position: relative;
}
.hero-inner { max-width: 720px; }
.hero .eyebrow { color: var(--gold-light); }
.hero h1 {
  color: #fff;
  font-size: clamp(2.1rem, 4.5vw, 3.4rem);
  margin-bottom: .4em;
}
.hero-sub {
  color: rgba(255,255,255,.85);
  font-size: 1.1rem;
  max-width: 560px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 2rem; }

/* ===================== STATS ===================== */
.stats { background: var(--navy); padding: 40px 0; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
  gap: 20px;
}
.stat-num { display: block; font-family: var(--font-head); font-size: 2rem; color: var(--gold-light); font-weight: 700; }
.stat-label { color: rgba(255,255,255,.75); font-size: .85rem; letter-spacing: .03em; }

/* ===================== ABOUT ===================== */
.about { padding: 100px 0; }
.about-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 60px; align-items: center; }
.about h2 { font-size: clamp(1.7rem, 3vw, 2.3rem); }
.check-list { list-style: none; margin-top: 1.5rem; }
.check-list li {
  padding-left: 30px;
  position: relative;
  margin-bottom: .8rem;
  color: var(--ink);
  font-weight: 500;
}
.check-list li::before {
  content: '✓';
  position: absolute; left: 0; top: 0;
  color: var(--gold);
  font-weight: 700;
  background: rgba(212,165,55,.12);
  width: 20px; height: 20px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .75rem;
}
.about-visual { display: flex; flex-direction: column; gap: 20px; }
.about-card {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
}
.about-card h3 { font-size: 1.1rem; }
.about-card p { margin: 0; }
.about-card.accent {
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
}
.about-card.accent h3, .about-card.accent p { color: #fff; }
.about-card.accent p { color: rgba(255,255,255,.85); }

/* ===================== HOW IT WORKS ===================== */
.how { padding: 100px 0; background: var(--bg-soft); }
.how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 3rem;
}
.how-step {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow);
}
.how-num {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.6rem;
  color: var(--gold);
  display: block;
  margin-bottom: .6rem;
}
.how-step h3 { font-size: 1.15rem; }
.how-step p { margin: 0; }

/* ===================== TEAM ===================== */
.team { padding: 100px 0; }
.team-subhead {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--navy);
  margin: 3rem 0 1.4rem;
  text-align: center;
}
.team-subhead:first-of-type { margin-top: 0; }
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}
.team-grid-2 {
  grid-template-columns: repeat(2, 1fr);
  max-width: 700px;
  margin: 0 auto;
}

/* Recruiter/Scout carousel */
.team-carousel {
  display: flex;
  align-items: center;
  gap: 14px;
}
.team-track {
  display: flex;
  gap: 26px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 4px 4px 14px;
  flex: 1;
  min-width: 0;
}
.team-track::-webkit-scrollbar { height: 6px; }
.team-track::-webkit-scrollbar-thumb { background: var(--border); border-radius: 999px; }
.team-track .team-card {
  flex: 0 0 260px;
  scroll-snap-align: start;
}
.carousel-btn {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--navy);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: var(--shadow);
  transition: background .15s ease, color .15s ease;
}
.carousel-btn:hover { background: var(--navy); color: #fff; }
.team-card {
  text-align: center;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 22px;
  transition: transform .2s ease, box-shadow .2s ease;
}
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.team-avatar {
  width: 76px; height: 76px;
  border-radius: 50%;
  margin: 0 auto 18px;
  display: flex; align-items: center; justify-content: center;
  background: var(--avatar-color, var(--navy));
  color: #fff;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.3rem;
}
.team-card h3 { font-size: 1.05rem; margin-bottom: .2em; }
.team-role {
  display: inline-block;
  font-size: .78rem;
  font-weight: 600;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .04em;
  margin-bottom: .8rem;
}
.team-card p { font-size: .9rem; margin: 0; }
.team-note {
  text-align: center;
  font-size: .82rem;
  color: var(--muted);
  margin-top: 2.5rem;
}
.team-note code { background: var(--bg-soft); padding: 2px 6px; border-radius: 4px; }

/* ===================== FAQ ===================== */
.faq { padding: 100px 0; background: var(--bg-soft); }
.faq-list {
  max-width: 760px;
  margin: 3rem auto 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.faq-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 30px;
}
.faq-item h3 { font-size: 1.05rem; margin-bottom: .4em; }
.faq-item p { margin: 0; }

/* ===================== CONTACT ===================== */
.contact {
  background-size: cover;
  background-position: center;
  padding: 100px 0;
}
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.contact-intro .eyebrow { color: var(--gold-light); }
.contact-intro h2 { color: #fff; font-size: clamp(1.7rem, 3vw, 2.2rem); }
.contact-intro p { color: rgba(255,255,255,.82); }
.contact-details { display: flex; flex-direction: column; gap: 6px; margin-top: 1.5rem; }
.contact-details a { color: var(--gold-light); font-weight: 600; font-size: 1.05rem; }
.contact-details span { color: rgba(255,255,255,.65); font-size: .88rem; }

.contact-form {
  background: #fff;
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: 0 20px 50px rgba(0,0,0,.25);
}
.form-row { margin-bottom: 18px; }
.form-row label {
  display: block;
  font-size: .85rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}
.form-row input, .form-row select, .form-row textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: .95rem;
  color: var(--ink);
  background: var(--bg-soft);
  resize: vertical;
}
.form-row input:focus, .form-row select:focus, .form-row textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: #fff;
}
.form-note { font-size: .85rem; margin: 10px 0 0; text-align: center; }
.required-mark { color: #b23b3b; }

/* ===================== FOOTER ===================== */
.site-footer { background: var(--navy); padding: 56px 0 30px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.footer-logo { height: 28px; margin-bottom: 12px; }
.site-footer p { color: rgba(255,255,255,.6); font-size: .88rem; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { color: rgba(255,255,255,.8); font-size: .92rem; }
.footer-links a:hover { color: var(--gold-light); }
.footer-contact { display: flex; flex-direction: column; gap: 8px; }
.footer-contact a { color: var(--gold-light); font-weight: 600; }
.footer-grid + .container p,
.footer-contact p { margin-top: 10px; font-size: .8rem; }

/* ===================== SCROLL REVEAL ===================== */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in-view { opacity: 1; transform: translateY(0); }

/* ===================== RESPONSIVE ===================== */
@media (max-width: 900px) {
  .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .how-grid, .team-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); row-gap: 24px; }
  .footer-grid { grid-template-columns: 1fr; text-align: left; }
}
@media (max-width: 720px) {
  .main-nav {
    position: fixed;
    top: 76px; left: 0; right: 0;
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    padding: 20px 24px;
    gap: 16px;
    border-bottom: 1px solid var(--border);
    transform: translateY(-130%);
    transition: transform .25s ease;
  }
  .main-nav.open { transform: translateY(0); }
  .nav-toggle { display: flex; }
  .hero { padding: 90px 0 70px; }
  .team-grid { grid-template-columns: 1fr; }
}
