:root {
  color-scheme: light;
  --bg: #f5f7f4;
  --ink: #102431;
  --muted: #52636d;
  --line: #d9e0dc;
  --panel: #ffffff;
  --accent: #267b7d;
  --accent-dark: #155b61;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    linear-gradient(180deg, rgba(38, 123, 125, 0.13), rgba(38, 123, 125, 0) 360px),
    var(--bg);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.62;
}

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

.shell {
  width: min(920px, calc(100% - 40px));
  margin: 0 auto;
}

.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 56px 0;
}

.policy {
  padding: 28px 0 80px;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0 34px;
  font-size: 14px;
}

.brand {
  color: var(--ink);
  font-weight: 760;
  text-decoration: none;
}

.policy-header,
section {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 26px;
  margin: 0 0 16px;
  box-shadow: 0 18px 42px rgba(24, 54, 66, 0.06);
}

.policy-header {
  padding: 34px 30px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--accent-dark);
  font-size: 13px;
  font-weight: 760;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 16px;
  font-size: clamp(40px, 7vw, 72px);
  line-height: 1.02;
  letter-spacing: 0;
}

.policy h1 {
  font-size: clamp(34px, 5vw, 54px);
}

h2 {
  margin-bottom: 12px;
  font-size: 23px;
  line-height: 1.2;
}

h3 {
  margin-bottom: 8px;
  font-size: 17px;
}

p,
li {
  color: var(--muted);
  font-size: 16px;
}

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

.lede {
  max-width: 720px;
  font-size: 19px;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 8px;
  background: var(--accent);
  color: #ffffff;
  font-weight: 700;
  text-decoration: none;
}

.button.secondary {
  background: transparent;
  color: var(--accent-dark);
  border: 1px solid var(--line);
}

ul {
  padding-left: 22px;
}

@media (max-width: 640px) {
  .shell {
    width: min(100% - 28px, 920px);
  }

  .topbar {
    align-items: flex-start;
    flex-direction: column;
    padding-bottom: 22px;
  }

  .policy-header,
  section {
    padding: 20px;
  }

  h1 {
    font-size: 40px;
  }
}
