/* ============================================================
   PRIVACY POLICY PAGE
   ============================================================ */

/* Hero: extend behind transparent navbar */
.page-hero {
  margin-top: 0;
  padding-top: calc(var(--nav-h) + 80px);
}

@keyframes hero-item-in {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
.page-hero .page-hero-eyebrow {
  animation: hero-item-in 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.05s both;
}
.page-hero h1 {
  animation: hero-item-in 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.2s both;
}
.page-hero p {
  animation: hero-item-in 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.38s both;
}

/* ---- Policy body ---- */
.policy-body {
  background: #fff;
  padding: 72px 32px 96px;
}
.policy-inner {
  max-width: 780px;
  margin: 0 auto;
}
.policy-meta {
  font-size: 13px;
  color: var(--text-sub);
  margin-bottom: 48px;
}
.policy-meta p {
  margin: 0 0 4px;
}
.policy-section {
  margin-bottom: 48px;
}
.policy-section h2 {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 400;
  color: var(--text-base);
  margin-bottom: 16px;
  letter-spacing: -0.2px;
}
.policy-section h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-base);
  margin: 24px 0 10px;
  letter-spacing: 0.3px;
}
.policy-section p {
  font-size: 15.5px;
  color: var(--text-sub);
  line-height: 1.78;
  margin-bottom: 14px;
}
.policy-section p:last-child { margin-bottom: 0; }
.policy-section ul {
  margin: 12px 0 14px 20px;
  padding: 0;
}
.policy-section ul li {
  font-size: 15.5px;
  color: var(--text-sub);
  line-height: 1.78;
  margin-bottom: 6px;
}
.policy-section a { color: var(--blue); text-decoration: none; }
.policy-section a:hover { text-decoration: underline; }
.policy-divider {
  border: none;
  border-top: 1px solid rgba(0,0,0,0.08);
  margin: 0 0 48px;
}
.legal-nav {
  background: var(--bg-surface);
  border: 1px solid rgba(0,130,210,0.15);
  border-radius: 10px;
  padding: 24px 28px;
  margin-bottom: 52px;
  display: flex;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
}
.legal-nav span {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-sub);
}
.legal-nav a {
  font-size: 14px;
  color: var(--blue);
  text-decoration: none;
}
.legal-nav a:hover { text-decoration: underline; }
.legal-nav a.active {
  color: var(--text-base);
  font-weight: 700;
  pointer-events: none;
}

@media (max-width: 640px) {
  .policy-body { padding: 48px 20px 72px; }
  .legal-nav { gap: 12px; }
}
