@charset "utf-8";

@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Manrope:wght@600;700;800&display=swap");

:root {
  --navy: #082b70;
  --navy-dark: #061d4b;
  --blue: #276bd8;
  --blue-bright: #4d8ff2;
  --blue-light: #eaf2ff;
  --red: #e34346;
  --ink: #13203a;
  --muted: #66728a;
  --line: #dfe7f2;
  --surface: #f4f7fb;
  --white: #ffffff;
  --green: #31a66d;
  --pending: #747b86;
  --shadow: 0 18px 55px rgba(13, 43, 94, .11);
  --shadow-soft: 0 10px 30px rgba(13, 43, 94, .08);
  --radius-lg: 28px;
  --radius-md: 18px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 112px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--surface);
  font-family: "Inter", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

button,
a {
  font: inherit;
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
}

img {
  max-width: 100%;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: 7px;
  left: 7px;
  z-index: 99999;
  padding: 9px 13px;
  color: var(--white);
  border-radius: 9px;
  background: var(--navy);
  font-weight: 800;
  text-decoration: none;
  transform: translateY(-160%);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 18px 24px;
  background: rgba(244, 247, 251, .88);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.navbar {
  width: min(100%, var(--container));
  min-height: 78px;
  margin: 0 auto;
  padding: 9px 14px 9px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  background: rgba(255, 255, 255, .96);
  border: 1px solid rgba(174, 191, 219, .45);
  border-radius: 20px;
  box-shadow: var(--shadow-soft);
}

.navbar-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.navbar-logo img {
  width: 166px;
  height: 56px;
  display: block;
  object-fit: contain;
}

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

.nav-links a {
  padding: 12px 15px;
  color: var(--navy);
  border-radius: 11px;
  font-size: 13px;
  font-weight: 750;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .025em;
  transition: color .2s ease, background .2s ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--blue);
  background: var(--blue-light);
  outline: none;
}

.nav-status {
  margin-left: 8px;
  padding: 11px 15px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--white);
  border-radius: 11px;
  background: var(--navy);
  font-size: 12px;
  font-weight: 700;
}

.nav-status i,
.hero-update i,
.live-dot {
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #58d598;
  box-shadow: 0 0 0 5px rgba(88, 213, 152, .13);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 11px;
  border: 0;
  border-radius: 12px;
  background: var(--blue-light);
  cursor: pointer;
}

.menu-toggle > span:not(.sr-only) {
  width: 100%;
  height: 2px;
  margin: 4px 0;
  display: block;
  border-radius: 2px;
  background: var(--navy);
}

main {
  overflow: hidden;
}

.hero {
  position: relative;
  width: min(calc(100% - 48px), var(--container));
  min-height: 650px;
  margin: 10px auto 0;
  padding: 70px 58px 145px;
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  align-items: center;
  gap: 44px;
  overflow: hidden;
  isolation: isolate;
  border-radius: 34px;
  background:
    radial-gradient(circle at 96% 0%, rgba(70, 139, 244, .24), transparent 34%),
    linear-gradient(135deg, var(--navy-dark), #0a377f 72%, #0e489b);
  box-shadow: var(--shadow);
}

.hero::before {
  content: "";
  position: absolute;
  top: -270px;
  left: -230px;
  z-index: -1;
  width: 560px;
  height: 560px;
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 50%;
  box-shadow: 0 0 0 75px rgba(255, 255, 255, .022), 0 0 0 150px rgba(255, 255, 255, .018);
}

.hero-copy {
  position: relative;
  z-index: 2;
  color: var(--white);
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #7bafff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.eyebrow::before,
.section-kicker::before {
  content: "";
  width: 23px;
  height: 3px;
  border-radius: 3px;
  background: currentColor;
}

.hero h1 {
  margin: 16px 0 22px;
  color: var(--white);
  font-family: "Manrope", sans-serif;
  font-size: clamp(60px, 7vw, 88px);
  line-height: .88;
  letter-spacing: -.055em;
  text-transform: uppercase;
}

.hero h1 span {
  display: block;
  color: #75a9fa;
}

.hero-copy > p {
  max-width: 540px;
  margin: 0;
  color: rgba(255, 255, 255, .82);
  font-size: 16px;
  line-height: 1.72;
}

.hero-copy > p strong {
  color: var(--white);
}

.hero-copy .hero-support {
  margin-top: 13px;
  color: rgba(255, 255, 255, .62);
  font-size: 14px;
}

.hero-actions {
  margin-top: 29px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
}

.button {
  min-height: 50px;
  padding: 14px 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid transparent;
  border-radius: 13px;
  font-size: 13px;
  font-weight: 750;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--white);
  background: linear-gradient(135deg, #4c8ff5, #2366d1);
  box-shadow: 0 13px 28px rgba(12, 61, 147, .35);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: linear-gradient(135deg, #5a9bff, #2e74e4);
  outline: none;
}

.hero-update {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, .67);
  font-size: 11px;
  font-weight: 600;
}

.hero-visual {
  position: relative;
  z-index: 2;
}

.hero-image-frame {
  position: relative;
  min-height: 355px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: 26px;
  background: #d8e4f7;
  box-shadow: 0 30px 70px rgba(1, 14, 38, .3);
  transform: rotate(1.2deg);
}

.hero-image-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 58%, rgba(3, 21, 53, .68));
  pointer-events: none;
}

.hero-image-frame > img {
  width: 100%;
  height: 100%;
  min-height: 355px;
  display: block;
  object-fit: cover;
}

.image-badge {
  position: absolute;
  right: 20px;
  bottom: 19px;
  left: 20px;
  z-index: 2;
  padding: 15px 18px;
  display: grid;
  gap: 3px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, .23);
  border-radius: 14px;
  background: rgba(5, 33, 80, .73);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.image-badge span {
  color: #83b3fb;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.image-badge strong {
  font-size: 13px;
}

.hero-summary {
  position: absolute;
  right: 32px;
  bottom: 28px;
  left: 32px;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, .17);
  border-radius: 18px;
  background: rgba(4, 27, 70, .7);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}

.hero-summary > div {
  padding: 19px 25px;
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.hero-summary > div + div {
  border-left: 1px solid rgba(255, 255, 255, .14);
}

.hero-summary strong {
  font-family: "Manrope", sans-serif;
  font-size: 23px;
}

.hero-summary span {
  color: rgba(255, 255, 255, .63);
  font-size: 11px;
}

.section,
.branches-section {
  width: min(calc(100% - 48px), var(--container));
  margin: 100px auto 0;
}

.section-heading {
  margin-bottom: 30px;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, .8fr);
  align-items: end;
  gap: 40px;
}

.section-kicker {
  color: var(--blue);
}

.section h2,
.branches-section h2 {
  margin: 10px 0 0;
  color: var(--navy-dark);
  font-family: "Manrope", sans-serif;
  font-size: clamp(32px, 4vw, 46px);
  line-height: 1.08;
  letter-spacing: -.035em;
}

.section-heading > p,
.branches-head p {
  margin: 0 0 3px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.progress-layout {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 18px;
}

.global-card {
  position: relative;
  min-height: 404px;
  padding: 45px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 32px;
  overflow: hidden;
  color: var(--white);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 100% 0%, rgba(77, 143, 242, .26), transparent 37%),
    linear-gradient(135deg, var(--navy-dark), #0a377f);
  box-shadow: var(--shadow);
}

.global-card::before {
  content: "";
  position: absolute;
  right: -120px;
  bottom: -175px;
  width: 400px;
  height: 400px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 50%;
  box-shadow: 0 0 0 55px rgba(255, 255, 255, .02), 0 0 0 110px rgba(255, 255, 255, .018);
}

.global-copy {
  position: relative;
  z-index: 1;
}

.card-label {
  color: #75a9fa;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.global-copy h3 {
  max-width: 270px;
  margin: 10px 0 14px;
  font-family: "Manrope", sans-serif;
  font-size: 29px;
  line-height: 1.12;
}

.global-copy p {
  max-width: 280px;
  margin: 0;
  color: rgba(255, 255, 255, .66);
  font-size: 13px;
  line-height: 1.7;
}

.cut-date {
  margin-top: 27px;
  display: flex;
  align-items: center;
  gap: 9px;
  color: rgba(255, 255, 255, .72);
  font-size: 10px;
  font-weight: 700;
}

.cut-date span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #58d598;
  box-shadow: 0 0 0 5px rgba(88, 213, 152, .12);
}

.progress-ring {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: conic-gradient(var(--accent) calc(var(--progress) * 1%), rgba(255, 255, 255, .13) 0);
}

.progress-ring::before {
  content: "";
  position: absolute;
  inset: 13px;
  border-radius: inherit;
  background: #082d6e;
}

.progress-ring-large {
  width: 205px;
  height: 205px;
}

.progress-ring > div {
  position: relative;
  display: flex;
  align-items: baseline;
  justify-content: center;
  flex-wrap: wrap;
  color: var(--white);
}

.progress-ring strong {
  font-family: "Manrope", sans-serif;
  font-size: 45px;
}

.progress-ring small {
  font-size: 18px;
  font-weight: 800;
}

.progress-ring span {
  width: 100%;
  margin-top: 2px;
  color: rgba(255, 255, 255, .56);
  font-size: 9px;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.training-grid {
  display: grid;
  gap: 12px;
}

.training-card {
  min-height: 126px;
  padding: 20px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 17px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  transition: transform .22s ease, box-shadow .22s ease;
}

.training-card:hover {
  transform: translateX(5px);
  box-shadow: 0 17px 38px rgba(13, 43, 94, .13);
}

.training-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  color: var(--accent);
  border-radius: 14px;
  background: color-mix(in srgb, var(--accent) 10%, white);
}

.training-icon svg {
  width: 26px;
  fill: currentColor;
}

.training-copy span {
  color: var(--accent);
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .11em;
}

.training-copy h3 {
  margin: 5px 0 0;
  color: var(--navy-dark);
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  line-height: 1.3;
}

.mini-progress {
  width: 93px;
  display: grid;
  justify-items: end;
  gap: 8px;
}

.mini-progress strong {
  color: var(--navy-dark);
  font-family: "Manrope", sans-serif;
  font-size: 15px;
}

.mini-progress > span {
  width: 100%;
  height: 6px;
  overflow: hidden;
  border-radius: 9px;
  background: #e7edf5;
}

.mini-progress i {
  width: calc(var(--progress) * 1%);
  height: 100%;
  display: block;
  border-radius: inherit;
  background: var(--accent);
}

.coverage-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.coverage-card {
  position: relative;
  min-height: 310px;
  padding: 38px;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.coverage-card::before {
  content: "";
  position: absolute;
  inset: auto -40px -100px auto;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .055);
}

.coverage-blue {
  background: linear-gradient(135deg, #1455bd, #2f78df);
}

.coverage-dark {
  background: linear-gradient(135deg, #152037, #333d51);
}

.coverage-content {
  position: relative;
  z-index: 2;
  width: 52%;
}

.coverage-label {
  color: rgba(255, 255, 255, .62);
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .11em;
}

.coverage-content strong {
  margin: 8px 0 0;
  display: block;
  font-family: "Manrope", sans-serif;
  font-size: 70px;
  line-height: 1;
}

.coverage-content p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, .82);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
}

.coverage-card img {
  position: absolute;
  right: -4%;
  bottom: -8%;
  width: 55%;
  max-height: 92%;
  object-fit: contain;
  object-position: right bottom;
  filter: drop-shadow(0 20px 30px rgba(0, 0, 0, .18));
}

.branches-section {
  padding: 58px;
  border-radius: 34px;
  background:
    radial-gradient(circle at 96% 2%, rgba(56, 123, 229, .22), transparent 24%),
    linear-gradient(145deg, #071f50, #0b367f);
  box-shadow: var(--shadow);
}

.branches-head {
  margin-bottom: 32px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 35px;
}

.branches-head > div:first-child {
  max-width: 650px;
}

.branches-section .section-kicker {
  color: #7bafff;
}

.branches-section h2 {
  color: var(--white);
}

.branches-head p {
  margin-top: 12px;
  color: rgba(255, 255, 255, .62);
}

.legend {
  padding: 12px 15px;
  display: flex;
  gap: 16px;
  color: rgba(255, 255, 255, .72);
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 12px;
  background: rgba(255, 255, 255, .05);
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.legend span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.legend i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.legend-updated {
  background: #67a3ff;
  box-shadow: 0 0 0 4px rgba(103, 163, 255, .14);
}

.legend-pending {
  background: #8b96a8;
  box-shadow: 0 0 0 4px rgba(139, 150, 168, .12);
}

.branch-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 11px;
}

.branch-card {
  min-height: 102px;
  padding: 17px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 13px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 15px;
  background: rgba(255, 255, 255, .065);
  text-decoration: none;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}

.branch-item.updated .branch-card {
  background: rgba(43, 106, 207, .31);
  border-color: rgba(107, 166, 255, .34);
}

.branch-card[href]:hover,
.branch-card[href]:focus-visible {
  transform: translateY(-3px);
  background: rgba(63, 131, 239, .43);
  border-color: rgba(151, 193, 255, .66);
  outline: none;
}

.branch-card[hrf] {
  cursor: default;
}

.branch-number {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  color: #8ab8ff;
  border-radius: 11px;
  background: rgba(255, 255, 255, .08);
  font-size: 10px;
  font-weight: 800;
}

.branch-name {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.branch-name small {
  color: rgba(255, 255, 255, .42);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.branch-name strong {
  font-family: "Manrope", sans-serif;
  font-size: 13px;
  line-height: 1.25;
  text-transform: uppercase;
}

.branch-state {
  grid-column: 2;
  color: rgba(255, 255, 255, .45);
  font-size: 8px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .07em;
}

.branch-item.updated .branch-state {
  color: #83b5ff;
}

.branch-arrow {
  grid-row: 1 / span 2;
  grid-column: 3;
  color: rgba(255, 255, 255, .45);
  font-size: 19px;
}

.branch-card[hrf] .branch-arrow {
  opacity: .3;
}

.update-banner {
  width: min(calc(100% - 48px), var(--container));
  margin: 28px auto 0;
  padding: 24px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: var(--white);
  border-radius: var(--radius-md);
  background: linear-gradient(115deg, var(--navy-dark), var(--navy));
  box-shadow: var(--shadow);
}

.update-banner > div {
  display: flex;
  align-items: center;
  gap: 17px;
}

.update-banner > div > div {
  display: grid;
  gap: 3px;
}

.update-banner small {
  color: #83aff7;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.update-banner strong {
  font-size: 14px;
}

.update-banner > span {
  color: rgba(255, 255, 255, .58);
  font-size: 10px;
}

footer {
  width: min(calc(100% - 48px), var(--container));
  margin: 28px auto 0;
  padding: 34px 0 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  color: #7b8698;
  font-size: 10px;
  line-height: 1.6;
  text-transform: uppercase;
  letter-spacing: .05em;
}

footer > div:first-child {
  display: flex;
  align-items: center;
  gap: 18px;
}

footer img {
  width: 120px;
  height: 48px;
  object-fit: contain;
}

footer p {
  margin: 0;
}

.footer-meta {
  display: grid;
  gap: 2px;
  text-align: right;
}

.back-to-top {
  position: fixed;
  right: 23px;
  bottom: 23px;
  z-index: 900;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: 14px;
  background: var(--navy);
  box-shadow: 0 12px 28px rgba(7, 36, 94, .28);
  font-size: 20px;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(15px);
  transition: opacity .2s ease, transform .2s ease, background .2s ease;
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.back-to-top:hover,
.back-to-top:focus-visible {
  background: var(--blue);
  outline: none;
}

@media (max-width: 1000px) {
  .hero {
    padding-inline: 42px;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }

  .hero h1 {
    font-size: 62px;
  }

  .progress-layout {
    grid-template-columns: 1fr;
  }

  .training-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .training-card {
    min-height: 215px;
    align-content: start;
    grid-template-columns: 1fr auto;
  }

  .training-copy {
    grid-column: 1 / -1;
  }

  .mini-progress {
    width: 100%;
    grid-column: 1 / -1;
    justify-items: start;
  }

  .branch-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 760px) {
  html {
    scroll-padding-top: 90px;
  }

  .site-header {
    padding: 10px 12px;
  }

  .navbar {
    min-height: 64px;
    padding: 7px 10px 7px 13px;
    border-radius: 16px;
  }

  .navbar-logo img {
    width: 126px;
    height: 47px;
  }

  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: calc(100% - 2px);
    right: 12px;
    left: 12px;
    padding: 10px;
    display: none;
    align-items: stretch;
    flex-direction: column;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: var(--white);
    box-shadow: var(--shadow);
  }

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

  .nav-links a {
    padding: 13px 14px;
  }

  .nav-status {
    margin: 3px 0 0;
    justify-content: center;
  }

  .hero,
  .section,
  .branches-section,
  .update-banner,
  footer {
    width: min(calc(100% - 24px), var(--container));
  }

  .hero {
    min-height: auto;
    margin-top: 4px;
    padding: 52px 24px 192px;
    grid-template-columns: 1fr;
    gap: 34px;
    border-radius: 23px;
  }

  .hero h1 {
    font-size: clamp(50px, 17vw, 70px);
  }

  .hero-copy > p {
    font-size: 15px;
  }

  .hero-image-frame,
  .hero-image-frame > img {
    min-height: 245px;
  }

  .hero-image-frame {
    transform: none;
    border-radius: 19px;
  }

  .hero-summary {
    right: 15px;
    bottom: 15px;
    left: 15px;
    grid-template-columns: 1fr;
  }

  .hero-summary > div {
    padding: 10px 14px;
  }

  .hero-summary > div + div {
    border-top: 1px solid rgba(255, 255, 255, .12);
    border-left: 0;
  }

  .hero-summary strong {
    min-width: 65px;
    font-size: 18px;
  }

  .section,
  .branches-section {
    margin-top: 72px;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .section h2,
  .branches-section h2 {
    font-size: 32px;
  }

  .global-card {
    min-height: 480px;
    padding: 32px 25px;
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .global-copy h3,
  .global-copy p {
    margin-inline: auto;
  }

  .cut-date {
    justify-content: center;
  }

  .progress-ring-large {
    width: 190px;
    height: 190px;
  }

  .training-grid {
    grid-template-columns: 1fr;
  }

  .training-card {
    min-height: 128px;
    align-content: center;
    grid-template-columns: auto 1fr auto;
  }

  .training-copy,
  .mini-progress {
    grid-column: auto;
  }

  .mini-progress {
    width: 82px;
    justify-items: end;
  }

  .coverage-grid {
    grid-template-columns: 1fr;
  }

  .coverage-card {
    min-height: 280px;
    padding: 30px;
  }

  .branches-section {
    padding: 36px 20px;
    border-radius: 24px;
  }

  .branches-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 22px;
  }

  .branch-grid {
    grid-template-columns: 1fr;
  }

  .branch-card {
    min-height: 92px;
  }

  .update-banner {
    align-items: flex-start;
    flex-direction: column;
  }

  footer,
  footer > div:first-child {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-meta {
    text-align: left;
  }
}

@media (max-width: 430px) {
  .eyebrow {
    font-size: 9px;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .training-card {
    min-height: 190px;
    align-content: start;
    grid-template-columns: 1fr auto;
  }

  .training-copy {
    grid-column: 1 / -1;
  }

  .mini-progress {
    width: 100%;
    grid-column: 1 / -1;
    justify-items: start;
  }

  .coverage-card {
    min-height: 255px;
  }

  .coverage-content strong {
    font-size: 58px;
  }

  .legend {
    width: 100%;
    justify-content: space-between;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}
