/* ============================================
   Policy pages — shared styles
   ============================================ */

.policy {
  padding: 100px 0 60px;
}

.policy-container {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 24px;
}

.policy h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 2.8rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
  background: linear-gradient(180deg, #fff 0%, rgba(255, 255, 255, 0.7) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.policy .last-updated {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-bottom: 48px;
}

.policy h2 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 400;
  margin: 40px 0 16px;
  color: var(--text);
}

.policy h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 400;
  margin: 24px 0 12px;
  color: var(--text);
}

.policy p,
.policy li {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 12px;
}

.policy strong {
  color: var(--text);
}

.policy ul {
  list-style: none;
  padding: 0;
  margin-bottom: 16px;
}

.policy ul li::before {
  content: '\2014\00a0';
  color: var(--accent);
}

.policy a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.3s ease;
}

.policy a:hover {
  color: #d8b4fe;
}

.policy table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0 24px;
  font-size: 0.9rem;
}

.policy th,
.policy td {
  text-align: left;
  padding: 12px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-muted);
}

.policy th {
  color: var(--text);
  font-weight: 400;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  margin-bottom: 40px;
  transition: color 0.3s ease;
}

.back-link:hover {
  color: var(--text);
}
