/* Simple policy pages rendered with the same dark visual language as the home page. */

:root {
  --policy-width: min(860px, 100%);
}

.policy-page {
  margin: 0;
  min-height: 100vh;
  padding: clamp(24px, 4vw, 52px);
  color: var(--color-text-primary);
  font-family: var(--font-ui);
  background:
    radial-gradient(circle at 12% 10%, rgba(79,110,247,0.16), transparent 34rem),
    radial-gradient(circle at 84% 0%, rgba(123,95,255,0.2), transparent 34rem),
    var(--color-bg-void);
}

.policy-card {
  width: var(--policy-width);
  margin: 0 auto;
  padding: clamp(26px, 5vw, 54px);
  border-radius: var(--radius-2xl);
  border: 1px solid var(--color-border-subtle);
  background: linear-gradient(145deg, rgba(22,27,38,0.97), rgba(12,17,27,0.96));
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(18px) saturate(140%);
}

.policy-back {
  display: inline-flex;
  align-items: center;
  color: var(--color-accent-base);
  font-weight: 700;
  text-decoration: none;
  margin-bottom: 26px;
}

.policy-back:hover { text-decoration: underline; }

.policy-kicker {
  color: var(--color-accent-base);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: var(--tracking-wider);
  text-transform: uppercase;
  margin-bottom: 10px;
}

.policy-card h1 {
  font-family: var(--font-display);
  font-size: clamp(38px, 7vw, 64px);
  line-height: 1.02;
  letter-spacing: 0.03em;
  margin-bottom: 16px;
}

.policy-lede {
  color: var(--color-text-secondary);
  font-size: 19px;
  line-height: 1.55;
  margin-bottom: 30px;
}

.policy-section {
  padding-top: 22px;
  margin-top: 22px;
  border-top: 1px solid var(--color-border-default);
}

.policy-section h2 {
  font-size: 24px;
  letter-spacing: 0.03em;
  margin-bottom: 10px;
}

.policy-section p,
.policy-section li {
  color: var(--color-text-secondary);
  font-size: 16px;
  line-height: 1.7;
}

.policy-section ul { padding-left: 20px; }

.policy-footer {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: var(--text-sm);
}

.policy-footer a {
  color: var(--color-accent-base);
  font-weight: 700;
  text-decoration: none;
}

.policy-footer a:hover { text-decoration: underline; }
