:root {
  --color-navy-950: #03112f;
  --color-navy-900: #061b43;
  --color-navy-850: #082657;
  --color-ink: #071846;
  --color-body: #16213f;
  --color-muted: #718099;
  --color-blue-600: #1468e8;
  --color-blue-500: #2c7df0;
  --color-mint-400: #32f5a6;
  --color-mint-500: #20e89a;
  --color-white: #ffffff;
  --color-surface: #f4f7fb;
  --color-hero-border: rgba(255, 255, 255, 0.22);
  --shadow-panel: 0 24px 70px rgba(0, 0, 0, 0.24);
  --font-sans: Inter, Manrope, "Helvetica Neue", Arial, sans-serif;
  --font-weight-copy: 400;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--color-body);
  font-family: var(--font-sans);
  background: var(--color-white);
}

a {
  color: inherit;
}

.content-page {
  padding-block: 64px;
}

.prose {
  max-width: 760px;
}

.prose h1 {
  margin: 0 0 24px;
  color: var(--color-ink);
  font-size: 42px;
  line-height: 1.1;
}

.prose p,
.prose li {
  font-size: 17px;
  line-height: 1.65;
}

.prose a {
  color: var(--color-blue-600);
}

.page-shell {
  width: min(100% - 96px, 1190px);
  margin-inline: auto;
}

.dark-band {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: var(--color-white);
  background: linear-gradient(rgba(52, 112, 215, 0.09) 1px, transparent 1px), linear-gradient(90deg, rgba(52, 112, 215, 0.07) 1px, transparent 1px), radial-gradient(circle at 20% 8%, rgba(22, 104, 232, 0.25), transparent 34%), linear-gradient(135deg, var(--color-navy-950), var(--color-navy-900));
  background-size: 64px 64px, 64px 64px, auto, auto;
}

.dark-band::before,
.dark-band::after {
  position: absolute;
  z-index: -1;
  color: rgba(20, 104, 232, 0.12);
  font-size: 180px;
  font-weight: 800;
  line-height: 1;
  pointer-events: none;
}

.dark-band::before {
  content: "x";
  top: 18px;
  left: 64%;
  transform: rotate(-36deg);
}

.dark-band::after {
  content: "///";
  right: 7%;
  bottom: 32px;
  transform: rotate(-26deg);
}

.top-nav {
  padding-block: 22px;
}

.top-nav__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
}

.brand {
  display: inline-flex;
  align-items: center;
  color: var(--color-white);
  text-decoration: none;
}

.brand img {
  display: block;
  width: 151px;
  height: auto;
}

.top-nav__menu {
  display: flex;
  justify-content: center;
  gap: 42px;
}

.top-nav__link {
  color: rgba(255, 255, 255, 0.86);
  font-size: 14px;
  font-weight: 720;
  text-decoration: none;
}

.top-nav__link:hover,
.top-nav__link:focus-visible {
  color: var(--color-white);
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 28px;
  font-size: 14px;
  font-weight: 780;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  transition: background-color 150ms ease, border-color 150ms ease, color 150ms ease;
}

.button:focus-visible,
.top-nav__link:focus-visible,
.brand:focus-visible {
  outline: 3px solid rgba(50, 245, 166, 0.75);
  outline-offset: 4px;
}

.button--primary {
  color: var(--color-navy-950);
  background: var(--color-mint-400);
}

.button--primary:hover,
.button--primary:focus-visible {
  background: var(--color-mint-500);
}

.button--secondary {
  border: 1.5px solid rgba(255, 255, 255, 0.74);
  color: var(--color-white);
  background: rgba(255, 255, 255, 0.02);
}

.button--secondary:hover,
.button--secondary:focus-visible {
  border-color: var(--color-white);
  background: rgba(255, 255, 255, 0.1);
}

.button--nav {
  min-height: 42px;
  padding-inline: 26px;
  font-size: 13px;
}

.hero {
  min-height: 620px;
  padding-bottom: 82px;
}

.hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.77fr);
  align-items: center;
  gap: 96px;
  padding-top: 52px;
}

.hero__copy {
  max-width: 590px;
}

.hero h1 {
  max-width: 560px;
  margin: 0;
  color: var(--color-white);
  font-size: 56px;
  font-weight: 820;
  letter-spacing: 0;
  line-height: 1.03;
}

.hero__subheading {
  max-width: 560px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
  font-weight: var(--font-weight-copy);
  line-height: 1.48;
}

.hero__support {
  max-width: 520px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.54);
  font-size: 15px;
  font-weight: var(--font-weight-copy);
  line-height: 1.55;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}

.hero-panel {
  width: 100%;
  max-width: 420px;
  justify-self: end;
  border: 1px solid var(--color-hero-border);
  border-radius: 8px;
  background: rgba(7, 24, 70, 0.66);
  box-shadow: var(--shadow-panel);
  backdrop-filter: blur(10px);
}

.hero-panel__row {
  display: grid;
  grid-template-columns: 40px 1fr 12px;
  align-items: center;
  gap: 24px;
  min-height: 96px;
  padding: 20px 28px;
}

.hero-panel__row + .hero-panel__row {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.hero-panel__icon {
  display: inline-flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  color: var(--color-blue-500);
}

.hero-panel__icon svg {
  width: 32px;
  height: 32px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.hero-panel__content {
  display: grid;
  gap: 6px;
}

.hero-panel__content strong {
  color: var(--color-white);
  font-size: 16px;
  font-weight: 790;
  line-height: 1.2;
}

.hero-panel__content span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 14px;
  font-weight: var(--font-weight-copy);
  line-height: 1.35;
}

.hero-panel__status {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--color-mint-400);
  box-shadow: 0 0 16px rgba(50, 245, 166, 0.55);
}

.section-header {
  max-width: 820px;
  margin-inline: auto;
  text-align: center;
}

.section-header h2 {
  margin: 0;
  color: var(--color-ink);
  font-size: 36px;
  font-weight: 820;
  letter-spacing: 0;
  line-height: 1.15;
}

.section-header p {
  margin: 22px auto 0;
  color: #52617a;
  font-size: 17px;
  font-weight: var(--font-weight-copy);
  line-height: 1.55;
}

.problem-triage {
  padding-block: 82px 78px;
  background: var(--color-white);
}

.problem-triage__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin-top: 70px;
}

.pillar-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 2px 52px 0;
}

.pillar-card + .pillar-card {
  border-left: 1px solid #d8deea;
}

.pillar-card__icon {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  color: var(--color-blue-600);
}

.pillar-card__icon svg {
  width: 34px;
  height: 34px;
  fill: currentColor;
}

.pillar-card h3 {
  margin: 30px 0 0;
  color: var(--color-ink);
  font-size: 21px;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.2;
}

.pillar-card p {
  margin: 20px 0 0;
  color: #52617a;
  font-size: 16px;
  font-weight: var(--font-weight-copy);
  line-height: 1.55;
}

.pillar-card__link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  width: fit-content;
  margin-top: auto;
  padding-top: 28px;
  color: #005fee;
  font-size: 16px;
  font-weight: var(--font-weight-copy);
  line-height: 1.2;
  text-decoration: none;
}

.pillar-card__link:hover,
.pillar-card__link:focus-visible {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.pillar-card__link:focus-visible {
  outline: 3px solid rgba(20, 104, 232, 0.28);
  outline-offset: 4px;
  border-radius: 4px;
}

.problem-explanation {
  padding-block: 88px;
  background: var(--color-surface);
}

.problem-explanation__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.86fr);
  gap: 88px;
  align-items: start;
}

.problem-explanation__copy {
  max-width: 520px;
}

.problem-explanation__copy h2 {
  margin: 0 0 30px;
  color: var(--color-ink);
  font-size: 36px;
  font-weight: 820;
  letter-spacing: 0;
  line-height: 1.16;
}

.problem-explanation__copy p {
  margin: 0;
  color: #52617a;
  font-size: 17px;
  font-weight: var(--font-weight-copy);
  line-height: 1.62;
}

.problem-explanation__copy p + p {
  margin-top: 24px;
}

.problem-explanation__signs {
  min-height: 310px;
  padding-left: 70px;
  border-left: 1px solid #d8deea;
}

.problem-explanation__signs h3 {
  margin: 0;
  color: var(--color-ink);
  font-size: 20px;
  font-weight: 820;
  letter-spacing: 0;
  line-height: 1.2;
}

.problem-explanation__signs ul {
  display: grid;
  gap: 22px;
  margin: 28px 0 0;
  padding-left: 20px;
  color: #52617a;
  font-size: 17px;
  font-weight: var(--font-weight-copy);
  line-height: 1.45;
}

.problem-explanation__signs li::marker {
  color: var(--color-blue-600);
  font-size: 0.85em;
}

.work-areas {
  padding-block: 86px 78px;
  background: var(--color-white);
}

.work-areas__header {
  max-width: 820px;
}

.work-areas__header h2 {
  max-width: 690px;
  margin-inline: auto;
}

.work-areas__header p {
  max-width: 820px;
}

.work-areas__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  margin-top: 62px;
}

.pillar-fit-card {
  display: flex;
  min-width: 0;
  min-height: 360px;
  flex-direction: column;
  padding: 28px 28px 30px;
  border: 1px solid #d8deea;
  border-radius: 8px;
  background: var(--color-white);
}

.pillar-fit-card__icon {
  display: inline-flex;
  width: 56px;
  height: 56px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: var(--color-blue-600);
  background: #eaf2ff;
}

.pillar-fit-card__icon svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

.pillar-fit-card h3 {
  margin: 24px 0 0;
  color: var(--color-ink);
  font-size: 21px;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.22;
}

.pillar-fit-card p {
  margin: 18px 0 24px;
  color: #52617a;
  font-size: 16px;
  font-weight: var(--font-weight-copy);
  line-height: 1.55;
}

.pillar-fit-card__best-fit {
  margin-top: auto;
  padding-top: 24px;
  border-top: 1px solid #d8deea;
  color: #52617a;
  font-size: 16px;
  font-weight: var(--font-weight-copy);
  line-height: 1.55;
}

.pillar-fit-card__best-fit strong {
  color: var(--color-ink);
  font-weight: 800;
}

.approach {
  padding-block: 8px 90px;
  background: var(--color-white);
}

.approach__header {
  max-width: 800px;
}

.approach__header p {
  max-width: 760px;
}

.flow {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr) auto minmax(0, 1fr);
  gap: 22px;
  align-items: start;
  margin-top: 54px;
}

.flow-step-card {
  min-width: 0;
}

.flow-step-card__heading {
  display: flex;
  align-items: center;
  gap: 14px;
}

.flow-step-card__order {
  display: inline-grid;
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 999px;
  color: var(--color-white);
  background: var(--color-blue-600);
  font-size: 17px;
  font-weight: 800;
  line-height: 1;
}

.flow-step-card h3 {
  margin: 0;
  color: var(--color-ink);
  font-size: 19px;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.2;
}

.flow-step-card p {
  margin: 18px 0 0;
  color: #52617a;
  font-size: 16px;
  font-weight: var(--font-weight-copy);
  line-height: 1.6;
}

.flow__arrow {
  display: inline-flex;
  min-width: 28px;
  height: 40px;
  align-items: center;
  justify-content: center;
  color: #52617a;
  font-size: 30px;
  font-weight: var(--font-weight-copy);
  line-height: 1;
}

.final-cta {
  padding-block: 86px 78px;
  text-align: center;
}

.final-cta__inner {
  max-width: 850px;
}

.final-cta__header {
  max-width: 760px;
}

.final-cta__header h2 {
  max-width: 600px;
  margin-inline: auto;
  color: var(--color-white);
  font-size: 34px;
  line-height: 1.35;
}

.final-cta__header p {
  max-width: 750px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 17px;
  line-height: 1.55;
}

.final-cta__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 38px;
}

.final-cta__support {
  max-width: 620px;
  margin: 28px auto 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 15px;
  font-weight: var(--font-weight-copy);
  line-height: 1.5;
}

.site-footer {
  padding-block: 34px 36px;
  color: rgba(255, 255, 255, 0.62);
  background: var(--color-navy-950);
}

.site-footer__inner {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto auto;
  gap: 56px;
  align-items: center;
}

.site-footer__brand p {
  max-width: 320px;
  margin: 18px 0 0;
  font-size: 15px;
  font-weight: var(--font-weight-copy);
  line-height: 1.55;
}

.site-footer .brand {
  width: fit-content;
}

.site-footer__contact {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  color: inherit;
  font-style: normal;
}

.site-footer__contact-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: inherit;
  font-size: 15px;
  font-weight: var(--font-weight-copy);
  line-height: 1.35;
  text-decoration: none;
  white-space: nowrap;
}

.site-footer__contact-item svg {
  width: 18px;
  height: 18px;
  color: var(--color-blue-500);
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.site-footer__contact-item:hover,
.site-footer__contact-item:focus-visible,
.site-footer__legal-links a:hover,
.site-footer__legal-links a:focus-visible {
  color: var(--color-white);
}

.site-footer__contact-item:focus-visible,
.site-footer__legal-links a:focus-visible {
  outline: 3px solid rgba(50, 245, 166, 0.55);
  outline-offset: 4px;
  border-radius: 4px;
}

.site-footer__legal {
  display: grid;
  gap: 12px;
  justify-items: start;
}

.site-footer__legal-links {
  display: flex;
  gap: 26px;
}

.site-footer__legal-links a {
  color: inherit;
  font-size: 14px;
  font-weight: var(--font-weight-copy);
  line-height: 1.3;
  text-decoration: none;
  white-space: nowrap;
}

.site-footer__legal p {
  margin: 0;
  font-size: 14px;
  font-weight: var(--font-weight-copy);
  line-height: 1.3;
}

@media (max-width: 980px) {
  .page-shell {
    width: min(100% - 56px, 1190px);
  }
  .top-nav__inner {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }
  .top-nav__menu {
    display: none;
  }
  .hero {
    min-height: auto;
    padding-bottom: 64px;
  }
  .hero__inner {
    grid-template-columns: 1fr;
    gap: 44px;
    padding-top: 42px;
  }
  .hero__copy,
  .hero h1,
  .hero__subheading,
  .hero__support {
    max-width: 680px;
  }
  .hero-panel {
    max-width: none;
    justify-self: stretch;
  }
  .problem-triage {
    padding-block: 68px 64px;
  }
  .problem-triage__grid {
    margin-top: 52px;
  }
  .pillar-card {
    padding-inline: 28px;
  }
  .problem-explanation {
    padding-block: 72px;
  }
  .problem-explanation__inner {
    grid-template-columns: 1fr;
    gap: 44px;
  }
  .problem-explanation__copy {
    max-width: 680px;
  }
  .problem-explanation__signs {
    min-height: 0;
    padding-top: 36px;
    padding-left: 0;
    border-top: 1px solid #d8deea;
    border-left: 0;
  }
  .work-areas {
    padding-block: 72px 68px;
  }
  .work-areas__grid {
    grid-template-columns: 1fr;
    gap: 22px;
    margin-top: 48px;
  }
  .pillar-fit-card {
    min-height: 0;
  }
  .approach {
    padding-block: 0 72px;
  }
  .flow {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 44px;
  }
  .flow__arrow {
    width: 40px;
    height: 26px;
    justify-self: start;
    transform: rotate(90deg);
  }
  .final-cta {
    padding-block: 72px 68px;
  }
  .site-footer__inner {
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: start;
  }
  .site-footer__contact {
    gap: 18px 30px;
  }
}
@media (max-width: 640px) {
  .page-shell {
    width: min(100% - 40px, 1190px);
  }
  .top-nav {
    padding-block: 18px;
  }
  .top-nav__inner {
    gap: 18px;
  }
  .top-nav__cta {
    display: none;
  }
  .brand img {
    width: 138px;
  }
  .hero {
    padding-bottom: 48px;
  }
  .hero__inner {
    gap: 34px;
    padding-top: 34px;
  }
  .hero h1 {
    font-size: 40px;
    line-height: 1.05;
  }
  .hero__subheading {
    margin-top: 20px;
    font-size: 16px;
  }
  .hero__support {
    margin-top: 22px;
  }
  .hero__actions {
    display: grid;
    gap: 12px;
    margin-top: 30px;
  }
  .button {
    width: 100%;
    min-height: 48px;
  }
  .hero-panel__row {
    grid-template-columns: 34px 1fr 10px;
    gap: 16px;
    min-height: 88px;
    padding: 18px 18px;
  }
  .hero-panel__icon svg {
    width: 28px;
    height: 28px;
  }
  .section-header h2 {
    font-size: 30px;
  }
  .section-header p {
    margin-top: 16px;
    font-size: 16px;
  }
  .problem-triage {
    padding-block: 52px;
  }
  .problem-triage__grid {
    grid-template-columns: 1fr;
    gap: 34px;
    margin-top: 44px;
  }
  .pillar-card {
    padding: 0;
  }
  .pillar-card + .pillar-card {
    padding-top: 34px;
    border-top: 1px solid #d8deea;
    border-left: 0;
  }
  .pillar-card h3 {
    margin-top: 22px;
    font-size: 20px;
  }
  .pillar-card p {
    margin-top: 14px;
  }
  .pillar-card__link {
    margin-top: auto;
    padding-top: 20px;
  }
  .problem-explanation {
    padding-block: 52px;
  }
  .problem-explanation__inner {
    gap: 34px;
  }
  .problem-explanation__copy h2 {
    margin-bottom: 24px;
    font-size: 30px;
  }
  .problem-explanation__copy p,
  .problem-explanation__signs ul {
    font-size: 16px;
  }
  .problem-explanation__signs {
    padding-top: 30px;
  }
  .problem-explanation__signs ul {
    gap: 16px;
    margin-top: 22px;
  }
  .work-areas {
    padding-block: 52px;
  }
  .work-areas__grid {
    margin-top: 38px;
  }
  .pillar-fit-card {
    padding: 24px 24px 26px;
  }
  .pillar-fit-card h3 {
    font-size: 20px;
  }
  .pillar-fit-card p,
  .pillar-fit-card__best-fit {
    font-size: 16px;
  }
  .approach {
    padding-block: 0 56px;
  }
  .flow {
    margin-top: 36px;
  }
  .flow-step-card__order {
    width: 38px;
    height: 38px;
    font-size: 16px;
  }
  .flow-step-card h3 {
    font-size: 18px;
  }
  .flow-step-card p {
    margin-top: 14px;
  }
  .final-cta {
    padding-block: 58px 52px;
  }
  .final-cta__header h2 {
    font-size: 30px;
    line-height: 1.22;
  }
  .final-cta__header p {
    font-size: 16px;
  }
  .final-cta__actions {
    display: grid;
    gap: 12px;
    margin-top: 30px;
  }
  .final-cta__support {
    margin-top: 24px;
    font-size: 14px;
  }
  .site-footer {
    padding-block: 32px;
  }
  .site-footer__brand p {
    font-size: 14px;
  }
  .site-footer__contact {
    display: grid;
    gap: 14px;
  }
  .site-footer__contact-item {
    white-space: normal;
  }
  .site-footer__legal-links {
    display: grid;
    gap: 12px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    transition-delay: 0ms !important;
  }
}

/*# sourceMappingURL=main.css.map */