@font-face {
  font-family: "Newsreader";
  font-style: normal;
  font-display: swap;
  font-weight: 400;
  src: url("../fonts/newsreader-latin-400-normal.woff2") format("woff2");
}

@font-face {
  font-family: "Instrument Sans";
  font-style: normal;
  font-display: swap;
  font-weight: 400;
  src: url("../fonts/instrument-sans-latin-400-normal.woff2") format("woff2");
}

@font-face {
  font-family: "Instrument Sans";
  font-style: normal;
  font-display: swap;
  font-weight: 500;
  src: url("../fonts/instrument-sans-latin-500-normal.woff2") format("woff2");
}

@font-face {
  font-family: "Instrument Sans";
  font-style: normal;
  font-display: swap;
  font-weight: 600;
  src: url("../fonts/instrument-sans-latin-600-normal.woff2") format("woff2");
}

@font-face {
  font-family: "IBM Plex Mono";
  font-style: normal;
  font-display: swap;
  font-weight: 400;
  src: url("../fonts/ibm-plex-mono-latin-400-normal.woff2") format("woff2");
}

@font-face {
  font-family: "IBM Plex Mono";
  font-style: normal;
  font-display: swap;
  font-weight: 500;
  src: url("../fonts/ibm-plex-mono-latin-500-normal.woff2") format("woff2");
}

:root {
  --paper: #f3f0e8;
  --paper-secondary: #eae5db;
  --ink: #171715;
  --muted: #68635c;
  --rule: #d4ccc0;
  --accent: #762f36;
  --accent-dark: #5d242b;
  --page-padding: clamp(1.25rem, 4vw, 4rem);
  --page-width: 80rem;
  --heading: "Newsreader", Iowan Old Style, Baskerville, Georgia, serif;
  --sans: "Instrument Sans", "Helvetica Neue", Arial, sans-serif;
  --mono: "IBM Plex Mono", "SFMono-Regular", Consolas, monospace;
}

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

html {
  min-width: 20rem;
  color-scheme: light;
  background: var(--paper);
  scroll-behavior: smooth;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  min-width: 20rem;
  min-height: 100vh;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 1rem;
  font-synthesis: none;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

::selection {
  color: var(--paper);
  background: var(--accent);
}

a {
  color: inherit;
  text-decoration-color: var(--accent);
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.2em;
}

a:hover {
  color: var(--accent-dark);
}

a:focus-visible {
  outline: 0.1875rem solid var(--accent);
  outline-offset: 0.25rem;
  border-radius: 0.0625rem;
}

p,
h1,
h2,
dl,
dd,
address {
  margin: 0;
}

address {
  font-style: normal;
}

address span {
  display: block;
}

.page-frame {
  width: min(100%, calc(var(--page-width) + (var(--page-padding) * 2)));
  margin-inline: auto;
  padding-inline: var(--page-padding);
}

.visually-hidden {
  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;
  z-index: 100;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.75rem 1rem;
  color: var(--paper);
  background: var(--ink);
  font-weight: 600;
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

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

.review-notice {
  display: flex;
  min-height: 2rem;
  align-items: center;
  justify-content: center;
  padding: 0.35rem var(--page-padding);
  border-bottom: 1px solid var(--accent);
  color: var(--paper);
  background: var(--accent-dark);
  font-family: var(--mono);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.045em;
  line-height: 1.35;
  text-align: center;
  text-transform: uppercase;
}

.site-header {
  display: grid;
  grid-template-columns: minmax(9rem, 1fr) auto;
  gap: 2rem;
  align-items: center;
  min-height: 6.25rem;
  border-bottom: 1px solid var(--rule);
}

.site-header > * {
  min-width: 0;
}

.site-name {
  width: max-content;
  font-family: var(--heading);
  font-size: 1.35rem;
  line-height: 1;
  text-decoration: none;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  max-width: 100%;
  gap: 0.25rem clamp(1rem, 2.5vw, 2.5rem);
  align-items: center;
  justify-content: flex-end;
}

.site-nav a {
  display: inline-flex;
  min-height: 2.75rem;
  align-items: center;
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
}

.site-nav .header-email {
  position: relative;
  padding-inline: 0.25rem;
  color: var(--accent);
}

.header-email::after {
  position: absolute;
  right: 0;
  bottom: 0.55rem;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0.28);
  transform-origin: left;
  transition: transform 220ms ease;
}

.header-email:hover::after,
.header-email:focus-visible::after {
  transform: scaleX(1);
}

.eyebrow,
.section-number,
.ledger dt,
.effective-date span {
  font-family: var(--mono);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.095em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow {
  color: var(--muted);
}

.eyebrow span {
  display: inline-block;
  min-width: 2.5rem;
  color: var(--accent);
}

.home-hero {
  display: grid;
  grid-template-columns: minmax(6rem, 0.55fr) minmax(0, 4.45fr);
  grid-template-rows: auto auto 1fr;
  min-height: clamp(40rem, calc(100svh - 6.25rem), 56rem);
  padding-top: clamp(3.5rem, 8vh, 6.75rem);
  padding-bottom: clamp(3.5rem, 8vh, 6.5rem);
}

.hero-rule {
  grid-column: 1 / -1;
  width: 100%;
  height: 1px;
  margin-bottom: clamp(2rem, 5vh, 4rem);
  background: linear-gradient(to right, var(--accent) 0 9%, var(--rule) 9% 100%);
  transform-origin: left;
  animation: reveal-rule 360ms ease-out both;
}

.hero-eyebrow {
  grid-column: 1;
  padding-top: 0.8rem;
  animation: reveal-copy 300ms 40ms ease-out both;
}

.hero-statement {
  display: grid;
  grid-column: 2;
  grid-template-rows: auto 1fr;
  gap: clamp(2.75rem, 7vh, 5.25rem);
}

.hero-statement h1,
.inner-header h1,
.not-found h1 {
  max-width: 12.5ch;
  font-family: var(--heading);
  font-size: clamp(3.2rem, 7.5vw, 7.4rem);
  font-weight: 400;
  letter-spacing: -0.046em;
  line-height: 0.93;
  text-wrap: balance;
}

.hero-statement h1 {
  animation: reveal-copy 340ms 80ms ease-out both;
}

.hero-detail {
  display: grid;
  grid-template-columns: minmax(18rem, 33rem) auto;
  gap: clamp(2rem, 7vw, 7rem);
  align-items: end;
  align-self: end;
  animation: reveal-copy 340ms 140ms ease-out both;
}

.hero-supporting,
.inner-intro {
  color: var(--muted);
  font-size: clamp(1.1rem, 1.5vw, 1.34rem);
  line-height: 1.5;
}

.hero-action-group,
.preference-action-block {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  align-items: flex-start;
}

.primary-action,
.secondary-action {
  display: inline-flex;
  min-height: 3rem;
  gap: 1.75rem;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1rem;
  border: 1px solid var(--accent);
  color: var(--paper);
  background: var(--accent);
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  transition:
    color 180ms ease,
    background-color 180ms ease,
    transform 180ms ease;
}

.primary-action:hover,
.primary-action:focus-visible {
  color: var(--paper);
  background: var(--accent-dark);
  transform: translateY(-0.125rem);
}

.secondary-action {
  color: var(--ink);
  background: transparent;
  border-color: var(--ink);
}

.secondary-action:hover,
.secondary-action:focus-visible {
  color: var(--paper);
  background: var(--ink);
  transform: translateY(-0.125rem);
}

.visible-email {
  display: inline-block;
  max-width: 100%;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.75rem;
  overflow-wrap: anywhere;
}

.ledger {
  padding-bottom: clamp(4rem, 9vw, 7rem);
}

.ledger-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--rule);
}

.ledger-grid > div {
  display: grid;
  min-height: 8.75rem;
  grid-template-rows: auto 1fr;
  gap: 2rem;
  padding: 1.25rem clamp(1rem, 2.25vw, 2rem) 1.5rem 0;
  border-right: 1px solid var(--rule);
}

.ledger-grid > div:not(:first-child) {
  padding-left: clamp(1rem, 2.25vw, 2rem);
}

.ledger-grid > div:last-child {
  border-right: 0;
}

.ledger dt {
  color: var(--muted);
}

.ledger dd {
  align-self: end;
  max-width: 22rem;
  font-size: 0.96rem;
  font-weight: 500;
  line-height: 1.4;
  overflow-wrap: anywhere;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr auto;
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: start;
  padding-top: 2rem;
  padding-bottom: 2.5rem;
  border-top: 1px solid var(--ink);
  color: var(--muted);
  font-size: 0.75rem;
}

.footer-identity p:first-child {
  color: var(--ink);
  font-family: var(--heading);
  font-size: 1rem;
}

.footer-contact,
.footer-identity,
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.footer-contact a,
.footer-contact address {
  overflow-wrap: anywhere;
}

.footer-nav a {
  width: max-content;
  max-width: 100%;
}

.footer-year {
  font-family: var(--mono);
  white-space: nowrap;
}

.inner-page {
  padding-top: clamp(4rem, 10vw, 8.5rem);
  padding-bottom: clamp(5rem, 11vw, 9rem);
}

.inner-header {
  width: min(100%, 61rem);
  margin-left: clamp(0rem, 8vw, 7rem);
}

.inner-header .eyebrow {
  margin-bottom: clamp(2rem, 5vw, 3.75rem);
}

.inner-header h1 {
  max-width: 10ch;
  font-size: clamp(3.2rem, 7.2vw, 6.8rem);
}

.inner-intro {
  max-width: 45rem;
  margin-top: clamp(2.5rem, 5vw, 4.5rem);
}

.effective-date {
  display: grid;
  max-width: 45rem;
  grid-template-columns: 8.5rem 1fr;
  gap: 1.5rem;
  margin-top: 2.25rem;
  padding-top: 1rem;
  border-top: 1px solid var(--rule);
  color: var(--muted);
  font-size: 0.875rem;
}

.effective-date span {
  color: var(--ink);
}

.legal-sections {
  width: min(100%, 58rem);
  margin-top: clamp(5rem, 11vw, 9rem);
  margin-left: clamp(0rem, 14vw, 12rem);
  counter-reset: section;
}

.legal-sections section {
  display: grid;
  grid-template-columns: 3rem minmax(0, 1fr);
  gap: clamp(1rem, 3vw, 3rem);
  padding: clamp(2rem, 5vw, 3.5rem) 0;
  border-top: 1px solid var(--rule);
  break-inside: avoid;
}

.legal-sections section:last-child {
  border-bottom: 1px solid var(--rule);
}

.section-number {
  padding-top: 0.3rem;
  color: var(--accent);
}

.legal-sections h2,
.guidance h2,
.concern-block h2 {
  margin: 0 0 1.25rem;
  font-family: var(--heading);
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.05;
}

.legal-sections section > div {
  min-width: 0;
  max-width: 70ch;
}

.legal-sections section p,
.legal-sections section address {
  color: var(--muted);
}

.legal-sections section p + p,
.legal-sections section p + address,
.legal-sections section address + p {
  margin-top: 1rem;
}

.legal-sections section a {
  color: var(--ink);
  overflow-wrap: anywhere;
}

.legal-sections code {
  color: var(--ink);
  font-family: var(--mono);
  font-size: 0.86em;
}

.fact-notice,
.fact-inline {
  color: var(--accent-dark) !important;
  font-family: var(--mono);
  font-size: 0.78rem;
  letter-spacing: 0.01em;
}

.fact-notice {
  padding: 0.9rem 1rem;
  border-left: 2px solid var(--accent);
  background: var(--paper-secondary);
}

.compact-page .inner-header h1 {
  max-width: 11ch;
  font-size: clamp(3.2rem, 7vw, 6.5rem);
}

.process-notice {
  width: min(100%, 45rem);
  margin-top: 3rem;
  margin-left: clamp(0rem, 8vw, 7rem);
  padding: 1rem 1.25rem;
  border-left: 2px solid var(--accent);
  color: var(--accent-dark);
  background: var(--paper-secondary);
  font-family: var(--mono);
  font-size: 0.78rem;
  line-height: 1.6;
}

.preference-action-block,
.guidance,
.preference-notes,
.concern-block {
  width: min(100%, 58rem);
  margin-left: clamp(0rem, 14vw, 12rem);
}

.preference-action-block {
  margin-top: clamp(4rem, 8vw, 6rem);
}

.guidance {
  display: grid;
  grid-template-columns: minmax(10rem, 0.8fr) minmax(0, 1.4fr);
  gap: clamp(2rem, 5vw, 5rem);
  margin-top: clamp(4rem, 8vw, 7rem);
  padding: clamp(2rem, 5vw, 3.5rem) 0;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--rule);
}

.guidance h2 {
  margin: 0;
}

.guidance ul {
  display: grid;
  gap: 1rem;
  margin: 0;
  padding: 0;
  color: var(--muted);
  list-style: none;
  counter-reset: guidance;
}

.guidance li {
  display: grid;
  grid-template-columns: 2rem minmax(0, 1fr);
  gap: 0.5rem;
  counter-increment: guidance;
}

.guidance li::before {
  color: var(--accent);
  font-family: var(--mono);
  font-size: 0.72rem;
  content: counter(guidance, decimal-leading-zero);
}

.preference-notes {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.5rem, 4vw, 4rem);
  margin-top: 2.5rem;
  color: var(--muted);
  font-size: 0.94rem;
}

.concern-block {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: end;
  margin-top: clamp(5rem, 10vw, 8rem);
  padding-top: clamp(2rem, 5vw, 3.5rem);
  border-top: 1px solid var(--ink);
}

.concern-block .eyebrow {
  margin-bottom: 1.2rem;
}

.concern-block h2 {
  max-width: 12ch;
  margin: 0;
}

.not-found {
  min-height: clamp(34rem, 68vh, 48rem);
  padding-top: clamp(4rem, 12vw, 9rem);
  padding-bottom: clamp(5rem, 12vw, 9rem);
}

.not-found h1 {
  max-width: 9ch;
  margin-top: clamp(2rem, 5vw, 4rem);
  font-size: clamp(3.3rem, 8vw, 7rem);
}

.not-found > p:not(.eyebrow) {
  max-width: 32rem;
  margin-top: 2.5rem;
  color: var(--muted);
  font-size: 1.15rem;
}

.not-found-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 3rem;
}

.partners-header h1 {
  max-width: 12ch;
  font-size: clamp(3.2rem, 7vw, 6.6rem);
}

.partners-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  align-items: center;
  margin-top: 2.5rem;
}

.partners-contact p {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.75rem;
}

.partners-sections {
  width: min(100%, 61rem);
  margin-top: clamp(5rem, 11vw, 9rem);
  margin-left: clamp(0rem, 12vw, 10rem);
}

.partners-sections section {
  display: grid;
  grid-template-columns: 3rem minmax(0, 1fr);
  gap: clamp(1rem, 3vw, 3rem);
  padding: clamp(2.25rem, 5vw, 3.75rem) 0;
  border-top: 1px solid var(--rule);
}

.partners-sections section:last-child {
  border-bottom: 1px solid var(--rule);
}

.partners-sections section > div {
  min-width: 0;
  max-width: 72ch;
}

.partners-sections h2 {
  margin: 0 0 1.25rem;
  font-family: var(--heading);
  font-size: clamp(1.9rem, 3.5vw, 2.75rem);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.05;
}

.partners-sections h3 {
  margin: 0 0 0.65rem;
  color: var(--ink);
  font-family: var(--mono);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.095em;
  line-height: 1.4;
  text-transform: uppercase;
}

.partners-sections section p,
.partners-sections li {
  color: var(--muted);
}

.partners-sections section p + p,
.partners-sections section p + ul,
.partners-sections section p + ol {
  margin-top: 1rem;
}

.partners-sections ul,
.partners-sections ol {
  display: grid;
  gap: 0.7rem;
  margin-bottom: 0;
  padding-left: 1.25rem;
}

.partners-sections li::marker {
  color: var(--accent);
  font-family: var(--mono);
}

.partners-sections a {
  color: var(--ink);
  overflow-wrap: anywhere;
}

.partner-links {
  list-style: none;
  padding-left: 0 !important;
}

.partner-links a {
  display: inline-flex;
  min-height: 2.75rem;
  align-items: center;
  padding: 0.6rem 0.8rem;
  border: 1px solid var(--rule);
  background: var(--paper-secondary);
  font-weight: 500;
  text-decoration-color: var(--accent);
}

.partners-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.5rem, 4vw, 4rem);
}

.fallback-page {
  min-height: clamp(34rem, 68vh, 48rem);
  padding-top: clamp(4rem, 10vw, 8.5rem);
  padding-bottom: clamp(5rem, 11vw, 9rem);
}

.fallback-page header,
.fallback-page .content-body {
  width: min(100%, 58rem);
  margin-left: clamp(0rem, 14vw, 12rem);
}

.fallback-page header {
  padding-bottom: clamp(2rem, 5vw, 3.5rem);
  border-bottom: 1px solid var(--rule);
}

.fallback-page h1 {
  max-width: 14ch;
  margin-top: clamp(2rem, 5vw, 3.75rem);
  font-family: var(--heading);
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 0.98;
  overflow-wrap: anywhere;
  text-wrap: balance;
}

.content-body {
  padding-top: clamp(2rem, 5vw, 3.5rem);
  color: var(--muted);
}

.content-body > * + * {
  margin-top: 1.25rem;
}

.content-body h2,
.content-body h3 {
  color: var(--ink);
  font-family: var(--heading);
  font-weight: 400;
  line-height: 1.1;
}

.content-body img,
.content-body video,
.content-body iframe {
  max-width: 100%;
  height: auto;
}

.fallback-message {
  max-width: 38rem;
  margin-top: 2rem;
  color: var(--muted);
}

@keyframes reveal-copy {
  from {
    opacity: 0;
    transform: translateY(0.55rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes reveal-rule {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}

@media (max-width: 64rem) {
  .home-hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-eyebrow,
  .hero-statement {
    grid-column: 1;
  }

  .hero-eyebrow {
    margin-bottom: 2rem;
    padding-top: 0;
  }

  .hero-detail {
    grid-template-columns: minmax(0, 33rem) auto;
  }

  .site-footer {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 47.5rem) {
  .site-header {
    grid-template-columns: 1fr;
    gap: 0.5rem;
    min-height: auto;
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
  }

  .site-nav {
    justify-content: flex-start;
  }

  .inner-header,
  .legal-sections,
  .partners-sections,
  .process-notice,
  .preference-action-block,
  .guidance,
  .preference-notes,
  .concern-block,
  .fallback-page header,
  .fallback-page .content-body {
    margin-left: 0;
  }

  .home-hero {
    padding-top: 3rem;
  }

  .hero-statement {
    gap: 3rem;
  }

  .hero-detail {
    grid-template-columns: 1fr;
  }

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

  .ledger-grid > div,
  .ledger-grid > div:not(:first-child) {
    min-height: 7rem;
    padding: 1.25rem 0;
    border-right: 0;
    border-bottom: 1px solid var(--rule);
  }

  .ledger-grid > div:last-child {
    border-bottom: 0;
  }

  .site-footer {
    gap: 2rem;
  }

  .effective-date,
  .legal-sections section {
    grid-template-columns: 1fr;
  }

  .partners-sections section,
  .partners-columns {
    grid-template-columns: 1fr;
  }

  .partners-sections {
    margin-top: 4.5rem;
  }

  .legal-sections {
    margin-top: 4.5rem;
  }

  .section-number {
    padding: 0;
  }

  .guidance,
  .preference-notes,
  .concern-block {
    grid-template-columns: 1fr;
  }

  .concern-block {
    align-items: start;
  }
}

@media (max-width: 31rem) {
  :root {
    --page-padding: 1.125rem;
  }

  .review-notice {
    font-size: 0.625rem;
  }

  .site-nav {
    gap: 0 1rem;
  }

  .site-nav a {
    font-size: 0.8125rem;
  }

  .hero-statement h1,
  .inner-header h1,
  .partners-header h1,
  .compact-page .inner-header h1,
  .not-found h1 {
    font-size: clamp(2.85rem, 15vw, 4rem);
    line-height: 0.96;
  }

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

  .not-found-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .not-found-actions a {
    width: 100%;
  }

  .fallback-page header,
  .fallback-page .content-body {
    margin-left: 0;
  }
}

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

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

@media print {
  :root {
    --paper: #ffffff;
    --ink: #000000;
    --muted: #333333;
    --rule: #999999;
  }

  body {
    font-size: 10.5pt;
  }

  .review-notice,
  .site-header,
  .site-footer,
  .skip-link {
    display: none;
  }

  .inner-page {
    padding: 0;
  }

  .inner-header,
  .legal-sections {
    width: 100%;
    margin-left: 0;
  }

  .inner-header h1 {
    font-size: 34pt;
  }

  .legal-sections {
    margin-top: 3rem;
  }

  .legal-sections section {
    padding: 1.4rem 0;
  }

  a {
    text-decoration: underline;
  }
}
