  * { box-sizing: border-box; }
  html { scrollbar-gutter: stable; overflow-x: hidden; }
  html, body { margin: 0; padding: 0; }
  body {
    background:
      radial-gradient(1200px 600px at 20% -10%, rgba(255, 180, 120, 0.04), transparent 60%),
      radial-gradient(900px 500px at 110% 0%, rgba(80, 200, 160, 0.05), transparent 60%),
      var(--bg);
    color: var(--text);
    font: 14px/1.5 -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Inter, sans-serif;
    min-height: 100vh;
    min-height: 100dvh;
  }

  a { color: var(--accent-soft); text-decoration: none; }
  a:hover { color: var(--ok); }
  button { font: inherit; color: inherit; }
  input, textarea, select {
    font: inherit;
    color: var(--text);
    background: linear-gradient(180deg, #1d1916 0%, #181512 100%);
    border: 1px solid var(--border-2);
    border-radius: var(--r-sm);
    padding: 9px 12px;
    outline: none;
    width: 100%;
  }
  input:focus, textarea:focus, select:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-glow);
  }
  textarea { resize: vertical; min-height: 80px; }
  label { display: block; font-size: 12px; color: var(--muted); margin: 0 0 6px; }
  .row { display: grid; gap: 12px; }
  .row.two { grid-template-columns: 1fr 1fr; }

  /* Misc */
  .muted { color: var(--muted); }
  .small { font-size: 12px; }
  .stack { display: flex; flex-direction: column; gap: 12px; }
  .hstack { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; }
  .spacer { flex: 1; }
  pre.code {
    background: var(--bg); border: 1px solid var(--border-2); border-radius: var(--r-sm);
    padding: 10px; overflow: auto; font-size: 12px; color: var(--muted);
  }
  .divider { height: 1px; background: var(--border-2); margin: 14px 0; }
