@font-face {
  font-family: "Manrope";
  src: url("/assets/fonts/Manrope-Regular.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("/assets/fonts/Manrope-Medium.ttf") format("truetype");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("/assets/fonts/Manrope-SemiBold.ttf") format("truetype");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("/assets/fonts/Manrope-Bold.ttf") format("truetype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  color: var(--color-graphite);
  background: var(--color-white);
  font-family: var(--font-interface);
  font-size: var(--type-body);
  font-synthesis: none;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body[data-menu-open] {
  overflow: hidden;
}

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

button {
  font: inherit;
}

a {
  color: var(--color-teal-action);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
  transition: color var(--motion-standard) var(--motion-easing), background-color var(--motion-standard) var(--motion-easing), border-color var(--motion-standard) var(--motion-easing);
}

a:hover {
  color: var(--color-teal-action-hover);
  text-decoration-thickness: 2px;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--color-teal-action);
  outline-offset: 3px;
}

img {
  max-width: 100%;
}

h1,
h2,
h3,
h4,
p,
li,
a,
button {
  letter-spacing: 0;
}

h1,
h2,
h3,
h4 {
  margin-top: 0;
  color: inherit;
  font-weight: 500;
}

h1 {
  max-width: 15ch;
  margin-bottom: var(--space-5);
  font-size: var(--type-h1);
  line-height: 1.06;
}

h2 {
  margin-bottom: var(--space-5);
  font-size: var(--type-h2);
  line-height: 1.12;
}

h3 {
  margin-bottom: var(--space-3);
  font-size: var(--type-h3);
  line-height: 1.2;
}

p {
  max-width: var(--measure-body);
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: var(--space-2);
  left: var(--space-2);
  min-height: var(--target-min);
  padding: 10px 14px;
  display: inline-flex;
  align-items: center;
  color: var(--color-white);
  background: var(--color-graphite);
  transform: translateY(-180%);
}

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

.private-notice {
  min-height: 36px;
  padding: 7px max(var(--outer-padding), calc((100% - var(--content-max)) / 2));
  color: var(--color-white);
  background: var(--color-graphite);
  font-size: var(--type-small);
  line-height: 1.5;
}

.private-notice strong {
  margin-right: 0.35em;
  color: var(--color-white);
}

.site-header {
  position: relative;
  z-index: 50;
  height: var(--header-height);
  border-bottom: var(--rule-default) solid var(--color-divider);
  background: var(--color-white);
}

.site-header__inner {
  width: min(var(--content-max), calc(100% - (var(--outer-padding) * 2)));
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
}

.brand {
  width: 236px;
  min-width: 236px;
  height: var(--target-min);
  display: inline-flex;
  align-items: center;
  color: var(--color-graphite);
  text-decoration: none;
}

.brand__horizontal {
  width: 236px;
  height: auto;
  display: block;
}

.brand__stacked {
  display: none;
}

.site-nav {
  min-width: 0;
  height: 100%;
  display: flex;
  align-items: stretch;
  justify-content: flex-end;
  gap: clamp(14px, 1.5vw, 26px);
}

.site-nav__link {
  position: relative;
  min-width: var(--target-min);
  min-height: var(--target-min);
  display: inline-flex;
  align-items: center;
  color: var(--color-graphite);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none;
}

.site-nav__link::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  background: transparent;
}

.site-nav__link:hover,
.site-nav__link[aria-current="page"] {
  color: var(--color-teal-action-hover);
}

.site-nav__link[aria-current="page"]::after {
  background: var(--color-teal-action);
}

.site-nav__link--command {
  gap: var(--space-2);
}

.menu-button {
  width: var(--target-min);
  height: var(--target-min);
  padding: 11px;
  display: none;
  border: var(--rule-default) solid var(--color-divider);
  border-radius: var(--radius-default);
  color: var(--color-graphite);
  background: var(--color-white);
}

.menu-button span {
  width: 20px;
  height: 2px;
  margin: 4px 0;
  display: block;
  background: currentColor;
  transform-origin: center;
  transition: transform var(--motion-standard) var(--motion-easing), opacity var(--motion-standard) var(--motion-easing);
}

.menu-button[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-button[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-button[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.page-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: var(--color-paper);
}

.page-hero__inner {
  position: relative;
  z-index: 2;
  width: min(var(--content-max), calc(100% - (var(--outer-padding) * 2)));
  min-height: 530px;
  margin: 0 auto;
  padding: var(--space-10) 0 var(--space-11);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.page-hero__content {
  width: min(790px, 100%);
}

.page-hero__lead {
  max-width: var(--measure-lead);
  margin: 0 0 var(--space-6);
  font-size: var(--type-lead);
  line-height: 1.5;
}

.page-hero--evidence,
.page-hero--channel {
  min-height: min(740px, 76svh);
  color: var(--color-white);
  background-color: var(--color-graphite);
}

.hero-media {
  position: absolute;
  z-index: -2;
  inset: 0;
  display: block;
}

.hero-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.hero-media--evidence img {
  object-position: 54% center;
}

.hero-media--channel img {
  object-position: 58% center;
}

.page-hero--evidence::before,
.page-hero--channel::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
}

.page-hero--evidence::before {
  background: linear-gradient(90deg, rgba(20, 24, 29, 0.96) 0%, rgba(20, 24, 29, 0.88) 48%, rgba(20, 24, 29, 0.42) 76%, rgba(20, 24, 29, 0.64) 100%);
}

.page-hero--channel::before {
  background: linear-gradient(90deg, rgba(15, 19, 23, 0.96) 0%, rgba(15, 19, 23, 0.86) 52%, rgba(15, 19, 23, 0.36) 82%, rgba(15, 19, 23, 0.54) 100%);
}

.page-hero--evidence .page-hero__inner,
.page-hero--channel .page-hero__inner {
  min-height: min(740px, 76svh);
  padding-bottom: 120px;
}

.page-hero--evidence .page-hero__lead,
.page-hero--channel .page-hero__lead {
  color: var(--color-white);
}

.page-hero--light {
  border-bottom: var(--rule-default) solid var(--color-divider);
  background: var(--color-white);
}

.page-hero--document {
  border-bottom: var(--rule-default) solid var(--color-divider);
  background: var(--color-mist);
}

.page-hero--document .page-hero__inner {
  min-height: 460px;
}

.eyebrow {
  margin: 0 0 var(--space-4);
  color: var(--color-teal-action);
  font-size: var(--type-label);
  font-weight: 600;
  line-height: 1.35;
  text-transform: uppercase;
}

.page-hero--evidence .eyebrow,
.page-hero--channel .eyebrow {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  color: var(--color-white);
}

.page-hero--evidence .eyebrow::after,
.page-hero--channel .eyebrow::after {
  content: "";
  width: 40px;
  height: 2px;
  display: inline-block;
  background: var(--color-teal-brand);
}

.command-row,
.section-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-4);
}

.content-link {
  min-height: var(--target-min);
  padding: 8px 0;
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  color: var(--color-teal-action);
  font-weight: 600;
}

.content-link--primary,
.content-link--secondary,
.content-link--image-primary,
.content-link--image-secondary {
  padding: 11px 16px;
  border: var(--rule-default) solid var(--color-graphite);
  border-radius: var(--radius-default);
  text-decoration: none;
}

.content-link--primary {
  color: var(--color-white);
  background: var(--color-graphite);
}

.content-link--primary:hover {
  color: var(--color-white);
  border-color: var(--color-teal-action-hover);
  background: var(--color-teal-action-hover);
}

.content-link--secondary {
  color: var(--color-graphite);
  background: transparent;
}

.content-link--secondary:hover {
  color: var(--color-graphite);
  background: var(--color-mist);
}

.content-link--image-primary,
.content-link--image-secondary {
  color: var(--color-graphite);
  border-color: var(--color-white);
  background: var(--color-white);
}

.content-link--image-secondary {
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.78);
  background: rgba(32, 36, 42, 0.74);
}

.content-link--image-primary:hover,
.content-link--image-secondary:hover {
  color: var(--color-graphite);
  border-color: var(--color-graphite);
  background: var(--color-paper);
}

.content-link--image-primary:focus-visible,
.content-link--image-secondary:focus-visible {
  outline: 0;
  color: var(--color-graphite);
  border-color: var(--color-white);
  background: var(--color-white);
  box-shadow: inset 0 0 0 3px var(--color-white), inset 0 0 0 6px var(--color-graphite);
}

.asset-status {
  position: absolute;
  right: 0;
  bottom: var(--space-5);
  max-width: 560px;
  margin: 0;
  padding: 9px 12px;
  color: var(--color-white);
  border-left: 2px solid var(--color-teal-brand);
  background: rgba(32, 36, 42, 0.92);
  font-size: var(--type-small);
  line-height: 1.5;
}

.asset-status span {
  margin-right: var(--space-2);
  color: var(--color-white);
  font-weight: 700;
}

.content-section {
  background: var(--color-white);
}

.content-section:nth-of-type(even) {
  background: var(--color-paper);
}

.content-section__inner {
  width: min(var(--content-max), calc(100% - (var(--outer-padding) * 2)));
  margin: 0 auto;
  padding: var(--section-gap) 0;
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(48px, 7vw, 112px);
}

.section-heading h2 {
  max-width: 14ch;
}

.section-content > p {
  margin-top: 0;
  margin-bottom: var(--space-5);
}

.section-content > p:first-child {
  font-size: var(--type-lead);
  line-height: 1.5;
}

.content-section--proof {
  color: var(--color-white);
  background: var(--color-graphite) !important;
}

.content-section--proof .eyebrow,
.content-section--boundary .eyebrow {
  color: var(--color-teal-brand);
}

.content-section--boundary {
  color: var(--color-white);
  background: var(--color-graphite) !important;
}

.content-section--proof a,
.content-section--boundary a {
  color: var(--color-link-on-dark);
}

.content-section--proof a:hover,
.content-section--boundary a:hover {
  color: var(--color-link-on-dark-hover);
}

.content-section--proof a:focus-visible,
.content-section--boundary a:focus-visible {
  color: var(--color-link-on-dark-focus);
  outline-color: var(--color-link-on-dark-focus);
}

.content-section--proof a[aria-current="page"],
.content-section--proof a[data-selected="true"],
.content-section--boundary a[aria-current="page"],
.content-section--boundary a[data-selected="true"] {
  color: var(--color-link-on-dark-selected);
}

.content-section--proof a[aria-disabled="true"],
.content-section--boundary a[aria-disabled="true"] {
  color: var(--color-link-on-dark-disabled);
  cursor: not-allowed;
}

.content-section--status {
  border-top: 4px solid var(--color-warning);
  background: var(--color-mist) !important;
}

.content-section--status .eyebrow {
  color: var(--color-warning);
}

.content-section--closing {
  border-top: 2px solid var(--color-teal-action);
  background: var(--color-paper) !important;
}

.content-section--channel-field {
  position: relative;
  overflow: hidden;
  color: var(--color-white);
  background: var(--color-graphite) !important;
}

.content-section--channel-field::after {
  content: "";
  position: absolute;
  right: max(var(--outer-padding), calc((100% - var(--content-max)) / 2));
  bottom: 0;
  width: min(34vw, 420px);
  height: 4px;
  background: var(--color-teal-brand);
}

.content-section--channel-field .eyebrow,
.content-section--channel-field .record__index {
  color: var(--color-teal-brand);
}

.content-section--channel-field .record,
.content-section--channel-field .record-list {
  border-color: rgba(255, 255, 255, 0.34);
}

.content-section--channel-field a {
  color: var(--color-white);
}

blockquote {
  max-width: var(--measure-body);
  margin: 0 0 var(--space-6);
  padding: var(--space-4) 0 var(--space-4) var(--space-5);
  border-left: 3px solid var(--color-teal-action);
  font-size: var(--type-lead);
  line-height: 1.5;
}

.content-section--boundary blockquote,
.content-section--channel-field blockquote {
  border-left-color: var(--color-teal-brand);
}

.content-emphasis {
  color: var(--color-graphite);
  font-size: var(--type-h4);
  font-weight: 600;
  line-height: 1.35;
}

.content-section--boundary .content-emphasis,
.content-section--channel-field .content-emphasis {
  color: var(--color-white);
}

.content-label {
  margin: var(--space-6) 0 var(--space-3);
  color: var(--color-muted);
  font-size: var(--type-label);
  font-weight: 700;
  text-transform: uppercase;
}

.content-section--status .content-label {
  color: var(--color-muted-on-mist);
}

code {
  padding: 0.08em 0.3em;
  border: 1px solid var(--color-divider);
  border-radius: 3px;
  background: var(--color-mist);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.88em;
}

.content-list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: var(--rule-default) solid var(--color-graphite);
}

.content-list li {
  position: relative;
  min-height: 58px;
  padding: 15px 8px 15px 36px;
  border-bottom: var(--rule-default) solid var(--color-divider);
}

.content-list li::before {
  content: "";
  position: absolute;
  top: 24px;
  left: 4px;
  width: 10px;
  height: 2px;
  background: var(--color-teal-action);
}

.content-list li a {
  min-height: var(--target-min);
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
}

.record-list {
  border-top: var(--rule-default) solid currentColor;
}

.record {
  min-height: 144px;
  padding: var(--space-6) 0;
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  gap: var(--space-5);
  border-bottom: var(--rule-default) solid var(--color-divider);
}

.record__index {
  margin: 3px 0 0;
  color: var(--color-teal-action);
  font-size: var(--type-label);
  font-weight: 700;
}

.record__body p {
  margin: 0 0 var(--space-4);
}

.record__state {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  color: var(--color-muted);
  font-size: var(--type-small);
}

.record__state span {
  color: var(--color-warning);
}

.section-links {
  margin-top: var(--space-6);
}

.site-footer {
  color: var(--color-white);
  background: var(--color-graphite);
}

.site-footer__inner {
  width: min(var(--content-max), calc(100% - (var(--outer-padding) * 2)));
  margin: 0 auto;
  padding: var(--space-10) 0 var(--space-6);
  display: grid;
  grid-template-columns: minmax(220px, 0.65fr) minmax(0, 2.35fr);
  gap: var(--space-9);
}

.footer-logo {
  width: 184px;
  display: inline-block;
  color: var(--color-white);
  text-decoration: none;
}

.footer-logo img {
  width: 100%;
  height: auto;
  display: block;
}

.footer-brand p {
  max-width: 30ch;
  margin: var(--space-5) 0 0;
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-content: start;
  gap: var(--space-7) var(--space-5);
}

.footer-nav__heading {
  margin: 0 0 var(--space-3);
  color: var(--color-white);
  font-size: var(--type-small);
  font-weight: 700;
  text-transform: uppercase;
}

.footer-nav__links {
  display: grid;
  gap: var(--space-1);
}

.footer-nav a {
  min-height: var(--target-min);
  display: inline-flex;
  align-items: center;
  color: var(--color-white);
}

.footer-nav a:focus-visible,
.operator-disclosure a:focus-visible {
  outline-color: var(--color-white);
}

.operator-disclosure {
  max-width: none;
  margin: 0;
  padding-top: var(--space-5);
  grid-column: 1 / -1;
  border-top: var(--rule-default) solid rgba(255, 255, 255, 0.28);
  color: var(--color-white);
  font-size: 14px;
  line-height: 1.5;
}

.operator-disclosure a {
  min-height: var(--target-min);
  padding: 10px 0;
  display: inline-flex;
  align-items: center;
  color: var(--color-white);
}

.footer-meta {
  padding-top: var(--space-5);
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: var(--space-4);
  color: var(--color-white);
  font-size: var(--type-small);
}

.error-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  background: var(--color-paper);
}

.error-state {
  width: min(680px, calc(100% - 40px));
  padding: var(--space-9) 0;
}

.error-logo {
  width: min(360px, 100%);
  margin-bottom: var(--space-7);
  display: inline-block;
  text-decoration: none;
}

.error-logo img {
  width: 100%;
  height: auto;
  display: block;
}

.content-emphasis a {
  overflow-wrap: anywhere;
}

@media (max-width: 1180px) {
  .site-nav {
    gap: 14px;
  }

  .site-nav__link {
    font-size: 12px;
  }
}

@media (max-width: 899px) {
  .brand {
    width: 212px;
    min-width: 212px;
  }

  .brand__horizontal {
    width: 212px;
  }

  .menu-button {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    height: auto;
    padding: var(--space-4) var(--outer-padding) var(--space-5);
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border-bottom: var(--rule-default) solid var(--color-divider);
    background: var(--color-white);
  }

  .site-nav[data-open] {
    display: flex;
  }

  .site-nav__link {
    min-height: 52px;
    font-size: 16px;
    border-bottom: var(--rule-default) solid var(--color-divider);
  }

  .site-nav__link--command {
    justify-content: space-between;
  }

  .site-nav__link::after {
    width: 28px;
    right: auto;
  }

  .content-section__inner {
    grid-template-columns: 1fr;
    gap: var(--space-7);
  }

  .section-heading h2 {
    max-width: 18ch;
  }
}

@media (max-width: 767px) {
  .private-notice {
    min-height: 42px;
    padding-top: 8px;
    padding-bottom: 8px;
  }

  .brand {
    width: 184px;
    min-width: 184px;
    justify-content: flex-start;
  }

  .brand__horizontal {
    width: 184px;
  }

  .page-hero__inner {
    min-height: 430px;
    padding: var(--space-9) 0 var(--space-10);
  }

  .page-hero--evidence,
  .page-hero--channel,
  .page-hero--evidence .page-hero__inner,
  .page-hero--channel .page-hero__inner {
    min-height: min(600px, calc(76svh - var(--header-height)));
  }

  .page-hero--evidence .page-hero__inner,
  .page-hero--channel .page-hero__inner {
    padding-top: var(--space-8);
    padding-bottom: var(--space-10);
  }

  .hero-media--evidence img {
    object-position: 62% center;
  }

  .hero-media--channel img {
    object-position: 64% center;
  }

  .page-hero--document .page-hero__inner {
    min-height: 390px;
  }

  .page-hero__lead {
    margin-bottom: var(--space-5);
  }

  .asset-status {
    right: 0;
    bottom: var(--space-4);
    left: 0;
    max-width: none;
  }

  .record {
    grid-template-columns: 40px minmax(0, 1fr);
    gap: var(--space-4);
  }

  .site-footer__inner {
    padding-top: var(--space-9);
    grid-template-columns: 1fr;
    gap: var(--space-7);
  }

  .operator-disclosure,
  .footer-meta {
    grid-column: 1;
  }

  .footer-nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--space-7) var(--space-5);
  }

  .footer-nav a {
    border-bottom: var(--rule-default) solid rgba(255, 255, 255, 0.22);
  }

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

@media (max-width: 439px) {
  .footer-nav {
    grid-template-columns: 1fr;
  }

  .command-row,
  .section-links {
    align-items: stretch;
    flex-direction: column;
  }

  .content-link--primary,
  .content-link--secondary,
  .content-link--image-primary,
  .content-link--image-secondary {
    width: 100%;
    justify-content: space-between;
  }
}

@media (max-width: 359px) {
  .brand {
    width: 88px;
    min-width: 88px;
    justify-content: center;
  }

  .brand__horizontal {
    display: none;
  }

  .brand__stacked {
    width: 88px;
    height: auto;
    display: block;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0s !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0s !important;
  }
}
