:root {
  --navy: #092247;
  --navy2: #12365f;
  --white: #ffffff;
  --soft: #f5f7fa;
  --line: #e7ebf0;
  --muted: #6a7483;
  --shadow: 0 30px 90px rgba(9, 34, 71, 0.14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--white);
  color: var(--navy);
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.nav {
  position: fixed;
  z-index: 30;
  top: 0;
  left: 0;
  right: 0;
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 34px;
  background: rgba(255,255,255,.82);
  border-bottom: 1px solid rgba(9,34,71,.08);
  backdrop-filter: saturate(180%) blur(22px);
}
.brand img { width: 250px; }
.nav-cta,
.hero-cta,
.contact a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 20px;
  background: var(--navy);
  color: #fff;
  font-weight: 850;
  transition: transform .25s ease, background .25s ease;
}
.nav-cta:hover,
.contact a:hover { background: #061832; transform: translateY(-1px); }

.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  display: grid;
  align-items: start;
}
.hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.01);
}
.hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(9,34,71,.84), rgba(9,34,71,.52) 46%, rgba(9,34,71,.16)),
              linear-gradient(0deg, rgba(9,34,71,.35), transparent 46%);
}
.hero-inner {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding-top: 124px;
  display: grid;
  grid-template-columns: minmax(0, 780px) auto;
  gap: 42px;
  align-items: start;
  color: #fff;
}
.kicker {
  margin: 0 0 14px;
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 900;
  color: #b9cbe0;
}
h1, h2, h3 { margin: 0; letter-spacing: -.045em; line-height: 1.03; }
h1 { font-size: clamp(52px, 7.4vw, 104px); font-weight: 850; }
h2 { font-size: clamp(38px, 5vw, 72px); font-weight: 820; }
h3 { font-size: 22px; letter-spacing: -.025em; }
.hero p {
  max-width: 660px;
  margin: 24px 0 0;
  color: rgba(255,255,255,.84);
  font-size: 21px;
}
.hero-cta {
  min-height: 54px;
  padding: 0 24px;
  background: #fff;
  color: var(--navy);
  white-space: nowrap;
}
.hero-cta:hover { background: #eef3f8; transform: translateY(-2px); }

.metrics {
  width: min(1180px, calc(100% - 48px));
  margin: 40px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line);
  background: #fff;
}
.metrics div {
  padding: 32px 34px;
  text-align: center;
  border-right: 1px solid var(--line);
  transition: background .25s ease;
}
.metrics div:hover { background: var(--soft); }
.metrics div:last-child { border-right: 0; }
.metrics strong { display: block; font-size: 22px; line-height: 1.12; }
.metrics span {
  display: block;
  max-width: 220px;
  margin: 4px auto 0;
  color: var(--muted);
  line-height: 1.35;
}

.intro {
  width: min(980px, calc(100% - 48px));
  margin: 0 auto;
  padding: 120px 0;
  text-align: center;
}
.intro .kicker,
.services .kicker,
.contact .kicker,
.listing .kicker { color: var(--navy2); }
.intro p {
  max-width: 760px;
  margin: 28px auto 0;
  color: var(--muted);
  font-size: 20px;
}

.listing {
  position: relative;
  min-height: 820px;
  overflow: hidden;
}
.listing > img {
  position: absolute;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.listing::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(255,255,255,.82), rgba(255,255,255,.68) 40%, rgba(255,255,255,.42) 62%, rgba(255,255,255,.12));
}
.listing::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(255,255,255,.50), rgba(255,255,255,.34) 42%, rgba(255,255,255,.14) 70%, transparent);
}
.listing-content {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 48px));
  max-width: 1180px;
  margin: 0 auto;
  padding: 116px 0;
}
.listing-content h2 { max-width: 700px; }
.listing-content p {
  max-width: 650px;
  color: var(--muted);
  font-size: 20px;
}
.platform-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  max-width: 640px;
  margin-top: 40px;
}
.platform-row img {
  justify-self: center;
  width: auto;
  height: 28px;
  max-width: 116px;
  object-fit: contain;
  transition: transform .25s ease, opacity .25s ease;
}
.platform-row img:first-child { justify-self: start; }
.platform-row img:last-child { justify-self: end; }
.platform-row img:hover { opacity: .74; transform: translateY(-4px); }

.services {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 120px 0;
}
.section-head {
  max-width: 820px;
  margin: 0 auto 48px;
  text-align: center;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.service-grid article {
  padding: 34px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 14px 50px rgba(9,34,71,.055);
  transition: transform .28s ease, box-shadow .28s ease;
}
.service-grid article:hover { transform: translateY(-8px); box-shadow: 0 28px 80px rgba(9,34,71,.12); }
.service-grid i {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 28px;
  background: var(--soft);
}
.service-grid svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: var(--navy);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.service-grid p { color: var(--muted); margin-bottom: 0; }

.contact {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto 110px;
  padding: 76px 0;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.contact p {
  max-width: 650px;
  color: var(--muted);
  font-size: 19px;
}
.contact a { min-height: 54px; padding: 0 28px; }

footer {
  padding: 64px max(24px, calc((100vw - 1180px) / 2)) 32px;
  background: var(--navy);
  color: #fff;
}
.footer-top {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 48px;
  align-items: start;
}
.footer-top img { width: 280px; }
.footer-top p {
  max-width: 560px;
  margin: 0;
  color: rgba(255,255,255,.72);
  font-size: 19px;
}
footer nav { display: flex; flex-wrap: wrap; gap: 22px; margin: 42px 0; }
footer nav a { color: rgba(255,255,255,.82); font-weight: 750; }
.copyright {
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.16);
  color: rgba(255,255,255,.6);
  font-size: 14px;
}

.legal-page { padding: 140px 24px 100px; background: #fff; }
.legal-page section { width: min(860px, 100%); margin: 0 auto; }
.legal-page h1 { font-size: clamp(48px, 7vw, 88px); }
.legal-page h2 { margin-top: 42px; font-size: 26px; letter-spacing: -.03em; }
.legal-page p { color: var(--muted); font-size: 18px; }

@media (max-width: 900px) {
  .nav { height: 68px; padding: 0 16px; }
  .brand img { width: 188px; }
  .nav-cta { height: 42px; padding: 0 16px; }
  .hero-inner { width: calc(100% - 32px); padding-top: 96px; grid-template-columns: 1fr; gap: 26px; }
  .hero-cta { width: 100%; }
  h1 { font-size: clamp(46px, 13vw, 72px); }
  .metrics, .service-grid, .contact, .footer-top { grid-template-columns: 1fr; }
  .metrics div { padding: 26px 16px; border-right: 0; border-bottom: 1px solid var(--line); }
  .metrics div:last-child { border-bottom: 0; }
  .intro, .services { padding: 82px 0; }
  .listing { min-height: 760px; }
  .listing::before { background: linear-gradient(0deg, rgba(255,255,255,.88), rgba(255,255,255,.74) 58%, rgba(255,255,255,.22)); }
  .listing::after { background: linear-gradient(0deg, rgba(255,255,255,.44), rgba(255,255,255,.24) 60%, transparent); }
  .listing-content { width: calc(100% - 32px); padding: 80px 0; }
  .platform-row { grid-template-columns: repeat(2, 1fr); row-gap: 18px; }
  .platform-row img,
  .platform-row img:first-child,
  .platform-row img:last-child { justify-self: start; height: 25px; }
  .contact { width: calc(100% - 32px); padding: 34px 0; margin-bottom: 72px; }
  .contact a { width: 100%; }
  .footer-top img { width: 238px; }
}


/* Services label scale */
.services .section-head .kicker {
  font-size: 24px;
  letter-spacing: .16em;
  margin-bottom: 18px;
}

@media (max-width: 900px) {
  .services .section-head .kicker {
    font-size: 22px;
  }
}

.footer-address {
  display: grid;
  gap: 4px;
  margin: 0 0 34px;
  color: rgba(255,255,255,.72);
  font-style: normal;
}
.footer-address strong {
  color: #fff;
  font-size: 13px;
  letter-spacing: .12em;
  text-transform: uppercase;
}
