:root {
  --bg-main: #f3f3f5;
  --bg-elevated: #ffffff;
  --text-main: #4a4a4a;
  --text-muted: #9a9aa2;
  --accent: #c5c5ce;
  --border-soft: rgba(0, 0, 0, 0.06);
  --shadow-soft: 0 16px 30px rgba(15, 23, 42, 0.08);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

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

body.oro-body {
  min-height: 100vh;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    "Noto Sans JP", sans-serif;
  background: var(--bg-main);
  color: var(--text-main);
}

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}
