:root {
  --navy: #001a3a;
  --navy-soft: #08295d;
  --blue: #105bd8;
  --blue-bright: #08a9ff;
  --ink: #07142f;
  --text: #38445c;
  --muted: #6f7b8f;
  --line: #d9dfeb;
  --panel: #f7f9fd;
  --white: #ffffff;
  --max-width: 1180px;
  --radius: 6px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--white);
  scroll-behavior: smooth;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--white);
  font-size: 16px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

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

button {
  font: inherit;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--ink);
  line-height: 1.05;
  letter-spacing: 0;
}

p {
  margin: 0;
}

.svg-defs {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 86px;
  padding: 0 max(36px, calc((100vw - var(--max-width)) / 2));
  color: var(--white);
  background: transparent;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
}

.brand-mark {
  width: 66px;
  height: 38px;
  display: block;
  object-fit: contain;
}

.brand-name {
  color: currentColor;
  font-size: 1.28rem;
  line-height: 1;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 800;
}

.site-nav a {
  opacity: 0.94;
  transition: opacity 160ms ease, background-color 160ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  opacity: 1;
}

.nav-cta {
  padding: 13px 20px;
  background: var(--blue);
  border-radius: var(--radius);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius);
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 560px;
  padding: 150px 0 78px;
  color: var(--white);
  background: var(--navy);
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  right: -8%;
  bottom: -9%;
  width: 62%;
  height: 54%;
  opacity: 0.45;
  background-image: radial-gradient(circle, rgba(16, 91, 216, 0.82) 1.5px, transparent 1.7px);
  background-size: 12px 12px;
  transform: rotate(-9deg) skewX(-12deg);
  mask-image: linear-gradient(90deg, transparent, #000 25%, #000 72%, transparent);
}

.wave-field {
  position: absolute;
  right: 0;
  bottom: 24px;
  width: 52%;
  height: 210px;
  opacity: 0.35;
  border-radius: 50%;
  border-top: 4px dotted var(--blue);
  transform: rotate(-8deg);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.9fr);
  align-items: center;
  gap: 64px;
}

.hero-copy {
  max-width: 600px;
}

.hero h1 {
  color: var(--white);
  font-size: 4.6rem;
  font-weight: 900;
}

.hero p {
  max-width: 565px;
  margin-top: 28px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.22rem;
  font-weight: 500;
}

.hero .hero-subtle {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.96rem;
  font-weight: 800;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 27px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: 0.96rem;
  font-weight: 900;
  line-height: 1.2;
  transition: transform 160ms ease, background-color 160ms ease, border-color 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

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

.button-primary:hover,
.button-primary:focus-visible {
  background: #0d51c6;
}

.button-outline {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.9);
}

.button-outline::after {
  content: ">";
  margin-left: 14px;
  font-size: 1.1rem;
  line-height: 1;
}

.button.small {
  min-height: 34px;
  padding: 0 24px;
  font-size: 0.78rem;
}

.hero-logo {
  justify-self: end;
  width: min(100%, 410px);
}

.hero-logo img {
  width: 100%;
  height: auto;
  display: block;
}

.section {
  padding: 68px 0;
}

.section-muted {
  background: var(--panel);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.eyebrow {
  margin-bottom: 16px;
  color: var(--blue);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  line-height: 1.2;
  text-transform: uppercase;
}

.section-heading h2,
.center-heading h2 {
  font-size: 2.05rem;
  font-weight: 900;
}

.section-heading p:not(.eyebrow),
.center-heading p:not(.eyebrow) {
  margin-top: 22px;
  color: var(--muted);
  font-size: 1.04rem;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.84fr);
  gap: 82px;
  align-items: start;
}

.problem .section-heading {
  max-width: 610px;
}

.problem-list {
  display: grid;
  gap: 24px;
  padding-left: 72px;
  border-left: 1px solid var(--line);
}

.icon-row {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  color: var(--ink);
}

.icon-row svg,
.feature-strip svg,
.step-icon svg,
.mini-icons svg {
  width: 38px;
  height: 38px;
  color: var(--blue);
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.center-heading {
  max-width: 790px;
  margin: 0 auto 38px;
  text-align: center;
}

.center-heading.compact {
  margin-bottom: 24px;
}

.feature-strip {
  display: grid;
}

.five-up {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.feature-strip article {
  min-height: 182px;
  padding: 0 30px;
  text-align: center;
  border-left: 1px solid var(--line);
}

.feature-strip article:first-child {
  border-left: 0;
}

.feature-strip svg {
  width: 58px;
  height: 58px;
  margin-bottom: 18px;
}

.feature-strip h3 {
  min-height: 42px;
  color: var(--ink);
  font-size: 1rem;
  font-weight: 900;
  line-height: 1.28;
}

.feature-strip p {
  margin-top: 14px;
  color: var(--text);
  font-size: 0.88rem;
  line-height: 1.45;
}

.process {
  padding-top: 30px;
  padding-bottom: 62px;
}

.process-line {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  padding: 0;
  margin: 0;
  list-style: none;
}

.process-line li {
  position: relative;
  padding: 0 20px;
  text-align: center;
}

.process-line li:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 72px;
  right: -34px;
  width: 68px;
  border-top: 2px dotted var(--blue);
}

.process-line li:not(:last-child)::before {
  content: ">";
  position: absolute;
  top: 61px;
  right: -40px;
  color: var(--blue);
  font-size: 1.25rem;
  font-weight: 900;
}

.step-number {
  display: block;
  margin-bottom: 10px;
  color: var(--blue);
  font-weight: 900;
}

.step-icon {
  display: inline-grid;
  place-items: center;
  width: 84px;
  height: 84px;
  margin-bottom: 20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 50%;
}

.step-icon svg {
  width: 48px;
  height: 48px;
}

.process-line h3 {
  font-size: 1rem;
  font-weight: 900;
}

.process-line p {
  margin-top: 12px;
  color: var(--text);
  font-size: 0.86rem;
  line-height: 1.42;
}

.use-cases {
  padding-top: 36px;
  padding-bottom: 54px;
}

.who-we-help {
  padding: 48px 0;
}

.who-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.62fr) minmax(520px, 1fr);
  gap: 58px;
  align-items: center;
}

.who-grid .section-heading h2 {
  font-size: 1.8rem;
}

.mini-icons {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 24px;
  text-align: center;
}

.mini-icons div {
  display: grid;
  justify-items: center;
  gap: 10px;
}

.mini-icons svg {
  width: 40px;
  height: 40px;
}

.mini-icons span {
  color: var(--ink);
  font-size: 0.73rem;
  font-weight: 700;
  line-height: 1.2;
}

.statement {
  padding: 42px 0;
  color: var(--white);
  background: var(--navy);
}

.statement-grid {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr) minmax(300px, 0.48fr);
  gap: 42px;
  align-items: center;
}

.statement-logo {
  width: 170px;
  height: auto;
  display: block;
}

.statement h2 {
  color: var(--white);
  font-size: 2rem;
  font-weight: 900;
}

.statement h2 span {
  color: var(--blue-bright);
}

.statement p {
  padding-left: 42px;
  color: rgba(255, 255, 255, 0.86);
  border-left: 1px solid rgba(255, 255, 255, 0.58);
  font-size: 1.18rem;
}

.statement strong {
  color: var(--white);
  font-weight: 900;
}

.final-cta {
  padding: 46px 0 42px;
  text-align: center;
  background: var(--white);
}

.cta-logo {
  width: 92px;
  height: auto;
  margin-bottom: 18px;
  object-fit: contain;
}

.final-cta h2 {
  font-size: 2rem;
  font-weight: 900;
}

.final-cta p {
  margin: 9px 0 18px;
  color: var(--ink);
  font-size: 1.02rem;
}

.site-footer {
  padding: 38px 0 0;
  color: var(--white);
  background: var(--navy);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(260px, 1.5fr) repeat(3, minmax(130px, 0.7fr));
  gap: 62px;
}

.footer-about p {
  max-width: 300px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.84rem;
  font-weight: 600;
  line-height: 1.45;
}

.site-footer h3 {
  margin-bottom: 14px;
  color: var(--white);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.site-footer nav,
.footer-contact {
  display: grid;
  align-content: start;
  gap: 8px;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.84rem;
  font-weight: 700;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 36px;
  padding: 14px 0 18px;
  color: rgba(255, 255, 255, 0.45);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.78rem;
}

.footer-bottom nav {
  display: flex;
  gap: 28px;
}

.footer-bottom a,
.footer-bottom p {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.78rem;
  font-weight: 500;
}

.error-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 32px;
}

.error-shell {
  width: min(100%, 620px);
  text-align: center;
}

.error-shell img {
  width: 118px;
  height: auto;
  margin-bottom: 28px;
}

.error-shell h1 {
  font-size: 3.2rem;
  font-weight: 900;
}

.error-shell p:not(.eyebrow) {
  margin: 18px auto 28px;
  color: var(--muted);
  font-size: 1.08rem;
}

@media (max-width: 1080px) {
  .container {
    width: min(100% - 44px, var(--max-width));
  }

  .hero-grid,
  .two-column,
  .who-grid,
  .statement-grid {
    grid-template-columns: 1fr;
  }

  .hero-logo {
    justify-self: start;
    max-width: 330px;
  }

  .problem-list {
    padding-left: 0;
    border-left: 0;
  }

  .five-up,
  .process-line,
  .mini-icons {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .feature-strip article {
    min-height: auto;
    padding: 28px;
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .process-line {
    gap: 28px;
  }

  .process-line li::before,
  .process-line li::after {
    display: none;
  }

  .statement p {
    padding-left: 0;
    border-left: 0;
  }

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

@media (max-width: 820px) {
  .site-header {
    min-height: 72px;
    padding-inline: 22px;
  }

  .brand-mark {
    width: 54px;
    height: 32px;
  }

  .brand-name {
    font-size: 1.08rem;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    inset: 72px 20px auto;
    display: grid;
    gap: 0;
    padding: 10px;
    color: var(--ink);
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: 0 18px 50px rgba(0, 26, 58, 0.18);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 160ms ease, visibility 160ms ease, transform 160ms ease;
  }

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

  .site-nav a {
    padding: 14px;
  }

  .nav-cta {
    color: var(--white) !important;
    text-align: center;
  }

  .hero {
    min-height: auto;
    padding: 124px 0 58px;
  }

  .hero h1 {
    font-size: 3.35rem;
  }

  .hero p {
    font-size: 1.08rem;
  }

  .section {
    padding: 56px 0;
  }

  .section-heading h2,
  .center-heading h2 {
    font-size: 1.82rem;
  }

  .who-grid .section-heading h2,
  .statement h2,
  .final-cta h2 {
    font-size: 1.72rem;
  }
}

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

  .hero h1 {
    font-size: 2.58rem;
  }

  .button-row,
  .button {
    width: 100%;
  }

  .hero-logo {
    max-width: 230px;
  }

  .two-column {
    gap: 42px;
  }

  .five-up,
  .process-line,
  .mini-icons,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .feature-strip article {
    padding-inline: 10px;
  }

  .icon-row {
    gap: 16px;
  }

  .footer-bottom {
    flex-direction: column;
  }
}
