:root {
  --ink: #142522;
  --ink-soft: #4e625c;
  --forest: #102a2a;
  --forest-2: #193d38;
  --forest-3: #24564d;
  --lime: #c9f27c;
  --lime-strong: #aee45b;
  --cream: #f6f5ee;
  --paper: #ffffff;
  --line: #dfe5df;
  --line-dark: rgba(255,255,255,.14);
  --mint: #dff5e8;
  --blue: #ddebf9;
  --peach: #f9e5d8;
  --lilac: #ebe2f7;
  --yellow: #faefc7;
  --coral: #f5dddd;
  --error: #b42318;
  --success: #0b7155;
  --shadow-sm: 0 8px 24px rgba(16,42,42,.08);
  --shadow-md: 0 18px 55px rgba(16,42,42,.13);
  --shadow-lg: 0 32px 80px rgba(7,28,28,.22);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --container: 1180px;
  --header-height: 80px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-height) + 20px); }
body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
body.modal-open { overflow: hidden; }
button, input, textarea, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
button { cursor: pointer; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 9999;
  padding: 10px 16px;
  color: var(--paper);
  background: var(--forest);
  border-radius: 8px;
  transition: top .2s ease;
}
.skip-link:focus { top: 16px; }

.container { width: min(var(--container), calc(100% - 40px)); margin: 0 auto; }
.section { padding: 112px 0; position: relative; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--header-height);
  display: flex;
  align-items: center;
  border-bottom: 1px solid transparent;
  background: rgba(246,245,238,.85);
  backdrop-filter: blur(18px);
  transition: box-shadow .25s ease, border-color .25s ease, background .25s ease;
}
.site-header.scrolled {
  background: rgba(255,255,255,.92);
  border-color: var(--line);
  box-shadow: 0 8px 30px rgba(16,42,42,.06);
}
.nav-wrap { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: inline-flex; align-items: center; gap: 10px; color: var(--forest); min-width: max-content; }
.brand-mark { width: 38px; height: 38px; display: grid; place-items: center; }
.brand-copy { display: flex; flex-direction: column; line-height: 1.05; }
.brand-copy strong { font-size: .96rem; letter-spacing: -.02em; }
.brand-copy small { margin-top: 4px; color: var(--ink-soft); font-size: .68rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; }
.site-nav { display: flex; align-items: center; gap: 30px; margin-left: auto; }
.site-nav a { color: #40534e; font-size: .9rem; font-weight: 650; transition: color .2s ease; }
.site-nav a:hover, .site-nav a:focus-visible { color: var(--forest); }
.nav-actions { display: flex; gap: 10px; }
.nav-toggle { display: none; border: 0; background: transparent; width: 42px; height: 42px; padding: 10px; }
.nav-toggle span:not(.sr-only) { display: block; width: 22px; height: 2px; margin: 4px auto; background: var(--forest); border-radius: 999px; transition: transform .2s ease, opacity .2s ease; }

.button {
  appearance: none;
  border: 1px solid transparent;
  border-radius: 999px;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 22px;
  font-size: .92rem;
  font-weight: 750;
  line-height: 1;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease, color .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button:focus-visible, .text-link:focus-visible, .site-nav a:focus-visible, .footer-links a:focus-visible { outline: 3px solid rgba(174,228,91,.55); outline-offset: 3px; }
.button svg { width: 18px; height: 18px; }
.button-small { min-height: 42px; padding: 0 18px; font-size: .84rem; }
.button-large { min-height: 58px; padding: 0 28px; }
.button-full { width: 100%; }
.button-primary { color: var(--forest); background: var(--lime); box-shadow: 0 10px 24px rgba(174,228,91,.18); }
.button-primary:hover { background: var(--lime-strong); box-shadow: 0 14px 30px rgba(174,228,91,.25); }
.button-secondary { color: var(--forest); background: var(--paper); border-color: #cfd8d2; }
.button-secondary:hover { border-color: var(--forest-3); box-shadow: var(--shadow-sm); }
.button-ghost { color: var(--forest); background: transparent; border-color: rgba(16,42,42,.18); }
.button-ghost:hover { border-color: var(--forest); }
.button-dark { color: var(--paper); background: var(--forest); }
.button-dark:hover { background: var(--forest-2); box-shadow: var(--shadow-sm); }
.button-light { color: var(--forest); background: var(--paper); }
.button-outline-light { color: var(--paper); background: transparent; border-color: rgba(255,255,255,.42); }
.button-outline-light:hover { background: rgba(255,255,255,.08); border-color: var(--paper); }

.eyebrow { display: inline-flex; align-items: center; gap: 10px; color: rgba(255,255,255,.75); font-size: .78rem; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
.eyebrow span { width: 28px; height: 2px; background: var(--lime); border-radius: 999px; }
.eyebrow-dark { color: #58706a; }
.eyebrow-dark span { background: var(--forest-3); }

.hero {
  min-height: calc(100svh - var(--header-height));
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 82px;
  padding-bottom: 90px;
  background:
    linear-gradient(115deg, rgba(16,42,42,.98) 0%, rgba(16,42,42,.98) 49%, rgba(22,62,57,.98) 100%);
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .07;
  background-image: radial-gradient(circle at 1px 1px, #fff 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: linear-gradient(to right, transparent 0%, #000 55%, #000 100%);
}
.hero-glow { position: absolute; border-radius: 50%; filter: blur(1px); opacity: .32; }
.hero-glow-one { width: 430px; height: 430px; right: -120px; top: -150px; background: radial-gradient(circle, rgba(201,242,124,.35), transparent 65%); }
.hero-glow-two { width: 520px; height: 520px; right: 22%; bottom: -340px; background: radial-gradient(circle, rgba(110,204,184,.2), transparent 70%); }
.hero-grid { display: grid; grid-template-columns: minmax(0, .95fr) minmax(440px, .82fr); align-items: center; gap: 90px; position: relative; z-index: 2; }
.hero-copy h1 { max-width: 720px; margin: 22px 0 24px; color: var(--paper); font-size: clamp(3.25rem, 6vw, 5.75rem); line-height: .98; letter-spacing: -.065em; text-wrap: balance; }
.hero-lead { max-width: 660px; margin: 0; color: rgba(255,255,255,.72); font-size: clamp(1.04rem, 1.6vw, 1.24rem); line-height: 1.72; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.hero-assurances { display: flex; flex-wrap: wrap; gap: 18px 24px; margin-top: 28px; color: rgba(255,255,255,.7); font-size: .8rem; font-weight: 650; }
.hero-assurances span { display: inline-flex; align-items: center; gap: 7px; }
.hero-assurances svg { width: 16px; height: 16px; color: var(--lime); }

.hero-visual { position: relative; min-height: 610px; display: flex; align-items: center; justify-content: center; }
.match-card {
  width: min(100%, 470px);
  padding: 28px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 28px;
  background: rgba(255,255,255,.97);
  box-shadow: var(--shadow-lg);
  transform: rotate(1.5deg);
}
.match-card-top { display: flex; align-items: flex-start; justify-content: space-between; gap: 20px; padding-bottom: 22px; border-bottom: 1px solid var(--line); }
.mini-label, .form-kicker { display: block; color: #6b7c77; font-size: .7rem; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.match-card h2 { margin: 5px 0 0; color: var(--forest); font-size: 1.34rem; letter-spacing: -.035em; }
.status-pill { display: inline-flex; align-items: center; gap: 7px; padding: 7px 10px; color: #315f51; background: var(--mint); border-radius: 999px; font-size: .7rem; font-weight: 800; white-space: nowrap; }
.status-pill i { width: 7px; height: 7px; border-radius: 50%; background: #38a77d; box-shadow: 0 0 0 4px rgba(56,167,125,.12); }
.match-row { display: grid; grid-template-columns: 44px 1fr 24px; align-items: center; gap: 12px; padding: 16px 0; border-bottom: 1px solid #edf0ed; }
.match-icon { width: 44px; height: 44px; display: grid; place-items: center; border-radius: 14px; color: var(--forest); }
.match-icon svg { width: 22px; height: 22px; }
.match-icon.mint { background: var(--mint); }
.match-icon.blue { background: var(--blue); }
.match-icon.peach { background: var(--peach); }
.match-row small, .candidate-item small { display: block; color: #778681; font-size: .69rem; }
.match-row strong { display: block; margin-top: 2px; color: #263d38; font-size: .84rem; }
.check-dot { width: 22px; height: 22px; display: grid; place-items: center; border-radius: 50%; color: #2c725c; background: var(--mint); font-size: .72rem; font-weight: 900; }
.candidate-stack { margin-top: 24px; padding: 20px; background: #f7f8f5; border-radius: 18px; }
.candidate-head { display: flex; justify-content: space-between; gap: 12px; align-items: center; margin-bottom: 10px; }
.candidate-head strong { display: block; margin-top: 2px; color: #243b35; font-size: .82rem; }
.candidate-head > span { color: #73827e; font-size: .7rem; }
.candidate-item { display: grid; grid-template-columns: 40px 1fr auto; gap: 11px; align-items: center; padding: 12px 0; }
.candidate-item + .candidate-item { border-top: 1px solid #e4e9e5; }
.avatar { width: 40px; height: 40px; display: grid; place-items: center; border-radius: 50%; font-size: .69rem; font-weight: 850; }
.avatar-one { color: #2b5649; background: #cfeee1; }
.avatar-two { color: #3e5379; background: #dce7fb; }
.candidate-item strong { display: block; color: #2b3e39; font-size: .78rem; }
.fit-score { color: #2f6d5a; background: #e2f2eb; border-radius: 999px; padding: 5px 8px; font-size: .62rem; font-weight: 800; white-space: nowrap; }
.muted-candidate { opacity: .72; }
.floating-card { position: absolute; display: flex; align-items: center; gap: 12px; padding: 14px 16px; color: var(--forest); background: rgba(255,255,255,.98); border: 1px solid rgba(255,255,255,.5); border-radius: 16px; box-shadow: 0 18px 48px rgba(4,22,22,.26); animation: float 5s ease-in-out infinite; }
.floating-card strong { display: block; font-size: .76rem; }
.floating-card small { display: block; color: #768681; font-size: .64rem; }
.floating-card-one { left: -8%; top: 22%; }
.floating-card-two { right: -5%; bottom: 20%; animation-delay: -2.5s; }
.floating-icon { width: 34px; height: 34px; display: grid; place-items: center; color: #2f6e59; background: var(--mint); border-radius: 12px; }
.floating-icon svg { width: 19px; height: 19px; }
.tiny-bars { width: 36px; height: 34px; display: flex; align-items: flex-end; gap: 3px; padding: 7px; background: #edf3ea; border-radius: 10px; }
.tiny-bars i { width: 4px; border-radius: 4px 4px 2px 2px; background: var(--forest-3); }
.tiny-bars i:nth-child(1) { height: 35%; }.tiny-bars i:nth-child(2) { height: 70%; }.tiny-bars i:nth-child(3) { height: 50%; }.tiny-bars i:nth-child(4) { height: 90%; background: var(--lime-strong); }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

.trust-strip { background: var(--paper); border-bottom: 1px solid var(--line); }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-grid div { display: flex; align-items: center; gap: 14px; min-height: 90px; padding: 0 24px; border-right: 1px solid var(--line); }
.trust-grid div:first-child { padding-left: 0; }
.trust-grid div:last-child { border-right: 0; }
.trust-grid span { color: #91a19c; font-size: .7rem; font-weight: 850; letter-spacing: .08em; }
.trust-grid strong { color: #2c443e; font-size: .88rem; }

.problem-section { background: var(--cream); }
.section-heading h2, .fit-copy h2, .faq-intro h2, .talent-copy h2, .process-copy h2 { margin: 18px 0 20px; font-size: clamp(2.4rem, 4.6vw, 4.45rem); line-height: 1.02; letter-spacing: -.055em; text-wrap: balance; }
.section-heading p, .fit-copy > p, .faq-intro > p, .process-copy > p { margin: 0; color: var(--ink-soft); font-size: 1.02rem; line-height: 1.75; }
.centered { max-width: 800px; margin: 0 auto 56px; text-align: center; }
.centered .eyebrow { justify-content: center; }
.value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.value-card { position: relative; min-height: 310px; padding: 32px; overflow: hidden; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-md); transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.value-card:hover { transform: translateY(-6px); border-color: #bfcac3; box-shadow: var(--shadow-md); }
.value-number { position: absolute; right: 22px; top: 18px; color: #eef1ee; font-size: 4rem; font-weight: 900; line-height: 1; letter-spacing: -.08em; }
.value-icon { width: 54px; height: 54px; display: grid; place-items: center; color: var(--forest); background: var(--lime); border-radius: 17px; }
.value-icon svg { width: 25px; height: 25px; }
.value-card h3 { position: relative; margin: 70px 0 12px; font-size: 1.32rem; letter-spacing: -.03em; }
.value-card p { position: relative; margin: 0; color: var(--ink-soft); font-size: .92rem; line-height: 1.72; }

.specialties-section { background: var(--paper); }
.split-heading { display: grid; grid-template-columns: 1fr .48fr; align-items: end; gap: 60px; margin-bottom: 54px; }
.split-heading h2 { margin-bottom: 0; }
.split-heading > p { padding-bottom: 8px; }
.specialty-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.specialty-card { min-height: 270px; padding: 28px; border: 1px solid var(--line); border-radius: var(--radius-md); background: #fbfcfa; transition: transform .25s ease, background .25s ease, box-shadow .25s ease; }
.specialty-card:hover { transform: translateY(-5px); background: var(--paper); box-shadow: var(--shadow-sm); }
.specialty-icon { width: 50px; height: 50px; display: grid; place-items: center; color: var(--forest); border-radius: 16px; }
.specialty-icon svg { width: 24px; height: 24px; }
.specialty-icon.mint { background: var(--mint); }.specialty-icon.blue { background: var(--blue); }.specialty-icon.peach { background: var(--peach); }.specialty-icon.lilac { background: var(--lilac); }.specialty-icon.yellow { background: var(--yellow); }.specialty-icon.coral { background: var(--coral); }
.specialty-card h3 { margin: 38px 0 10px; font-size: 1.15rem; letter-spacing: -.025em; }
.specialty-card p { margin: 0; color: var(--ink-soft); font-size: .86rem; line-height: 1.7; }
.specialty-card > span { display: block; margin-top: 22px; color: #71837d; font-size: .7rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }

.process-section { overflow: hidden; color: var(--paper); background: var(--forest); }
.process-section::after { content: ""; position: absolute; width: 560px; height: 560px; right: -280px; top: -180px; border: 1px solid rgba(201,242,124,.12); border-radius: 50%; box-shadow: 0 0 0 70px rgba(201,242,124,.035), 0 0 0 140px rgba(201,242,124,.02); }
.process-grid { display: grid; grid-template-columns: .8fr 1fr; align-items: start; gap: 90px; position: relative; z-index: 2; }
.process-copy h2 { color: var(--paper); }
.process-copy > p { max-width: 500px; color: rgba(255,255,255,.66); }
.process-toggle { display: inline-flex; margin-top: 34px; padding: 5px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12); border-radius: 999px; }
.process-toggle button { min-height: 44px; padding: 0 18px; color: rgba(255,255,255,.65); background: transparent; border: 0; border-radius: 999px; font-size: .79rem; font-weight: 800; }
.process-toggle button.active { color: var(--forest); background: var(--lime); }
.process-panels { padding: 12px 0; }
.process-panel[hidden] { display: none; }
.step-list { list-style: none; padding: 0; margin: 0; }
.step-list li { display: grid; grid-template-columns: 54px 1fr; gap: 22px; padding: 0 0 34px; position: relative; }
.step-list li:not(:last-child)::after { content: ""; position: absolute; left: 26px; top: 54px; bottom: 0; width: 1px; background: rgba(255,255,255,.18); }
.step-list li > span { width: 54px; height: 54px; display: grid; place-items: center; color: var(--forest); background: var(--lime); border-radius: 50%; font-size: .78rem; font-weight: 900; }
.step-list h3 { margin: 3px 0 8px; font-size: 1.2rem; letter-spacing: -.025em; }
.step-list p { margin: 0; color: rgba(255,255,255,.62); font-size: .9rem; line-height: 1.7; }
.text-link { display: inline-flex; align-items: center; gap: 10px; padding: 0; color: var(--lime); background: none; border: 0; font-size: .88rem; font-weight: 850; }
.text-link span { transition: transform .2s ease; }
.text-link:hover span { transform: translateX(4px); }

.fit-section { background: var(--cream); }
.fit-grid { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 100px; }
.fit-visual { min-height: 570px; display: grid; place-items: center; }
.fit-orbit { position: relative; width: min(100%, 520px); aspect-ratio: 1; border: 1px dashed #aebdb6; border-radius: 50%; }
.fit-orbit::before, .fit-orbit::after { content: ""; position: absolute; border: 1px solid #d9e0dc; border-radius: 50%; }
.fit-orbit::before { inset: 18%; }.fit-orbit::after { inset: 35%; background: rgba(255,255,255,.52); }
.fit-center { position: absolute; left: 50%; top: 50%; z-index: 2; width: 128px; height: 128px; display: grid; place-content: center; text-align: center; transform: translate(-50%,-50%); color: var(--paper); background: var(--forest); border-radius: 50%; box-shadow: var(--shadow-md); }
.fit-center span { font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; opacity: .7; }
.fit-center strong { font-size: 2rem; line-height: 1.1; letter-spacing: -.06em; }
.orbit-item { position: absolute; z-index: 3; display: inline-flex; align-items: center; gap: 8px; padding: 10px 14px; color: #304b44; background: var(--paper); border: 1px solid var(--line); border-radius: 999px; box-shadow: var(--shadow-sm); font-size: .78rem; font-weight: 800; }
.orbit-item i { width: 8px; height: 8px; border-radius: 50%; background: var(--lime-strong); }
.orbit-one { left: 4%; top: 22%; }.orbit-two { right: -1%; top: 31%; }.orbit-three { left: 14%; bottom: 11%; }.orbit-four { right: 7%; bottom: 17%; }
.fit-copy { max-width: 560px; }
.check-list { display: grid; gap: 20px; padding: 0; margin: 34px 0 38px; list-style: none; }
.check-list li { display: grid; grid-template-columns: 34px 1fr; gap: 14px; }
.check-list li > span { width: 30px; height: 30px; display: grid; place-items: center; color: var(--forest); background: var(--lime); border-radius: 50%; font-size: .72rem; font-weight: 900; }
.check-list strong { display: block; color: #263e38; font-size: .92rem; }
.check-list small { display: block; margin-top: 3px; color: var(--ink-soft); font-size: .8rem; line-height: 1.55; }

.talent-section { overflow: hidden; color: var(--paper); background: linear-gradient(135deg, #173b37 0%, #0d2827 100%); }
.talent-section::before { content: ""; position: absolute; left: -220px; bottom: -260px; width: 620px; height: 620px; border-radius: 50%; background: radial-gradient(circle, rgba(201,242,124,.12), transparent 65%); }
.talent-grid { display: grid; grid-template-columns: .82fr 1fr; align-items: start; gap: 90px; position: relative; z-index: 2; }
.talent-copy { position: sticky; top: 130px; padding-top: 18px; }
.talent-copy h2 { color: var(--paper); }
.talent-copy > p { max-width: 520px; margin: 0; color: rgba(255,255,255,.67); font-size: 1.02rem; line-height: 1.75; }
.talent-benefits { display: grid; gap: 18px; margin-top: 44px; }
.talent-benefits > div { display: grid; grid-template-columns: 44px 1fr; gap: 15px; align-items: start; }
.talent-benefits > div > span { width: 38px; height: 38px; display: grid; place-items: center; color: var(--forest); background: var(--lime); border-radius: 12px; font-size: .68rem; font-weight: 900; }
.talent-benefits strong { display: block; font-size: .92rem; }
.talent-benefits small { display: block; margin-top: 4px; color: rgba(255,255,255,.58); font-size: .79rem; }
.application-card { padding: 38px; color: var(--ink); background: var(--paper); border: 1px solid rgba(255,255,255,.25); border-radius: 26px; box-shadow: 0 26px 70px rgba(3,20,19,.22); }
.form-heading { margin-bottom: 28px; }
.form-heading h3 { margin: 6px 0 4px; color: var(--forest); font-size: 1.75rem; letter-spacing: -.045em; }
.form-heading p { margin: 0; color: #75847f; font-size: .75rem; }
.talent-form { display: grid; gap: 18px; }
.form-grid { display: grid; gap: 14px; }
.two-col { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.field { display: grid; gap: 7px; position: relative; }
.field > span, .upload-copy strong { color: #344b45; font-size: .76rem; font-weight: 800; }
.field input, .field select, .field textarea {
  width: 100%;
  min-height: 50px;
  padding: 0 14px;
  color: var(--ink);
  background: #fbfcfa;
  border: 1px solid #d5ddd8;
  border-radius: 11px;
  outline: 0;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.field textarea { min-height: 120px; padding-top: 13px; resize: vertical; }
.field select { appearance: none; padding-right: 40px; background-image: linear-gradient(45deg, transparent 50%, #677873 50%), linear-gradient(135deg, #677873 50%, transparent 50%); background-position: calc(100% - 18px) 21px, calc(100% - 13px) 21px; background-size: 5px 5px, 5px 5px; background-repeat: no-repeat; }
.field input:focus, .field select:focus, .field textarea:focus { background: var(--paper); border-color: #568978; box-shadow: 0 0 0 4px rgba(86,137,120,.12); }
.field input.invalid, .field select.invalid, .field textarea.invalid { border-color: var(--error); box-shadow: 0 0 0 3px rgba(180,35,24,.08); }
.field-hint { position: absolute; right: 10px; bottom: 9px; color: #8b9894; font-size: .66rem; }
.error-message, .consent-error { min-height: 0; color: var(--error); font-size: .68rem; line-height: 1.35; }
.error-message:empty, .consent-error:empty { display: none; }
.upload-field { display: grid; grid-template-columns: 46px 1fr auto; align-items: center; gap: 13px; padding: 17px; border: 1px dashed #aebbb4; border-radius: 13px; background: #fbfcfa; cursor: pointer; transition: border-color .2s ease, background .2s ease; }
.upload-field:hover, .upload-field.dragging { background: #f4f9f5; border-color: var(--forest-3); }
.upload-field input { position: absolute; opacity: 0; pointer-events: none; }
.upload-icon { width: 44px; height: 44px; display: grid; place-items: center; color: var(--forest); background: var(--mint); border-radius: 13px; }
.upload-icon svg { width: 22px; height: 22px; }
.upload-copy small { display: block; margin-top: 3px; color: #7c8985; font-size: .66rem; }
.upload-button { padding: 8px 12px; color: var(--forest); background: var(--paper); border: 1px solid #d1dad4; border-radius: 8px; font-size: .7rem; font-weight: 800; }
.file-name { grid-column: 2 / 4; color: #6b7c77; font-size: .68rem; overflow-wrap: anywhere; }
.upload-field > .error-message { grid-column: 2 / 4; }
.checkbox-field { display: grid; grid-template-columns: 18px 1fr; gap: 10px; align-items: start; color: #5f716b; font-size: .7rem; line-height: 1.5; }
.checkbox-field input { width: 16px; height: 16px; margin: 2px 0 0; accent-color: var(--forest); }
.form-success { display: grid; grid-template-columns: 34px 1fr; gap: 12px; align-items: start; padding: 16px; color: #245846; background: #e8f6ef; border: 1px solid #c5ead9; border-radius: 12px; }
.form-success > span { width: 30px; height: 30px; display: grid; place-items: center; color: var(--paper); background: var(--success); border-radius: 50%; font-weight: 900; }
.form-success strong { display: block; font-size: .82rem; }
.form-success p { margin: 3px 0 0; font-size: .7rem; line-height: 1.45; }

.faq-section { background: var(--paper); }
.faq-grid { display: grid; grid-template-columns: .62fr 1fr; gap: 90px; align-items: start; }
.faq-intro { position: sticky; top: 130px; }
.faq-intro .button { margin-top: 30px; }
.accordion { border-top: 1px solid var(--line); }
.accordion-item { border-bottom: 1px solid var(--line); }
.accordion-item h3 { margin: 0; }
.accordion-item button { width: 100%; min-height: 84px; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 18px 4px; text-align: left; color: #263e38; background: transparent; border: 0; font-size: 1rem; font-weight: 750; }
.accordion-item i { position: relative; width: 28px; height: 28px; flex: 0 0 auto; border: 1px solid #ced8d2; border-radius: 50%; }
.accordion-item i::before, .accordion-item i::after { content: ""; position: absolute; left: 50%; top: 50%; width: 10px; height: 1px; background: var(--forest); transform: translate(-50%,-50%); transition: transform .2s ease; }
.accordion-item i::after { transform: translate(-50%,-50%) rotate(90deg); }
.accordion-item.open i::after { transform: translate(-50%,-50%) rotate(0); }
.accordion-panel { padding: 0 56px 24px 4px; }
.accordion-panel p { margin: 0; color: var(--ink-soft); font-size: .88rem; line-height: 1.72; }

.final-cta { padding: 74px 0; color: var(--paper); background: var(--forest-3); }
.final-cta-inner { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 60px; }
.final-cta .form-kicker { color: rgba(255,255,255,.62); }
.final-cta h2 { max-width: 820px; margin: 12px 0 0; font-size: clamp(2rem, 4vw, 3.55rem); line-height: 1.05; letter-spacing: -.052em; }
.final-actions { display: grid; gap: 10px; min-width: 190px; }

.site-footer { color: rgba(255,255,255,.68); background: #091d1c; }
.footer-top { display: grid; grid-template-columns: .55fr 1fr; gap: 80px; padding: 72px 0 58px; }
.brand-light { color: var(--paper); }
.brand-light .brand-copy small { color: rgba(255,255,255,.52); }
.footer-brand p { max-width: 400px; margin: 22px 0 0; font-size: .8rem; line-height: 1.7; }
.footer-links { display: grid; grid-template-columns: .8fr .8fr 1.4fr; gap: 40px; }
.footer-links > div { display: flex; flex-direction: column; align-items: flex-start; gap: 10px; }
.footer-links strong { margin-bottom: 8px; color: var(--paper); font-size: .76rem; letter-spacing: .06em; text-transform: uppercase; }
.footer-links a, .footer-links span { color: rgba(255,255,255,.55); font-size: .75rem; }
.footer-links a:hover { color: var(--lime); }
.footer-bottom { min-height: 70px; display: flex; align-items: center; justify-content: space-between; gap: 20px; border-top: 1px solid var(--line-dark); font-size: .7rem; }
.footer-bottom div { display: flex; gap: 20px; }

.modal { position: fixed; inset: 0; z-index: 2000; display: none; place-items: center; padding: 24px; }
.modal.open { display: grid; }
.modal-backdrop { position: absolute; inset: 0; background: rgba(4,20,19,.78); backdrop-filter: blur(8px); }
.modal-dialog { position: relative; z-index: 2; width: min(100%, 630px); max-height: calc(100svh - 48px); overflow: auto; padding: 34px; color: var(--ink); background: var(--paper); border-radius: 24px; box-shadow: 0 35px 100px rgba(0,0,0,.35); animation: modalIn .25s ease both; }
@keyframes modalIn { from { opacity: 0; transform: translateY(14px) scale(.98); } to { opacity: 1; transform: translateY(0) scale(1); } }
.modal-close { position: absolute; right: 18px; top: 18px; width: 38px; height: 38px; display: grid; place-items: center; color: var(--forest); background: #f0f3f0; border: 0; border-radius: 50%; }
.modal-close svg { width: 20px; height: 20px; }
.modal-header { padding-right: 36px; }
.modal-header h2 { margin: 6px 0 8px; color: var(--forest); font-size: 2rem; line-height: 1.08; letter-spacing: -.045em; }
.modal-header > p { margin: 0; color: var(--ink-soft); font-size: .78rem; }
.form-progress { height: 5px; margin-top: 25px; overflow: hidden; background: #e9eeea; border-radius: 999px; }
.form-progress span { display: block; width: 50%; height: 100%; background: var(--lime-strong); border-radius: inherit; transition: width .25s ease; }
.step-indicator { display: flex; justify-content: space-between; margin-top: 8px; color: #798883; font-size: .66rem; }
.step-indicator strong { color: #40554f; }
#client-form { margin-top: 25px; }
.form-step { display: grid; gap: 17px; }
.form-step[hidden] { display: none; }
.modal-form-actions { display: flex; justify-content: space-between; gap: 12px; margin-top: 4px; }
.modal-consent { margin-top: 2px; }

.mobile-cta { display: none; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1080px) {
  :root { --header-height: 72px; }
  .site-nav { gap: 19px; }
  .site-nav a { font-size: .8rem; }
  .nav-actions .button-ghost { display: none; }
  .hero-grid { grid-template-columns: 1fr .8fr; gap: 44px; }
  .hero-copy h1 { font-size: clamp(3.2rem, 6vw, 4.8rem); }
  .floating-card-one { left: -2%; }
  .floating-card-two { right: -2%; }
  .talent-grid, .process-grid, .fit-grid, .faq-grid { gap: 58px; }
}

@media (max-width: 900px) {
  .section { padding: 88px 0; }
  .nav-toggle { display: block; order: 3; }
  .nav-actions { margin-left: auto; }
  .site-nav { position: fixed; left: 20px; right: 20px; top: 80px; display: grid; gap: 0; padding: 12px; background: var(--paper); border: 1px solid var(--line); border-radius: 18px; box-shadow: var(--shadow-md); opacity: 0; visibility: hidden; transform: translateY(-10px); transition: opacity .2s ease, transform .2s ease, visibility .2s ease; }
  .site-nav.open { opacity: 1; visibility: visible; transform: translateY(0); }
  .site-nav a { padding: 13px 12px; border-radius: 9px; font-size: .9rem; }
  .site-nav a:hover { background: #f2f5f2; }
  .nav-toggle.open span:nth-child(2) { transform: translateY(6px) rotate(45deg); }
  .nav-toggle.open span:nth-child(3) { opacity: 0; }
  .nav-toggle.open span:nth-child(4) { transform: translateY(-6px) rotate(-45deg); }
  .hero { min-height: auto; padding-top: 90px; }
  .hero-grid { grid-template-columns: 1fr; gap: 55px; }
  .hero-copy { max-width: 750px; }
  .hero-visual { min-height: 560px; }
  .match-card { max-width: 520px; }
  .floating-card-one { left: 6%; }.floating-card-two { right: 7%; }
  .trust-grid { grid-template-columns: repeat(2,1fr); }
  .trust-grid div:nth-child(2) { border-right: 0; }
  .trust-grid div:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .trust-grid div:nth-child(3) { padding-left: 0; }
  .value-grid, .specialty-grid { grid-template-columns: repeat(2, 1fr); }
  .split-heading { grid-template-columns: 1fr; gap: 18px; }
  .split-heading > p { max-width: 680px; }
  .process-grid, .fit-grid, .talent-grid, .faq-grid { grid-template-columns: 1fr; }
  .process-copy, .fit-copy, .talent-copy, .faq-intro { max-width: 720px; }
  .talent-copy, .faq-intro { position: static; }
  .fit-visual { order: 2; min-height: 520px; }
  .fit-copy { order: 1; }
  .application-card { max-width: 720px; }
  .final-cta-inner { grid-template-columns: 1fr; gap: 30px; }
  .final-actions { display: flex; flex-wrap: wrap; }
  .footer-top { grid-template-columns: 1fr; gap: 50px; }
}

@media (max-width: 640px) {
  :root { --header-height: 68px; }
  .container { width: min(100% - 28px, var(--container)); }
  .section { padding: 72px 0; }
  body { padding-bottom: 66px; }
  .site-header { height: var(--header-height); }
  .brand-mark { width: 34px; height: 34px; }
  .brand-copy strong { font-size: .84rem; }.brand-copy small { font-size: .58rem; }
  .nav-actions { display: none; }
  .site-nav { top: 74px; }
  .hero { padding-top: 72px; padding-bottom: 70px; }
  .hero-copy h1 { margin-top: 18px; font-size: clamp(2.75rem, 13vw, 4rem); }
  .hero-lead { font-size: .96rem; }
  .hero-actions { display: grid; }
  .hero-actions .button { width: 100%; }
  .hero-assurances { display: grid; gap: 10px; }
  .hero-visual { min-height: 480px; }
  .match-card { padding: 20px; transform: none; }
  .match-card-top { display: grid; }
  .status-pill { justify-self: start; }
  .floating-card { display: none; }
  .candidate-stack { padding: 15px; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-grid div { min-height: 66px; padding: 0 !important; border-right: 0; border-bottom: 1px solid var(--line); }
  .trust-grid div:last-child { border-bottom: 0; }
  .section-heading h2, .fit-copy h2, .faq-intro h2, .talent-copy h2, .process-copy h2 { font-size: clamp(2.2rem, 11vw, 3.1rem); }
  .centered { text-align: left; }
  .centered .eyebrow { justify-content: flex-start; }
  .value-grid, .specialty-grid { grid-template-columns: 1fr; }
  .value-card { min-height: 280px; }
  .process-toggle { width: 100%; }
  .process-toggle button { flex: 1; padding: 0 10px; }
  .step-list li { grid-template-columns: 44px 1fr; gap: 16px; }
  .step-list li > span { width: 44px; height: 44px; }
  .step-list li:not(:last-child)::after { left: 21px; top: 44px; }
  .fit-visual { min-height: 380px; }
  .fit-orbit { width: 340px; max-width: 100%; }
  .fit-center { width: 96px; height: 96px; }.fit-center strong { font-size: 1.55rem; }
  .orbit-item { padding: 8px 10px; font-size: .65rem; }
  .application-card { padding: 24px 18px; border-radius: 20px; }
  .two-col { grid-template-columns: 1fr; }
  .upload-field { grid-template-columns: 42px 1fr; }
  .upload-button { grid-column: 2; justify-self: start; }
  .file-name, .upload-field > .error-message { grid-column: 2; }
  .faq-grid { gap: 45px; }
  .accordion-item button { min-height: 74px; font-size: .9rem; }
  .final-actions { display: grid; width: 100%; }
  .footer-links { grid-template-columns: 1fr 1fr; }
  .footer-links > div:last-child { grid-column: 1 / -1; }
  .footer-bottom { align-items: flex-start; flex-direction: column; justify-content: center; padding: 20px 0; }
  .modal { padding: 0; align-items: end; }
  .modal-dialog { width: 100%; max-height: 94svh; border-radius: 22px 22px 0 0; padding: 28px 18px 24px; }
  .modal-header h2 { font-size: 1.65rem; }
  .modal-form-actions { display: grid; grid-template-columns: auto 1fr; }
  .mobile-cta { position: fixed; left: 0; right: 0; bottom: 0; z-index: 1200; display: grid; grid-template-columns: 1fr 1fr; min-height: 66px; padding: 8px; background: rgba(255,255,255,.95); border-top: 1px solid var(--line); backdrop-filter: blur(14px); }
  .mobile-cta a, .mobile-cta button { display: grid; place-items: center; border: 0; border-radius: 999px; font-size: .78rem; font-weight: 850; }
  .mobile-cta a { color: var(--forest); background: #eef2ed; }
  .mobile-cta button { color: var(--forest); background: var(--lime); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

.specialties-directory-link {
  display: flex;
  justify-content: center;
  margin-top: 34px;
}
