/* Minimal site chrome matching the app palette (see design-prompt.md).
   The Claude Design homepage will ship its own styles; this covers the
   legal/support pages and the placeholder home. */
:root {
  --purple: #7c3aed;
  --purple-deep: #9333ea;
  --gold: #e6a82e;
  --bg: #faf8ff;
  --text: #1c1430;
  --subtle: #6b6480;
  --card: #ffffff;
}
* { box-sizing: border-box; }
body {
  font: 16px/1.6 -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  margin: 0; color: var(--text); background: var(--bg);
}
main { max-width: 720px; margin: 0 auto; padding: 16px 20px 64px; }
.site-header { max-width: 720px; margin: 0 auto; padding: 24px 20px 0; }
.brand { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; color: var(--text); }
.logo-badge {
  position: relative; width: 44px; height: 44px; border-radius: 12px;
  background: var(--purple); color: #fff; font-size: 26px; font-weight: 900;
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 14px rgba(124, 58, 237, .3);
}
.crown { position: absolute; top: -10px; left: 8px; font-size: 15px; transform: rotate(-14deg); }
.brand-name { font-size: 22px; font-weight: 800; letter-spacing: -0.3px; }
h1 { font-size: 28px; font-weight: 800; letter-spacing: -0.5px; margin: 24px 0 8px; }
h2 { font-size: 19px; margin: 28px 0 8px; }
a { color: var(--purple); }
code { background: #efeaff; padding: 1px 5px; border-radius: 4px; }
.muted { color: var(--subtle); font-size: 14px; }
.hero { text-align: center; padding: 48px 0; }
.site-footer { max-width: 720px; margin: 0 auto; padding: 24px 20px 48px; text-align: center; }
.site-footer nav { font-size: 14px; }
.site-footer nav a { color: var(--subtle); }
