/* Paletomat v2 — Silk Neomorphism layer
 * Wszystkie efekty zachowane; powierzchnie, kolory i typografia Soft UI. */

/* ── Global canvas ── */
.aurora {
  opacity: 0.85;
  animation-duration: 42s;
}

.vignette {
  background:
    radial-gradient(ellipse 100% 85% at 50% 40%, transparent 42%, rgba(241, 245, 249, 0.55) 72%, rgba(226, 232, 240, 0.82) 100%),
    radial-gradient(circle 720px at 100% 0%, rgba(99, 102, 241, 0.06), transparent);
}

.dot-grid {
  background-image: radial-gradient(circle, rgba(99, 102, 241, 0.07) 1px, transparent 1px);
  opacity: 0.45;
}

.grain {
  opacity: 0.035;
  mix-blend-mode: multiply;
}

.scroll-progress {
  background: linear-gradient(90deg, var(--accent), var(--accent-bright));
  box-shadow: 0 0 12px rgba(99, 102, 241, 0.35);
  height: 2px;
}

.section--veiled {
  background:
    linear-gradient(180deg, transparent 0%, var(--bg-section-overlay) 12%, var(--bg-section-overlay) 88%, transparent 100%);
}

.section--veiled::before {
  background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(99, 102, 241, 0.04), transparent 70%);
}

::selection {
  background: rgba(99, 102, 241, 0.22);
  color: var(--ink);
}

/* ── Typografia ── */
.eyebrow {
  color: var(--accent);
  font-family: var(--font-sans);
  font-weight: 600;
  letter-spacing: 0.14em;
}
.eyebrow::before {
  background: linear-gradient(90deg, var(--accent), transparent);
}

/* A11y kontrast: cta__hint było na --ink-mute2 (#94a3b8) — za jasne (oblany WCAG).
   --ink-muted ma lepszy kontrast i zdaje. */
.cta__hint {
  color: var(--ink-muted);
}

.h2 .line:last-child .line__inner,
.h2--gradient-last .line:last-child .line__inner {
  background: var(--grad-brand);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.hero__stat-val {
  background: var(--grad-brand);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ── Logo ── */
.nav__logo-text-a { color: var(--ink); }
.nav__logo-text-b {
  background: var(--grad-brand);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.nav__logo-img {
  filter: drop-shadow(0 4px 12px rgba(99, 102, 241, 0.28));
  border-radius: var(--r-2);
}

/* ── Nav — wypukła płytka ── */
.nav {
  background: linear-gradient(180deg, rgba(248, 250, 252, 0.92) 0%, rgba(248, 250, 252, 0) 100%);
  border-bottom-color: transparent;
}
.nav.is-scrolled {
  background: rgba(248, 250, 252, 0.88);
  border-bottom-color: var(--line);
  backdrop-filter: blur(20px) saturate(1.2);
  box-shadow: 0 8px 32px rgba(148, 163, 184, 0.12);
}

.nav__link {
  border-radius: var(--r-btn);
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.01em;
  text-transform: none;
}
.nav__link:hover {
  color: var(--ink);
  background: var(--bg-card);
  box-shadow: var(--neo-soft);
}
.nav__link.is-active {
  color: var(--accent-deep);
  background: var(--bg-card);
  box-shadow: var(--neo-pressed);
}

.nav__cta {
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: var(--r-btn);
  box-shadow: var(--neo-indigo);
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: -0.01em;
  text-transform: none;
}
.nav__cta:hover {
  background: var(--accent-deep);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 18px 40px -12px rgba(99, 102, 241, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.nav__burger {
  border-radius: var(--r-btn);
  border: none;
  background: var(--bg);
  box-shadow: var(--neo-soft);
}
.nav__burger:active {
  box-shadow: var(--neo-pressed);
}

/* ── Badge ── */
.badge {
  border-radius: 999px;
  background: var(--bg);
  border: none;
  box-shadow: var(--neo-soft);
  letter-spacing: 0.12em;
  font-family: var(--font-sans);
  font-weight: 600;
}
.badge__dot {
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 10px rgba(99, 102, 241, 0.45);
  animation: silk-pulse 2.6s var(--ease-power-in-out) infinite;
}
@keyframes silk-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.65; transform: scale(0.88); }
}

/* ── Hero typewriter ── */
.hero__title .line:nth-child(2) .line__inner {
  background: var(--grad-brand);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.type-caret {
  color: var(--accent);
  -webkit-text-fill-color: var(--accent);
}

/* ── Typografia — ogónki nigdzie nie obcięte ── */
.theme-silk .line,
body.theme-v2.theme-silk .line {
  overflow: visible;
  padding-bottom: 0.18em;
  margin-bottom: 0;
}
.theme-silk .line__inner,
body.theme-v2.theme-silk .line__inner {
  padding-bottom: 0.1em;
}
.theme-silk .hero__title,
body.theme-v2.theme-silk .hero__title {
  line-height: 1.06;
  font-size: clamp(40px, 6.2vw, 84px);
}
.theme-silk .h2,
body.theme-v2.theme-silk .h2 {
  line-height: 1.1;
}

/* ── Hero — pełna wysokość dla palety 3D, treść lekko uniesiona ── */
.hero {
  min-height: 100dvh;
  min-height: 100svh;
  align-items: end;
  padding-top: calc(var(--safe-top) + 72px);
  padding-bottom: clamp(280px, 30vh, 360px);
}
.hero__inner {
  align-items: end;
}
.hero__title .line:first-child {
  padding-bottom: 0.2em;
}
.hero__title .line--type {
  overflow: visible;
  padding-bottom: 0.22em;
  margin-bottom: 0;
}
.hero__title .line--type .line__inner {
  display: block;
  line-height: 1.12;
  min-height: 1.12em;
  padding-bottom: 0.12em;
  overflow: visible;
}
.hero__title .line--type .type-wrap {
  display: grid;
  grid-template: 1fr / 1fr;
  align-items: center;
  line-height: 1.12;
  min-height: 1.12em;
  padding-bottom: 0.12em;
  overflow: visible;
}
.hero__title .line--type .type-ghost,
.hero__title .line--type .type-live {
  grid-area: 1 / 1;
  line-height: 1.12;
  white-space: nowrap;
  overflow: visible;
}

@media (max-width: 720px) {
  .hero {
    padding-top: calc(var(--safe-top) + 64px);
    padding-bottom: clamp(220px, 27vh, 280px);
  }
  .hero__title .line--type .type-ghost,
  .hero__title .line--type .type-live { white-space: normal; }
  .hero__title .line--type .line__inner,
  .hero__title .line--type .type-wrap {
    min-height: 2.36em;
    padding-bottom: 0.16em;
  }
}

.hero__stat {
  background: var(--bg);
  border: none;
  box-shadow: var(--neo-raised);
  backdrop-filter: none;
}
.hero__hint-key {
  border: none;
  background: var(--bg);
  box-shadow: var(--neo-pressed);
  color: var(--accent-deep);
}

/* ── Przyciski ── */
.btn { border-radius: var(--r-btn); }

.btn--primary {
  background: var(--accent);
  border: none;
  color: #fff;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.01em;
  text-transform: none;
  box-shadow: var(--neo-indigo);
}
.btn--primary::before { display: none; }
.btn--primary:hover {
  background: var(--accent-deep);
  transform: translateY(-2px);
  box-shadow: 0 20px 44px -14px rgba(99, 102, 241, 0.48), inset 0 1px 0 rgba(255, 255, 255, 0.28);
}
.btn--primary:active {
  transform: translateY(0);
  box-shadow: var(--neo-pressed);
}

.btn--ghost {
  background: var(--bg);
  border: none;
  color: var(--ink-soft);
  box-shadow: var(--neo-soft);
  font-family: var(--font-sans);
  font-weight: 500;
  text-transform: none;
}
.btn--ghost:hover {
  color: var(--accent-deep);
  background: var(--bg);
  box-shadow: var(--neo-raised);
}

/* ── Ticker ── */
.ticker {
  background: var(--bg);
  border-color: var(--line);
  box-shadow: var(--neo-soft);
  backdrop-filter: none;
}

/* ── Powierzchnie neo ── */
.hero__stat,
.step,
.testi__card,
.plan,
.faq__item,
.product-capsule,
.product-panel,
.bento__card,
.product-split {
  border-radius: var(--r-card);
  border: none;
}

.step,
.bento__card,
.faq__item {
  background: var(--bg);
  box-shadow: var(--neo-raised);
}
.step:hover,
.bento__card:hover {
  box-shadow: var(--neo-float);
  transform: translateY(-3px);
}

.bento__card::before {
  background: radial-gradient(420px circle at var(--mx, 50%) var(--my, 50%), rgba(99, 102, 241, 0.14), transparent 58%);
}

/* ── Product split ── */
.product-split {
  background: var(--bg);
  box-shadow: var(--neo-raised);
  border: none;
}
.product-panel {
  background: var(--bg-card);
  box-shadow: var(--neo-soft);
  padding: var(--s-5) var(--s-6);
  align-items: center;
  box-sizing: border-box;
}
.product-panel.is-active {
  box-shadow: var(--neo-raised);
  border-color: transparent;
}

/* ── Moduły — czyste tło wizualizacji ── */
.product-panel__viz {
  align-self: center;
  justify-self: stretch;
  width: 100%;
  max-width: 220px;
  aspect-ratio: 1;
  min-height: 0;
  height: auto;
  max-height: min(200px, 100%);
  margin: var(--s-2) 0;
  border: none;
  background: var(--bg);
  box-shadow: var(--neo-pressed);
  overflow: hidden;
  isolation: isolate;
}

.product-viz-grid span {
  background: rgba(99, 102, 241, 0.28);
}
.product-panel.is-active .product-viz-grid span {
  animation: product-sprite-silk 2.8s ease-in-out infinite;
}
@keyframes product-sprite-silk {
  0%, 72%, 100% {
    opacity: 0.55;
    transform: translateY(8px) scale(0.72);
    background: rgba(99, 102, 241, 0.28);
  }
  36% {
    opacity: 1;
    transform: translateY(0) scale(1);
    background: var(--accent);
  }
}
.product-viz-bars span {
  background: rgba(99, 102, 241, 0.3);
}
.product-panel.is-active .product-viz-bars span {
  background: linear-gradient(180deg, var(--accent), var(--accent-bright));
}

/* Skaner — kod kreskowy + wiązka */
.product-viz-scan {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  background: transparent;
  border: none;
  box-shadow: none;
}
.product-viz-scan__frame {
  position: relative;
  width: 118px;
  height: 118px;
  border-radius: 16px;
  background: var(--bg-card);
  box-shadow: var(--neo-soft);
  display: grid;
  place-items: center;
  overflow: hidden;
}
.product-viz-scan__frame::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 2px solid rgba(99, 102, 241, 0.28);
  border-radius: 10px;
  pointer-events: none;
}
.product-viz-scan__code {
  display: flex;
  align-items: flex-end;
  gap: 5px;
  height: 52px;
  z-index: 1;
}
.product-viz-scan__code span {
  display: block;
  width: 4px;
  border-radius: 2px;
  background: var(--accent);
  opacity: 0.75;
}
.product-viz-scan__code span:nth-child(1) { height: 68%; }
.product-viz-scan__code span:nth-child(2) { height: 92%; }
.product-viz-scan__code span:nth-child(3) { height: 54%; }
.product-viz-scan__code span:nth-child(4) { height: 84%; }
.product-viz-scan__code span:nth-child(5) { height: 62%; }
.product-viz-scan__code span:nth-child(6) { height: 78%; }
.product-viz-scan__beam {
  position: absolute;
  left: 12%;
  right: 12%;
  height: 2px;
  border-radius: 1px;
  background: var(--accent);
  box-shadow: 0 0 10px rgba(99, 102, 241, 0.45);
  animation: scan-beam-silk 2.1s ease-in-out infinite;
  z-index: 2;
}
@keyframes scan-beam-silk {
  0%, 100% { top: 24%; opacity: 0.55; }
  50% { top: 72%; opacity: 1; }
}

/* Pobieranie — czyste koło, bez blasku z boku */
.product-viz-dl {
  width: 84px;
  height: 84px;
  border: none;
  border-radius: 50%;
  background: var(--bg-card);
  box-shadow: var(--neo-raised);
  display: grid;
  place-items: center;
}
.product-viz-dl__arrow {
  color: var(--accent);
  width: 28px;
  height: 28px;
}
.product-panel__viz--download {
  background: var(--bg);
}
.product-viz-spark span {
  background: var(--accent);
}
.product-viz-link span {
  border-color: var(--accent);
  box-shadow: var(--neo-soft);
}
@keyframes product-link-pulse-silk {
  0%, 100% { transform: scale(1); box-shadow: var(--neo-soft); }
  50% { transform: scale(1.08); box-shadow: 0 0 20px rgba(99, 102, 241, 0.35); }
}
.product-viz-link span:last-child {
  animation: product-link-pulse-silk 1.2s ease-in-out infinite;
}
.product-viz-allegro__logo {
  filter: none;
  opacity: 1;
}

/* ── Timeline ── */
.product-timeline__fill {
  background: linear-gradient(90deg, var(--accent) 0%, var(--accent-bright) 100%);
}
.product-timeline__playhead,
.product-timeline__playhead::before {
  background: var(--accent);
  box-shadow: 0 0 12px rgba(99, 102, 241, 0.45);
}
.product-timeline__capsule {
  background: var(--bg);
  border: none;
  box-shadow: var(--neo-soft);
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.04em;
}
.product-timeline__capsule.is-lit {
  color: var(--accent-deep);
  box-shadow: var(--neo-raised), 0 0 0 1px rgba(99, 102, 241, 0.12);
  transform: translateX(-50%) scale(1.03);
}
.product-timeline__stem.is-lit,
.product-timeline__stem.is-passed {
  background: var(--accent);
}
.product-timeline__capsule.is-passed {
  color: var(--ink-muted);
  box-shadow: var(--neo-pressed);
}

/* ── Testimonials ── */
.testi-wall {
  background: var(--bg);
  border: none;
  box-shadow: var(--neo-raised);
  backdrop-filter: none;
}
.testi__card {
  background: var(--bg-card);
  border: none;
  box-shadow: var(--neo-soft);
}
.testi__card--featured {
  box-shadow: var(--neo-float), 0 0 0 1px rgba(99, 102, 241, 0.1);
}
.testi__card--wall.is-pick-selected {
  position: relative;
  background: linear-gradient(var(--bg), var(--bg)) padding-box,
    var(--grad-brand) border-box;
  border: 2px solid transparent;
  box-shadow: var(--neo-float), 0 10px 28px -12px rgba(99, 102, 241, 0.28);
  transform: translateY(-2px);
}
.testi__card--wall.is-pick-selected .testi__text,
.testi__card--wall.is-pick-selected .testi__name {
  color: var(--ink);
}
.testi__card--wall.is-pick-selected .testi__quote-mark {
  opacity: 0.28;
}
.testi-advisor.is-pick-mode .testi__card--wall.is-pickable {
  transition:
    box-shadow var(--d-fast),
    transform var(--d-fast),
    border-color var(--d-fast);
}
.testi-advisor.is-pick-mode .testi__card--wall.is-pickable:hover {
  border-color: transparent;
  box-shadow: var(--neo-raised), 0 0 0 1px rgba(99, 102, 241, 0.2);
  transform: translateY(-1px);
}
.testi-advisor.is-pick-mode .testi__card--wall:not(.is-pick-selected) {
  opacity: 0.82;
}
.testi-advisor__pick-hint {
  color: var(--accent-deep);
  font-weight: 500;
}
.testi__avatar {
  border-radius: var(--r-2) !important;
  box-shadow: var(--neo-soft) !important;
}
.testi-advisor.is-featured-open .testi-advisor__close {
  background: var(--bg);
  border: none;
  box-shadow: var(--neo-soft);
}

/* ── Pricing ── */
.plan {
  background: var(--bg);
  border: none;
  box-shadow: var(--neo-raised);
  backdrop-filter: none;
}
.plan:hover {
  transform: translateY(-4px);
  box-shadow: var(--neo-float);
}
.plan::before {
  background: conic-gradient(
    from var(--ang, 0deg) at 50% 50%,
    transparent 72%,
    var(--accent-bright) 82%,
    var(--accent) 90%,
    transparent 100%
  );
}
.plan--featured {
  background: var(--bg);
  box-shadow: var(--neo-float), 0 0 0 2px rgba(99, 102, 241, 0.14);
}
.plan--featured:hover {
  box-shadow: var(--neo-float), 0 0 0 2px rgba(99, 102, 241, 0.22);
  border-color: transparent;
}
.plan__badge {
  background: var(--accent);
  box-shadow: var(--neo-indigo);
}

/* ── FAQ ── */
.faq__item {
  border: none;
  background: var(--bg);
  box-shadow: var(--neo-soft);
}
.faq__item.is-open {
  background: var(--bg);
  box-shadow: var(--neo-pressed);
  border: none;
}
.faq__item.is-open .faq__q-text {
  color: var(--accent-deep);
}
.faq__q:hover .faq__q-text {
  color: var(--accent-deep);
}
.faq__a-text {
  color: var(--ink-soft);
}
.faq__q-icon::before,
.faq__q-icon::after {
  background: var(--accent);
}

/* ── CTA — miejsce na ogónki (y, j, ę) ── */
.section--cta {
  overflow-y: visible;
  padding-bottom: clamp(140px, 20vw, 220px);
}
[data-cta-heading] .line {
  filter: drop-shadow(0 8px 24px rgba(99, 102, 241, 0.18));
  overflow: visible !important;
  padding-bottom: 0.2em;
  margin-bottom: 0;
}
[data-cta-heading] .line__inner,
[data-cta-heading] .cta-char {
  background: var(--grad-brand);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  padding-bottom: 0.1em;
  overflow: visible;
}
[data-cta-heading] .line__inner.cta-char-line {
  overflow: visible;
}

/* ── Spotlight — indigo inner glow ── */
.has-spotlight::before {
  background: radial-gradient(180px circle at var(--mx) var(--my), var(--accent-bright), transparent 52%);
}
.has-spotlight::after {
  background: radial-gradient(360px circle at var(--mx) var(--my), rgba(99, 102, 241, 0.1), transparent 42%);
}

/* ── Footer ── */
.footer {
  border-top-color: var(--line);
}
.footer__wordmark {
  background: linear-gradient(180deg, rgba(99, 102, 241, 0.18), transparent);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 0.45;
}
.footer__news::before {
  background: linear-gradient(135deg, transparent, rgba(99, 102, 241, 0.2), transparent);
}

.v2-banner {
  color: var(--accent-deep);
  background: var(--bg);
  border: none;
  box-shadow: var(--neo-soft);
  font-family: var(--font-sans);
  font-weight: 600;
  letter-spacing: 0.1em;
}

/* ── Mobile: timeline → lista modułów ── */
.product-modules-mobile { display: none; }

@media (max-width: 960px) {
  .product-timeline--desktop { display: none !important; }

  .product-modules-mobile {
    display: flex;
    flex-direction: column;
    gap: var(--s-2);
    margin-bottom: var(--s-4);
  }

  .product-modules-mobile__btn {
    display: flex;
    align-items: center;
    gap: var(--s-3);
    width: 100%;
    padding: 14px 16px;
    text-align: left;
    border: none;
    border-radius: var(--r-card);
    background: var(--bg);
    color: var(--ink-soft);
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 500;
    line-height: 1.3;
    cursor: pointer;
    box-shadow: var(--neo-soft);
    transition: box-shadow var(--d-fast), color var(--d-fast), transform var(--d-fast);
  }

  .product-modules-mobile__btn.is-active {
    color: var(--accent-deep);
    background: var(--bg);
    box-shadow: var(--neo-pressed), 0 0 0 2px rgba(99, 102, 241, 0.12);
  }

  .product-modules-mobile__btn:active {
    transform: scale(0.99);
  }

  .product-modules-mobile__num {
    flex-shrink: 0;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: var(--accent);
    min-width: 2.2em;
  }

  .product-modules-mobile__label { flex: 1; min-width: 0; }

  .product-split__top { min-height: 0; }
  .product-split.is-mobile-timeline .product-split__bottom { min-height: 260px; }

  .product-panel {
    padding: var(--s-4);
  }
  /* Aktywny panel W PRZEPŁYWIE → .product-stage rośnie do treści, więc tekst pod ikoną
     NIE obcina się (panele są domyślnie position:absolute w kontenerze o stałej wysokości,
     a najdłuższy moduł — Allegro — ma kilka linijek). Nieaktywne zostają absolute (ukryte). */
  .product-panel.is-active {
    position: relative;
  }
  /* Mobile: wycentrowany kwadrat ikony/wizualizacji (mniejszy, by zostało miejsce na tekst). */
  .product-panel__viz {
    width: 120px;
    max-width: 120px;
    height: 120px;
    max-height: 120px;
    aspect-ratio: auto;
    justify-self: center;
    margin: var(--s-2) auto var(--s-3);
  }
}

/* ── Mobile: testimonials ── */
@media (max-width: 960px) {
  .testi-featured .testi__card--featured {
    width: 100%;
    max-width: none;
    flex: none;
  }
  .testi-advisor.is-pick-mode .testi-wall { display: block; }
}

/* ── Burger menu ── */
@media (max-width: 760px) {
  /* WAŻNE: #nav siedzi wewnątrz .overlay (position:relative; z-index:var(--z-overlay)=2),
     który tworzy własny kontekst stackingu. Backdrop na body::before (root, z>2) malował się
     NAD całym .overlay (czyli nad nav i drawerem) → pusta przezroczysta nakładka.
     Rozwiązanie: backdrop też w kontekście .overlay (jako .overlay::before), z z-index PONIŻEJ
     nav (53), ale NAD treścią strony — wtedy drawer jest nad backdropem, a blur działa. */
  body.nav-open .overlay::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: calc(var(--z-nav) - 1);
    background: rgba(248, 250, 252, 0.72);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
  }

  /* Nav ponad backdropem (w obrębie .overlay) — drawer z linkami i logowaniem widoczny. */
  body.nav-open .nav {
    z-index: calc(var(--z-nav) + 3);
  }

  body.nav-open .nav__drawer {
    display: flex;
    flex-direction: column;
    gap: var(--s-2);
    position: fixed;
    top: calc(var(--safe-top) + 56px);
    left: var(--gutter);
    right: var(--gutter);
    z-index: calc(var(--z-nav) + 2);
    padding: var(--s-4);
    background: var(--bg);
    border: none;
    border-radius: var(--r-card);
    box-shadow: var(--neo-float);
    max-height: calc(100dvh - var(--safe-top) - 72px);
    overflow-y: auto;
  }

  body.nav-open .nav__links {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: var(--s-1);
  }

  body.nav-open .nav__link {
    display: block;
    padding: 14px 16px;
    border-radius: var(--r-btn);
    font-size: 15px;
  }

  body.nav-open .nav__cta {
    display: inline-flex;
    justify-content: center;
    width: 100%;
    margin-top: var(--s-2);
    padding: 14px 20px;
    font-size: 14px;
  }

  .nav__burger[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(3.25px) rotate(45deg);
  }
  .nav__burger[aria-expanded="true"] span:nth-child(2) {
    transform: translateY(-3.25px) rotate(-45deg);
  }
  .nav__burger span { transition: transform var(--d-fast); }
}

/* ── Steps pulse (zachowane, indigo) ── */
.step--active {
  border-color: transparent;
  box-shadow: var(--neo-float), 0 0 0 2px rgba(99, 102, 241, 0.2);
}
.step--active .step__num {
  color: var(--accent-deep);
  border: none;
  background: var(--bg);
  box-shadow: var(--neo-pressed);
}
.step--dim .step__num {
  border: none;
  background: var(--bg-card);
  box-shadow: var(--neo-pressed);
}
.step:hover { border-color: transparent; box-shadow: var(--neo-raised); }
.bento__card:hover {
  background: var(--bg);
  border-color: transparent;
  box-shadow: var(--neo-float);
}
.bento__num,
.bento__icon {
  border: none;
  box-shadow: var(--neo-soft);
}

/* ── Trust / compare / footer ── */
.trust__item {
  border: none;
  background: var(--bg);
  box-shadow: var(--neo-soft);
  backdrop-filter: none;
}
.compare-toggle {
  border: none;
  background: var(--bg);
  box-shadow: var(--neo-raised);
  backdrop-filter: none;
}
.compare-toggle:hover {
  background: var(--bg);
  box-shadow: var(--neo-float);
  color: var(--accent-deep);
}
.compare {
  border: none;
  background: var(--bg);
  box-shadow: var(--neo-raised);
  backdrop-filter: none;
}
.compare__table th {
  background: var(--bg-card);
}
.footer__news-input {
  background: var(--bg);
  border: none;
  box-shadow: var(--neo-pressed);
  border-radius: var(--r-btn);
}
.footer__news-input:focus {
  border: none;
  background: var(--bg);
  box-shadow: var(--neo-soft), 0 0 0 2px rgba(99, 102, 241, 0.18);
}
.footer__news-btn {
  border-radius: var(--r-btn);
  background: var(--accent);
  box-shadow: var(--neo-indigo);
}
.footer__news-success {
  color: #059669;
  background: rgba(16, 185, 129, 0.08);
  border: none;
  box-shadow: var(--neo-soft);
}

/* ── CTA hint ── */
.cta__hint {
  color: var(--ink-soft); /* ciemniejszy = lepszy kontrast (WCAG) */
  font-family: var(--font-sans);
  font-weight: 500;
  letter-spacing: 0.08em;
}

/* ── Testimonials scan — indigo sweep ── */
.testi-wall__scan {
  background: linear-gradient(
    180deg,
    rgba(99, 102, 241, 0) 0%,
    rgba(99, 102, 241, 0.1) 38%,
    rgba(129, 140, 248, 0.22) 50%,
    rgba(99, 102, 241, 0.1) 62%,
    rgba(99, 102, 241, 0) 100%
  );
}

/* ── Focus ring ── */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}
