:root {
  color-scheme: light;
  --bg: #f7faf7;
  --surface: rgba(255, 255, 255, 0.78);
  --surface-solid: #ffffff;
  --ink: #19302b;
  --muted: #6f817c;
  --line: #e2ebe7;
  --mint: #68bd9c;
  --mint-dark: #34856b;
  --mint-soft: #e5f5ee;
  --peach: #f3b98e;
  --danger: #cf5d5d;
  --shadow: 0 22px 70px rgba(46, 91, 76, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--ink);
  font-family: "DM Sans", "Noto Sans SC", sans-serif;
}

button,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

h1,
h2,
p {
  margin-top: 0;
}

.button:focus-visible,
.editor:focus-visible,
.brand:focus-visible,
.tool-card:focus-visible,
.back-link:focus-visible {
  outline: 3px solid rgba(104, 189, 156, 0.25);
  outline-offset: 3px;
}
