/* Public marketing/legal pages — standalone (no app bundle). */
:root {
  --bg: #0b0b0d;
  --surface: #141417;
  --border: rgba(255, 255, 255, 0.08);
  --text: #d7d7db;
  --muted: #9a9aa2;
  --faint: #6b6b73;
  --strong: #f4f4f5;
  --gold: #d4af37;
  --gold-bright: #e8c457;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.65;
  font-size: 16px;
}
a { color: var(--gold-bright); text-decoration: none; }
a:hover { text-decoration: underline; }
.wrap { max-width: 860px; margin: 0 auto; padding: 0 22px; }

.site-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 0; border-bottom: 1px solid var(--border);
}
.site-header .brand { display: flex; align-items: center; gap: 10px; }
.site-header img { height: 30px; width: auto; }
.nav a { color: var(--muted); margin-left: 20px; font-size: 14px; }
.nav a:hover { color: var(--text); text-decoration: none; }
.btn {
  display: inline-block; background: var(--gold); color: #1a1400; font-weight: 700;
  padding: 9px 18px; border-radius: 10px; font-size: 14px;
}
.btn:hover { text-decoration: none; background: var(--gold-bright); }

.hero { text-align: center; padding: 70px 0 50px; }
.hero img { height: 56px; margin-bottom: 18px; }
.hero h1 { font-size: 34px; color: var(--strong); margin: 0 0 14px; letter-spacing: -0.02em; }
.hero p { font-size: 17px; color: var(--muted); max-width: 620px; margin: 0 auto 26px; }

.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; padding: 20px 0 60px; }
.card {
  background: var(--surface); border: 1px solid var(--border); border-radius: 14px; padding: 20px;
}
.card h3 { margin: 0 0 8px; font-size: 15px; color: var(--strong); }
.card p { margin: 0; font-size: 14px; color: var(--muted); }
.gold { color: var(--gold-bright); }

.legal { padding: 40px 0 60px; }
.legal h1 { color: var(--strong); font-size: 28px; }
.legal h2 { color: var(--strong); font-size: 18px; margin-top: 32px; }
.legal p, .legal li { color: var(--text); font-size: 15px; }
.legal .updated { color: var(--faint); font-size: 13px; }

.site-footer {
  border-top: 1px solid var(--border); padding: 26px 0; margin-top: 40px;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  color: var(--faint); font-size: 13px;
}
.site-footer a { color: var(--muted); margin-left: 16px; }
@media (max-width: 680px) { .features { grid-template-columns: 1fr; } .nav a { margin-left: 14px; } }
