/* ═══════════════════════════════════════════════════════════
   Checkout Reward — Legal Pages (Terms, Privacy)
   ═══════════════════════════════════════════════════════════ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --orange: #FF6B2C;
  --dark: #1A1A1A;
  --text: #444;
  --subtle: #666;
  --grey-50: #FAFAFB;
  --grey-100: #F3F3F6;
  --grey-200: #E5E5EA;
  --white: #FFF;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--dark); line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

.legal-nav {
  display: flex; align-items: center; justify-content: space-between;
  max-width: 760px; margin: 0 auto; padding: 24px;
  border-bottom: 1px solid var(--grey-200);
}
.legal-logo img { height: 28px; }

.legal-content {
  max-width: 760px; margin: 0 auto; padding: 48px 24px 80px;
}
.legal-content h1 {
  font-size: 2.2rem; font-weight: 800; margin-bottom: 8px; letter-spacing: -.01em;
}
.last-updated {
  font-size: .88rem; color: var(--subtle); margin-bottom: 40px;
  padding-bottom: 24px; border-bottom: 1px solid var(--grey-200);
}
.legal-content h2 {
  font-size: 1.2rem; font-weight: 700; margin: 40px 0 12px;
  color: var(--dark); letter-spacing: -.01em;
}
.legal-content p {
  font-size: .94rem; color: var(--text); margin-bottom: 16px; line-height: 1.75;
}
.legal-content ul { margin: 0 0 16px 24px; }
.legal-content li {
  font-size: .94rem; color: var(--text); margin-bottom: 8px; line-height: 1.7;
}
.legal-content a { color: var(--orange); text-decoration: none; font-weight: 500; }
.legal-content a:hover { text-decoration: underline; }

.legal-footer {
  background: var(--dark); padding: 24px; text-align: center;
}
.legal-footer p { color: #777; font-size: .82rem; }
.legal-footer a {
  color: #999; text-decoration: none; transition: color .2s;
}
.legal-footer a:hover { color: var(--orange); }
