:root {
  --bg: #f4f5f7;
  --bg-2: #ffffff;
  --text: #1f2933;
  --muted: #5f6c7b;
  --line: #d8dee6;
  --accent: #3f6ad8;
  --card-shadow: 0 20px 60px -36px rgba(12, 23, 38, 0.35);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  color: var(--text);
  background: linear-gradient(155deg, #eef2f8 0%, var(--bg) 45%, #f9fafb 100%);
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.65;
}

.page-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(58rem 28rem at -5% -10%, rgba(63, 106, 216, 0.08), transparent 65%),
    radial-gradient(42rem 24rem at 120% 0%, rgba(15, 118, 110, 0.07), transparent 60%);
}

.container {
  width: min(920px, 92vw);
  margin: 0 auto;
}

.topbar {
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(8px);
  position: sticky;
  top: 0;
}

.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 60px;
}

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

.brand:hover {
  color: var(--accent);
}

.chip {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.25rem 0.65rem;
  font-size: 0.8rem;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.75);
}

main {
  padding: 2rem 0 3rem;
}

.policy-card {
  position: relative;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--card-shadow);
  padding: clamp(1.35rem, 2.8vw, 2.25rem);
}

.kicker {
  margin: 0 0 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-size: 0.75rem;
  color: var(--accent);
}

h1 {
  margin: 0;
  font-size: clamp(1.85rem, 4.4vw, 2.7rem);
  line-height: 1.15;
}

.intro {
  margin-top: 1rem;
  color: var(--muted);
}

.meta {
  margin-top: 0.75rem;
  color: var(--muted);
  font-size: 0.95rem;
}

section {
  margin-top: 1.4rem;
}

h2 {
  margin: 0 0 0.4rem;
  font-size: 1.2rem;
  line-height: 1.3;
}

p {
  margin: 0.4rem 0 0;
}

ul {
  margin: 0.55rem 0 0;
  padding-left: 1.15rem;
}

li {
  margin: 0.3rem 0;
}

hr {
  border: 0;
  border-top: 1px solid var(--line);
  margin: 1.8rem 0 1rem;
}

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

@media (max-width: 640px) {
  .topbar .container {
    min-height: 54px;
  }

  .chip {
    font-size: 0.72rem;
  }

  section {
    margin-top: 1.2rem;
  }
}
