:root {
  --bg: #0c0e11;
  --panel: #121418;
  --panel-soft: #141920;
  --line: #2b3038;
  --text: #eef2f6;
  --muted: #a8afb9;
  --link: #d4e0ee;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  background: #060709;
}

body {
  position: relative;
  min-height: 100vh;
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--text);
  background: #060709;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at top, #15181d 0, #060709 78%);
  pointer-events: none;
  z-index: -1;
}

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

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

.policy-card {
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--panel);
  padding: 16px;
}

.policy-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.policy-brand {
  font-size: 40px;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--text);
  line-height: 1;
}

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

.policy-btn {
  min-height: 34px;
  border-radius: 999px;
  border: 1px solid #373c45;
  background: #1a1f26;
  color: #e7edf4;
  font-size: 13px;
  font-weight: 700;
  padding: 8px 14px;
  transition: border-color 0.18s ease, background-color 0.18s ease;
}

.policy-btn:hover {
  border-color: #4a525d;
  background: #232a34;
}

.policy-head {
  margin-top: 12px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--panel-soft);
  padding: 14px;
}

.policy-eyebrow {
  margin: 0;
  color: #9aa5b3;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.policy-head h1 {
  margin: 8px 0 0;
  font-size: clamp(30px, 5vw, 44px);
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.policy-meta {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.policy-tabs {
  margin-top: 12px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.policy-tab {
  min-height: 38px;
  border-radius: 999px;
  border: 1px solid #373c45;
  background: #1a1f26;
  color: #d7e0ea;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  text-align: center;
  padding: 0 10px;
}

.policy-tab.is-active {
  border-color: #4a525d;
  background: #232931;
  color: #eef2f6;
}

.policy-content {
  margin-top: 12px;
  display: grid;
  gap: 10px;
}

.policy-section {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--panel-soft);
  padding: 12px;
}

.policy-section h2 {
  margin: 0;
  color: #e3ebf4;
  font-size: 22px;
  letter-spacing: -0.02em;
}

.policy-section p,
.policy-section li {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

.policy-section p {
  margin: 8px 0 0;
}

.policy-section ul {
  margin: 8px 0 0;
  padding-left: 18px;
}

.policy-footer {
  margin-top: 12px;
  color: var(--muted);
  font-size: 12px;
  text-align: center;
}

@media (max-width: 640px) {
  .policy-shell {
    width: calc(100% - 12px);
    padding-top: 8px;
  }

  .policy-card {
    border-radius: 18px;
    padding: 12px;
  }

  .policy-brand {
    font-size: 30px;
  }

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

  .policy-section h2 {
    font-size: 20px;
  }
}
