:root {
  --background: #f1f2f3;
  --paper: #ffffff;
  --ink: #202326;
  --graphite: #353a3f;
  --blue: #3372af;
  --bright: #5696e7;
  --line: rgba(161, 159, 159, 0.46);
}

* {
  box-sizing: border-box;
}

body {
  min-width: 320px;
  margin: 0;
  background: var(--background);
  color: var(--ink);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 18px;
  line-height: 1.6;
  letter-spacing: 0;
}

a {
  color: var(--blue);
}

.legal-header,
footer {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid var(--line);
  padding: 16px max(24px, calc((100vw - 920px) / 2));
}

.legal-header > a:last-child,
footer a {
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  text-decoration: none;
}

.brand span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  background: var(--blue);
  color: var(--paper);
  font-size: 13px;
  font-weight: 800;
}

main {
  width: min(calc(100% - 48px), 920px);
  margin: 0 auto;
  padding: 84px 0 96px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

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

h1 {
  max-width: 850px;
  margin-bottom: 24px;
  color: var(--blue);
  font-size: 64px;
  hyphens: auto;
  line-height: 1.02;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.lead {
  color: var(--graphite);
}

section {
  display: grid;
  grid-template-columns: minmax(220px, 0.45fr) minmax(0, 1fr);
  gap: 36px;
  border-top: 1px solid var(--line);
  padding: 30px 0;
}

h2 {
  color: var(--blue);
  font-size: 21px;
  line-height: 1.25;
}

section p {
  margin-bottom: 0;
  color: var(--graphite);
}

footer {
  border-top: 1px solid var(--line);
  border-bottom: 0;
  background: var(--ink);
  color: rgba(255, 255, 255, 0.7);
}

footer a {
  color: var(--paper);
}

@media (max-width: 700px) {
  body {
    font-size: 16px;
  }

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

  .brand strong {
    display: none;
  }

  main {
    width: min(calc(100% - 36px), 920px);
    padding: 56px 0 72px;
  }

  h1 {
    font-size: 34px;
  }

  section {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 24px 0;
  }
}
