@font-face {
  font-family: "Inter Tight";
  src: url("../assets/inter-tight-500-700.woff2") format("woff2");
  font-style: normal;
  font-weight: 500 700;
  font-display: swap;
}

@font-face {
  font-family: "Inter Tight";
  src: url("../assets/inter-tight-900.woff2") format("woff2");
  font-style: normal;
  font-weight: 900;
  font-display: swap;
}

:root {
  --orange: #ff3d0a;
  --ink: #0a0a0a;
  --paper: #f7f7f3;
  --muted: #5a5a55;
  --line: #c8c8c1;
  color-scheme: light;
  font-family: "Inter Tight", Arial, Helvetica, sans-serif;
  font-synthesis: none;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-size: 16px;
  line-height: 1.38;
}

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

a:hover {
  color: var(--orange);
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid #1464ff;
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 8px;
  left: 8px;
  padding: 10px 14px;
  color: #fff;
  background: var(--ink);
  transform: translateY(-150%);
}

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

.policy-header {
  position: sticky;
  z-index: 20;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 70px;
  padding: 12px clamp(18px, 4vw, 64px);
  border-bottom: 1px solid var(--ink);
  background: color-mix(in srgb, var(--paper) 93%, transparent);
  backdrop-filter: blur(12px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: -0.03em;
  text-decoration: none;
}

.brand-mark {
  width: 22px;
  height: 22px;
  background: var(--orange);
  transform: rotate(12deg);
}

.policy-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 16px;
  font-size: 12px;
  font-weight: 700;
}

.policy-nav button {
  padding: 0;
  border: 0;
  color: inherit;
  background: transparent;
  cursor: pointer;
  font: inherit;
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.policy-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(260px, 0.55fr);
  gap: clamp(32px, 8vw, 140px);
  align-items: end;
  min-height: min(680px, 76vh);
  padding: clamp(64px, 10vw, 150px) clamp(18px, 4vw, 64px) clamp(48px, 7vw, 100px);
  border-bottom: 1px solid var(--ink);
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--orange);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1 {
  max-width: 11ch;
  margin: 0;
  font-size: clamp(64px, 12vw, 184px);
  font-weight: 900;
  letter-spacing: -0.075em;
  line-height: 0.78;
  text-wrap: balance;
}

.hero-meta {
  padding-top: 18px;
  border-top: 1px solid var(--ink);
}

.hero-meta p {
  margin: 0 0 14px;
}

.hero-meta strong {
  display: block;
  margin-bottom: 3px;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.launch-blocker {
  padding: 24px clamp(18px, 4vw, 64px);
  border-bottom: 1px solid var(--ink);
  color: #fff;
  background: var(--orange);
}

.launch-blocker-inner {
  display: grid;
  grid-template-columns: minmax(170px, 0.35fr) minmax(0, 1fr);
  gap: 30px;
  width: min(1500px, 100%);
  margin: auto;
}

.launch-blocker h2,
.launch-blocker p {
  margin: 0;
}

.launch-blocker h2 {
  font-size: 18px;
  letter-spacing: -0.03em;
}

.launch-blocker p {
  max-width: 920px;
  font-size: 14px;
}

.policy-layout {
  display: grid;
  grid-template-columns: minmax(190px, 0.34fr) minmax(0, 1fr);
  gap: clamp(38px, 9vw, 150px);
  width: min(1500px, 100%);
  margin: 0 auto;
  padding: clamp(54px, 8vw, 120px) clamp(18px, 4vw, 64px) clamp(100px, 12vw, 180px);
}

.policy-toc {
  position: sticky;
  top: 105px;
  align-self: start;
  min-width: 0;
}

.policy-toc p {
  margin: 0 0 12px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

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

.policy-toc li {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 8px;
  padding: 7px 0;
  border-top: 1px solid var(--line);
  counter-increment: toc;
  font-size: 12px;
}

.policy-toc li::before {
  content: counter(toc, decimal-leading-zero);
  color: var(--orange);
  font-size: 10px;
  font-weight: 900;
}

.policy-toc a {
  text-decoration: none;
}

.policy-content {
  width: min(900px, 100%);
  min-width: 0;
}

.policy-section {
  scroll-margin-top: 95px;
  padding: 0 0 clamp(56px, 8vw, 100px);
}

.policy-section + .policy-section {
  padding-top: clamp(46px, 6vw, 78px);
  border-top: 1px solid var(--ink);
}

.section-number {
  display: block;
  margin-bottom: 12px;
  color: var(--orange);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

h2 {
  max-width: 18ch;
  margin: 0 0 24px;
  font-size: clamp(34px, 5vw, 66px);
  line-height: 0.95;
  letter-spacing: -0.055em;
  text-wrap: balance;
}

h3 {
  margin: 34px 0 10px;
  font-size: clamp(20px, 2.4vw, 29px);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

p,
li,
td,
th {
  overflow-wrap: anywhere;
}

.policy-content p {
  max-width: 75ch;
}

.policy-content ul,
.policy-content ol {
  max-width: 75ch;
  padding-left: 1.25em;
}

.policy-content li + li {
  margin-top: 8px;
}

.plain-list {
  padding: 0 !important;
  list-style: none;
}

.plain-list li {
  padding: 12px 0;
  border-top: 1px solid var(--line);
}

.callout {
  margin: 28px 0;
  padding: 20px;
  border: 1px solid var(--ink);
  border-left: 9px solid var(--orange);
  background: #fff;
}

.callout > :first-child {
  margin-top: 0;
}

.callout > :last-child {
  margin-bottom: 0;
}

.placeholder {
  display: inline;
  padding: 0.08em 0.28em;
  border: 1px dashed currentColor;
  color: #761b00;
  background: #ffd8cd;
  font-weight: 700;
}

.table-wrap {
  max-width: 100%;
  margin: 26px 0;
  overflow-x: auto;
  border-top: 2px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  font-size: 13px;
}

th,
td {
  padding: 14px 12px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

th {
  color: #fff;
  background: var(--ink);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

tr:last-child td {
  border-bottom: 0;
}

.policy-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  align-items: end;
  min-height: 360px;
  padding: clamp(48px, 7vw, 100px) clamp(18px, 4vw, 64px);
  color: #fff;
  background: var(--ink);
}

.policy-footer strong {
  display: block;
  color: var(--orange);
  font-size: clamp(42px, 8vw, 120px);
  line-height: 0.8;
  letter-spacing: -0.07em;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px;
  font-size: 12px;
}

@media (max-width: 820px) {
  .policy-header {
    align-items: flex-start;
  }

  .policy-hero,
  .launch-blocker-inner,
  .policy-layout,
  .policy-footer {
    grid-template-columns: 1fr;
  }

  .policy-toc,
  .policy-content {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .policy-hero {
    min-height: 600px;
    align-content: end;
  }

  .policy-toc {
    position: static;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--ink);
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 560px) {
  .policy-header {
    position: static;
    display: block;
  }

  .policy-nav {
    justify-content: flex-start;
    margin-top: 14px;
  }

  h1 {
    font-size: clamp(58px, 23vw, 110px);
  }
}

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

@media print {
  .policy-header,
  .policy-toc,
  .launch-blocker,
  .policy-footer {
    display: none;
  }

  .policy-hero {
    min-height: 0;
  }

  .policy-layout {
    display: block;
    padding: 40px 0;
  }

  .policy-content {
    width: 100%;
  }
}
