:root {
  --blue: #3e6ae1;
  --carbon: #171a20;
  --graphite: #393c41;
  --pewter: #5c5e62;
  --white: #ffffff;
  --ash: #f4f4f4;
  --black: #050608;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--white);
  background: var(--black);
  font-family: "Universal Sans Text", -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  letter-spacing: 0;
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 56px;
  padding: 8px 32px;
  background: rgba(5, 6, 8, 0.52);
  backdrop-filter: blur(16px);
}

.brand,
.nav a,
.contact-link {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.2;
}

.brand {
  font-size: 15px;
}

.nav {
  display: flex;
  gap: 2px;
}

.nav a,
.contact-link {
  min-height: 32px;
  padding: 8px 14px;
  border-radius: 4px;
  transition: background-color 0.33s cubic-bezier(0.5, 0, 0, 0.75);
}

.nav a:hover,
.contact-link:hover {
  background: rgba(255, 255, 255, 0.12);
}

.contact-link {
  justify-self: end;
}

.page-hero {
  min-height: 78svh;
  position: relative;
  display: flex;
  align-items: center;
  padding: 96px 7vw 72px;
  overflow: hidden;
}

.page-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.44;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.38);
}

.hero-copy {
  position: relative;
  z-index: 1;
  width: min(720px, 100%);
}

.eyebrow {
  margin: 0 0 12px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Universal Sans Display", -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-weight: 500;
  letter-spacing: 0;
}

h1 {
  max-width: 660px;
  font-size: 40px;
  line-height: 1.2;
}

h2 {
  font-size: 34px;
  line-height: 1.2;
}

h3 {
  font-size: 17px;
  line-height: 1.18;
}

p,
li {
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.58;
}

.hero-copy p {
  max-width: 560px;
  margin: 18px 0 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 200px;
  min-height: 40px;
  padding: 4px 16px;
  border: 3px solid transparent;
  border-radius: 4px;
  color: var(--white);
  background: var(--blue);
  font-size: 14px;
  font-weight: 500;
}

.section {
  padding: 84px 7vw;
  background: var(--carbon);
}

.section.light {
  color: var(--carbon);
  background: var(--white);
}

.section.light h2,
.section.light h3 {
  color: var(--carbon);
}

.section.light p,
.section.light li {
  color: var(--graphite);
}

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

.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: start;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 36px;
}

.panel {
  min-height: 210px;
  padding: 0;
}

.panel h3 {
  margin-bottom: 10px;
}

.list {
  display: grid;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 34px;
}

.stat strong {
  display: block;
  color: inherit;
  font-size: 30px;
  font-weight: 500;
  line-height: 1.2;
}

.stat span {
  display: block;
  margin-top: 6px;
  color: inherit;
  opacity: 0.72;
  font-size: 14px;
  line-height: 1.43;
}

.footer {
  padding: 56px 7vw;
  background: #0c0e12;
}

.footer .inner {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

@media (max-width: 840px) {
  .site-header {
    grid-template-columns: 1fr auto;
    padding: 8px 18px;
  }

  .nav {
    display: none;
  }

  h1 {
    font-size: 30px;
  }

  h2 {
    font-size: 28px;
  }

  .page-hero,
  .section,
  .footer {
    padding-left: 24px;
    padding-right: 24px;
  }

  .split,
  .grid,
  .stat-row {
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }
}
