:root {
  --stage: #0b0a09;
  --stage-2: #131110;
  --paper: #faf9f5;
  --paper-2: #f3f1ea;
  --ink: #211e1a;
  --ink-soft: #5f594e;
  --tungsten: #e89b2e;
  --tungsten-deep: #c07c15;
  --hairline: #e5e1d6;
  --hairline-dark: rgba(255, 255, 255, 0.1);
  --display: 'Big Shoulders', sans-serif;
  --body: 'Public Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --mono: 'IBM Plex Mono', ui-monospace, SFMono-Regular, Consolas, monospace;
  --wrap: 1120px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

:focus-visible {
  border-radius: 2px;
  outline: 2px solid var(--tungsten);
  outline-offset: 3px;
}

::selection {
  background: var(--tungsten);
  color: var(--stage);
}

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

.skip {
  position: absolute;
  z-index: 20;
  top: 0;
  left: -9999px;
  padding: 10px 16px;
  background: var(--tungsten);
  color: var(--stage);
  font-family: var(--mono);
  font-size: 13px;
  text-decoration: none;
}

.skip:focus-visible {
  top: 12px;
  left: 12px;
}

.site-header {
  background: var(--stage);
  color: #fff;
  border-bottom: 1px solid var(--hairline-dark);
}

.site-header .wrap {
  min-height: 72px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.wordmark {
  color: #fff;
  font-family: var(--display);
  font-size: 27px;
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 1;
  text-decoration: none;
}

.wordmark span {
  color: var(--tungsten);
}

.site-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 22px;
}

.site-nav a {
  color: rgba(255, 255, 255, 0.66);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a[aria-current='page'] {
  color: #fff;
}

.legal-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(68px, 9vw, 118px) 0 clamp(58px, 7vw, 88px);
  background: var(--stage);
  color: #fff;
}

.legal-hero::after {
  content: '';
  position: absolute;
  inset: -70% -20% auto;
  height: 150%;
  pointer-events: none;
  background: radial-gradient(ellipse 42% 44% at 70% 0%, rgba(232, 155, 46, 0.13), transparent 72%);
}

.legal-hero .wrap {
  position: relative;
  z-index: 1;
}

.eyebrow {
  margin-bottom: 18px;
  color: var(--tungsten);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.legal-hero h1 {
  max-width: 850px;
  font-family: var(--display);
  font-size: clamp(52px, 8vw, 96px);
  font-weight: 800;
  letter-spacing: 0.005em;
  line-height: 0.94;
  text-wrap: balance;
}

.legal-hero .lede {
  max-width: 700px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(17px, 2vw, 20px);
}

.effective {
  margin-top: 28px;
  color: rgba(255, 255, 255, 0.48);
  font-family: var(--mono);
  font-size: 12px;
}

.legal-shell {
  display: grid;
  grid-template-columns: 230px minmax(0, 720px);
  gap: clamp(48px, 8vw, 96px);
  align-items: start;
  padding-block: clamp(58px, 8vw, 96px) 110px;
}

.contents {
  position: sticky;
  top: 28px;
}

.contents h2 {
  margin-bottom: 16px;
  color: var(--ink-soft);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contents ol {
  list-style: none;
  counter-reset: legal-section;
}

.contents li {
  counter-increment: legal-section;
  border-top: 1px solid var(--hairline);
}

.contents li:last-child {
  border-bottom: 1px solid var(--hairline);
}

.contents a {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 8px;
  padding: 10px 0;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.35;
  text-decoration: none;
}

.contents a::before {
  content: counter(legal-section, decimal-leading-zero);
  color: var(--tungsten-deep);
  font-family: var(--mono);
  font-size: 10px;
  line-height: 1.8;
}

.contents a:hover {
  color: var(--ink);
}

.legal-copy section {
  scroll-margin-top: 26px;
}

.legal-copy section + section {
  margin-top: 56px;
  padding-top: 55px;
  border-top: 1px solid var(--hairline);
}

.legal-copy h2 {
  margin-bottom: 20px;
  font-family: var(--display);
  font-size: clamp(30px, 4vw, 42px);
  font-weight: 700;
  line-height: 1;
  text-wrap: balance;
}

.legal-copy h3 {
  margin: 28px 0 10px;
  font-size: 16px;
  font-weight: 700;
}

.legal-copy p + p,
.legal-copy ul + p,
.legal-copy p + ul,
.legal-copy ol + p,
.legal-copy p + ol {
  margin-top: 16px;
}

.legal-copy ul,
.legal-copy ol {
  padding-left: 22px;
}

.legal-copy li + li {
  margin-top: 10px;
}

.legal-copy a {
  color: var(--tungsten-deep);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.legal-copy strong {
  font-weight: 700;
}

.summary {
  margin-bottom: 52px;
  padding: 24px 26px;
  border: 1px solid rgba(232, 155, 46, 0.4);
  border-radius: 8px;
  background: #fff8ec;
}

.summary strong {
  display: block;
  margin-bottom: 7px;
  color: #7f4a00;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.data-table {
  margin-top: 22px;
  border: 1px solid var(--hairline);
  border-radius: 8px;
  overflow: hidden;
}

.data-row {
  display: grid;
  grid-template-columns: minmax(130px, 0.34fr) minmax(0, 1fr);
  gap: 24px;
  padding: 18px 20px;
  background: #fff;
}

.data-row + .data-row {
  border-top: 1px solid var(--hairline);
}

.data-row dt {
  font-weight: 700;
}

.data-row dd {
  color: var(--ink-soft);
}

.callout {
  margin-top: 24px;
  padding: 20px 22px;
  border-left: 3px solid var(--tungsten);
  background: var(--paper-2);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 10px 20px;
  border: 1px solid var(--tungsten-deep);
  border-radius: 6px;
  background: var(--tungsten);
  color: #171107 !important;
  font-weight: 700;
  text-decoration: none !important;
}

.button.secondary {
  background: transparent;
  color: var(--ink) !important;
  border-color: var(--hairline);
}

.site-footer {
  padding: 34px 0;
  border-top: 1px solid var(--hairline-dark);
  background: var(--stage);
  color: rgba(255, 255, 255, 0.45);
  font-size: 13px;
}

.site-footer .wrap {
  display: flex;
  align-items: center;
  gap: 18px 24px;
  flex-wrap: wrap;
}

.site-footer .wordmark {
  font-size: 21px;
}

.footer-links {
  margin-left: auto;
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.site-footer a:not(.wordmark) {
  color: rgba(255, 255, 255, 0.58);
  text-decoration: none;
}

.site-footer a:hover {
  color: #fff;
}

@media (max-width: 820px) {
  .site-nav a:not([aria-current='page']) {
    display: none;
  }

  .legal-shell {
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .contents {
    position: static;
  }

  .contents ol {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 28px;
  }
}

@media (max-width: 560px) {
  .wrap {
    width: min(100% - 32px, var(--wrap));
  }

  .site-header .wrap {
    min-height: 64px;
  }

  .site-nav {
    gap: 14px;
  }

  .site-nav a {
    font-size: 13px;
  }

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

  .data-row {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .site-footer .wrap {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-links {
    margin-left: 0;
  }
}

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