:root {
  --ink: #142536;
  --muted: #5d6b78;
  --navy: #17324d;
  --blue: #2c6685;
  --teal: #4f9a99;
  --paper: #fbfcfd;
  --soft: #f3f6f7;
  --line: #e1e7eb;
  --white: #fff;
  --max: 1120px;
  --radius: 18px;
  --shadow: 0 18px 45px rgba(20, 37, 54, .08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

.container {
  width: min(calc(100% - 40px), var(--max));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 20;
  padding: 10px 14px;
  color: var(--white);
  background: var(--navy);
  border-radius: 8px;
  transform: translateY(-150%);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(248, 250, 251, .94);
  border-bottom: 1px solid rgba(217, 226, 231, .85);
  backdrop-filter: blur(14px);
}

.header-inner,
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-inner {
  min-height: 72px;
}

.brand {
  display: inline-block;
  color: var(--navy);
  text-decoration: none;
}

.brand-logo {
  display: block;
  width: auto;
  height: 42px;
}

nav {
  display: flex;
  gap: 28px;
}

nav a {
  color: var(--muted);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
}

nav a:hover,
nav a:focus-visible {
  color: var(--blue);
}

.hero {
  position: relative;
  min-height: 440px;
  display: grid;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 83% 28%, rgba(79, 154, 153, .20), transparent 23rem),
    linear-gradient(135deg, #f8fafb 48%, #edf4f5);
}

.hero::after {
  position: absolute;
  top: 10%;
  right: -10%;
  width: 380px;
  height: 380px;
  content: "";
  border: 1px solid rgba(44, 102, 133, .15);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(44, 102, 133, .035), 0 0 0 140px rgba(44, 102, 133, .025);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(330px, .75fr);
  gap: 52px;
  align-items: center;
  padding-block: 52px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 750;
  letter-spacing: .13em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  line-height: 1.12;
}

h1 {
  max-width: 790px;
  margin-bottom: 26px;
  color: var(--navy);
  font-size: clamp(42px, 5.4vw, 68px);
  font-weight: 700;
  letter-spacing: -.045em;
}

h2 {
  margin-bottom: 18px;
  color: var(--navy);
  font-size: clamp(32px, 4.2vw, 50px);
  letter-spacing: -.035em;
}

h3 {
  margin-bottom: 14px;
  color: var(--navy);
  font-size: 22px;
}

.hero-text {
  max-width: 680px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: clamp(19px, 2vw, 23px);
}

.audience-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.audience-list span {
  padding: 7px 12px;
  color: var(--navy);
  background: rgba(255, 255, 255, .72);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 650;
}

.status-dot {
  flex: 0 0 auto;
  width: 10px;
  height: 10px;
  margin-top: 7px;
  background: var(--teal);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(79, 154, 153, .13);
}

.tech-visual {
  position: relative;
  margin: 0;
  padding: 14px;
  background: rgba(255, 255, 255, .66);
  border: 1px solid rgba(255, 255, 255, .9);
  border-radius: 26px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.tech-visual img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: contain;
  object-position: center;
  border-radius: 18px;
}

.visual-label {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 15px 8px 2px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
}

.service-strip {
  position: relative;
  z-index: 2;
  padding-block: 24px;
  background: var(--paper);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.service-strip-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.service-feature {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 18px;
  align-items: center;
  min-height: 112px;
  padding: 20px 22px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  text-decoration: none;
}

.remote-feature {
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.remote-feature:hover,
.remote-feature:focus-visible {
  transform: translateY(-2px);
  border-color: #a9c2cf;
  box-shadow: 0 12px 30px rgba(20, 37, 54, .08);
}

.feature-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  color: var(--white);
  background: var(--blue);
  border-radius: 14px;
  font-size: 23px;
  font-weight: 700;
}

.service-feature small,
.service-feature strong,
.service-feature > span > span {
  display: block;
}

.service-feature small {
  margin-bottom: 2px;
  color: var(--blue);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.service-feature strong {
  color: var(--navy);
  font-size: 19px;
}

.service-feature > span > span {
  color: var(--muted);
  font-size: 13px;
}

.feature-arrow {
  color: var(--blue);
  font-size: 22px;
}

.partner-feature {
  grid-template-columns: minmax(180px, 260px) 1fr;
}

.partner-logo {
  display: block;
  width: auto;
  max-width: 100%;
  height: 48px;
  object-fit: contain;
  object-position: left center;
}

.partner-feature p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.section {
  padding-block: 68px;
}

.section-heading {
  max-width: 720px;
}

.section-heading > p:last-child {
  color: var(--muted);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 34px;
}

.service-grid article {
  min-height: 214px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 6px 20px rgba(20, 37, 54, .035);
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.service-grid article:hover {
  transform: translateY(-3px);
  border-color: #b9cbd4;
  box-shadow: var(--shadow);
}

.service-grid p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 15px;
}

.service-number {
  display: block;
  margin-bottom: 30px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: .12em;
}

.section-muted {
  background: var(--soft);
}

.approach-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
}

.approach-copy {
  color: var(--muted);
  font-size: 18px;
}

.principles {
  display: grid;
  gap: 14px;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}

.principles li {
  padding-top: 14px;
  border-top: 1px solid #d4e0e4;
}

.principles strong {
  color: var(--navy);
}

.contact-section {
  color: var(--white);
  background: var(--navy);
}

.contact-section .eyebrow {
  color: #87c6c3;
}

.contact-section h2,
.contact-section .section-heading > p:last-child {
  color: var(--white);
}

.contact-section .section-heading > p:last-child {
  opacity: .68;
}

.contact-details {
  display: grid;
  gap: 26px;
  font-style: normal;
}

.contact-details div {
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(255, 255, 255, .16);
}

.contact-details span {
  display: block;
  margin-bottom: 5px;
  color: #a9c2cf;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.contact-details a,
.contact-details p {
  margin: 0;
  color: var(--white);
  font-size: 20px;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

footer {
  color: #a9c2cf;
  background: #10273c;
  border-top: 1px solid rgba(255, 255, 255, .08);
}

.footer-inner {
  min-height: 90px;
}

.footer-inner p {
  margin: 0;
  font-size: 14px;
}

.footer-inner nav {
  gap: 22px;
}

.footer-inner nav a {
  color: #c7d5dc;
  font-size: 14px;
}

.legal-page main {
  min-height: calc(100vh - 172px);
}

.legal-content {
  width: min(calc(100% - 40px), 760px);
  margin-inline: auto;
  padding-block: 90px 120px;
}

.legal-content h1 {
  margin-bottom: 55px;
  font-size: clamp(42px, 6vw, 66px);
}

.legal-content h2 {
  margin-top: 46px;
  font-size: 25px;
}

.legal-content p,
.legal-content li {
  color: var(--muted);
}

.legal-content a {
  color: var(--blue);
}

@media (max-width: 850px) {
  .header-inner {
    align-items: flex-start;
    padding-block: 18px;
  }

  .header-inner nav {
    gap: 16px;
    padding-top: 11px;
  }

  .brand-logo {
    height: 40px;
  }

  .header-inner nav a {
    font-size: 14px;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid,
  .approach-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero-grid {
    padding-block: 52px;
  }

  .tech-visual {
    max-width: 520px;
  }

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

  .service-strip-grid {
    grid-template-columns: 1fr;
  }
}

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

  .site-header {
    position: static;
  }

  .header-inner {
    display: block;
  }

  .header-inner nav {
    margin-top: 16px;
    padding-top: 14px;
    border-top: 1px solid var(--line);
  }

  .header-inner nav a {
    font-size: 13px;
  }

  .hero-grid {
    padding-block: 46px 52px;
  }

  h1 {
    font-size: 44px;
  }

  .hero::after {
    display: none;
  }

  .section {
    padding-block: 56px;
  }

  .service-grid {
    grid-template-columns: 1fr;
    margin-top: 38px;
  }

  .service-grid article {
    min-height: auto;
  }

  .service-feature {
    grid-template-columns: auto 1fr;
  }

  .partner-feature {
    grid-template-columns: 1fr;
  }

  .partner-logo {
    max-width: 260px;
  }

  .feature-arrow {
    display: none;
  }


  .service-number {
    margin-bottom: 28px;
  }

  .footer-inner {
    display: block;
    padding-block: 26px;
  }

  .footer-inner nav {
    margin-top: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition: none !important;
  }
}
