:root {
  --bg: #f4f6fb;
  --surface: rgba(255, 255, 255, 0.88);
  --text: #182033;
  --muted: #67728a;
  --accent: #4d6bff;
  --accent-2: #7d92ff;
  --border: rgba(24, 32, 51, 0.08);
  --shadow: 0 18px 48px rgba(27, 39, 94, 0.12);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-height: 100vh;
  font-family: Inter, system-ui, sans-serif;
  background: radial-gradient(circle at top, #ffffff 0%, #edf2ff 35%, var(--bg) 100%);
  color: var(--text);
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.policy-page {
  padding: 24px;
}

.hero,
.policy-main {
  width: min(1100px, 100%);
  margin: 0 auto;
}

.hero {
  margin-bottom: 28px;
  padding: 40px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  background: linear-gradient(135deg, rgba(255,255,255,0.96) 0%, rgba(242,246,255,0.94) 100%);
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto -80px -100px auto;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(77,107,255,0.18) 0%, rgba(77,107,255,0) 72%);
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(77, 107, 255, 0.12);
  color: var(--accent);
  font-weight: 700;
  font-size: 14px;
}

.hero h1 {
  margin: 18px 0 14px;
  font-size: clamp(34px, 5vw, 52px);
  line-height: 1.06;
  letter-spacing: -0.03em;
}

.hero__lead {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.meta-chip {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(255,255,255,0.85);
  border: 1px solid var(--border);
  color: var(--text);
  font-weight: 600;
}

.policy-main {
  display: grid;
  gap: 22px;
}

.policy-card {
  padding: 28px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--surface);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.policy-card h2 {
  margin: 0 0 12px;
  font-size: 28px;
  line-height: 1.2;
}

.policy-card h3 {
  margin: 0 0 10px;
  font-size: 20px;
}

.policy-card p,
.policy-card li {
  color: var(--muted);
  line-height: 1.75;
}

.policy-card p {
  margin: 0 0 14px;
}

.policy-card p:last-child {
  margin-bottom: 0;
}

.policy-card ul {
  margin: 0;
  padding-left: 20px;
}

.policy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.policy-item {
  padding: 22px;
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.72);
  border: 1px solid var(--border);
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .45s ease, transform .45s ease;
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 768px) {
  .policy-page {
    padding: 16px;
  }

  .hero,
  .policy-card {
    padding: 22px;
  }

  .policy-grid {
    grid-template-columns: 1fr;
  }

  .policy-card h2 {
    font-size: 24px;
  }

  .meta-chip {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
}
