/* ─────────────────────────────────────────
   AURALYNX PAY — Policy Pages Stylesheet
   ───────────────────────────────────────── */

.policy-hero {
  padding: 140px 0 60px;
  background: var(--bg2);
  border-bottom: 1px solid var(--border);
}
.policy-hero .section-label { margin-bottom: 10px; }
.policy-hero h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -.02em;
  margin-bottom: 12px;
}
.policy-meta {
  font-size: .88rem;
  color: var(--text-dim);
}
.policy-meta span { color: var(--brand); }

.policy-body {
  padding: 64px 0 100px;
  background: var(--bg);
}
.policy-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 56px;
  align-items: start;
}

/* Sticky sidebar TOC */
.policy-toc {
  position: sticky;
  top: 90px;
}
.policy-toc h5 {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 14px;
}
.policy-toc a {
  display: block;
  font-size: .85rem;
  color: var(--text-muted);
  padding: 7px 12px;
  border-left: 2px solid var(--border);
  margin-bottom: 2px;
  transition: color .2s, border-color .2s, background .2s;
  border-radius: 0 6px 6px 0;
}
.policy-toc a:hover,
.policy-toc a.active {
  color: var(--brand);
  border-left-color: var(--brand);
  background: rgba(247,148,29,.06);
}

/* Content */
.policy-content { max-width: 780px; }
.policy-section { margin-bottom: 48px; }
.policy-section h2 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
  color: var(--text);
}
.policy-section p {
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 14px;
  font-size: .97rem;
}
.policy-section ul {
  list-style: disc;
  padding-left: 22px;
  color: var(--text-muted);
  font-size: .97rem;
  line-height: 1.85;
  margin-bottom: 14px;
}
.policy-section ul li { margin-bottom: 6px; }
.policy-section strong { color: var(--text); }
.policy-section a { color: var(--brand); text-decoration: underline; }

.policy-notice {
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 3px solid var(--brand);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  margin-bottom: 14px;
  color: var(--text-muted);
  font-size: .93rem;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .policy-layout { grid-template-columns: 1fr; }
  .policy-toc { position: static; display: none; }
  .policy-hero { padding: 120px 0 40px; }
}
