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

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

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

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

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

@font-face {
  font-family: "Roboto Condensed";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("/assets/roboto-condensed-700.ttf") format("truetype");
}

@font-face {
  font-family: "Roboto Condensed";
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url("/assets/roboto-condensed-800.ttf") format("truetype");
}

:root {
  --page: #ffffff;
  --surface: #f5f6f8;
  --ink: #07143a;
  --ink-soft: #33405f;
  --muted: #697188;
  --honey: #ffb800;
  --honey-text: #8c5a00;
  --honey-soft: #fff4cc;
  --cobalt: #0969ee;
  --cobalt-dark: #0756c5;
  --cobalt-soft: #eaf3ff;
  --success: #187b4a;
  --error: #c94332;
  --divider: #e3e5ea;
  --divider-strong: #c9cdd6;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --wrap: 1180px;
  color-scheme: light;
  font-family: "Manrope", system-ui, sans-serif;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  background: var(--page);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.65;
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 0.2em;
}

a:hover {
  text-decoration-thickness: 2px;
}

:focus-visible {
  outline: 3px solid var(--cobalt);
  outline-offset: 4px;
}

::selection {
  background: var(--honey);
  color: var(--ink);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: "Roboto Condensed", "Arial Narrow", sans-serif;
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 0.98;
}

h1 {
  font-size: clamp(3.4rem, 8vw, 7.5rem);
}

h2 {
  font-size: clamp(2.1rem, 4vw, 3.8rem);
}

.wrap {
  width: min(calc(100% - 40px), var(--wrap));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 16px;
  left: 16px;
  padding: 12px 16px;
  transform: translateY(-160%);
  border-radius: var(--radius-sm);
  background: var(--ink);
  color: var(--page);
  font-weight: 800;
}

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

.site-header {
  position: relative;
  z-index: 10;
  border-bottom: 1px solid var(--divider-strong);
  background: var(--page);
}

.draft-banner {
  border-bottom: 1px solid #d89b00;
  background: var(--honey-soft);
  color: var(--ink);
  font-size: 0.9rem;
}

.draft-banner .wrap {
  padding-block: 10px;
}

.site-header__inner {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 11px;
  color: var(--ink);
  text-decoration: none;
}

.brand__name {
  font-family: "Roboto Condensed", "Arial Narrow", sans-serif;
  font-size: 1.45rem;
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1;
  text-transform: uppercase;
}

.brand__mark {
  width: 19px;
  height: 19px;
  background: var(--cobalt);
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 4vw, 40px);
  font-size: 0.92rem;
  font-weight: 800;
}

.primary-nav a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  text-decoration: none;
}

.primary-nav a:hover {
  color: var(--cobalt-dark);
}

.eyebrow {
  margin-bottom: 14px;
  color: var(--honey-text);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  line-height: 1.35;
  text-transform: uppercase;
}

.eyebrow--light {
  color: var(--cobalt-soft);
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 13px 22px;
  border: 2px solid transparent;
  border-radius: var(--radius-sm);
  font-weight: 800;
  line-height: 1.25;
  text-decoration: none;
}

.button--primary {
  background: var(--cobalt);
  color: var(--page);
}

.button--primary:hover {
  background: var(--cobalt-dark);
}

.button--light {
  border-color: var(--page);
  background: var(--page);
  color: var(--cobalt-dark);
}

.button--light:hover {
  border-color: var(--honey);
  background: var(--honey);
  color: var(--ink);
}

.marker {
  display: inline-block;
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  background: currentColor;
  color: var(--cobalt);
}

.marker--hexagon {
  clip-path: polygon(25% 6.7%, 75% 6.7%, 100% 50%, 75% 93.3%, 25% 93.3%, 0 50%);
}

.marker--diamond {
  clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%);
}

.marker--circle {
  border-radius: 50%;
}

.marker--triangle {
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
}

.marker--star {
  clip-path: polygon(
    50% 0,
    61% 35%,
    98% 35%,
    68% 57%,
    79% 93%,
    50% 72%,
    21% 93%,
    32% 57%,
    2% 35%,
    39% 35%
  );
}

.marker-rail {
  display: flex;
  width: min(100%, 380px);
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 30px;
  border-top: 4px solid var(--ink);
}

.marker-rail .marker {
  color: var(--ink);
}

.marker-rail .marker:nth-child(1) {
  width: 23px;
  height: 23px;
}

.marker-rail .marker:nth-child(2) {
  color: var(--cobalt);
}

.marker-rail .marker:nth-child(3) {
  width: 14px;
  height: 14px;
}

.marker-rail .marker:nth-child(4) {
  width: 21px;
  height: 21px;
}

.marker-rail .marker:nth-child(5) {
  color: var(--cobalt);
}

.hero {
  overflow: hidden;
  border-bottom: 1px solid var(--divider-strong);
  background: var(--honey);
}

.hero__inner {
  display: grid;
  min-height: 680px;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  align-items: center;
  gap: clamp(48px, 8vw, 110px);
  padding-block: clamp(64px, 9vw, 112px);
}

.hero__copy {
  position: relative;
  z-index: 1;
}

.hero h1 {
  max-width: 760px;
  margin-bottom: 26px;
}

.hero__lead {
  max-width: 610px;
  margin-bottom: 32px;
  color: var(--ink-soft);
  font-size: clamp(1.08rem, 2vw, 1.3rem);
  font-weight: 600;
  line-height: 1.55;
}

.hero .marker-rail {
  margin-top: 68px;
}

.hero__art {
  display: flex;
  justify-content: flex-end;
}

.hero__art img {
  width: min(100%, 430px);
  height: auto;
  border: 4px solid var(--ink);
  border-radius: var(--radius-lg);
  background: var(--honey);
}

.policy-index {
  padding-block: clamp(76px, 10vw, 132px);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.52fr);
  column-gap: clamp(50px, 10vw, 150px);
  margin-bottom: 52px;
}

.section-heading .eyebrow {
  grid-column: 1 / -1;
}

.section-heading h2 {
  max-width: 700px;
  margin-bottom: 0;
}

.section-heading > p:last-child {
  align-self: end;
  margin-bottom: 5px;
  color: var(--ink-soft);
  font-size: 1.04rem;
}

.policy-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 2px solid var(--ink);
}

.policy-row {
  display: grid;
  min-height: 154px;
  grid-template-columns: 28px 1fr 28px;
  align-items: center;
  gap: 18px;
  padding: 28px 26px 28px 0;
  border-bottom: 1px solid var(--divider-strong);
  color: var(--ink);
  text-decoration: none;
}

.policy-row:nth-child(odd) {
  padding-right: 42px;
  border-right: 1px solid var(--divider-strong);
}

.policy-row:nth-child(even) {
  padding-left: 42px;
}

.policy-row:hover,
.policy-row:focus-visible {
  background: var(--cobalt-soft);
}

.policy-row__marker {
  display: flex;
  align-items: center;
  justify-content: center;
}

.policy-row__copy {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.policy-row__copy strong {
  font-family: "Roboto Condensed", "Arial Narrow", sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: -0.015em;
  line-height: 1.1;
}

.policy-row__copy span {
  color: var(--muted);
  font-size: 0.91rem;
  line-height: 1.55;
}

.policy-row__arrow {
  color: var(--cobalt-dark);
  font-size: 1.45rem;
  font-weight: 800;
}

.plain-language {
  display: grid;
  grid-template-columns: minmax(190px, 0.45fr) minmax(0, 1fr);
  gap: clamp(44px, 10vw, 150px);
  padding-block: clamp(64px, 8vw, 100px);
  border-top: 2px solid var(--ink);
}

.plain-language__label {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.plain-language__label .marker {
  width: 22px;
  height: 22px;
}

.plain-language__label .eyebrow {
  margin-top: 3px;
}

.plain-language h2 {
  max-width: 700px;
  margin-bottom: 24px;
}

.plain-language > div:last-child p {
  max-width: 700px;
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 1.1rem;
}

.support-band {
  background: var(--cobalt-dark);
  color: var(--page);
}

.support-band__inner {
  display: flex;
  min-height: 258px;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  padding-block: 54px;
}

.support-band h2 {
  max-width: 720px;
  margin-bottom: 0;
  font-size: clamp(2rem, 4vw, 3.5rem);
}

.site-footer {
  border-top: 1px solid var(--divider-strong);
  background: var(--ink);
  color: var(--page);
}

.site-footer__inner {
  display: grid;
  grid-template-columns: 1fr 1.35fr 0.8fr;
  gap: clamp(36px, 7vw, 90px);
  padding-block: 62px 72px;
}

.brand--footer {
  color: var(--page);
}

.brand--footer .brand__mark {
  background: var(--honey);
}

.site-footer__brand p {
  margin: 12px 0 0;
  color: var(--divider-strong);
  font-size: 0.9rem;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 28px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links a {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  color: var(--divider);
  font-size: 0.9rem;
  font-weight: 600;
}

.site-footer__meta {
  color: var(--divider-strong);
  font-size: 0.82rem;
}

.site-footer__meta p {
  margin-bottom: 8px;
}

.site-footer__meta a {
  display: inline-block;
  margin-bottom: 8px;
  overflow-wrap: anywhere;
  color: var(--page);
}

.document-hero {
  border-bottom: 1px solid var(--divider-strong);
  background: var(--honey-soft);
}

.document-hero__inner {
  padding-block: 32px clamp(66px, 9vw, 112px);
}

.breadcrumb {
  display: flex;
  min-height: 44px;
  align-items: center;
  gap: 10px;
  margin-bottom: 48px;
  color: var(--ink-soft);
  font-size: 0.85rem;
  font-weight: 700;
}

.breadcrumb a {
  color: var(--cobalt-dark);
}

.document-hero .marker-rail {
  width: 210px;
  margin-bottom: 38px;
  padding-top: 18px;
  border-width: 3px;
}

.document-hero .marker-rail .marker {
  width: 12px;
  height: 12px;
}

.document-hero .marker-rail .marker:nth-child(1) {
  width: 16px;
  height: 16px;
}

.document-hero .marker-rail .marker:nth-child(3) {
  width: 10px;
  height: 10px;
}

.document-hero .marker-rail .marker:nth-child(4) {
  width: 15px;
  height: 15px;
}

.document-hero h1 {
  max-width: 960px;
  margin-bottom: 26px;
  font-size: clamp(3.5rem, 8.5vw, 7.4rem);
}

.document-hero__summary {
  max-width: 760px;
  margin-bottom: 46px;
  color: var(--ink-soft);
  font-size: clamp(1.08rem, 2vw, 1.25rem);
  font-weight: 600;
}

.document-meta {
  display: flex;
  max-width: 840px;
  margin: 0;
  border-top: 1px solid var(--honey-text);
  border-bottom: 1px solid var(--honey-text);
}

.document-meta > div {
  flex: 1 1 0;
  padding: 17px 24px 18px 0;
}

.document-meta > div + div {
  padding-left: 24px;
  border-left: 1px solid rgba(140, 90, 0, 0.5);
}

.document-meta dt {
  color: var(--honey-text);
  font-size: 0.69rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.document-meta dd {
  margin: 3px 0 0;
  font-size: 0.92rem;
  font-weight: 800;
}

.legal-layout {
  display: grid;
  grid-template-columns: minmax(190px, 0.32fr) minmax(0, 1fr);
  gap: clamp(60px, 11vw, 150px);
  align-items: start;
  padding-block: clamp(72px, 10vw, 132px);
}

.toc {
  position: sticky;
  top: 28px;
  padding-top: 4px;
}

.toc__title {
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--ink);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.toc ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

.toc li {
  border-bottom: 1px solid var(--divider);
}

.toc a {
  display: flex;
  min-height: 44px;
  align-items: center;
  padding-block: 9px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.35;
  text-decoration: none;
}

.toc a:hover {
  color: var(--cobalt-dark);
}

.legal-document {
  width: min(100%, 760px);
}

.legal-section {
  scroll-margin-top: 28px;
  padding-bottom: 48px;
}

.legal-section + .legal-section {
  padding-top: 52px;
  border-top: 1px solid var(--divider-strong);
}

.legal-section h2 {
  margin-bottom: 24px;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.04;
}

.legal-section p,
.legal-section li {
  color: var(--ink-soft);
  font-size: 1rem;
}

.legal-section p {
  margin-bottom: 19px;
}

.legal-section ul {
  margin: 2px 0 0;
  padding-left: 26px;
}

.legal-section li {
  margin-bottom: 12px;
  padding-left: 5px;
}

.legal-section li::marker {
  color: var(--cobalt);
}

.document-switcher {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 26px;
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
}

.document-switcher a {
  display: flex;
  min-height: 104px;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  padding: 22px 24px 22px 0;
  text-decoration: none;
}

.document-switcher a + a {
  align-items: flex-end;
  padding-right: 0;
  padding-left: 24px;
  border-left: 1px solid var(--divider-strong);
  text-align: right;
}

.document-switcher a:hover {
  background: var(--cobalt-soft);
}

.document-switcher span {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.document-switcher strong {
  color: var(--cobalt-dark);
  font-size: 0.95rem;
}

.error-page {
  display: flex;
  min-height: 650px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding-block: 80px;
}

.error-page .marker-rail {
  margin-bottom: 45px;
}

.error-page h1 {
  max-width: 900px;
  margin-bottom: 24px;
}

.error-page > p:not(.eyebrow) {
  max-width: 600px;
  margin-bottom: 30px;
  color: var(--ink-soft);
  font-size: 1.1rem;
}

@media (max-width: 900px) {
  .hero__inner {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 54px;
  }

  .hero__art {
    justify-content: flex-start;
  }

  .hero__art img {
    width: min(72vw, 420px);
  }

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

  .section-heading h2 {
    margin-bottom: 22px;
  }

  .policy-list {
    grid-template-columns: 1fr;
  }

  .policy-row:nth-child(odd),
  .policy-row:nth-child(even) {
    padding-right: 24px;
    padding-left: 0;
    border-right: 0;
  }

  .site-footer__inner {
    grid-template-columns: 1fr 1.5fr;
  }

  .site-footer__meta {
    grid-column: 1 / -1;
    padding-top: 28px;
    border-top: 1px solid var(--ink-soft);
  }

  .legal-layout {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .toc {
    position: static;
  }

  .toc ol {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 28px;
  }

  .legal-document {
    width: 100%;
  }
}

@media (max-width: 620px) {
  html {
    scroll-behavior: auto;
  }

  .wrap {
    width: min(calc(100% - 32px), var(--wrap));
  }

  .site-header__inner {
    min-height: 68px;
  }

  .brand__name {
    font-size: 1.18rem;
  }

  .brand__mark {
    width: 16px;
    height: 16px;
  }

  .primary-nav {
    gap: 15px;
    font-size: 0.8rem;
  }

  .hero__inner {
    padding-block: 56px 68px;
  }

  .hero h1,
  .document-hero h1,
  .error-page h1 {
    font-size: clamp(3.1rem, 17vw, 5.2rem);
  }

  .hero .marker-rail {
    margin-top: 52px;
  }

  .marker-rail {
    width: 100%;
  }

  .hero__art img {
    width: min(88vw, 400px);
  }

  .policy-row {
    min-height: 142px;
    grid-template-columns: 24px 1fr 22px;
    gap: 13px;
  }

  .policy-row__copy strong {
    font-size: 1.25rem;
  }

  .plain-language {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .support-band__inner {
    min-height: 300px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 28px;
  }

  .button {
    width: 100%;
  }

  .site-footer__inner {
    grid-template-columns: 1fr;
  }

  .footer-links {
    grid-template-columns: 1fr 1fr;
  }

  .site-footer__meta {
    grid-column: auto;
  }

  .document-hero__inner {
    padding-bottom: 66px;
  }

  .breadcrumb {
    margin-bottom: 34px;
  }

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

  .document-meta > div {
    padding: 14px 0;
  }

  .document-meta > div + div {
    padding-left: 0;
    border-top: 1px solid rgba(140, 90, 0, 0.5);
    border-left: 0;
  }

  .toc ol {
    grid-template-columns: 1fr;
  }

  .document-switcher {
    grid-template-columns: 1fr;
  }

  .document-switcher a,
  .document-switcher a + a {
    min-height: 92px;
    align-items: flex-start;
    padding: 20px 0;
    border-left: 0;
    text-align: left;
  }

  .document-switcher a + a {
    border-top: 1px solid var(--divider-strong);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

@media print {
  .site-header,
  .site-footer,
  .support-band,
  .toc,
  .breadcrumb,
  .document-switcher,
  .skip-link,
  .marker-rail {
    display: none !important;
  }

  body {
    color: #000;
    font-size: 11pt;
  }

  .document-hero {
    border: 0;
    background: #fff;
  }

  .document-hero__inner,
  .legal-layout {
    width: 100%;
    padding: 0;
  }

  .document-hero h1 {
    font-size: 36pt;
  }

  .legal-layout {
    display: block;
  }

  .legal-document {
    width: 100%;
  }

  .legal-section {
    break-inside: avoid;
  }
}
