:root {
  --canvas: #0a100f;
  --surface: #121a18;
  --ink: #f4f6f2;
  --muted: #aeb8b3;
  --line: #303936;
  --signal: #c7ff00;
  --warm: #ffb4a7;
  --measure: 720px;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--canvas);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--canvas);
  font-family: ui-rounded, -apple-system, BlinkMacSystemFont, "SF Pro Text", "Helvetica Neue", sans-serif;
  font-size: 17px;
  line-height: 1.65;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
}

a {
  color: var(--signal);
  text-underline-offset: 0.2em;
  text-decoration-thickness: 1px;
}

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

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

.site-header {
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}

.header-inner,
main,
.footer-inner {
  width: min(calc(100% - 40px), var(--measure));
  margin-inline: auto;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
}

.brand-mark {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--signal);
  box-shadow: 0 0 0 6px rgba(199, 255, 0, 0.1);
}

.page-label {
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
}

main {
  padding: 68px 0 96px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--signal);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

h1,
h2 {
  letter-spacing: 0;
  text-wrap: balance;
}

h1 {
  margin: 0;
  max-width: 12ch;
  font-size: clamp(42px, 8vw, 68px);
  line-height: 1.02;
  font-weight: 600;
}

.effective-date {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 15px;
}

.summary {
  margin: 34px 0 0;
  max-width: 62ch;
  color: #d9dfdb;
  font-size: 20px;
  line-height: 1.55;
}

.policy-section {
  padding: 42px 0;
  border-top: 1px solid var(--line);
  scroll-margin-top: 24px;
}

.policy-section:first-of-type {
  margin-top: 54px;
}

h2 {
  margin: 0 0 20px;
  font-size: 25px;
  line-height: 1.25;
  font-weight: 600;
}

p {
  margin: 0 0 18px;
  color: #d9dfdb;
}

p:last-child {
  margin-bottom: 0;
}

ul {
  margin: 0 0 20px;
  padding: 0;
  list-style: none;
}

li {
  position: relative;
  margin: 0 0 12px;
  padding-left: 24px;
  color: #d9dfdb;
}

li::before {
  position: absolute;
  top: 0.75em;
  left: 2px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--warm);
  content: "";
}

.site-footer {
  border-top: 1px solid var(--line);
  background: var(--surface);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 88px;
  gap: 20px;
  color: var(--muted);
  font-size: 14px;
}

.footer-inner p {
  margin: 0;
  color: inherit;
}

@media (max-width: 560px) {
  .header-inner,
  main,
  .footer-inner {
    width: min(calc(100% - 32px), var(--measure));
  }

  .header-inner,
  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding-block: 18px;
    gap: 4px;
  }

  main {
    padding: 48px 0 72px;
  }

  h1 {
    font-size: 46px;
  }

  .summary {
    font-size: 18px;
  }

  .policy-section {
    padding: 34px 0;
  }
}

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