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

body {
  margin: 0;
  font-family: system-ui, -apple-system, "Segoe UI", sans-serif;
  background: radial-gradient(circle at 10% 20%, #fdf8f4 0, #f6f7fb 35%, #f4fbf8 100%);
  color: var(--color-ink);
  min-height: 100vh;
}

h1,
h2,
h3,
h4,
p {
  margin: 0;
  overflow-wrap: anywhere;
  word-break: break-word;
}

span,
a,
button,
label {
  overflow-wrap: anywhere;
  word-break: break-word;
  min-width: 0;
}

h1 {
  font-size: clamp(26px, 3vw, 32px);
  letter-spacing: -0.02em;
}

h2 {
  font-size: 22px;
  letter-spacing: -0.01em;
}

h3 {
  font-size: 20px;
  letter-spacing: -0.01em;
}

h4 {
  font-size: 16px;
  font-weight: 700;
}

p {
  color: var(--color-muted);
  line-height: 1.5;
}

a {
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
}

button,
input,
select,
textarea {
  font: inherit;
}

table {
  border-collapse: collapse;
  width: 100%;
}
