:root { --fg: #1c1c1c; --muted: #666; --accent: #b34700; }
* { box-sizing: border-box; }
body { font: 16px/1.5 system-ui, sans-serif; color: var(--fg);
       margin: 0; background: #faf8f5; }
header { display: flex; justify-content: space-between;
         align-items: center; padding: 0.6rem 1rem;
         background: #fff; border-bottom: 1px solid #eee; }
.brand { text-decoration: none; color: inherit; font-weight: 700; }
nav a { margin-left: 1rem; color: var(--accent); }
main { max-width: 60rem; margin: 0 auto; padding: 1rem; }
h1 { font-size: 1.5rem; }
.hero h1 { font-size: 2rem; }
.pill { font-size: 0.8em; font-weight: 600; padding: 0.1rem 0.6rem;
        border-radius: 1rem; background: #e7e7e7; vertical-align: middle; }
.pill.warn { background: #ffd9a8; color: #7c3d00; }
.warn { color: #b34700; font-weight: 600; }
table { border-collapse: collapse; width: 100%; background: #fff;
        margin: 1rem 0; }
th, td { text-align: left; padding: 0.5rem 0.75rem;
         border-bottom: 1px solid #eee; }
th { font-size: 0.85rem; color: var(--muted); text-transform: uppercase; }
.hp { position: absolute; left: -9999px; }
#waitlist-form { display: flex; gap: 0.5rem; flex-wrap: wrap;
                 margin: 1rem 0; }
#waitlist-form input[type=email] { flex: 2 1 16rem; padding: 0.6rem;
    border: 1px solid #ccc; border-radius: 4px; }
#waitlist-form input[type=text] { flex: 1 1 10rem; padding: 0.6rem;
    border: 1px solid #ccc; border-radius: 4px; }
#waitlist-form button { padding: 0.6rem 1.2rem; color: #fff;
    background: var(--accent); border: 0; border-radius: 4px;
    font-weight: 600; cursor: pointer; }
.points { display: grid; grid-template-columns: repeat(3, 1fr);
          gap: 1rem; margin-top: 2rem; }
@media (max-width: 40rem) { .points { grid-template-columns: 1fr; } }
canvas { background: #fff; border: 1px solid #eee; max-width: 100%; }
