:root {
  --navy: #061f52;
  --blue: #075fcb;
  --blue-2: #0b73e8;
  --ink: #18315c;
  --muted: #627394;
  --line: #d8e4f3;
  --soft: #f4f8fd;
  --white: #fff;
  --shadow: 0 12px 28px rgba(6, 31, 82, .08);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  line-height: 1.55;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  display: flex;
  align-items: center;
  min-height: 104px;
  padding: 20px clamp(24px, 6vw, 88px);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, .96);
  position: sticky;
  top: 0;
  z-index: 10;
}

.brand img {
  display: block;
  width: clamp(210px, 21vw, 286px);
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(34px, 5vw, 68px);
  margin-left: auto;
  color: var(--navy);
  font-weight: 750;
}

.main-nav a {
  position: relative;
  padding: 14px 0;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 50%;
  right: 50%;
  bottom: 0;
  height: 3px;
  border-radius: 999px;
  background: var(--blue-2);
  transition: left .2s ease, right .2s ease;
}

.main-nav a:hover::after,
.main-nav a.active::after {
  left: 0;
  right: 0;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  margin-left: auto;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--navy);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, .95fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: center;
  min-height: 560px;
  padding: clamp(58px, 7vw, 92px) clamp(24px, 7vw, 92px) 48px;
  overflow: hidden;
}

.hero.compact {
  min-height: 390px;
  padding-top: 44px;
  padding-bottom: 30px;
}

.hero h1 {
  max-width: 680px;
  margin: 0;
  color: var(--navy);
  font-size: clamp(44px, 5.4vw, 72px);
  line-height: 1.1;
  letter-spacing: 0;
}

.hero.compact h1 {
  font-size: clamp(42px, 4.7vw, 66px);
}

.hero p {
  max-width: 650px;
  margin: 24px 0 0;
  color: #536685;
  font-size: clamp(18px, 2vw, 23px);
}

.hero-art {
  width: min(100%, 610px);
  justify-self: end;
  object-fit: contain;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 34px;
  border-radius: 6px;
  border: 2px solid var(--blue);
  font-weight: 800;
  white-space: nowrap;
  transition: transform .2s ease, box-shadow .2s ease;
}

.button:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}

.button.primary {
  color: var(--white);
  background: linear-gradient(135deg, #0069d8, #004fb8);
}

.button.secondary {
  color: var(--blue);
  background: var(--white);
}

.button.light {
  color: var(--blue);
  background: var(--white);
  border-color: var(--white);
}

.tagline {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  padding: 0;
  margin: 42px 0 0;
  color: var(--blue);
  font-size: 17px;
  font-weight: 800;
  list-style: none;
}

.tagline li + li::before {
  content: "|";
  margin: 0 16px;
  color: #9fb8dc;
}

.section {
  padding: 38px clamp(24px, 7vw, 92px);
}

.service-snapshot {
  padding-top: 50px;
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--blue);
  font-size: 15px;
  font-weight: 900;
  letter-spacing: .16em;
  text-align: center;
  text-transform: uppercase;
}

.section-title {
  margin: 0 0 28px;
  color: var(--navy);
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.15;
  text-align: center;
}

.cards {
  display: grid;
  gap: 22px;
}

.cards.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.cards.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.cards.six {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.card,
.contact-form,
.contact-card,
.profile-card,
.cta-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.card {
  position: relative;
  min-height: 220px;
  padding: 30px 28px;
}

.card h2,
.card h3,
.profile-card h2,
.cta-card h2,
.contact-card h2 {
  margin: 0 0 12px;
  color: var(--navy);
  line-height: 1.2;
}

.card p,
.profile-card p,
.cta-card p,
.contact-card p {
  margin: 0;
  color: #556986;
}

.link-card .arrow {
  position: absolute;
  right: 24px;
  bottom: 20px;
  color: var(--blue);
  font-size: 30px;
  line-height: 1;
}

.horizontal {
  display: flex;
  gap: 24px;
  align-items: center;
  min-height: 154px;
}

.tall {
  min-height: 330px;
}

.small {
  min-height: 210px;
  padding: 24px 18px;
}

.small h3 {
  font-size: 17px;
}

.card ul {
  display: grid;
  gap: 8px;
  margin: 18px 0 0;
  padding: 0;
  color: #415778;
  font-size: 14px;
  list-style: none;
}

.card li::before {
  content: "✓";
  display: inline-grid;
  place-items: center;
  width: 16px;
  height: 16px;
  margin-right: 10px;
  border-radius: 50%;
  color: var(--white);
  background: var(--blue);
  font-size: 10px;
  font-weight: 900;
}

.icon {
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  width: 66px;
  height: 66px;
  margin-bottom: 18px;
  border-radius: 50%;
  color: var(--blue);
  background: #eaf3ff;
}

.horizontal .icon {
  margin-bottom: 0;
}

.icon::before {
  font-size: 31px;
  font-weight: 800;
}

.target::before { content: "◎"; }
.shield::before { content: "♜"; }
.cloud::before { content: "☁"; }
.brain::before { content: "◌"; }
.person::before { content: "○"; }
.building::before { content: "▥"; }
.check::before { content: "✓"; }
.search::before { content: "⌕"; }
.rocket::before { content: "↗"; }
.chart::before { content: "▟"; }
.compass::before { content: "◈"; }
.handshake::before { content: "◇"; }
.binoculars::before { content: "◉"; }
.map::before { content: "⌘"; }
.gear::before { content: "⚙"; }
.people::before { content: "☷"; }
.phone::before { content: "☎"; }

.process {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.process article {
  position: relative;
  min-height: 150px;
  padding: 24px 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.process b,
.timeline b {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-right: 12px;
  border-radius: 50%;
  color: var(--white);
  background: var(--blue);
}

.process .icon {
  width: 58px;
  height: 58px;
  margin: 0 14px 0 0;
  vertical-align: middle;
}

.process h3 {
  display: inline;
  color: var(--navy);
}

.process p {
  margin: 10px 0 0;
  color: #566a87;
}

.profile-row {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 64px;
  align-items: center;
}

.portrait {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 8px;
  object-fit: cover;
  object-position: 50% 42%;
  box-shadow: var(--shadow);
}

.portrait.headshot {
  border: 1px solid var(--line);
}

.profile-card {
  padding: 34px 38px;
}

.profile-card .role {
  color: var(--blue);
  font-size: 20px;
  font-weight: 800;
}

.mini-points {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 26px;
  color: var(--navy);
  font-size: 14px;
  font-weight: 800;
}

.cta-band,
.cta-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin: 38px clamp(24px, 7vw, 92px) 20px;
  padding: 28px 48px;
}

.cta-band {
  color: var(--white);
  border-radius: 8px;
  background: linear-gradient(135deg, #006dda, #003d9a);
}

.cta-band h2,
.cta-band p {
  margin: 0;
}

.cta-band p {
  color: #d9e9ff;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.15fr .9fr;
  gap: 24px;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px 28px;
  padding: 30px;
}

label {
  color: var(--navy);
  font-weight: 800;
}

input,
select,
textarea {
  display: block;
  width: 100%;
  margin-top: 8px;
  padding: 15px 16px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--ink);
  font: inherit;
}

textarea {
  resize: vertical;
}

.bot-field {
  position: absolute;
  left: -9999px;
}

.wide {
  grid-column: 1 / -1;
}

.privacy {
  grid-column: 1 / -1;
  margin: 0;
  color: #6d7d98;
  font-size: 14px;
  text-align: center;
}

.form-status {
  grid-column: 1 / -1;
  min-height: 22px;
  margin: -6px 0 0;
  color: #6d7d98;
  font-size: 15px;
  font-weight: 800;
  text-align: center;
}

.form-status.success {
  color: #087a3b;
}

.form-status.error {
  color: #b42318;
}

.contact-card {
  padding: 36px 30px;
}

.contact-card img {
  width: min(100%, 300px);
  margin-bottom: 20px;
}


.contact-card a {
  display: block;
  margin: 16px 0;
  color: var(--navy);
  font-size: 20px;
  font-weight: 800;
}

.pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}

.pills span {
  padding: 10px 22px;
  border-radius: 999px;
  color: var(--blue);
  background: #eaf3ff;
  font-weight: 800;
}

.form-success {
  grid-column: 1 / -1;
  min-height: 320px;
  display: grid;
  align-content: center;
  text-align: center;
}

.form-success h2 {
  margin: 0 0 12px;
  color: var(--navy);
  font-size: 36px;
}

.site-footer {
  position: relative;
  display: grid;
  grid-template-columns: 220px 1fr auto;
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  margin-top: 38px;
  padding: 56px clamp(24px, 7vw, 92px);
  overflow: hidden;
  color: var(--white);
  background: linear-gradient(135deg, #001e4c 0%, #002b68 62%, #096ed8 100%);
}

.site-footer::after {
  content: "";
  position: absolute;
  right: -80px;
  bottom: -70px;
  width: 430px;
  height: 230px;
  transform: rotate(-42deg);
  background: rgba(37, 137, 255, .45);
}

.site-footer > * {
  position: relative;
  z-index: 1;
}

.site-footer img {
  width: 210px;
}

.footer-copy {
  padding-left: 58px;
  border-left: 1px solid rgba(255, 255, 255, .45);
}

.footer-copy h2 {
  margin: 0 0 12px;
  font-size: 28px;
}

.footer-copy p {
  max-width: 430px;
  margin: 0;
  color: #d8e8ff;
}

.footer-contact {
  display: grid;
  gap: 20px;
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 700;
}

@media (max-width: 1100px) {
  .cards.four,
  .cards.six,
  .process {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero {
    grid-template-columns: 1fr;
  }

  .hero-art {
    justify-self: center;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }

  .footer-copy {
    padding-left: 0;
    border-left: 0;
  }
}

@media (max-width: 780px) {
  .site-header {
    min-height: 82px;
    padding: 16px 20px;
  }

  .brand img {
    width: 190px;
  }

  .nav-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 81px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 14px 24px 22px;
    border-bottom: 1px solid var(--line);
    background: var(--white);
  }

  .main-nav.open {
    display: flex;
  }

  .hero,
  .hero.compact {
    min-height: 0;
    padding: 34px 22px;
  }

  .hero h1,
  .hero.compact h1 {
    font-size: 40px;
  }

  .actions,
  .cta-band,
  .cta-card {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .cards.four,
  .cards.three,
  .cards.six,
  .process,
  .profile-row,
  .contact-grid,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 30px 22px;
  }

  .mini-points {
    grid-template-columns: 1fr;
  }

  .cta-band,
  .cta-card {
    margin: 28px 22px;
    padding: 26px;
  }

  .site-footer {
    padding: 40px 24px;
  }
}
