/* Base reset and typography — see docs/superpowers/specs/2026-04-17-web-ui-redesign-design.md §4 */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  font-family: Inter, "Noto Sans SC", "HarmonyOS Sans SC", "PingFang SC",
    "Microsoft YaHei UI", system-ui, sans-serif;
  font-size: 15px;
  line-height: 22px;
  color: var(--text);
  background: var(--bg-app);
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "tnum";
}

button,
input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
}

code,
pre,
.mono {
  font-family: "JetBrains Mono", "Fira Code", ui-monospace, SFMono-Regular,
    Menlo, Consolas, monospace;
}

.hidden {
  display: none !important;
}

.text-muted {
  color: var(--text-muted);
}
