:root {
  --blue: #0d6f9c;
  --blue-deep: #07577d;
  --blue-dark: #043a59;
  --paper: #eee9dc;
  --paper-soft: #f8f2e4;
  --ink: #1a1712;
  --muted: #d5e6ec;
  --line: rgba(238, 233, 220, 0.72);
  --shadow: rgba(2, 22, 34, 0.34);
  --logo-blue: #203393;
  --radius: 4px;
  --max: 1180px;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 18% 12%, rgba(255, 255, 255, 0.08), transparent 26%),
    linear-gradient(180deg, var(--blue) 0%, var(--blue-deep) 54%, var(--blue-dark) 100%);
  color: var(--paper-soft);
  font-family: "Arial Narrow", "Franklin Gothic Medium", "Segoe UI Condensed", Arial, sans-serif;
  line-height: 1.55;
  text-transform: none;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  opacity: 0.28;
  background-image:
    repeating-radial-gradient(circle at 11% 19%, rgba(255,255,255,0.34) 0 1px, transparent 1px 4px),
    repeating-radial-gradient(circle at 73% 41%, rgba(0,0,0,0.22) 0 1px, transparent 1px 5px),
    repeating-linear-gradient(0deg, rgba(255,255,255,0.05) 0 1px, transparent 1px 3px);
  mix-blend-mode: overlay;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
  padding: 0 42px;
  border-bottom: 2px solid rgba(238, 233, 220, 0.42);
  background: var(--paper);
  color: var(--ink);
  box-shadow: 0 12px 30px rgba(2, 22, 34, 0.16);
}

.brand {
  display: inline-flex;
  align-items: center;
  max-width: 440px;
  text-decoration: none;
}

.brand-logo {
  display: block;
  width: 360px;
  max-width: 100%;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 2px;
}

.site-nav a {
  min-height: 38px;
  padding: 8px 12px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  color: #25313a;
  font-size: 0.95rem;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
}

.site-nav a:hover,
.site-nav a.is-active {
  border-color: rgba(32, 51, 147, 0.38);
  background: rgba(32, 51, 147, 0.08);
  color: var(--logo-blue);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  background: transparent;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.rating-hero {
  position: relative;
  display: grid;
  min-height: calc(100vh - 74px);
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.05), transparent 19%, rgba(255,255,255,0.06) 51%, transparent 84%),
    linear-gradient(180deg, #0f7bab 0%, #08618d 52%, #064d73 100%);
}

.rating-hero::before {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 118px;
  transform: translateY(-50%);
  content: "";
  background: var(--paper);
  box-shadow:
    0 -2px 0 rgba(255,255,255,0.35),
    0 2px 0 rgba(0,0,0,0.12),
    0 18px 50px rgba(0,0,0,0.12);
}

.film-grain {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.35;
  background-image:
    repeating-radial-gradient(circle at 7% 13%, rgba(255,255,255,0.3) 0 1px, transparent 1px 4px),
    repeating-radial-gradient(circle at 91% 63%, rgba(0,0,0,0.3) 0 1px, transparent 1px 5px),
    repeating-linear-gradient(90deg, transparent 0 14px, rgba(255,255,255,0.04) 14px 15px);
  mix-blend-mode: overlay;
}

.rating-copy {
  position: relative;
  z-index: 1;
  width: min(100% - 64px, var(--max));
  margin-inline: auto;
}

.rating-copy-top {
  align-self: end;
  max-width: 520px;
  margin-bottom: 44px;
  margin-left: auto;
  color: var(--paper-soft);
  text-align: center;
  text-transform: uppercase;
}

.rating-kicker,
.rating-stamp {
  margin: 0;
  font-weight: 900;
  line-height: 1.08;
  text-shadow: 0 2px 8px rgba(2, 22, 34, 0.48);
}

.rating-kicker {
  font-size: 1.55rem;
}

.rating-stamp {
  margin-top: 8px;
  font-size: 1.05rem;
}

.rating-band {
  position: relative;
  z-index: 1;
  width: min(100% - 64px, var(--max));
  min-height: 118px;
  margin-inline: auto;
}

.rating-copy-bottom {
  align-self: start;
  max-width: 650px;
  margin-top: 38px;
  margin-left: auto;
  text-align: center;
}

h1,
h2,
h3 {
  margin: 0;
  font-weight: 900;
  line-height: 1.08;
}

h1 {
  font-size: 4.6rem;
  text-transform: uppercase;
  text-shadow: 0 4px 14px rgba(2, 22, 34, 0.34);
}

h2 {
  font-size: 2.7rem;
  text-transform: uppercase;
}

h3 {
  font-size: 1.25rem;
  text-transform: uppercase;
}

.rating-copy-bottom p,
.page-hero p {
  max-width: 680px;
  margin: 18px auto 0;
  color: var(--muted);
  font-size: 1.15rem;
  font-weight: 700;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 10px 18px;
  border: 2px solid var(--paper);
  border-radius: var(--radius);
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
}

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

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

.content-section,
.feature-band,
.timeline-section,
.site-footer {
  width: min(100%, var(--max));
  margin-inline: auto;
}

.content-section {
  padding: 86px 32px;
}

.intro-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
  border-top: 2px solid var(--line);
  border-bottom: 2px solid var(--line);
}

.eyebrow {
  margin-bottom: 14px;
  color: var(--paper);
  font-size: 0.9rem;
  font-weight: 900;
  text-transform: uppercase;
}

.richtext {
  color: var(--muted);
  font-size: 1.08rem;
  font-weight: 700;
}

.richtext h2,
.richtext h3 {
  margin: 2rem 0 0.75rem;
  color: var(--paper-soft);
}

.richtext p {
  margin: 0 0 1rem;
}

.richtext ul {
  padding-left: 1.2rem;
}

.timeline-section {
  padding: 18px 32px 98px;
}

.timeline-head {
  max-width: 760px;
  margin-bottom: 48px;
}

.timeline-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}

.timeline-track::before {
  position: absolute;
  top: 45px;
  left: 0;
  right: 0;
  height: 6px;
  content: "";
  background: var(--paper);
  box-shadow: 0 2px 12px rgba(2, 22, 34, 0.22);
}

.timeline-item {
  position: relative;
  padding-top: 88px;
}

.timeline-item::before {
  position: absolute;
  top: 32px;
  left: 0;
  width: 30px;
  height: 30px;
  border: 3px solid var(--ink);
  content: "";
  background: var(--paper);
}

.timeline-item span {
  display: inline-block;
  margin-bottom: 16px;
  padding: 4px 8px;
  background: var(--paper);
  color: var(--blue-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.1rem;
  font-weight: 900;
}

.timeline-item p {
  margin: 10px 0 0;
  color: var(--muted);
  font-weight: 700;
}

.feature-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2px;
  padding: 0 32px 92px;
}

.feature-band article {
  min-height: 235px;
  padding: 30px;
  border: 2px solid var(--paper);
  background: rgba(238, 233, 220, 0.1);
  box-shadow: inset 0 0 0 1px rgba(2, 22, 34, 0.14);
}

.feature-band span {
  color: var(--paper);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  font-weight: 900;
}

.feature-band h3 {
  margin-top: 28px;
}

.feature-band p {
  color: var(--muted);
  font-weight: 700;
}

.page-hero {
  padding: 94px 32px 54px;
  background:
    linear-gradient(180deg, rgba(238,233,220,0.08), transparent),
    linear-gradient(90deg, transparent 0, transparent 38%, rgba(238,233,220,0.2) 38%, rgba(238,233,220,0.2) 62%, transparent 62%);
}

.page-hero > * {
  width: min(100%, var(--max));
  margin-inline: auto;
}

.document-image {
  display: block;
  width: min(100%, 520px);
  height: auto;
  margin: 34px auto 0;
  border: 3px solid var(--paper);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 22px 70px rgba(2, 22, 34, 0.24);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  padding: 34px 32px;
  border-top: 2px solid var(--line);
  color: var(--muted);
  font-weight: 700;
}

.site-footer div {
  display: grid;
  gap: 2px;
}

.site-footer strong {
  color: var(--paper-soft);
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.site-footer a {
  text-decoration: none;
}

@media (max-width: 980px) {
  .site-header {
    min-height: 68px;
    padding-inline: 18px;
  }

  .brand-logo {
    width: 260px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    top: 68px;
    right: 12px;
    left: 12px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 10px;
    border: 2px solid var(--ink);
    border-radius: var(--radius);
    background: var(--paper);
    box-shadow: 0 20px 60px rgba(2, 22, 34, 0.2);
  }

  .site-nav.is-open {
    display: flex;
  }

  .rating-hero {
    min-height: 760px;
  }

  .rating-hero::before {
    height: 96px;
  }

  .rating-copy,
  .rating-band {
    width: min(100% - 32px, var(--max));
  }

  .rating-copy-top,
  .rating-copy-bottom {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .rating-band {
    min-height: 96px;
  }

  h1 {
    font-size: 3.1rem;
  }

  h2 {
    font-size: 2.1rem;
  }

  .intro-grid,
  .feature-band,
  .timeline-track {
    grid-template-columns: 1fr;
  }

  .timeline-track::before {
    top: 0;
    bottom: 0;
    left: 15px;
    width: 6px;
    height: auto;
  }

  .timeline-item {
    padding-top: 0;
    padding-left: 58px;
  }

  .timeline-item::before {
    top: 0;
    left: 0;
  }

  .site-footer {
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .brand {
    max-width: 210px;
  }

  .brand-logo {
    width: 210px;
  }

  .rating-hero {
    min-height: 720px;
  }

  .rating-kicker {
    font-size: 1.2rem;
  }

  .rating-stamp {
    font-size: 0.95rem;
  }

  h1 {
    font-size: 2.45rem;
  }

  h2 {
    font-size: 1.75rem;
  }

  .content-section,
  .timeline-section,
  .feature-band,
  .site-footer {
    padding-left: 18px;
    padding-right: 18px;
  }
}
