/* Boulderest site — shared styles, matches the app's dark purple theme */
:root {
  --bg: #14101e;
  --surface: #1e1830;
  --text: #f2effa;
  --muted: #a79fc0;
  --accent: #8a6bff;
  --line: #2c2542;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Helvetica, Arial, sans-serif;
  line-height: 1.65;
}
.wrap { max-width: 720px; margin: 0 auto; padding: 48px 24px 80px; }
header.site { display: flex; align-items: center; gap: 12px; margin-bottom: 40px; }
header.site img { width: 44px; height: 44px; border-radius: 10px; }
header.site a { color: var(--text); text-decoration: none; font-weight: 800; font-size: 20px; }
h1 { font-size: 32px; font-weight: 800; margin-bottom: 6px; }
h2 { font-size: 20px; font-weight: 700; margin: 32px 0 10px; }
p, li { color: var(--muted); }
p strong, li strong { color: var(--text); }
.updated { font-size: 14px; color: var(--muted); margin-bottom: 28px; }
ul { padding-left: 22px; margin: 10px 0; }
a { color: var(--accent); }
.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 20px 22px;
  margin: 16px 0;
}
footer { margin-top: 56px; padding-top: 20px; border-top: 1px solid var(--line);
  font-size: 14px; color: var(--muted); }
footer a { margin-right: 16px; }
.hero { text-align: center; padding: 40px 0 10px; }
.hero .logo { width: 96px; height: 96px; border-radius: 22px; margin-bottom: 20px; }
.hero p.tag { font-size: 19px; max-width: 480px; margin: 10px auto 0; }
.badges { display: flex; gap: 12px; justify-content: center; margin-top: 28px; flex-wrap: wrap; }
.badge {
  border: 1px solid var(--line); background: var(--surface); color: var(--text);
  border-radius: 12px; padding: 12px 20px; text-decoration: none; font-weight: 600;
}
.badge span { display: block; font-size: 11px; color: var(--muted); font-weight: 400; }
