:root {
  color-scheme: dark;
  --background: #080b12;
  --surface: #101722;
  --surface-raised: #151f2e;
  --border: #28364b;
  --text: #f2f6fb;
  --muted: #aab7c9;
  --accent: #65d6c4;
  --accent-strong: #92eadc;
  --focus: #f4c95d;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  font-synthesis: none;
}

* {
  box-sizing: border-box;
}

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

body {
  min-width: 18rem;
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 12% 0%, rgb(38 105 100 / 22%), transparent 34rem),
    var(--background);
  font-size: 1rem;
  line-height: 1.65;
}

a {
  color: var(--accent-strong);
  text-underline-offset: 0.2em;
}

a:hover {
  color: #c0fff5;
}

a:focus-visible {
  outline: 0.18rem solid var(--focus);
  outline-offset: 0.2rem;
  border-radius: 0.15rem;
}

.skip-link {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 10;
  padding: 0.55rem 0.75rem;
  color: var(--background);
  background: var(--focus);
  border-radius: 0.35rem;
  transform: translateY(-180%);
}

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

.shell {
  width: min(100% - 2rem, 68rem);
  margin-inline: auto;
}

.site-header {
  padding-block: 1.25rem;
  border-bottom: 1px solid rgb(255 255 255 / 8%);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  color: var(--text);
  font-weight: 760;
  letter-spacing: -0.02em;
  text-decoration: none;
}

.nav-link {
  font-size: 0.94rem;
  font-weight: 650;
}

main {
  padding-block: clamp(3rem, 8vw, 6rem);
}

.hero {
  max-width: 48rem;
}

.eyebrow {
  margin: 0 0 0.7rem;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 780;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin-top: 0;
  line-height: 1.2;
  letter-spacing: -0.025em;
}

h1 {
  max-width: 18ch;
  margin-bottom: 1rem;
  font-size: clamp(2.35rem, 7vw, 4.75rem);
}

h2 {
  margin-bottom: 0.65rem;
  font-size: clamp(1.4rem, 3vw, 1.9rem);
}

h3 {
  margin-bottom: 0.4rem;
  font-size: 1.05rem;
}

p,
ul,
ol {
  margin-top: 0;
}

.lede {
  max-width: 43rem;
  color: var(--muted);
  font-size: clamp(1.08rem, 2.5vw, 1.25rem);
}

.action {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.72rem 1rem;
  color: #06110f;
  background: var(--accent);
  border-radius: 0.5rem;
  font-weight: 760;
  text-decoration: none;
}

.action:hover {
  color: #06110f;
  background: #9aeee1;
}

.policy-header {
  max-width: 52rem;
  padding-bottom: 2.2rem;
}

.policy-header h1 {
  font-size: clamp(2.2rem, 6vw, 4rem);
}

.policy-meta {
  color: var(--muted);
  font-size: 0.94rem;
}

.summary {
  margin-top: 1.75rem;
  padding: 1.25rem;
  background: linear-gradient(135deg, rgb(101 214 196 / 13%), rgb(21 31 46 / 75%));
  border: 1px solid rgb(101 214 196 / 35%);
  border-radius: 0.7rem;
}

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

.policy-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1rem;
}

.policy-section {
  padding: clamp(1.15rem, 3vw, 1.65rem);
  background: rgb(16 23 34 / 88%);
  border: 1px solid var(--border);
  border-radius: 0.7rem;
}

.policy-section p:last-child,
.policy-section ul:last-child,
.policy-section ol:last-child {
  margin-bottom: 0;
}

.policy-section li + li {
  margin-top: 0.55rem;
}

code {
  padding: 0.12em 0.32em;
  color: #d6fff8;
  background: #071d1a;
  border: 1px solid #17443e;
  border-radius: 0.25rem;
  overflow-wrap: anywhere;
}

.site-footer {
  padding-block: 1.5rem 2.5rem;
  color: var(--muted);
  border-top: 1px solid rgb(255 255 255 / 8%);
  font-size: 0.9rem;
}

@media (min-width: 52rem) {
  .policy-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .policy-section.wide {
    grid-column: 1 / -1;
  }
}

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