/* ============================================================
   LAJKOVO.SK — zdieľaný stylesheet
   Design smer: „digitálny bazár" — neo-brutalizmus, cenovky, escrow
   Farebné kódovanie strán: modrá = firma, ružová = influencer,
   zelená = peniaze. Nikdy raw hex v komponentoch — len tokeny.
   ============================================================ */

/* ---------- 1. TOKENY ---------- */
:root {
  /* farby */
  --paper: #FAF6EF;
  --ink: #141414;
  --brand: #FF4D2E;
  --firm: #3A6BFF;
  --creator: #FF3EA5;
  --money: #00C877;
  --tag: #FFD23F;
  --muted: #6B6459;

  /* textové varianty (kontrast ≥ 4.5:1 na --paper) */
  --brand-text: #C33110;
  --firm-text: #2749C9;
  --creator-text: #C9077A;
  --money-text: #067A4C;

  /* odvodené plochy */
  --card: #FFFCF4;
  --firm-soft: color-mix(in srgb, var(--firm) 11%, var(--paper));
  --creator-soft: color-mix(in srgb, var(--creator) 11%, var(--paper));
  --money-soft: color-mix(in srgb, var(--money) 13%, var(--paper));
  --tag-soft: color-mix(in srgb, var(--tag) 18%, var(--paper));
  --line-soft: color-mix(in srgb, var(--ink) 14%, transparent);

  /* tvary a tiene — tvrdé, bez blur */
  --bw: 2px;
  --shadow-sm: 3px 3px 0 var(--ink);
  --shadow: 6px 6px 0 var(--ink);
  --shadow-lg: 10px 10px 0 var(--ink);
  --r-sm: 8px;
  --r-card: 14px;
  --r-pill: 999px;

  /* typografia */
  --font-display: 'Clash Display', 'Archivo Black', sans-serif;
  --font-body: 'Satoshi', 'Inter', system-ui, sans-serif;
  --font-mono: ui-monospace, 'SF Mono', Menlo, Consolas, monospace;

  /* z-index škála: 0 / 10 / 20 / 40 / 100 / 1000 */
  --z-raise: 10;
  --z-over: 20;
  --z-sticky: 40;
  --z-nav: 100;
  --z-modal: 1000;
}

/* ---------- 2. RESET & BASE ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
[hidden] { display: none !important; }

html { -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: no-preference) {
  html { scroll-behavior: smooth; }
}

body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.55;
  font-weight: 500;
  overflow-x: hidden;
  min-height: 100vh;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.01em;
  text-wrap: balance;
}
h2 { font-size: clamp(2rem, 4.5vw, 3.25rem); }
h3 { font-size: clamp(1.25rem, 2.2vw, 1.6rem); font-weight: 600; }
p { text-wrap: pretty; }

a { color: var(--firm-text); text-decoration-thickness: 2px; text-underline-offset: 3px; }
a:hover { color: var(--brand-text); }

button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
input, select, textarea { font: inherit; color: inherit; }
img, svg { display: block; max-width: 100%; }
ul, ol { padding-left: 0; }

::selection { background: var(--tag); color: var(--ink); }

:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 2px;
  border-radius: 4px;
}
.on-dark :focus-visible, .ticker :focus-visible { outline-color: var(--tag); }

/* ---------- 3. UTILITY ---------- */
.container { width: min(1200px, 100% - 48px); margin-inline: auto; }
.container--wide { width: min(1400px, 100% - 48px); }
.section { padding-block: 96px; }
.muted { color: var(--muted); }
.tnum { font-variant-numeric: tabular-nums; font-weight: 700; }
.mono { font-family: var(--font-mono); font-size: 13px; letter-spacing: 0; }

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  overflow: hidden; clip: rect(0 0 0 0);
  white-space: nowrap;
}
.skip-link {
  position: fixed; top: 8px; left: 8px;
  z-index: var(--z-modal);
  background: var(--ink); color: var(--paper);
  padding: 10px 16px; border-radius: var(--r-sm);
  font-weight: 700; text-decoration: none;
  transform: translateY(-64px);
}
.skip-link:focus { transform: translateY(0); color: var(--paper); }

.icon { width: 20px; height: 20px; flex: none; }
.icon--sm { width: 16px; height: 16px; }
.icon--lg { width: 26px; height: 26px; }

/* eyebrow nad nadpismi sekcií */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 700; font-size: 13px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--brand-text);
  margin-bottom: 16px;
}
.eyebrow::before { content: ""; width: 22px; height: 3px; background: var(--brand); border-radius: 2px; }

/* nadpis s dokresleným podčiarknutím */
.u-draw { position: relative; display: inline-block; }
.u-draw::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -0.08em;
  height: 0.13em; border-radius: 99px; background: var(--brand);
  transform: scaleX(0); transform-origin: left center;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.15s;
}
.is-in .u-draw::after, .u-draw.is-in::after { transform: scaleX(1); }

/* ---------- 4. TLAČIDLÁ ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-body); font-weight: 700; font-size: 17px; line-height: 1;
  min-height: 52px; padding: 8px 26px;
  border: var(--bw) solid var(--ink); border-radius: 12px;
  background: var(--card); color: var(--ink);
  box-shadow: var(--shadow);
  text-decoration: none; cursor: pointer; user-select: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease;
}
.btn:hover { transform: translate(2px, 2px); box-shadow: 4px 4px 0 var(--ink); color: inherit; }
.btn:active { transform: translate(4px, 4px); box-shadow: 2px 2px 0 var(--ink); }

.btn--firm { background: var(--firm); color: #fff; }
.btn--firm:hover { color: #fff; }
.btn--creator { background: var(--creator); color: var(--ink); }
.btn--brand { background: var(--brand); color: var(--ink); }
.btn--money { background: var(--money); color: var(--ink); }
.btn--ghost { background: transparent; box-shadow: none; }
.btn--ghost:hover { transform: none; box-shadow: none; background: color-mix(in srgb, var(--ink) 7%, transparent); }
.btn--ghost:active { transform: translate(1px, 1px); }

.btn--lg { min-height: 60px; font-size: 18px; padding: 10px 30px; border-radius: 14px; }
.btn--sm { min-height: 44px; font-size: 15px; padding: 6px 18px; box-shadow: var(--shadow-sm); }
.btn--sm:hover { box-shadow: 2px 2px 0 var(--ink); }
.btn--block { width: 100%; }
.btn[disabled] { opacity: 0.55; pointer-events: none; }

.icon-btn {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border: var(--bw) solid var(--ink);
  border-radius: 10px; background: var(--card);
  transition: background-color 0.15s ease;
}
.icon-btn:hover { background: var(--tag); }

.magnet { display: inline-block; will-change: transform; }

/* ---------- 5. CHIPY, BADGE, AVATARY ---------- */
.chip {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 700; line-height: 1;
  padding: 7px 12px; border-radius: var(--r-pill);
  border: var(--bw) solid var(--ink); background: var(--card);
  white-space: nowrap;
}
.chip .icon { width: 14px; height: 14px; }
.chip--firm { background: var(--firm-soft); }
.chip--creator { background: var(--creator-soft); }
.chip--money { background: var(--money-soft); }
.chip--tag { background: var(--tag); }
.chip--plain { border-color: var(--line-soft); background: transparent; color: var(--muted); }

.chip .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--ink); }
.dot--free { background: var(--money); }
.dot--left { background: var(--tag); border: 1px solid var(--ink); }
.dot--taken { background: var(--muted); }

.role-chip {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 700;
  padding: 6px 14px 6px 6px; border-radius: var(--r-pill);
  border: var(--bw) solid var(--ink);
}
.role-chip--creator { background: var(--creator-soft); }
.role-chip--firm { background: var(--firm-soft); }
.role-chip .icon { width: 15px; height: 15px; color: var(--money-text); }

.avatar {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: 50%;
  border: var(--bw) solid var(--ink);
  font-family: var(--font-display); font-weight: 600; font-size: 16px;
  color: var(--ink); background: var(--tag); flex: none;
}
.avatar--sm { width: 30px; height: 30px; font-size: 12px; }
.avatar--lg { width: 64px; height: 64px; font-size: 24px; }
.avatar--firm { background: var(--firm); color: #fff; }
.avatar--creator { background: var(--creator); }
.avatar--money { background: var(--money); }

/* ---------- 6. PEČIATKA ---------- */
.stamp {
  display: inline-block;
  font-family: var(--font-display); font-weight: 700;
  font-size: 20px; line-height: 1; letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--money-text);
  border: 3px solid var(--money-text); border-radius: 8px;
  padding: 8px 14px;
  transform: rotate(-8deg);
  background: color-mix(in srgb, var(--money) 10%, transparent);
  pointer-events: none;
}
.stamp--sm { font-size: 12px; border-width: 2px; padding: 5px 8px; border-radius: 6px; letter-spacing: 0.06em; }
.stamp--creator { color: var(--creator-text); border-color: var(--creator-text); background: color-mix(in srgb, var(--creator) 10%, transparent); }

/* ---------- 7. CENOVKA (žltý štítok) ---------- */
.price-tag {
  display: inline-flex; align-items: baseline; gap: 4px;
  background: var(--tag);
  border: var(--bw) solid var(--ink); border-radius: var(--r-sm);
  box-shadow: var(--shadow-sm);
  padding: 8px 14px;
  transform: rotate(-2deg);
  font-variant-numeric: tabular-nums;
  font-weight: 700; font-size: 22px; line-height: 1;
  white-space: nowrap;
}
.price-tag--lg { font-size: 42px; padding: 14px 22px; border-radius: 12px; box-shadow: 5px 5px 0 var(--ink); }
.price-tag--inline { font-size: 16px; padding: 5px 10px; box-shadow: 2px 2px 0 var(--ink); }

/* ---------- 8. TICKET — karta-cenovka (podpisový komponent) ---------- */
.ticket-wrap {
  position: relative;
  filter: drop-shadow(6px 6px 0 var(--ink));
  transform: rotate(var(--rot, 0deg));
  transition: transform 0.2s ease, filter 0.2s ease;
  will-change: transform;
}
.ticket {
  position: relative;
  display: flex; flex-direction: column;
  background: var(--card);
  border: var(--bw) solid var(--ink);
  border-radius: var(--r-card);
  overflow: hidden;
  /* perforovaná hrana: bočné zárezy v mieste odtrhového kupónu */
  -webkit-mask-image:
    radial-gradient(circle 9px at 0 calc(100% - var(--stub-h, 78px)), transparent 8.5px, #000 9.5px),
    radial-gradient(circle 9px at 100% calc(100% - var(--stub-h, 78px)), transparent 8.5px, #000 9.5px);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-composite: source-in;
  mask-image:
    radial-gradient(circle 9px at 0 calc(100% - var(--stub-h, 78px)), transparent 8.5px, #000 9.5px),
    radial-gradient(circle 9px at 100% calc(100% - var(--stub-h, 78px)), transparent 8.5px, #000 9.5px);
  mask-repeat: no-repeat;
  mask-composite: intersect;
}
/* dierka so šnúrkou — mimo maskovaného prvku, aby ju maska neorezala */
.ticket__eyelet {
  position: absolute; top: 12px; right: 14px;
  width: 18px; height: 18px; border-radius: 50%;
  border: var(--bw) solid var(--ink);
  background: var(--paper);
  box-shadow: inset 0 0 0 3px var(--card);
  z-index: var(--z-raise);
}
.ticket-string {
  position: absolute; top: -26px; right: -8px;
  width: 58px; height: 46px;
  fill: none; stroke: var(--ink); stroke-width: 2; stroke-linecap: round;
  z-index: var(--z-raise);
  pointer-events: none;
}

.ticket__photo {
  display: block; width: 100%; height: 132px;
  object-fit: cover;
  border-bottom: var(--bw) solid var(--ink);
  background: var(--tag-soft);
}
.hero-ticket .ticket__photo { height: 118px; }
.is-taken .ticket__photo { filter: grayscale(0.55); }
.avatar img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.ticket__head {
  display: flex; align-items: center; gap: 8px;
  padding: 14px 40px 0 16px;
}
.ticket__head .chip { font-size: 12px; padding: 6px 10px; }
.ticket__body { padding: 12px 16px 18px; flex: 1; }
.ticket__firm {
  font-size: 13px; font-weight: 700; color: var(--muted);
  text-transform: uppercase; letter-spacing: 0.1em;
  margin-bottom: 4px;
}
.ticket__title {
  font-family: var(--font-display); font-weight: 600;
  font-size: 21px; line-height: 1.12; letter-spacing: 0;
  margin-bottom: 14px;
}
.ticket__stub {
  min-height: var(--stub-h, 78px);
  border-top: 2px dashed var(--line-soft);
  padding: 12px 16px;
  display: grid; align-content: center; gap: 6px;
  background: color-mix(in srgb, var(--ink) 3%, var(--card));
}
.ticket__cond, .ticket__meta {
  display: flex; align-items: center; gap: 7px;
  font-size: 13.5px; font-weight: 500; color: var(--muted);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.ticket__cond .icon, .ticket__meta .icon { width: 15px; height: 15px; }
.ticket__cond strong, .ticket__meta strong { color: var(--ink); font-variant-numeric: tabular-nums; }

/* ticket ako odkaz v gride */
a.ticket-link { display: block; text-decoration: none; color: inherit; border-radius: var(--r-card); }
a.ticket-link:hover { color: inherit; }
.ticket-link:hover .ticket-wrap, .ticket-link:focus-visible .ticket-wrap {
  transform: rotate(0deg) scale(1.02);
  filter: drop-shadow(10px 10px 0 var(--ink));
}
.ticket-wrap--static { --rot: 0deg; }

/* stav Rezervovaná */
.is-taken .ticket { background: color-mix(in srgb, var(--ink) 5%, var(--card)); }
.is-taken .ticket__title, .is-taken .price-tag { opacity: 0.62; }

/* pečiatka na karte */
.ticket__stamp { position: absolute; right: 10px; bottom: 64px; z-index: var(--z-over); }

/* skeleton ticket */
.skel-block {
  border-radius: 6px;
  background: color-mix(in srgb, var(--ink) 9%, var(--card));
  position: relative; overflow: hidden;
}
.skel-block::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(100deg, transparent 20%, color-mix(in srgb, var(--card) 70%, transparent) 50%, transparent 80%);
  transform: translateX(-100%);
  animation: skel-sweep 1.1s ease-in-out infinite;
}
@keyframes skel-sweep { to { transform: translateX(100%); } }

/* ---------- 9. TICKER ---------- */
.ticker {
  background: var(--ink); color: var(--paper);
  border-block: var(--bw) solid var(--ink);
  overflow: hidden;
  height: 52px;
  display: flex; align-items: center;
  position: relative; z-index: var(--z-raise);
}
.ticker--slim { height: 44px; }
.ticker__track {
  display: flex; white-space: nowrap;
  will-change: transform;
  animation: ticker-scroll 40s linear infinite;
  animation-play-state: paused;
}
.ticker.is-live .ticker__track { animation-play-state: running; }
.ticker:hover .ticker__track { animation-play-state: paused; }
.ticker__group { display: flex; align-items: center; }
.ticker__item {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 14px; font-weight: 500;
  padding-inline: 26px;
  border-right: 1px solid color-mix(in srgb, var(--paper) 25%, transparent);
}
.ticker__item .tnum { font-weight: 700; }
.ticker__item .icon { width: 15px; height: 15px; }
.tk-money { color: var(--money); }
.tk-tag { color: var(--tag); }
.tk-creator { color: var(--creator); }
.tk-firm { color: color-mix(in srgb, var(--firm) 60%, #fff); }
@keyframes ticker-scroll { to { transform: translateX(-50%); } }

/* ---------- 10. NAVBAR (landing) ---------- */
.navbar {
  position: sticky; top: 0; z-index: var(--z-nav);
  background: var(--paper);
  border-bottom: var(--bw) solid var(--ink);
}
.navbar__in {
  display: flex; align-items: center; gap: 28px;
  min-height: 72px;
}
.logo {
  font-family: var(--font-display); font-weight: 700;
  font-size: 26px; letter-spacing: -0.01em;
  color: var(--ink); text-decoration: none;
  line-height: 1;
}
.logo:hover { color: var(--ink); }
.logo__dot { color: var(--brand); }
.logo--sm { font-size: 22px; }

.nav-links { display: flex; gap: 4px; margin-inline: auto; }
.nav-links a {
  font-weight: 700; font-size: 15px; color: var(--ink);
  text-decoration: none; padding: 12px 14px; border-radius: var(--r-pill);
}
.nav-links a:hover { background: var(--tag); color: var(--ink); }
.navbar__cta { display: flex; gap: 12px; align-items: center; }

.burger { display: none; }
.mobile-menu {
  display: none;
  border-top: var(--bw) solid var(--ink);
  background: var(--paper);
  padding: 16px 24px 24px;
}
.mobile-menu.is-open { display: grid; gap: 6px; }
.mobile-menu a:not(.btn) {
  font-weight: 700; font-size: 18px; color: var(--ink);
  text-decoration: none; padding: 12px 8px;
  border-bottom: 1px solid var(--line-soft);
}
.mobile-menu .btn { margin-top: 10px; }

/* ---------- 11. APP TOPBAR ---------- */
.topbar {
  position: sticky; top: 0; z-index: var(--z-nav);
  background: var(--paper);
  border-bottom: var(--bw) solid var(--ink);
}
.topbar__in { display: flex; align-items: center; gap: 24px; min-height: 64px; }
.topbar__nav { display: flex; gap: 4px; margin-inline: auto; overflow-x: auto; scrollbar-width: none; }
.topbar__nav::-webkit-scrollbar { display: none; }
.topbar__nav a {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 700; font-size: 15px; color: var(--ink);
  text-decoration: none; padding: 10px 16px; border-radius: var(--r-pill);
  border: var(--bw) solid transparent;
  white-space: nowrap;
  min-height: 44px;
}
.topbar__nav a:hover { background: var(--tag-soft); color: var(--ink); }
.topbar__nav a.is-active { border-color: var(--ink); background: var(--card); box-shadow: var(--shadow-sm); }
.topbar__nav .nav-dot { width: 9px; height: 9px; border-radius: 50%; border: 1.5px solid var(--ink); }
.nav-dot--creator { background: var(--creator); }
.nav-dot--firm { background: var(--firm); }
.nav-dot--brand { background: var(--brand); }

/* ---------- 12. HERO ---------- */
.hero { position: relative; padding-block: 56px 72px; overflow: hidden; }
.hero::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(color-mix(in srgb, var(--ink) 9%, transparent) 1px, transparent 1.4px);
  background-size: 26px 26px;
}
.hero__grid { position: relative; z-index: var(--z-raise); }
.hero__title {
  font-size: clamp(3rem, 8vw, 7rem);
  line-height: 0.97;
  margin-bottom: 28px;
  max-width: 14ch;
}
.hero-line { display: block; overflow: hidden; padding-bottom: 0.06em; }
.hero-line__inner { display: block; }
.hero__row {
  display: grid;
  grid-template-columns: minmax(0, 6fr) minmax(0, 5fr);
  gap: 48px;
  align-items: start;
}
.hero__sub {
  font-size: clamp(1.1rem, 1.6vw, 1.35rem);
  line-height: 1.5; max-width: 34ch;
  margin-bottom: 32px;
}
.hero__cta { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 20px; }
.hero__note { display: flex; align-items: center; gap: 8px; font-size: 14px; color: var(--muted); }
.hero__note .icon { width: 16px; height: 16px; color: var(--money-text); }

.hero__stack {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 26px; align-content: start;
}
.hero-ticket { width: auto; }
.hero-ticket:nth-child(1) { grid-column: 1; grid-row: 1; z-index: var(--z-raise); }
.hero-ticket:nth-child(2) { grid-column: 2; grid-row: 1; margin-top: 18px; z-index: var(--z-over); }

/* ---------- 13. SEKCIA: PROBLÉM ---------- */
.problem__grid {
  display: grid;
  grid-template-columns: minmax(0, 6fr) minmax(0, 4fr);
  gap: 64px; align-items: start;
}
.problem__grid h2 { max-width: 16ch; }
.problem__copy { font-size: 19px; line-height: 1.6; display: grid; gap: 18px; }
.hl-tag { background: var(--tag); padding: 0 0.14em; box-decoration-break: clone; -webkit-box-decoration-break: clone; }
.hl-money { color: var(--money-text); font-weight: 700; }
.hl-strike { text-decoration: line-through; text-decoration-color: var(--brand); text-decoration-thickness: 3px; }

/* ---------- 14. BENEFITY ---------- */
.benefits__grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px;
  margin-top: 48px;
}
.benefit {
  border: var(--bw) solid var(--ink); border-radius: var(--r-card);
  background: var(--card); box-shadow: var(--shadow);
  padding: 28px;
  transform: rotate(var(--rot, 0deg));
}
.benefit:nth-child(2) { margin-top: 24px; }
.benefit:nth-child(3) { margin-bottom: 24px; }
.benefit__chip {
  display: inline-flex; align-items: center; justify-content: center;
  width: 52px; height: 52px; border-radius: 14px;
  border: var(--bw) solid var(--ink);
  margin-bottom: 18px;
  box-shadow: var(--shadow-sm);
}
.benefit__chip .icon { width: 24px; height: 24px; }
.benefit--tag .benefit__chip { background: var(--tag); }
.benefit--money .benefit__chip { background: var(--money); }
.benefit--creator .benefit__chip { background: var(--creator); }
.benefit--firm .benefit__chip { background: var(--firm); color: #fff; }
.benefit h3 { margin-bottom: 10px; }
.benefit p { color: var(--muted); font-size: 16px; }

/* ---------- 15. AKO TO FUNGUJE — taby + kroky ---------- */
.how__head { display: flex; flex-wrap: wrap; align-items: end; justify-content: space-between; gap: 24px; margin-bottom: 40px; }

.tabs__bar {
  position: relative;
  display: inline-flex; gap: 4px;
  border: var(--bw) solid var(--ink); border-radius: var(--r-pill);
  background: var(--card); padding: 4px;
  box-shadow: var(--shadow-sm);
}
.tab-btn {
  position: relative; z-index: var(--z-raise);
  font-weight: 700; font-size: 15px;
  padding: 12px 22px; border-radius: var(--r-pill);
  min-height: 44px;
  transition: color 0.2s ease;
  white-space: nowrap;
}
.tab-btn[aria-selected="true"] { color: var(--ink); }
.tab-indicator {
  position: absolute; top: 4px; bottom: 4px; left: 0;
  border-radius: var(--r-pill);
  border: var(--bw) solid var(--ink);
  background: var(--firm-soft);
  width: 0;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), width 0.3s cubic-bezier(0.22, 1, 0.36, 1), background-color 0.3s ease;
}
.tab-indicator.is-creator { background: var(--creator-soft); }

.tabs__panels { display: grid; }
.tab-panel { grid-area: 1 / 1; visibility: hidden; }
.tab-panel.is-active { visibility: visible; }

.steps {
  list-style: none; counter-reset: step;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
}
.steps li {
  counter-increment: step;
  border: var(--bw) solid var(--ink); border-radius: var(--r-card);
  background: var(--card); box-shadow: var(--shadow);
  padding: 24px 24px 28px;
  position: relative;
}
.steps li::before {
  content: counter(step);
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px;
  font-family: var(--font-display); font-weight: 700; font-size: 20px;
  border: var(--bw) solid var(--ink); border-radius: 50%;
  margin-bottom: 16px;
  background: var(--accent, var(--tag));
}
.steps--firm li::before { background: var(--firm); color: #fff; }
.steps--creator li::before { background: var(--creator); }
.steps li p { font-size: 16.5px; }
.steps li strong { display: block; font-size: 17px; margin-bottom: 6px; }

/* ---------- 16. MONEY FLOW ---------- */
.flow { position: relative; margin-top: 56px; }
.flow svg { width: 100%; height: auto; overflow: visible; }
.flow__path {
  fill: none; stroke: var(--ink); stroke-width: 2.5;
  stroke-dasharray: 7 9; stroke-linecap: round;
}
.flow__node circle, .flow__node rect { stroke: var(--ink); stroke-width: 2.5; }
.flow__node--firm circle { fill: var(--firm); }
.flow__node--escrow rect { fill: var(--money); }
.flow__node--creator circle { fill: var(--creator); }
.flow__node use { color: #fff; }
.flow__node--escrow use, .flow__node--creator use { color: var(--ink); }
.flow__label {
  font-family: var(--font-body); font-weight: 700; font-size: 15px;
  fill: var(--ink); text-anchor: middle;
}
.flow__sublabel { font-weight: 500; font-size: 12.5px; fill: var(--muted); text-anchor: middle; }
.flow__dot { fill: var(--money); stroke: var(--ink); stroke-width: 2; }
.flow__stamp { position: absolute; right: 1%; top: -14px; }

/* ---------- 17. DÔVERYHODNOSŤ — placeholdery ---------- */
.trust__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 40px; }
.ph-card {
  min-height: 170px;
  border: 2px dashed color-mix(in srgb, var(--ink) 45%, transparent);
  border-radius: var(--r-card);
  display: grid; place-items: center; text-align: center;
  padding: 24px;
  background: repeating-linear-gradient(-45deg, transparent 0 14px, color-mix(in srgb, var(--ink) 4%, transparent) 14px 28px);
}
.ph-card p { font-family: var(--font-mono); font-size: 13px; color: var(--muted); max-width: 26ch; }

/* ---------- 18. CENNÍK ---------- */
.pricing-band {
  background: var(--tag-soft);
  border-block: var(--bw) solid var(--ink);
}
.pricing__grid {
  display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
  gap: 32px; align-items: center; margin-top: 48px;
}
.price-card {
  position: relative;
  border: var(--bw) solid var(--ink); border-radius: 16px;
  background: var(--card); box-shadow: var(--shadow);
  padding: 36px 32px;
}
.price-card--featured { box-shadow: var(--shadow-lg); transform: rotate(0.6deg); padding: 44px 36px; }
.price-card__who {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 700; font-size: 14px; text-transform: uppercase; letter-spacing: 0.12em;
  margin-bottom: 14px;
}
.price-card--creator .price-card__who { color: var(--creator-text); }
.price-card--firm .price-card__who { color: var(--firm-text); }
.price-card__num {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(3rem, 5vw, 4.2rem); line-height: 1;
  margin-bottom: 12px; font-variant-numeric: tabular-nums;
}
.price-card__num small { font-size: 0.38em; font-weight: 600; letter-spacing: 0; }
.price-card p { color: var(--muted); font-size: 16.5px; max-width: 40ch; }
.price-card .btn { margin-top: 24px; }
.ribbon {
  position: absolute; top: -18px; right: 22px;
  background: var(--tag); border: var(--bw) solid var(--ink);
  border-radius: var(--r-pill); box-shadow: var(--shadow-sm);
  font-size: 13px; font-weight: 700; padding: 8px 14px;
  transform: rotate(2deg);
  white-space: nowrap;
}
.pricing__note {
  margin-top: 36px; font-size: 16px;
  display: flex; align-items: center; gap: 10px; color: var(--muted);
}
.pricing__note .icon { color: var(--brand-text); flex: none; }

/* ---------- 19. FAQ ---------- */
.faq__list { max-width: 780px; margin-top: 40px; display: grid; gap: 14px; }
.qa {
  border: var(--bw) solid var(--ink); border-radius: var(--r-card);
  background: var(--card);
}
.qa summary {
  list-style: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  font-weight: 700; font-size: 17px;
  padding: 20px 22px;
  border-radius: var(--r-card);
}
.qa summary::-webkit-details-marker { display: none; }
.qa summary .icon { flex: none; transition: transform 0.25s ease; color: var(--brand-text); }
.qa[open] summary .icon { transform: rotate(45deg); }
.qa[open] { box-shadow: var(--shadow-sm); }
.qa__a { padding: 0 22px 22px; color: var(--muted); font-size: 16px; max-width: 62ch; }

/* ---------- 20. ZÁVEREČNÉ CTA (tmavé) ---------- */
.cta-dark {
  background: var(--ink); color: var(--paper);
  border-block: var(--bw) solid var(--ink);
  padding-block: 104px;
  position: relative; overflow: hidden;
}
.cta-dark::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(color-mix(in srgb, var(--paper) 13%, transparent) 1px, transparent 1.4px);
  background-size: 26px 26px;
}
.cta-dark__in { position: relative; text-align: center; display: grid; justify-items: center; gap: 32px; }
.cta-dark h2 { font-size: clamp(2.2rem, 5vw, 4rem); max-width: 20ch; }
.cta-dark .hero__cta { justify-content: center; margin: 0; }
.cta-dark .sticker {
  position: absolute; font-size: 13px; font-weight: 700;
  border: var(--bw) solid var(--paper); border-radius: var(--r-pill);
  padding: 8px 14px; color: var(--paper);
}
.sticker--1 { left: 4%; top: 12%; transform: rotate(-7deg); color: var(--tag) !important; border-color: var(--tag) !important; }
.sticker--2 { right: 5%; bottom: 16%; transform: rotate(5deg); color: var(--money) !important; border-color: var(--money) !important; }

/* ---------- 21. FOOTER ---------- */
.footer { border-top: var(--bw) solid var(--ink); background: var(--paper); }
.footer__in {
  display: grid; grid-template-columns: minmax(0, 4fr) minmax(0, 4fr) minmax(0, 3fr);
  gap: 48px; padding-block: 56px;
}
.footer__tag { margin-top: 12px; color: var(--muted); font-size: 15px; max-width: 30ch; }
.footer h4 { font-family: var(--font-body); font-size: 14px; text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 14px; }
.footer__form .footer__row { display: flex; gap: 10px; margin-top: 10px; }
.footer__form input {
  flex: 1; min-width: 0; height: 48px;
  border: var(--bw) solid var(--ink); border-radius: 10px;
  background: var(--card); padding: 0 14px; font-weight: 500;
}
.footer__form label { font-weight: 700; font-size: 15px; }
.form-ok { margin-top: 10px; color: var(--money-text); font-weight: 700; font-size: 15px; display: flex; gap: 8px; align-items: center; }
.footer__links { display: grid; gap: 8px; justify-items: start; }
.footer__links a { color: var(--ink); text-decoration: none; font-weight: 500; font-size: 15px; padding: 4px 0; }
.footer__links a:hover { color: var(--brand-text); text-decoration: underline; }
.footer__base {
  border-top: 1px solid var(--line-soft);
  padding-block: 20px;
  display: flex; flex-wrap: wrap; gap: 8px 24px; align-items: center; justify-content: space-between;
  font-size: 14px; color: var(--muted);
}

/* ---------- 22. BURZA ---------- */
.appbar {
  position: sticky; top: 64px; z-index: var(--z-sticky);
  background: var(--paper);
  border-bottom: var(--bw) solid var(--ink);
}
.appbar__in {
  display: flex; align-items: center; gap: 20px;
  min-height: 68px; flex-wrap: wrap; padding-block: 10px;
}
.appbar__title { font-size: clamp(1.5rem, 2.5vw, 2rem); }
.appbar__count { font-size: 15px; color: var(--muted); }
.appbar__count strong { color: var(--ink); font-variant-numeric: tabular-nums; }
.sort { margin-left: auto; display: flex; align-items: center; gap: 10px; font-size: 14px; font-weight: 700; }
.sort select {
  min-height: 44px; padding: 0 14px;
  border: var(--bw) solid var(--ink); border-radius: 10px;
  background: var(--card); font-weight: 700; font-size: 15px;
  cursor: pointer;
}

.burza-layout {
  display: grid; grid-template-columns: 280px minmax(0, 1fr);
  gap: 36px; padding-block: 36px 96px;
  align-items: start;
}
.filters-col { position: sticky; top: 148px; }
.filters {
  border: var(--bw) solid var(--ink); border-radius: var(--r-card);
  background: var(--card); box-shadow: var(--shadow);
  padding: 22px; display: grid; gap: 24px;
}
.filters fieldset { border: 0; padding: 0; display: grid; gap: 10px; }
.filters legend {
  font-weight: 700; font-size: 13px; text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--muted); padding: 0; margin-bottom: 10px;
}
.check {
  display: flex; align-items: center; gap: 10px;
  font-size: 15px; font-weight: 500; cursor: pointer;
  min-height: 32px;
}
.check input {
  appearance: none; -webkit-appearance: none;
  width: 22px; height: 22px; flex: none;
  border: var(--bw) solid var(--ink); border-radius: 6px;
  background: #fff; cursor: pointer;
  display: grid; place-content: center;
  transition: background-color 0.15s ease;
}
.check input::after {
  content: ""; width: 10px; height: 6px;
  border: 2.5px solid #fff; border-top: 0; border-right: 0;
  transform: rotate(-45deg) scale(0); margin-top: -2px;
  transition: transform 0.15s ease;
}
.check input:checked { background: var(--brand); }
.check input:checked::after { transform: rotate(-45deg) scale(1); }
.check .count { margin-left: auto; color: var(--muted); font-size: 13px; font-variant-numeric: tabular-nums; }

.range-out { font-variant-numeric: tabular-nums; font-weight: 700; font-size: 15px; }
input[type="range"] { width: 100%; height: 28px; -webkit-appearance: none; appearance: none; background: transparent; cursor: pointer; }
input[type="range"]::-webkit-slider-runnable-track {
  height: 10px; border: var(--bw) solid var(--ink); border-radius: var(--r-pill);
  background: linear-gradient(to right, var(--tag) 0 var(--fill, 0%), var(--card) var(--fill, 0%));
}
input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none; width: 24px; height: 24px; margin-top: -9px;
  background: var(--tag); border: var(--bw) solid var(--ink); border-radius: 7px;
  box-shadow: 2px 2px 0 var(--ink);
}
input[type="range"]::-moz-range-track {
  height: 10px; border: var(--bw) solid var(--ink); border-radius: var(--r-pill);
  background: var(--card);
}
input[type="range"]::-moz-range-thumb {
  width: 20px; height: 20px; background: var(--tag);
  border: var(--bw) solid var(--ink); border-radius: 7px;
  box-shadow: 2px 2px 0 var(--ink);
}
.filters select {
  min-height: 44px; padding: 0 12px; width: 100%;
  border: var(--bw) solid var(--ink); border-radius: 10px;
  background: #fff; font-weight: 500; font-size: 15px; cursor: pointer;
}

.eligible {
  border: var(--bw) solid var(--creator); border-radius: 12px;
  background: var(--creator-soft); padding: 14px;
}
.eligible .check { font-weight: 700; }
.eligible .check input:checked { background: var(--creator); }
.eligible__hint { margin-top: 8px; font-size: 13px; color: var(--muted); display: flex; gap: 6px; align-items: center; }
.eligible__hint .icon { width: 14px; height: 14px; color: var(--creator-text); }

.offer-grid {
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px 26px;
}
.offers-empty {
  border: 2px dashed var(--creator); border-radius: var(--r-card);
  background: var(--creator-soft);
  padding: 56px 24px; text-align: center;
  display: grid; justify-items: center; gap: 12px;
}
.offers-empty .icon { width: 32px; height: 32px; color: var(--creator-text); }
.offers-empty p { color: var(--muted); max-width: 34ch; }

.fab {
  display: none;
  position: fixed; bottom: 18px; left: 50%; transform: translateX(-50%);
  z-index: var(--z-nav);
  align-items: center; gap: 10px;
  min-height: 54px; padding: 0 26px;
  background: var(--ink); color: var(--paper);
  border: var(--bw) solid var(--ink); border-radius: var(--r-pill);
  font-weight: 700; font-size: 16px;
  box-shadow: var(--shadow);
}
.fab .icon { width: 18px; height: 18px; }

.sheet {
  position: fixed; inset-inline: 0; bottom: 0;
  z-index: var(--z-modal);
  background: var(--paper);
  border-top: var(--bw) solid var(--ink);
  border-radius: 20px 20px 0 0;
  max-height: 84vh; overflow: auto;
  padding: 12px 20px 32px;
  transform: translateY(102%);
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.sheet.is-open { transform: translateY(0); }
.sheet__grab { width: 48px; height: 5px; border-radius: 99px; background: var(--line-soft); margin: 6px auto 14px; }
.sheet__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.sheet__head h2 { font-size: 22px; }
.sheet .filters { box-shadow: none; border: 0; padding: 0; }

.backdrop {
  position: fixed; inset: 0; z-index: var(--z-nav);
  background: color-mix(in srgb, var(--ink) 55%, transparent);
  opacity: 0; pointer-events: none;
  transition: opacity 0.25s ease;
}
.backdrop.is-open { opacity: 1; pointer-events: auto; }

/* ---------- 23. DETAIL PONUKY ---------- */
.crumbs { padding-block: 20px 4px; }
.crumbs a {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 700; font-size: 15px; color: var(--ink); text-decoration: none;
  min-height: 44px;
}
.crumbs a:hover { color: var(--brand-text); }

.detail-grid {
  display: grid; grid-template-columns: minmax(0, 1fr) 400px;
  gap: 36px; align-items: start;
  padding-bottom: 48px;
}
.panel {
  border: var(--bw) solid var(--ink); border-radius: var(--r-card);
  background: var(--card); box-shadow: var(--shadow);
  padding: 28px;
}
.panel + .panel { margin-top: 24px; }
.panel > h2 { font-size: 24px; margin-bottom: 18px; }
.panel--band { border-left: 10px solid var(--firm); display: flex; gap: 18px; align-items: center; flex-wrap: wrap; }
.firm-band__meta { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 10px; }
.firm-band__name { display: flex; align-items: center; gap: 10px; font-size: 26px; }
.firm-band__name .icon { color: var(--money-text); width: 22px; height: 22px; }

.bullets { list-style: none; display: grid; gap: 12px; }
.bullets li { display: flex; gap: 12px; font-size: 16.5px; }
.bullets .icon { flex: none; margin-top: 3px; color: var(--firm-text); }

.files { list-style: none; display: grid; gap: 10px; }
.files a {
  display: flex; align-items: center; gap: 12px;
  border: var(--bw) solid var(--ink); border-radius: 10px;
  padding: 12px 16px; background: #fff;
  text-decoration: none; color: var(--ink); font-weight: 700; font-size: 15px;
  transition: background-color 0.15s ease;
  min-height: 48px;
}
.files a:hover { background: var(--tag-soft); color: var(--ink); }
.files .size { margin-left: auto; color: var(--muted); font-weight: 500; font-size: 13.5px; }
.files .icon { color: var(--firm-text); }

.checklist { list-style: none; display: grid; gap: 12px; }
.checklist li {
  display: flex; align-items: center; gap: 12px;
  border: 1px solid var(--line-soft); border-radius: 10px;
  padding: 12px 16px; font-size: 16px; background: #fff;
  flex-wrap: wrap;
}
.checklist .icon { color: var(--money-text); flex: none; }
.checklist .you {
  margin-left: auto; font-size: 13.5px; font-weight: 700; color: var(--money-text);
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--money-soft); border-radius: var(--r-pill); padding: 4px 10px;
}

.timeline { list-style: none; display: grid; gap: 0; }
.timeline li { display: grid; grid-template-columns: 28px 1fr; gap: 14px; }
.timeline .t-dot {
  width: 16px; height: 16px; border-radius: 50%;
  border: var(--bw) solid var(--ink); background: var(--tag);
  margin-inline: auto; margin-top: 4px;
}
.timeline li:first-child .t-dot { background: var(--firm); }
.timeline li:last-child .t-dot { background: var(--money); }
.timeline .t-line { width: 2px; flex: 1; background: var(--line-soft); margin: 4px auto; min-height: 22px; }
.timeline .t-body { padding-bottom: 20px; }
.timeline li:last-child .t-body { padding-bottom: 0; }
.timeline strong { display: block; font-size: 16px; }
.timeline span { color: var(--muted); font-size: 14.5px; }
.t-rail { display: grid; grid-template-rows: auto 1fr; }

.detail-side { position: sticky; top: 92px; }
.offer-card .ticket__body { display: grid; gap: 16px; justify-items: start; }
.payout-split { display: grid; gap: 6px; font-size: 15.5px; width: 100%; }
.payout-split .row { display: flex; justify-content: space-between; gap: 12px; }
.payout-split .row strong { font-variant-numeric: tabular-nums; }
.payout-split .row.total { color: var(--muted); font-size: 14px; }
.escrow-note {
  display: flex; align-items: center; gap: 10px;
  background: var(--money-soft); border: var(--bw) solid var(--money);
  border-radius: 10px; padding: 10px 14px;
  font-weight: 700; font-size: 14.5px; width: 100%;
  color: var(--money-text);
}
.escrow-note .icon { flex: none; }
.deadline-big {
  display: flex; align-items: center; gap: 10px;
  font-size: 15px; font-weight: 700;
}
.deadline-big .icon { color: var(--brand-text); }
.fine { font-size: 13px; color: var(--muted); }

/* ---------- 24. DASHBOARDY ---------- */
.dash { padding-block: 40px 96px; }
.dash__head { display: flex; flex-wrap: wrap; align-items: end; justify-content: space-between; gap: 20px; margin-bottom: 36px; }
.dash__head h1 { font-size: clamp(2rem, 4vw, 3rem); }
.dash__head .muted { margin-top: 8px; }

.stat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin-bottom: 44px; }
.stat-card {
  border: var(--bw) solid var(--ink); border-radius: var(--r-card);
  background: var(--card); box-shadow: var(--shadow);
  padding: 24px 26px;
  display: grid; gap: 4px;
  position: relative;
}
.stat-card__label { font-size: 14.5px; font-weight: 700; color: var(--muted); display: flex; align-items: center; gap: 8px; }
.stat-card__num {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(2.1rem, 3.4vw, 2.9rem); line-height: 1.1;
  font-variant-numeric: tabular-nums;
}
.stat-card__chip {
  position: absolute; top: 20px; right: 20px;
  width: 44px; height: 44px; border-radius: 12px;
  border: var(--bw) solid var(--ink);
  display: grid; place-items: center;
  box-shadow: var(--shadow-sm);
}
.stat--money .stat-card__chip { background: var(--money); }
.stat--tag .stat-card__chip { background: var(--tag); }
.stat--creator .stat-card__chip { background: var(--creator); }
.stat--firm .stat-card__chip { background: var(--firm); color: #fff; }
.stat-card__cta { margin-top: 10px; }

.dash-grid { display: grid; grid-template-columns: minmax(0, 1fr) 360px; gap: 32px; align-items: start; }

/* progres krokov spolupráce */
.collab {
  display: grid; gap: 16px;
  border: 1px solid var(--line-soft); border-radius: 12px;
  background: #fff; padding: 18px 20px;
}
.collab + .collab { margin-top: 14px; }
.collab__top { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.collab__firm { font-weight: 700; font-size: 16.5px; }
.collab__job { color: var(--muted); font-size: 14.5px; }
.collab__right { margin-left: auto; display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }

.psteps { list-style: none; display: flex; align-items: flex-start; }
.psteps li {
  flex: 1; text-align: center; position: relative;
  font-size: 12.5px; font-weight: 700; color: var(--muted);
  padding-top: 26px;
  min-width: 78px;
}
.psteps li::before {
  content: ""; position: absolute; top: 8px; left: 0; right: 0;
  height: 2px; background: var(--line-soft);
}
.psteps li:first-child::before { left: 50%; }
.psteps li:last-child::before { right: 50%; }
.psteps .p-dot {
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 18px; height: 18px; border-radius: 50%;
  border: var(--bw) solid var(--ink); background: #fff;
  z-index: var(--z-raise);
  display: grid; place-items: center;
}
.psteps .p-dot .icon { width: 10px; height: 10px; color: var(--ink); }
.psteps li.is-done { color: var(--ink); }
.psteps li.is-done::before { background: var(--money); }
.psteps li.is-done .p-dot { background: var(--money); }
.psteps li.is-current { color: var(--creator-text); }
.psteps li.is-current .p-dot { background: var(--creator); }
.psteps li.is-current .p-dot::after {
  content: ""; position: absolute; inset: -6px; border-radius: 50%;
  border: 2px solid var(--creator);
  animation: pulse-ring 1.6s ease-out infinite;
}
@keyframes pulse-ring {
  from { transform: scale(0.55); opacity: 0.95; }
  to { transform: scale(1.25); opacity: 0; }
}

.pay-table { width: 100%; border-collapse: collapse; font-size: 15px; }
.pay-table th {
  text-align: left; font-size: 12.5px; text-transform: uppercase; letter-spacing: 0.09em;
  color: var(--muted); padding: 10px 12px;
  border-bottom: var(--bw) solid var(--ink);
  white-space: nowrap;
}
.pay-table td { padding: 14px 12px; border-bottom: 1px solid var(--line-soft); vertical-align: middle; }
.pay-table tr:last-child td { border-bottom: 0; }
.pay-table .sum { font-variant-numeric: tabular-nums; font-weight: 700; white-space: nowrap; }
.pay-table td:first-child { white-space: nowrap; color: var(--muted); font-variant-numeric: tabular-nums; }

.profile__id { display: flex; align-items: center; gap: 14px; margin-bottom: 20px; }
.profile__id strong { font-size: 18px; display: block; }
.profile__id > div span { color: var(--muted); font-size: 14px; }
.profile__rows { display: grid; gap: 0; }
.profile__row {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 13px 0; border-top: 1px solid var(--line-soft);
  font-size: 15px;
}
.profile__row .val { font-weight: 700; font-variant-numeric: tabular-nums; display: inline-flex; align-items: center; gap: 7px; }
.profile__row .val .icon { width: 16px; height: 16px; color: var(--money-text); }
.profile__cats { display: flex; gap: 8px; flex-wrap: wrap; }

.mini-offer {
  display: flex; align-items: center; gap: 12px;
  border: var(--bw) solid var(--ink); border-radius: 12px;
  background: #fff; padding: 12px 14px;
  text-decoration: none; color: var(--ink);
  transition: background-color 0.15s ease, transform 0.15s ease;
}
.mini-offer:hover { background: var(--tag-soft); transform: translate(1px, 1px); color: var(--ink); }
.mini-offer + .mini-offer { margin-top: 10px; }
.mini-offer strong { display: block; font-size: 14.5px; line-height: 1.3; }
.mini-offer span { color: var(--muted); font-size: 12.5px; }
.mini-offer .price-tag--inline { margin-left: auto; flex: none; }

/* riadky ponúk firmy */
.offer-row {
  display: grid; gap: 14px;
  border: 1px solid var(--line-soft); border-radius: 12px;
  background: #fff; padding: 18px 20px;
}
.offer-row + .offer-row { margin-top: 14px; }
.offer-row__top { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.offer-row__title { font-size: 17px; font-weight: 700; }
.offer-row__actions { margin-left: auto; display: flex; gap: 10px; }
.offer-row__metrics {
  display: flex; flex-wrap: wrap; gap: 8px 26px;
  font-size: 14.5px; color: var(--muted);
}
.offer-row__metrics strong { color: var(--ink); font-variant-numeric: tabular-nums; }
.offer-row__metrics .m { display: inline-flex; align-items: center; gap: 7px; }
.offer-row__metrics .icon { width: 15px; height: 15px; }
.slotbar {
  width: 120px; height: 10px; border: var(--bw) solid var(--ink); border-radius: var(--r-pill);
  overflow: hidden; background: #fff;
}
.slotbar i { display: block; height: 100%; background: var(--money); }

/* schvaľovanie influencerov */
.approve-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.approve-card {
  border: var(--bw) solid var(--ink); border-radius: var(--r-card);
  background: var(--card); box-shadow: var(--shadow-sm);
  padding: 22px; display: grid; gap: 14px;
  transition: border-color 0.2s ease;
}
.approve-card.is-approved { border-color: var(--money); box-shadow: 4px 4px 0 var(--money-text); }
.approve-card__id { display: flex; gap: 12px; align-items: center; }
.approve-card__id strong { display: block; font-size: 16.5px; }
.approve-card__id > div span { color: var(--muted); font-size: 13.5px; }
.approve-card__meta { display: flex; flex-wrap: wrap; gap: 8px; }
.approve-card__actions { display: flex; gap: 10px; }
.approve-card__actions .btn { flex: 1; }

/* ---------- 25. MODAL — wizard ---------- */
.modal { position: fixed; inset: 0; z-index: var(--z-modal); display: none; }
.modal.is-open { display: grid; place-items: center; padding: 20px; }
.modal__backdrop { position: absolute; inset: 0; background: color-mix(in srgb, var(--ink) 58%, transparent); }
.modal__card {
  position: relative; width: min(680px, 100%);
  background: var(--paper);
  border: var(--bw) solid var(--ink); border-radius: 18px;
  box-shadow: var(--shadow-lg);
  max-height: min(92vh, 820px);
  display: flex; flex-direction: column;
}
.wizard__head {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 22px 26px 0;
}
.wizard__head h2 { font-size: 26px; }

.wizard__progress {
  list-style: none; display: flex; gap: 8px;
  padding: 18px 26px 20px;
}
.wizard__progress li {
  flex: 1; display: flex; align-items: center; gap: 10px;
  font-size: 13.5px; font-weight: 700; color: var(--muted);
}
.wizard__progress .n {
  width: 32px; height: 32px; flex: none;
  display: grid; place-items: center;
  border: var(--bw) solid var(--ink); border-radius: 50%;
  background: #fff; font-variant-numeric: tabular-nums;
  transition: background-color 0.2s ease;
}
.wizard__progress li.is-active { color: var(--ink); }
.wizard__progress li.is-active .n { background: var(--firm); color: #fff; }
.wizard__progress li.is-done { color: var(--ink); }
.wizard__progress li.is-done .n { background: var(--money); }
.wizard__progress li:not(:last-child)::after {
  content: ""; flex: 1; height: 2px; background: var(--line-soft); min-width: 12px;
}

.wizard__viewport {
  position: relative; overflow: hidden;
  border-block: var(--bw) solid var(--ink);
  background: var(--card);
  flex: 1; min-height: 380px;
}
.wizard__step {
  position: absolute; inset: 0; overflow-y: auto;
  padding: 26px; display: grid; gap: 18px; align-content: start;
  visibility: hidden;
}
.wizard__step.is-active { visibility: visible; }

.wizard__foot { display: flex; align-items: center; gap: 12px; padding: 20px 26px 24px; }
.wizard__spacer { flex: 1; }

.field { display: grid; gap: 7px; }
.field > label { font-weight: 700; font-size: 14.5px; }
.field .hint { font-size: 13px; color: var(--muted); }
.field input, .field select, .field textarea {
  min-height: 48px; padding: 10px 14px;
  border: var(--bw) solid var(--ink); border-radius: 10px;
  background: #fff; font-weight: 500; font-size: 16px;
  width: 100%;
}
.field textarea { min-height: 96px; resize: vertical; }
.field .error {
  display: none; align-items: center; gap: 7px;
  color: var(--brand-text); font-size: 14px; font-weight: 700;
}
.field.has-error input, .field.has-error textarea, .field.has-error select { border-color: var(--brand); }
.field.has-error .error { display: flex; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.calc {
  border: var(--bw) solid var(--ink); border-radius: 12px;
  background: var(--tag-soft); padding: 16px 18px;
  display: grid; gap: 8px; font-size: 15px;
}
.calc .row { display: flex; justify-content: space-between; gap: 12px; }
.calc .row strong { font-variant-numeric: tabular-nums; }
.calc .row.total { border-top: 2px dashed var(--line-soft); padding-top: 8px; font-weight: 700; }
.calc .warn { color: var(--brand-text); font-weight: 700; font-size: 14px; display: none; align-items: center; gap: 7px; }
.calc.is-over .warn { display: flex; }
.calc__credit { display: flex; align-items: center; gap: 8px; font-size: 14px; color: var(--money-text); font-weight: 700; }

/* ---------- 26. TOAST ---------- */
.toast {
  position: fixed; bottom: 22px; right: 22px;
  z-index: var(--z-modal);
  background: var(--ink); color: var(--paper);
  border: var(--bw) solid var(--ink); border-radius: 12px;
  box-shadow: 6px 6px 0 color-mix(in srgb, var(--ink) 30%, transparent);
  padding: 14px 20px; font-weight: 700; font-size: 15px;
  display: flex; align-items: center; gap: 10px;
  max-width: min(400px, calc(100vw - 44px));
  transform: translateY(120%); opacity: 0;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.3s ease;
  pointer-events: none;
}
.toast.is-show { transform: translateY(0); opacity: 1; }
.toast .icon { color: var(--money); flex: none; }

/* ---------- 27. RESPONZIVITA ---------- */
@media (max-width: 1180px) {
  .offer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .approve-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 1024px) {
  .section { padding-block: 72px; }
  .burza-layout { grid-template-columns: 1fr; }
  .filters-col { display: none; }
  .fab { display: inline-flex; }
  .dash-grid { grid-template-columns: 1fr; }
  .detail-grid { grid-template-columns: 1fr; }
  .detail-side { position: static; order: -1; }
  .detail-side .ticket-wrap { max-width: 520px; }
  .stat-grid { gap: 18px; }
  .footer__in { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .nav-links, .navbar__cta { display: none; }
  .burger {
    display: inline-flex; align-items: center; justify-content: center;
    width: 46px; height: 46px; margin-left: auto;
    border: var(--bw) solid var(--ink); border-radius: 10px;
    background: var(--card);
  }
  .hero__row { grid-template-columns: 1fr; gap: 40px; }
  .hero__stack { grid-template-columns: 1fr; gap: 18px; justify-items: center; }
  .hero-ticket { width: min(340px, 100%); }
  .hero-ticket:nth-child(1), .hero-ticket:nth-child(2), .hero-ticket:nth-child(3), .hero-ticket:nth-child(4) { grid-column: 1; grid-row: auto; margin-top: 0; }
  .hero-ticket:nth-child(4) { display: none; }
  .problem__grid { grid-template-columns: 1fr; gap: 32px; }
  .steps { grid-template-columns: 1fr; }
  .steps li::before { margin-bottom: 10px; }
  .benefits__grid { grid-template-columns: 1fr; }
  .benefit:nth-child(2), .benefit:nth-child(3) { margin: 0; }
  .trust__grid { grid-template-columns: 1fr; }
  .pricing__grid { grid-template-columns: 1fr; }
  .price-card--featured { transform: none; }
  .approve-grid { grid-template-columns: 1fr; }
  .flow__stamp { top: auto; bottom: -10px; }
  .appbar { top: 62px; }
  .hero__float { display: none; }
  .band__item { width: 200px; }
  .band__item img { height: 140px; }
  .cta-float { width: 150px; }
  .cta-float img { height: 108px; }
}

@media (max-width: 720px) {
  .container, .container--wide { width: min(1200px, 100% - 32px); }
  body { font-size: 16px; }
  .section { padding-block: 64px; }
  .offer-grid { grid-template-columns: 1fr; }
  .stat-grid { grid-template-columns: 1fr; }
  .footer__in { grid-template-columns: 1fr; gap: 32px; }
  .hero { padding-block: 40px 56px; }
  .hero__cta .btn { width: 100%; }
  .hero__cta .magnet { width: 100%; }
  .cta-dark .hero__cta { width: 100%; }
  .sort { margin-left: 0; width: 100%; }
  .sort select { flex: 1; }
  .field-row { grid-template-columns: 1fr; }
  .wizard__progress li span.lbl { display: none; }
  .wizard__progress li.is-active span.lbl { display: inline; }
  .pay-table th:nth-child(3), .pay-table td:nth-child(3) { display: none; }
  .collab__right { margin-left: 0; }
  .ticker__item { padding-inline: 18px; }
  .panel { padding: 20px; }
  .offer-row__actions { margin-left: 0; }
  .gallery { grid-template-columns: 1fr; }
  .gallery .polaroid img { height: 190px; }
}

/* ---------- 27b. VIZUÁLY: polaroidy, foto pás, parallax ---------- */
.polaroid {
  background: #fff;
  border: var(--bw) solid var(--ink);
  padding: 10px 10px 14px;
  box-shadow: var(--shadow);
  transform: rotate(var(--rot, 0deg));
}
.polaroid img { display: block; width: 100%; height: 100%; object-fit: cover; }

.hero__float { position: absolute; z-index: 0; width: 190px; }
.hero__float img { height: 136px; }
.hero__float--1 { right: 1.5%; top: -6px; }
.hero__float--2 { left: -34px; bottom: 6%; }

.problem__ill { margin-top: 32px; width: min(380px, 100%); }
.problem__ill img { height: 220px; }

.band {
  border-block: var(--bw) solid var(--ink);
  background: var(--card);
  overflow: hidden;
  padding-block: 52px;
}
.band__track { display: flex; gap: 30px; width: max-content; align-items: center; padding-left: 24px; will-change: transform; }
.band__item { flex: none; width: 250px; }
.band__item img { height: 175px; }
.band__item:nth-child(odd) { margin-top: 26px; }
.band__item:nth-child(even) { margin-bottom: 26px; }

.step__ill {
  width: 100%; height: 140px;
  object-fit: cover; display: block;
  border: var(--bw) solid var(--ink); border-radius: 10px;
  margin-bottom: 16px;
  background: var(--card);
}

.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: start; }
.gallery .polaroid img { height: 150px; }

.cta-float { position: absolute; width: 200px; z-index: 0; }
.cta-float img { height: 145px; }
.cta-float--1 { left: 2%; bottom: -34px; --rot: -6deg; }
.cta-float--2 { right: 2.5%; top: -40px; --rot: 5deg; }

.mini-thumb {
  width: 56px; height: 46px; flex: none;
  border: var(--bw) solid var(--ink); border-radius: 8px;
  overflow: hidden;
}
.mini-thumb img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- 28. REDUCED MOTION ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.12s !important;
  }
  .ticker__track { animation: none !important; }
  .psteps li.is-current .p-dot::after { animation: none !important; display: none; }
  .skel-block::after { animation: none !important; }
}

/* Skryté stavy pred JS animáciou — platí len keď beží JS (html.js).
   Bez JS je všetko viditeľné. JS ich okamžite prepne cez GSAP. */
.js [data-reveal] { opacity: 0; }
.js .hero [data-anim] { visibility: hidden; }
.js .flow__stamp { visibility: hidden; }

/* ---------- AUTH STRÁNKY (fáza 4) ---------- */
.auth-wrap { max-width: 520px; margin-inline: auto; }
.auth-wrap .panel { margin-top: 24px; }
.form-errors { list-style: none; padding: 12px 16px; margin: 0 0 18px; border: var(--bw) solid var(--brand); border-radius: var(--r-sm); background: color-mix(in srgb, var(--brand) 10%, var(--paper)); color: var(--brand-text); font-weight: 700; display: grid; gap: 6px; }
.auth-form { display: grid; gap: 16px; }
.auth-form .btn { justify-self: start; }
.auth-alt { margin-top: 18px; font-size: 14px; color: var(--muted); }
.auth-alt a { color: inherit; font-weight: 700; }
.auth-roles { display: flex; gap: 10px; margin-top: 18px; }
