/* Marketing site + /demo additions — builds on style.css tokens & mk-* classes. */

/* ---- plans / tiers ---- */
.plans { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px; max-width: 1080px; margin: 0 auto; }
.plan-card { background: var(--surface); border: 1px solid var(--border); border-radius: 16px; padding: 22px 20px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; }
.plan-card.feature { border-color: var(--brand); box-shadow: 0 0 0 1px var(--brand) inset, var(--shadow-sm); }
.plan-card .tier { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; color: var(--brand); }
.plan-card .price { font-size: 26px; font-weight: 800; margin: 8px 0 2px; letter-spacing: -.02em; }
.plan-card .price small { font-size: 13px; font-weight: 500; color: var(--muted); }
.plan-card ul { list-style: none; padding: 0; margin: 12px 0 18px; font-size: 14px; color: var(--ink-2, var(--ink)); }
.plan-card li { padding: 5px 0 5px 22px; position: relative; }
.plan-card li::before { content: "✓"; position: absolute; left: 0; color: var(--brand); font-weight: 700; }
.plan-card .plan-cta { margin-top: auto; }

/* ---- book a walkthrough ---- */
.book-form { max-width: 620px; margin: 0 auto; background: var(--surface); border: 1px solid var(--border); border-radius: 16px; padding: 24px; box-shadow: var(--shadow-sm); }
.book-form .row { display: flex; gap: 12px; flex-wrap: wrap; }
.book-form label { display: block; flex: 1; min-width: 180px; margin-bottom: 12px; }
.book-form label > span { display: block; font-size: 13px; font-weight: 600; color: var(--muted); margin-bottom: 5px; }
.book-form input, .book-form textarea, .book-form select {
  width: 100%; box-sizing: border-box; font: inherit; font-size: 14px; color: var(--ink);
  background: var(--bg); border: 1px solid var(--border-strong, var(--border)); border-radius: 10px; padding: 10px 12px; }
.book-form input:focus, .book-form textarea:focus, .book-form select:focus {
  outline: none; border-color: var(--brand); box-shadow: 0 0 0 3px var(--brand-soft); }
.book-ok { text-align: center; padding: 28px; }
.book-ok .big { font-size: 40px; line-height: 1; }
.book-msg { font-size: 13px; margin-top: 8px; min-height: 18px; }
.book-msg.err { color: var(--bad-fg, #b91c1c); }

/* ---- /demo page ---- */
.demo-wrap { max-width: 960px; margin: 26px auto 0; padding: 0 20px; }
.demo-banner { display: flex; align-items: center; justify-content: space-between; gap: 18px;
  padding: 16px 20px; margin-bottom: 22px; border-left: 3px solid var(--brand); }
.demo-banner div { font-size: 14px; line-height: 1.5; }
.report-main { flex: 1; min-width: 0; }
.nav-rail-title { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); margin: 0 0 8px; }
.nav-list { list-style: none; padding: 0; margin: 0; font-size: 13.5px; }
.nav-list li { margin: 2px 0; }
.nav-list a { color: var(--muted); text-decoration: none; display: block; padding: 4px 8px; border-radius: 7px; }
.nav-list a:hover { background: var(--surface-2); color: var(--ink); }
.demo-cta { text-align: center; padding: 30px 24px; margin: 30px 0 50px; }
.demo-cta h2 { font-size: 22px; margin: 0 0 8px; letter-spacing: -.015em; }
.demo-cta p { color: var(--muted); max-width: 620px; margin: 0 auto 18px; }
@media (max-width: 640px){ .demo-banner { flex-direction: column; align-items: flex-start; } }
