/* Shared styles for RankWithFriends content + archive pages */
:root {
  --purple: #7c3aed; --blue: #2563eb;
  --grad: linear-gradient(135deg, #a855f7 0%, #6366f1 50%, #3b82f6 100%);
  --ink: #0f172a; --muted: #64748b; --line: #e2e8f0;
}
* { box-sizing: border-box; }
html, body { margin: 0; }
body {
  font-family: ui-rounded, "SF Pro Rounded", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: var(--ink);
  background: linear-gradient(160deg, #f3e8ff 0%, #eef2ff 45%, #eff6ff 100%);
  min-height: 100dvh; line-height: 1.6;
}
.page { max-width: 720px; margin: 0 auto; padding: 20px 20px 60px; }
.brandbar { display: flex; align-items: center; gap: 10px; margin: 8px 0 24px; }
.brandbar a { text-decoration: none; color: inherit; display: flex; align-items: center; gap: 10px; }
.logo { width: 38px; height: 38px; border-radius: 11px; background: var(--grad);
  display: grid; place-items: center; box-shadow: 0 8px 20px rgba(124,58,237,0.3); }
.logo svg { width: 21px; height: 21px; }
.brandbar b { font-size: 17px; }
h1 { font-size: 30px; margin: 10px 0 6px; }
h2 { font-size: 20px; margin: 28px 0 6px; }
p, li { font-size: 16px; color: #1e293b; }
.lead { color: var(--muted); font-size: 17px; }
a { color: var(--purple); }
.card { background: rgba(255,255,255,0.7); border: 1px solid rgba(255,255,255,0.6);
  border-radius: 18px; padding: 20px; margin: 14px 0; box-shadow: 0 10px 30px rgba(15,23,42,0.05); }
.btn { display: inline-block; text-decoration: none; font-weight: 800; color: #fff;
  background: var(--grad); padding: 14px 22px; border-radius: 14px;
  box-shadow: 0 10px 24px rgba(99,102,241,0.3); }
.step { display: flex; gap: 14px; align-items: flex-start; margin: 14px 0; }
.step .n { flex: 0 0 30px; height: 30px; border-radius: 50%; background: var(--grad);
  color: #fff; font-weight: 800; display: grid; place-items: center; }
footer.nav { margin-top: 40px; padding-top: 18px; border-top: 1px solid var(--line);
  display: flex; flex-wrap: wrap; gap: 8px 18px; font-size: 14px; }
footer.nav a { color: var(--muted); text-decoration: none; }
footer.nav a:hover { color: var(--purple); }
.meter { letter-spacing: 1px; }
.pill { display: inline-block; font-size: 12px; font-weight: 700; color: var(--purple);
  background: rgba(124,58,237,0.1); padding: 3px 10px; border-radius: 99px; }
.muted { color: var(--muted); }
