/* ===== SHARED PAGE STYLES ===== */
.page-hero {
  min-height: 40vh;
  display: flex;
  align-items: center;
  padding: calc(var(--nav-height) + 64px) 24px 64px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, var(--lavender-ultra) 0%, #EDE9FE 100%);
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.page-hero .orb-1 {
  width: 400px; height: 400px;
  top: -80px; right: -80px;
  opacity: 0.2;
  background: radial-gradient(circle, #9B8EC4 0%, #7C3AED 60%, transparent 100%);
  filter: blur(60px);
  position: absolute;
  border-radius: 50%;
}
.page-hero .orb-2 {
  width: 300px; height: 300px;
  bottom: -40px; left: -40px;
  opacity: 0.15;
  background: radial-gradient(circle, #DDD6FE 0%, #6366F1 60%, transparent 100%);
  filter: blur(50px);
  position: absolute;
  border-radius: 50%;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero-sub {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 540px;
  margin-top: 8px;
  line-height: 1.7;
}

/* ===== PROSE CONTENT ===== */
.page-content { background: var(--surface); }
.page-prose {
  max-width: 740px;
  margin: 0 auto;
}
.page-prose h2 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text-primary);
  margin: 40px 0 12px;
  padding-top: 8px;
  border-top: 1px solid var(--border);
}
.page-prose h2:first-of-type { margin-top: 0; border-top: none; }
.page-prose p {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 16px;
  font-size: 0.97rem;
}
.page-prose ul {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 16px;
  font-size: 0.97rem;
  padding-left: 20px;
}
.page-prose ul li { margin-bottom: 6px; }
.page-prose a { color: var(--violet); text-decoration: underline; text-underline-offset: 2px; }
.page-prose a:hover { color: var(--violet-dark); }


.page-cta-block {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.page-cta-block p { color: var(--text-secondary); font-size: 1rem; margin: 0; }

