*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy: #060c1a;
  --navy-mid: #0d1830;
  --navy-light: #152040;
  --gold: #c9a84c;
  --gold-light: #e2c06a;
  --gold-dim: rgba(201,168,76,0.15);
  --white: #ffffff;
  --text: #c8d4e8;
  --muted: #6b7fa0;
  --border: rgba(255,255,255,0.08);
  --radius: 16px;
  --radius-sm: 10px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--navy);
  color: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

/* ── NAV ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 20px 0;
  transition: background 0.3s, backdrop-filter 0.3s, border-color 0.3s;
  border-bottom: 1px solid transparent;
}
.nav-scrolled {
  background: rgba(6,12,26,0.92);
  backdrop-filter: blur(16px);
  border-color: var(--border);
}
.nav-inner {
  max-width: 1120px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
  font-size: 1.375rem; font-weight: 800; letter-spacing: -0.02em;
  color: var(--white); text-decoration: none;
}
.nav-logo span { color: var(--gold); }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a { color: var(--text); text-decoration: none; font-size: 0.9rem; font-weight: 500; transition: color 0.2s; }
.nav-links a:hover { color: var(--white); }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: var(--radius-sm); font-weight: 600; font-size: 0.9rem;
  padding: 10px 20px; text-decoration: none; transition: all 0.2s; cursor: pointer;
  border: none; font-family: inherit;
}
.btn-gold {
  background: var(--gold); color: #060c1a;
}
.btn-gold:hover { background: var(--gold-light); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(201,168,76,0.35); }
.btn-ghost {
  background: transparent; color: var(--white);
  border: 1px solid rgba(255,255,255,0.2);
}
.btn-ghost:hover { border-color: rgba(255,255,255,0.5); background: rgba(255,255,255,0.05); }
.btn-lg { padding: 14px 28px; font-size: 1rem; border-radius: 12px; }
.btn-full { width: 100%; }

/* ── HERO ── */
.hero {
  min-height: 100vh; display: flex; flex-direction: column;
  align-items: center; justify-content: center; text-align: center;
  padding: 120px 24px 80px;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(201,168,76,0.08) 0%, transparent 70%),
    radial-gradient(ellipse 60% 40% at 80% 60%, rgba(37,99,235,0.06) 0%, transparent 60%),
    var(--navy);
}
.hero-badge {
  display: inline-block; padding: 6px 16px; border-radius: 100px;
  border: 1px solid var(--gold); color: var(--gold); font-size: 0.8rem;
  font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase;
  margin-bottom: 28px;
}
.hero-title {
  font-size: clamp(2.5rem, 6vw, 5rem); font-weight: 900; line-height: 1.05;
  letter-spacing: -0.03em; margin-bottom: 24px; max-width: 820px;
}
.gold { color: var(--gold); }
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem); color: var(--text); max-width: 640px;
  line-height: 1.7; margin-bottom: 40px;
}
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; margin-bottom: 64px; }
.hero-stats {
  display: flex; align-items: center; gap: 32px; flex-wrap: wrap; justify-content: center;
  padding: 24px 32px; background: rgba(255,255,255,0.04);
  border: 1px solid var(--border); border-radius: var(--radius);
}
.stat { text-align: center; }
.stat-num { display: block; font-size: 1rem; font-weight: 700; color: var(--gold); }
.stat-label { display: block; font-size: 0.8rem; color: var(--muted); margin-top: 4px; }
.stat-divider { width: 1px; height: 40px; background: var(--border); }

/* ── SECTIONS ── */
.section { padding: 96px 0; }
.section-label {
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 16px;
}
.section-title {
  font-size: clamp(1.75rem, 4vw, 2.75rem); font-weight: 800;
  letter-spacing: -0.025em; line-height: 1.15; margin-bottom: 20px;
}
.section-sub { font-size: 1.05rem; color: var(--text); max-width: 640px; line-height: 1.75; margin-bottom: 48px; }

/* ── PROBLEM ── */
.problem { background: var(--navy-mid); }
.problem-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; margin-top: 48px; }
.problem-card {
  padding: 28px; background: var(--navy-light); border: 1px solid var(--border);
  border-radius: var(--radius); transition: border-color 0.2s;
}
.problem-card:hover { border-color: rgba(201,168,76,0.3); }
.problem-icon { font-size: 1.25rem; color: var(--gold); margin-bottom: 16px; }
.problem-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; }
.problem-card p { font-size: 0.9rem; color: var(--text); line-height: 1.7; }

/* ── SOLUTION / WORKFORCE ── */
.solution { background: var(--navy); }
.workforce-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; }
.workforce-card {
  padding: 28px; border: 1px solid var(--border); border-radius: var(--radius);
  background: linear-gradient(135deg, var(--navy-mid), var(--navy-light));
  transition: transform 0.2s, border-color 0.2s;
}
.workforce-card:hover { transform: translateY(-3px); border-color: rgba(201,168,76,0.3); }
.workforce-role {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 6px;
}
.workforce-name { font-size: 1.05rem; font-weight: 700; margin-bottom: 12px; }
.workforce-card p { font-size: 0.875rem; color: var(--text); line-height: 1.7; }

/* ── HOW IT WORKS ── */
.how { background: var(--navy-mid); }
.steps { display: flex; flex-direction: column; gap: 0; max-width: 720px; margin-top: 48px; }
.step {
  display: flex; gap: 32px; padding: 36px 0;
  border-bottom: 1px solid var(--border);
  align-items: flex-start;
}
.step:last-child { border-bottom: none; }
.step-num {
  font-size: 2.5rem; font-weight: 900; color: var(--gold);
  opacity: 0.4; min-width: 56px; line-height: 1;
}
.step-content h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 8px; }
.step-content p { font-size: 0.9rem; color: var(--text); line-height: 1.7; }

/* ── COMPLIANCE ── */
.compliance { background: var(--navy); }
.compliance-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.compliance-list { list-style: none; margin-top: 24px; display: flex; flex-direction: column; gap: 14px; }
.compliance-list li { display: flex; gap: 12px; font-size: 0.9rem; color: var(--text); align-items: flex-start; }
.check { color: var(--gold); font-weight: 700; flex-shrink: 0; margin-top: 1px; }
.compliance-badge-wrap { display: flex; justify-content: center; }
.compliance-badge {
  background: linear-gradient(135deg, var(--navy-mid), var(--navy-light));
  border: 1px solid rgba(201,168,76,0.3); border-radius: 24px;
  padding: 40px 36px; text-align: center; max-width: 320px; width: 100%;
}
.badge-icon { font-size: 3rem; margin-bottom: 16px; }
.badge-title { font-size: 1.1rem; font-weight: 700; margin-bottom: 24px; }
.badge-items { display: flex; flex-direction: column; gap: 12px; }
.badge-item {
  padding: 10px 16px; background: var(--gold-dim); border: 1px solid rgba(201,168,76,0.25);
  border-radius: 8px; font-size: 0.875rem; font-weight: 600; color: var(--gold);
}

/* ── CAPABILITIES ── */
.capabilities { background: var(--navy-mid); }
.cap-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; margin-top: 48px; }
.cap-item {
  padding: 28px; background: var(--navy-light); border: 1px solid var(--border);
  border-radius: var(--radius); transition: border-color 0.2s;
}
.cap-item:hover { border-color: rgba(201,168,76,0.3); }
.cap-icon { font-size: 1.75rem; margin-bottom: 12px; }
.cap-label { font-size: 1rem; font-weight: 700; margin-bottom: 10px; }
.cap-item p { font-size: 0.875rem; color: var(--text); line-height: 1.7; }

/* ── APPLY ── */
.apply { background: var(--navy); }
.apply-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.apply-details { margin-top: 24px; display: flex; flex-direction: column; gap: 12px; }
.apply-detail { display: flex; gap: 10px; font-size: 0.9rem; color: var(--text); }
.apply-form {
  background: var(--navy-mid); border: 1px solid var(--border);
  border-radius: 20px; padding: 36px;
}
.apply-form h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: 8px; }
.form-sub { font-size: 0.875rem; color: var(--muted); margin-bottom: 24px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-size: 0.8rem; font-weight: 600; color: var(--text); margin-bottom: 6px; letter-spacing: 0.02em; }
.field input {
  width: 100%; padding: 12px 16px; background: var(--navy-light);
  border: 1px solid var(--border); border-radius: 10px;
  color: var(--white); font-size: 0.9rem; font-family: inherit;
  transition: border-color 0.2s;
}
.field input:focus { outline: none; border-color: var(--gold); }
.field input::placeholder { color: var(--muted); }
.form-legal { font-size: 0.75rem; color: var(--muted); margin-top: 12px; line-height: 1.6; }
.form-legal a { color: var(--gold); text-decoration: none; }

/* ── FOOTER ── */
.footer { background: #030710; border-top: 1px solid var(--border); padding: 64px 0 0; }
.footer-inner { display: grid; grid-template-columns: 1.5fr 1fr; gap: 64px; padding-bottom: 48px; }
.footer-brand .nav-logo { display: inline-block; margin-bottom: 16px; }
.footer-brand p { font-size: 0.875rem; color: var(--muted); line-height: 1.7; max-width: 400px; }
.footer-legal-note { margin-top: 16px; font-size: 0.78rem; color: #3d4f6e; }
.footer-links { display: flex; gap: 48px; }
.footer-col { display: flex; flex-direction: column; gap: 12px; }
.footer-col-title { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); margin-bottom: 4px; }
.footer-col a { font-size: 0.875rem; color: var(--text); text-decoration: none; transition: color 0.2s; }
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid var(--border); padding: 20px 24px; text-align: center;
}
.footer-bottom p { font-size: 0.8rem; color: var(--muted); }

/* ── TOAST ── */
.toast {
  position: fixed; bottom: 32px; left: 50%; transform: translateX(-50%);
  background: #0f2; color: #030710; font-weight: 600; font-size: 0.9rem;
  padding: 16px 28px; border-radius: 12px; box-shadow: 0 8px 32px rgba(0,0,0,0.4);
  transition: opacity 0.4s; z-index: 999;
}
.toast.hidden { opacity: 0; pointer-events: none; }
.toast.show { opacity: 1; }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .nav-links a:not(.btn) { display: none; }
  .hero { padding: 100px 20px 60px; }
  .hero-stats { gap: 20px; }
  .stat-divider { display: none; }
  .compliance-inner, .apply-inner, .footer-inner { grid-template-columns: 1fr; gap: 40px; }
  .compliance-badge-wrap { order: -1; }
  .section { padding: 64px 0; }
  .steps { margin-top: 32px; }
  .step { gap: 20px; }
  .step-num { font-size: 1.75rem; min-width: 40px; }
}
