/* =====================================================
   Dashy — Redesign (editorial / kive-inspired, white)
   Mobile-first. Loaded after tokens.css + navbar.css
   ===================================================== */

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  max-width: 100%;
}

body {
  font-family: var(--font-family);
  background: var(--bg-main);
  color: var(--ink);
  overflow-x: hidden;
  max-width: 100%;
  position: relative;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.5;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

.dz-wrap {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: 20px;
}

.serif { font-family: var(--font-display); font-style: italic; font-weight: 400; }

/* Podkreślenie — półprzezroczyste fioletowe tło za słowem (jak na desktop) */
.dz-hl {
  position: relative;
  display: inline;
  white-space: nowrap;
  z-index: 0;
}
.dz-hl::before {
  content: "";
  position: absolute;
  left: -0.06em;
  right: -0.04em;
  bottom: 0.06em;
  height: 0.52em;
  min-height: 14px;
  background: var(--hl-bg);
  border-radius: 7px;
  z-index: -1;
}
.dz-hl--muted::before {
  background: var(--hl-bg-muted);
}

/* Section rhythm */
.dz-section { padding: 88px 0; position: relative; max-width: 100%; overflow-x: clip; }
.dz-section--tight { padding: 56px 0; }

.dz-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.dz-eyebrow::before {
  content: "";
  width: 22px; height: 1px;
  background: var(--border-strong);
}

.dz-head { max-width: 720px; }
.dz-head h2 {
  font-size: clamp(2rem, 5.5vw, 3.2rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.14;
  margin: 18px 0 0;
  color: var(--ink);
}
.dz-accent {
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.dz-head p {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-top: 18px;
  line-height: 1.65;
  max-width: 560px;
}
.dz-head--center { margin-inline: auto; text-align: center; }
.dz-head--center p { margin-inline: auto; }

/* Buttons */
.dz-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-size: 0.98rem;
  font-weight: 600;
  padding: 14px 24px;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease), box-shadow 0.25s var(--ease), color 0.25s var(--ease);
  white-space: nowrap;
}
.dz-btn i { font-size: 0.85em; transition: transform 0.25s var(--ease); }
.dz-btn--dark { background: var(--ink); color: #fff; }
.dz-btn--dark:hover { transform: translateY(-2px); box-shadow: 0 14px 30px -10px rgba(10,10,11,0.4); }
.dz-btn--dark:hover i { transform: translateX(3px); }
.dz-btn--ghost { background: transparent; color: var(--ink); border-color: var(--border-strong); }
.dz-btn--ghost:hover { background: var(--bg-muted); border-color: var(--ink); }
  .dz-btn--join {
    background: var(--gradient-brand-h);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 10px 28px -12px rgba(90, 0, 255, 0.55);
    font-weight: 700;
    letter-spacing: 0.01em;
  }
  .dz-btn--join:hover {
    background: var(--gradient-brand-h);
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 14px 32px -10px rgba(90, 0, 255, 0.5);
  }
.dz-btn--light { background: #fff; color: var(--ink); }
.dz-btn--light:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }

/* =========================================================
   HERO
   ========================================================= */
.dz-hero {
  position: relative;
  padding-top: 120px;
  padding-bottom: 40px;
  overflow: hidden;
  max-width: 100%;
}
.dz-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(90% 70% at 100% 0%, rgba(124, 58, 237, 0.08) 0%, transparent 55%),
    radial-gradient(70% 50% at 0% 30%, rgba(99, 102, 241, 0.06) 0%, transparent 50%);
  z-index: 0;
}
.dz-hero > .dz-wrap { position: relative; z-index: 1; }

.dz-hero-kicker {
  display: none;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}
.dz-hero-lead--mob { display: none; }
.dz-hero-chips { display: none; }
.dz-hero-cta-catalog { display: inline-flex; }
.dz-hero-footnote { display: none; }

#hero-live-catalog { scroll-margin-top: 92px; }
.dz-hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 44px;
  align-items: center;
}
.dz-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 6px 6px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  background: var(--bg-subtle);
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 26px;
}
.dz-hero-badge b {
  background: var(--primary);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
}
.dz-hero h1 {
  font-size: clamp(2.6rem, 9vw, 5rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.1;
  color: var(--ink);
}
.dz-hero h1 .serif {
  letter-spacing: -0.01em;
  font-size: 1.04em;
  display: inline;
}
.dz-hero-lead {
  font-size: 1.12rem;
  color: var(--text-muted);
  line-height: 1.62;
  margin: 26px 0 32px;
  max-width: 520px;
}
.dz-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-start;
}
.dz-hero-text .dz-hero-trust {
  margin-top: 20px;
  font-size: 0.86rem;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 8px;
}
.dz-hero-trust i { color: var(--success); }

.dz-hero-catalog-note {
  margin-top: 14px;
  font-size: 0.82rem;
  color: var(--text-light);
  line-height: 1.5;
  max-width: 520px;
}
.dz-hero-catalog-note a {
  color: var(--primary);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.dz-hero-catalog-note a:hover { color: var(--ink); }

.dz-hero-facts {
  display: none;
  list-style: none;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
  padding: 0;
}
.dz-hero-facts li {
  font-size: 0.8rem;
  color: var(--text-muted);
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  background: var(--bg-subtle);
  border: 1px solid var(--border-light);
}
.dz-hero-facts li strong {
  color: var(--ink);
  font-weight: 700;
}

/* Hero — katalog na żywo: profil + jaskrawe powiadomienia */
.dz-hero-stage {
  position: relative;
  border-radius: var(--radius-2xl);
  background:
    radial-gradient(120% 100% at 100% 0%, #ede9fe 0%, rgba(237,233,254,0) 50%),
    radial-gradient(120% 100% at 0% 100%, #e8e0ff 0%, rgba(232,224,255,0) 50%),
    linear-gradient(160deg, #f8f5ff 0%, #fafafa 100%);
  border: 1px solid var(--border-light);
  padding: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 1 / 1.02;
  max-height: 520px;
}
.dz-hero-stage .dz-stage-label {
  position: absolute;
  top: 18px; left: 18px; right: 18px;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 6px;
  padding: 10px 14px;
  border-radius: var(--radius-pill);
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-light);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-strong);
}
.dz-hero-stage .dz-stage-label .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 0 rgba(5,150,105,0.5);
  animation: dzPulse 2s infinite;
  display: inline-block;
  margin-right: 7px;
}
@keyframes dzPulse {
  0% { box-shadow: 0 0 0 0 rgba(5,150,105,0.45); }
  70% { box-shadow: 0 0 0 9px rgba(5,150,105,0); }
  100% { box-shadow: 0 0 0 0 rgba(5,150,105,0); }
}
.dz-hero-stage .dz-stage-cols {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  padding: 14px;
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 16%, #000 84%, transparent 100%);
          mask-image: linear-gradient(180deg, transparent 0%, #000 16%, #000 84%, transparent 100%);
}
.dz-col { overflow: hidden; }
.dz-col-track {
  display: flex;
  flex-direction: column;
  gap: 14px;
  animation: dzScrollUp 26s linear infinite;
  will-change: transform;
}
.dz-col--rev .dz-col-track { animation-name: dzScrollDown; animation-duration: 32s; }
@keyframes dzScrollUp { from { transform: translateY(0); } to { transform: translateY(-50%); } }
@keyframes dzScrollDown { from { transform: translateY(-50%); } to { transform: translateY(0); } }

.dz-feed-card {
  display: block;
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 13px;
  box-shadow: 0 8px 24px -8px rgba(79,70,229,0.12);
  flex-shrink: 0;
  text-decoration: none;
  color: inherit;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.dz-feed-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 32px -10px rgba(79,70,229,0.22);
}
.dz-feed-card .fc-media {
  height: 96px;
  border-radius: var(--radius-md);
  background-size: cover;
  background-position: center;
  margin-bottom: 10px;
  position: relative;
}
.dz-feed-card .fc-pill {
  position: absolute; top: 8px; left: 8px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(6px);
  font-size: 0.66rem; font-weight: 700;
  padding: 4px 10px; border-radius: var(--radius-pill);
  color: #5b21b6;
}
.dz-feed-card .fc-name { font-size: 0.86rem; font-weight: 800; color: var(--ink); }
.dz-feed-card .fc-meta { font-size: 0.74rem; color: var(--text-muted); margin-top: 2px; }
.dz-feed-card .fc-foot {
  margin-top: 10px; padding-top: 10px;
  border-top: 1px solid var(--border-light);
  display: flex; align-items: center; justify-content: space-between;
}
.dz-feed-card .fc-price { font-size: 0.8rem; font-weight: 800; color: var(--ink); }
.dz-feed-card .fc-cta { font-size: 0.72rem; font-weight: 700; color: #4f46e5; }

.dz-feed-note {
  border-radius: var(--radius-lg);
  padding: 13px 15px;
  flex-shrink: 0;
  display: flex; gap: 11px; align-items: center;
  color: #fff;
  box-shadow: 0 12px 28px -8px rgba(0,0,0,0.2);
}
.dz-feed-note .fn-ic {
  width: 38px; height: 38px; flex-shrink: 0;
  border-radius: 12px;
  display: grid; place-items: center;
  background: rgba(255,255,255,0.22);
  font-size: 0.95rem;
}
.dz-feed-note small {
  display: block;
  font-size: 0.66rem;
  opacity: 0.85;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}
.dz-feed-note strong { font-size: 0.84rem; font-weight: 800; line-height: 1.3; }
.dz-feed-note--violet { background: linear-gradient(135deg, #6d28d9 0%, #a855f7 100%); }
.dz-feed-note--emerald { background: linear-gradient(135deg, #047857 0%, #10b981 100%); }
.dz-feed-note--amber { background: linear-gradient(135deg, #d97706 0%, #fbbf24 100%); }
.dz-feed-note--blue { background: linear-gradient(135deg, #1d4ed8 0%, #38bdf8 100%); }
.dz-feed-note--pink { background: linear-gradient(135deg, #db2777 0%, #f472b6 100%); }

/* unused legacy hp cards */
.dz-hp-card {
  display: block;
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 11px;
  box-shadow: var(--shadow-sm);
  flex-shrink: 0;
  text-decoration: none;
  color: inherit;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.dz-hp-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.dz-hp-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.64rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.dz-hp-label i { color: var(--primary); font-size: 0.7rem; }
.dz-hp-phone {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-light);
  background: var(--bg-subtle);
}
.dz-hp-bar {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 7px 9px;
  background: #fff;
  border-bottom: 1px solid var(--border-light);
}
.dz-hp-bar span {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--border);
}
.dz-hp-bar span:first-child { background: #f87171; }
.dz-hp-bar span:nth-child(2) { background: #fbbf24; }
.dz-hp-bar span:nth-child(3) { background: #4ade80; }
.dz-hp-bar em {
  flex: 1;
  min-width: 0;
  font-style: normal;
  font-size: 0.62rem;
  font-weight: 600;
  color: var(--text-muted);
  text-align: center;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.dz-hp-cover {
  height: 52px;
  background-size: cover;
  background-position: center;
}
.dz-hp-body { padding: 0 10px 10px; margin-top: -16px; position: relative; }
.dz-hp-av {
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 2px solid #fff;
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow-sm);
}
.dz-hp-name {
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--ink);
  margin-top: 6px;
  letter-spacing: -0.02em;
}
.dz-hp-meta { font-size: 0.68rem; color: var(--text-muted); margin-top: 2px; }
.dz-hp-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-top: 8px;
}
.dz-hp-tags span {
  font-size: 0.62rem;
  font-weight: 600;
  padding: 3px 7px;
  border-radius: var(--radius-pill);
  background: var(--bg-muted);
  color: var(--text-muted);
}
.dz-hp-btn {
  margin-top: 8px;
  text-align: center;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 7px 8px;
  border-radius: var(--radius-pill);
  background: var(--ink);
  color: #fff;
}
.dz-hp-feature {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 13px 14px;
  box-shadow: var(--shadow-sm);
  flex-shrink: 0;
}
.dz-hp-feature strong {
  display: block;
  font-size: 0.86rem;
  font-weight: 800;
  color: var(--ink);
  margin-top: 4px;
}
.dz-hp-feature p {
  font-size: 0.74rem;
  color: var(--text-muted);
  line-height: 1.45;
  margin-top: 5px;
}
.dz-hp-feature--dark {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}
.dz-hp-feature--dark .dz-hp-label,
.dz-hp-feature--dark p { color: rgba(255,255,255,0.72); }
.dz-hp-feature--dark .dz-hp-label i { color: #a5b4fc; }
.dz-hp-feature--dark strong { color: #fff; }
.dz-hp-feature--blue { background: #f0f7ff; border-color: #dbeafe; }
.dz-hp-feature--purple { background: #f5f3ff; border-color: #ede9fe; }
.dz-hp-feature--green { background: #f0fdf4; border-color: #dcfce7; }
.dz-hp-feature--warm { background: #fffbeb; border-color: #fef3c7; }

/* =========================================================
   MARQUEE SHOWCASE — the "video" gallery
   ========================================================= */
.dz-showcase { padding: 64px 0 88px; overflow: hidden; }
.dz-showcase .dz-head { margin-bottom: 36px; }
.dz-marquee {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 100%;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.dz-marquee-row { overflow: hidden; }
.dz-marquee-track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: dzMarquee 48s linear infinite;
  will-change: transform;
}
.dz-marquee-row--rev .dz-marquee-track { animation-direction: reverse; animation-duration: 56s; }
.dz-marquee:hover .dz-marquee-track { animation-play-state: paused; }
@keyframes dzMarquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

.dz-tile {
  position: relative;
  width: clamp(220px, 30vw, 320px);
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--bg-muted);
  flex-shrink: 0;
}
.dz-tile img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.8s var(--ease-out);
}
.dz-tile:hover img { transform: scale(1.05); }
.dz-tile::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(10,10,11,0.55) 100%);
}
.dz-tile-cap {
  position: absolute; left: 16px; bottom: 14px; right: 16px;
  z-index: 2; color: #fff;
}
.dz-tile-cap b { display: block; font-size: 1rem; font-weight: 700; letter-spacing: -0.01em; }
.dz-tile-cap span { font-size: 0.8rem; opacity: 0.85; }

/* =========================================================
   CATALOG PREVIEW (DB)
   ========================================================= */
.dz-catalog { background: var(--bg-subtle); }
.dz-search {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  padding: 8px 8px 8px 20px;
  max-width: 620px;
  margin: 28px 0 18px;
  box-shadow: var(--shadow-sm);
}
.dz-search i { color: var(--text-light); }
.dz-search input {
  flex: 1; border: none; outline: none;
  font-family: inherit; font-size: 1rem; color: var(--ink);
  background: transparent;
  min-width: 0;
}
.dz-pills { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 36px; }
.dz-pill {
  padding: 8px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  background: #fff;
  font-size: 0.86rem;
  font-weight: 500;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.2s var(--ease);
}
.dz-pill:hover { border-color: var(--border-strong); color: var(--ink); }
.dz-pill.active { background: var(--ink); border-color: var(--ink); color: #fff; }

.dz-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 290px), 1fr));
  gap: 18px;
}
.dz-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}
.dz-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--border); }
.dz-card-media {
  aspect-ratio: 16 / 11;
  background-size: cover; background-position: center;
  position: relative;
}
.dz-card-media .badge {
  position: absolute; top: 12px; left: 12px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(6px);
  font-size: 0.72rem; font-weight: 700;
  padding: 5px 11px; border-radius: var(--radius-pill);
  color: var(--text-strong);
}

.dz-plan-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.28rem 0.55rem;
  border-radius: 99px;
  color: #fff;
  box-shadow: 0 4px 14px rgba(90, 0, 255, 0.35);
  z-index: 2;
}

.dz-plan-badge--pro {
  background: linear-gradient(135deg, #4338ca 0%, #5a00ff 55%, #6366f1 100%);
}

.dz-plan-badge--biz {
  background: linear-gradient(135deg, #2563eb 0%, #5a00ff 50%, #7c3aed 100%);
}

.dz-card--featured {
  border-color: #c7d2fe;
  box-shadow: 0 8px 28px rgba(90, 0, 255, 0.12);
}

.dz-card--featured .dz-card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(90, 0, 255, 0.08) 0%, transparent 45%);
}

.dz-card-body { padding: 16px 18px; flex: 1; display: flex; flex-direction: column; }
.dz-card-body h3 { font-size: 1.08rem; font-weight: 700; letter-spacing: -0.01em; }
.dz-card-city { font-size: 0.82rem; color: var(--text-muted); margin-top: 3px; }
.dz-card-tagline { font-size: 0.86rem; color: var(--text-muted); margin-top: 8px; line-height: 1.5; }
.dz-card-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 12px; }
.dz-tag {
  font-size: 0.72rem; font-weight: 500;
  padding: 4px 10px; border-radius: var(--radius-pill);
  background: var(--bg-muted); color: var(--text-muted);
}
.dz-card-foot {
  margin-top: auto; padding: 14px 18px;
  border-top: 1px solid var(--border-light);
  display: flex; align-items: center; justify-content: space-between;
}
.dz-card-price { font-size: 0.92rem; font-weight: 800; color: var(--ink); }
.dz-card-go { font-size: 0.84rem; font-weight: 600; color: var(--primary); display: inline-flex; align-items: center; gap: 6px; }
.dz-cards-state { grid-column: 1 / -1; text-align: center; padding: 48px 0; color: var(--text-muted); }
.dz-cards-state a { color: var(--primary); font-weight: 600; }

/* "Zobacz cały katalog" tile — fills the grid + signals there's more */
.dz-card--more {
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 28px 24px;
  background: var(--primary-soft);
  border: 1px dashed rgba(90, 0, 255, 0.32);
  color: var(--ink);
}
.dz-card--more:hover { background: #ece3ff; border-color: rgba(90, 0, 255, 0.5); }
.dz-card-more-in { display: flex; flex-direction: column; align-items: center; gap: 9px; }
.dz-card-more-ic {
  width: 48px; height: 48px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--primary); color: #fff; font-size: 1.05rem;
  box-shadow: 0 10px 22px -10px rgba(90, 0, 255, 0.55);
}
.dz-card--more strong { font-size: 1.06rem; font-weight: 700; }
.dz-card-more-sub { font-size: 0.85rem; color: var(--text-muted); max-width: 22ch; }

.dz-seeall {
  margin-top: 32px;
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 600; color: var(--ink);
  border-bottom: 2px solid var(--ink);
  padding-bottom: 3px;
  transition: gap 0.25s var(--ease);
}
.dz-seeall:hover { gap: 13px; }

/* =========================================================
   SPLIT — dual audience
   ========================================================= */
.dz-dual-sec {
  position: relative;
  background: linear-gradient(165deg, #f6f2ff 0%, #fff9eb 38%, #fafafa 100%);
  overflow: hidden;
}
.dz-dual-sec::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 55% 45% at 0% 0%, rgba(180, 147, 255, 0.2), transparent 55%),
    radial-gradient(ellipse 50% 40% at 100% 100%, rgba(254, 229, 132, 0.22), transparent 52%);
}
.dz-dual-sec > .dz-wrap { position: relative; z-index: 1; }
.dz-dual-sec .dz-head h2 { max-width: 16ch; }

.dz-split-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 44px;
}
.dz-split-card {
  border-radius: var(--radius-2xl);
  padding: 32px 28px;
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
}
.dz-split-card::before {
  content: "";
  position: absolute;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(48px);
  opacity: 0.28;
}
.dz-split-card--freel {
  color: #fff;
  background: linear-gradient(150deg, #6a17ff 0%, #5a00ff 55%, #4a00d6 100%);
  border-color: rgba(122, 51, 255, 0.35);
  box-shadow: 0 24px 48px -20px rgba(90, 0, 255, 0.42);
}
.dz-split-card--freel::before {
  top: -40px;
  right: -30px;
  background: #b08cff;
}
.dz-split-card--clients {
  background: linear-gradient(160deg, #fff 0%, #fffdf6 55%, #f8f4ff 100%);
  border-color: rgba(180, 147, 255, 0.22);
  box-shadow: 0 20px 44px -22px rgba(180, 147, 255, 0.28);
}
.dz-split-card--clients::before {
  bottom: -50px;
  left: -20px;
  background: #fee584;
}
.dz-split-ic {
  width: 50px; height: 50px;
  border-radius: 15px;
  display: grid; place-items: center;
  font-size: 1.25rem;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}
.dz-split-card--freel .dz-split-ic {
  background: rgba(255, 255, 255, 0.14);
  color: #fee584;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
}
.dz-split-card--clients .dz-split-ic {
  background: var(--gradient-soft);
  color: #5b21b6;
  box-shadow: 0 8px 20px -10px rgba(180, 147, 255, 0.45);
}
.dz-split-card h3 { font-size: 1.45rem; font-weight: 700; letter-spacing: -0.02em; position: relative; z-index: 1; }
.dz-split-card > p { margin-top: 12px; line-height: 1.6; position: relative; z-index: 1; }
.dz-split-card--freel > p { color: rgba(255, 255, 255, 0.78); }
.dz-split-card--clients > p { color: var(--text-muted); }
.dz-split-list { list-style: none; margin-top: 20px; display: flex; flex-direction: column; gap: 11px; position: relative; z-index: 1; }
.dz-split-list li { display: flex; gap: 11px; align-items: flex-start; font-size: 0.93rem; }
.dz-split-card--freel .dz-split-list li { color: rgba(255, 255, 255, 0.92); }
.dz-split-card--clients .dz-split-list li { color: var(--text-strong); }
.dz-split-list i { margin-top: 4px; font-size: 0.85rem; flex-shrink: 0; }
.dz-split-card--freel .dz-split-list i { color: #fee584; }
.dz-split-card--clients .dz-split-list i { color: #7c3aed; }

/* legacy */
.dz-split-card.dark { background: linear-gradient(150deg, #6a17ff 0%, #5a00ff 55%, #4a00d6 100%); color: #fff; }

/* =========================================================
   FEATURES
   ========================================================= */
.dz-feat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 250px), 1fr));
  gap: 18px;
  margin-top: 44px;
}
.dz-feat {
  padding: 26px 24px;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  background: #fff;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.dz-feat:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.dz-feat-ic {
  width: 44px; height: 44px;
  border-radius: 13px;
  display: grid; place-items: center;
  background: var(--primary-soft); color: var(--primary);
  font-size: 1.1rem;
  margin-bottom: 18px;
}
.dz-feat h3 { font-size: 1.05rem; font-weight: 700; letter-spacing: -0.01em; display: flex; align-items: center; gap: 8px; }
.dz-feat p { font-size: 0.9rem; color: var(--text-muted); margin-top: 8px; line-height: 1.55; }
.dz-pro {
  font-size: 0.62rem; font-weight: 800; letter-spacing: 0.06em;
  padding: 2px 7px; border-radius: var(--radius-pill);
  background: var(--ink); color: #fff;
}
.dz-biz {
  font-size: 0.62rem; font-weight: 800; letter-spacing: 0.06em;
  padding: 2px 7px; border-radius: var(--radius-pill);
  background: linear-gradient(135deg, var(--brand-navy) 0%, var(--primary) 100%);
  color: #fff;
}

/* =========================================================
   CLIENT PANEL
   ========================================================= */
.dz-panel { background: var(--bg-subtle); }
.dz-panel-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}
.dz-panel-note {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 24px;
  font-size: 0.84rem; font-weight: 600; color: var(--primary);
  background: var(--primary-soft);
  padding: 8px 14px; border-radius: var(--radius-pill);
}
.dz-window {
  border-radius: var(--radius-xl);
  background: #fff;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.dz-window-bar {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--border-light);
  background: var(--bg-subtle);
}
.dz-window-bar .dots { display: flex; gap: 6px; }
.dz-window-bar .dots span { width: 10px; height: 10px; border-radius: 50%; background: var(--border-strong); }
.dz-window-url {
  flex: 1; text-align: center;
  font-size: 0.78rem; color: var(--text-muted);
  background: #fff; border: 1px solid var(--border-light);
  border-radius: var(--radius-pill); padding: 5px 12px;
}
.dz-window-body { padding: 20px; }

/* panel inner (rendered by JS) */
.pnl-welcome { display: flex; align-items: center; gap: 13px; margin-bottom: 18px; }
.pnl-welcome img { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; }
.pnl-welcome h4 { font-size: 1.05rem; font-weight: 700; }
.pnl-welcome span { font-size: 0.82rem; color: var(--text-muted); }
.pnl-welcome a { color: var(--primary); font-weight: 600; }
.pnl-welcome span.pnl-login-pill {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 11px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--primary) 9%, #fff);
  border: 1px solid color-mix(in srgb, var(--primary) 22%, #fff);
  color: var(--primary);
  font-size: 0.72rem;
  font-weight: 700;
  white-space: nowrap;
}
.pnl-welcome span.pnl-login-pill i { font-size: 0.7rem; }
@media (max-width: 560px) {
  .pnl-welcome span.pnl-login-pill { display: none; }
}
.pnl-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.pnl-card { border: 1px solid var(--border-light); border-radius: var(--radius-md); padding: 14px; background: var(--bg-subtle); }
.pnl-card .ic { width: 34px; height: 34px; border-radius: 10px; display: grid; place-items: center; margin-bottom: 10px; font-size: 0.9rem; }
.pnl-card .ic.blue { background: #e0f2fe; color: #0284c7; }
.pnl-card .ic.green { background: #dcfce7; color: var(--success); }
.pnl-card .ic.purple { background: var(--primary-soft); color: var(--primary); }
.pnl-card .ic.orange { background: #ffedd5; color: #ea580c; }
.pnl-card strong { display: block; font-size: 0.84rem; }
.pnl-card span { font-size: 0.76rem; color: var(--text-muted); }
.pnl-prog { margin-top: 16px; }
.pnl-prog h5 { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--text-light); margin-bottom: 12px; }
.pnl-prog-item { border: 1px solid var(--border-light); border-radius: var(--radius-md); padding: 13px; margin-bottom: 10px; }
.pnl-prog-head { display: flex; align-items: center; gap: 10px; margin-bottom: 11px; }
.pnl-prog-head img { width: 32px; height: 32px; border-radius: 9px; object-fit: cover; }
.pnl-prog-head .info { flex: 1; }
.pnl-prog-head strong { display: block; font-size: 0.84rem; }
.pnl-prog-head span { font-size: 0.72rem; color: var(--text-muted); }
.pnl-status { font-size: 0.68rem; font-weight: 700; padding: 3px 9px; border-radius: var(--radius-pill); }
.pnl-status.is-pending { background: #fef3c7; color: #b45309; }
.pnl-status.is-paid { background: #dbeafe; color: #1d4ed8; }
.pnl-status.is-active { background: var(--primary-soft); color: var(--primary); }
.pnl-status.is-done { background: #dcfce7; color: var(--success); }
.pnl-bar { height: 6px; border-radius: 99px; background: var(--bg-muted); overflow: hidden; }
.pnl-bar span { display: block; height: 100%; background: var(--primary); border-radius: 99px; transition: width 1s var(--ease); }
.pnl-steps { display: flex; justify-content: space-between; margin-top: 8px; font-size: 0.66rem; color: var(--text-light); }
.pnl-steps .done { color: var(--success); font-weight: 600; }

/* =========================================================
   QUOTE
   ========================================================= */
.dz-quote { padding: 96px 0; text-align: center; }
.dz-quote blockquote {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.9rem, 5.5vw, 3.4rem);
  line-height: 1.18;
  letter-spacing: -0.01em;
  color: var(--ink);
  max-width: 900px;
  margin: 0 auto 32px;
}
.dz-quote-author { display: inline-flex; align-items: center; gap: 12px; }
.dz-quote-author .qa-av {
  width: 48px; height: 48px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--ink); color: #fff; font-weight: 700; font-size: 0.9rem;
}
.dz-quote-author .qa-info { text-align: left; }
.dz-quote-author b { display: block; font-size: 0.95rem; font-weight: 700; }
.dz-quote-author span { font-size: 0.82rem; color: var(--text-muted); }

/* =========================================================
   BLOG
   ========================================================= */
.dz-blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 300px), 1fr));
  gap: 20px;
  margin-top: 44px;
}
.dz-post {
  display: flex; flex-direction: column;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border-light);
  background: #fff;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.dz-post:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.dz-post-media { aspect-ratio: 16 / 10; background-size: cover; background-position: center; }
.dz-post-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.dz-post-tag {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase;
  color: var(--primary);
}
.dz-post-body h3 { font-size: 1.12rem; font-weight: 700; letter-spacing: -0.01em; margin-top: 10px; line-height: 1.25; }
.dz-post-body p { font-size: 0.9rem; color: var(--text-muted); margin-top: 10px; line-height: 1.55; flex: 1; }
.dz-post-meta { display: flex; gap: 14px; margin-top: 16px; font-size: 0.78rem; color: var(--text-light); }

/* =========================================================
   PRICING CTA
   ========================================================= */
.dz-cta { padding: 40px 0 96px; }
.dz-cta-box {
  border-radius: var(--radius-2xl);
  background:
    radial-gradient(140% 120% at 0% 0%, #20204a 0%, rgba(32,32,74,0) 45%),
    radial-gradient(140% 120% at 100% 100%, #2a1b4e 0%, rgba(42,27,78,0) 45%),
    var(--ink);
  color: #fff;
  padding: clamp(40px, 7vw, 80px) clamp(24px, 6vw, 72px);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.dz-cta-box h2 {
  font-size: clamp(2rem, 6vw, 3.4rem);
  font-weight: 700; letter-spacing: -0.03em; line-height: 1.05;
}
.dz-cta-box h2 .serif { color: #c7d2fe; }
.dz-cta-box p { color: rgba(255,255,255,0.7); margin: 18px auto 32px; max-width: 540px; font-size: 1.05rem; }
.dz-claim {
  display: flex; align-items: center;
  gap: 6px;
  max-width: 460px; margin: 0 auto;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--radius-pill);
  padding: 7px 7px 7px 20px;
}
.dz-claim .base { color: rgba(255,255,255,0.55); font-size: 0.98rem; font-weight: 500; white-space: nowrap; }
.dz-claim input {
  flex: 1; min-width: 0; background: transparent; border: none; outline: none;
  color: #fff; font-family: inherit; font-size: 0.98rem;
}
.dz-claim input::placeholder { color: rgba(255,255,255,0.4); }

/* =========================================================
   FOOTER (huge wordmark)
   ========================================================= */
.dz-footer { background: var(--bg-main); border-top: 1px solid var(--border-light); padding: 64px 0 0; overflow: hidden; }
.dz-footer-top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  padding-bottom: 48px;
}
.dz-footer-brand p { font-size: 0.92rem; color: var(--text-muted); line-height: 1.65; max-width: 320px; margin-top: 14px; }
.dz-footer-brand .footer-social { margin-top: 18px; }
.dz-footer-cols { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.dz-footer-col h4 { font-size: 0.74rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-light); margin-bottom: 14px; }
.dz-footer-col a { display: block; font-size: 0.92rem; color: var(--text-muted); margin-bottom: 10px; transition: color 0.2s; }
.dz-footer-col a:hover { color: var(--ink); }
.dz-footer-bottom {
  display: flex; flex-wrap: wrap; gap: 12px;
  justify-content: space-between; align-items: center;
  padding: 22px 0;
  border-top: 1px solid var(--border-light);
  font-size: 0.82rem; color: var(--text-light);
}
.dz-footer-note {
  display: flex; align-items: flex-start; gap: 8px;
  margin: 26px 0 0;
  max-width: 640px;
  font-size: 0.8rem; line-height: 1.6;
  color: var(--text-light);
}
.dz-footer-note i { margin-top: 3px; color: var(--primary); flex-shrink: 0; }
.dz-wordmark {
  font-weight: 800;
  letter-spacing: -0.05em;
  font-size: clamp(5rem, 23vw, 19rem);
  line-height: 0.8;
  color: var(--bg-muted);
  text-align: center;
  user-select: none;
  margin-top: 8px;
  white-space: nowrap;
  overflow: hidden;
  max-width: 100%;
}

/* =========================================================
   Scroll reveal
   ========================================================= */
/* reveal — patrz css/index/motion.css */

/* =========================================================
   RESPONSIVE — desktop up
   ========================================================= */
@media (min-width: 601px) {
  .dz-hero-actions { flex-direction: row; flex-wrap: wrap; }
  .dz-hero-actions .dz-btn--dark.dz-hero-cta-catalog { order: 1; }
  .dz-hero-actions .dz-btn--join {
    order: 2;
    background: #fff;
    color: var(--primary);
    border-color: var(--primary);
    box-shadow: none;
  }
  .dz-hero-actions .dz-btn--join:hover {
    background: var(--primary-soft, #eef2ff);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
  }
}

@media (min-width: 768px) {
  .dz-wrap { padding-inline: 32px; }
  .dz-split-grid { grid-template-columns: 1fr 1fr; }
  .dz-footer-top { grid-template-columns: 1.4fr 1fr; }
  .dz-footer-cols { grid-template-columns: repeat(3, 1fr); }
  .pnl-cards { gap: 14px; }
}

@media (min-width: 992px) {
  .dz-section { padding: 110px 0; }
  .dz-hero { padding-top: 148px; }
  .dz-hero-grid { grid-template-columns: 1.05fr 0.95fr; gap: 64px; }
  .dz-panel-grid { grid-template-columns: 1fr 1fr; gap: 64px; }
  .dz-hero-stage { max-height: 560px; aspect-ratio: 1 / 1.04; }
  .dz-panel { margin-top: -8px; padding-top: 56px; padding-bottom: 72px; }
}

/* =========================================================
   RESPONSIVE — mobile fine-tuning
   ========================================================= */
.dz-create-anchor {
  display: block;
  height: 0;
  margin: 0;
  padding: 0;
  border: 0;
  overflow: hidden;
}

@media (max-width: 600px) {
  .dz-hero {
    padding-top: 76px;
    padding-bottom: 32px;
    overflow: visible;
    background:
      radial-gradient(120% 80% at 50% -10%, rgba(124, 58, 237, 0.14) 0%, transparent 55%),
      radial-gradient(90% 60% at 100% 40%, rgba(99, 102, 241, 0.1) 0%, transparent 50%),
      linear-gradient(180deg, #f8f6ff 0%, #ffffff 42%);
  }
  .dz-hero::before { display: none; }

  .dz-hero-grid {
    gap: 36px;
  }

  .dz-hero-text {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    text-align: left;
    width: 100%;
    min-height: min(54vh, 440px);
    justify-content: flex-start;
  }

  .dz-hero-badge,
  .dz-hero-trust,
  .dz-hero-facts,
  .dz-hero-catalog-note,
  .dz-hero-lead--desk { display: none !important; }

  .dz-hero-kicker {
    display: block;
    font-size: 0.92rem;
    margin-bottom: 10px;
  }

  .dz-hero h1 {
    font-size: clamp(2.7rem, 9.6vw, 3.05rem);
    margin-top: 0;
    margin-bottom: 4px;
    line-height: 1.16;
  }
  .dz-hero h1 .dz-hl::before,
  .dz-hero h1 .dz-hl--muted::before {
    height: 0.52em;
    min-height: 14px;
    border-radius: 7px;
  }

  .dz-hero-lead--mob {
    display: block;
    margin: 20px 0 26px;
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.55;
    max-width: none;
  }

  .dz-hero-chips {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: auto;
    margin-bottom: 20px;
  }
  .dz-hero-chip {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    padding: 13px 16px;
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--ink);
    background: #fff;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    box-shadow: 0 6px 20px -8px rgba(90, 0, 255, 0.14);
  }
  .dz-hero-chip i {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    font-size: 0.92rem;
    border-radius: 11px;
    background: var(--bg-subtle);
  }
  .dz-hero-chip:nth-child(1) i { color: #7c3aed; background: #f3e8ff; }
  .dz-hero-chip:nth-child(2) i { color: #0891b2; background: #ecfeff; }
  .dz-hero-chip:nth-child(3) i { color: #059669; background: #ecfdf5; }

  .dz-hero-cta-catalog { display: flex !important; }

  .dz-hero-actions {
    flex-direction: column;
    gap: 10px;
    width: 100%;
  }
  .dz-hero-actions .dz-btn {
    width: 100%;
    justify-content: center;
    padding: 16px 22px;
    font-size: 1.02rem;
    border-radius: var(--radius-pill);
  }
  .dz-hero-actions .dz-btn--join {
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-size: 0.92rem;
    border: none;
    background: var(--gradient-brand-h);
    box-shadow:
      0 16px 36px -14px rgba(90, 0, 255, 0.65),
      0 4px 0 rgba(55, 48, 163, 0.35);
  }
  .dz-hero-cta-secondary {
    background: #fff;
    color: var(--ink);
    border: 1.5px solid var(--border-strong);
    box-shadow: var(--shadow-sm);
    font-weight: 600;
    text-transform: none;
    letter-spacing: 0;
    font-size: 0.98rem;
  }

  .dz-hero-footnote {
    display: block;
    margin-top: 12px;
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-light);
    line-height: 1.4;
  }
  .dz-hero-stage {
    padding: 12px;
    aspect-ratio: 1 / 0.84;
    max-height: 380px;
    min-height: 340px;
    margin-top: 4px;
    width: 100%;
    max-width: none;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
  }
  .dz-hero-stage .dz-stage-cols {
    padding: 8px;
    gap: 8px;
    -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 8%, #000 100%);
            mask-image: linear-gradient(180deg, transparent 0%, #000 8%, #000 100%);
  }
  .dz-hero-stage .dz-stage-label {
    display: flex;
    top: 10px; left: 10px; right: 10px;
    font-size: 0.64rem;
    padding: 5px 9px;
  }
  .dz-col-track { gap: 8px; }
  .dz-feed-card { padding: 9px; }
  .dz-feed-card .fc-media { height: 72px; }
  .dz-feed-card .fc-name { font-size: 0.8rem; }
  .dz-feed-card .fc-meta { font-size: 0.7rem; }
  .dz-feed-note { padding: 9px 10px; }
  .dz-feed-note .fn-ic { width: 30px; height: 30px; font-size: 0.85rem; }
  .dz-feed-note small { font-size: 0.62rem; }
  .dz-feed-note strong { font-size: 0.78rem; }
  .dz-tile { width: 70vw; max-width: 280px; }
  .dz-quote { padding: 64px 0; }
  .dz-search {
    flex-wrap: wrap;
    width: 100%;
    max-width: none;
    padding: 12px;
    gap: 12px;
    border-radius: var(--radius-xl);
    margin-inline: 0;
  }
  .dz-search i { font-size: 1rem; padding-left: 4px; }
  .dz-search input {
    min-width: 0;
    width: 100%;
    padding: 12px 0;
    font-size: 1rem;
  }
  .dz-search .dz-btn {
    width: 100%;
    justify-content: center;
    padding-block: 14px;
    font-size: 1rem;
  }
  .dz-pills { gap: 6px; }
  .dz-pill { padding: 7px 12px; font-size: 0.8rem; }
}

@media (prefers-reduced-motion: reduce) {
  .dz-col-track, .dz-marquee-track, .dz-hero-stage .dz-stage-label .dot { animation: none !important; }
  html { scroll-behavior: auto; }
}
