:root {
  --blue: #0962d8;
  --blue-strong: #034fb8;
  --navy: #00152d;
  --navy-soft: #05264b;
  --ink: #071a34;
  --muted: #5d6b7e;
  --line: #dce6f2;
  --surface: #f6f9fe;
  --accent: #ffb45f;
  --white: #fff;
  --shadow: 0 18px 45px rgba(6, 31, 68, .12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 94px;
}

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

body.menu-open {
  overflow: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
}

.container {
  width: min(1180px, calc(100% - 56px));
  margin: 0 auto;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 30;
  transform: translateY(-140%);
  background: var(--white);
  color: var(--navy);
  padding: 10px 14px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 800;
  box-shadow: var(--shadow);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  color: var(--white);
  transition: transform .28s ease;
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 18, 38, .86);
  border-bottom: 1px solid rgba(255, 255, 255, .12);
  box-shadow: 0 14px 40px rgba(0, 16, 38, .18);
  opacity: 0;
  backdrop-filter: blur(14px);
  transition: opacity .25s ease;
}

.site-header.is-scrolled::before,
.menu-open .site-header::before {
  opacity: 1;
}

.topbar,
.nav {
  position: relative;
}

.topbar {
  height: 34px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 28px;
  font-size: 14px;
}

.topbar a {
  text-decoration: none;
}

.nav {
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand img {
  height: 52px;
  width: auto;
}

.menu {
  display: flex;
  align-items: center;
  gap: 22px;
}

.menu a,
.footer a {
  text-decoration: none;
}

.menu a {
  position: relative;
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  padding: 12px 0;
}

.menu a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 4px;
  height: 2px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .22s ease;
}

.menu a:hover::after,
.menu a:focus-visible::after {
  transform: scaleX(1);
}

.hamb {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, .26);
  border-radius: 8px;
  background: rgba(255, 255, 255, .08);
  cursor: pointer;
  padding: 0;
}

.hamb span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--white);
  border-radius: 999px;
  transition: transform .22s ease, opacity .22s ease;
}

.menu-open .hamb span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-open .hamb span:nth-child(2) {
  opacity: 0;
}

.menu-open .hamb span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 14px 26px;
  border: 0;
  border-radius: 6px;
  background: var(--blue);
  color: var(--white);
  text-decoration: none;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .2px;
  cursor: pointer;
  overflow: hidden;
  box-shadow: 0 14px 30px rgba(9, 98, 216, .24);
  transition: transform .22s ease, background .22s ease, box-shadow .22s ease;
}

.btn::after {
  content: "";
  width: 7px;
  height: 7px;
  margin-left: 10px;
  border-right: 2px solid currentColor;
  border-top: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform .22s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
  background: var(--blue-strong);
  box-shadow: 0 18px 34px rgba(9, 98, 216, .32);
}

.btn:hover::after,
.btn:focus-visible::after {
  transform: translateX(3px) rotate(45deg);
}

.btn.small {
  min-height: 34px;
  padding: 9px 16px;
  font-size: 11px;
}

.btn.outline {
  background: transparent;
  border: 1.5px solid currentColor;
  box-shadow: none;
}

.btn.ghost {
  background: transparent;
  color: var(--blue);
  border: 1.5px solid rgba(9, 98, 216, .55);
  box-shadow: none;
}

.hero {
  position: relative;
  min-height: 650px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy);
  isolation: isolate;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: linear-gradient(90deg, rgba(0, 13, 30, .97) 0%, rgba(0, 17, 36, .82) 36%, rgba(0, 17, 36, .28) 70%, rgba(0, 17, 36, .56) 100%), url("assets/hero-ai.png") 58% center / cover no-repeat;
  transform: scale(1.015);
  animation: hero-pan 18s ease-in-out infinite alternate;
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 130px;
  z-index: -1;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), var(--white));
  opacity: .22;
}

.hero-content {
  color: var(--white);
  padding-top: 86px;
  padding-bottom: 48px;
}

.hero-kicker {
  width: fit-content;
  margin: 0 0 18px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: 999px;
  color: #d7e8ff;
  font-size: 13px;
  font-weight: 800;
  background: rgba(0, 24, 52, .35);
}

.hero h1 {
  max-width: 620px;
  margin: 0 0 22px;
  font-size: 56px;
  line-height: 1.08;
  font-weight: 950;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 550px;
  margin: 0 0 30px;
  font-size: 20px;
  line-height: 1.55;
  color: #edf5ff;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.hero-tags span {
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .16);
  color: #e2efff;
  font-size: 13px;
  font-weight: 800;
}

.about {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 56px;
  padding-top: 76px;
  padding-bottom: 58px;
}

.eyebrow {
  display: inline-block;
  color: var(--blue);
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .5px;
}

.center {
  display: block;
  text-align: center;
}

h2 {
  margin: 12px 0 20px;
  font-size: 32px;
  line-height: 1.15;
  letter-spacing: 0;
}

h3 {
  margin: 0;
}

p {
  margin: 0;
}

.about p,
.split-copy p,
.info-card p,
.career p,
.contact-card p,
.footer p,
.news-card p {
  color: var(--muted);
  line-height: 1.75;
}

.features {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  padding-left: 48px;
  border-left: 1px solid var(--line);
}

.feature {
  min-height: 220px;
  padding: 24px 16px;
  text-align: center;
  border-radius: 8px;
  transition: transform .22s ease, background .22s ease, box-shadow .22s ease;
}

.feature:hover {
  transform: translateY(-6px);
  background: var(--surface);
  box-shadow: 0 16px 36px rgba(6, 31, 68, .08);
}

.feature-icon {
  display: inline-grid;
  place-items: center;
  width: 66px;
  height: 66px;
  margin-bottom: 16px;
  color: var(--blue);
}

.feature-icon svg {
  width: 62px;
  height: 62px;
  fill: none;
  stroke: currentColor;
  stroke-width: 3.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feature h3 {
  margin-bottom: 10px;
}

.feature p {
  color: #384b63;
  font-size: 14px;
  line-height: 1.65;
}

.section {
  padding-top: 58px;
  padding-bottom: 58px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 30px;
}

.service-card {
  display: flex;
  flex-direction: column;
  min-height: 310px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(8, 36, 76, .05);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(9, 98, 216, .35);
  box-shadow: var(--shadow);
}

.service-card img {
  width: 100%;
  height: 134px;
  object-fit: cover;
}

.service-card div {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 20px;
}

.service-card h3 {
  margin-bottom: 8px;
}

.service-card p {
  color: #35485f;
  line-height: 1.55;
}

.service-card a {
  width: fit-content;
  margin-top: auto;
  padding-top: 16px;
  color: var(--blue);
  text-transform: uppercase;
  text-decoration: none;
  font-size: 13px;
  font-weight: 950;
}

.service-card a::after {
  content: " →";
}

.stats {
  color: var(--white);
  background: radial-gradient(circle at 18% 40%, rgba(9, 98, 216, .34), transparent 30%), linear-gradient(90deg, #001326, #002a55);
  padding: 32px 0;
}

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

.stat {
  display: grid;
  grid-template-columns: 54px max-content;
  grid-template-rows: auto auto;
  grid-template-areas:
    "icon number"
    "icon label";
  align-items: start;
  column-gap: 14px;
  row-gap: 6px;
  justify-content: center;
  min-width: 0;
}

.stat::before {
  content: "";
  grid-area: icon;
  width: 54px;
  height: 54px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--blue), #2f8cff);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .18), 0 12px 24px rgba(0, 0, 0, .16);
}

.stat b {
  grid-area: number;
  display: block;
  font-size: 30px;
  line-height: 1;
  white-space: nowrap;
}

.stat span {
  grid-area: label;
  display: block;
  max-width: 150px;
  color: #d7e8ff;
  font-size: 14px;
  font-weight: 800;
}

.split {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 42px;
  align-items: center;
}

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

.route-list span {
  min-height: 64px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--navy);
  font-weight: 900;
  background: linear-gradient(180deg, #fff, #f7fbff);
  transition: transform .2s ease, border-color .2s ease;
}

.route-list span:hover {
  transform: translateY(-4px);
  border-color: rgba(9, 98, 216, .36);
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.info-card {
  min-height: 260px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.info-card.accent {
  color: var(--white);
  background: linear-gradient(135deg, var(--navy), var(--navy-soft));
  border-color: rgba(255, 255, 255, .12);
}

.info-card.accent p {
  color: #d9e7f8;
}

.info-card.accent .eyebrow {
  color: var(--accent);
}

.industries {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
  text-align: center;
}

.industries span {
  position: relative;
  min-height: 106px;
  display: grid;
  place-items: end center;
  padding: 18px 8px;
  color: #08214a;
  font-weight: 950;
}

.industries span::before {
  content: "";
  position: absolute;
  top: 10px;
  width: 38px;
  height: 38px;
  border: 3px solid var(--blue);
  border-radius: 10px;
  transform: rotate(45deg);
  opacity: .9;
}

.process {
  overflow: hidden;
}

.steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 24px;
  margin-top: 34px;
  text-align: center;
}

.steps::before {
  content: "";
  position: absolute;
  top: 21px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: var(--line);
}

.steps article {
  position: relative;
}

.js .steps article.reveal {
  transform: translateY(24px) scale(.98);
}

.js .steps article.reveal.is-visible {
  transform: translateY(0) scale(1);
}

.js .steps article.reveal:nth-child(1) {
  transition-delay: 0ms;
}

.js .steps article.reveal:nth-child(2) {
  transition-delay: 130ms;
}

.js .steps article.reveal:nth-child(3) {
  transition-delay: 260ms;
}

.js .steps article.reveal:nth-child(4) {
  transition-delay: 390ms;
}

.js .steps article.reveal:nth-child(5) {
  transition-delay: 520ms;
}

.steps b {
  position: relative;
  z-index: 1;
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  font-size: 20px;
  box-shadow: 0 10px 22px rgba(9, 98, 216, .25);
}

.steps h3 {
  margin: 16px 0 7px;
}

.steps p {
  color: #52657b;
  font-size: 13px;
  line-height: 1.55;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 30px;
}

.news-card {
  min-height: 210px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 8px 20px rgba(8, 36, 76, .04);
  transition: transform .22s ease, box-shadow .22s ease;
}

.news-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.news-card span {
  display: inline-block;
  margin-bottom: 16px;
  color: var(--blue);
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 950;
}

.news-card h3 {
  margin-bottom: 12px;
  line-height: 1.25;
}

.bottom {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.18fr);
  gap: 24px;
  padding-top: 24px;
  padding-bottom: 46px;
}

.career,
.contact-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(8, 36, 76, .05);
}

.career {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 220px;
  gap: 12px;
  align-items: end;
  padding: 32px 0 0 32px;
  background: linear-gradient(135deg, #f7fbff, #edf5ff);
}

.career-copy {
  padding-bottom: 32px;
}

.career ul {
  list-style: none;
  padding: 0;
  margin: 18px 0 24px;
}

.career li {
  position: relative;
  margin: 12px 0;
  padding-left: 28px;
  color: #223954;
}

.career li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 16px;
  height: 16px;
  border: 2px solid var(--blue);
  border-radius: 50%;
}

.career li::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 8px;
  width: 7px;
  height: 4px;
  border-left: 2px solid var(--blue);
  border-bottom: 2px solid var(--blue);
  transform: rotate(-45deg);
}

.career img {
  width: 220px;
  align-self: end;
  filter: drop-shadow(0 18px 26px rgba(4, 22, 48, .18));
}

.contact-card {
  padding: 32px;
  background: var(--white);
}

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

label {
  display: block;
}

label span {
  display: block;
  margin-bottom: 6px;
  color: #5f7085;
  font-size: 12px;
  font-weight: 800;
}

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

.half {
  grid-column: span 2;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 12px 13px;
  font: inherit;
  color: #25384f;
  background: var(--white);
  outline: none;
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(9, 98, 216, .7);
  box-shadow: 0 0 0 4px rgba(9, 98, 216, .1);
}

textarea {
  height: 94px;
  resize: vertical;
}

.message {
  margin-top: 12px;
}

.check {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 9px;
  align-items: start;
  margin: 14px 0;
}

.check input {
  width: 16px;
  min-height: auto;
  height: 16px;
  margin: 2px 0 0;
}

.check span {
  margin: 0;
  color: #53657b;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.5;
}

.footer {
  color: var(--white);
  background: radial-gradient(circle at 4% 0, rgba(9, 98, 216, .28), transparent 28%), linear-gradient(90deg, #001225, #002348);
  padding: 44px 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr .8fr 1fr 1.2fr 1fr;
  gap: 34px;
}

.footer-logo {
  width: 190px;
  margin-bottom: 18px;
}

.footer h4 {
  margin: 0 0 15px;
  text-transform: uppercase;
  font-size: 13px;
}

.footer a,
.footer p {
  display: block;
  color: #d8e6f4;
  font-size: 14px;
  line-height: 1.7;
}

.footer a:hover {
  color: var(--white);
}

.copy {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 34px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, .16);
  color: #9cb0c8;
  font-size: 12px;
}

.reveal {
  opacity: 1;
  transform: none;
}

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

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes hero-pan {
  from {
    transform: scale(1.015) translateX(-5px);
  }
  to {
    transform: scale(1.035) translateX(5px);
  }
}

@media (max-width: 1120px) {
  .menu {
    gap: 14px;
  }

  .menu a {
    font-size: 13px;
  }

  .features {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 980px) {
  html {
    scroll-padding-top: 76px;
  }

  .container {
    width: min(calc(100% - 40px), 760px);
  }

  .topbar {
    display: none;
  }

  .nav {
    height: 76px;
  }

  .brand img {
    height: 44px;
  }

  .hamb {
    display: block;
  }

  .menu {
    position: fixed;
    left: 20px;
    right: 20px;
    top: 88px;
    display: grid;
    max-height: calc(100dvh - 108px);
    overflow: auto;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 8px;
    background: rgba(0, 21, 45, .97);
    box-shadow: 0 24px 60px rgba(0, 0, 0, .34);
    transform: translateY(-14px);
    opacity: 0;
    visibility: hidden;
    transition: opacity .22s ease, transform .22s ease, visibility .22s ease;
  }

  .menu-open .menu {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .menu a {
    padding: 14px 6px;
    font-size: 16px;
  }

  .hero {
    min-height: 620px;
  }

  .hero-content {
    padding-top: 96px;
  }

  .hero h1 {
    max-width: 560px;
    font-size: 44px;
  }

  .hero-copy {
    font-size: 18px;
  }

  .about,
  .split,
  .bottom {
    grid-template-columns: 1fr;
  }

  .features {
    padding-left: 0;
    border-left: 0;
  }

  .cards,
  .news-grid,
  .info-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    text-align: left;
  }

  .steps::before {
    display: none;
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .copy {
    display: block;
  }

  .copy span {
    display: block;
    margin-top: 8px;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(calc(100% - 32px), 520px);
  }

  .hero {
    min-height: 640px;
  }

  .hero-bg {
    background-position: 58% center;
  }

  .hero-content {
    padding-top: 88px;
  }

  .hero h1 {
    font-size: 36px;
  }

  h2 {
    font-size: 28px;
  }

  .actions,
  .actions .btn {
    width: 100%;
  }

  .cards,
  .features,
  .stats-grid,
  .route-list,
  .industries,
  .steps,
  .news-grid,
  .info-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 0;
  }

  .stat {
    grid-template-columns: 48px 1fr;
  }

  .stat::before {
    width: 48px;
    height: 48px;
  }

  .career {
    grid-template-columns: 1fr;
    padding: 28px 24px 0;
  }

  .career-copy {
    padding-bottom: 12px;
  }

  .career img {
    width: min(250px, 82%);
    justify-self: center;
  }

  .contact-card {
    padding: 24px;
  }

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

  .half {
    grid-column: auto;
  }
}

@media (max-width: 430px) {
  .container {
    width: min(calc(100% - 28px), 390px);
  }

  .hero h1 {
    font-size: 32px;
  }

  .hero-copy {
    font-size: 16px;
  }

  .hero-tags span {
    width: 100%;
  }

  .btn {
    padding-left: 18px;
    padding-right: 18px;
  }
}

@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;
  }
}
