/* The trial page: one decision, so one column and nothing competing with the button. */
body { margin: 0; background: var(--bg); color: var(--text); line-height: 1.6;
  font-family: system-ui, 'Segoe UI', Roboto, sans-serif; }
#main { max-width: 640px; margin: 0 auto; padding: 24px 18px 60px; }
h1 { font-size: 30px; line-height: 1.2; margin: 18px 0 10px; }
.lede { font-size: 17px; margin: 0 0 16px; }
.muted { color: var(--muted, #8b98a5); }
.small { font-size: 13.5px; }
.ok { color: var(--accent, #3fb950); }
.err { color: var(--danger, #f85149); }
.facts { list-style: none; padding: 0; margin: 20px 0 24px; }
.facts li { padding: 10px 0 10px 26px; position: relative; border-bottom: 1px solid var(--border, #2d3744); }
.facts li::before { content: "✓"; position: absolute; left: 0; color: var(--accent, #3fb950); }
.acts { display: flex; flex-wrap: wrap; gap: 10px; margin: 22px 0; }
.btn { display: inline-flex; align-items: center; justify-content: center; min-height: 48px;
  padding: 12px 20px; border-radius: 11px; text-decoration: none; font-weight: 700;
  border: 1px solid var(--border, #2d3744); color: var(--text); cursor: pointer; }
.btn-primary { background: var(--accent, #3fb950); border-color: var(--accent, #3fb950);
  color: var(--on-accent, #0d1218); }
.btn.xl { font-size: 18px; padding: 16px 26px; width: min(100%, 420px); }
.back { color: var(--muted, #8b98a5); text-decoration: none; }
@media (max-width: 600px) {
  h1 { font-size: 25px; }
  .acts .btn { flex: 1 1 100%; }
}
