:root {
  --ink: #182026;
  --muted: #59646c;
  --paper: #fbfaf6;
  --panel: #ffffff;
  --line: #d9d1c1;
  --sea: #0e6f83;
  --sea-deep: #124452;
  --rust: #9a4f25;
  --signal: #f2b84b;
  --signal-soft: #fff2cf;
  --ok: #1f7a4d;
  --error: #a7372f;
  color: var(--ink);
  background: var(--paper);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  line-height: 1.5;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background:
    linear-gradient(180deg, #fbfaf6 0%, #f3f0e8 100%);
  margin: 0;
  min-width: 320px;
}

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

a {
  color: inherit;
}

img {
  max-width: 100%;
}

[hidden] {
  display: none !important;
}

.visually-hidden {
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}
