:root {
  --black: #050505;
  --near-black: #0a0a0a;
  --panel: #0d0d0d;
  --white: #f4f4f2;
  --accent: #fb5607;
  --soft: #d7d7d2;
  --muted: #a0a09a;
  --quiet: #7f7f79;
  --line: rgba(244, 244, 242, .13);
  --line-strong: rgba(244, 244, 242, .28);
  --sans: "Manrope", ui-sans-serif, system-ui, sans-serif;
  --code: ui-monospace, "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  --ease: cubic-bezier(.16, 1, .3, 1);
  --gutter: clamp(20px, 4vw, 64px);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--black);
  color: var(--white);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 20;
  pointer-events: none;
  opacity: .035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.92' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E");
}
::selection { background: var(--accent); color: var(--black); }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; }
img { display: block; max-width: 100%; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 5px; }

.shell { width: min(100%, var(--max)); margin-inline: auto; padding-inline: var(--gutter); }
.meta { font: 600 11px/1.45 var(--sans); letter-spacing: .08em; text-transform: uppercase; }
.kicker {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 28px;
  color: var(--muted);
  font: 600 11px/1.4 var(--sans);
  letter-spacing: .1em;
  text-transform: uppercase;
}
.kicker::before { content: ""; width: 22px; height: 1px; background: currentColor; }
.brand { display: inline-flex; align-items: center; gap: 10px; justify-self: start; }
.brand img { width: 25px; height: 25px; border-radius: 5px; }
.brand span { font-size: 14px; font-weight: 700; letter-spacing: -.03em; }
.semantic-strong {
  color: var(--accent);
  font-weight: 600;
  text-decoration-line: underline;
  text-decoration-color: rgba(251, 86, 7, .78);
  text-decoration-thickness: 2px;
  text-underline-offset: .11em;
  text-decoration-skip-ink: auto;
}

.button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--white);
  color: var(--black);
  font-size: 14px;
  font-weight: 700;
  padding: 15px 26px;
  transition: transform 600ms var(--ease), box-shadow 600ms var(--ease);
}
.button i {
  font-style: normal;
  line-height: 1;
  transition: transform 600ms var(--ease);
}
.button:hover { transform: translateY(-2px); box-shadow: 0 14px 34px rgba(255, 255, 255, .12); }
.button:hover i { transform: translate(2px, -2px) rotate(4deg); }
.button:active { transform: scale(.98); }

/* Globalne wyciszenie ruchu. Mieszka tu, bo tu są reguły, które nadpisuje
   (scroll-behavior, tranzycje .button). Ruch specyficzny dla pojedynczej strony
   wycisza ta strona u siebie. */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
}
