/* ============================================================
   ZIZIMEDIA — wspólny arkusz stylów
   Marka: marketing + creator economy + AI
   Tokeny i UI odtworzone z design handoffu (high-fidelity)
   ============================================================ */

:root {
  --accent: #2353ff;
  --accent-2: #4d74ff;
  --accent-hover: #1b43e0;
  --ink: #0e0e10;
  --bg: #fbfbf9;
  --bg-alt: #f3f3f1;
  --line: #e8e8e3;
  --text: #55555c;
  --text-soft: #9a9aa4;
  --text-soft-2: #b4b4be;
  --nav-muted: #b9b9c2;
  --green: #1f9e57;
  --tile-hover: #f6f8ff;
  --container: 1160px;
  --pad-x: 32px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--ink);
  font-family: 'Manrope', sans-serif;
  -webkit-font-smoothing: antialiased;
  color: var(--ink);
}

a { color: inherit; }

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

/* ---------- Layout ---------- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}

.section { padding: 96px 0; }
.section--dark { background: var(--ink); color: #fff; }
.section--light { background: var(--bg); }
.section--alt { background: var(--bg-alt); }

/* ---------- Typography ---------- */
.eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
}
.eyebrow--2 { color: var(--accent-2); }

.eyebrow-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #fff;
  background: var(--accent);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 24px;
}
.eyebrow-pill--on-dark { color: var(--ink); background: var(--accent-2); }

.h2 {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(30px, 4.5vw, 52px);
  letter-spacing: -0.03em;
  line-height: 1.04;
  margin: 0 0 48px;
  max-width: 780px;
}
.h2--tight { margin-bottom: 14px; }

.lead {
  font-size: 18px;
  line-height: 1.55;
  color: var(--text);
  max-width: 740px;
}
.section--dark .lead { color: var(--text-soft); }

/* Rotująca pigułka w nagłówkach */
.pill {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  padding: 0 0.22em 0.06em;
  border-radius: 18px;
  transform: rotate(-2.5deg);
  transition: transform 0.3s ease;
}
.pill:hover { transform: rotate(0deg); }

/* ---------- Logo ---------- */
.logo {
  display: flex;
  align-items: center;
  gap: 13px;
  text-decoration: none;
}
.logo__mark {
  background: var(--accent);
  border-radius: 999px;
  padding: 7px 17px;
}
.logo__mark span {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 21px;
  letter-spacing: -1px;
  color: #fff;
}
.logo__suffix {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.34em;
  color: #fff;
  padding-left: 0.34em;
}

/* ---------- Nav ---------- */
.hero {
  background: radial-gradient(900px 520px at 72% -5%, rgba(35, 76, 255, 0.18), transparent 60%), var(--ink);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.hero__blur {
  position: absolute;
  top: -160px;
  right: -80px;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(35, 76, 255, 0.55), transparent 65%);
  filter: blur(70px);
  animation: zzfloat 16s ease-in-out infinite;
  pointer-events: none;
}

.nav {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: var(--container);
  margin: 0 auto;
  padding: 24px var(--pad-x);
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav__link {
  font-size: 14px;
  font-weight: 600;
  color: var(--nav-muted);
  text-decoration: none;
  transition: color 0.2s ease;
}
.nav__link:hover { color: #fff; }
.nav__link.is-active { color: var(--accent-2); font-weight: 700; }

.nav__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 12px;
  cursor: pointer;
}
.nav__toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 0 auto;
  background: #fff;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 16px;
  padding: 16px 30px;
  border-radius: 999px;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.btn--sm { font-size: 14px; padding: 11px 20px; gap: 8px; }
.btn--primary { background: var(--accent); color: #fff; }
.btn--primary:hover { background: var(--accent-hover); transform: translateY(-2px); }
.btn--outline {
  border-color: rgba(255, 255, 255, 0.24);
  color: #fff;
  background: transparent;
}
.btn--outline:hover { border-color: #fff; background: rgba(255, 255, 255, 0.05); }
.btn--white {
  background: #fff;
  color: var(--accent);
  font-size: 17px;
  padding: 18px 34px;
  white-space: nowrap;
}
.btn--white:hover { background: var(--ink); color: #fff; transform: translateY(-2px); }

/* ---------- Hero content ---------- */
.hero__body {
  position: relative;
  max-width: var(--container);
  margin: 0 auto;
  padding: 74px var(--pad-x) 96px;
}
.hero__eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-2);
  margin-bottom: 26px;
  animation: zzrise 0.6s ease both;
}
.hero__title {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(46px, 7.4vw, 96px);
  line-height: 0.99;
  letter-spacing: -0.04em;
  margin: 0;
  max-width: 1020px;
  animation: zzrise 0.7s ease both 0.06s;
}
.hero__lead {
  font-size: clamp(18px, 2.1vw, 23px);
  line-height: 1.5;
  color: var(--text-soft-2);
  max-width: 740px;
  margin: 32px 0 0;
  font-weight: 500;
  animation: zzrise 0.7s ease both 0.14s;
}
.hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 40px;
  animation: zzrise 0.7s ease both 0.2s;
}
.hero__stats {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  margin-top: 56px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.06em;
  color: #83838d;
}
.hero__stats strong { color: #fff; font-weight: 700; }

/* ---------- Marquee ---------- */
.marquee {
  background: var(--accent);
  overflow: hidden;
  padding: 17px 0;
}
.marquee__track {
  display: flex;
  width: max-content;
  animation: zzmarquee 28s linear infinite;
}
.marquee__group {
  display: flex;
  align-items: center;
  gap: 28px;
  padding-right: 28px;
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 26px;
  letter-spacing: -0.01em;
  color: var(--ink);
  text-transform: uppercase;
  white-space: nowrap;
}
.marquee__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--ink);
  flex: none;
}

/* ---------- Service grid (hairline) ---------- */
.grid-hairline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.grid-hairline--4 { grid-template-columns: repeat(4, 1fr); }

.tile {
  background: #fff;
  padding: 34px 30px;
  transition: background 0.25s ease, box-shadow 0.25s ease;
}
.tile--hoverable:hover { background: var(--tile-hover); box-shadow: inset 3px 0 0 var(--accent); }
.tile__num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  color: var(--accent);
  margin-bottom: 16px;
}
.tile__num--lg {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 30px;
  margin-bottom: 16px;
}
.tile__title {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 21px;
  letter-spacing: -0.02em;
  margin-bottom: 9px;
}
.tile__text { color: var(--text); font-size: 15px; line-height: 1.55; }

/* ---------- Dark / audience cards ---------- */
.cards-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.cards-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }

.card {
  background: #15151a;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 34px 30px;
  display: flex;
  flex-direction: column;
  min-height: 320px;
  transition: transform 0.25s ease, border-color 0.25s ease;
}
.card:hover { transform: translateY(-5px); border-color: var(--accent-2); }
.card--featured {
  background: linear-gradient(160deg, #1a2a66, #11142e);
  border-color: rgba(77, 116, 255, 0.35);
}
.card__eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.14em;
  color: var(--accent-2);
  margin-bottom: 18px;
}
.card__title {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 24px;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.card__text { color: var(--text-soft); font-size: 15px; line-height: 1.55; flex: 1; }
.card--featured .card__text { color: #aeb0c4; }

.card-sm {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  padding: 30px 28px;
  transition: border-color 0.25s ease, transform 0.25s ease;
}
.card-sm:hover { border-color: var(--accent-2); transform: translateY(-4px); }
.card-sm__num { font-family: 'Syne', sans-serif; font-weight: 800; font-size: 30px; color: var(--accent-2); margin-bottom: 16px; }
.card-sm__title { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 20px; margin-bottom: 8px; }
.card-sm__text { color: var(--text-soft); font-size: 15px; line-height: 1.55; }

/* Strzałkowy link w kartach */
.arrow-link {
  margin-top: 24px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  transition: gap 0.2s ease;
}
.arrow-link:hover { gap: 14px; }
.arrow-link span { color: var(--accent-2); }

/* ---------- Process ---------- */
.process { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.process__step { padding: 30px 26px; border-top: 2px solid var(--ink); }
.process__step:first-child { padding-left: 0; }
.process__step:last-child { padding-right: 0; }
.section--dark .process__step { border-top-color: rgba(255, 255, 255, 0.25); }
.process__num {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 40px;
  color: var(--accent);
  letter-spacing: -0.03em;
  margin-bottom: 14px;
}
.section--dark .process__num { color: var(--accent-2); font-size: 38px; }
.process__title { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 19px; margin-bottom: 8px; }
.process__text { color: var(--text); font-size: 14.5px; line-height: 1.55; }
.section--dark .process__text { color: var(--text-soft); }

/* ---------- Proof box ---------- */
.proof {
  margin-top: 48px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 30px 32px;
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}
.proof__num {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(40px, 6vw, 64px);
  color: var(--accent-2);
  letter-spacing: -0.03em;
  line-height: 1;
}
.proof__text { font-size: 17px; color: #c4c4cc; max-width: 560px; line-height: 1.5; }
.proof__text strong { color: #fff; }

/* ---------- Product cards ---------- */
.product {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 30px 28px;
  transition: transform 0.25s ease, border-color 0.25s ease;
}
.product:hover { transform: translateY(-5px); border-color: var(--accent); }
.product__head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 18px; }
.product__icon {
  width: 42px;
  height: 42px;
  border-radius: 11px;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  color: #fff;
  font-size: 18px;
}
.badge {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.08em;
  padding: 4px 9px;
  border-radius: 999px;
}
.badge--available { color: #fff; background: var(--green); }
.badge--soon { color: #73716a; background: #ececea; }
.product__title { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 20px; margin-bottom: 8px; }
.product__text { color: var(--text); font-size: 14.5px; line-height: 1.55; }

/* ---------- CTA band ---------- */
.cta-band { background: var(--accent); color: #fff; padding: 90px 0; }
.cta-band__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.cta-band__title {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(28px, 3.9vw, 46px);
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin: 0;
  max-width: 660px;
}
.cta-band__sub { font-size: 17px; color: rgba(255, 255, 255, 0.82); margin: 16px 0 0; }

/* ---------- Footer ---------- */
.footer { background: var(--ink); color: #fff; padding: 64px 0 40px; }
.footer__top {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.footer__about { max-width: 360px; }
.footer__about p { color: #83838d; font-size: 14px; line-height: 1.6; margin: 18px 0 0; }
.footer__cols { display: flex; gap: 64px; flex-wrap: wrap; }
.footer__heading {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #5e5e67;
  margin-bottom: 16px;
}
.footer__list { display: flex; flex-direction: column; gap: 11px; }
.footer__list a, .footer__list span { color: #c4c4cc; font-size: 14px; text-decoration: none; transition: color 0.2s ease; }
.footer__list a:hover { color: #fff; }
.footer__bar {
  max-width: var(--container);
  margin: 40px auto 0;
  padding: 24px var(--pad-x) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.06em;
  color: #5e5e67;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.footer__bar a { color: #5e5e67; text-decoration: none; transition: color 0.2s ease; }
.footer__bar a:hover { color: #fff; }
.newsletter-band__rodo { margin-top: 10px; font-size: 12px; color: rgba(255,255,255,0.55); }
.newsletter-band__rodo a { color: rgba(255,255,255,0.75); text-decoration: underline; }
.zz-rodo { font-size: 11px; color: #8a8a94; margin: 6px 0 0; line-height: 1.45; }
.zz-rodo a { color: #aab6d6; }

/* ---------- Reveal on scroll ---------- */
[data-reveal] { will-change: opacity, transform; }
.reveal-hidden { opacity: 0; transform: translateY(26px); }
.reveal-in {
  opacity: 1;
  transform: none;
  transition: opacity 0.7s cubic-bezier(.2,.7,.2,1), transform 0.7s cubic-bezier(.2,.7,.2,1);
}

/* ---------- Animations ---------- */
@keyframes zzmarquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes zzfloat { 0%, 100% { transform: translate(0, 0) scale(1); } 50% { transform: translate(36px, -30px) scale(1.08); } }
@keyframes zzrise { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 900px) {
  .nav__links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding: 12px var(--pad-x) 22px;
    background: #131316;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.25s ease, opacity 0.25s ease;
    z-index: 30;
  }
  .nav__links.is-open { transform: none; opacity: 1; pointer-events: auto; }
  .nav__link { padding: 12px 0; width: 100%; }
  .nav__links .btn { margin-top: 8px; }
  .nav__toggle { display: flex; }

  .grid-hairline, .grid-hairline--4 { grid-template-columns: repeat(2, 1fr); }
  .cards-3 { grid-template-columns: 1fr; }
  .process { grid-template-columns: repeat(2, 1fr); }
  .process__step { padding: 26px 20px; }
  .process__step:nth-child(odd) { padding-left: 0; }
}

@media (max-width: 560px) {
  :root { --pad-x: 20px; }
  .section { padding: 68px 0; }
  .hero__body { padding: 52px var(--pad-x) 68px; }
  .grid-hairline, .grid-hairline--4 { grid-template-columns: 1fr; }
  .cards-2 { grid-template-columns: 1fr; }
  .process { grid-template-columns: 1fr; }
  .process__step { padding: 24px 0; }
  .cta-band__inner { flex-direction: column; align-items: flex-start; }
  .btn { width: 100%; justify-content: center; }
  .nav__links .btn { width: 100%; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .reveal-hidden { opacity: 1; transform: none; }
}

/* ============================================================
   FAQ (akordeon) — dodane w passie dopracowania
   ============================================================ */
.faq { max-width: 840px; }
.faq__item { border-bottom: 1px solid var(--line); }
.section--dark .faq__item { border-bottom-color: rgba(255, 255, 255, 0.12); }
.faq__item:first-child { border-top: 1px solid var(--line); }
.section--dark .faq__item:first-child { border-top-color: rgba(255, 255, 255, 0.12); }

.faq__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: transparent;
  border: 0;
  cursor: pointer;
  text-align: left;
  padding: 24px 4px;
  color: inherit;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: clamp(17px, 2.1vw, 20px);
  letter-spacing: -0.01em;
  transition: color 0.2s ease;
}
.faq__q:hover { color: var(--accent); }
.section--dark .faq__q:hover { color: var(--accent-2); }

.faq__icon { flex: none; width: 24px; height: 24px; position: relative; }
.faq__icon::before, .faq__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 13px;
  height: 2px;
  border-radius: 2px;
  background: var(--accent);
  transform: translate(-50%, -50%);
}
.section--dark .faq__icon::before, .section--dark .faq__icon::after { background: var(--accent-2); }
.faq__icon::after { transform: translate(-50%, -50%) rotate(90deg); transition: transform 0.3s ease; }
.faq__item.is-open .faq__icon::after { transform: translate(-50%, -50%) rotate(0deg); }

.faq__a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.32s ease;
}
.faq__item.is-open .faq__a { grid-template-rows: 1fr; }
.faq__a > div { overflow: hidden; }
.faq__a p {
  margin: 0;
  padding: 0 4px 24px;
  color: var(--text);
  font-size: 15.5px;
  line-height: 1.6;
  max-width: 720px;
}
.section--dark .faq__a p { color: var(--text-soft); }

/* ---------- Dostępność: widoczny focus ---------- */
:focus-visible { outline: 2px solid var(--accent-2); outline-offset: 3px; border-radius: 4px; }

/* ============================================================
   Produkty-linki (ad-tiles), promo, pakiety, opinie, stagger, ruch hero
   ============================================================ */

/* Karta produktu jako klikalny link */
a.product { text-decoration: none; color: inherit; display: block; }
.product__cta {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 16px; font-weight: 700; font-size: 14px; color: var(--accent);
  transition: gap 0.2s ease;
}
a.product:hover .product__cta { gap: 14px; }

/* Promocja (callout) */
.promo {
  margin-top: 40px;
  border: 1px solid var(--accent-2);
  background: linear-gradient(150deg, rgba(35, 76, 255, 0.16), rgba(35, 76, 255, 0.03));
  border-radius: 16px;
  padding: 30px 32px;
  display: flex; align-items: center; gap: 26px; flex-wrap: wrap;
}
.promo__badge {
  flex: none;
  font-family: 'JetBrains Mono', monospace; font-size: 11px; letter-spacing: 0.16em;
  text-transform: uppercase; color: #fff; background: var(--accent);
  padding: 7px 14px; border-radius: 999px;
}
.promo__body { flex: 1; min-width: 260px; }
.promo__title { font-family: 'Syne', sans-serif; font-weight: 800; font-size: clamp(20px, 2.6vw, 26px); letter-spacing: -0.02em; margin: 0 0 6px; }
.promo__text { color: var(--text-soft); font-size: 15px; line-height: 1.55; margin: 0; }

/* Pakiety / cennik */
.tiers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.tier {
  background: #fff; border: 1px solid var(--line); border-radius: 16px;
  padding: 32px 28px; display: flex; flex-direction: column;
  transition: transform 0.25s ease, border-color 0.25s ease;
}
.tier:hover { transform: translateY(-5px); border-color: var(--accent); }
.tier--featured { border-color: var(--accent); box-shadow: 0 0 0 1px var(--accent); }
.tier__eyebrow { font-family: 'JetBrains Mono', monospace; font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent); margin-bottom: 12px; }
.tier__name { font-family: 'Syne', sans-serif; font-weight: 800; font-size: 24px; letter-spacing: -0.02em; margin-bottom: 6px; }
.tier__price { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 18px; margin-bottom: 18px; }
.tier__price span { font-family: 'Manrope', sans-serif; font-weight: 600; font-size: 13px; color: var(--text-soft); }
.tier__list { list-style: none; margin: 0 0 24px; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.tier__list li { color: var(--text); font-size: 14.5px; line-height: 1.5; padding-left: 22px; position: relative; }
.tier__list li::before { content: "→"; position: absolute; left: 0; color: var(--accent); font-weight: 700; }
.tier .btn { margin-top: auto; justify-content: center; }

/* Opinie */
.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.quote { background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 30px 28px; }
.quote__text { font-size: 16px; line-height: 1.6; color: var(--ink); margin: 0 0 18px; }
.quote__who { display: flex; align-items: center; gap: 12px; }
.quote__avatar { width: 40px; height: 40px; border-radius: 999px; background: var(--accent); color: #fff; display: flex; align-items: center; justify-content: center; font-family: 'Syne', sans-serif; font-weight: 800; flex: none; }
.quote__name { font-weight: 700; font-size: 14px; }
.quote__role { font-size: 13px; color: var(--text-soft); }

/* Stagger dzieci przy wejściu w viewport (dodaje JS przez .stagger-ready) */
.stagger-ready > * { opacity: 0; transform: translateY(16px); transition: opacity 0.55s cubic-bezier(.2,.7,.2,1), transform 0.55s cubic-bezier(.2,.7,.2,1); }
.stagger-ready > .in { opacity: 1; transform: none; }

/* Subtelny dodatkowy ruch tła w hero */
.hero::after {
  content: ""; position: absolute; left: -120px; bottom: -170px;
  width: 420px; height: 420px; border-radius: 50%;
  background: radial-gradient(circle, rgba(77, 116, 255, 0.22), transparent 65%);
  filter: blur(80px); pointer-events: none;
  animation: zzdrift 22s ease-in-out infinite;
}
@keyframes zzdrift { 0%, 100% { transform: translate(0, 0); } 50% { transform: translate(40px, -26px); } }

@media (max-width: 900px) { .tiers, .quotes { grid-template-columns: 1fr; } }

/* Produkt „wkrótce" — przygaszony, szare cieniowanie */
.product--soon { background: #f4f4f2; }
.product--soon .product__icon { background: #c9c9c6; }
.product--soon .product__title, .product--soon .product__text { opacity: 0.6; }
.product--soon:hover { transform: none; border-color: var(--line); }
.catalog-note {
  font-family: 'JetBrains Mono', monospace; font-size: 12px; letter-spacing: 0.08em;
  color: var(--text-soft); margin: 0 0 32px;
}

/* Pasek logotypów marek */
.logos-strip { background: var(--bg); padding: 40px 0; border-bottom: 1px solid var(--line); }
.logos-strip__label {
  text-align: center; font-family: 'JetBrains Mono', monospace; font-size: 11px;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--text-soft); margin: 0 0 22px;
}
.logos-strip__row { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 22px 48px; }
.logos-strip__logo {
  font-family: 'Syne', sans-serif; font-weight: 800; font-size: clamp(18px, 2.6vw, 24px);
  letter-spacing: -0.02em; color: #c2c2bd; transition: color 0.2s ease; white-space: nowrap;
}
.logos-strip__logo:hover { color: var(--ink); }

/* ============================================================
   FX — cyber-minimal: pasek postępu, spotlight, ziarno, tilt,
   magnetyczne przyciski, sheen, podkreślenia nav, cząsteczki hero
   (wszystko dokładane przez JS / progressive enhancement)
   ============================================================ */

/* Pasek postępu scrolla */
#zz-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  box-shadow: 0 0 12px rgba(35, 76, 255, 0.7);
  z-index: 100; pointer-events: none;
}

/* Spotlight podążający za kursorem (rozjaśnia tylko ciemne tła) */
#zz-spot {
  position: fixed; top: 0; left: 0; width: 520px; height: 520px;
  margin: -260px 0 0 -260px; border-radius: 50%;
  background: radial-gradient(circle, rgba(77, 116, 255, 0.12), transparent 62%);
  pointer-events: none; z-index: 90; mix-blend-mode: screen;
  will-change: transform;
}

/* Ziarno / grain — subtelna tekstura na całości */
body::after {
  content: ""; position: fixed; inset: 0;
  background-image: url(noise.png);
  opacity: 0.04; pointer-events: none; z-index: 85;
}

/* Cząsteczki w hero (canvas wstrzykiwany przez JS) */
.hero > canvas.zz-particles { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 0; pointer-events: none; }
.hero .nav, .hero__body { position: relative; z-index: 2; }

/* Karty 3D — tilt + glow (JS ustawia transform) */
[data-tilt] { transform-style: preserve-3d; transition: transform 0.3s cubic-bezier(.2,.7,.2,1), box-shadow 0.3s ease; will-change: transform; }
[data-tilt]:hover { box-shadow: 0 22px 60px -24px rgba(35, 76, 255, 0.5); }

/* Magnetyczne przyciski + sheen (sweep światła na hover) */
.btn--primary, .btn--white { will-change: transform; position: relative; overflow: hidden; }
.btn--primary::after, .btn--white::after {
  content: ""; position: absolute; top: 0; left: -130%; width: 55%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.28), transparent);
  transform: skewX(-18deg); transition: left 0.6s ease; pointer-events: none;
}
.btn--white::after { background: linear-gradient(100deg, transparent, rgba(35, 76, 255, 0.18), transparent); }
.btn--primary:hover::after, .btn--white:hover::after { left: 150%; }

/* Animowane podkreślenie linków nawigacji */
.nav__link { position: relative; }
.nav__link::after {
  content: ""; position: absolute; left: 0; bottom: -5px; height: 2px; width: 0;
  background: var(--accent-2); transition: width 0.25s ease;
}
.nav__link:hover::after, .nav__link.is-active::after { width: 100%; }

@media (prefers-reduced-motion: reduce) {
  #zz-spot, .hero > canvas.zz-particles { display: none !important; }
  .btn--primary::after, .btn--white::after { display: none; }
}

/* ============================================================
   Widget kontakt + newsletter (dolny prawy róg)
   ============================================================ */
.zz-widget { position: fixed; right: 22px; bottom: 22px; z-index: 120; font-family: 'Manrope', sans-serif; }

.zz-fab {
  width: 58px; height: 58px; border-radius: 999px; border: none; cursor: pointer;
  background: var(--accent); color: #fff; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 14px 34px -10px rgba(35, 76, 255, 0.7);
  transition: transform 0.25s ease, background 0.2s ease;
}
.zz-fab:hover { background: var(--accent-hover); transform: translateY(-2px) scale(1.04); }
.zz-fab svg { width: 26px; height: 26px; }
.zz-fab__close { display: none; }
.zz-widget.is-open .zz-fab__open { display: none; }
.zz-widget.is-open .zz-fab__close { display: flex; }

.zz-teaser {
  position: absolute; right: 4px; bottom: 70px; width: max-content; max-width: 220px;
  background: #fff; color: var(--ink); font-size: 14px; font-weight: 600; line-height: 1.35;
  padding: 12px 16px; border-radius: 14px; box-shadow: 0 14px 34px -14px rgba(0, 0, 0, 0.4);
  opacity: 0; transform: translateY(8px); pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.zz-teaser.show { opacity: 1; transform: none; pointer-events: auto; cursor: pointer; }
.zz-teaser::after { content: ""; position: absolute; right: 26px; bottom: -6px; width: 13px; height: 13px; background: #fff; transform: rotate(45deg); }
.zz-teaser button { position: absolute; top: -8px; right: -8px; width: 22px; height: 22px; border-radius: 999px; border: none; background: var(--ink); color: #fff; cursor: pointer; font-size: 13px; line-height: 1; }

.zz-panel {
  position: absolute; right: 0; bottom: 72px; width: 344px; max-width: calc(100vw - 36px);
  background: #141418; color: #fff; border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 18px;
  box-shadow: 0 28px 64px -22px rgba(0, 0, 0, 0.65); overflow: hidden;
  opacity: 0; transform: translateY(12px) scale(0.98); transform-origin: bottom right; pointer-events: none;
  transition: opacity 0.28s ease, transform 0.28s cubic-bezier(.2,.7,.2,1);
}
.zz-widget.is-open .zz-panel { opacity: 1; transform: none; pointer-events: auto; }

.zz-panel__head { padding: 20px 20px 14px; border-bottom: 1px solid rgba(255, 255, 255, 0.08); position: relative; }
.zz-panel__title { font-family: 'Syne', sans-serif; font-weight: 800; font-size: 19px; letter-spacing: -0.02em; margin: 0; }
.zz-panel__sub { font-size: 13px; color: var(--text-soft); margin: 4px 0 0; }
.zz-panel__x { position: absolute; top: 16px; right: 16px; width: 28px; height: 28px; border-radius: 999px; border: 1px solid rgba(255, 255, 255, 0.16); background: transparent; color: #fff; cursor: pointer; font-size: 14px; line-height: 1; }
.zz-panel__x:hover { background: rgba(255, 255, 255, 0.08); }

.zz-body { padding: 18px 20px 20px; }
.zz-field { width: 100%; background: rgba(255, 255, 255, 0.06); border: 1px solid rgba(255, 255, 255, 0.14); color: #fff; border-radius: 10px; padding: 12px 14px; font: inherit; font-size: 14px; margin-bottom: 10px; }
.zz-field::placeholder { color: #8a8a94; }
.zz-field:focus { outline: none; border-color: var(--accent-2); background: rgba(77, 116, 255, 0.08); }
textarea.zz-field { resize: vertical; min-height: 82px; }

.zz-btn { border: none; cursor: pointer; border-radius: 999px; padding: 13px 18px; font: inherit; font-weight: 700; font-size: 14px; transition: background 0.2s ease, transform 0.2s ease; }
.zz-btn--primary { width: 100%; background: var(--accent); color: #fff; }
.zz-btn--primary:hover { background: var(--accent-hover); transform: translateY(-1px); }

.zz-div { display: flex; align-items: center; gap: 12px; color: #6b6b75; font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; font-family: 'JetBrains Mono', monospace; margin: 18px 0 14px; }
.zz-div::before, .zz-div::after { content: ""; flex: 1; height: 1px; background: rgba(255, 255, 255, 0.1); }

.zz-news__label { font-size: 13px; color: var(--text-soft-2); margin: 0 0 10px; line-height: 1.45; }
.zz-news__row { display: flex; gap: 8px; }
.zz-news__row .zz-field { margin-bottom: 0; }
.zz-news__row .zz-btn { white-space: nowrap; }

.zz-ok { display: none; text-align: center; padding: 10px 0 2px; color: #7fe0a8; font-size: 14px; font-weight: 600; line-height: 1.45; }
.zz-form.sent .zz-ok { display: block; }
.zz-form.sent .zz-fields { display: none; }

@media (max-width: 460px) {
  .zz-widget { right: 14px; bottom: 14px; }
  .zz-panel { width: calc(100vw - 28px); }
  .zz-news__row { flex-direction: column; }
}

/* Pasek newslettera (inline na stronie głównej) */
.newsletter-band { background: var(--bg-alt); padding: 64px 0; }
.newsletter-band__inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.newsletter-band__text { max-width: 540px; }
.newsletter-band__title { font-family: 'Syne', sans-serif; font-weight: 800; font-size: clamp(24px, 3.4vw, 38px); letter-spacing: -0.03em; line-height: 1.05; margin: 0 0 8px; }
.newsletter-band__sub { color: var(--text); font-size: 16px; line-height: 1.5; margin: 0; }
.newsletter-band__form { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; }
.newsletter-band__input { background: #fff; border: 1px solid var(--line); border-radius: 999px; padding: 14px 20px; font: inherit; font-size: 15px; min-width: 240px; }
.newsletter-band__input:focus { outline: none; border-color: var(--accent); }
.newsletter-band__ok { color: var(--green); font-weight: 700; font-size: 15px; }
@media (max-width: 560px) { .newsletter-band__form, .newsletter-band__input, .newsletter-band__form .btn { width: 100%; } }

/* ============================================================
   Znaczek w logo (MEDIA / AI / DLA FIRM) — Flip 3D
   ============================================================ */
.logo__suffix.is-badge { letter-spacing: normal; padding-left: 0; perspective: 320px; display: inline-flex; }
.logo-badge {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: 'JetBrains Mono', monospace; font-weight: 700; font-size: 11px; letter-spacing: 0.14em;
  color: #fff; background: rgba(77, 116, 255, 0.18); border: 1px solid rgba(77, 116, 255, 0.5);
  padding: 5px 9px; border-radius: 8px; white-space: nowrap;
}
.logo-badge__ic { display: inline-flex; }
.logo-badge__ic svg { width: 13px; height: 13px; display: block; }
@keyframes zzFlipIn { 0% { transform: rotateX(90deg); opacity: 0; } 100% { transform: rotateX(0); opacity: 1; } }
.logo-badge.flip { animation: zzFlipIn 0.45s ease; }
@media (prefers-reduced-motion: reduce) { .logo-badge.flip { animation: none; } }

/* ============================================================
   Cyber tła ciemnych sekcji (obraz + ciemna nakładka = tekst czytelny)
   ============================================================ */
.section--cyber-rain,
.section--cyber-hud,
.section--cyber-grid,
.section--cyber-circuit {
  background-color: var(--ink);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.section--cyber-rain { background-image: linear-gradient(rgba(14,14,16,.4), rgba(14,14,16,.62)), url(art-cyber-rain.png?v=4); }
.section--cyber-hud { background-image: linear-gradient(rgba(14,14,16,.38), rgba(14,14,16,.6)), url(art-cyber-hud.png?v=4); }
.section--cyber-grid { background-image: linear-gradient(rgba(14,14,16,.38), rgba(14,14,16,.64)), url(art-grid.png?v=4); }
.section--cyber-circuit { background-image: linear-gradient(rgba(14,14,16,.42), rgba(14,14,16,.64)), url(art-cyber-circuit.png?v=4); }

/* Baner kanału Telegram */
.tg-banner { padding: 76px 0; color: #fff; }
.tg-banner__inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.tg-banner__text { max-width: 640px; }
.tg-banner__title { font-family: 'Syne', sans-serif; font-weight: 800; font-size: clamp(26px, 3.6vw, 40px); letter-spacing: -0.03em; line-height: 1.05; margin: 8px 0 10px; }
.tg-banner__sub { color: var(--text-soft-2); font-size: 16px; line-height: 1.5; margin: 0; }
.tg-banner__cta { white-space: nowrap; }
.tg-banner__cta svg { width: 18px; height: 18px; }

/* Pływający przycisk kanału Telegram (obok okienka kontaktu) */
.zz-tg-fab {
  position: fixed; right: 88px; bottom: 22px; z-index: 120;
  width: 58px; height: 58px; border-radius: 999px;
  background: #229ED9; color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 14px 34px -10px rgba(34, 158, 217, 0.7);
  text-decoration: none; transition: transform 0.25s ease, background 0.2s ease;
}
.zz-tg-fab:hover { transform: translateY(-2px) scale(1.04); background: #1c8cc2; }
.zz-tg-fab svg { width: 27px; height: 27px; }
.zz-tg-fab__tip {
  position: absolute; bottom: 70px; right: 0; white-space: nowrap;
  background: #fff; color: var(--ink); font-size: 13px; font-weight: 600;
  padding: 8px 12px; border-radius: 10px; box-shadow: 0 12px 30px -14px rgba(0, 0, 0, 0.4);
  opacity: 0; transform: translateY(6px); pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.zz-tg-fab:hover .zz-tg-fab__tip { opacity: 1; transform: none; }
@media (max-width: 460px) { .zz-tg-fab { right: 80px; bottom: 14px; } }

/* Sekcja „efekt współpracy" — punkty + wykres wzrostu */
.grow-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: 44px; align-items: center; }
.grow-list { list-style: none; margin: 22px 0 0; padding: 0; display: flex; flex-direction: column; gap: 16px; }
.grow-list li { display: flex; gap: 12px; font-size: 15.5px; line-height: 1.5; color: var(--text); }
.grow-list li::before { content: "✓"; color: var(--accent); font-weight: 800; flex: none; }
.grow-card { background: var(--ink); border-radius: 16px; padding: 24px 22px 16px; box-shadow: 0 24px 60px -28px rgba(35,76,255,.5); }
.grow-chart { width: 100%; height: auto; display: block; }
.grow-note { font-family: 'JetBrains Mono', monospace; font-size: 11px; color: #6f7283; margin: 10px 2px 0; }
@media (max-width: 820px) { .grow-grid { grid-template-columns: 1fr; gap: 30px; } }

/* ---------- Wykres porównawczy (bez / z ZiZi) ---------- */
.cmp-legend { display: flex; gap: 20px; margin: 0 2px 18px; flex-wrap: wrap; }
.cmp-legend span { display: inline-flex; align-items: center; gap: 8px; font-size: 12.5px; color: #c4c4cc; font-family: 'JetBrains Mono', monospace; }
.cmp-legend i { width: 12px; height: 12px; border-radius: 3px; flex: none; }
.cmp-i-base { background: #5a6070; }
.cmp-i-zizi { background: linear-gradient(90deg, #2353ff, #4d74ff); }

.cmp-bars { display: flex; flex-direction: column; gap: 22px; margin-top: 4px; }
.cmp-row__top { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; font-size: 13.5px; color: #c4c4cc; margin-bottom: 10px; }
.cmp-row__save { color: #5fd39a; font-weight: 800; font-family: 'JetBrains Mono', monospace; font-size: 12.5px; white-space: nowrap; }
.cmp-track { display: flex; flex-direction: column; gap: 8px; }
.cmp-bar { height: 34px; border-radius: 8px; display: flex; align-items: center; gap: 10px; padding: 0 13px; white-space: nowrap; overflow: hidden;
  width: var(--w, 50%); transition: width 1.1s cubic-bezier(.2,.7,.2,1); }
[data-reveal].reveal-hidden .cmp-bar { width: 0; }
[data-reveal].reveal-in .cmp-bar { width: var(--w, 50%); }
.cmp-bar--base { background: #333747; }
.cmp-bar--zizi { background: linear-gradient(90deg, #2353ff, #4d74ff); box-shadow: 0 8px 22px -10px rgba(35,76,255,.85); }
.cmp-bar__k { font-size: 12px; color: #fff; font-weight: 700; }
.cmp-bar__v { margin-left: auto; font-family: 'JetBrains Mono', monospace; font-size: 12.5px; color: #fff; font-weight: 700; }

.cmp-kpis { display: flex; gap: 30px; margin-top: 26px; flex-wrap: wrap; }
.cmp-kpi__n { font-family: 'Syne', sans-serif; font-size: 30px; font-weight: 800; color: #fff; line-height: 1; }
.cmp-kpi__l { font-size: 12px; color: #8a8f9e; margin-top: 7px; max-width: 160px; }

/* animacja linii (wykres czasowy) */
.cmp-line { stroke-dasharray: 1200; stroke-dashoffset: 0; transition: stroke-dashoffset 1.7s ease .1s; }
[data-reveal].reveal-hidden .cmp-line { stroke-dashoffset: 1200; }
[data-reveal].reveal-in .cmp-line { stroke-dashoffset: 0; }
.cmp-area { opacity: 1; transition: opacity 1s ease .5s; }
[data-reveal].reveal-hidden .cmp-area { opacity: 0; }
[data-reveal].reveal-in .cmp-area { opacity: 1; }
