@import url("https://use.typekit.net/rvc7mkb.css");

:root {
  --grey-1: #353c48;
  --grey-2: #4b5667;
  --grey-3: #808d9f;
  --grey-4: #c2cfe0;
  --grey-5: #dae2f0;
  --grey-6: #e6edf7;
  --grey-7: #f4f8fe;
  --blue-1: #010914;
  --blue-2: #102c52;
  --blue-3: #063c86;
  --blue-4: #0856c0;
  --accent-1: #90c3f1;
  --accent-2: #e5f3ff;
  --cyan: #6ce2ff;
  --white: #fff;
  --shadow: 0 24px 70px rgb(1 9 20 / 12%);
  --nav-height: 80px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--grey-1);
  background: var(--grey-7);
  font-family: aktiv-grotesk, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
}

body.nav-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

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

p {
  margin: 0;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--blue-1);
  font-family: aktiv-grotesk-extended, Arial, sans-serif;
  letter-spacing: 0;
}

h1 {
  max-width: 930px;
  font-size: 54px;
  line-height: 1.08;
}

h2 {
  font-size: 48px;
  font-weight: 500;
  line-height: 1.09;
}

h3 {
  font-size: 24px;
  font-weight: 500;
  line-height: 1.25;
}

.container {
  width: min(100% - 80px, 1120px);
  margin: 0 auto;
}

.site-nav {
  position: fixed;
  z-index: 50;
  inset: 0 0 auto;
  height: var(--nav-height);
  background: var(--grey-7);
  box-shadow: 0 1px 0 rgb(1 9 20 / 8%);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  width: min(100% - 64px, 1240px);
  margin: 0 auto;
}

.brand {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand img {
  width: 242px;
  height: auto;
}

.nav-links {
  display: flex;
  align-items: stretch;
  justify-content: flex-end;
  height: 100%;
}

.nav-links a {
  display: flex;
  align-items: center;
  padding: 0 30px;
  color: var(--grey-1);
  font-size: 15px;
  transition: background-color .18s ease, color .18s ease;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--blue-4);
  background: var(--grey-6);
}

.nav-links .nav-cta {
  color: var(--grey-7);
  background: var(--blue-4);
  padding-inline: 40px;
}

.nav-links .nav-cta:hover {
  color: var(--grey-7);
  background: var(--blue-3);
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 4px;
  background: var(--blue-4);
  padding: 13px;
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--white);
}

.hero {
  padding-top: var(--nav-height);
  background: var(--grey-7);
}

.hero-image {
  height: clamp(340px, 52vh, 560px);
  overflow: hidden;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-copy {
  padding: 58px 0 76px;
}

.lede {
  max-width: 680px;
  margin-top: 22px;
  color: var(--grey-2);
  font-size: 22px;
  line-height: 1.45;
}

.eyebrow {
  margin-bottom: 16px;
  color: var(--blue-4);
  font-family: antarctican-mono, Consolas, monospace;
  font-size: 12px;
  line-height: 1.35;
  text-transform: uppercase;
}

.eyebrow.inverted {
  color: var(--accent-1);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  min-width: 220px;
  border-radius: 4px;
  padding: 15px 24px;
  font-size: 14px;
  line-height: 1.3;
  transition: background-color .2s ease, border-color .2s ease, color .2s ease;
}

.button.primary {
  color: var(--grey-7);
  background: var(--blue-4);
}

.button.primary:hover {
  background: var(--blue-3);
}

.button.secondary {
  color: var(--blue-4);
  border: 1px solid var(--blue-4);
}

.button.secondary:hover {
  color: var(--grey-7);
  background: var(--blue-4);
}

.button.inverted {
  color: var(--blue-4);
  background: var(--grey-7);
}

.button.inverted:hover {
  color: var(--grey-7);
  background: var(--blue-4);
}

.section {
  padding: 96px 0;
  background: var(--grey-7);
}

.section-pale {
  background: var(--grey-6);
}

.section-dark {
  background: var(--blue-1);
  color: var(--grey-6);
}

.section-dark h2,
.section-dark h3 {
  color: var(--white);
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1fr);
  gap: 72px;
}

.align-center {
  align-items: center;
}

.align-start {
  align-items: start;
}

.intro-text {
  display: grid;
  gap: 18px;
  color: var(--grey-2);
  font-size: 18px;
  line-height: 1.6;
}

.section-heading {
  max-width: 800px;
  margin: 0 auto 56px;
  text-align: center;
}

.section-heading.left {
  margin-inline: 0;
  text-align: left;
}

.section-heading.light h2 {
  color: var(--white);
}

.icon-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.icon-grid.compact {
  gap: 20px;
}

.icon-card {
  min-height: 360px;
  border-radius: 8px;
  background: var(--white);
  padding: 38px 32px;
  box-shadow: var(--shadow);
}

.icon-card img {
  width: 66px;
  height: 66px;
  margin-bottom: 38px;
}

.icon-card h3 {
  margin-bottom: 16px;
}

.icon-card p,
.number-grid p,
.offer-grid p {
  color: var(--grey-2);
}

.stack-list {
  display: grid;
  gap: 14px;
}

.stack-item {
  display: grid;
  grid-template-columns: 64px 1fr;
  align-items: center;
  min-height: 88px;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 36px rgb(1 9 20 / 8%);
}

.stack-item span,
.number-grid span,
.timeline span {
  color: var(--blue-4);
  font-family: antarctican-mono, Consolas, monospace;
  font-size: 12px;
}

.stack-item span {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  border-right: 1px solid var(--grey-6);
}

.stack-item p {
  padding: 20px 24px;
  color: var(--grey-1);
}

.cta-band {
  background: var(--blue-4);
  color: var(--grey-7);
  padding: 72px 0;
}

.cta-band h2 {
  max-width: 800px;
  color: var(--white);
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.page {
  padding-top: var(--nav-height);
}

.page-hero {
  background: var(--grey-7);
  padding: 110px 0 82px;
}

.marketplace-hero {
  background: linear-gradient(180deg, var(--accent-2) 0%, var(--grey-7) 100%);
}

.feature-panel {
  border-radius: 8px;
  background: var(--white);
  padding: 34px;
  box-shadow: var(--shadow);
}

.feature-panel > p {
  color: var(--grey-2);
  font-size: 18px;
  line-height: 1.55;
}

.mini-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.mini-grid span {
  min-height: 88px;
  border-left: 3px solid var(--cyan);
  background: var(--grey-7);
  padding: 18px;
  color: var(--blue-2);
}

.number-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.number-grid article {
  min-height: 280px;
  border-radius: 8px;
  background: var(--white);
  padding: 28px 24px;
  box-shadow: 0 16px 50px rgb(1 9 20 / 10%);
}

.number-grid span {
  display: block;
  margin-bottom: 48px;
}

.number-grid h3,
.offer-grid h3 {
  margin-bottom: 14px;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border-radius: 8px;
  background: var(--grey-4);
}

.timeline div {
  min-height: 250px;
  background: var(--white);
  padding: 28px 24px;
}

.timeline span {
  display: block;
  margin-bottom: 56px;
}

.timeline p {
  margin-top: 12px;
  color: var(--grey-2);
}

.coverage-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.coverage-list p {
  border: 1px solid rgb(244 248 254 / 22%);
  border-radius: 8px;
  padding: 24px;
  color: var(--white);
  background: rgb(244 248 254 / 6%);
}

.split-quote {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}

blockquote {
  max-width: 780px;
  margin: 0;
  color: var(--blue-1);
  font-family: aktiv-grotesk-extended, Arial, sans-serif;
  font-size: 32px;
  font-weight: 500;
  line-height: 1.25;
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.offer-grid article {
  min-height: 250px;
  border-radius: 8px;
  background: var(--grey-7);
  padding: 28px 24px;
  color: var(--grey-2);
}

.offer-grid h3 {
  color: inherit;
}

.question-list {
  display: grid;
  gap: 1px;
  overflow: hidden;
  border-radius: 8px;
  background: var(--grey-4);
}

.question-list p {
  background: var(--white);
  padding: 24px 28px;
  color: var(--blue-2);
}

.site-footer {
  background: var(--blue-1);
  color: var(--grey-5);
  padding: 72px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 56px;
}

.footer-logo {
  width: 242px;
  margin-bottom: 32px;
  filter: brightness(0) invert(1);
}

.site-footer p {
  max-width: 310px;
  color: var(--grey-5);
}

.site-footer h2 {
  margin-bottom: 18px;
  color: var(--white);
  font-family: antarctican-mono, Consolas, monospace;
  font-size: 12px;
  line-height: 1.35;
  text-transform: uppercase;
}

.site-footer a {
  display: block;
  margin-bottom: 12px;
  color: var(--grey-5);
}

.site-footer a:hover {
  color: var(--cyan);
  text-decoration: underline;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgb(244 248 254 / 14%);
  background: rgb(244 248 254 / 5%);
  padding: 16px max(40px, calc((100vw - 1120px) / 2));
  color: var(--grey-3);
  font-family: antarctican-mono, Consolas, monospace;
  font-size: 12px;
}

.social-links {
  display: flex;
  align-items: center;
  gap: 14px;
}

.social-links a {
  margin: 0;
}

.social-links img {
  width: 22px;
  height: 22px;
  filter: brightness(0) invert(1);
}

@media (max-width: 980px) {
  h1 {
    font-size: 44px;
  }

  h2 {
    font-size: 38px;
  }

  .container {
    width: min(100% - 48px, 1120px);
  }

  .nav-inner {
    width: min(100% - 32px, 1240px);
  }

  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: fixed;
    inset: var(--nav-height) 0 auto;
    display: none;
    height: auto;
    border-top: 1px solid var(--grey-5);
    background: var(--grey-7);
    box-shadow: 0 24px 48px rgb(1 9 20 / 14%);
  }

  .site-nav.is-open .nav-links {
    display: block;
  }

  .nav-links a {
    min-height: 58px;
    padding: 0 24px;
    border-bottom: 1px solid var(--grey-6);
  }

  .nav-links .nav-cta {
    justify-content: center;
    min-height: 64px;
  }

  .two-column,
  .footer-grid,
  .cta-inner,
  .split-quote {
    grid-template-columns: 1fr;
  }

  .two-column,
  .cta-inner,
  .split-quote {
    display: grid;
    gap: 32px;
  }

  .icon-grid,
  .number-grid,
  .offer-grid,
  .coverage-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .timeline {
    grid-template-columns: 1fr;
  }

  .timeline div {
    min-height: auto;
  }

  .timeline span {
    margin-bottom: 24px;
  }
}

@media (max-width: 640px) {
  :root {
    --nav-height: 72px;
  }

  h1 {
    font-size: 36px;
  }

  h2 {
    font-size: 31px;
  }

  h3 {
    font-size: 21px;
  }

  .brand img {
    width: 204px;
  }

  .container {
    width: min(100% - 32px, 1120px);
  }

  .hero-image {
    height: 320px;
  }

  .hero-copy,
  .page-hero {
    padding-block: 48px;
  }

  .lede {
    font-size: 19px;
  }

  .section {
    padding: 64px 0;
  }

  .icon-grid,
  .number-grid,
  .offer-grid,
  .coverage-list,
  .mini-grid {
    grid-template-columns: 1fr;
  }

  .icon-card,
  .number-grid article,
  .offer-grid article {
    min-height: auto;
  }

  .stack-item {
    grid-template-columns: 52px 1fr;
  }

  .button {
    width: 100%;
  }

  blockquote {
    font-size: 25px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
    padding-inline: 16px;
  }
}
