:root {
  --navy: #24324a;
  --deep-navy: #182238;
  --teal: #165d73;
  --blue: #4b7bec;
  --gold: #2a9d8f;
  --paper: #fff;
  --mist: #f4f6f8;
  --muted: #667085;
  --line: #dde2ea;
  --line-dark: #bac4d1;
}

body,
.page-shell {
  background: #f4f6f8;
  color: #24324a;
}

.brand-header {
  border-color: #e1e5eb;
  background: #fff;
}

.brand {
  width: auto;
  display: inline-flex;
  align-items: center;
}

.neutral-wordmark {
  display: grid;
  gap: 2px;
}

.neutral-wordmark strong {
  color: #24324a;
  font-size: 20px;
  font-weight: 820;
  letter-spacing: 0.08em;
}

.neutral-wordmark small {
  color: #667085;
  font-size: 9px;
  font-weight: 720;
  letter-spacing: 0.16em;
}

.vi-hero {
  height: 174px;
  grid-template-columns: minmax(0, 62%) minmax(320px, 38%);
  border-color: #dde2ea;
  background: #fff;
}

.hero-copy {
  padding: 20px 40px 16px;
}

.hero-copy h1 {
  margin-top: 7px;
  font-family: "Noto Serif SC", Georgia, "Times New Roman", serif;
  font-size: clamp(28px, 2.35vw, 36px);
  font-weight: 650;
  line-height: 1.06;
  letter-spacing: -0.025em;
}

.hero-gold-line {
  width: min(390px, 82%);
  height: 2px;
  margin: 9px 0 7px;
  background: #2a9d8f;
}

.hero-copy h2 {
  font-size: clamp(15px, 1.15vw, 18px);
}

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

.hero-generic-panel {
  position: relative;
  display: grid;
  align-content: center;
  gap: 10px;
  padding: 30px 38px;
  overflow: hidden;
  background: linear-gradient(135deg, #24324a 0%, #165d73 100%);
  color: #fff;
}

.hero-generic-panel::before {
  position: absolute;
  top: -78px;
  right: -58px;
  width: 225px;
  height: 225px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  box-shadow:
    0 0 0 26px rgba(255, 255, 255, 0.04),
    0 0 0 52px rgba(255, 255, 255, 0.025);
  content: "";
}

.hero-generic-panel::after {
  position: absolute;
  right: -8%;
  bottom: 24px;
  width: 64%;
  height: 1px;
  background: rgba(255, 255, 255, 0.22);
  box-shadow:
    0 10px 0 rgba(255, 255, 255, 0.13),
    0 20px 0 rgba(255, 255, 255, 0.08);
  transform: rotate(-8deg);
  content: "";
}

.hero-generic-panel > span,
.hero-generic-panel > strong,
.hero-generic-tags {
  position: relative;
  z-index: 1;
}

.hero-generic-panel > span {
  color: #9bd8d0;
  font-size: 10px;
  font-weight: 760;
  letter-spacing: 0.2em;
}

.hero-generic-panel > strong {
  font-size: 24px;
  font-weight: 760;
  letter-spacing: 0.02em;
}

.hero-generic-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hero-generic-tags span {
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 11px;
}

.metric-strip,
.scope-tabs button.active span,
.category-tabs button:hover,
.category-tabs button.active,
.clear-filters,
.selection-export,
.upload-submit,
.application-primary,
thead {
  background-color: #24324a;
}

.selection-toolbar::before {
  background: #2a9d8f;
}

.selection-export svg,
.upload-submit svg,
.application-primary svg {
  color: #8dd4ca;
}

footer strong {
  font-size: 15px;
  letter-spacing: 0.08em;
}

footer {
  background-image: none;
}

footer small {
  color: #667085;
}

.update-date-filter {
  min-width: 0;
  display: grid;
  grid-column: span 2;
  gap: 5px;
}

.update-date-heading {
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.update-date-heading button {
  padding: 0;
  border: 0;
  background: transparent;
  color: #165d73;
  font-size: 10px;
}

.update-date-heading button:hover {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.update-date-controls {
  min-width: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.update-date-control {
  min-width: 0;
  height: 42px;
  display: flex;
  align-items: center;
  border: 1px solid var(--line-dark);
  background: #fff;
}

.update-date-control:focus-within {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(75, 123, 236, 0.09);
}

.update-date-control > span {
  padding-left: 9px;
  flex: 0 0 auto;
  color: #667085;
  font-size: 10px;
}

.update-date-control input {
  width: 100%;
  min-width: 0;
  height: 40px;
  padding: 0 8px;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--navy);
  font-size: 11px;
}

@media (max-width: 760px) {
  .brand {
    width: auto;
  }

  .neutral-wordmark strong {
    font-size: 17px;
  }

  .neutral-wordmark small {
    font-size: 8px;
  }

  .vi-hero {
    height: auto;
    min-height: 270px;
    grid-template-columns: 1fr;
    grid-template-rows: auto 104px;
  }

  .hero-copy {
    padding: 18px 16px 14px;
  }

  .hero-copy h1 {
    font-size: 28px;
    line-height: 1.12;
  }

  .hero-copy h2 {
    font-size: 14px;
  }

  .hero-generic-panel {
    padding: 18px 16px;
  }

  .hero-generic-panel > strong {
    font-size: 18px;
  }

  .hero-generic-tags span {
    padding: 5px 8px;
    font-size: 10px;
  }

  .update-date-filter {
    grid-column: 1 / -1;
  }

  .update-date-control {
    height: 44px;
  }

  .update-date-control input {
    height: 42px;
  }
}
