/* Balík C1 — homepage above-the-fold (parity/ux/motion_v3_design.md,
   "Balík C1 — homepage nad ohyb"). Own file per that doc's "Pravidla pro
   vsechny baliky" ("Nove CSS/JS do vlastnich souboru... kvuli paralelnim
   agentum") — only src/routes/home.tsx loads this (Layout's hasHomeLive
   prop), never style.css directly.

   Covers: the hero's right-column live-call cards + RaceBar wrapper, the
   "{n} calls live" line, and the tool-question card grid's link styling.
   The proof row and how-it-works/year-by-year sections reuse existing
   .card-grid/.card/.stat-card classes from style.css unchanged. */

.v3-hero .hero-chart {
  display: flex;
  flex-direction: column;
}

.v3-live-panel {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.v3-live-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

@media (min-width: 560px) {
  .v3-live-cards {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  }
}

.v3-live-card {
  display: block;
  color: var(--text);
  text-decoration: none;
  transition: border-color 0.15s ease;
}

.v3-live-card:hover {
  border-color: var(--accent);
  text-decoration: none;
}

.v3-live-tier {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-dim);
  margin-bottom: 4px;
}

.v3-live-dir {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.v3-live-card .form-note {
  margin: 2px 0;
}

.v3-live-card .mc-race {
  margin-top: 10px;
}

.v3-live-cta {
  margin-top: 10px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent);
}

.v3-live-empty {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 120px;
}

.v3-live-count {
  margin: 0;
}

/* --- proof row -------------------------------------------------------- */

.v3-proof-row .stat-card .prob {
  min-height: 2.5rem;
}

.v3-proof-model-status {
  font-size: 1.3rem;
}
