:root {
  --nl-bg: #f4f6f8;
  --nl-surface: #ffffff;
  --nl-text: #18212b;
  --nl-muted: #6b7280;
  --nl-border: #e5e7eb;
  --nl-dark: #1f2937;
  --nl-chip: #2f3742;
  --nl-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
  --nl-radius: 16px;
  --nl-radius-sm: 12px;
  --nl-container: 1240px;
  --nl-gap: 28px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--nl-bg);
  color: var(--nl-text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
}

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

a {
  color: inherit;
  text-decoration: none;
}

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

.container {
  width: min(100% - 32px, var(--nl-container));
  margin-inline: auto;
}

.screen-reader-text {
  position: absolute;
  left: -9999px;
}