:root {
  color-scheme: light;
  --field: #f2f4f8;
  --surface: #fbfcfe;
  --surface-muted: #e6eaf2;
  --ink: #182238;
  --navy: #111a2e;
  --muted: #667085;
  --line: #c8d0de;
  --line-strong: #78849b;
  --blue: #3157d5;
  --blue-soft: #dee6ff;
  --teal: #24767b;
  --green: #2d7a65;
  --coral: #b93d67;
  --white: #ffffff;
  --display: "Arial Narrow", "Avenir Next Condensed", "Roboto Condensed", sans-serif;
  --body: Manrope, "Avenir Next", Avenir, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  min-height: 100vh;
  margin: 0;
  background: var(--field);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

a {
  color: var(--blue);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

a:hover {
  color: #2445b0;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--coral);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 20;
  padding: 0.7rem 1rem;
  background: var(--navy);
  color: var(--white);
  font-weight: 800;
  transform: translateY(-180%);
  transition: transform 140ms ease;
}

.skip-link:focus {
  color: var(--white);
  transform: translateY(0);
}

.site-header {
  border-bottom: 1px solid var(--line);
  background: rgba(251, 252, 254, 0.92);
}

.nav,
.site-footer,
.hero,
.page-layout {
  width: min(1120px, calc(100% - 2rem));
  margin-inline: auto;
}

.nav {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--ink);
  font-family: var(--display);
  font-size: 1.35rem;
  font-stretch: condensed;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-decoration: none;
  text-transform: uppercase;
}

.brand-mark {
  width: 38px;
  height: 38px;
  display: block;
  flex: 0 0 auto;
  border-radius: 9px;
}

.nav-links,
.footer-links {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-links a {
  display: block;
  min-height: 44px;
  padding: 0.62rem 0.78rem;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-decoration: none;
  text-transform: uppercase;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--ink);
  box-shadow: inset 0 -3px 0 var(--blue);
}

.hero {
  position: relative;
  padding: clamp(4rem, 10vw, 8rem) 0 clamp(3.5rem, 7vw, 6rem);
}

.hero::before {
  content: "";
  position: absolute;
  top: clamp(2.8rem, 7vw, 5rem);
  right: 0;
  width: min(34vw, 370px);
  aspect-ratio: 1;
  opacity: 0.55;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 25% 25%;
  -webkit-mask-image: linear-gradient(135deg, transparent 8%, #000 44%, transparent 88%);
  mask-image: linear-gradient(135deg, transparent 8%, #000 44%, transparent 88%);
  pointer-events: none;
}

.eyebrow,
.meta,
.section-kicker {
  margin: 0;
  color: var(--green);
  font-family: var(--display);
  font-size: 0.86rem;
  font-stretch: condensed;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  color: var(--ink);
  font-family: var(--display);
  font-stretch: condensed;
  line-height: 0.98;
  text-transform: uppercase;
}

h1 {
  position: relative;
  max-width: 820px;
  margin: 0.75rem 0 1.25rem;
  font-size: clamp(3.4rem, 10vw, 7.8rem);
  font-weight: 900;
  letter-spacing: -0.035em;
}

.legal-title {
  max-width: 760px;
  font-size: clamp(3rem, 8vw, 6.5rem);
}

h2 {
  margin: 0 0 0.8rem;
  font-size: clamp(1.75rem, 4vw, 2.7rem);
  letter-spacing: -0.02em;
}

h3 {
  margin: 1.5rem 0 0.45rem;
  font-size: 1.2rem;
  letter-spacing: 0.02em;
}

.lede {
  position: relative;
  max-width: 670px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1.06rem, 2.2vw, 1.3rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.2rem;
  border: 2px solid var(--navy);
  background: var(--navy);
  color: var(--white);
  font-family: var(--display);
  font-weight: 800;
  letter-spacing: 0.13em;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 140ms ease, color 140ms ease, transform 140ms ease;
}

.button:hover {
  background: var(--blue);
  color: var(--white);
  transform: translateY(-2px);
}

.button.secondary {
  background: transparent;
  color: var(--navy);
}

.button.secondary:hover {
  background: var(--blue-soft);
  color: var(--navy);
}

.score-strip {
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr;
  margin-top: clamp(3rem, 7vw, 5rem);
  border-top: 2px solid var(--navy);
  border-bottom: 2px solid var(--navy);
}

.score-item {
  min-height: 160px;
  padding: 1.35rem;
  border-right: 1px solid var(--line-strong);
  background: rgba(251, 252, 254, 0.7);
}

.score-item:first-child {
  background: var(--navy);
  color: var(--white);
}

.score-item:last-child {
  border-right: 0;
}

.score-item h2 {
  color: inherit;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
}

.score-item p {
  margin: 0 0 1rem;
  color: inherit;
  opacity: 0.78;
}

.score-item a {
  color: inherit;
  font-weight: 800;
}

.page-layout {
  display: grid;
  grid-template-columns: minmax(190px, 240px) minmax(0, 760px);
  justify-content: space-between;
  gap: clamp(2rem, 7vw, 6rem);
  padding-bottom: 6rem;
}

.contents {
  align-self: start;
  position: sticky;
  top: 1.5rem;
  padding-top: 1rem;
  border-top: 2px solid var(--navy);
}

.contents ul {
  margin: 0.8rem 0 0;
  padding: 0;
  list-style: none;
}

.contents a {
  display: block;
  padding: 0.45rem 0;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
}

.contents a:hover {
  color: var(--blue);
}

.document {
  border-top: 2px solid var(--navy);
}

.document section {
  padding: clamp(1.7rem, 4vw, 2.7rem) 0;
  border-bottom: 1px solid var(--line);
  scroll-margin-top: 1rem;
}

.document p,
.document ul {
  margin-top: 0.7rem;
  margin-bottom: 0;
}

.document ul {
  padding-left: 1.3rem;
}

.document li + li {
  margin-top: 0.55rem;
}

.callout {
  margin-top: 1.4rem;
  padding: 1rem 1.15rem;
  border-left: 4px solid var(--blue);
  background: var(--blue-soft);
}

.callout strong {
  display: block;
  margin-bottom: 0.25rem;
}

.contact-panel {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 2rem;
  padding: clamp(1.5rem, 5vw, 3rem);
  background: var(--navy);
  color: var(--white);
}

.contact-panel h2 {
  color: var(--white);
}

.contact-panel p {
  max-width: 550px;
  margin: 0;
  color: #c5cde0;
}

.contact-panel .button {
  border-color: var(--white);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 2rem 0 3rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.82rem;
}

.footer-links {
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-links a {
  color: var(--ink);
  font-weight: 800;
}

@media (max-width: 760px) {
  .nav {
    min-height: 68px;
    align-items: flex-start;
    padding: 0.85rem 0;
  }

  .brand {
    padding-top: 0.15rem;
  }

  .nav-links {
    gap: 0;
  }

  .nav-links a {
    min-height: 42px;
    padding: 0.5rem 0.42rem;
    font-size: 0.68rem;
    letter-spacing: 0.04em;
  }

  .hero::before {
    width: 52vw;
    opacity: 0.32;
  }

  .score-strip {
    grid-template-columns: 1fr;
  }

  .score-item {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line-strong);
  }

  .score-item:last-child {
    border-bottom: 0;
  }

  .page-layout {
    display: block;
  }

  .contents {
    position: static;
    margin-bottom: 2.5rem;
  }

  .contents ul {
    columns: 2;
    column-gap: 1.25rem;
  }

  .contact-panel {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .contact-panel .button {
    width: 100%;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 430px) {
  .nav,
  .site-footer,
  .hero,
  .page-layout {
    width: min(100% - 1.25rem, 1120px);
  }

  .brand {
    font-size: 0;
  }

  .brand-mark {
    width: 36px;
    height: 36px;
  }

  .contents ul {
    columns: 1;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
