:root {
  color-scheme: light;
  --bg: #f7f8f4;
  --paper: #ffffff;
  --ink: #171917;
  --muted: #62685f;
  --line: #dfe4d8;
  --accent: #106b5f;
  --accent-strong: #0b4e45;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--bg);
}

body {
  min-height: 100%;
  margin: 0;
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  line-height: 1.65;
}

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

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

.policy-shell {
  width: min(100%, 920px);
  margin: 0 auto;
  padding: 28px 20px 56px;
}

.policy-header {
  margin-bottom: 28px;
}

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

.brand-mark {
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid #0f6b5e;
  border-radius: 7px;
  background: #0f6b5e;
  color: #ffffff;
  font-weight: 800;
}

.policy {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  padding: clamp(28px, 6vw, 58px);
  box-shadow: 0 18px 45px rgba(25, 38, 31, 0.07);
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--accent-strong);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

h1,
h2,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  font-size: clamp(2.2rem, 9vw, 4.2rem);
  line-height: 0.95;
  letter-spacing: 0;
}

.updated {
  margin: 14px 0 34px;
  color: var(--muted);
  font-size: 0.98rem;
}

section {
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
}

h2 {
  margin: 0 0 10px;
  font-size: 1.08rem;
  line-height: 1.25;
  letter-spacing: 0;
}

p {
  max-width: 68ch;
  margin: 0;
  font-size: 1rem;
}

@media (max-width: 520px) {
  .policy-shell {
    padding: 18px 14px 36px;
  }

  .policy-header {
    margin-bottom: 18px;
  }

  .policy {
    padding: 24px 18px;
  }
}
