:root {
  --bg: #f5f7fb;
  --surface: rgba(255, 255, 255, 0.94);
  --surface-strong: #ffffff;
  --ink: #0d1a2b;
  --ink-muted: #4c5b6b;
  --accent: #2f7dff;
  --accent-dark: #1c59c4;
  --border: rgba(15, 23, 42, 0.12);
  --shadow-soft: 0 16px 34px rgba(13, 26, 43, 0.1);
  --radius-lg: 20px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 10%, rgba(47, 125, 255, 0.15), transparent 45%),
    radial-gradient(circle at 88% 12%, rgba(24, 194, 163, 0.12), transparent 40%),
    linear-gradient(180deg, #f8f9fc 0%, #eef2f7 65%, #e6edf6 100%);
  min-height: 100vh;
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      110deg,
      rgba(15, 23, 42, 0.04) 0px,
      rgba(15, 23, 42, 0.04) 1px,
      transparent 1px,
      transparent 14px
    );
  opacity: 0.35;
  pointer-events: none;
  z-index: -1;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.policy-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 6vw;
  background: rgba(248, 250, 255, 0.82);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.policy-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--ink);
}

.policy-brand img {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: rgba(47, 125, 255, 0.12);
  padding: 6px;
}

.policy-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.policy-main {
  width: min(960px, 92vw);
  margin: 40px auto 60px;
}

.policy-card {
  background: var(--surface-strong);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-soft);
}

.policy-heading h1 {
  margin: 0 0 8px;
  font-family: "Newsreader", serif;
  font-size: clamp(2rem, 2.6vw, 2.6rem);
}

.policy-meta {
  margin: 0 0 18px;
  color: var(--ink-muted);
  font-size: 0.9rem;
}

.policy-content h2 {
  margin: 22px 0 8px;
  font-size: 1.15rem;
}

.policy-content p {
  margin: 0 0 12px;
  color: var(--ink-muted);
  line-height: 1.6;
}

.policy-content ul {
  margin: 0 0 12px;
  padding-left: 20px;
  color: var(--ink-muted);
  line-height: 1.6;
}

.policy-links {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-weight: 600;
}

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

.policy-footer {
  width: min(960px, 92vw);
  margin: 0 auto 40px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  color: var(--ink-muted);
  border-top: 1px solid var(--border);
  padding-top: 16px;
  font-size: 0.85rem;
}

.policy-footer .footer-links {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
}

.policy-footer .footer-links a {
  color: var(--ink-muted);
}

.policy-footer .footer-links a:hover {
  color: var(--ink);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  text-decoration: none;
}

.btn-ghost {
  background: rgba(15, 23, 42, 0.08);
  color: var(--ink);
}

@media (max-width: 720px) {
  .policy-header {
    flex-wrap: wrap;
    gap: 12px;
  }
  .policy-actions {
    width: 100%;
    justify-content: space-between;
  }
  .policy-card {
    padding: 24px;
  }
  .policy-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}
