:root{
  /* Apple-like light */
  --bg: #f5f5f7;
  --surface: rgba(255,255,255,.72);
  --card: #ffffff;
  --stroke: rgba(0,0,0,.10);

  --text: rgba(0,0,0,.88);
  --muted: rgba(0,0,0,.62);

  --accent: #0071e3;      /* Apple-ish blue */
  --accent2: #005bb5;

  --shadow: 0 18px 50px rgba(0,0,0,.10);
  --shadow2: 0 10px 24px rgba(0,0,0,.08);

  --radius: 18px;
  --radius2: 26px;

  --max: 1504px;
  --font: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Noto Sans", "Liberation Sans", sans-serif;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family:var(--font);
  color:var(--text);
  background: var(--bg);
}

a{color:inherit}
.container{width:min(var(--max), calc(100% - 40px)); margin:0 auto}

/* Topbar (glass) */
.topbar{
  position:sticky; top:0; z-index:50;
  background: rgba(245,245,247,.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--stroke);
}
.topbar__inner{
  display:flex; align-items:center; justify-content:space-between;
  gap:18px; padding:16px 0;
}

.brand{display:flex; align-items:center; gap:12px; text-decoration:none}
.brand__logo{width:56px; height:56px; object-fit:contain}
.brand__name{font-weight:700; letter-spacing:.2px}

/* Nav */
.nav{display:flex; gap:8px; flex-wrap:wrap; justify-content:flex-end}
.nav__link{
  text-decoration:none;
  padding:9px 12px;
  border-radius:999px;
  border:1px solid transparent;
  color: rgba(0,0,0,.70);
}
.nav__link:hover{
  background: rgba(255,255,255,.70);
  border-color: rgba(0,0,0,.08);
  color: var(--text);
}
.nav__link.is-active{
  background: rgba(255,255,255,.92);
  border-color: rgba(0,0,0,.10);
  color: var(--text);
}

/* Main */
.main{padding:26px 0 54px}

/* Hero */
.hero{padding:30px 0 8px}
.hero__grid{
  display:grid;
  grid-template-columns: 1.25fr .75fr;
  gap:22px;
  align-items:start;
}
@media (max-width: 980px){ .hero__grid{grid-template-columns:1fr} }

.hero__copy h1{
  margin:0 0 10px;
  font-size: clamp(30px, 3.2vw, 48px);
  line-height:1.06;
  letter-spacing:-.7px;
}
.prose{
  color:var(--muted);
  line-height:1.75;
  font-size:16px;
}

/* Rozdělení dlouhých textů do 2 sloupců (poloviční bloky) */
.prose--split{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 28px;
}

/* Každý odstavec / seznam jako samostatný blok */
.prose--split p,
.prose--split ul,
.prose--split ol{
  margin: 0;
  padding: 0;
}

/* Nadpisy v rámci split obsahu přes celou šířku */
.prose--split h1,
.prose--split h2,
.prose--split h3,
.prose--split h4{
  grid-column: 1 / -1;
  margin: 10px 0 0;
}

/* Na mobilu zpět na 1 sloupec */
@media (max-width: 900px){
  .prose--split{ grid-template-columns: 1fr; }
}


.prose a{
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.btnrow{display:flex; gap:12px; flex-wrap:wrap; margin:16px 0 10px}
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:12px 14px;
  border-radius: 999px;
  border:1px solid rgba(0,0,0,.12);
  text-decoration:none;
  font-weight:650;
  background: rgba(255,255,255,.85);
  box-shadow: var(--shadow2);
}
.btn--primary{
  border:1px solid rgba(0,0,0,.06);
  background: linear-gradient(180deg, #0a84ff, var(--accent));
  color:#fff;
  box-shadow: 0 14px 34px rgba(0,113,227,.22);
}
.btn--ghost{
  background: rgba(255,255,255,.75);
}
.btn--full{width:100%}

/* Trust pills */
.trust{display:flex; gap:10px; flex-wrap:wrap; margin-top:14px}
.pill{
  padding:8px 10px;
  border-radius:999px;
  background: rgba(255,255,255,.80);
  border:1px solid rgba(0,0,0,.10);
  color: rgba(0,0,0,.78);
  font-size:13px;
}

/* Card */
.card{
  background: rgba(255,255,255,.92);
  border:1px solid rgba(0,0,0,.10);
  border-radius: var(--radius2);
  padding:18px;
  box-shadow: var(--shadow);
}
.card__title{font-weight:800; font-size:18px; margin-bottom:6px}
.card__text{color:var(--muted); line-height:1.65; margin-bottom:12px}
.card__note{margin-top:10px; font-size:12.5px; color: var(--muted)}

/* Sections */
.section{padding:18px 0}
.section h2{
  margin:0 0 10px;
  font-size:26px;
  letter-spacing:-.3px;
}

/* Banner */
.banner{
  border-radius: var(--radius2);
  overflow:hidden;
  border:1px solid rgba(0,0,0,.10);
  box-shadow: var(--shadow);
  background:#fff;
}
.banner img{display:block; width:100%; height:auto}

/* About */
.about{
  display:grid;
  grid-template-columns: .9fr 1.1fr;
  gap:18px;
  align-items:center;
}
@media (max-width: 980px){ .about{grid-template-columns:1fr} }
.about__img{
  width:100%;
  height:auto;
  border-radius: var(--radius2);
  border:1px solid rgba(0,0,0,.10);
  box-shadow: var(--shadow);
  background:#fff;
}

/* CTA */
.cta{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:18px;
  align-items:center;
  padding:18px;
  border-radius: var(--radius2);
  border:1px solid rgba(0,0,0,.10);
  background: rgba(255,255,255,.86);
  box-shadow: var(--shadow);
}
@media (max-width: 980px){ .cta{grid-template-columns:1fr} }
.cta__actions{display:flex; flex-direction:column; gap:10px}

/* Footer */
.footer{
  border-top:1px solid rgba(0,0,0,.10);
  background: rgba(245,245,247,.72);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding:18px 0;
}
.footer__inner{
  display:flex;
  justify-content:space-between;
  gap:18px;
  align-items:center;
  flex-wrap:wrap
}
.muted{color:var(--muted)}

/* Everbot registrace – brand green */
.btn--register{
  border: 1px solid rgba(46,243,121,.35) !important;
  background: linear-gradient(180deg, #2ef379, #22d96a) !important;
  color: #062012 !important;
  box-shadow: 0 14px 34px rgba(46,243,121,.22) !important;
}
.btn--register:hover{
  filter: brightness(0.98);
}

.nav__link--register{
  background: rgba(46,243,121,.18);
  border-color: rgba(46,243,121,.35);
  color: rgba(0,0,0,.82);
}
.nav__link--register:hover{
  background: rgba(46,243,121,.24);
  border-color: rgba(46,243,121,.45);
}

/* Dlouhé texty: automatické přelití do 2 sloupců */
.prose--columns{
  column-count: 2;
  column-gap: 44px;
  column-fill: balance;
}

/* Zabrání „roztržení“ odstavců mezi sloupci */
.prose--columns p,
.prose--columns ul,
.prose--columns ol,
.prose--columns li{
  break-inside: avoid;
  page-break-inside: avoid;
  margin: 0 0 12px;
}

@media (max-width: 900px){
  .prose--columns{ column-count: 1; }
}

/* Nadpisy přes celou šířku (když je v textu máte) */
.prose--columns h1,
.prose--columns h2,
.prose--columns h3,
.prose--columns h4{
  column-span: all;
  break-after: avoid;
}

/* Mobil: 1 sloupec */
@media (max-width: 900px){
  .prose--columns{ column-count: 1; }
}

.cookiebar{
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 9999;
}
.cookiebar__inner{
  width: min(var(--max), calc(100% - 0px));
  margin: 0 auto;
  display:flex;
  gap: 14px;
  align-items:center;
  justify-content:space-between;
  padding: 14px 14px;
  border-radius: 18px;
  background: rgba(255,255,255,.88);
  border: 1px solid rgba(0,0,0,.10);
  box-shadow: 0 18px 50px rgba(0,0,0,.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.cookiebar__text{
  color: rgba(0,0,0,.72);
  font-size: 14px;
  line-height: 1.35;
}
.cookiebar__text a{
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.cookiebar__actions{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
}
@media (max-width: 720px){
  .cookiebar__inner{ flex-direction:column; align-items:stretch; }
  .cookiebar__actions .btn{ width:100%; }
}
