:root {
  color-scheme: light;
  --ink: #151a22;
  --muted: #5d6673;
  --paper: #f7f8fa;
  --surface: #ffffff;
  --line: #dfe3e8;
  --blue: #1769e0;
  --blue-dark: #0f4fae;
  --teal: #087f75;
  --coral: #dd5a45;
  --hero-ink: #ffffff;
  --max-width: 1180px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
}

a {
  color: inherit;
}

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(calc(100% - 48px), var(--max-width));
  min-height: 76px;
  margin: 0 auto;
  color: #fff;
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-size: 19px;
  font-weight: 800;
}

.wordmark-mark {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border-radius: 7px;
  background: var(--blue);
  color: #fff;
  font-size: 17px;
}

.site-header nav,
footer nav {
  display: flex;
  align-items: center;
  gap: 26px;
}

.site-header nav a,
footer nav a {
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
}

.site-header nav a:not(.nav-cta):hover,
footer nav a:hover {
  text-decoration: underline;
  text-underline-offset: 5px;
}

.nav-cta {
  border: 1px solid rgba(255, 255, 255, .48);
  padding: 10px 14px;
  border-radius: 7px;
  background: rgba(13, 17, 23, .32);
}

.hero {
  position: relative;
  display: grid;
  min-height: min(88svh, 850px);
  overflow: hidden;
  place-items: center;
  color: var(--hero-ink);
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: center;
}

.hero-shade {
  background: rgba(10, 14, 20, .58);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(calc(100% - 48px), var(--max-width));
  padding: 128px 0 92px;
}

.hero-content > * {
  max-width: 620px;
}

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

.hero .eyebrow {
  color: #7fc9ff;
}

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

h1 {
  margin-bottom: 16px;
  font-size: 96px;
  line-height: .94;
  letter-spacing: 0;
}

.hero-offer {
  margin-bottom: 30px;
  color: rgba(255, 255, 255, .88);
  font-size: 28px;
  line-height: 1.32;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  border: 1px solid transparent;
  border-radius: 7px;
  padding: 0 20px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 800;
  transition: background-color .18s ease, border-color .18s ease, transform .18s ease;
}

.button:hover {
  transform: translateY(-2px);
}

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

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

.button-secondary {
  border-color: rgba(255, 255, 255, .5);
  background: rgba(13, 17, 23, .34);
  color: #fff;
}

.button-secondary:hover {
  background: rgba(13, 17, 23, .64);
}

:where(a, button, .button):focus-visible {
  outline: 3px solid rgba(23, 105, 224, .34);
  outline-offset: 3px;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  margin: 30px 0 0;
  padding: 0;
  color: rgba(255, 255, 255, .76);
  list-style: none;
  font-size: 13px;
  font-weight: 700;
}

.hero-proof li::before {
  content: "\2713";
  margin-right: 8px;
  color: #55d6b1;
}

.scroll-cue {
  position: absolute;
  z-index: 2;
  right: max(24px, calc((100% - var(--max-width)) / 2));
  bottom: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, .76);
  text-decoration: none;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.section-band {
  padding: 92px max(24px, calc((100% - var(--max-width)) / 2));
}

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

.section-heading h2,
.closing-cta h2 {
  margin-bottom: 14px;
  font-size: 54px;
  line-height: 1.03;
  letter-spacing: 0;
}

.section-heading > p:last-child {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.process {
  background: var(--surface);
}

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

.process-list li {
  min-height: 230px;
  border-top: 3px solid var(--line);
  padding: 25px 26px 0 0;
}

.process-list li:nth-child(1) {
  border-color: var(--blue);
}

.process-list li:nth-child(2) {
  border-color: var(--teal);
}

.process-list li:nth-child(3) {
  border-color: var(--coral);
}

.process-list li:nth-child(4) {
  border-color: #916e16;
}

.step-number {
  display: block;
  margin-bottom: 36px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
}

.process-list h3,
.capability-grid h3 {
  margin-bottom: 10px;
  font-size: 20px;
  line-height: 1.25;
}

.process-list p,
.capability-grid p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

.capabilities {
  background: #edf1f5;
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid #cfd6df;
  border-left: 1px solid #cfd6df;
}

.capability-grid article {
  min-height: 220px;
  border-right: 1px solid #cfd6df;
  border-bottom: 1px solid #cfd6df;
  padding: 32px;
}

.capability-icon {
  display: grid;
  width: 38px;
  height: 38px;
  margin-bottom: 30px;
  place-items: center;
  border-radius: 7px;
  background: var(--ink);
  color: #fff;
  font-size: 20px;
}

.capability-grid article:nth-child(2) .capability-icon {
  background: var(--teal);
}

.capability-grid article:nth-child(3) .capability-icon {
  background: var(--coral);
}

.capability-grid article:nth-child(4) .capability-icon {
  background: var(--blue);
}

.closing-cta {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 42px;
  background: #151a22;
  color: #fff;
}

.closing-cta > div {
  max-width: 780px;
}

.closing-cta h2 {
  margin-bottom: 0;
}

.closing-cta .button {
  flex: 0 0 auto;
}

footer {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 30px max(24px, calc((100% - var(--max-width)) / 2));
  border-top: 1px solid #2e3540;
  background: #151a22;
  color: rgba(255, 255, 255, .72);
}

.footer-wordmark {
  color: #fff;
}

footer p {
  margin: 0;
  font-size: 13px;
}

footer nav {
  gap: 18px;
}

footer nav a {
  font-size: 12px;
}

.legal-page {
  min-height: 100vh;
  background:
    linear-gradient(150deg, rgba(23, 105, 224, .09), transparent 34%),
    linear-gradient(28deg, rgba(8, 127, 117, .09), transparent 38%),
    var(--paper);
}

.legal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(calc(100% - 48px), var(--max-width));
  min-height: 78px;
  margin: 0 auto;
  color: var(--ink);
}

.legal-header nav {
  display: flex;
  align-items: center;
  gap: 20px;
}

.legal-header nav a {
  color: var(--ink);
  text-decoration: none;
  font-size: 14px;
  font-weight: 750;
}

.legal-header .nav-cta {
  border-color: var(--line);
  background: var(--surface);
}

.legal-shell {
  display: grid;
  width: min(calc(100% - 48px), 920px);
  margin: 0 auto;
  padding: 32px 0 72px;
  gap: 16px;
}

.legal-hero,
.legal-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.legal-hero {
  padding: 36px;
  box-shadow: 0 22px 50px rgba(21, 26, 34, .08);
}

.legal-hero h1 {
  max-width: 760px;
  margin-bottom: 10px;
  font-size: 48px;
  line-height: 1.04;
}

.legal-hero p:last-child {
  max-width: 760px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.legal-card {
  padding: 28px 32px;
}

.legal-card h2 {
  margin-bottom: 10px;
  font-size: 24px;
  line-height: 1.2;
}

.legal-card p,
.legal-card li {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.68;
}

.legal-card p:last-child,
.legal-card ul:last-child {
  margin-bottom: 0;
}

.legal-card ul {
  margin-top: 0;
  padding-left: 22px;
}

.updated {
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

@media (max-width: 820px) {
  .site-header {
    width: min(calc(100% - 32px), var(--max-width));
  }

  .site-header nav > a:not(.nav-cta) {
    display: none;
  }

  .hero {
    min-height: 760px;
    align-items: end;
  }

  .hero-image {
    object-position: 65% center;
  }

  .hero-shade {
    background: rgba(10, 14, 20, .72);
  }

  .hero-content {
    width: min(calc(100% - 32px), var(--max-width));
    padding: 330px 0 84px;
  }

  .hero-content > * {
    max-width: 580px;
  }

  h1 {
    font-size: 72px;
  }

  .hero-offer {
    font-size: 21px;
  }

  .section-heading h2,
  .closing-cta h2 {
    font-size: 44px;
  }

  .hero-proof {
    gap: 9px 18px;
  }

  .scroll-cue {
    display: none;
  }

  .section-band {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .process-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 36px 22px;
  }

  .process-list li {
    min-height: 0;
  }

  .capability-grid article {
    min-height: 240px;
  }

  .closing-cta {
    align-items: start;
    flex-direction: column;
  }

  footer {
    grid-template-columns: 1fr;
  }

  .legal-header,
  .legal-shell {
    width: min(calc(100% - 32px), 920px);
  }

  .legal-header nav > a:not(.nav-cta) {
    display: none;
  }

  .legal-hero h1 {
    font-size: 40px;
  }
}

@media (max-width: 560px) {
  .site-header {
    min-height: 68px;
  }

  .wordmark {
    font-size: 17px;
  }

  .wordmark-mark {
    width: 30px;
    height: 30px;
  }

  .nav-cta {
    padding: 9px 11px;
    font-size: 12px !important;
  }

  .hero {
    min-height: 730px;
  }

  .hero-image {
    object-position: 67% top;
  }

  .hero-content {
    padding-top: 300px;
  }

  h1 {
    font-size: 58px;
  }

  .section-heading h2,
  .closing-cta h2 {
    font-size: 36px;
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .hero-proof {
    display: grid;
  }

  .section-heading {
    margin-bottom: 38px;
  }

  .process-list,
  .capability-grid {
    grid-template-columns: 1fr;
  }

  .process-list {
    gap: 32px;
  }

  .process-list li {
    padding-right: 0;
  }

  .step-number {
    margin-bottom: 20px;
  }

  .capability-grid article {
    min-height: 0;
    padding: 28px 24px;
  }

  .closing-cta {
    gap: 30px;
  }

  footer nav {
    align-items: start;
    flex-direction: column;
    gap: 12px;
  }

  .legal-header {
    min-height: 68px;
  }

  .legal-shell {
    padding-top: 18px;
    padding-bottom: 48px;
  }

  .legal-hero,
  .legal-card {
    padding: 22px;
  }

  .legal-hero h1 {
    font-size: 34px;
  }

  .legal-hero p:last-child,
  .legal-card p,
  .legal-card li {
    font-size: 15px;
  }
}

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

  .button {
    transition: none;
  }
}
