:root {
  --black: #0b1024;
  --white: #fff;
  --page-pad: 32px;
  --max: 1440px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--black);
  color: var(--white);
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 700;
  letter-spacing: 0;
}

body,
button {
  font-family: Arial, Helvetica, sans-serif;
}

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

main {
  overflow: hidden;
}

.hero,
.section,
.site-footer {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding-right: var(--page-pad);
  padding-left: var(--page-pad);
}

.hero {
  min-height: 86svh;
  padding-top: 24px;
  padding-bottom: 56px;
  border-bottom: 2px solid var(--white);
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 56px;
}

.brand,
.nav-links a,
.eyebrow,
.site-footer {
  font-size: 12px;
  line-height: 1;
  text-transform: uppercase;
}

.brand {
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links a {
  padding: 10px 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  place-items: center;
}

.hero-copy {
  min-width: 0;
  text-align: center;
}

.eyebrow {
  margin: 0 0 18px;
  text-align: center;
}

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

h1 {
  max-width: 900px;
  margin-right: auto;
  margin-bottom: 28px;
  margin-left: auto;
  font-size: 96px;
  line-height: 0.9;
  text-align: center;
}

h2 {
  margin-bottom: 0;
  font-size: 58px;
  line-height: 0.98;
  text-align: center;
}

h3 {
  margin-bottom: 12px;
  font-size: 22px;
  line-height: 1.05;
  text-align: center;
}

p {
  line-height: 1.45;
}

.lede {
  max-width: 770px;
  margin-right: auto;
  margin-bottom: 34px;
  margin-left: auto;
  font-size: 22px;
}

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

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--white);
  border-radius: 0;
  padding: 0 22px;
  background: transparent;
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  cursor: pointer;
}

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

.button-secondary:hover,
.button-secondary:focus-visible,
.nav-links a:hover,
.nav-links a:focus-visible,
.site-footer a:hover,
.site-footer a:focus-visible {
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.button:focus-visible {
  outline: 3px solid var(--white);
  outline-offset: 4px;
}

.section {
  padding-top: 84px;
  padding-bottom: 84px;
  border-bottom: 2px solid var(--white);
}

.section-heading {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  max-width: 940px;
  margin-right: auto;
  margin-bottom: 58px;
  margin-left: auto;
  text-align: center;
}

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

.scope-item {
  min-width: 0;
  padding: 32px;
  border-right: 2px solid var(--white);
  border-bottom: 2px solid var(--white);
}

.scope-item p {
  max-width: 620px;
  margin-bottom: 0;
  font-size: 18px;
}

.process-list {
  display: grid;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 2px solid var(--white);
}

.process-list li {
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  gap: 14px;
  padding: 28px 0;
  border-bottom: 2px solid var(--white);
  text-align: center;
}

.process-list span {
  font-size: 40px;
  line-height: 0.9;
}

.process-list li > div {
  width: min(100%, 820px);
}

.process-list p {
  max-width: 760px;
  margin-right: auto;
  margin-bottom: 0;
  margin-left: auto;
  font-size: 20px;
  text-align: center;
}

.legal-section,
.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 1.1fr);
  gap: 72px;
  align-items: start;
}

.legal-copy p,
.contact-copy p {
  margin-bottom: 28px;
  font-size: 22px;
}

.contact-copy h2 {
  margin-bottom: 18px;
}

.legal-copy ul {
  display: grid;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 2px solid var(--white);
}

.legal-copy li {
  padding: 18px 0;
  border-bottom: 2px solid var(--white);
  font-size: 18px;
  line-height: 1.2;
}

.contact-links {
  display: grid;
  border: 2px solid var(--white);
}

.contact-links a {
  display: grid;
  gap: 16px;
  min-width: 0;
  padding: 28px;
  border-bottom: 2px solid var(--white);
}

.contact-links a:last-child {
  border-bottom: 0;
}

.contact-social {
  padding: 18px 28px;
}

.contact-social .linkedin-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  padding: 0;
  color: var(--white);
  border: 0;
}

.linkedin-logo {
  width: 26px;
  height: 26px;
  fill: currentColor;
}

.contact-social .linkedin-link:hover,
.contact-social .linkedin-link:focus-visible {
  opacity: 0.78;
}

.contact-links span {
  font-size: 12px;
  line-height: 1;
  text-transform: uppercase;
}

.contact-links strong {
  min-width: 0;
  overflow-wrap: anywhere;
  font-size: 38px;
  line-height: 0.98;
}

.contact-links a:hover strong,
.contact-links a:focus-visible strong,
.footer-links a:hover,
.footer-links a:focus-visible {
  text-decoration: underline;
  text-decoration-thickness: 3px;
  text-underline-offset: 6px;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 86px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px;
}

@media (max-width: 1040px) {
  :root {
    --page-pad: 24px;
  }

  .site-header {
    padding-bottom: 40px;
  }

  .legal-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: 66px;
  }

  h2 {
    font-size: 44px;
  }
}

@media (max-width: 720px) {
  :root {
    --page-pad: 18px;
  }

  .hero {
    min-height: 0;
    padding-top: 18px;
    padding-bottom: 40px;
  }

  .site-header,
  .nav-links,
  .hero-actions,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav-links {
    gap: 8px;
  }

  h1 {
    font-size: 43px;
    line-height: 0.96;
  }

  h2 {
    font-size: 34px;
  }

  .lede,
  .legal-copy p,
  .contact-copy p {
    font-size: 18px;
  }

  .button {
    width: 100%;
  }

  .scope-grid,
  .section-heading {
    grid-template-columns: 1fr;
  }

  .scope-item {
    border-right: 0;
  }

  .section {
    padding-top: 58px;
    padding-bottom: 58px;
  }

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

  .process-list li {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .contact-links a {
    padding: 22px;
  }

  .contact-social {
    padding: 16px 22px;
  }

  .contact-links strong {
    font-size: 28px;
  }
}

@media (max-width: 390px) {
  h1 {
    font-size: 38px;
  }

  h2 {
    font-size: 30px;
  }

  .scope-item {
    padding: 24px 18px;
  }
}
