:root {
  --puls-ink: #0f1319;
  --puls-paper: #f5f5f3;
  --puls-white: #ffffff;
  --puls-steel: #6c7a8b;
  --puls-blue: #255198;
  --puls-blue-dark: #183a70;
  --puls-line: rgba(15, 19, 25, 0.16);
  --puls-line-light: rgba(245, 245, 243, 0.2);
  --puls-muted: #56606d;
  --font-sans: "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-mono: "Fira Code", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  --shell: 1240px;
  --header-height: 76px;
  color-scheme: dark;
  font-family: var(--font-sans);
  color: var(--puls-ink);
  background: var(--puls-paper);
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

section[id] {
  scroll-margin-top: calc(var(--header-height) + 16px);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: clip;
  background: var(--puls-paper);
  color: var(--puls-ink);
  font-size: 16px;
  line-height: 1.55;
}

body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
  max-width: 100%;
}

img {
  height: auto;
}

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

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

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

button,
select,
summary {
  cursor: pointer;
}

button {
  border: 0;
}

fieldset {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

legend,
h1,
h2,
h3,
p {
  margin: 0;
}

h1,
h2,
h3 {
  font-weight: 700;
  letter-spacing: -0.04em;
}

::selection {
  background: var(--puls-blue);
  color: var(--puls-white);
}

:focus-visible {
  outline: 3px solid #7eafff;
  outline-offset: 4px;
}

[hidden] {
  display: none !important;
}

.shell {
  width: min(calc(100% - 48px), var(--shell));
  margin-inline: auto;
}

.sr-only,
.honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  transform: translateY(-160%);
  padding: 10px 14px;
  background: var(--puls-white);
  color: var(--puls-ink);
  font-weight: 700;
}

.skip-link:focus {
  transform: translateY(0);
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 2px;
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button--small {
  min-height: 42px;
  padding: 9px 14px;
  font-size: 0.8rem;
}

.button--blue {
  background: var(--puls-blue);
  color: var(--puls-white);
}

.button--blue:hover {
  background: #3268b6;
}

.button--line-light {
  border-color: rgba(255, 255, 255, 0.55);
  color: var(--puls-white);
}

.button--line-light:hover {
  border-color: var(--puls-white);
  background: rgba(255, 255, 255, 0.1);
}

.button--light {
  background: var(--puls-white);
  color: var(--puls-ink);
}

.button--light:hover {
  background: #dbe6f7;
}

.button--dark {
  background: var(--puls-ink);
  color: var(--puls-white);
}

.button--dark:hover {
  background: #27313d;
}

.button:disabled {
  cursor: not-allowed;
  opacity: 0.55;
  transform: none;
}

@media (max-width: 768px) {
  .shell {
    width: min(calc(100% - 32px), var(--shell));
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
