:root {
  color-scheme: dark;
  --bg: #07101f;
  --surface: #101a2a;
  --surface-strong: #0b1423;
  --text: #f8fafc;
  --muted: #b9c2d3;
  --line: rgba(148, 163, 184, 0.24);
  --accent: #55d4e8;
  --accent-warm: #ffb86b;
}

* { box-sizing: border-box; }

html { background: var(--bg); }

body {
  margin: 0;
  min-height: 100vh;
  background: var(--bg);
  color: var(--text);
  font: 16px/1.65 Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--accent); text-underline-offset: 3px; }

.wrap {
  width: min(940px, calc(100% - 36px));
  margin-inline: auto;
}

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

.nav {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  color: var(--text);
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero { padding: 56px 0 34px; }
.eyebrow {
  margin: 0 0 10px;
  color: var(--accent-warm);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

h1 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(38px, 7vw, 68px);
  line-height: 1.02;
  letter-spacing: 0;
}

.lede {
  max-width: 760px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.policy {
  margin-bottom: 60px;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--surface);
}

.policy-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  padding: 18px 24px;
  border-bottom: 1px solid var(--line);
  background: var(--surface-strong);
  color: var(--muted);
  font-size: 14px;
}

.policy-body { padding: 4px 24px 30px; }
.policy-body section { padding-top: 28px; }

h2 {
  margin: 0 0 10px;
  font-size: clamp(22px, 3vw, 30px);
  line-height: 1.18;
  letter-spacing: 0;
}

h3 { margin: 20px 0 6px; font-size: 17px; }
p { margin: 0 0 13px; color: var(--muted); }
ul { margin: 8px 0 0; padding-left: 22px; color: var(--muted); }
li { margin: 7px 0; }
strong { color: var(--text); }

.notice {
  margin-top: 16px;
  padding: 14px;
  border: 1px solid rgba(85, 212, 232, 0.32);
  border-radius: 7px;
  background: rgba(85, 212, 232, 0.07);
}

.site-foot {
  padding: 24px 0 36px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}

@media (max-width: 600px) {
  .wrap { width: min(100% - 24px, 940px); }
  .nav { min-height: 60px; }
  .hero { padding: 38px 0 24px; }
  .lede { font-size: 16px; }
  .policy-meta, .policy-body { padding-inline: 16px; }
}
