*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --navy: #0d1b2a;
  --navy-mid: #1b2d42;
  --gold: #c9a84c;
  --gold-light: #e2c47a;
  --white: #ffffff;
  --off-white: #f5f5f0;
  --text: #2c2c2c;
  --text-muted: #6b7280;
  --radius: 12px;
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── NAV ── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--navy);
  border-bottom: 1px solid rgba(201,168,76,0.2);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.logo {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.04em;
  text-decoration: none;
}

nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

nav a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
}

nav a:hover {
  color: var(--white);
}

.btn-nav {
  background: var(--gold);
  color: var(--navy) !important;
  padding: 8px 20px;
  border-radius: 6px;
  font-weight: 600 !important;
  transition: background 0.2s !important;
}

.btn-nav:hover {
  background: var(--gold-light) !important;
}

/* ── HERO ── */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding: 100px 0 110px;
  text-align: center;
}

.hero-inner {
  max-width: 720px;
}

.eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.eyebrow.light {
  color: var(--gold-light);
}

.hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
}

.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.7);
  max-width: 560px;
  margin: 0 auto 36px;
}

.btn-primary {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 14px 32px;
  border-radius: 8px;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: background 0.2s, transform 0.15s;
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}

.btn-primary.large {
  font-size: 1.05rem;
  padding: 16px 40px;
}

/* ── ABOUT ── */
.about {
  padding: 90px 0;
  background: var(--off-white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-text h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 20px;
  line-height: 1.25;
}

.about-text p {
  color: var(--text-muted);
  margin-bottom: 16px;
  font-size: 1rem;
}

.about-stats {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.stat {
  background: var(--white);
  border-left: 4px solid var(--gold);
  padding: 20px 24px;
  border-radius: 0 var(--radius) var(--radius) 0;
  box-shadow: var(--shadow);
}

.stat-num {
  display: block;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--navy);
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* ── APPLY ── */
.apply {
  padding: 90px 0;
  background: var(--navy);
}

.apply-header {
  text-align: center;
  margin-bottom: 56px;
}

.apply-header h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}

.apply-header p {
  color: rgba(255,255,255,0.65);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto;
}

.email-link {
  color: var(--gold);
  text-decoration: none;
  font-weight: 600;
}

.email-link:hover {
  text-decoration: underline;
}

.requirements-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 56px;
}

.req-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: var(--radius);
  padding: 28px;
  transition: border-color 0.2s, background 0.2s;
}

.req-card:hover {
  border-color: var(--gold);
  background: rgba(201,168,76,0.06);
}

.req-card.wide {
  grid-column: 1 / -1;
}

.req-icon {
  font-size: 1.8rem;
  margin-bottom: 14px;
}

.req-card h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
}

.req-card p {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  line-height: 1.6;
}

.req-card ul {
  margin-top: 12px;
  padding-left: 18px;
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  line-height: 1.8;
}

.cta-block {
  text-align: center;
}

.cta-block p {
  color: rgba(255,255,255,0.6);
  margin-bottom: 16px;
  font-size: 1rem;
}

/* ── FOOTER ── */
.footer {
  background: #080f18;
  padding: 40px 0;
  text-align: center;
}

.footer-logo {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.04em;
  margin-bottom: 6px;
}

.footer-tagline {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}

.footer-copy {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.25);
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .nav-inner {
    height: 60px;
  }

  nav {
    gap: 16px;
  }

  .hero {
    padding: 70px 0 80px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .requirements-grid {
    grid-template-columns: 1fr;
  }

  .req-card.wide {
    grid-column: 1;
  }
}

@media (max-width: 480px) {
  .logo {
    font-size: 1.2rem;
  }

  nav a:not(.btn-nav) {
    display: none;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero-sub {
    font-size: 0.95rem;
  }

  .btn-primary.large {
    font-size: 0.95rem;
    padding: 14px 28px;
  }
}
