:root {
  --navy: #071b2b;
  --blue: #0b5bd3;
  --cyan: #16b8d4;
  --ink: #10283a;
  --muted: #61717e;
  --paper: #f5f7f8;
  --line: #dce3e7;
  --white: #fff;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  color: var(--ink);
  font-family: "DM Sans", sans-serif;
  background: var(--white);
  font-size: 16px;
  line-height: 1.6;
}
.container {
  width: min(1160px, calc(100% - 48px));
  margin: auto;
}
.nav-wrap {
  height: 84px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(12, 48, 70, 0.1);
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  z-index: 20;
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  color: var(--navy);
  font-family: "Space Grotesk";
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -0.6px;
}
.brand > span:last-child > span {
  color: var(--blue);
}
.brand-mark {
  display: grid;
  place-items: center;
  width: 37px;
  height: 37px;
  background: var(--blue);
  color: white;
  clip-path: polygon(50% 0, 94% 25%, 94% 75%, 50% 100%, 6% 75%, 6% 25%);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
}
.nav-links a {
  color: var(--ink);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 15px 20px;
  background: var(--blue);
  color: white !important;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  border: 1px solid var(--blue);
  transition: 0.25s;
}
.button:hover {
  transform: translateY(-2px);
  background: #064caf;
}
.button-small {
  padding: 11px 16px;
  gap: 15px;
}
.menu {
  display: none;
  border: 0;
  background: none;
}
.hero {
  min-height: 690px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 50px;
  padding-top: 60px;
  padding-bottom: 70px;
  overflow: hidden;
}
.eyebrow {
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 2.3px;
  font-weight: 700;
  color: var(--blue);
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 22px;
}
.eyebrow span {
  width: 25px;
  height: 2px;
  background: var(--cyan);
}
h1,
h2,
h3 {
  font-family: "Space Grotesk", sans-serif;
  margin: 0;
  line-height: 1.06;
  letter-spacing: -2px;
}
h1 {
  font-size: clamp(55px, 6vw, 81px);
  color: var(--navy);
}
h1 em,
.contact h2 em {
  color: var(--blue);
  font-style: normal;
}
.lead {
  font-size: 18px;
  color: var(--muted);
  max-width: 590px;
  margin: 28px 0 32px;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 30px;
}
.text-link {
  color: var(--ink);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}
.trust {
  display: flex;
  gap: 26px;
  margin-top: 42px;
  color: var(--muted);
  font-size: 13px;
}
.trust span:before {
  content: "✓";
  color: var(--cyan);
  font-weight: 700;
  margin-right: 7px;
}
.hero-visual {
  position: relative;
  height: 530px;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, #eef5f8, #f9fbfc);
  clip-path: polygon(12% 0, 100% 0, 100% 86%, 88% 100%, 0 100%, 0 12%);
}
.radar {
  width: 380px;
  height: 380px;
  border: 1px solid rgba(11, 91, 211, 0.16);
  border-radius: 50%;
  position: relative;
  overflow: hidden;
  background:
    repeating-radial-gradient(
      circle,
      transparent 0 63px,
      rgba(11, 91, 211, 0.1) 64px 65px
    ),
    linear-gradient(
      90deg,
      transparent 49.8%,
      rgba(11, 91, 211, 0.1) 50%,
      transparent 50.2%
    ),
    linear-gradient(
      transparent 49.8%,
      rgba(11, 91, 211, 0.1) 50%,
      transparent 50.2%
    );
}
.sweep {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: conic-gradient(
    from 0deg,
    rgba(22, 184, 212, 0.35),
    transparent 20%
  );
  animation: spin 5s linear infinite;
}
.ping {
  position: absolute;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 7px rgba(11, 91, 211, 0.13);
}
.p1 {
  left: 26%;
  top: 31%;
}
.p2 {
  right: 19%;
  top: 52%;
}
.p3 {
  left: 48%;
  bottom: 18%;
}
.radar-label {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 165px;
  padding: 14px;
  background: white;
  box-shadow: 0 15px 35px rgba(7, 27, 43, 0.13);
  text-align: center;
}
.radar-label b {
  display: block;
  font-size: 12px;
}
.radar-label span {
  display: block;
  font-size: 10px;
  color: var(--muted);
}
.radar-label i {
  display: inline-block;
  width: 6px;
  height: 6px;
  background: #26ba78;
  border-radius: 50%;
  margin-right: 4px;
}
.status-card {
  position: absolute;
  right: 8px;
  bottom: 40px;
  background: var(--navy);
  color: white;
  padding: 18px 24px;
  display: flex;
  gap: 12px;
  align-items: center;
  box-shadow: 0 18px 35px rgba(7, 27, 43, 0.2);
}
.status-icon {
  width: 30px;
  height: 30px;
  border: 1px solid var(--cyan);
  color: var(--cyan);
  border-radius: 50%;
  display: grid;
  place-items: center;
}
.status-card b,
.status-card small {
  display: block;
}
.status-card b {
  font-size: 13px;
}
.status-card small {
  font-size: 10px;
  color: #9aabb7;
}
.section {
  padding: 110px 0;
}
.services {
  background: var(--paper);
}
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 60px;
}
.section-head h2,
.about h2,
.approach h2,
.contact h2 {
  font-size: clamp(40px, 5vw, 61px);
  color: var(--navy);
}
.section-head > p {
  max-width: 380px;
  color: var(--muted);
  margin: 0 0 5px;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
}
.service-card {
  padding: 34px 27px;
  background: white;
  min-height: 390px;
  position: relative;
  transition: 0.25s;
}
.service-card:hover {
  transform: translateY(-8px);
  z-index: 2;
  box-shadow: 0 18px 40px rgba(12, 36, 54, 0.1);
}
.service-card.featured {
  background: var(--navy);
  color: white;
}
.number {
  font-family: "Space Grotesk";
  font-size: 11px;
  color: #93a1aa;
}
.icon {
  font-size: 35px;
  color: var(--blue);
  height: 90px;
  display: flex;
  align-items: center;
}
.featured .icon {
  color: var(--cyan);
}
.service-card h3 {
  font-size: 21px;
  letter-spacing: -0.6px;
  margin-bottom: 20px;
}
.service-card p {
  font-size: 14px;
  color: var(--muted);
}
.featured p {
  color: #a8b6bf;
}
.service-card a {
  position: absolute;
  bottom: 30px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
}
.featured a {
  color: var(--cyan);
}
.approach {
  background: var(--navy);
  color: white;
}
.approach-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
}
.eyebrow.light {
  color: var(--cyan);
}
.approach h2,
.contact h2 {
  color: white;
}
.approach-copy > p:not(.eyebrow) {
  color: #aab8c1;
  max-width: 480px;
  margin: 28px 0 35px;
}
.button-light {
  background: white;
  border-color: white;
  color: var(--navy) !important;
}
.button-light:hover {
  background: #eaf7fa;
}
.steps {
  list-style: none;
  margin: 0;
  padding: 0;
}
.steps li {
  display: flex;
  gap: 25px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}
.steps li > b {
  color: var(--cyan);
  font-family: "Space Grotesk";
  font-size: 12px;
}
.steps h3 {
  letter-spacing: -0.5px;
  font-size: 20px;
}
.steps p {
  margin: 7px 0 0;
  color: #9cabb5;
  font-size: 14px;
}
.about-card {
  padding-left: 8%;
  border-left: 4px solid var(--blue);
}
.about-card > p:not(.eyebrow) {
  max-width: 750px;
  color: var(--muted);
  font-size: 18px;
  margin: 30px 0 45px;
}
.promises {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 850px;
  border-top: 1px solid var(--line);
  padding-top: 30px;
}
.promises span {
  display: flex;
  flex-direction: column;
}
.promises b {
  font-family: "Space Grotesk";
}
.promises small {
  color: var(--muted);
}
.contact {
  background: var(--blue);
  color: white;
}
.contact-inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 100px;
  align-items: end;
}
.contact-copy p {
  color: #d9e6fb;
  font-size: 17px;
  margin: 0 0 28px;
}
.contact .eyebrow span {
  background: white;
}
footer {
  padding: 54px 0;
  background: #04131e;
  color: white;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
}
.footer-inner .brand {
  color: white;
}
.footer-inner p {
  font-size: 13px;
  color: #92a4b0;
}
.footer-inner > div:last-child {
  text-align: right;
  display: flex;
  flex-direction: column;
  font-size: 12px;
  color: #8398a5;
}
.footer-inner a {
  color: white;
  text-decoration: none;
  margin-bottom: 4px;
}
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.7s,
    transform 0.7s;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
@media (max-width: 900px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 84px;
    left: 0;
    right: 0;
    padding: 25px;
    background: white;
    flex-direction: column;
    box-shadow: 0 10px 25px #071b2b18;
  }
  .nav-links.open {
    display: flex;
  }
  .menu {
    display: block;
  }
  .menu span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--navy);
    margin: 6px;
  }
  .hero {
    grid-template-columns: 1fr;
    padding-top: 90px;
  }
  .hero-visual {
    height: 450px;
  }
  .service-grid {
    grid-template-columns: 1fr 1fr;
  }
  .approach-grid,
  .contact-inner {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .section-head {
    display: block;
  }
  .section-head > p {
    margin-top: 25px;
  }
}
@media (max-width: 600px) {
  .container {
    width: min(100% - 32px, 1160px);
  }
  .nav-wrap {
    height: 70px;
  }
  .nav-links {
    top: 70px;
  }
  .hero {
    min-height: auto;
    padding-top: 65px;
  }
  .hero-visual {
    height: 370px;
  }
  .radar {
    width: 290px;
    height: 290px;
  }
  .status-card {
    bottom: 20px;
  }
  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }
  .trust {
    gap: 12px;
    flex-wrap: wrap;
  }
  .section {
    padding: 80px 0;
  }
  .service-grid {
    grid-template-columns: 1fr;
  }
  .service-card {
    min-height: 350px;
  }
  .promises {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .footer-inner > div:last-child {
    text-align: left;
  }
  .about-card {
    padding-left: 25px;
  }
  .contact-inner {
    gap: 40px;
  }
}
