:root {
  --navy: #0d4178;
  --navy-deep: #082f59;
  --teal: #13a89e;
  --orange: #f6a024;
  --ink: #17324d;
  --muted: #617487;
  --line: #d9e3ea;
  --tint: #f4f8fa;
  --white: #ffffff;
  --shadow: 0 18px 55px rgba(8, 47, 89, .09);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; }
img { max-width: 100%; display: block; }
.shell { width: min(1160px, calc(100% - 48px)); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(217,227,234,.8);
}
.nav-wrap { min-height: 84px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: block; width: 130px; height: 56px; overflow: hidden; }
.brand img { width: 130px; transform: translateY(-18px); }
nav { display: flex; gap: 28px; align-items: center; }
nav a { text-decoration: none; font-size: .9rem; font-weight: 650; color: #35536d; }
nav a:hover { color: var(--teal); }

.hero { padding: 82px 0 90px; overflow: hidden; background: linear-gradient(180deg, #fff 0%, #fbfdfe 100%); }
.hero-grid { display: grid; grid-template-columns: 1.18fr .82fr; gap: 64px; align-items: center; }
.hero-copy { max-width: 710px; }
.eyebrow, .section-kicker { text-transform: uppercase; letter-spacing: .15em; font-weight: 800; font-size: .75rem; color: var(--teal); margin: 0 0 15px; }
h1 { font-size: clamp(3.2rem, 6vw, 6.4rem); line-height: .96; letter-spacing: -.055em; margin: 0 0 30px; color: var(--navy-deep); max-width: 760px; }
.lede { font-size: clamp(1.1rem, 2vw, 1.38rem); line-height: 1.58; color: #4c6479; max-width: 680px; margin: 0 0 36px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 13px; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 50px; padding: 0 22px; border-radius: 7px; font-size: .92rem; font-weight: 750; text-decoration: none; transition: .2s ease; }
.button.primary { background: var(--navy); color: white; box-shadow: 0 10px 24px rgba(13,65,120,.15); }
.button.primary:hover { background: var(--navy-deep); transform: translateY(-1px); }
.button.secondary { border: 1px solid var(--line); color: var(--navy); background: white; }
.button.secondary:hover { border-color: #afc2cf; background: var(--tint); }
.hero-mark { max-width: 460px; justify-self: end; opacity: .98; }
.hero-mark img { border-radius: 28px; box-shadow: var(--shadow); }

.section { padding: 92px 0; }
.tint { background: var(--tint); }
.split { display: grid; grid-template-columns: .9fr 1.1fr; gap: 72px; align-items: start; }
h2 { font-size: clamp(2.1rem, 4vw, 3.45rem); line-height: 1.08; letter-spacing: -.035em; color: var(--navy-deep); margin: 0; }
.body-copy p, .section-heading p { color: #566d81; font-size: 1.03rem; margin-top: 0; }
.body-copy p + p { margin-top: 22px; }
.section-heading { margin-bottom: 50px; }
.section-heading.narrow { max-width: 800px; }
.section-heading h2 { margin-bottom: 20px; }

.five-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; margin-bottom: 48px; }
.five-card { background: white; border: 1px solid var(--line); border-radius: 10px; padding: 24px 20px 22px; min-height: 245px; box-shadow: 0 8px 22px rgba(8,47,89,.035); }
.five-card span { color: var(--orange); font-weight: 850; font-size: .82rem; }
.five-card h3 { color: var(--navy); line-height: 1.2; font-size: 1.05rem; margin: 12px 0 12px; }
.five-card p { color: #657b8e; font-size: .88rem; line-height: 1.55; margin: 0; }
.domains { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); background: white; }
.domain { display: grid; grid-template-columns: 44px 1fr; gap: 14px; padding: 25px 26px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.domain strong { width: 34px; height: 34px; border-radius: 50%; display: grid; place-items: center; background: #e5f5f3; color: #0b817a; }
.domain h3 { margin: 0 0 5px; color: var(--navy); font-size: 1rem; }
.domain p { margin: 0; color: #6b7d8c; font-size: .9rem; }

.process-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.process-grid article { border-top: 4px solid var(--teal); background: white; padding: 28px; box-shadow: var(--shadow); }
.step { font-size: .78rem; color: var(--orange); font-weight: 850; margin-bottom: 24px; }
.process-grid h3 { color: var(--navy); margin: 0 0 10px; font-size: 1.25rem; }
.process-grid p { margin: 0; color: #62778a; }

.employer-band { background: var(--navy-deep); color: white; }
.employer-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.employer-band h2 { color: white; }
.section-kicker.light { color: #74d8d0; }
.employer-band p { color: #dbe6ef; font-size: 1.04rem; margin-top: 0; }
.text-link { display: inline-block; margin-top: 12px; color: white; font-weight: 760; text-decoration: none; border-bottom: 1px solid rgba(255,255,255,.45); padding-bottom: 3px; }
.text-link:hover { border-color: var(--orange); }

.about-grid {
  display: grid;
  grid-template-columns: minmax(260px, 360px) minmax(0, 1fr);
  gap: 76px;
  align-items: center;
}
.about-photo-wrap {
  position: relative;
  max-width: 360px;
}
.about-photo-wrap::before {
  content: "";
  position: absolute;
  inset: 18px -18px -18px 18px;
  border: 1px solid rgba(246,160,36,.55);
  border-radius: 18px;
  z-index: 0;
}
.about-photo {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: var(--shadow);
}
.about-copy h2 { margin-bottom: 24px; }
.about-email {
  display: inline-block;
  margin-top: 6px;
  color: var(--navy);
  font-weight: 760;
  text-decoration: none;
  border-bottom: 1px solid rgba(13,65,120,.35);
  padding-bottom: 2px;
}
.about-email:hover { color: var(--teal); border-color: var(--teal); }
.contact { padding-top: 24px; }
.contact-card { display: grid; grid-template-columns: 1.2fr .8fr; align-items: center; gap: 44px; padding: 48px 54px; background: var(--tint); border: 1px solid var(--line); border-radius: 12px; }
.contact-card h2 { font-size: clamp(1.9rem, 3.3vw, 2.9rem); margin-bottom: 12px; }
.contact-card p:not(.section-kicker) { margin: 0; color: #60768a; }
.contact-card .button { justify-self: end; }

footer { margin-top: 70px; border-top: 1px solid var(--line); padding: 32px 0 38px; color: #6f8190; font-size: .84rem; }
.footer-wrap { display: flex; justify-content: space-between; gap: 40px; align-items: end; }
.footer-wrap strong { color: var(--navy); }
.footer-wrap div:last-child { text-align: right; }

@media (max-width: 980px) {
  .hero-grid, .split, .employer-grid, .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-mark { justify-self: start; max-width: 360px; }
  .about-photo-wrap { max-width: 300px; }
  .five-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: 1fr; }
  .contact-card { grid-template-columns: 1fr; }
  .contact-card .button { justify-self: start; }
}

@media (max-width: 720px) {
  .shell { width: min(100% - 32px, 1160px); }
  .site-header { position: static; }
  .nav-wrap { min-height: 74px; }
  .brand { width: 112px; height: 50px; }
  .brand img { width: 112px; transform: translateY(-15px); }
  nav { display: none; }
  .hero { padding: 56px 0 68px; }
  .hero-grid { gap: 42px; }
  h1 { font-size: 3.45rem; }
  .hero-mark { max-width: 280px; }
  .about-photo-wrap { max-width: 240px; }
  .about-photo-wrap::before { inset: 12px -12px -12px 12px; }
  .section { padding: 68px 0; }
  .five-grid, .domains { grid-template-columns: 1fr; }
  .five-card { min-height: auto; }
  .contact-card { padding: 34px 28px; }
  .footer-wrap { flex-direction: column; align-items: flex-start; }
  .footer-wrap div:last-child { text-align: left; }
}
