/* Shared legal page styles */
:root {
  --orange:   #F07028;
  --orange-dk:#D45C18;
  --navy:     #1C2E4A;
  --navy-lt:  #2A4268;
  --cream:    #FEF8F3;
  --text:     #1A1A1A;
  --muted:    #6B7280;
  --border:   #E5E7EB;
}
* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: var(--cream);
  color: var(--text);
  min-height: 100vh;
}

/* ── Nav ── */
nav {
  background: var(--navy);
  padding: 0 40px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex; align-items: center; gap: 6px;
  text-decoration: none;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: .95rem;
}
.nav-logo .n { font-weight: 300; color: rgba(255,255,255,.75); }
.nav-logo .dot { color: var(--orange); font-weight: 700; margin: 0 3px; }
.nav-logo .b { font-weight: 700; color: #fff; }
.nav-back {
  color: rgba(255,255,255,.55); font-size: .8rem; text-decoration: none;
  display: flex; align-items: center; gap: 6px;
}
.nav-back:hover { color: rgba(255,255,255,.9); }

/* ── Hero strip ── */
.legal-hero {
  background: var(--navy);
  padding: 48px 40px 40px;
  text-align: center;
}
.legal-hero .tag {
  display: inline-block;
  background: rgba(240,112,40,.2);
  color: var(--orange);
  font-size: .72rem; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  padding: 4px 14px; border-radius: 20px;
  margin-bottom: 16px;
}
.legal-hero h1 {
  font-size: 2rem; font-weight: 700;
  color: #fff; margin-bottom: 8px;
}
.legal-hero p {
  color: rgba(255,255,255,.5);
  font-size: .88rem;
}

/* ── Content ── */
.legal-body {
  max-width: 760px;
  margin: 0 auto;
  padding: 56px 24px 96px;
}


/* ── Sections ── */
.legal-section { margin-bottom: 40px; }
.legal-section h2 {
  font-size: 1.05rem; font-weight: 700;
  color: var(--navy); margin-bottom: 12px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--orange);
  display: inline-block;
}
.legal-section p, .legal-section li {
  font-size: .92rem; line-height: 1.85;
  color: #374151; margin-bottom: 10px;
}
.legal-section ul { padding-left: 20px; }
.legal-section ul li { margin-bottom: 6px; }
.legal-section a { color: var(--orange); text-decoration: none; }
.legal-section a:hover { text-decoration: underline; }

/* ── Footer note ── */
.legal-footer {
  margin-top: 56px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-size: .8rem;
  color: var(--muted);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px;
}
