/* =========================================================
   Legal page — page-specific styles
   Extends the shared design system in /assets/css/site.css
========================================================= */

/* -------- page hero (simple page-top header, not the video hero) -------- */
.page-hero {
  padding: 160px 0 90px;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}
.page-hero::before {
  content: "";
  position: absolute;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: var(--grad-brand);
  filter: blur(140px);
  opacity: 0.18;
  top: -220px;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}
.page-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0 auto;
}
.page-hero h1 {
  font-size: clamp(2rem, 4.5vw, 3rem);
  color: var(--text);
}
.page-hero .lead {
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  color: var(--text-muted);
  margin: 0;
}

/* -------- legal document grid -------- */
.legal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.legal-card {
  padding: 34px 30px;
  display: flex;
  flex-direction: column;
}
.legal-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--grad-brand-soft);
  color: var(--teal);
  margin-bottom: 22px;
}
.legal-card-icon svg { width: 24px; height: 24px; }
.legal-card h3 { font-size: 1.15rem; margin-bottom: 10px; }
.legal-card p { font-size: 0.92rem; margin-bottom: 24px; flex: 1; }
.legal-card .btn svg { width: 16px; height: 16px; }

/* -------- disabled / coming-soon button state -------- */
.btn-disabled {
  background: transparent;
  color: var(--text-faint);
  border: 1px solid var(--border);
  cursor: not-allowed;
  opacity: 0.55;
  pointer-events: none;
}

@media (max-width: 991px) {
  .legal-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .page-hero { padding: 140px 0 60px; }
  .legal-grid { grid-template-columns: 1fr; }
}
