/* ============================================================
   POLICY PAGES — Shared styles for all legal/policy pages
   ============================================================ */
.policy-page {
  min-height: 100vh;
  padding-top: var(--navbar-height);
  background: var(--bg-primary);
  position: relative;
  overflow: hidden;
}

.policy-page__bg-glow {
  position: absolute;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(108, 99, 255, 0.07) 0%, transparent 70%);
  top: -100px;
  right: -100px;
  pointer-events: none;
  z-index: 0;
}

/* Hero header */
.policy-hero {
  padding: 72px 24px 56px;
  position: relative;
  z-index: 1;
  border-bottom: 1px solid var(--border-color);
  background: var(--bg-secondary);
}

.policy-hero__inner {
  max-width: 860px;
  margin: 0 auto;
}

.policy-hero__back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.87rem;
  color: var(--text-secondary);
  margin-bottom: 28px;
  transition: color var(--transition-fast);
  text-decoration: none;
}

.policy-hero__back:hover {
  color: var(--accent-secondary);
}

.policy-hero__label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent-secondary);
  background: rgba(0, 212, 255, 0.1);
  border: 1px solid rgba(0, 212, 255, 0.2);
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.policy-hero__title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  margin-bottom: 12px;
}

.policy-hero__meta {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.policy-hero__meta span {
  margin-right: 20px;
}

/* Content area */
.policy-content {
  max-width: 860px;
  margin: 0 auto;
  padding: 64px 24px 100px;
  position: relative;
  z-index: 1;
}

/* Section blocks */
.policy-section {
  margin-bottom: 48px;
}

.policy-section:last-child {
  margin-bottom: 0;
}

.policy-section h2 {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  gap: 10px;
}

.policy-section h2 .section-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--accent-gradient);
  font-size: 0.75rem;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
}

.policy-section h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 20px 0 10px;
}

.policy-section p {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 14px;
}

.policy-section p:last-child {
  margin-bottom: 0;
}

.policy-section ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 12px 0;
}

.policy-section ul li {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.7;
  padding-left: 20px;
  position: relative;
}

.policy-section ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--accent-primary);
  font-weight: 700;
}

.policy-section a {
  color: var(--accent-secondary);
  text-decoration: underline;
  transition: opacity var(--transition-fast);
}

.policy-section a:hover {
  opacity: 0.8;
}

/* Highlight box */
.policy-highlight {
  background: var(--accent-gradient-soft);
  border: 1px solid rgba(108, 99, 255, 0.2);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  margin: 20px 0;
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.75;
}

.policy-highlight strong {
  color: var(--text-primary);
}

/* Contact box */
.policy-contact-box {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
  margin-top: 56px;
}

.policy-contact-box h3 {
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.policy-contact-box p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.policy-contact-box a.btn-primary {
  display: inline-flex;
}
