:root {
  --page-bg: #f3f5f2;
  --surface: #ffffff;
  --ink: #1f2926;
  --text: #3f4946;
  --muted: #6d7773;
  --line: #dce2de;
  --accent: #2567d8;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

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

body {
  min-height: 100vh;
  margin: 0;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0) 42%),
    linear-gradient(180deg, #f7f9f6 0%, var(--page-bg) 54%, #e8eee9 100%);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
}

.policy-shell {
  width: min(820px, calc(100vw - 40px));
  margin: 0 auto;
  padding: 72px 0 88px;
}

.policy-header {
  padding-bottom: 34px;
  border-bottom: 1px solid var(--line);
}

.eyebrow,
.updated {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.eyebrow {
  color: var(--accent);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2 {
  color: var(--ink);
  line-height: 1.1;
}

h1 {
  margin: 12px 0 18px;
  font-size: clamp(42px, 8vw, 68px);
  letter-spacing: 0;
}

h2 {
  margin: 0 0 14px;
  font-size: 24px;
}

.intro {
  max-width: 680px;
  margin: 0 0 20px;
  font-size: 19px;
}

.policy-section {
  padding: 34px 0;
  border-bottom: 1px solid var(--line);
}

.policy-section:last-child {
  border-bottom: 0;
}

p {
  margin: 0 0 16px;
}

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

ul {
  margin: 0;
  padding-left: 22px;
}

li + li {
  margin-top: 8px;
}

a {
  color: var(--accent);
}

@media (max-width: 640px) {
  body {
    font-size: 15px;
  }

  .policy-shell {
    width: min(100vw - 28px, 820px);
    padding: 44px 0 56px;
  }

  .policy-header {
    padding-bottom: 26px;
  }

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

  h1 {
    font-size: 42px;
  }
}
