:root {
  --bg: #10161d;
  --bg-2: #141b23;
  --surface: #1a222c;
  --surface-2: #212b37;
  --ink: #f6f8f9;
  --ink-soft: #c3cdd6;
  --ink-dim: #93a1ac;
  --line: rgba(246, 248, 249, 0.12);
  --line-2: rgba(246, 248, 249, 0.2);
  --green: #34d399;
  --green-2: #22c55e;
  --green-tint: #10241b;
  --amber: #f5b942;
  --amber-2: #d99a1f;
  --amber-ink: var(--amber);

  --paper: #faf7f0;
  --paper-2: #f1ebdc;
  --ink-onlight: #1b222b;
  --ink-onlight-soft: #4c5561;
  --ink-onlight-dim: #7c8794;
  --line-onlight: rgba(27, 34, 43, 0.12);
  --line-onlight-2: rgba(27, 34, 43, 0.2);
  --green-onlight: #0e8f5a;
  --green-onlight-tint: #e3f3ea;
  --amber-onlight: #b9790a;

  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

* { margin: 0; padding: 0; box-sizing: border-box; min-width: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  font-family: "Inter", system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  overflow-wrap: break-word;
  width: 100%;
}

h1, h2, h3 { font-family: "Bricolage Grotesque", sans-serif; line-height: 1.14; letter-spacing: -0.02em; color: var(--ink); }
h1 { font-size: clamp(2.1rem, 4.8vw, 3.6rem); font-weight: 800; }
h2 { font-size: clamp(1.7rem, 3.4vw, 2.5rem); font-weight: 800; margin-bottom: 0.55em; }
h3 { font-size: 1.2rem; font-weight: 700; }

a { color: inherit; text-decoration: none; }
u { text-decoration-color: var(--green); text-decoration-thickness: 2px; text-underline-offset: 4px; text-decoration-line: underline; }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }
button { font: inherit; cursor: pointer; }

.wrap { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.wrap--narrow { max-width: 820px; }

.mono {
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-variant-numeric: tabular-nums;
}

.kicker {
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 0.9em;
}

.section { padding: 108px 0; position: relative; background: var(--bg); color: var(--ink); }
.section--tight { padding: 72px 0; }
.section--alt { background: var(--bg-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }

/* ---------- světlý blok (tělo stránky) — tmavý zůstává jen hero, důkazy, final CTA a patička ---------- */
.theme-light {
  --bg: var(--paper);
  --bg-2: var(--paper-2);
  --surface: #fffdf9;
  --surface-2: var(--paper-2);
  --ink: var(--ink-onlight);
  --ink-soft: var(--ink-onlight-soft);
  --ink-dim: var(--ink-onlight-dim);
  --line: var(--line-onlight);
  --line-2: var(--line-onlight-2);
  --green: var(--green-onlight);
  --green-tint: var(--green-onlight-tint);
  --amber-ink: var(--amber-onlight);
  --shadow: 0 18px 45px rgba(27, 34, 43, 0.1);
}

/* ---------- scroll progress + back to top ---------- */
.progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0%;
  background: linear-gradient(90deg, var(--green), var(--amber));
  z-index: 200; will-change: width;
}

.totop {
  position: fixed; right: 22px; bottom: 22px; width: 46px; height: 46px;
  border-radius: 50%; background: var(--surface-2); border: 1px solid var(--line-2);
  color: var(--ink); display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transform: translateY(8px);
  transition: opacity 0.25s ease, transform 0.25s ease; z-index: 150;
}
.totop.is-on { opacity: 1; pointer-events: auto; transform: translateY(0); }
.totop svg { width: 18px; height: 18px; }

/* ---------- topbar ---------- */
.topbar {
  position: sticky; top: 0; z-index: 100;
  background: rgba(16, 22, 29, 0.86); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.topbar__row { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.brand { font-family: "Bricolage Grotesque", sans-serif; font-weight: 800; font-size: 1.15rem; display: flex; align-items: center; gap: 10px; }
.brand__mark { color: var(--green); }
.brand__icon {
  width: 30px; height: 30px; border-radius: 9px; flex: none;
  background: linear-gradient(135deg, var(--green), var(--amber));
  display: flex; align-items: center; justify-content: center; color: #0c1310;
}
.brand__icon svg { width: 17px; height: 17px; }
.topbar__nav { display: flex; gap: 28px; font-size: 0.94rem; color: var(--ink-soft); }
.topbar__nav a:hover { color: var(--ink); }
@media (max-width: 860px) { .topbar__nav { display: none; } }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 26px; border-radius: 999px; font-weight: 700; font-size: 0.98rem;
  border: 1px solid transparent; transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.btn--primary { background: var(--green); color: #06140e; }
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(52, 211, 153, 0.28); }
.btn--amber { background: var(--amber); color: #241703; }
.btn--amber:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(245, 185, 66, 0.3); }
.btn--pulse { animation: ctapulse 2.6s ease-in-out infinite; }
.btn--pulse:hover { animation: none; }
@keyframes ctapulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(245, 185, 66, 0.55); }
  50% { box-shadow: 0 0 0 12px rgba(245, 185, 66, 0); }
}
@media (prefers-reduced-motion: reduce) { .btn--pulse { animation: none; } }
.btn--ghost { background: transparent; border-color: var(--line-2); color: var(--ink); }
.btn--ghost:hover { border-color: var(--green); color: var(--green); }
.btn--small { padding: 9px 18px; font-size: 0.86rem; }
.btn--big { padding: 17px 34px; font-size: 1.05rem; }
.btn--block { width: 100%; }

/* ---------- hero ---------- */
.hero { position: relative; padding: 96px 0 90px; overflow: hidden; }
.hero::before {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(52, 211, 153, 0.55) 1px, transparent 1.6px);
  background-size: 28px 28px;
  -webkit-mask-image: radial-gradient(ellipse 60% 55% at 78% 20%, black 0%, transparent 75%);
  mask-image: radial-gradient(ellipse 60% 55% at 78% 20%, black 0%, transparent 75%);
  opacity: 0.4;
  pointer-events: none;
}
.hero > canvas.hero__particles { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero > .wrap { position: relative; z-index: 1; }
.hero__top { position: relative; margin-bottom: 2.4em; }
.hero__grid { position: relative; display: grid; grid-template-columns: 1fr 1.15fr; gap: 56px; align-items: center; margin-bottom: 2em; }
.hero__grid > * { min-width: 0; }
@media (max-width: 980px) { .hero__grid { grid-template-columns: 1fr; } }

.authortag { display: flex; align-items: center; gap: 10px; margin-bottom: 1.1em; font-size: 0.92rem; color: var(--ink-soft); }
.authortag__avatar {
  width: 30px; height: 30px; border-radius: 50%; background: var(--green-tint); color: var(--green);
  display: flex; align-items: center; justify-content: center; font-family: "Bricolage Grotesque", sans-serif; font-weight: 700; flex: none;
}
.authortag strong { color: var(--ink); }

.hero h1 { margin-bottom: 0.35em; }
.hero__promise { font-family: "Bricolage Grotesque", sans-serif; font-weight: 700; font-size: 1.2rem; color: var(--ink); margin-bottom: 0.7em; }
.hero__spark {
  font-family: "Caveat", cursive; font-weight: 700; font-size: 1.9rem; color: #ff6fae;
  margin-top: 0.5em; transform: rotate(-1deg);
}
.hero__lede { font-size: 1.12rem; color: var(--ink-soft); max-width: 54ch; margin-bottom: 1.6em; }
.hero__cta { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; margin-bottom: 1.2em; }
.chiprow { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 1.4em; }
.chiprow--full { margin-bottom: 1em; }
.hero__sign { font-family: "Caveat", cursive; font-size: 1.65rem; color: var(--amber); margin-left: 4px; }
.chip {
  font-size: 0.86rem; color: var(--ink-soft); background: var(--surface-2);
  border: 1px solid var(--line-2); border-radius: 999px; padding: 7px 14px;
}
.hero__note { font-size: 0.88rem; color: var(--ink-dim); font-family: "JetBrains Mono", monospace; }

.heroproof-stack { position: relative; padding: 30px 26px 46px; }
.heroproof-peek {
  position: absolute; width: 62%; background: var(--surface); border: 1px solid var(--line-2);
  border-radius: var(--radius-sm); padding: 8px; box-shadow: 0 14px 30px rgba(0,0,0,.35);
}
.heroproof-peek img { border-radius: 6px; display: block; }
.heroproof-peek--a { top: 0; right: 0; transform: rotate(7deg); z-index: 1; }
.heroproof-peek--b { bottom: 6px; left: -4px; width: 56%; transform: rotate(-8deg); z-index: 1; }

.hero__proof {
  position: relative; background: var(--surface); border: 1px solid var(--line-2);
  border-radius: var(--radius); padding: 18px; box-shadow: var(--shadow);
  transform: rotate(1.4deg); z-index: 2;
}
.hero__proof img { border-radius: var(--radius-sm); border: 1px solid var(--line); }
.hero__proof-cap {
  margin-top: 12px; font-family: "Caveat", cursive; font-weight: 700; font-size: 1.7rem; color: var(--green);
  transform: rotate(-1deg);
}
.hero__badge {
  position: absolute; top: -18px; left: -14px; background: var(--amber); color: #241703;
  font-family: "JetBrains Mono", monospace; font-weight: 700; font-size: 0.95rem;
  padding: 10px 14px; border-radius: 8px; transform: rotate(-6deg); box-shadow: 0 10px 20px rgba(0,0,0,.3);
}
.hero__ministats {
  margin-top: 16px; padding-top: 14px; border-top: 1px solid var(--line);
  display: flex; flex-wrap: wrap; gap: 10px 18px; font-size: 0.86rem; color: var(--ink-dim);
}
.hero__ministats strong { color: var(--green); font-family: "JetBrains Mono", monospace; }

/* ---------- úvodní hook ---------- */
.hook {
  font-family: "Bricolage Grotesque", sans-serif; font-weight: 700; font-size: clamp(1.6rem, 3vw, 2.2rem);
  line-height: 1.35; letter-spacing: -0.005em; color: #fff; text-align: center;
  margin: 0; padding: 46px 34px; position: relative; overflow: hidden;
  background: #10161d; border-radius: var(--radius); box-shadow: 0 30px 60px rgba(0,0,0,.35);
}
.hook::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(480px 260px at 50% 0%, rgba(52,211,153,.2), transparent 70%);
  pointer-events: none;
}
.hook__sub { font-size: 1.15rem; color: var(--ink-soft); margin-bottom: 0.3em; }

.startpoints {
  margin: 1.3em 0 1.1em; display: grid; gap: 10px;
}
.startpoints p {
  padding: 12px 16px; background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius-sm); font-size: 0.98rem; color: var(--ink-soft);
}
.startpoints strong { color: var(--green); }

/* ---------- problém ---------- */
.problist { margin-top: 1.6em; display: grid; gap: 14px; }
.probitem {
  display: grid; grid-template-columns: 40px 1fr; gap: 16px; align-items: start;
  padding: 18px 0; border-bottom: 1px solid var(--line);
}
.probitem__num { font-family: "JetBrains Mono", monospace; color: var(--ink-dim); font-size: 0.95rem; padding-top: 2px; }
.probitem p { color: var(--ink-soft); }
.probitem strong { color: var(--ink); }
.problem__punch {
  margin-top: 2em; font-family: "Bricolage Grotesque", sans-serif; font-weight: 700; font-size: 1.3rem;
  color: var(--ink);
}
.problem__punch span { color: var(--green); }

/* ---------- rukopisné poznámky (Caveat) — opakující se motiv napříč stránkou ---------- */
.hand {
  font-family: "Caveat", cursive; font-size: 1.9rem; font-weight: 600; color: var(--amber-ink);
  display: block; line-height: 1.3; margin-top: 0.85em;
}
@media (max-width: 560px) { .hand { font-size: 1.55rem; } }
.hand--l { transform: rotate(-1.1deg); }
.hand--r { transform: rotate(0.9deg); }
.hand--green { color: var(--green); }
.hand:first-child { margin-top: 0; }
.hand--spaced { margin-top: 1.5em; }

/* ---------- úvodní hook ---------- */
.hookblock {
  /* lokálně vrací proměnné zpět na tmavou paletu, i když sekce kolem je theme-light */
  --ink: #f6f8f9; --ink-soft: #c3cdd6; --ink-dim: #93a1ac;
  --surface: #1a222c; --surface-2: #212b37;
  --line: rgba(246, 248, 249, 0.12); --line-2: rgba(246, 248, 249, 0.2);
  --green: #34d399; --green-tint: #10241b; --amber-ink: #f5b942;

  margin: 0 0 2.8em; display: flex; flex-direction: column; gap: 20px;
}
.hookblock__body {
  padding: 38px 40px 34px; background: #10161d;
  border-radius: var(--radius); box-shadow: 0 30px 60px rgba(0,0,0,.35);
  position: relative; overflow: hidden;
}
.hookblock__body::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(480px 260px at 15% 0%, rgba(52,211,153,.18), transparent 70%);
  pointer-events: none;
}
.hookblock__body > * { position: relative; }

/* ---------- "předtím" panel se zprávami ---------- */
.thenpanel {
  margin-top: 2em; background: var(--ink-onlight); background: #1c2129; border-radius: var(--radius);
  padding: 26px 26px 22px; box-shadow: var(--shadow);
}
.thenpanel__label { color: #c3cdd6; font-size: 1rem; margin-bottom: 1.2em; }
.pings { display: grid; gap: 8px; margin-bottom: 1.4em; }
.ping {
  display: flex; gap: 14px; align-items: baseline; padding: 10px 14px;
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.08); border-radius: 8px;
}
.ping__time { font-family: "JetBrains Mono", monospace; font-size: 0.76rem; color: var(--amber); flex: none; }
.ping__text { color: #eef2f5; font-size: 0.92rem; }
.thenpanel__punch { color: #eef2f5; font-weight: 600; font-size: 1.05rem; }

/* ---------- co se změní (dřív/teď) ---------- */
.shiftlist { margin-top: 2em; display: grid; gap: 0; position: relative; padding-left: 26px; }
.shiftlist::before {
  content: ""; position: absolute; left: 6px; top: 10px; bottom: 10px; width: 2px;
  background: linear-gradient(var(--green-tint), var(--line-2));
}
.shift {
  position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 20px; align-items: center;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: 20px 22px; margin-bottom: 16px;
}
.shift::before {
  content: ""; position: absolute; left: -22px; top: 50%; transform: translateY(-50%);
  width: 8px; height: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 4px var(--bg);
}
.shift:last-child { margin-bottom: 0; }
@media (max-width: 700px) { .shift { grid-template-columns: 1fr; gap: 8px; } }
.shift__before { color: var(--ink-dim); font-size: 0.95rem; text-decoration: line-through; text-decoration-color: var(--line-2); }
.shift__after { color: var(--ink); font-weight: 600; font-size: 1rem; }

/* ---------- autor / proof ---------- */
.authorlede { font-size: 1.08rem; color: var(--ink-soft); max-width: 68ch; margin-bottom: 1.2em; }
.authorstats { display: flex; flex-wrap: wrap; gap: 12px; margin: 1.6em 0 2.4em; }
.authorstat {
  background: var(--surface); border: 1px solid var(--line-2); border-radius: var(--radius-sm);
  padding: 10px 16px; font-size: 0.92rem; color: var(--ink-soft);
}
.authorstat strong { color: var(--ink); font-family: "JetBrains Mono", monospace; }

.clientele { margin: 1.8em 0; padding: 26px 28px; background: var(--surface); border: 1px solid var(--line-2); border-radius: var(--radius); }
.clientele__label { display: block; font-family: "JetBrains Mono", monospace; font-size: 0.78rem; text-transform: uppercase; letter-spacing: .05em; color: var(--ink-dim); margin-bottom: 16px; }
.clientele__list { display: flex; flex-wrap: wrap; gap: 14px 30px; }
.clientele__list span {
  font-family: "Bricolage Grotesque", sans-serif; font-weight: 700; font-size: 1.15rem; color: var(--ink);
  letter-spacing: -.005em;
}

.honest {
  font-family: "Caveat", cursive; font-size: 1.65rem; color: var(--amber-ink);
  margin: 2.2em 0 0.4em; transform: rotate(-0.6deg);
}

.phoneproof {
  margin-top: 2.4em; display: grid; grid-template-columns: 210px 1fr; gap: 30px; align-items: center;
  background: var(--surface); border: 1px solid var(--line-2); border-radius: var(--radius);
  padding: 24px; box-shadow: 0 16px 34px rgba(0,0,0,.1);
}
.phoneproof__shot {
  border-radius: 26px; overflow: hidden; border: 4px solid #12181f; box-shadow: 0 14px 28px rgba(0,0,0,.3);
}
.phoneproof__shot img { display: block; width: 100%; }
.phoneproof__label { font-family: "Bricolage Grotesque", sans-serif; font-weight: 800; font-size: 1.2rem; margin-bottom: .35em; color: var(--ink); }
.phoneproof__text p:not(.phoneproof__label):not(.hand) { color: var(--ink-soft); }
@media (max-width: 640px) {
  .phoneproof { grid-template-columns: 1fr; text-align: center; }
  .phoneproof__shot { max-width: 190px; margin: 0 auto; }
}

.proofgrid {
  margin-top: 2.4em; display: grid; grid-template-columns: repeat(auto-fit, minmax(420px, 1fr));
  gap: 30px 28px;
}
.proofcard {
  background: var(--surface); border: 1px solid var(--line-2); border-radius: var(--radius);
  padding: 14px 14px 18px; box-shadow: 0 16px 34px rgba(0,0,0,.28); min-width: 0;
  position: relative;
}
.proofcard__badge {
  position: absolute; top: -14px; left: -10px; background: var(--amber); color: #241703;
  font-family: "JetBrains Mono", monospace; font-weight: 700; font-size: 0.8rem;
  padding: 7px 12px; border-radius: 8px; transform: rotate(-5deg); box-shadow: 0 10px 20px rgba(0,0,0,.3);
  z-index: 3;
}
.proofcard:nth-child(2n) { transform: rotate(-0.7deg); }
.proofcard:nth-child(3n) { transform: rotate(0.9deg); }
.proofcard:nth-child(5n) { transform: rotate(-1.1deg); }
.proofcard__chrome { display: flex; gap: 6px; padding: 4px 6px 10px; }
.proofcard__dot { width: 8px; height: 8px; border-radius: 50%; background: var(--line-2); }
.proofcard__shot { border-radius: var(--radius-sm); overflow: hidden; border: 1px solid var(--line); }
.proofcard__stat {
  margin-top: 12px; font-family: "JetBrains Mono", monospace; font-size: 1.7rem; font-weight: 700;
  color: var(--green);
}
.proofcard__stat.is-lower { color: var(--amber-ink); }
.proofcard__label { color: var(--ink-soft); font-size: 0.9rem; margin-top: 2px; }

/* ---------- poslední proofka + miniproof vedle sebe ---------- */
.proofbottom {
  margin-top: 30px; display: grid; grid-template-columns: minmax(240px, 360px) 1fr;
  gap: 28px; align-items: start;
}
.proofbottom .proofcard { transform: none; }
@media (max-width: 860px) { .proofbottom { grid-template-columns: 1fr; } }

/* ---------- sloučené menší proofy (dřív samostatné, opakující se karty) ---------- */
.miniproof {
  margin-top: 0; background: var(--surface); border: 1px solid var(--line-2); border-radius: var(--radius);
  padding: 22px 24px; box-shadow: 0 16px 34px rgba(0,0,0,.1);
}
.miniproof__label { font-family: "JetBrains Mono", monospace; font-size: 0.78rem; text-transform: uppercase; letter-spacing: .04em; color: var(--ink-dim); margin-bottom: 16px; }
.miniproof__grid { display: grid; gap: 22px; }
.miniproof__item {
  padding: 0 0 18px; border-bottom: 1px solid var(--line);
}
.miniproof__item:last-child { border-bottom: none; padding-bottom: 0; }
.miniproof__item img { display: block; width: 100%; border-radius: 8px; border: 1px solid var(--line); margin-bottom: 10px; }
.miniproof__item strong { font-family: "JetBrains Mono", monospace; font-size: 1.4rem; color: var(--green); margin-right: 8px; }
.miniproof__item strong.is-lower { color: var(--amber-ink); }
.miniproof__item span { color: var(--ink-dim); font-size: 0.9rem; }
.proofcard__note { margin-top: 8px; font-family: "Caveat", cursive; font-size: 1.3rem; color: var(--ink-dim); }

/* ---------- funnel diagram (coded) ---------- */
.funnel { margin-top: 3em; display: grid; gap: 0; }
.fnode {
  display: grid; grid-template-columns: 64px 1fr; gap: 20px; position: relative; padding-bottom: 40px;
}
.fnode:last-child { padding-bottom: 0; }
.fnode__num {
  width: 44px; height: 44px; border-radius: 50%; background: var(--surface-2);
  border: 1px solid var(--line-2); display: flex; align-items: center; justify-content: center;
  font-family: "JetBrains Mono", monospace; font-weight: 700; color: var(--green); position: relative; z-index: 2;
}
.fnode::before {
  content: ""; position: absolute; left: 21px; top: 44px; bottom: -4px; width: 2px;
  background: linear-gradient(var(--green-tint), var(--line-2));
}
.fnode:last-child::before { display: none; }
.fnode__body {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: 18px 20px;
}
.fnode__title { font-family: "Bricolage Grotesque", sans-serif; font-weight: 700; font-size: 1.05rem; margin-bottom: 4px; }
.fnode__desc { color: var(--ink-soft); font-size: 0.96rem; }
.fnode__tag {
  display: inline-block; margin-top: 10px; font-family: "JetBrains Mono", monospace; font-size: 0.76rem;
  color: var(--green); border: 1px solid var(--green-tint); background: var(--green-tint);
  padding: 3px 9px; border-radius: 6px;
}

/* ---------- moduly ---------- */
.modlist { margin-top: 2em; display: grid; grid-template-columns: 1fr 1fr; gap: 0 48px; }
@media (max-width: 760px) { .modlist { grid-template-columns: 1fr; } }
.mod {
  display: grid; grid-template-columns: 46px 1fr; gap: 14px; padding: 20px 0;
  border-bottom: 1px solid var(--line);
}
.mod__num { font-family: "JetBrains Mono", monospace; color: var(--ink-dim); font-size: 1.6rem; font-weight: 700; }
.mod h3 { margin-bottom: 4px; }
.mod p { color: var(--ink-soft); font-size: 0.95rem; }

.modpunch {
  margin-top: 1.8em; text-align: center; font-family: "Bricolage Grotesque", sans-serif; font-weight: 700;
  font-size: clamp(1.3rem, 2.4vw, 1.7rem); line-height: 1.35; color: var(--ink);
  background: var(--surface); border: 1px dashed var(--line-2); border-radius: var(--radius-sm);
  padding: 24px 28px;
}
.modpunch s { color: var(--ink-dim); text-decoration-color: var(--ink-dim); font-weight: 500; }
.modpunch strong { color: var(--green); font-family: inherit; font-weight: 800; }
@media (max-width: 560px) { .modpunch { font-size: 1.25rem; padding: 18px 18px; } }

/* ---------- meta section (celá sekce tmavá, na plnou šířku) ---------- */
.meta-section {
  position: relative; overflow: hidden; background: #10161d;
}
.meta-section::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(700px 380px at 50% 0%, rgba(52,211,153,.14), transparent 70%);
  pointer-events: none;
}
.meta-section > canvas.meta__particles { position: absolute; inset: 0; width: 100%; height: 100%; }
.meta-section > .wrap { position: relative; }
.meta { text-align: center; max-width: 960px; margin: 0 auto; }
.meta .kicker { color: var(--green) !important; justify-content: center; }
.meta h2 { color: #fff; margin-bottom: 0.4em; }
.meta p { color: #c3cdd6; }

/* ---------- vizuální cesta (akvizice -> miniupsell -> komunikace -> retence -> reaktivace -> databáze) ---------- */
.metapath { display: flex; align-items: flex-start; justify-content: center; margin: 3em 0 0.8em; max-width: 900px; margin-left: auto; margin-right: auto; flex-wrap: wrap; row-gap: 30px; }
.metapath__node { flex: 1 1 0; min-width: 80px; display: flex; flex-direction: column; align-items: center; text-align: center; position: relative; }
.metapath__circle {
  width: 60px; height: 60px; border-radius: 50%; background: var(--surface-2); border: 2px solid rgba(255,255,255,.14);
  display: flex; align-items: center; justify-content: center; margin-bottom: 10px; position: relative; z-index: 2;
}
.metapath__circle svg { width: 25px; height: 25px; color: #7a8794; }
.metapath__node.is-here .metapath__circle { background: var(--green); border-color: var(--green); box-shadow: 0 0 0 7px rgba(52,211,153,.18); }
.metapath__node.is-here .metapath__circle svg { color: #06140e; }
.metapath__node.is-forever .metapath__circle {
  width: 70px; height: 70px; background: var(--amber); border-color: var(--amber);
  box-shadow: 0 0 0 9px rgba(245,185,66,.2), 0 0 28px rgba(245,185,66,.35);
}
.metapath__node.is-forever .metapath__circle svg { width: 29px; height: 29px; color: #2b1c02; }
.metapath__node.is-forever strong { color: var(--amber); font-size: 1.15rem; }
.metapath__tag { font-family: "JetBrains Mono", monospace; font-size: 0.78rem; text-transform: uppercase; letter-spacing: .04em; color: var(--green); margin-top: 4px; }
.metapath__tag--forever { color: var(--amber); }
.metapath__node strong { font-family: "Bricolage Grotesque", sans-serif; font-size: 1rem; color: #fff; }
.metapath__node:not(.is-here):not(.is-forever) strong { color: #9aabb8; }
.metapath__connector { flex: none; width: 34px; height: 2px; background: repeating-linear-gradient(90deg, rgba(255,255,255,.25) 0 6px, transparent 6px 12px); margin-top: 29px; position: relative; overflow: visible; }
.metapath__connector::after {
  content: ""; position: absolute; top: -3px; left: 0; width: 8px; height: 8px; border-radius: 50%; background: var(--green);
  box-shadow: 0 0 8px var(--green); animation: metaflow 3.6s linear infinite;
}
.metapath__connector--forever::after { background: var(--amber); box-shadow: 0 0 8px var(--amber); }
@keyframes metaflow { 0% { left: -4px; opacity: 0; } 15% { opacity: 1; } 85% { opacity: 1; } 100% { left: 100%; opacity: 0; } }
@media (max-width: 680px) {
  .metapath { max-width: 380px; }
  .metapath__connector { display: none; }
  .metapath__node { flex: 0 1 30%; }
  .metapath__circle { width: 50px; height: 50px; }
  .metapath__node.is-forever .metapath__circle { width: 58px; height: 58px; }
  .metapath__node strong { font-size: 0.86rem; }
}

.meta__arrow {
  margin-top: 1.4em; font-family: "JetBrains Mono", monospace; color: var(--green); font-size: 1.5rem;
  animation: metabounce 1.6s ease-in-out infinite;
}
@keyframes metabounce { 0%,100% { transform: translateY(0); } 50% { transform: translateY(7px); } }
@media (prefers-reduced-motion: reduce) { .meta__arrow, .metapath__connector::after { animation: none; } }

/* ---------- offer ---------- */
.section--offer { background: var(--bg-2); border-top: 1px solid var(--line); }
.offer { margin-top: 2.4em; display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
@media (max-width: 900px) { .offer { grid-template-columns: 1fr; } }

.offercard {
  background: var(--surface); border: 1px solid var(--line-2); border-radius: var(--radius);
  padding: 30px; box-shadow: var(--shadow);
}
.offercard--main { border-color: var(--green); box-shadow: 0 0 0 1px var(--green-tint), var(--shadow); }
.offer__form { min-height: 60px; }
.offercard__tag {
  display: inline-block; font-family: "JetBrains Mono", monospace; font-size: 0.76rem;
  color: #06140e; background: var(--green); padding: 4px 10px; border-radius: 6px; margin-bottom: 14px;
}
.offercard h3 { font-size: 1.3rem; margin-bottom: 10px; }
.offercard__price { display: flex; align-items: baseline; gap: 10px; margin: 14px 0 6px; }
.offercard__old { text-decoration: line-through; color: var(--ink-dim); font-family: "JetBrains Mono", monospace; }
.offercard__new { font-family: "JetBrains Mono", monospace; font-size: 2rem; font-weight: 700; color: var(--green); }
.offercard__sub { color: var(--ink-dim); font-size: 0.88rem; margin-bottom: 18px; }
.offercard ul { margin: 14px 0 22px; display: grid; gap: 10px; }
.offercard li { display: flex; gap: 10px; color: var(--ink-soft); font-size: 0.95rem; }
.offercard li::before { content: "→"; color: var(--green); flex: none; }

.bumpbox {
  margin-top: 18px; border: 1px dashed var(--amber-2); border-radius: var(--radius-sm);
  padding: 14px 16px; font-size: 0.9rem; color: var(--ink-soft); background: rgba(245, 185, 66, 0.06);
}
.bumpbox strong { color: var(--amber-ink); }

.upsellnote {
  margin-top: 22px; padding-top: 20px; border-top: 1px solid var(--line);
  font-size: 0.9rem; color: var(--ink-dim);
}
.upsellnote strong { color: var(--ink-soft); }

.offer__secure { margin-top: 14px; font-size: 0.84rem; color: var(--ink-dim); text-align: center; }

.guaranteebar {
  display: flex; align-items: center; gap: 12px; margin: 16px 0 20px; padding: 14px 16px;
  background: var(--green-tint); border: 1px solid var(--green); border-radius: var(--radius-sm);
}
.guaranteebar svg { width: 26px; height: 26px; color: var(--green); flex: none; }
.guaranteebar span { font-size: 0.9rem; color: var(--ink-soft); }
.guaranteebar strong { color: var(--ink); }

/* ---------- e-mailové reakce ---------- */
.mailgrid { margin-top: 2.4em; display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px 24px; }
.mailcard {
  background: var(--surface); border: 1px solid var(--line-2); border-radius: var(--radius);
  padding: 0 0 18px; box-shadow: 0 16px 34px rgba(27,34,43,.1); overflow: hidden;
}
.mailcard:nth-child(3n+1) { transform: rotate(-0.8deg); }
.mailcard:nth-child(3n+2) { transform: rotate(0.6deg); }
.mailcard:nth-child(3n+3) { transform: rotate(-0.5deg); }
.mailcard__chrome { display: flex; gap: 6px; padding: 12px 14px; background: var(--surface-2); border-bottom: 1px solid var(--line); }
.mailcard__dot { width: 8px; height: 8px; border-radius: 50%; background: var(--line-2); }
.mailcard__head { display: flex; align-items: center; gap: 10px; margin: 14px 20px 10px; }
.mailcard__avatar {
  width: 34px; height: 34px; border-radius: 50%; background: var(--green-tint); color: var(--green);
  display: flex; align-items: center; justify-content: center; font-family: "Bricolage Grotesque", sans-serif; font-weight: 700; flex: none;
}
.mailcard__who { font-size: 0.92rem; }
.mailcard__who strong { display: block; color: var(--ink); }
.mailcard__who span { color: var(--ink-dim); font-size: 0.82rem; }
.mailcard__subject { font-weight: 700; font-size: 0.94rem; margin: 0 20px 6px; color: var(--ink); }
.mailcard__body { color: var(--ink-soft); font-size: 0.92rem; margin: 0 20px; }

/* ---------- FAQ ---------- */
.faq { margin-top: 2em; display: grid; gap: 10px; }
.faq details {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: 6px 20px;
}
.faq summary {
  cursor: pointer; padding: 16px 0; font-weight: 700; font-family: "Bricolage Grotesque", sans-serif;
  list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 12px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--green); font-size: 1.3rem; }
.faq details[open] summary::after { content: "–"; }
.faq p { padding-bottom: 18px; color: var(--ink-soft); }

/* ---------- final cta ---------- */
.final {
  position: relative; overflow: hidden;
  padding: 110px 0; text-align: center; background: radial-gradient(700px 380px at 50% 0%, rgba(52,211,153,.12), transparent 65%), var(--bg);
  border-top: 1px solid var(--line);
}
.final > canvas.final__particles { position: absolute; inset: 0; width: 100%; height: 100%; }
.final > .wrap { position: relative; z-index: 1; }
.final__kicker { font-family: "JetBrains Mono", monospace; color: var(--amber); font-size: 0.86rem; margin-bottom: 1em; }
.final h2 { max-width: 18ch; margin: 0 auto 0.4em; }
.final p { color: var(--ink-soft); max-width: 54ch; margin: 0 auto 1.8em; }

/* ---------- sticky mobile cta ---------- */
.stickycta {
  position: fixed; left: 0; right: 0; bottom: -100px; z-index: 140;
  background: var(--surface-2); border-top: 1px solid var(--line-2); padding: 12px 16px;
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  transition: bottom 0.25s ease; box-shadow: 0 -12px 30px rgba(0,0,0,.35);
}
.stickycta.is-on { bottom: 0; }
.stickycta__price { font-family: "JetBrains Mono", monospace; font-weight: 700; color: var(--green); }
@media (min-width: 761px) { .stickycta { display: none; } }

/* ---------- footer ---------- */
.footer { padding: 64px 0 36px; background: var(--surface); border-top: 1px solid var(--line); text-align: center; }
.footer__tag { color: var(--ink-dim); font-size: 0.96rem; max-width: 46ch; margin: 0 auto; }
.footer p, .footer a { font-size: 0.92rem; color: var(--ink-soft); }
.footer__contact { margin-top: 14px; }
.footer a:hover { color: var(--green); }
.footer__signature { margin-top: 32px; padding-top: 24px; border-top: 1px solid var(--line); font-family: "Caveat", cursive; font-weight: 600; font-size: 1.5rem; color: var(--amber-ink); }
.footer__legal { margin-top: 28px; padding-top: 20px; border-top: 1px solid var(--line); font-size: 0.82rem; color: var(--ink-dim); display: flex; gap: 18px; flex-wrap: wrap; justify-content: space-between; }

/* ---------- reveal ---------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-in { opacity: 1; transform: translateY(0); }

/* ---------- cursor glow ---------- */
.cursor-glow {
  position: absolute; width: 420px; height: 420px; border-radius: 50%; pointer-events: none;
  background: radial-gradient(circle, rgba(52,211,153,.14), transparent 70%);
  transform: translate(-50%, -50%); opacity: 0; transition: opacity .3s ease; z-index: 0;
}
@media (hover: hover) { .hero:hover .cursor-glow { opacity: 1; } }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}
