/* Shared CSS pulled into privacy / terms / contact pages via inline link. */
:root {
  --bg-grad-from: #143638;
  --bg-grad-to: #0F2A2E;
  --surface: rgba(26, 61, 66, 0.55);
  --surface-solid: #1A3D42;
  --surface-hover: rgba(244, 251, 232, 0.05);
  --border: rgba(244, 251, 232, 0.08);
  --border-strong: rgba(244, 251, 232, 0.18);
  --text: #F4FBE8;
  --text-muted: rgba(244, 251, 232, 0.62);
  --text-faint: rgba(244, 251, 232, 0.42);
  --accent: #C7F277;
  --accent-bright: #D6F694;
  --accent-soft: rgba(199, 242, 119, 0.14);
  --accent-text: #0F2A2E;
}
html.theme-light {
  --bg-grad-from: #F6F2E5;
  --bg-grad-to: #FFFFFF;
  --surface: rgba(255, 255, 255, 0.85);
  --surface-solid: #FFFFFF;
  --surface-hover: rgba(15, 42, 46, 0.04);
  --border: rgba(15, 42, 46, 0.10);
  --border-strong: rgba(15, 42, 46, 0.20);
  --text: #0F2A2E;
  --text-muted: rgba(15, 42, 46, 0.65);
  --text-faint: rgba(15, 42, 46, 0.45);
  --accent-bright: #B3E862;
  --accent-soft: rgba(199, 242, 119, 0.22);
}
html, body {
  font-family: 'Inter', system-ui, sans-serif;
  background: radial-gradient(ellipse at top, var(--bg-grad-from), var(--bg-grad-to) 60%);
  color: var(--text); min-height: 100vh; margin: 0;
}
.glass { background: var(--surface); backdrop-filter: blur(14px); border: 1px solid var(--border); }
.text-muted { color: var(--text-muted); }
.text-faint { color: var(--text-faint); }
.nav-glass { background: var(--surface); backdrop-filter: blur(14px); border-bottom: 1px solid var(--border); }
.wordmark { font-weight: 500; letter-spacing: -0.025em; }
a.btn-primary { background: var(--accent); color: var(--accent-text); padding: 8px 16px; border-radius: 10px; font-weight: 600; font-size: 14px; text-decoration: none; }
a.btn-primary:hover { background: var(--accent-bright); }
a.btn-ghost { background: var(--surface-hover); color: var(--text); border: 1px solid var(--border); padding: 8px 16px; border-radius: 10px; font-weight: 600; font-size: 14px; text-decoration: none; }
a.btn-ghost:hover { background: var(--surface); border-color: var(--border-strong); }
.legal-page main { max-width: 720px; margin: 0 auto; padding: 56px 24px 80px; line-height: 1.65; }
.legal-page h1 { font-size: 32px; font-weight: 600; letter-spacing: -0.02em; margin: 0 0 8px; }
.legal-page .updated { color: var(--text-faint); font-size: 13px; margin-bottom: 32px; }
.legal-page h2 { font-size: 18px; font-weight: 600; margin: 28px 0 8px; color: var(--text); }
.legal-page p, .legal-page li { color: var(--text-muted); font-size: 15px; }
.legal-page ul { padding-left: 22px; }
.legal-page a { color: var(--accent-bright); text-decoration: none; }
.legal-page a:hover { text-decoration: underline; }
.legal-page .stub-note {
  background: var(--surface-hover); border: 1px dashed var(--border-strong);
  padding: 12px 16px; border-radius: 12px; color: var(--text-muted); font-size: 13px;
  margin: 24px 0;
}

/* Floating pill header — matches landing/pricing/faq/coaches. */
.nav-pill {
  background: var(--surface);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  box-shadow: 0 16px 40px -16px rgba(15, 42, 46, 0.18),
              0 1px 0 0 rgba(255, 255, 255, 0.35) inset;
}
html.theme-light .nav-pill {
  box-shadow: 0 12px 32px -12px rgba(15, 42, 46, 0.10),
              0 1px 0 0 rgba(255, 255, 255, 0.6) inset;
}
.nav-link {
  font-size: 14px; font-weight: 500; color: var(--text-muted);
  padding: 6px 10px; border-radius: 8px;
  transition: color .15s ease, background .15s ease;
  text-decoration: none;
}
.nav-link:hover { color: var(--text); background: var(--surface-hover); }
.nav-link.active { color: var(--text); }
