/* MediaMC OS — prodejní web: styly jednotlivých bloků.
 *
 * Sem patří jen to, co je vlastní konkrétnímu bloku. Co používá víc bloků,
 * patří do marketing.css jako sdílená komponenta.
 *
 * PRAVIDLO: jedna vlastnost se nastavuje právě jednou; blok nikdy nepřebíjí
 * sdílenou komponentu, ale doplňuje ji vlastní třídou.
 */

/* =====================================================================
   Společné dovětky pod mřížkou (používá víc blokových sekcí)
   ===================================================================== */

.mw-cards__outro,
.mw-cards__cta {
  margin: clamp(28px, 3vw, 44px) 0 0;
}

.mw-cards__outro {
  max-width: 60ch;
}

/* =====================================================================
   BLOK 02 — Hero
   ===================================================================== */

.mw-hero {
  position: relative;
  overflow: hidden;
}

.mw-hero__grid {
  display: grid;
  gap: clamp(32px, 4vw, 56px);
  align-items: center;
  grid-template-columns: 1fr;
}

@media (min-width: 1100px) {
  .mw-hero__grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
    gap: clamp(40px, 4vw, 72px);
  }
}

.mw-hero__text {
  display: grid;
  gap: 22px;
  align-content: start;
}

.mw-hero__text .mw-eyebrow {
  margin-bottom: 0;
}

.mw-hero__actions {
  margin-top: 6px;
}

.mw-hero__microproof {
  max-width: 46ch;
}

.mw-hero__media {
  position: relative;
}

/* Modro-fialová záře za produktem. Statická, nepulzuje — blueprint
   zakazuje nekonečné svítící koule. */
.mw-hero__glow {
  position: absolute;
  z-index: 0;
  inset: -18% -12% 8% -8%;
  background: radial-gradient(
    58% 58% at 62% 34%,
    rgba(139, 92, 246, 0.3),
    rgba(37, 99, 235, 0.16) 45%,
    transparent 72%
  );
  filter: blur(28px);
  pointer-events: none;
}

.mw-hero__shot {
  position: relative;
  z-index: 1;
}

/* Neutrální plocha, dokud není skutečný screenshot. Nikdy se sem
   nekreslí napodobenina rozhraní. */
.mw-shot__placeholder {
  display: grid;
  place-items: center;
  aspect-ratio: 16 / 10;
  padding: 24px;
  background: var(--mw-surface-2);
  color: var(--mw-text-muted);
  font-size: var(--mw-fs-small);
  text-align: center;
}

/* Na mobilu jsou to normální karty pod screenshotem. Teprve na desktopu
   se překryjí přes roh — jinak by na malé šířce zakrývaly produkt. */
.mw-hero__cards {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.mw-hero__card {
  display: grid;
  gap: 3px;
  padding: 12px 14px;
  background: var(--mw-surface-2);
  border: var(--mw-border-w) solid var(--mw-border);
  border-radius: var(--mw-radius-card);
  box-shadow: var(--mw-shadow-card);
}

.mw-hero__card-value {
  font-size: var(--mw-fs-h3);
  font-weight: var(--mw-fw-h1);
  line-height: 1.1;
  letter-spacing: var(--mw-ls-tight);
  color: var(--mw-text);
  font-variant-numeric: tabular-nums;
}

.mw-hero__card-label {
  font-size: var(--mw-fs-small);
  line-height: 1.35;
  color: var(--mw-text-muted);
}

@media (min-width: 1100px) {
  .mw-hero__cards {
    position: absolute;
    z-index: 2;
    left: -28px;
    bottom: -22px;
    width: min(340px, 62%);
    grid-template-columns: 1fr;
    margin: 0;
  }

  .mw-hero__card {
    box-shadow: var(--mw-shadow-hover);
  }
}

/* =====================================================================
   BLOK 03 — Proof strip
   ===================================================================== */

.mw-proof {
  display: grid;
  gap: var(--mw-grid-gap);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  list-style: none;
}

@media (min-width: 1100px) {
  .mw-proof {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.mw-proof__item {
  gap: 8px;
}

.mw-proof__icon {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  margin-bottom: 4px;
  border-radius: var(--mw-radius-sm);
  background: var(--mw-nav-soft);
  color: var(--mw-data);
}

.mw-proof__icon svg {
  width: 21px;
  height: 21px;
}

.mw-proof__title {
  font-size: var(--mw-fs-body);
  font-weight: var(--mw-fw-med);
  color: var(--mw-text);
}

.mw-proof__metric {
  font-size: var(--mw-fs-small);
  font-weight: var(--mw-fw-med);
  color: var(--mw-cta);
}

.mw-proof__text {
  font-size: var(--mw-fs-small);
  color: var(--mw-text-muted);
}

/* =====================================================================
   BLOK 04 — Problém a diagram chaos → OS
   ===================================================================== */

.mw-problems {
  display: grid;
  gap: 10px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.mw-problems__item {
  padding: 14px 18px;
  border-left: 3px solid var(--mw-cta);
  border-radius: 0 var(--mw-radius-sm) var(--mw-radius-sm) 0;
  background: var(--mw-surface-2);
  font-size: var(--mw-fs-lead);
  color: var(--mw-text);
}

/* Diagram je HTML/CSS, ne bitmapa — na mobilu se přelije do svislého toku. */
.mw-flowdia {
  display: grid;
  gap: 18px;
  align-items: center;
  padding: clamp(20px, 3vw, 34px);
  background: var(--mw-surface-1);
  border: var(--mw-border-w) solid var(--mw-border);
  border-radius: var(--mw-radius-panel);
}

.mw-flowdia__sources {
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  list-style: none;
}

.mw-flowdia__source {
  padding: 11px 12px;
  border: var(--mw-border-w) dashed var(--mw-border-strong);
  border-radius: var(--mw-radius-sm);
  font-size: var(--mw-fs-small);
  color: var(--mw-text-muted);
  text-align: center;
}

/* Šipka je jen tvar, obsah nese text vedle. */
.mw-flowdia__arrow {
  display: block;
  justify-self: center;
  width: 2px;
  height: 34px;
  background: linear-gradient(180deg, var(--mw-border-strong), var(--mw-cta));
  position: relative;
}

.mw-flowdia__arrow::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -1px;
  width: 9px;
  height: 9px;
  border-right: 2px solid var(--mw-cta);
  border-bottom: 2px solid var(--mw-cta);
  transform: translate(-50%, 0) rotate(45deg);
}

.mw-flowdia__target {
  display: grid;
  gap: 4px;
  padding: 20px;
  border-radius: var(--mw-radius-card);
  background: var(--mw-bg);
  border: var(--mw-border-w) solid var(--mw-cta);
  text-align: center;
}

.mw-flowdia__target strong {
  font-size: var(--mw-fs-h3);
  letter-spacing: var(--mw-ls-tight);
}

.mw-flowdia__target span {
  font-size: var(--mw-fs-small);
  color: var(--mw-text-muted);
}

/* =====================================================================
   BLOK 05 — Dashboard jako důkaz
   ===================================================================== */

.mw-dashboard__frame {
  position: relative;
}

.mw-dashboard__placeholder {
  aspect-ratio: 16 / 9;
}

/* Body přes obrázek jen na desktopu. Na mobilu by drobné tečky přes UI
   nešlo trefit ani přečíst — tam zůstane jen číslovaný seznam pod ním. */
.mw-dashboard__spot {
  display: none;
}

@media (min-width: 1100px) {
  .mw-dashboard__spot {
    display: grid;
    position: absolute;
    place-items: center;
    width: 32px;
    height: 32px;
    margin: -16px 0 0 -16px;
    border-radius: var(--mw-radius-pill);
    background: var(--mw-cta);
    color: var(--mw-cta-text);
    font-size: var(--mw-fs-small);
    font-weight: var(--mw-fw-bold, 650);
    box-shadow: 0 0 0 6px rgba(255, 38, 117, 0.22);
  }
}

.mw-callouts {
  display: grid;
  gap: var(--mw-grid-gap);
  grid-template-columns: 1fr;
  margin: clamp(28px, 3vw, 44px) 0 0;
  padding: 0;
  list-style: none;
}

@media (min-width: 768px) {
  .mw-callouts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1100px) {
  .mw-callouts {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.mw-callouts__item {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 12px;
  align-items: start;
}

.mw-callouts__num {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: var(--mw-radius-pill);
  background: var(--mw-cta-soft);
  color: var(--mw-cta);
  font-size: var(--mw-fs-small);
  font-weight: var(--mw-fw-med);
}

.mw-callouts__title {
  display: block;
  color: var(--mw-text);
}

.mw-callouts__text {
  display: block;
  font-size: var(--mw-fs-small);
  color: var(--mw-text-muted);
}

.mw-dashboard__actions {
  justify-content: center;
  margin-top: clamp(28px, 3vw, 40px);
}

/* =====================================================================
   BLOK 06 / 21 — Mřížka karet
   ===================================================================== */

/* Příklad z praxe je vidět rovnou — na dotykovém displeji hover neexistuje. */
.mw-card__example {
  margin: 4px 0 0;
  padding-top: 12px;
  border-top: var(--mw-border-w) solid var(--mw-border);
  font-size: var(--mw-fs-small);
  color: var(--mw-text-muted);
}

.mw-card__example-label {
  display: block;
  margin-bottom: 3px;
  font-weight: var(--mw-fw-med);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--mw-data);
}

/* =====================================================================
   BLOK 07 — Procesní mapa
   ===================================================================== */

/* Na mobilu svislá timeline, na desktopu vodorovná mapa. Jedno HTML. */
.mw-flow {
  display: grid;
  gap: 10px;
  grid-template-columns: 1fr;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: none;
}

@media (min-width: 1100px) {
  .mw-flow {
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 8px;
  }
}

.mw-flow__node {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  height: 100%;
  padding: 14px 16px;
  background: var(--mw-surface-1);
  border: var(--mw-border-w) solid var(--mw-border);
  border-radius: var(--mw-radius-card);
  transition: border-color var(--mw-motion-fast) var(--mw-ease),
    transform var(--mw-motion-fast) var(--mw-ease);
}

a.mw-flow__node:hover {
  transform: translateY(-3px);
  border-color: var(--mw-border-strong);
}

@media (min-width: 1100px) {
  .mw-flow__node {
    grid-template-columns: 1fr;
    gap: 8px;
    text-align: center;
    justify-items: center;
  }
}

.mw-flow__num {
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border-radius: var(--mw-radius-pill);
  font-size: var(--mw-fs-small);
  font-weight: var(--mw-fw-med);
  /* Barvu čísla nese varianta uzlu, viz níže. */
  background: var(--mw-surface-3);
  color: var(--mw-text-muted);
}

.mw-flow__label {
  font-size: var(--mw-fs-small);
  font-weight: var(--mw-fw-med);
  color: var(--mw-text);
  line-height: 1.3;
}

/* Význam uzlu nese barva čísla i horní hrana. Dominuje modrá a magenta,
   pomocné jsou cyan a zelená — přesně podle pravidla použití barev. */
.mw-flow__node--nav .mw-flow__num {
  background: var(--mw-nav-soft);
  color: var(--mw-data);
}

.mw-flow__node--data .mw-flow__num {
  background: var(--mw-data-soft);
  color: var(--mw-data);
}

.mw-flow__node--ai .mw-flow__num {
  background: var(--mw-ai-soft);
  color: var(--mw-ai);
}

.mw-flow__node--success .mw-flow__num {
  background: var(--mw-success-soft);
  color: var(--mw-success);
}

.mw-flow__example {
  margin-top: clamp(24px, 3vw, 40px);
}

.mw-flow__example-text {
  max-width: none;
}

/* =====================================================================
   Sdílené uvnitř feature_split
   ===================================================================== */

.mw-split__chips,
.mw-split__aside,
.mw-split__cta {
  margin-top: 24px;
}

.mw-split__cta {
  margin-bottom: 0;
}

/* Statické anotace vedle obrázku — čitelnější než hover. */
.mw-notes {
  display: grid;
  gap: 14px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.mw-notes__item {
  padding-left: 16px;
  border-left: 2px solid var(--mw-border-strong);
}

.mw-notes__title {
  display: block;
  color: var(--mw-text);
}

.mw-notes__text {
  display: block;
  font-size: var(--mw-fs-small);
  color: var(--mw-text-muted);
}

.mw-statuses {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.mw-statuses__item {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

/* ---- Accordion (bloky 10 a 25) ---- */

.mw-accordion {
  display: grid;
  gap: 8px;
}

.mw-accordion__item {
  background: var(--mw-surface-1);
  border: var(--mw-border-w) solid var(--mw-border);
  border-radius: var(--mw-radius-card);
}

.mw-accordion__summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: var(--mw-tap);
  padding: 14px 20px;
  font-weight: var(--mw-fw-med);
  color: var(--mw-text);
  cursor: pointer;
  list-style: none;
}

.mw-accordion__summary::-webkit-details-marker {
  display: none;
}

/* Znaménko je pseudoprvek s pevnou šířkou, takže otevření nemění výšku. */
.mw-accordion__summary::after {
  content: "+";
  flex: none;
  width: 20px;
  font-size: 1.4rem;
  font-weight: var(--mw-fw-normal);
  line-height: 1;
  text-align: center;
  color: var(--mw-text-muted);
}

.mw-accordion__item[open] .mw-accordion__summary::after {
  content: "\2212";
}

.mw-accordion__body {
  padding: 0 20px 18px;
}

/* =====================================================================
   BLOK 18 — KPI
   ===================================================================== */

.mw-kpi {
  gap: 14px;
}

.mw-kpi__question {
  font-size: var(--mw-fs-body);
  font-weight: var(--mw-fw-med);
  color: var(--mw-text);
}

.mw-kpi__chart {
  display: grid;
  gap: 10px;
}

.mw-kpi__row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 4px 12px;
  align-items: center;
}

.mw-kpi__label {
  font-size: var(--mw-fs-small);
  color: var(--mw-text-muted);
}

.mw-kpi__value {
  font-size: var(--mw-fs-small);
  font-weight: var(--mw-fw-med);
  color: var(--mw-text);
  font-variant-numeric: tabular-nums;
  text-align: right;
}

.mw-kpi__bar {
  grid-column: 1 / -1;
  display: block;
  height: 8px;
  border-radius: var(--mw-radius-pill);
  background: var(--mw-surface-3);
  overflow: hidden;
}

/* Šířku nese inline styl z dat, barvu třída z palety. Osa ani rozložení
   se při odhalení nemění — animuje se jen transform. */
.mw-kpi__fill {
  display: block;
  height: 100%;
  border-radius: inherit;
  transform-origin: left center;
  transition: transform var(--mw-motion-slow) var(--mw-ease);
}

.mw-js .mw-reveal .mw-kpi__fill {
  transform: scaleX(0);
}

.mw-js .mw-reveal.is-visible .mw-kpi__fill {
  transform: scaleX(1);
}

.mw-kpi__fill--data {
  background: var(--mw-data);
}

.mw-kpi__fill--nav {
  background: var(--mw-nav);
}

.mw-kpi__fill--success {
  background: var(--mw-success);
}

.mw-kpi__fill--warning {
  background: var(--mw-warning);
}

.mw-kpi__fill--ai {
  background: var(--mw-ai);
}

.mw-kpi__answer {
  margin: 0;
  padding-top: 12px;
  border-top: var(--mw-border-w) solid var(--mw-border);
  font-size: var(--mw-fs-small);
  color: var(--mw-text);
}

.mw-kpi__action {
  margin: 0;
  font-size: var(--mw-fs-small);
  color: var(--mw-data);
}

.mw-kpi__note {
  display: block;
  margin-top: 20px;
}

/* =====================================================================
   BLOK 19 — Timeline scénáře
   ===================================================================== */

.mw-timeline {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

@media (min-width: 1100px) {
  .mw-timeline {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: var(--mw-grid-gap);
  }
}

.mw-timeline__step {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 16px;
  padding-bottom: 22px;
}

@media (min-width: 1100px) {
  .mw-timeline__step {
    grid-template-columns: 1fr;
    gap: 10px;
    padding-bottom: 0;
  }
}

.mw-timeline__num {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: var(--mw-radius-pill);
  background: var(--mw-surface-2);
  border: var(--mw-border-w) solid var(--mw-border);
  color: var(--mw-text);
  font-weight: var(--mw-fw-med);
  font-variant-numeric: tabular-nums;
}

.mw-timeline__body {
  display: grid;
  gap: 8px;
  justify-items: start;
}

.mw-timeline__text {
  margin: 0;
  font-size: var(--mw-fs-small);
  color: var(--mw-text-muted);
}

.mw-timeline__outro {
  margin-top: clamp(24px, 3vw, 40px);
}

/* =====================================================================
   BLOK 20 — Případové studie
   ===================================================================== */

.mw-case__field {
  font-size: var(--mw-fs-eyebrow);
  font-weight: var(--mw-fw-med);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mw-data);
}

.mw-case__line {
  margin: 0;
  font-size: var(--mw-fs-small);
  color: var(--mw-text-muted);
}

.mw-case__label {
  display: block;
  font-weight: var(--mw-fw-med);
  color: var(--mw-text);
}

/* =====================================================================
   BLOK 22 — Cesta Akademie
   ===================================================================== */

.mw-path {
  display: grid;
  gap: 12px;
  grid-template-columns: 1fr;
  margin: 0;
  padding: 0;
  list-style: none;
}

@media (min-width: 768px) {
  .mw-path {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 1100px) {
  .mw-path {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
}

.mw-path__card {
  display: grid;
  gap: 6px;
  align-content: start;
  height: 100%;
  padding: 18px;
  background: var(--mw-surface-1);
  border: var(--mw-border-w) solid var(--mw-border);
  border-radius: var(--mw-radius-card);
  transition: transform var(--mw-motion-fast) var(--mw-ease),
    border-color var(--mw-motion-fast) var(--mw-ease);
}

a.mw-path__card:hover {
  transform: translateY(-3px);
  border-color: var(--mw-border-strong);
}

.mw-path__order {
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border-radius: var(--mw-radius-pill);
  background: var(--mw-cta-soft);
  color: var(--mw-cta);
  font-size: var(--mw-fs-small);
  font-weight: var(--mw-fw-med);
}

.mw-path__title {
  color: var(--mw-text);
  font-size: var(--mw-fs-body);
}

.mw-path__text {
  font-size: var(--mw-fs-small);
  color: var(--mw-text-muted);
}

/* =====================================================================
   BLOK 23 — Štít governance
   ===================================================================== */

.mw-shield {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.mw-shield__layer {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  padding: 18px 20px;
  background: var(--mw-surface-1);
  border: var(--mw-border-w) solid var(--mw-border);
  border-radius: var(--mw-radius-card);
}

/* Každá vrstva je o kousek užší — vzniká tvar štítu bez obrázku.
   Na mobilu odsazení odpadá, aby zbyla šířka na text. */
@media (min-width: 768px) {
  .mw-shield__layer:nth-child(2) {
    margin-inline: 5%;
  }

  .mw-shield__layer:nth-child(3) {
    margin-inline: 10%;
  }

  .mw-shield__layer:nth-child(4) {
    margin-inline: 15%;
  }
}

.mw-shield__order {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: var(--mw-radius-pill);
  background: var(--mw-success-soft);
  color: var(--mw-success);
  font-weight: var(--mw-fw-med);
}

.mw-shield__title {
  display: block;
  color: var(--mw-text);
}

.mw-shield__text {
  display: block;
  font-size: var(--mw-fs-small);
  color: var(--mw-text-muted);
}

/* =====================================================================
   BLOK 24 — Ceník
   ===================================================================== */

.mw-plan {
  position: relative;
  gap: 14px;
}

/* Doporučený plán má magenta rámeček. Šířka rámečku se nemění, jen barva,
   takže karty zůstanou stejně vysoké. */
.mw-plan--featured {
  border-color: var(--mw-cta);
}

.mw-plan__badge {
  align-self: start;
}

.mw-plan__for {
  margin: 0;
  font-size: var(--mw-fs-small);
  color: var(--mw-text-muted);
}

.mw-plan__price {
  margin: 0;
  padding-bottom: 14px;
  border-bottom: var(--mw-border-w) solid var(--mw-border);
}

.mw-plan__price strong {
  font-size: var(--mw-fs-h3);
  letter-spacing: var(--mw-ls-tight);
}

/* Nezveřejněná cena se nenahrazuje pomlčkou — je napsané, čím se určí. */
.mw-plan__price-note {
  font-size: var(--mw-fs-small);
  color: var(--mw-text-muted);
}

.mw-plan__features {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: var(--mw-fs-small);
  color: var(--mw-text-muted);
}

.mw-plan__features li {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 10px;
}

.mw-plan__features li::before {
  content: "";
  width: 7px;
  height: 7px;
  margin-top: 8px;
  border-radius: var(--mw-radius-pill);
  background: var(--mw-success);
}

/* CTA se drží u spodní hrany, aby byla u všech tří karet v jedné linii. */
.mw-plan__cta {
  margin-top: auto;
  padding-top: 6px;
}

.mw-plan__cta .mw-btn {
  width: 100%;
}

.mw-pricing__table {
  margin-top: clamp(28px, 3vw, 44px);
}

.mw-pricing__note {
  display: block;
  margin-top: 18px;
  max-width: 70ch;
}

/* =====================================================================
   BLOK 25 — FAQ
   ===================================================================== */

.mw-faq {
  max-width: 82ch;
}

/* =====================================================================
   BLOK 26 — Finální CTA
   ===================================================================== */

.mw-finalcta {
  background: linear-gradient(135deg, var(--mw-surface-1), var(--mw-bg) 62%);
  border-color: var(--mw-border-strong);
}

.mw-finalcta__grid {
  display: grid;
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
  grid-template-columns: 1fr;
}

@media (min-width: 1100px) {
  .mw-finalcta__grid {
    grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr);
  }
}

.mw-finalcta__lead {
  margin-top: 16px;
}

.mw-finalcta__actions {
  margin-top: 26px;
}

/* Karta s řetězcem proces → běh → důkaz. */
.mw-livecard {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.mw-livecard__node {
  display: grid;
  gap: 3px;
  position: relative;
  padding: 16px 18px;
  background: var(--mw-surface-2);
  border: var(--mw-border-w) solid var(--mw-border);
  border-radius: var(--mw-radius-card);
}

/* Spojnice mezi uzly. Jemné pulzování ukazuje směr toku; při reduce
   se zastaví, protože doba animace je pak nulová. */
.mw-livecard__node:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -10px;
  width: 2px;
  height: 10px;
  background: var(--mw-cta);
  opacity: 0.45;
  animation: mw-flowpulse 2.4s var(--mw-ease) infinite;
}

.mw-livecard__node:nth-child(2)::after {
  animation-delay: 0.6s;
}

@keyframes mw-flowpulse {
  0%, 100% { opacity: 0.25; }
  50% { opacity: 0.85; }
}

@media (prefers-reduced-motion: reduce) {
  .mw-livecard__node::after {
    animation: none;
  }
}

.mw-livecard__label {
  font-size: var(--mw-fs-eyebrow);
  font-weight: var(--mw-fw-med);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mw-text-muted);
}

.mw-livecard__value {
  color: var(--mw-text);
  font-weight: var(--mw-fw-med);
}
