/* Autor: Stefan Miscik, Dotsystems s.r.o. (c) 2026 | Generator: TokenEater */

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  color: var(--text);
  background: var(--surface);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

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

button {
  cursor: pointer;
  border: 0;
  background: none;
}

h1,
h2,
h3,
h4 {
  font-family: Manrope, Inter, sans-serif;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text);
}

p {
  margin: 0;
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--accent-hover);
  font-size: 0.875rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--accent);
  border-radius: 999px;
}

.section-title {
  margin: 12px 0 10px;
  font-size: clamp(2rem, 3.3vw, 3.375rem);
  line-height: 1.08;
}

.section-copy {
  color: var(--text-muted);
  font-size: 1.0625rem;
  line-height: 1.75;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
}

.skip-link:focus {
  left: 16px;
  top: 16px;
  z-index: 2000;
  padding: 8px 12px;
  background: var(--accent);
  color: var(--accent-contrast);
}

@media (max-width: 720px) {
  .container {
    width: min(calc(100% - 28px), 1480px);
  }
}
