/* =============================================================
   Otwaro — main.css
   Motyw „Błękit” (jasny). Stan bazowy animacji jest tutaj,
   wartości zmienne w czasie ustawia JS (inline style / zmienne CSS).
   ============================================================= */

/* ---------- 1. Tokeny motywu ---------- */
:root {
  --bg:#F2F6FC;
  --band:#E7EEF9;
  --card:#FFFFFF;
  --card-2:#EDF3FB;

  --line:#DCE5F2;
  --line-2:#C6D3E8;
  --line-3:#9DB0CE;

  --ink:#0C1830;
  --ink-2:#2C3C58;
  --muted:#5E6E8C;
  --dim:#59688A;

  --acc:#1D5FD8;
  --acc-2:#4C86EE;
  --acc-hover:#1749A8;
  --on-acc:#FFFFFF;

  --btn:#10203E;
  --btn-ink:#F2F6FC;
  --btn-hover:#05122A;

  /* Typografia */
  --font: "Geist", system-ui, -apple-system, "Segoe UI", sans-serif;
  --mono: "Geist Mono", ui-monospace, "SFMono-Regular", Menlo, monospace;

  /* Rytm i kształty */
  --wrap: 1360px;
  --pad-x: clamp(18px, 4vw, 40px);
  --r-sm: 6px;
  --r-md: 10px;
  --r-lg: 12px;

  /* Cienie — jasny motyw, delikatne */
  --sh-soft: 0 30px 70px rgba(12, 24, 48, 0.14);
  --sh-card: 0 18px 44px rgba(12, 24, 48, 0.10);
  --sh-win:  0 40px 90px rgba(12, 24, 48, 0.14);

  /* Sterowane z JS (fallbacki na stan zerowy) */
  --hero-fit: 1;
  --phone-fit: 1;
  --rotor-fit: 1;
  --embed-zoom: 0.21;
}

/* ---------- 2. Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  background: var(--bg);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.5;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, p, figure, blockquote { margin: 0; }
img, svg, video { display: block; max-width: 100%; }
/* iframe bez max-width: podglądy stron renderują się w pełnej szerokości
   (1280 / 1440 / 390 px) i dopiero transform je skaluje do ramki */
iframe { display: block; border: 0; }
img { height: auto; }

a { color: var(--acc); text-decoration: none; transition: color .2s; }
a:hover { color: var(--acc-hover); }

button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; }

summary { list-style: none; cursor: pointer; }
summary::-webkit-details-marker { display: none; }

::selection { background: var(--acc); color: var(--on-acc); }

:focus-visible {
  outline: 2px solid var(--acc);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  background: var(--btn);
  color: var(--btn-ink);
  padding: 12px 18px;
  border-radius: 0 0 var(--r-sm) 0;
}
.skip-link:focus-visible { left: 0; color: var(--btn-ink); }

/* ---------- 3. Tło i szum ---------- */
#bg-canvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  /* Zanim WebGL narysuje pierwszą klatkę, canvas jest czarny — na jasnym motywie
     daje to wyraźny błysk przy wejściu na stronę. */
  background: var(--bg);
}

/* Na jasnym tle overlay nie działa — używamy multiply o niskiej sile */
.noise {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.35;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3'/></filter><rect width='180' height='180' filter='url(%23n)' opacity='0.35'/></svg>");
}

/* ---------- 4. Utility ---------- */
.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--pad-x);
}

.kick {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--acc);
  margin: 0 0 20px;
}

.btn {
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.01em;
  padding: 10px 18px;
  border-radius: var(--r-sm);
  border: 1px solid transparent;
  white-space: nowrap;
  transition: background .18s, border-color .18s, color .18s;
}
.btn--solid {
  background: var(--btn);
  border-color: var(--btn);
  color: var(--btn-ink);
}
.btn--solid:hover {
  background: var(--btn-hover);
  border-color: var(--btn-hover);
  color: var(--btn-ink);
}
.btn--ghost {
  background: transparent;
  border-color: var(--line-2);
  color: var(--muted);
}
.btn--ghost:hover {
  background: var(--card-2);
  border-color: var(--line-3);
  color: var(--btn);
}

.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
}

.chip {
  font-size: 14.5px;
  color: var(--muted);
  border: 1px solid var(--line-2);
  border-radius: var(--r-sm);
  padding: 7px 13px;
  background: transparent;
}
.chip--btn {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.01em;
  padding: 10px 16px;
  transition: background .18s, border-color .18s, color .18s;
}
.chip--btn:hover { border-color: var(--line-3); color: var(--btn); }
.chip--btn.is-on {
  border-color: var(--btn);
  background: var(--card-2);
  color: var(--btn);
}

/* Elementy ujawniane przy scrollu — stan zerowy */
[data-reveal] {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .55s cubic-bezier(.2,.7,.3,1), transform .55s cubic-bezier(.2,.7,.3,1);
}
[data-reveal].is-in { opacity: 1; transform: none; }
h1 [data-reveal] { display: inline-block; }

/* ---------- 5. Animacje ---------- */
@keyframes hintPulse { 0%,100% { transform: scaleY(0.35); opacity: 0.4; } 50% { transform: scaleY(1); opacity: 1; } }
@keyframes fogA { 0%,100% { transform: translate3d(-6%,-3%,0) scale(1.05); } 50% { transform: translate3d(7%,4%,0) scale(1.22); } }
@keyframes fogB { 0%,100% { transform: translate3d(5%,4%,0) scale(1.15); } 50% { transform: translate3d(-7%,-5%,0) scale(1); } }
@keyframes fogC { 0%,100% { transform: translate3d(0,2%,0) scale(1.1); } 50% { transform: translate3d(4%,-6%,0) scale(1.3); } }
@keyframes auraBreathe { 0%,100% { filter: blur(50px) brightness(0.98); } 50% { filter: blur(66px) brightness(1.06); } }

/* ---------- 6. Nawigacja ---------- */
.nav {
  position: relative;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  max-width: var(--wrap);
  margin-inline: auto;
  padding: clamp(16px, 3.4vw, 26px) var(--pad-x);
}
.nav__brand { display: flex; align-items: baseline; gap: 10px; }
.nav__brand-name {
  font-weight: 600;
  font-size: 19px;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.nav__brand-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--acc);
  display: inline-block;
}
.nav__links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px clamp(12px, 2.2vw, 26px);
}
.nav__links a {
  font-size: 14px;
  letter-spacing: -0.01em;
  color: var(--muted);
}
.nav__links a:hover { color: var(--ink); }
.nav__links a.btn--solid { padding: 8px 15px; color: var(--btn-ink); }

/* ---------- 7. HERO ---------- */
.hero {
  position: relative;
  z-index: 4;
  height: 300vh;
}
.hero__stage {
  position: sticky;
  top: 0;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__fog {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
  opacity: 1;
}
.hero__fog i {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 30vh;
  background: linear-gradient(180deg, transparent, color-mix(in srgb, var(--bg) 70%, transparent));
}

.hero__aura {
  position: absolute;
  left: 50%;
  top: 48%;
  z-index: 2;
  pointer-events: none;
  width: min(1080px, 86vw);
  height: min(560px, 52vh);
  border-radius: 50%;
  filter: blur(52px);
  background: radial-gradient(closest-side,
    color-mix(in srgb, var(--acc) 18%, transparent),
    color-mix(in srgb, var(--acc) 7%, transparent) 46%,
    transparent 74%);
  animation: auraBreathe 11s ease-in-out infinite;
  opacity: 1;
  transform: translate(-50%, -50%);
}

.hero__title {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 0 24px;
  max-width: 1200px;
  opacity: 1;
}
.hero__title .kick { margin: 0 0 30px; }
.hero__title h1 {
  font-weight: 500;
  font-size: clamp(40px, 5.6vw, 86px);
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: var(--ink);
  text-wrap: balance;
}
.hero__title h1 span { margin-right: 0.22em; }
.hero__title h1 span.is-last { margin-right: 0; }

.hero__meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 8px 18px;
  margin: 34px 0 0;
  font-family: var(--mono);
  font-size: 13.5px;
  letter-spacing: 0.04em;
  color: var(--ink-2);
}
.hero__meta-acc { color: var(--acc); }
.hero__meta-sep { color: var(--line-3); }

/* Okna przeglądarki (stan zerowy — ukryte, JS animuje) */
.hero__window {
  position: absolute;
  left: 50%;
  top: 50%;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, -50%) scale(0.9);
  filter: blur(7px);
}
.hero__window[data-window="0"] { z-index: 4; }
.hero__window[data-window="1"] { z-index: 5; }
.hero__window[data-window="2"] { z-index: 6; }

.hero__zoom { zoom: var(--hero-fit); }

.hero__shell {
  position: relative;
  width: 620px;
  border-radius: 14px;
  overflow: hidden;
  background: var(--card);
  border: 1px solid var(--line);
  box-shadow: var(--sh-soft), inset 0 0 0 1px rgba(255, 255, 255, 0.6);
}
.hero__chrome {
  height: 36px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 13px;
  background: var(--card-2);
  border-bottom: 1px solid var(--line);
}
.hero__dots { display: flex; gap: 6px; }
.hero__dots i {
  display: block;
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--line-3);
}
.hero__url {
  flex: 1;
  height: 20px;
  border-radius: 5px;
  background: var(--bg);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  padding: 0 9px;
  font-family: var(--mono);
  font-size: 9.5px;
  color: var(--muted);
}
.hero__site {
  position: relative;
  height: 349px;
  overflow: hidden;
  background: var(--card);
}
/* Skala 620/1280 = 0.484375; 349 / 0.484375 ≈ 721px */
.hero__site iframe {
  position: absolute;
  top: 0; left: 0;
  width: 1280px;
  height: 721px;
  border: 0;
  transform: scale(0.484375);
  transform-origin: 0 0;
  pointer-events: none;
}
.hero__caption {
  text-align: center;
  margin-top: 22px;
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}
.hero__caption span { color: var(--dim); }

.hero__hint {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  z-index: 3;
}
.hero__hint span {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--dim);
}
.hero__hint i {
  display: block;
  width: 1px;
  height: 44px;
  margin: 12px auto 0;
  background: linear-gradient(180deg, var(--acc), transparent);
  animation: hintPulse 1.8s ease-in-out infinite;
  transform-origin: top;
}

/* ---------- 8. BUILD — strona składa się na oczach ---------- */
.build {
  position: relative;
  z-index: 4;
  height: 400vh;
}
.build__sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.build__grid {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.build__copy .kick { margin: 0 0 22px; }

.build__steps { position: relative; min-height: 210px; }
.build__step {
  position: absolute;
  top: 0; left: 0; right: 0;
  opacity: 0;
  transform: translateY(14px);
  pointer-events: none;
  transition: opacity .45s ease, transform .45s cubic-bezier(.2,.7,.3,1);
}
.build__step.is-active { opacity: 1; transform: none; pointer-events: auto; }
.build__step h2 {
  font-weight: 500;
  font-size: clamp(26px, 2.7vw, 40px);
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin: 0 0 16px;
  text-wrap: pretty;
}
.build__step p {
  font-size: 16.5px;
  line-height: 1.6;
  color: var(--muted);
  max-width: 40ch;
  text-wrap: pretty;
}

.build__dots { display: flex; gap: 6px; margin-top: 30px; }
.build__dot {
  height: 2px;
  width: 14px;
  border-radius: 2px;
  background: var(--line-2);
  transition: width .4s, background .4s;
}
.build__dot.is-on { width: 30px; background: var(--acc); }

.build__stage { display: flex; justify-content: center; perspective: 1500px; }

/* Makieta telefonu — celowo ciemna obudowa (to urządzenie, nie UI strony) */
.phone {
  position: relative;
  flex: 0 0 auto;
  zoom: var(--phone-fit);
  width: 320px;
  height: 650px;
  border-radius: 44px;
  background: linear-gradient(150deg, #2B2A30, #101014);
  padding: 11px;
  box-shadow: var(--sh-win), inset 0 0 0 1px rgba(255, 255, 255, 0.06);
  transform-origin: center;
  transform: rotateY(-16deg) rotateX(6deg);
  transform-style: preserve-3d;
  transition: transform .18s linear;
}
.phone__notch {
  position: absolute;
  top: 9px;
  left: 50%;
  transform: translateX(-50%);
  width: 82px;
  height: 21px;
  border-radius: 999px;
  background: #0C0C10;
  z-index: 8;
}
.phone__screen {
  position: absolute;
  inset: 11px;
  border-radius: 34px;
  overflow: hidden;
  background: #F3F0EA;
}
.phone__glow {
  position: absolute;
  inset: 11px;
  pointer-events: none;
  border-radius: 34px;
  background: radial-gradient(120% 80% at 50% 0%, rgba(255, 255, 255, 0), transparent 65%);
}

/* Zawartość ekranu telefonu — paleta demo klienta, celowo ciemna */
.mock {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  background: #F3F0EA;
  transition: background .55s ease;
}
.mock__hero {
  position: relative;
  flex: 0 0 auto;
  height: 42%;
  overflow: hidden;
  background: #16241C;
}
.mock__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  filter: blur(14px) saturate(0.15);
  transform: scale(1.08);
  transition: opacity .2s linear, filter .2s linear, transform .2s linear;
}
.mock__hero-wash {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(9,17,12,0.62) 0%, rgba(9,17,12,0.04) 40%, rgba(9,17,12,0.93) 100%);
}
.mock__header {
  position: absolute;
  top: 16px; left: 16px; right: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  opacity: 0;
  transition: opacity .2s linear;
}
.mock__brand { display: flex; align-items: center; gap: 7px; }
.mock__logo-dot {
  width: 15px; height: 15px;
  border-radius: 4px;
  background: #8A8A8A;
  transition: background .5s;
}
.mock__brand-name {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: #F4EDE1;
}
.mock__burger { display: flex; flex-direction: column; gap: 3.5px; }
.mock__burger i { display: block; width: 15px; height: 1.5px; background: rgba(244,237,225,0.8); }

.mock__headline {
  position: absolute;
  left: 16px; right: 16px; bottom: 14px;
  opacity: 0;
  transition: opacity .2s linear;
}
.mock__kicker {
  font-family: var(--mono);
  font-size: 8.5px;
  letter-spacing: 0.18em;
  color: #8FC7A2;
  margin: 0 0 7px;
}
.mock__h {
  font-size: 21px;
  line-height: 1.14;
  letter-spacing: -0.03em;
  font-weight: 500;
  color: #FBF7EF;
  min-height: 48px;
  text-wrap: balance;
}
.mock__caret {
  display: none;
  width: 2px;
  height: 17px;
  background: var(--acc);
  margin-left: 3px;
  vertical-align: -2px;
}
.mock__caret.is-on { display: inline-block; }

.mock__body {
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 14px 16px 12px;
}

.mock__cta-row {
  display: flex;
  flex: 0 0 auto;
  gap: 8px;
  opacity: 0;
  transform: scale(0.86);
  transform-origin: center;
  transition: opacity .2s linear, transform .2s cubic-bezier(.2,1.5,.4,1);
}
.mock__cta {
  flex: 1;
  text-align: center;
  background: var(--acc);
  color: var(--on-acc);
  font-size: 12.5px;
  font-weight: 600;
  padding: 12px 0;
  border-radius: 9px;
}
.mock__cta-alt {
  flex: 0 0 auto;
  padding: 12px 14px;
  border-radius: 9px;
  border: 1px solid rgba(143,199,162,0.34);
  color: #CFE6D8;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.04em;
}

.mock__menu {
  display: flex;
  flex: 0 0 auto;
  flex-direction: column;
  gap: 8px;
  opacity: 0;
  transition: opacity .25s linear;
}
.mock__menu-head { display: flex; align-items: baseline; justify-content: space-between; }
.mock__menu-title { font-size: 11.5px; font-weight: 600; color: #EFE7D9; letter-spacing: -0.01em; }
.mock__menu-day { font-family: var(--mono); font-size: 9px; letter-spacing: 0.12em; color: rgba(207,230,216,0.5); }
.mock__item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 11px;
  border-radius: 9px;
  background: rgba(143,199,162,0.07);
  border: 1px solid rgba(143,199,162,0.16);
}
.mock__item-thumb { flex: 0 0 auto; width: 32px; height: 32px; border-radius: 7px; background: rgba(143,199,162,0.2); }
.mock__item-txt { flex: 1; min-width: 0; display: block; }
.mock__item-name { display: block; font-size: 11.5px; font-weight: 500; color: #F2ECE0; line-height: 1.25; }
.mock__item-desc { display: block; font-size: 9.5px; color: rgba(207,230,216,0.55); line-height: 1.35; margin-top: 2px; }
.mock__item-price { font-family: var(--mono); font-size: 10.5px; color: #8FC7A2; }

.mock__tiles {
  margin-top: auto;
  flex: 0 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .3s linear, transform .3s ease;
}
.mock__tile {
  padding: 9px 11px;
  border-radius: 9px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
}
.mock__tile-label { display: block; font-family: var(--mono); font-size: 8.5px; letter-spacing: 0.14em; color: rgba(207,230,216,0.45); }
.mock__tile-value { display: block; font-size: 11px; color: #EFE7D9; margin-top: 4px; }

.mock__bar {
  flex: 0 0 auto;
  height: 50px;
  background: rgba(18,36,26,0.96);
  border-top: 1px solid rgba(143,199,162,0.22);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  transform: translateY(60px);
  opacity: 0;
  transition: transform .2s linear, opacity .2s linear;
}
.mock__bar-txt { font-family: var(--mono); font-size: 9.5px; color: #DCEBE1; }
.mock__bar-btn {
  font-family: var(--mono);
  font-size: 9.5px;
  color: var(--on-acc);
  background: var(--acc);
  padding: 5px 10px;
  border-radius: 5px;
}

/* Szkielet strony (wireframe) — widoczny na starcie */
.wire {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  background: #F3F0EA;
  opacity: 1;
  transition: opacity .25s linear;
  pointer-events: none;
}
.wire__hero { position: relative; flex: 0 0 auto; height: 41%; background: #E0DCD3; }
.wire__logo { position: absolute; left: 16px; top: 16px; width: 92px; height: 10px; border-radius: 4px; background: #CBC6BC; }
.wire__menu { position: absolute; right: 16px; top: 16px; width: 16px; height: 10px; border-radius: 3px; background: #CBC6BC; }
.wire__l1 { position: absolute; left: 16px; bottom: 42px; width: 62%; height: 13px; border-radius: 4px; background: #CFCAC0; }
.wire__l2 { position: absolute; left: 16px; bottom: 20px; width: 42%; height: 13px; border-radius: 4px; background: #D6D1C8; }
.wire__body {
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 14px 16px 12px;
}
.wire__body i { display: block; }
.wire__b1 { height: 42px; border-radius: 9px; background: #DBD7CE; }
.wire__b2 { height: 11px; width: 40%; border-radius: 4px; background: #DEDAD1; }
.wire__b3 { height: 50px; border-radius: 9px; background: #DEDAD1; }
.wire__b4 { height: 50px; border-radius: 9px; background: #E2DED6; }
.wire__grid { margin-top: auto; display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.wire__grid i { height: 44px; border-radius: 9px; background: #E4E0D8; }
.wire__bar { flex: 0 0 auto; height: 50px; background: #DBD7CE; }

/* ---------- 9. ROTOR — zobacz to na innych firmach ---------- */
.rotor {
  position: relative;
  z-index: 4;
  height: 280vh;
}
.rotor__sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.rotor__copy { order: 2; }
.rotor__copy .kick { margin: 0 0 22px; }

.rotor__cases { position: relative; min-height: 170px; }
.rotor__case {
  position: absolute;
  top: 0; left: 0; right: 0;
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity .4s, transform .4s;
}
.rotor__case.is-active { opacity: 1; transform: none; pointer-events: auto; }
.rotor__case h2 {
  font-weight: 500;
  font-size: clamp(26px, 2.6vw, 38px);
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin: 0 0 14px;
}
.rotor__case p {
  font-size: 16.5px;
  line-height: 1.6;
  color: var(--muted);
  max-width: 38ch;
  text-wrap: pretty;
}
.rotor__link { margin-top: 30px; padding: 9px 16px; }

.rotor__stage {
  order: 1;
  position: relative;
  height: min(640px, calc(100vh - 60px));
  perspective: 1600px;
  display: flex;
  justify-content: center;
  align-items: center;
}
#rotor3d { position: absolute; inset: 0; display: block; }

/* Karuzela telefonów — używana tylko na mobile */
.rotor__phone { display: none; }
.rotor__frame {
  position: relative;
  zoom: var(--rotor-fit);
  width: 250px;
  height: 508px;
  border-radius: 42px;
  background: linear-gradient(150deg, #2B2A30, #101014);
  padding: 10px;
  box-shadow: var(--sh-win), inset 0 0 0 1px rgba(255, 255, 255, 0.06);
  transform-style: preserve-3d;
  backface-visibility: hidden;
}
.rotor__notch {
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 76px;
  height: 19px;
  border-radius: 999px;
  background: #0C0C10;
  z-index: 8;
}
.rotor__screen {
  position: absolute;
  inset: 10px;
  border-radius: 33px;
  overflow: hidden;
  background: #101A14;
}
/* Skala 230/390 ≈ 0.589744; 488 / 0.589744 ≈ 828px */
.rotor__screen iframe {
  position: absolute;
  top: 0; left: 0;
  width: 390px;
  height: 828px;
  border: 0;
  transform: scale(0.589744);
  transform-origin: 0 0;
  pointer-events: none;
}

.rotor__dots { display: none; }
.rotor__dot {
  height: 2px;
  width: 14px;
  border-radius: 2px;
  background: var(--line-2);
  transition: width .4s, background .4s;
}
.rotor__dot.is-on { width: 30px; background: var(--acc); }

/* ---------- 10. LIVE — nasze realizacje ---------- */
.live {
  position: relative;
  z-index: 4;
  padding: clamp(64px, 9vw, 110px) 0 clamp(56px, 7vw, 90px);
}
.live__head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: clamp(30px, 5vw, 46px);
}
.live__title {
  font-weight: 500;
  font-size: clamp(30px, 3.6vw, 48px);
  line-height: 1.06;
  letter-spacing: -0.035em;
  color: var(--ink);
  max-width: 20ch;
}
.live__lead { font-size: 15px; line-height: 1.6; color: var(--muted); max-width: 34ch; }

.live__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 255px), 1fr));
  gap: clamp(14px, 2vw, 20px);
}
.live__card {
  display: grid;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--card);
  transition: border-color .35s, box-shadow .35s;
}
.live__card:hover { border-color: var(--line-3); box-shadow: var(--sh-card); }

.live__chrome {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 0 12px;
  height: 32px;
  background: var(--card-2);
  border-bottom: 1px solid var(--line);
}
.live__dots { display: flex; gap: 5px; }
.live__dots i { display: block; width: 7px; height: 7px; border-radius: 50%; background: var(--line-2); }
.live__domain {
  flex: 1;
  font-family: var(--mono);
  font-size: 9.5px;
  color: var(--muted);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.live__viewport {
  position: relative;
  aspect-ratio: 16 / 10;
  padding: 9px;
  background: var(--card);
}
.live__screen {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 7px;
  overflow: hidden;
  background: var(--card-2);
  box-shadow: inset 0 0 0 1px var(--line);
}
/* Warstwa zastępcza — widoczna, gdy osadzenie jest zablokowane */
.live__fallback {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(140deg,
    color-mix(in srgb, var(--acc) 14%, var(--card-2)),
    var(--card-2) 55%,
    color-mix(in srgb, var(--acc-2) 10%, var(--card-2)));
}
.live__fallback span {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.live__screen iframe {
  position: absolute;
  top: 0; left: 0;
  z-index: 2;
  width: 1440px;
  height: 900px;
  border: 0;
  background: var(--card);
  pointer-events: none;
  zoom: var(--embed-zoom);
}
/* Hook dla JS: karta, której nie da się osadzić */
.live__card.is-blocked iframe { display: none; }

.live__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 15px 16px;
}
.live__meta { display: grid; gap: 5px; }
.live__name { font-size: 15.5px; font-weight: 500; letter-spacing: -0.015em; color: var(--ink); }
.live__tag {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--dim);
}
.live__open {
  flex-shrink: 0;
  font-size: 13px;
  color: var(--muted);
  border: 1px solid var(--line-2);
  border-radius: var(--r-sm);
  padding: 7px 12px;
  transition: color .2s, border-color .2s, background .2s;
}
.live__open:hover { color: var(--btn-ink); background: var(--btn); border-color: var(--btn); }

/* ---------- 11. DAILY — 199 zł to ile? ---------- */
.daily {
  position: relative;
  z-index: 4;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--band);
}
.daily__grid {
  padding-block: clamp(60px, 8vw, 96px);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
  gap: clamp(34px, 5vw, 70px);
  align-items: center;
}
.daily__big {
  font-weight: 500;
  font-size: clamp(64px, 9vw, 124px);
  line-height: 0.9;
  letter-spacing: -0.05em;
  color: var(--acc);
}
.daily__label {
  font-family: var(--mono);
  font-size: 12.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 18px 0 0;
}
.daily__list { display: grid; gap: 18px; max-width: 520px; }
.daily__row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 16px;
  color: var(--ink-2);
  font-size: 16px;
}
.daily__row--last { border-bottom: 0; padding-bottom: 0; }
.daily__price { font-family: var(--mono); color: var(--dim); font-size: 14px; }

/* ---------- 12. SCOPE — co dostajesz ---------- */
.scope {
  position: relative;
  z-index: 4;
  padding-block: clamp(64px, 9vw, 110px);
}
.scope__title {
  font-weight: 500;
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.06;
  letter-spacing: -0.035em;
  color: var(--ink);
  margin: 0 0 60px;
  max-width: 18ch;
}
.scope__cols {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: clamp(30px, 4vw, 44px);
  margin-bottom: 64px;
}
.scope__col-title {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 22px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}
.scope__list { display: grid; gap: 12px; }
.scope__item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 17px 18px;
  font-size: 15.5px;
  line-height: 1.5;
  color: var(--ink-2);
  transition: border-color .45s, background .45s;
}
.scope__item:hover { border-color: var(--line-3); background: var(--card-2); }
.scope__bullet {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--acc);
  margin-top: 8px;
  flex-shrink: 0;
}

.scope__none { padding: clamp(20px, 4vw, 34px); }
.scope__none-title {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--dim);
  margin: 0 0 20px;
}
.scope__chips { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 22px; }
.scope__none-note { font-size: 16px; color: var(--ink-2); }

/* ---------- 13. COMPARE — porównanie ---------- */
.compare {
  position: relative;
  z-index: 4;
  background: var(--band);
  border-top: 1px solid var(--line);
  padding-block: clamp(64px, 8vw, 100px);
}
.compare__title {
  font-weight: 500;
  font-size: clamp(30px, 3.6vw, 48px);
  line-height: 1.08;
  letter-spacing: -0.035em;
  color: var(--ink);
  margin: 0 0 50px;
}
.compare__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
  gap: clamp(14px, 2vw, 20px);
  max-width: 900px;
}
.compare__card {
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: clamp(22px, 3.4vw, 30px) clamp(20px, 3.2vw, 28px);
  background: var(--card);
}
.compare__card--acc {
  border-color: color-mix(in srgb, var(--acc) 34%, transparent);
  background: linear-gradient(180deg,
    color-mix(in srgb, var(--acc) 7%, var(--card)),
    color-mix(in srgb, var(--acc) 2%, var(--card)));
}
.compare__label {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--dim);
  margin: 0 0 24px;
}
.compare__label--acc { color: var(--acc); }
.compare__list { display: grid; gap: 16px; font-size: 16px; line-height: 1.45; color: var(--muted); }
.compare__list--acc { color: var(--ink); }
.compare__note {
  margin: 26px 0 0;
  font-size: 13.5px;
  color: var(--dim);
  max-width: 66ch;
  line-height: 1.6;
}

/* ---------- 14. FAQ ---------- */
.faq {
  position: relative;
  z-index: 4;
  max-width: 900px;
  margin-inline: auto;
  padding: clamp(64px, 9vw, 110px) var(--pad-x);
}
.faq__title {
  font-weight: 500;
  font-size: clamp(30px, 3.6vw, 48px);
  line-height: 1.08;
  letter-spacing: -0.035em;
  color: var(--ink);
  margin: 0 0 44px;
}
.faq__list { display: grid; gap: 2px; }
.faq__item { border-top: 1px solid var(--line); padding: 4px 0; }
.faq__item--last { border-bottom: 1px solid var(--line); }
.faq__item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 2px;
  font-size: clamp(16px, 2.2vw, 18px);
  color: var(--ink);
  letter-spacing: -0.01em;
  transition: color .35s;
}
.faq__item summary:hover { color: var(--acc); }
.faq__plus { font-family: var(--mono); color: var(--acc); font-size: 18px; transition: transform .25s; }
.faq__item[open] .faq__plus { transform: rotate(45deg); }
.faq__item p {
  padding: 0 2px 24px;
  font-size: 16px;
  line-height: 1.65;
  color: var(--muted);
  max-width: 62ch;
}

/* ---------- 15. FORMULARZ ---------- */
.formsec {
  position: relative;
  z-index: 4;
  background: var(--band);
  border-top: 1px solid var(--line);
}
.formsec__grid {
  padding-top: clamp(64px, 8vw, 100px);
  padding-bottom: clamp(90px, 10vw, 130px);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: clamp(40px, 5vw, 60px);
  align-items: start;
}
.form .kick { margin: 0 0 20px; }
.form__title {
  font-weight: 500;
  font-size: clamp(30px, 3.6vw, 48px);
  line-height: 1.06;
  letter-spacing: -0.035em;
  color: var(--ink);
  margin: 0 0 34px;
  max-width: 16ch;
}
.form__progress {
  height: 2px;
  background: var(--line);
  border-radius: 2px;
  margin-bottom: 34px;
  overflow: hidden;
}
.form__progress-bar {
  height: 100%;
  width: 33.3333%;
  background: var(--acc);
  border-radius: 2px;
  transition: width .5s cubic-bezier(.2,.7,.3,1);
}

.form__panel,
.form__done {
  display: none;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .4s, transform .4s;
}
.form__panel.is-active,
.form__done.is-active {
  display: block;
  opacity: 1;
  transform: none;
}
.form__q { font-size: 17px; color: var(--ink); margin: 0 0 18px; }
.form__chips { display: flex; flex-wrap: wrap; gap: 10px; }
.form__chips--goals { margin-bottom: 26px; }
.form__actions { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }

.form__fields { display: grid; gap: 12px; max-width: 460px; margin-bottom: 24px; }
.form__label {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}
.form__input {
  background: var(--card);
  border: 1px solid var(--line-2);
  border-radius: var(--r-sm);
  padding: 13px 15px;
  font-size: 15px;
  color: var(--btn);
  outline: none;
  transition: border-color .18s;
}
.form__input::placeholder { color: var(--dim); }
.form__input:focus { border-color: var(--btn); }
.form__input:focus-visible { outline: 2px solid var(--acc); outline-offset: 2px; }
.form__input.is-invalid { border-color: #C0392B; }

/* Honeypot — poza ekranem, niewidoczny dla użytkownika */
.form__hp {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form__error {
  margin: 0 0 14px;
  min-height: 0;
  font-size: 13.5px;
  color: #C0392B;
}
.form__error:empty { margin: 0; }
/* Numer w komunikacie błędu — klikalny, żeby na mobile nie trzeba było go przepisywać */
.form__error-tel {
  color: #C0392B;
  font-weight: 600;
  white-space: nowrap;
  text-underline-offset: 3px;
}
.form__fine { margin: 18px 0 0; font-size: 13px; color: var(--dim); }

.form__check {
  width: 40px; height: 40px;
  border-radius: 8px;
  background: var(--btn);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--btn-ink);
  font-size: 19px;
  font-weight: 600;
  margin-bottom: 24px;
}
.form__done-title {
  font-weight: 500;
  font-size: 30px;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin: 0 0 14px;
}
.form__done-text {
  font-size: 16.5px;
  line-height: 1.6;
  color: var(--muted);
  margin: 0 0 26px;
  max-width: 44ch;
}

/* Panel „zadzwoń" — pokazywany, gdy formEndpoint jest pusty (brak backendu) */
.form__check--call { background: var(--acc); color: var(--on-acc); }
.form__call-btn {
  font-size: 19px;
  letter-spacing: -0.01em;
  padding: 15px 26px;
  font-variant-numeric: tabular-nums;
}
.form__done--call .form__fine { margin-bottom: 22px; }
.form__done--call .form__fine a { color: var(--acc); }

/* Mini-podgląd telefonu — obudowa i ekran demo, celowo ciemne */
.formsec__preview { display: flex; justify-content: center; padding-top: 20px; }
.mini {
  position: relative;
  width: 210px;
  height: 480px;
  border-radius: 32px;
  background: linear-gradient(150deg, #2B2A30, #101014);
  padding: 8px;
  box-shadow: var(--sh-soft), inset 0 0 0 1px rgba(255, 255, 255, 0.06);
  transition: transform .5s;
}
.mini__notch {
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 48px;
  height: 12px;
  border-radius: 999px;
  background: #0C0C10;
  z-index: 6;
}
.mini__screen {
  position: absolute;
  inset: 8px;
  border-radius: 25px;
  overflow: hidden;
  background: var(--mini-bg, #0C1014);
  transition: background .5s;
}
.mini__hero {
  position: relative;
  height: 190px;
  background: color-mix(in srgb, var(--mini-accent, #93C7C2) 14%, transparent);
  transition: background .5s;
}
.mini__photo {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--mono);
  font-size: 7.5px;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.45);
}
.mini__wash {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.1) 40%, rgba(0,0,0,0.8));
}
.mini__cap { position: absolute; left: 12px; right: 12px; bottom: 12px; }
.mini__name { font-size: 14px; font-weight: 600; letter-spacing: -0.02em; color: #fff; }
.mini__kicker {
  font-family: var(--mono);
  font-size: 7px;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.6);
  margin: 5px 0 0;
}
.mini__body { padding: 12px; display: grid; gap: 8px; }
.mini__call {
  text-align: center;
  font-size: 11px;
  font-weight: 600;
  padding: 11px 0;
  border-radius: 7px;
  background: var(--mini-accent, #93C7C2);
  color: #0F0F12;
  opacity: 1;
  transition: all .45s;
}
.mini__offer {
  height: 42px;
  border-radius: 7px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.07);
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 0 11px;
  opacity: 1;
  transition: opacity .45s;
}
.mini__lines { display: grid; gap: 5px; flex: 1; }
.mini__lines i:first-child { display: block; height: 5px; width: 60%; border-radius: 3px; background: rgba(255,255,255,0.3); }
.mini__lines i:last-child { display: block; height: 4px; width: 38%; border-radius: 3px; background: rgba(255,255,255,0.15); }
.mini__form {
  display: grid;
  gap: 6px;
  padding: 10px;
  border-radius: 7px;
  background: rgba(255,255,255,0.04);
  opacity: 1;
  transition: opacity .45s;
}
.mini__form i { display: block; height: 16px; border-radius: 4px; background: rgba(255,255,255,0.09); }
.mini__map {
  height: 66px;
  border-radius: 7px;
  background: rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--mono);
  font-size: 7.5px;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.4);
  opacity: 1;
  transition: opacity .45s;
}
/* Stan „cel niewybrany” — JS przełącza klasą */
.mini__call.is-dim,
.mini__offer.is-dim,
.mini__form.is-dim,
.mini__map.is-dim { opacity: 0.14; }

/* ---------- 16. STOPKA ---------- */
.footer {
  position: relative;
  z-index: 4;
  border-top: 1px solid var(--line);
  padding: clamp(36px, 5vw, 52px) 0 120px;
}
.footer__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  align-items: center;
  justify-content: space-between;
}
.footer__brand { display: flex; align-items: baseline; gap: 9px; }
.footer__name { font-weight: 600; font-size: 17px; letter-spacing: -0.02em; color: var(--ink); }
.footer__dot { width: 5px; height: 5px; border-radius: 50%; background: var(--acc); display: inline-block; }
.footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  align-items: center;
  font-size: 14.5px;
}
.footer__links a { color: var(--muted); }
.footer__links a:hover { color: var(--acc); }
.footer__link-dim { color: var(--dim); }

/* ---------- 17. LEPKA BELKA ---------- */
.sticky-bar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 50;
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid var(--line);
  transform: translateY(110%);
  transition: transform .5s cubic-bezier(.2,.7,.3,1);
}
.sticky-bar.is-visible { transform: translateY(0); }
.sticky-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px 16px;
  flex-wrap: wrap;
  padding-block: 12px;
}
.sticky-bar__txt {
  font-family: var(--mono);
  color: var(--ink-2);
  letter-spacing: 0.02em;
  font-size: clamp(11.5px, 2.6vw, 13px);
}
.sticky-bar .btn--solid { padding: 10px 20px; }

/* ---------- 18. Breakpointy ---------- */
@media (max-width: 900px) {
  .hero { height: 260vh; }
  .hero__aura { top: 46%; }

  .build { height: 300vh; }
  .build__grid {
    padding: 0 24px;
    grid-template-columns: 1fr;
    gap: 24px;
    justify-items: center;
  }
  .build__copy { order: 2; text-align: center; width: 100%; }
  .build__steps { min-height: 180px; }
  .build__step p { margin-inline: auto; }
  .build__dots { justify-content: center; }

  /* Telefon bez ciemnej obudowy — na mobile to karta w motywie strony */
  .phone {
    width: 268px;
    height: 545px;
    border-radius: 34px;
    background: var(--card);
    border: 1px solid var(--line);
    padding: 0;
    box-shadow: var(--sh-card);
    transform: none;
  }
  .phone__notch { display: none; }
  .phone__screen { inset: 0; border-radius: 33px; }
  .phone__glow { inset: 0; border-radius: 33px; }
  .mock__hero { height: 39%; }

  /* Rotor: bez sticky — karuzela telefonów */
  .rotor { height: auto; padding: 80px 0; }
  .rotor__sticky { position: static; height: auto; display: flex; align-items: center; overflow: visible; }
  .rotor__copy { order: 2; text-align: center; width: 100%; }
  .rotor__cases { min-height: 150px; }
  .rotor__case p { margin-inline: auto; }
  .rotor__stage {
    order: 3;
    display: flex;
    gap: 12px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 8px 0;
    width: 100%;
    height: auto;
    perspective: none;
    /* centrowanie flexem ucina pierwszy slajd przy przewijaniu — start od lewej */
    justify-content: flex-start;
    align-items: flex-start;
  }
  #rotor3d { display: none; }
  .rotor__phone {
    /* jeden telefon = jeden slajd na całą szerokość, żeby snap trafiał w indeks */
    flex: 0 0 100%;
    scroll-snap-align: center;
    display: flex;
    justify-content: center;
    padding: 0 6px;
  }
  .rotor__dots {
    display: flex;
    gap: 6px;
    justify-content: center;
    order: 4;
    width: 100%;
    margin-top: 6px;
  }

  .live__head { align-items: flex-start; }
  .formsec__preview { padding-top: 0; }
}

@media (max-width: 560px) {
  .nav__links { gap: 8px 14px; }
  .hero__title { padding: 0 16px; }
  .scope__cols { margin-bottom: 44px; }
  .footer__links { gap: 14px 20px; }
}

/* ---------- 19. Ograniczony ruch ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
  [data-reveal] { opacity: 1 !important; transform: none !important; filter: none !important; }
  .hero__window { filter: none; }
  .phone { transform: none; }
}

/* ---------- 20. Druk ---------- */
@media print {
  #bg-canvas, .noise, .sticky-bar, .hero__hint, .hero__aura, .hero__fog, .skip-link { display: none !important; }
  body { background: #fff; color: #000; }
  .hero, .build, .rotor { height: auto !important; }
  .hero__stage, .build__sticky, .rotor__sticky { position: static !important; height: auto !important; }
  .hero__window, .build__step, .rotor__case, .form__panel { position: static !important; opacity: 1 !important; visibility: visible !important; transform: none !important; filter: none !important; display: block !important; }
  .live__screen iframe, .hero__site iframe, .rotor__screen iframe { display: none !important; }
  a[href^="http"]::after { content: " (" attr(href) ")"; font-size: 11px; color: #555; }
  .faq__item p { display: block !important; }
}
