﻿/* ============================================================
   Regency Analytics LLC — Secondary Content Pages
   Used by: careers, support, privacy, terms, legal,
            accessibility, documentation.
   Requires: tokens.css, base.css, nav-footer.css loaded first.
   ============================================================ */

/* ---------- Body overrides for content pages --------------- */
body {
  background: var(--bg-page);
  background-attachment: fixed;
  line-height: 1.65;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* ---------- Main content area ------------------------------ */
main {
  flex: 1;
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
  padding: 40px 24px 64px;
}

/* ---------- Page typography -------------------------------- */
/* NOTE: .page-kicker uses --blue-500 (bright accent).
   --blue-600 is the dark nav colour; --blue-500 is the link/highlight colour. */
.page-kicker {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--blue-500);
  margin: 0 0 12px;
}

h1 {
  font-family: var(--font-display);
  font-size: clamp(26px, 4vw, 36px);
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 16px;
  color: var(--navy-900);
}

.lead {
  font-size: 17px;
  color: var(--gray-500);
  margin: 0 0 28px;
  max-width: 62ch;
}

/* ---------- Page sections ---------------------------------- */
.page-section { margin-bottom: 28px; }

.page-section h2 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  margin: 32px 0 12px;
  color: var(--navy-900);
}

.page-section p,
.page-section li {
  color: var(--gray-500);
  margin: 0 0 12px;
}

.page-section ul {
  margin: 0 0 16px;
  padding-left: 1.25rem;
}

.page-section li { margin-bottom: 8px; }

/* ---------- Contact box ------------------------------------ */
.contact-box {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 14px;
  padding: 24px;
  margin-top: 24px;
}

.contact-box a {
  color: var(--blue-500);
  font-weight: 700;
}

/* ---------- Responsive ------------------------------------- */
@media (max-width: 520px) {
  main { padding: 28px 16px 48px; }
}
