/* syncOshow – styl Nette stránek (landing, login, dashboard). Dočasný, doladíme. */
:root {
	--bg: #0d0f14;
	--panel: #171a21;
	--panel2: #1f2530;
	--text: #e8eaed;
	--muted: #9aa3b2;
	--accent: #ff3366;
	--accent2: #4d7cff;
	--magenta: #c026d3;
	--ok: #2ec27e;
	--warn: #f5a623;
	--err: #ff5263;
	--border: #2a2f3a;
}

* { box-sizing: border-box; }
body {
	margin: 0;
	font-family: "Outfit", system-ui, -apple-system, "Segoe UI", sans-serif;
	background: var(--bg);
	color: var(--text);
	min-height: 100vh;
}

a { color: var(--accent2); text-decoration: none; }
a:hover { text-decoration: underline; }

.topbar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding: 0.75rem 1.25rem;
	background: var(--panel);
	border-bottom: 1px solid var(--border);
	position: sticky;
	top: 0;
	z-index: 10;
}
.brand { display: inline-flex; align-items: center; }
.brand:hover { text-decoration: none; }
.brand-logo { display: block; height: 30px; width: auto; }
.nav { display: flex; align-items: center; gap: 1rem; }
.nav a { color: var(--muted); }
.nav a:hover { color: var(--text); }
.nav-user { color: var(--text); font-weight: 600; }
.ctx-switch {
	background: var(--panel2);
	color: var(--text);
	border: 1px solid var(--border);
	border-radius: 8px;
	padding: 0.35rem 0.5rem;
	font-size: 0.85rem;
	max-width: 11rem;
}

/* Hamburger menu (mobil) – čisté CSS, bez JS: skrytý checkbox + label jako
   tlačítko, `:checked ~ .nav` rozbalí menu. Mimo mobilní @media je burger
   schovaný a topbar vypadá jako dřív. */
.nav-toggle { position: absolute; opacity: 0; pointer-events: none; }
.nav-burger { display: none; }

@media (max-width: 860px) {
	.topbar { flex-wrap: wrap; }
	.nav-burger {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		width: 2.4rem;
		height: 2.4rem;
		border-radius: 8px;
		border: 1px solid var(--border);
		background: var(--panel2);
		color: var(--text);
		font-size: 1.3rem;
		line-height: 1;
		cursor: pointer;
		order: 2;
	}
	.nav {
		order: 3;
		flex-basis: 100%;
		display: none;
		flex-direction: column;
		align-items: stretch;
		gap: 0.4rem;
		padding-top: 0.75rem;
	}
	.nav-toggle:checked ~ .nav { display: flex; }
	.nav a, .nav .btn { padding: 0.6rem 0.5rem; }
	.nav .ctx-switch { max-width: none; }
	.nav-user { padding: 0.6rem 0.5rem; }
}

.ctx-banner {
	background: rgba(245,166,35,0.15);
	border: 1px solid var(--warn);
	color: var(--warn);
	border-radius: 8px;
	padding: 0.7rem 1rem;
	margin-bottom: 1rem;
	font-weight: 600;
}
.ctx-banner a { color: var(--warn); text-decoration: underline; }

.container { max-width: 960px; margin: 0 auto; padding: 1.5rem 1.25rem 4rem; }
/* Přehledové tabulky (scénáře, uživatelé, firmy) – široké, aby se akce
   vešly vedle obsahu a nelámaly se do několika řádků. */
.container-wide { max-width: 1400px; }

@media (max-width: 600px) {
	.container { padding: 1rem 0.85rem 3rem; }
	.page-head { gap: 0.6rem; }
	.page-head h1 { font-size: 1.4rem; }
}

.btn {
	display: inline-block;
	padding: 0.5rem 1rem;
	border-radius: 8px;
	border: 1px solid transparent;
	font-weight: 600;
	cursor: pointer;
	font-size: 0.95rem;
}
.btn:hover { text-decoration: none; }
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { filter: brightness(1.1); }
.btn-secondary { background: var(--accent2); color: #fff; }
.btn-ghost { background: transparent; border-color: var(--border); color: var(--text); }
.btn-ghost:hover { background: var(--panel2); }
.btn-sm { padding: 0.3rem 0.6rem; font-size: 0.82rem; }
.btn-lg { padding: 0.8rem 1.6rem; font-size: 1.05rem; border-radius: 10px; }
.btn-danger { background: transparent; border-color: var(--err); color: var(--err); }
.btn-success { background: var(--ok); color: #06301d; }
.btn-success:hover { filter: brightness(1.1); }

/* Akce v tabulkách jen jako ikona – popis nese hlavička sloupce + title. */
.btn-icon { padding: 0.3rem 0.5rem; font-size: 1rem; line-height: 1.1; }

/* Zapnutá výhra v přehledu scénářů – výrazný zlatý badge (ne jen tečka). */
.btn-winner-on {
	background: linear-gradient(135deg, #ffd84d, #f5a623);
	border-color: #f5a623;
	color: #3a2a00;
	font-weight: 800;
	box-shadow: 0 0 0 1px rgba(245,166,35,0.4), 0 2px 8px rgba(245,166,35,0.35);
}
.btn-winner-on:hover { filter: brightness(1.08); }

/* Show bez konce → losování nezpůsobilé: tlačítko zašedlé (klik ale otevře stránku se statistikou + vysvětlením). */
.btn-winner-na { opacity: 0.4; }
.btn-winner-na:hover { opacity: 0.6; }

/* -------- Stránka „Výhra" -------- */
.winner-warn {
	background: rgba(245,166,35,0.14);
	border: 1px solid var(--warn);
	color: #f0c474;
	border-radius: 10px;
	padding: 1rem 1.2rem;
	margin: 1rem 0 1.5rem;
	line-height: 1.5;
}
.winner-warn strong { color: var(--warn); }

.winner-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 1.25rem;
	align-items: start;
}
.winner-card { max-width: none; margin: 0; }
.winner-card-wide { grid-column: 1 / -1; }
.winner-card h2 { margin-top: 0; font-size: 1.15rem; }

/* Zašednutí nastavení, když show nemá konec. */
.winner-card.is-disabled { opacity: 0.55; }
.winner-card.is-disabled input,
.winner-card.is-disabled .btn { pointer-events: none; }

.stats { list-style: none; padding: 0; margin: 0 0 1.2rem; }
.stats li { display: flex; justify-content: space-between; padding: 0.35rem 0; border-bottom: 1px solid var(--border); }
.stats li span { color: var(--muted); }

.verify-ok  { color: var(--ok);  font-weight: 600; margin-top: 0.8rem; }
.verify-bad { color: var(--err); font-weight: 600; margin-top: 0.8rem; }

/* -------- Post-show report -------- */
.report-head-actions { display: flex; gap: 0.6rem; flex-wrap: wrap; }
.report-intro { margin-bottom: 1.5rem; }
.report-big-number { font-size: 3rem; font-weight: 800; line-height: 1.1; }
.report-big-label { margin: 0 0 1.2rem; }

/* Tisk reportu: schovat aplikační chrome, světlé pozadí (šetří inkoust). */
@media print {
	.topbar, .flashes, .ctx-banner, .report-head-actions, .btn { display: none !important; }
	body, .container { background: #fff !important; color: #000 !important; }
	.card, .winner-card {
		background: #fff !important; color: #000 !important;
		border: 1px solid #bbb !important; box-shadow: none !important;
		break-inside: avoid;
	}
	.winner-card h2, .stats li strong, .report-big-number { color: #000 !important; }
	.stats li span, .muted { color: #555 !important; }
	.stats li { border-bottom-color: #ddd !important; }
}

.hero { text-align: center; padding: 3rem 1rem 2rem; }
.hero h1 { font-size: 2.4rem; margin: 0 0 0.5rem; }
.hero-title { display: flex; align-items: center; justify-content: center; margin: 0 0 0.5rem; }
.hero-logo { display: block; height: 84px; width: auto; max-width: 100%; }
.hero p { color: var(--muted); font-size: 1.1rem; max-width: 640px; margin: 0.4rem auto; }
.hero .cta { margin-top: 1.5rem; display: flex; gap: 0.75rem; justify-content: center; flex-wrap: wrap; }
.tagline {
	margin: 1.4rem auto 0;
	font-weight: 800;
	font-size: 1.05rem;
	letter-spacing: 0.22em;
	background: linear-gradient(90deg, var(--accent), var(--accent2));
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.features { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; margin-top: 2.5rem; }
@media (max-width: 560px) { .features { grid-template-columns: 1fr; } }
.feature { background: var(--panel); border: 1px solid var(--border); border-radius: 12px; padding: 1.25rem; }
.feature h3 { margin: 0 0 0.4rem; }
.feature p { color: var(--muted); margin: 0; font-size: 0.95rem; }

.card { background: var(--panel); border: 1px solid var(--border); border-radius: 12px; padding: 1.5rem; max-width: 460px; margin: 2rem auto; }
.card h1 { margin-top: 0; }
.card .muted { color: var(--muted); font-size: 0.9rem; }

/* formuláře */
form .form-group, form p { margin-bottom: 1rem; }
label { display: block; margin-bottom: 0.3rem; color: var(--muted); font-size: 0.9rem; }
input[type=text], input[type=email], input[type=password] {
	width: 100%;
	padding: 0.55rem 0.7rem;
	background: var(--panel2);
	border: 1px solid var(--border);
	border-radius: 8px;
	color: var(--text);
	font-size: 1rem;
}
input[type=checkbox] { margin-right: 0.4rem; }
.company-fields { border-left: 2px solid var(--accent2); padding-left: 1rem; margin: 1rem 0; }

/* tabulka scénářů */
table { width: auto; max-width: 100%; border-collapse: collapse; margin-top: 1rem; }
th, td { text-align: left; padding: 0.6rem 0.5rem; border-bottom: 1px solid var(--border); vertical-align: middle; }
th { color: var(--muted); font-weight: 600; font-size: 0.85rem; }
/* Každá akce má vlastní sloupec (`<td class="act">`) – nativní table layout
   spočítá šířku sloupce podle jeho vlastního obsahu (auto layout), takže
   tlačítko drží šířku podle popisku (ne podle nejdelšího sourozence) a stejná
   akce sedí ve stejné pozici napříč všemi řádky. Prázdné `<td>` (akce pro daný
   stav neplatí) drží sloupec na místě, jen beze obsahu. */
td.act { white-space: nowrap; text-align: center; }
/* Vizuální oddělení skupin sloupců (sdílení / správa scénáře). */
td.act-group-start, th.act-group-start { border-left: 1px solid var(--border); }
td.act .muted { font-size: 0.85rem; white-space: normal; }
/* Sloupec, který má spolknout volnou šířku tabulky (název scénáře) – omezený,
   ať extrémně dlouhý název nebo přibývající akční sloupce nenafouknou tabulku
   přes okraj kontejneru. */
.col-grow { width: 100%; max-width: 24rem; }
.col-grow strong { display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.cell-nowrap { white-space: nowrap; }

/* Široké tabulky (hodně akčních sloupců) na mobilu: vodorovný scroll uvnitř
   wrapperu, zbytek stránky se neláme ani nezoomuje. */
.table-scroll { overflow-x: auto; }

.badge { display: inline-block; padding: 0.15rem 0.55rem; border-radius: 999px; font-size: 0.78rem; font-weight: 600; }
.badge-draft { background: #3a3f4b; color: var(--muted); }
.badge-published { background: rgba(46,194,126,0.18); color: var(--ok); }
.badge-deactivated { background: rgba(245,82,99,0.18); color: var(--err); }
/* Doběhlá publikovaná show: šedý text, zelené pozadí zůstává, + samostatná pilulka „Skončeno". */
.badge-published.is-ended { color: var(--muted); }
.badge-ended { background: #3a3f4b; color: var(--muted); margin-left: 0.35rem; }

/* Trvalý tag show (stálý odkaz na vytištěných QR / vstupenkách). */
.tag-pill {
	display: inline-block;
	padding: 0.1rem 0.5rem;
	border-radius: 999px;
	background: #3a3f4b;
	color: var(--muted);
	font-size: 0.72rem;
	font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
}

.show-unavailable {
	background: var(--err);
	color: #fff;
	border-radius: 12px;
	padding: 1.1rem 1.4rem;
	margin: 0 0 1.5rem;
	font-size: 1.15rem;
	text-align: center;
	box-shadow: 0 6px 24px rgba(255, 82, 99, 0.35);
}
.show-unavailable strong { display: block; font-size: 1.35rem; margin-bottom: 0.25rem; }
.show-unavailable span { opacity: 0.92; font-size: 0.98rem; }

.flashes { margin-bottom: 1rem; }
.flash { padding: 0.7rem 1rem; border-radius: 8px; margin-bottom: 0.5rem; }
.flash-success { background: rgba(46,194,126,0.15); color: var(--ok); }
.flash-info { background: rgba(77,124,255,0.15); color: var(--accent2); }
.flash-warning { background: rgba(245,166,35,0.15); color: var(--warn); }
.flash-error { background: rgba(255,82,99,0.15); color: var(--err); }

.muted a.active { color: var(--text); font-weight: 700; text-decoration: underline; }

.copy-form { display: inline-flex; gap: 0.3rem; align-items: center; }
.copy-form select {
	background: var(--panel2);
	color: var(--text);
	border: 1px solid var(--border);
	border-radius: 8px;
	padding: 0.3rem 0.4rem;
	font-size: 0.82rem;
	max-width: 12rem;
}

.page-head { display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.empty { color: var(--muted); padding: 2rem 0; text-align: center; }
code.link { background: var(--panel2); padding: 0.2rem 0.45rem; border-radius: 6px; word-break: break-all; }

/* ============================================================
   ÚVODNÍ STRÁNKA (one-page landing) — .lp-* třídy
   Full-bleed sekce; vizuální jazyk sdílený s business/prezentace.html.
   ============================================================ */
html { scroll-behavior: smooth; }

/* Home přepíná container do full-width režimu (sekce si řeší vlastní šířku). */
.container-landing { max-width: none; padding: 0; }
/* Prázdný .flashes má nulovou výšku (0 padding), nepřidává mezeru nad hero. */
.container-landing .flashes { max-width: 1160px; margin: 0 auto; padding: 0 1.25rem; }
.container-landing .flash:first-child { margin-top: 1rem; }
.container-landing .ctx-banner { max-width: 1160px; margin: 1rem auto; }
.lp-shell { max-width: 1160px; margin: 0 auto; padding: 1.25rem; }

.lp-section { padding: 7rem 1.5rem; }
.lp-section-alt { background: var(--panel); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.section-inner { max-width: 1160px; margin: 0 auto; }

/* Nadřazený štítek nad nadpisem (eyebrow) — jako na inspiračním webu. */
.lp-eyebrow {
	text-transform: uppercase;
	letter-spacing: 0.2em;
	font-size: 0.8rem;
	font-weight: 800;
	color: var(--accent);
	text-align: center;
	margin: 0 0 1rem;
}
.lp-eyebrow-left { text-align: left; }

.lp-h2 {
	font-size: clamp(1.9rem, 3.8vw, 2.9rem);
	text-align: center;
	margin: 0 auto 3rem;
	line-height: 1.15;
	max-width: 24ch;
}
.lp-h2-left { text-align: left; margin: 0 0 1.4rem; }
.lp-lead {
	color: var(--muted);
	font-size: clamp(1.05rem, 1.7vw, 1.3rem);
	line-height: 1.65;
	max-width: 52rem;
	margin: 2.5rem auto 3rem;
	text-align: center;
}
.lp-lead strong { color: var(--text); }
.lp-lead-sm { font-size: 0.98rem; margin-top: 1.5rem; margin-bottom: 0; }
.lp-lead-left { text-align: left; margin: 0; }

/* -------- HERO -------- */
.lp-hero {
	position: relative;
	min-height: calc(100vh - 60px);
	min-height: calc(100dvh - 60px);
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 6rem 1.5rem;
	overflow: hidden;
}
.lp-hero-bg {
	position: absolute; inset: 0; z-index: 0;
	background-color: var(--accent2);
	transition: background-color 0.25s linear;
}
.lp-hero-dim {
	position: absolute; inset: 0; z-index: 1;
	background: radial-gradient(ellipse at center, rgba(13,15,20,0.5), rgba(13,15,20,0.92));
}
.lp-hero-inner { position: relative; z-index: 2; max-width: 48rem; }
.lp-hero-inner .hero-logo { height: clamp(60px, 10vh, 96px); margin-bottom: 2rem; }
.lp-hero-title {
	font-size: clamp(2.4rem, 6.2vw, 4.6rem);
	line-height: 1.08;
	margin: 0 0 1.4rem;
	text-shadow: 0 2px 24px rgba(0,0,0,0.45);
}
.lp-hero-sub {
	color: #dde1e8;
	font-size: clamp(1.1rem, 2vw, 1.5rem);
	line-height: 1.55;
	margin: 0 auto;
	max-width: 40rem;
	text-shadow: 0 1px 12px rgba(0,0,0,0.5);
}
.lp-hero-sub strong { color: #fff; }
.lp-hero .tagline { margin-top: 2rem; }
.lp-cta { margin-top: 2.6rem; display: flex; gap: 0.85rem; justify-content: center; flex-wrap: wrap; }
.lp-hero-note { color: #c3cad6; font-size: 0.9rem; margin-top: 2.4rem; opacity: 0.85; }
/* Video z akce – nad živým pozadím, pod ztmavením. Skryté, dokud se nedá přehrát. */
.lp-hero-video {
	position: absolute; inset: 0; z-index: 0;
	width: 100%; height: 100%; object-fit: cover;
	opacity: 0; transition: opacity 0.6s ease; pointer-events: none;
}
.lp-hero-video.is-ready { opacity: 1; }
/* Tlačítko „přehrát s hudbou" – jemná pilulka pod hero poznámkou. */
.lp-sound-toggle {
	margin-top: 1.1rem; background: rgba(255,255,255,0.08);
	border: 1px solid rgba(255,255,255,0.22); color: #eef1f6;
	border-radius: 999px; padding: 0.5rem 1.2rem; font: inherit; font-size: 0.9rem;
	cursor: pointer; transition: background 0.15s ease, border-color 0.15s ease;
}
.lp-sound-toggle:hover { background: rgba(255,255,255,0.16); border-color: rgba(255,255,255,0.4); }
.lp-sound-toggle[aria-pressed="true"] { background: rgba(77,124,255,0.28); border-color: var(--accent2); }
/* Dokud si fanoušek hudbu nepustí (aria-pressed="false"), tlačítko se nenápadně
   potřese, aby na sebe upozornilo – přestane, jakmile hudba hraje. */
.lp-sound-toggle[aria-pressed="false"] { animation: lpShake 2.6s ease-in-out infinite; }
@keyframes lpShake {
	0%, 100% { transform: rotate(0deg); }
	4% { transform: rotate(-8deg); }
	8% { transform: rotate(7deg); }
	12% { transform: rotate(-6deg); }
	16% { transform: rotate(4deg); }
	20% { transform: rotate(0deg); }
}
@media (prefers-reduced-motion: reduce) {
	.lp-sound-toggle { animation: none !important; }
}

/* -------- Stepper „Jak to funguje" (spojené číslované kroky) -------- */
.lp-stepper {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
	position: relative;
	max-width: 62rem;
	margin: 0 auto;
}
/* Spojnice za kolečky (mezi středy prvního a posledního kroku). */
.lp-stepper::before {
	content: "";
	position: absolute;
	top: 1.75rem;
	left: 16.66%;
	right: 16.66%;
	height: 2px;
	background: linear-gradient(90deg, var(--accent2), #7b5cff);
	opacity: 0.5;
	z-index: 0;
}
.lp-stepitem { position: relative; z-index: 1; text-align: center; padding: 0 0.5rem; }
.lp-stepcircle {
	display: flex; align-items: center; justify-content: center;
	width: 3.5rem; height: 3.5rem; border-radius: 50%; margin: 0 auto 1.3rem;
	font-weight: 800; font-size: 1.35rem; color: #fff;
	background: linear-gradient(135deg, var(--accent2), #7b5cff);
	box-shadow: 0 10px 26px rgba(77,124,255,0.4);
}
.lp-stepitem h3 { margin: 0 0 0.5rem; font-size: 1.2rem; }
.lp-stepitem p { color: var(--muted); margin: 0; line-height: 1.6; }

/* -------- Blok „AI choreografie na skladbu" (vlna hudby) -------- */
.lp-wave-band {
	display: grid;
	grid-template-columns: 1.05fr 1fr;
	gap: 3rem;
	align-items: center;
}
.lp-pills { display: flex; flex-wrap: wrap; gap: 0.55rem; margin-top: 1.8rem; }
.lp-pill {
	background: rgba(77,124,255,0.12);
	border: 1px solid rgba(77,124,255,0.35);
	color: #bcd0ff;
	border-radius: 999px;
	padding: 0.4rem 0.95rem;
	font-size: 0.85rem;
	font-weight: 600;
}
.lp-wave-visual {
	position: relative;
	background: linear-gradient(135deg, #141a28, #0d0f14);
	border: 1px solid var(--border);
	border-radius: 20px;
	padding: 1.5rem;
	overflow: hidden;
	min-height: 220px;
	display: flex; align-items: center;
	box-shadow: 0 20px 50px rgba(0,0,0,0.35);
}
.lp-wave-svg { width: 100%; height: 160px; display: block; }
.lp-wave-svg g { animation: lpWave 7s linear infinite; }
.lp-wave-svg g.w2 { animation-duration: 5s; }
.lp-wave-svg g.w3 { animation-duration: 9.5s; }
@keyframes lpWave { to { transform: translateX(-400px); } }
@media (prefers-reduced-motion: reduce) { .lp-wave-svg g { animation: none; } }

/* -------- Diferenciátory (karty s horním gradientem + barevná ikona) -------- */
.lp-diffs {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1.6rem;
	max-width: 62rem;
	margin: 0 auto;
}
.lp-diff {
	position: relative;
	overflow: hidden;
	background: var(--panel2);
	border: 1px solid var(--border);
	border-radius: 16px;
	padding: 2rem 1.8rem;
	text-align: left;
	transition: transform 0.15s ease, border-color 0.15s ease;
}
.lp-diff::before {
	content: "";
	position: absolute; top: 0; left: 0; right: 0; height: 3px;
	background: linear-gradient(90deg, var(--accent2), #38e0ff, #7b5cff);
}
.lp-diff:hover { transform: translateY(-3px); border-color: rgba(77,124,255,0.4); }
.lp-icontile {
	display: inline-flex; align-items: center; justify-content: center;
	width: 3.4rem; height: 3.4rem; border-radius: 14px; margin-bottom: 1.2rem;
	background: linear-gradient(135deg, rgba(77,124,255,0.2), rgba(56,224,255,0.12));
	border: 1px solid rgba(77,124,255,0.28);
}
.lp-icontile svg { width: 1.7rem; height: 1.7rem; }
.lp-diff h3 { margin: 0 0 0.5rem; font-size: 1.2rem; }
.lp-diff p { color: var(--muted); margin: 0; line-height: 1.6; }
.lp-diff strong { color: var(--text); }

/* -------- Telefony (živá ukázka) — 7 ks, nesouměrně rozházené -------- */
.lp-phones {
	display: flex; gap: 1.6vw; align-items: center; justify-content: center;
	flex-wrap: wrap; margin-top: 1rem; min-height: 300px;
}
.lp-phones .phone {
	width: clamp(64px, 8vw, 108px); aspect-ratio: 9 / 19; border-radius: 18px;
	border: 3px solid #2c3140; background: #000; padding: 6px; position: relative;
	box-shadow: 0 12px 40px rgba(0,0,0,0.6);
}
.lp-phones .phone::before {
	content: ""; position: absolute; top: 10px; left: 50%; transform: translateX(-50%);
	width: 34%; height: 5px; border-radius: 3px; background: #2c3140;
}
.lp-phones .screen {
	width: 100%; height: 100%; border-radius: 11px; transition: background-color 0.25s linear;
	display: flex; align-items: flex-end; justify-content: center; overflow: hidden;
	background: #111;
}
.lp-phones .phase {
	font-size: 0.5rem; font-weight: 700; color: rgba(255,255,255,0.92);
	text-shadow: 0 1px 4px rgba(0,0,0,0.6); padding-bottom: 12%; letter-spacing: 0.04em;
	text-transform: uppercase;
}
/* Nesouměrné svislé posuny + jemná rotace (rozházení). */
.lp-phones .phone:nth-child(1) { transform: translateY(14px) rotate(-4deg); }
.lp-phones .phone:nth-child(2) { transform: translateY(-22px) rotate(3deg); }
.lp-phones .phone:nth-child(3) { transform: translateY(28px) rotate(-2deg); }
.lp-phones .phone:nth-child(4) { transform: translateY(-6px) rotate(2deg); z-index: 2; }
.lp-phones .phone:nth-child(5) { transform: translateY(20px) rotate(-3deg); }
.lp-phones .phone:nth-child(6) { transform: translateY(-18px) rotate(4deg); }
.lp-phones .phone:nth-child(7) { transform: translateY(10px) rotate(-2deg); }

/* -------- Pro koho (segmentace: tři kanály) -------- */
.lp-audiences {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.6rem;
	max-width: 66rem;
	margin: 0 auto;
}
.lp-audience {
	display: flex; flex-direction: column; align-items: flex-start;
	background: var(--panel2); border: 1px solid var(--border); border-radius: 16px;
	padding: 2rem 1.8rem; text-align: left;
	transition: transform 0.15s ease, border-color 0.15s ease;
}
.lp-audience:hover { transform: translateY(-3px); border-color: rgba(192,38,211,0.45); }
.lp-audience-icon { font-size: 2rem; margin-bottom: 1rem; }
.lp-audience h3 { margin: 0 0 0.5rem; font-size: 1.2rem; }
.lp-audience-slogan { margin: 0 0 0.9rem; font-weight: 700; font-size: 1.02rem; color: var(--magenta); letter-spacing: 0.01em; }
.lp-audience p { color: var(--muted); margin: 0 0 1.4rem; line-height: 1.6; flex: 1; }
.lp-audience strong { color: var(--text); }

/* -------- Ceník -------- */
.lp-pricing { display: flex; gap: 1.6rem; flex-wrap: wrap; justify-content: center; align-items: stretch; }
.lp-plan {
	background: var(--panel2); border: 1px solid var(--border); border-radius: 16px;
	padding: 2rem 1.6rem; width: 17.5rem; text-align: left; position: relative;
}
.lp-plan-hot { border-color: var(--accent); box-shadow: 0 0 34px rgba(255,51,102,0.22); }
.lp-plan-flag {
	position: absolute; top: -0.8rem; left: 50%; transform: translateX(-50%);
	background: var(--accent); color: #fff; font-size: 0.72rem; font-weight: 700;
	padding: 0.22rem 0.85rem; border-radius: 999px; white-space: nowrap;
}
.lp-plan h3 { margin: 0; font-size: 1.35rem; }
.lp-plan-from { color: var(--muted); font-size: 0.85rem; margin: 0.5rem 0 0.1rem; }
.lp-plan-note { color: var(--muted); font-size: 0.85rem; margin: 1rem 0 0; }
.lp-plan-price { font-size: 1.9rem; font-weight: 800; margin-bottom: 1.2rem; }
.lp-plan-price small { font-size: 0.85rem; color: var(--muted); font-weight: 400; white-space: nowrap; }
.lp-plan ul { margin: 0; padding: 0; list-style: none; color: var(--muted); font-size: 0.92rem; line-height: 2; }
.lp-plan li.yes { color: var(--text); }
.lp-plan li.yes::before { content: "✔ "; color: var(--ok); }
.lp-plan li.no { opacity: 0.55; }
.lp-plan li.no::before { content: "✕ "; }
.lp-plan-table { width: 19.5rem; }
.lp-price-table { width: 100%; border-collapse: collapse; margin-top: 0.9rem; font-size: 1rem; }
.lp-price-table td { padding: 0.55rem 0.2rem; border-bottom: 1px solid var(--border); color: var(--muted); }
.lp-price-table tr:last-child td { border-bottom: none; }
.lp-price-table td:last-child { text-align: right; color: var(--text); font-variant-numeric: tabular-nums; }
.lp-price-table strong { font-size: 1.1rem; }
.lp-free { color: var(--ok); text-transform: uppercase; letter-spacing: 0.04em; }
/* -------- „Začněte zdarma" / cena na míru – vyčleněný akvizicní háček -------- */
.lp-riskcard {
	display: flex; gap: 2rem; align-items: center; flex-wrap: wrap; justify-content: space-between;
	max-width: 62rem; margin: 3rem auto 0; padding: 1.8rem 2rem;
	background: linear-gradient(135deg, rgba(46,194,126,0.14), rgba(77,124,255,0.1));
	border: 1px solid rgba(46,194,126,0.45); border-radius: 16px;
}
.lp-riskcard-main { flex: 1 1 24rem; text-align: left; }
.lp-riskcard-main p { margin: 0.6rem 0 0; color: var(--muted); line-height: 1.6; }
.lp-riskcard-main p strong { color: var(--text); }
.lp-riskcard-badge {
	display: inline-block; background: var(--ok); color: #06210f; font-weight: 800;
	font-size: 0.78rem; letter-spacing: 0.04em; text-transform: uppercase;
	padding: 0.28rem 0.9rem; border-radius: 999px;
}
.lp-riskcard-notes { display: flex; flex-direction: column; gap: 0.6rem; text-align: left; }
.lp-riskcard-notes span { color: var(--muted); font-size: 0.95rem; }
.lp-riskcard-notes strong { color: var(--text); }

/* -------- QR „naskenuj a připoj se" v živé ukázce -------- */
.lp-qr-cta {
	display: flex; gap: 1.8rem; align-items: center; justify-content: center; flex-wrap: wrap;
	max-width: 48rem; margin: 3rem auto 0; padding: 1.6rem 1.8rem;
	background: var(--panel2); border: 1px solid var(--border); border-radius: 16px;
}
.lp-qr-code {
	background: #fff; border-radius: 12px; padding: 0.6rem; line-height: 0; flex: 0 0 auto;
	box-shadow: 0 10px 30px rgba(0,0,0,0.35);
}
.lp-qr-code img { width: 160px; height: 160px; display: block; }
.lp-qr-text { text-align: left; flex: 1 1 18rem; }
.lp-qr-text h3 { margin: 0 0 0.5rem; font-size: 1.25rem; }
.lp-qr-text p { color: var(--muted); margin: 0 0 1.1rem; line-height: 1.6; }
.lp-qr-text strong { color: var(--text); }

/* -------- FAQ (řešení námitek) -------- */
.lp-faq { max-width: 46rem; margin: 0 auto; }
.lp-faq-item {
	border: 1px solid var(--border); border-radius: 12px; background: var(--panel2);
	margin-bottom: 0.8rem; padding: 0 1.3rem;
}
.lp-faq-item summary {
	cursor: pointer; font-weight: 600; padding: 1.1rem 0; list-style: none;
	display: flex; justify-content: space-between; align-items: center; gap: 1rem;
}
.lp-faq-item summary::-webkit-details-marker { display: none; }
.lp-faq-item summary::after { content: "+"; color: var(--accent2); font-size: 1.4rem; font-weight: 400; }
.lp-faq-item[open] summary::after { content: "−"; }
.lp-faq-item p { color: var(--muted); margin: 0 0 1.1rem; line-height: 1.65; }

/* -------- Sponzor (výpočet) -------- */
.lp-math {
	display: flex; gap: 1.2rem; align-items: center; justify-content: center; flex-wrap: wrap;
	font-size: clamp(0.95rem, 1.6vw, 1.2rem); margin-top: 3rem;
}
.lp-box {
	background: var(--panel2); border: 1px solid var(--border); border-radius: 14px;
	padding: 1.4rem 1.6rem; color: var(--muted); text-align: center; max-width: 15rem;
}
.lp-box .v { font-size: clamp(1.4rem, 2.6vw, 2rem); font-weight: 800; display: block; color: var(--text); margin-bottom: 0.3rem; }
.lp-box small { color: var(--muted); }
.lp-op { font-size: 2rem; color: var(--muted); }
.lp-box-win { border-color: var(--ok); }
.lp-box-win .v { color: var(--ok); }

/* -------- Závěrečné CTA -------- */
.lp-section-cta { text-align: center; }
.cta-pill {
	display: inline-block; background: var(--accent); color: #fff; font-weight: 700;
	font-size: 1.1rem; padding: 0.85rem 2.2rem; border-radius: 999px;
}
.cta-pill:hover { text-decoration: none; filter: brightness(1.12); }
.lp-contact { color: var(--muted); font-size: 1rem; line-height: 1.7; margin-top: 2.5rem; }
.lp-contact a { color: var(--accent2); }

/* -------- Lead formulář (poptávka na landing page) -------- */
.lp-form {
	max-width: 44rem; margin: 3.5rem auto 0; padding: 2rem 1.8rem;
	background: var(--panel2); border: 1px solid var(--border); border-radius: 16px;
	text-align: left;
}
.lp-form-title { margin: 0 0 1.4rem; font-size: 1.35rem; text-align: center; }
.lp-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem 1.4rem; }
.lp-field { display: flex; flex-direction: column; }
.lp-field-full { grid-column: 1 / -1; }
.lp-field label { color: var(--muted); font-size: 0.85rem; margin-bottom: 0.35rem; }
.lp-form input[type=text],
.lp-form input[type=email],
.lp-form select,
.lp-form textarea {
	background: var(--bg); border: 1px solid var(--border); border-radius: 10px;
	color: var(--text); font: inherit; padding: 0.65rem 0.85rem; width: 100%;
}
.lp-form input:focus, .lp-form select:focus, .lp-form textarea:focus {
	outline: none; border-color: var(--accent2);
}
.lp-form textarea { resize: vertical; }
.lp-field-error, .lp-form-errors { color: var(--accent); font-size: 0.85rem; }
.lp-form-errors { margin: 0 0 1rem; padding-left: 1.2rem; }
.lp-field-error:empty { display: none; }
.lp-form input[type=submit], .lp-form button[type=submit] { margin-top: 1.4rem; width: 100%; }

/* -------- Patička -------- */
.lp-footer { background: #0a0c11; border-top: 1px solid var(--border); padding: 4rem 1.5rem 2rem; }
.lp-footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 2.5rem; }
.lp-footer-brand img { height: 34px; margin-bottom: 1.2rem; }
.lp-footer-brand p { color: var(--muted); max-width: 24rem; line-height: 1.6; margin: 0; }
.lp-footer h4 { color: var(--text); font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.14em; margin: 0 0 1rem; }
.lp-footer a { color: var(--muted); display: block; padding: 0.28rem 0; }
.lp-footer a:hover { color: var(--text); text-decoration: none; }
.lp-footer-bottom {
	max-width: 1160px; margin: 3rem auto 0; padding-top: 1.6rem;
	border-top: 1px solid var(--border); text-align: center; color: var(--muted); font-size: 0.85rem;
}

/* -------- Responsivita landingu -------- */
@media (max-width: 860px) {
	.lp-wave-band { grid-template-columns: 1fr; gap: 2rem; }
	.lp-h2-left, .lp-eyebrow-left, .lp-lead-left { text-align: center; }
	.lp-pills { justify-content: center; }
	.lp-footer-inner { grid-template-columns: 1fr 1fr; }
	.lp-footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 860px) {
	.lp-audiences { grid-template-columns: 1fr; max-width: 26rem; }
}
@media (max-width: 720px) {
	.lp-section { padding: 4.5rem 1.2rem; }
	.lp-stepper { grid-template-columns: 1fr; gap: 2.2rem; }
	.lp-stepper::before { display: none; }
	.lp-diffs { grid-template-columns: 1fr; }
	.lp-form-grid { grid-template-columns: 1fr; }
	.lp-pricing { flex-direction: column; align-items: center; }
	.lp-plan { width: 100%; max-width: 22rem; }
	.lp-op { transform: rotate(90deg); }
	.lp-math { flex-direction: column; }
	.lp-box { max-width: 22rem; width: 100%; }
	.lp-phones .phone { transform: none !important; }
	.lp-footer-inner { grid-template-columns: 1fr; }
	.lp-riskcard { flex-direction: column; text-align: center; }
	.lp-riskcard-main { flex-basis: auto; text-align: center; }
	.lp-riskcard-notes { align-items: center; text-align: center; }
	.lp-qr-cta { flex-direction: column; text-align: center; }
	.lp-qr-text { text-align: center; flex-basis: auto; }
}

/* ==========================================================================
   NÁVOD (Guide:default) — sdílí landing skelet (.lp-section / .section-inner),
   přidává jen typografii dlouhého textu a obsah (TOC).
   ========================================================================== */
.page-guide .lp-h2 { text-align: left; }
.page-guide .lp-eyebrow { text-align: left; }
.page-guide .lp-lead { margin-left: 0; text-align: left; max-width: 52rem; }
.guide-head { padding-bottom: 3.5rem; }
/* anchor odkazy nesmí schovat nadpis pod topbar */
.page-guide [id] { scroll-margin-top: 5rem; }

.guide-toc {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
	gap: 0.6rem;
	margin-top: 2.5rem;
}
.guide-toc a {
	display: flex;
	align-items: center;
	gap: 0.7rem;
	padding: 0.75rem 0.9rem;
	background: var(--panel);
	border: 1px solid var(--border);
	border-radius: 10px;
	color: var(--text);
	font-weight: 500;
}
.guide-toc a:hover { border-color: var(--accent2); text-decoration: none; }
.guide-toc-n {
	flex: none;
	width: 1.6rem; height: 1.6rem;
	display: grid; place-items: center;
	border-radius: 50%;
	background: var(--panel2);
	color: var(--muted);
	font-size: 0.85rem;
	font-weight: 700;
}

.guide-steps { counter-reset: gstep; list-style: none; margin: 2.5rem 0 0; padding: 0; }
.guide-steps > li {
	counter-increment: gstep;
	position: relative;
	padding: 0 0 2rem 3.4rem;
	border-left: 1px solid var(--border);
	margin-left: 1.1rem;
}
.guide-steps > li:last-child { border-left-color: transparent; padding-bottom: 0; }
.guide-steps > li::before {
	content: counter(gstep);
	position: absolute;
	left: -1.15rem; top: 0;
	width: 2.3rem; height: 2.3rem;
	display: grid; place-items: center;
	border-radius: 50%;
	background: var(--accent);
	color: #fff;
	font-weight: 700;
}
.guide-steps h3 { margin: 0.2rem 0 0.5rem; font-size: 1.15rem; }
.guide-steps p { margin: 0 0 0.7rem; color: var(--muted); line-height: 1.65; max-width: 46rem; }
.guide-steps strong, .guide-card strong { color: var(--text); }

.guide-h3 { margin: 3rem 0 1.2rem; font-size: 1.3rem; }

.guide-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(17rem, 1fr));
	gap: 1rem;
	margin-top: 2.5rem;
}
.guide-grid-2 { grid-template-columns: repeat(auto-fit, minmax(22rem, 1fr)); }
.guide-grid-3 { grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr)); }
.guide-card {
	background: var(--panel);
	border: 1px solid var(--border);
	border-radius: 12px;
	padding: 1.4rem 1.5rem;
}
.lp-section-alt .guide-card { background: var(--bg); }
.guide-card h3 { margin: 0 0 0.6rem; font-size: 1.05rem; }
.guide-card p { margin: 0 0 0.6rem; color: var(--muted); line-height: 1.65; }
.guide-card p:last-child { margin-bottom: 0; }
.guide-card-num { padding-top: 1.1rem; }
.guide-num {
	display: grid; place-items: center;
	width: 2rem; height: 2rem;
	margin-bottom: 0.7rem;
	border-radius: 50%;
	background: var(--panel2);
	color: var(--accent);
	font-weight: 700;
}

.guide-list { margin: 0; padding-left: 1.1rem; color: var(--muted); line-height: 1.65; }
.guide-list li { margin-bottom: 0.5rem; }
.guide-list li:last-child { margin-bottom: 0; }
.guide-list-ol { padding-left: 1.2rem; }

.guide-note { font-size: 0.92rem; }
.page-guide code {
	background: var(--panel2);
	border: 1px solid var(--border);
	border-radius: 5px;
	padding: 0.08em 0.4em;
	font-size: 0.92em;
}

.guide-tip, .guide-warn {
	margin-top: 2.2rem;
	padding: 1.1rem 1.3rem;
	border-radius: 12px;
	border: 1px solid var(--border);
	border-left-width: 4px;
	background: var(--panel);
	color: var(--muted);
	line-height: 1.65;
}
.lp-section-alt .guide-tip, .lp-section-alt .guide-warn { background: var(--bg); }
.guide-tip { border-left-color: var(--ok); }
.guide-warn { border-left-color: var(--warn); }
.guide-tip strong, .guide-warn strong { color: var(--text); }
/* varování uvnitř kroku – užší odsazení, ať nerozbije rytmus seznamu */
.guide-steps .guide-warn { margin-top: 0.4rem; }

.guide-faq { margin-top: 2.5rem; max-width: 52rem; }
.guide-faq details {
	border: 1px solid var(--border);
	border-radius: 12px;
	background: var(--panel);
	margin-bottom: 0.7rem;
}
.lp-section-alt .guide-faq details { background: var(--bg); }
.guide-faq summary {
	cursor: pointer;
	padding: 1rem 1.3rem;
	font-weight: 600;
	list-style: none;
}
.guide-faq summary::-webkit-details-marker { display: none; }
.guide-faq summary::after { content: "+"; float: right; color: var(--muted); font-weight: 400; }
.guide-faq details[open] summary::after { content: "−"; }
.guide-faq details[open] summary { border-bottom: 1px solid var(--border); }
.guide-faq p { margin: 0; padding: 1rem 1.3rem; color: var(--muted); line-height: 1.7; }

@media (max-width: 720px) {
	.guide-steps > li { padding-left: 2.6rem; }
	.guide-grid, .guide-grid-2, .guide-grid-3 { grid-template-columns: 1fr; }
}
