/* krosdoplnky.sk — design system extracted from the Claude Design canvas
   (turns 1a/1d/2a desktop, 3b landing, 4a/4b/4c mobile rules) */

/* Fonty sú selfhostované, aby prvé vykreslenie nečakalo na DNS a TLS
   handshake k fonts.googleapis.com a fonts.gstatic.com.

   Oba sú variabilné (os wght 100–900), preto stačí jedna deklarácia na rodinu
   a subset namiesto štyroch na váhu.

   Slovenčina potrebuje oba subsety: č š ž ľ ť ď ň ŕ ĺ sú v latin-ext,
   á é í ó ú ý ä ô v latin. Vynechať latin-ext by rozbilo diakritiku. */

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('/assets/fonts/inter-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('/assets/fonts/inter-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'Geist';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('/assets/fonts/geist-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: 'Geist';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('/assets/fonts/geist-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --brand: #914735;
  --brand-hover: #6F3527;
  --brand-tint: #F5EBE7;
  --brand-tint-line: #E7D5CE;
  --accent: #9747FF;

  --ink: #020617;
  --muted: #475569;
  --subtle: #64748B;
  --faint: #94A3B8;

  --line: #E2E8F0;
  --line-strong: #CBD5E1;

  --surface: #FFFFFF;
  --surface-alt: #F8FAFC;
  --dark: #0F172A;

  --green: #16A34A;
  --green-ink: #15803D;
  --green-tint: #DCFCE7;

  --slate-tint: #EDF1F6;

  --pk-navy: #16213E;
  --pk-dot: #C2334D;

  --display: Geist, Inter, system-ui, sans-serif;
  --body: Inter, system-ui, -apple-system, "Segoe UI", sans-serif;
  --mono: ui-monospace, SFMono-Regular, Menlo, monospace;

  --gutter: 96px;
  --container: 1248px;
  --nav-h: 76px;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 90px; }

body {
  margin: 0;
  background: var(--surface-alt);
  font-family: var(--body);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; }
h1, h2, h3, h4 { margin: 0; font-family: var(--display); font-weight: 600; }
p { margin: 0; }
a { color: var(--brand); text-decoration: none; }
a:hover { color: var(--brand-hover); }

:focus-visible { outline: 2px solid var(--brand); outline-offset: 3px; border-radius: 4px; }

/* ---------- layout ---------- */

.section { padding: 80px var(--gutter); border-top: 1px solid var(--line); }
.section--white { background: var(--surface); }
.section--alt { background: var(--surface-alt); }
.section--dark { background: var(--dark); color: #fff; border-top: none; }
.section--flush { padding-bottom: 0; overflow: hidden; }
.wrap { max-width: var(--container); margin: 0 auto; }

.stack { display: flex; flex-direction: column; }
.stack-8 { gap: 8px; } .stack-10 { gap: 10px; } .stack-12 { gap: 12px; }
.stack-16 { gap: 16px; } .stack-20 { gap: 20px; } .stack-24 { gap: 24px; }
.stack-32 { gap: 32px; } .stack-40 { gap: 40px; } .stack-48 { gap: 48px; }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.split--start { align-items: start; }
.split--narrow-left { display: grid; grid-template-columns: 400px 1fr; gap: 64px; align-items: start; }
.split--label { display: grid; grid-template-columns: 320px 1fr; gap: 64px; align-items: start; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 32px 48px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

/* alternating addon rows (1a): intro / media / detail keep their mobile order */
.addon {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-areas: "intro media" "detail media";
  column-gap: 72px; row-gap: 20px;
  max-width: var(--container); margin: 0 auto;
}
.addon--reverse { grid-template-areas: "media intro" "media detail"; }
.addon__intro { grid-area: intro; align-self: end; display: flex; flex-direction: column; gap: 20px; }
.addon__detail { grid-area: detail; align-self: start; display: flex; flex-direction: column; gap: 20px; }
.addon__media { grid-area: media; align-self: center; }
.addon__foot { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; padding-top: 12px; }

/* ---------- type ---------- */

.eyebrow {
  font-size: 12px; font-weight: 600; letter-spacing: .08em;
  text-transform: uppercase; color: var(--subtle);
}
.eyebrow--brand { color: var(--brand); }
.eyebrow--dark { color: var(--faint); }

.h-hero { font-size: 60px; line-height: 1.05; letter-spacing: -.03em; text-wrap: balance; }
.h-page { font-size: 52px; line-height: 1.08; letter-spacing: -.03em; text-wrap: balance; }
.h-1 { font-size: 36px; line-height: 1.15; letter-spacing: -.02em; }
.h-2 { font-size: 34px; line-height: 1.15; letter-spacing: -.025em; text-wrap: balance; }
.h-3 { font-size: 30px; line-height: 1.2; letter-spacing: -.02em; text-wrap: balance; }
.h-4 { font-size: 22px; letter-spacing: -.02em; }

.lead { font-size: 18px; line-height: 1.6; color: var(--muted); text-wrap: pretty; }
.lead--lg { font-size: 19px; }
.body { font-size: 16px; line-height: 1.65; color: var(--muted); text-wrap: pretty; }
.body--sm { font-size: 15px; line-height: 1.65; color: var(--muted); text-wrap: pretty; }
.note { font-size: 14px; line-height: 1.6; color: var(--subtle); }
.on-dark { color: #fff; }
.on-dark-muted { color: #94A3B8; }
.on-dark-body { color: #CBD5E1; }
.measure { max-width: 740px; }
.measure--sm { max-width: 640px; }

/* ---------- buttons & pills ---------- */

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  height: 48px; padding: 0 22px; border-radius: 8px;
  font-size: 15px; font-weight: 600; font-family: var(--body);
  border: 1px solid transparent; cursor: pointer; white-space: nowrap;
  transition: background .15s ease, border-color .15s ease, color .15s ease;
}
.btn--sm { height: 44px; padding: 0 20px; font-size: 14px; }
.btn--primary { background: var(--brand); color: #fff; box-shadow: 0 1px 2px rgba(2,6,23,.05); }
.btn--primary:hover { background: var(--brand-hover); color: #fff; }
.btn--secondary { background: var(--surface); border-color: var(--line-strong); color: var(--ink); }
.btn--secondary:hover { border-color: var(--faint); color: var(--ink); }
.btn--light { background: #fff; color: var(--dark); }
.btn--light:hover { background: #E2E8F0; color: var(--dark); }
.btn--outline-dark { border-color: rgba(255,255,255,.24); color: #fff; }
.btn--outline-dark:hover { border-color: rgba(255,255,255,.5); color: #fff; }
.btn-row { display: flex; gap: 12px; flex-wrap: wrap; }

/* dočasne neaktívne CTA — doplnok ešte nie je spustený */
.btn[aria-disabled="true"],
.btn[aria-disabled="true"]:hover {
  background: var(--slate-tint); color: var(--muted);
  border-color: transparent; box-shadow: none; cursor: default;
}

.link-arrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 15px; font-weight: 600; color: var(--brand);
}
.link-arrow:hover { color: var(--brand-hover); }

.pill {
  display: inline-flex; align-items: center; gap: 8px; height: 30px; padding: 0 12px;
  border-radius: 999px; border: 1px solid var(--line-strong); background: #fff;
  font-size: 13px; font-weight: 500; color: var(--muted);
}
.pill--status {
  height: 28px; padding: 0 10px; border: none;
  background: var(--green-tint); color: var(--green-ink); font-weight: 600;
}

/* značková pilulka pre bezplatné obdobie — odkazuje na pruh s cenou */
.pill--free {
  gap: 7px; border-color: var(--brand-tint-line);
  background: var(--brand-tint); color: var(--brand); font-weight: 600;
}
.pill--free i { font-size: 15px; }
a.pill--free { transition: background-color .18s ease, border-color .18s ease, color .18s ease; }
a.pill--free:hover { background: var(--brand); border-color: var(--brand); color: #fff; }

/* sesterský stav k .pill--status: zdroj, ktorý ešte nie je spustený */
.pill--soon {
  height: 26px; padding: 0 11px; border: none;
  background: var(--slate-tint); color: var(--muted);
  font-size: 12px; font-weight: 600; white-space: nowrap; flex-shrink: 0;
}

.check-list { display: flex; flex-direction: column; gap: 10px; }
.check-list li { display: flex; gap: 10px; align-items: flex-start; font-size: 15px; line-height: 1.5; color: var(--ink); }
.check-list i { font-size: 18px; color: var(--green); flex-shrink: 0; }
ul.check-list { list-style: none; margin: 0; padding: 0; }

/* ---------- brand marks ---------- */

.logo-mark {
  display: inline-flex; align-items: center; justify-content: center;
  width: 30px; height: 30px; border-radius: 8px; background: var(--brand);
}
.logo-mark i { font-size: 17px; color: #fff; }
.logo-text { font-family: var(--display); font-size: 18px; font-weight: 600; letter-spacing: -.015em; color: var(--ink); }
.logo-text span { color: var(--faint); font-weight: 500; }

.pk-mark {
  position: relative; display: inline-flex; align-items: center; justify-content: center;
  width: 52px; height: 52px; border-radius: 15px; background: var(--pk-navy); flex-shrink: 0;
}
.pk-mark::after {
  content: ""; position: absolute; right: 11px; bottom: 13px;
  width: 5px; height: 5px; border-radius: 50%; background: var(--pk-dot);
}
.pk-mark span { font-family: var(--display); font-size: 22px; font-weight: 700; color: #fff; letter-spacing: -.03em; line-height: 1; }
.pk-mark--sm { width: 44px; height: 44px; border-radius: 13px; }
.pk-mark--sm span { font-size: 19px; }
.pk-mark--sm::after { right: 9px; bottom: 11px; width: 4px; height: 4px; }
.pk-mark--xs { width: 20px; height: 20px; border-radius: 6px; }
.pk-mark--xs span { font-size: 9px; letter-spacing: -.02em; }
.pk-mark--xs::after { right: 4px; bottom: 5px; width: 2px; height: 2px; }

.icon-tile {
  display: inline-flex; align-items: center; justify-content: center;
  width: 52px; height: 52px; border-radius: 14px;
  background: var(--brand-tint); border: 1px solid var(--brand-tint-line); flex-shrink: 0;
}
.icon-tile i { font-size: 26px; color: var(--brand); }
.icon-tile--sm { width: 44px; height: 44px; border-radius: 12px; }
.icon-tile--sm i { font-size: 22px; }
.icon-tile--solid { background: var(--brand); border-color: var(--brand); }
.icon-tile--solid i { color: #fff; }

/* ---------- nav ---------- */

.nav {
  position: sticky; top: 0; z-index: 40;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 var(--gutter); height: var(--nav-h);
  border-bottom: 1px solid var(--line); background: rgba(255,255,255,.92);
  backdrop-filter: blur(8px);
}
.nav__brand { display: flex; align-items: center; gap: 10px; }

/* Jediná položka navigácie: kontaktný mail ako pilulka s ikonou. */
.nav__contact {
  display: inline-flex; align-items: center; gap: 10px;
  height: 44px; padding: 0 18px 0 6px;
  border: 1px solid var(--line); border-radius: 999px;
  background: var(--surface); color: var(--ink);
  transition: border-color .18s ease, background-color .18s ease,
              box-shadow .18s ease, transform .18s ease;
}
.nav__contact-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--brand-tint); color: var(--brand);
  transition: background-color .18s ease, color .18s ease;
}
.nav__contact-icon i { font-size: 17px; }
.nav__contact-text { font-size: 14px; font-weight: 500; letter-spacing: -.01em; }
.nav__contact:hover {
  color: var(--ink);
  border-color: var(--brand-tint-line); background: var(--brand-tint);
  box-shadow: 0 6px 16px rgba(145, 71, 53, .12);
}
.nav__contact:hover .nav__contact-icon { background: var(--brand); color: #fff; }
.nav__contact:active { transform: translateY(1px); }

.breadcrumb {
  position: relative; z-index: 1;
  padding: 32px var(--gutter) 0;
  display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
  font-size: 13px; color: var(--subtle);
}
.breadcrumb a { color: var(--subtle); }
.breadcrumb a:hover { color: var(--ink); }
.breadcrumb i { font-size: 14px; }
.breadcrumb__current { display: inline-flex; align-items: center; gap: 7px; color: var(--ink); font-weight: 500; }

/* ---------- hero ---------- */

.hero {
  position: relative;
  padding: 96px var(--gutter);
  background: radial-gradient(120% 90% at 50% -10%, rgba(151,71,255,.16), rgba(151,71,255,0) 62%), var(--surface-alt);
}
.hero__inner { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; align-items: center; gap: 24px; text-align: center; }
.hero__inner .lead { max-width: 620px; }

.detail-hero {
  margin-top: -56px;
  padding: 96px var(--gutter) 80px;
  background: radial-gradient(110% 90% at 20% 0%, rgba(151,71,255,.14), rgba(151,71,255,0) 60%), var(--surface-alt);
}
.detail-hero--wide { background: radial-gradient(110% 90% at 30% 0%, rgba(151,71,255,.14), rgba(151,71,255,0) 60%), var(--surface-alt); }
.detail-hero__grid { display: grid; grid-template-columns: 1fr 620px; gap: 64px; align-items: center; }
.detail-hero__grid--phones { grid-template-columns: 1fr 560px; }
.detail-hero__grid--landing { grid-template-columns: 1fr 560px; gap: 72px; }
.detail-hero .lead { max-width: 580px; }

.rule-note { padding-top: 16px; border-top: 1px solid var(--line); margin-top: 8px; }
.rule-note > * { padding-top: 16px; display: inline-block; }

.stat-row { display: flex; gap: 32px; flex-wrap: wrap; padding-top: 16px; border-top: 1px solid var(--line); margin-top: 8px; }
.stat { display: flex; flex-direction: column; gap: 2px; padding-top: 16px; }
.stat__value { font-family: var(--display); font-size: 24px; font-weight: 600; font-variant-numeric: tabular-nums; }
.stat__label { font-size: 13px; color: var(--subtle); }

.meta-dots { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; font-size: 14px; color: var(--subtle); }
.meta-dots span.dot { width: 4px; height: 4px; border-radius: 50%; background: var(--line-strong); }

/* ---------- flow diagram ---------- */

.flow {
  position: relative; border-radius: 12px; overflow: hidden;
  aspect-ratio: 4 / 3;
  background: radial-gradient(58% 62% at 50% 50%, rgba(151,71,255,.20), rgba(151,71,255,0) 70%),
              linear-gradient(160deg, #FFFFFF 0%, #F4F6FA 100%);
  border: 1px solid var(--line); box-shadow: 0 24px 48px rgba(2,6,23,.10);
}
.flow--tall { aspect-ratio: 16 / 11; }
.flow svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.flow__glow {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%);
  width: 210px; height: 210px; border-radius: 50%;
  background: radial-gradient(circle, rgba(151,71,255,.30) 0%, rgba(151,71,255,0) 68%);
}
.flow__hub {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%);
  width: 88px; height: 88px; border-radius: 24px; overflow: hidden;
  box-shadow: 0 16px 38px rgba(2,6,23,.26);
}
.flow__hub img { display: block; width: 100%; height: 100%; object-fit: cover; }
.flow__node {
  position: absolute; transform: translate(-50%,-50%);
  width: 52px; height: 52px; border-radius: 14px; background: #fff;
  border: 1px solid var(--line); box-shadow: 0 6px 18px rgba(2,6,23,.10);
  display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.flow__node img { display: block; width: 100%; height: 100%; object-fit: cover; }
.flow__node img.contain { object-fit: contain; padding: 8px; }
/* uzol, ktorý ešte nie je spustený — ustúpi do pozadia stratou tieňa, nie rámikom */
.flow__node--soon { box-shadow: none; background: var(--surface-alt); }
.flow__node--soon img { opacity: .5; }

/* rovnaká hairline poznámka ako .rule-note v ľavom stĺpci hero sekcie */
.flow-note {
  margin-top: 16px; padding-top: 14px; border-top: 1px solid var(--line);
  font-size: 14px; line-height: 1.6; color: var(--subtle); text-wrap: pretty;
}
.flow__card {
  position: absolute; transform: translate(-50%,-50%);
  width: 172px; border-radius: 14px; background: #fff; border: 1px solid var(--line);
  box-shadow: 0 8px 22px rgba(2,6,23,.10); padding: 14px 16px;
  display: flex; align-items: center; gap: 12px;
}
.flow__card i { font-size: 17px; color: var(--brand); }
.flow__card .tile {
  display: inline-flex; align-items: center; justify-content: center;
  width: 32px; height: 32px; border-radius: 9px; background: var(--brand-tint); flex-shrink: 0;
}
.flow__card b { font-size: 13px; font-weight: 600; line-height: 1.3; }
.flow__card small { font-size: 12px; color: var(--subtle); line-height: 1.3; }

.hero-figure { position: relative; }
.float-card {
  position: absolute; right: -24px; bottom: -32px; width: 300px;
  border-radius: 12px; border: 1px solid var(--line); background: #fff;
  padding: 18px 20px; display: flex; align-items: center; gap: 14px;
  box-shadow: 0 16px 36px rgba(2,6,23,.16);
}
.float-card .tile {
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; border-radius: 10px; background: rgba(22,163,74,.12); flex-shrink: 0;
}
.float-card i { font-size: 20px; color: var(--green-ink); }

/* mobile fallback for the animated flow (4a/4b) */
.flow-stack {
  display: none; position: relative; border-radius: 12px; overflow: hidden;
  background: radial-gradient(60% 40% at 50% 50%, rgba(151,71,255,.20), rgba(151,71,255,0) 72%),
              linear-gradient(160deg, #FFFFFF 0%, #F4F6FA 100%);
  border: 1px solid var(--line); padding: 24px 18px;
  flex-direction: column; align-items: center; gap: 14px;
  box-shadow: 0 16px 32px rgba(2,6,23,.10);
}
.flow-stack__row { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; }
.flow-stack__chip {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: 12px; background: #fff;
  border: 1px solid var(--line); overflow: hidden; box-shadow: 0 4px 12px rgba(2,6,23,.08);
}
.flow-stack__chip img { display: block; width: 100%; height: 100%; object-fit: cover; }
.flow-stack__chip img.contain { object-fit: contain; padding: 7px; }
.flow-stack__chip--soon { background: var(--surface-alt); box-shadow: none; }
.flow-stack__chip--soon img { opacity: .5; }
.flow-stack__hub {
  display: inline-flex; width: 72px; height: 72px; border-radius: 20px;
  overflow: hidden; box-shadow: 0 14px 30px rgba(2,6,23,.24);
}
.flow-stack__hub img { display: block; width: 100%; height: 100%; object-fit: cover; }
.flow-stack__app {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  height: 34px; padding: 0 10px; border-radius: 10px; background: #fff;
  border: 1px solid var(--line); font-size: 12px; font-weight: 700; color: #334155;
  white-space: nowrap;
}
.flow-stack__app img { display: block; width: 18px; height: 18px; border-radius: 5px; flex-shrink: 0; }
.flow-stack i.arrow { font-size: 20px; color: var(--brand); }
.flow-stack i.arrow--in { color: #635BFF; }
.flow-stack i.arrow--out { color: var(--accent); }
.flow-stack__chip--lg { width: 56px; height: 56px; border-radius: 15px; border: none; box-shadow: 0 8px 20px rgba(2,6,23,.16); }
.flow-stack__pair { display: flex; gap: 10px; width: 100%; }
.flow-stack__pair > div {
  flex: 1; border-radius: 12px; background: #fff; border: 1px solid var(--line);
  box-shadow: 0 6px 16px rgba(2,6,23,.08); padding: 12px;
  display: flex; flex-direction: column; gap: 6px;
}
.flow-stack__pair i { font-size: 18px; color: var(--brand); }
.flow-stack__pair b { font-size: 14px; font-weight: 600; line-height: 1.3; }
.flow-stack__pair small { font-size: 12px; line-height: 1.4; color: var(--subtle); }

/* ---------- cards ---------- */

.card {
  border: 1px solid var(--line); border-radius: 12px; background: var(--surface);
  padding: 28px; display: flex; flex-direction: column; gap: 12px;
}
.card--alt { background: var(--surface-alt); padding: 24px; }
.card--raised { box-shadow: 0 1px 2px rgba(2,6,23,.05); padding: 26px; }
.card__title { font-size: 19px; font-weight: 600; }
.card i { font-size: 22px; color: var(--brand); }

.feature { display: flex; flex-direction: column; gap: 8px; }
.feature i { font-size: 22px; color: var(--brand); }
.feature__title { font-size: 18px; font-weight: 600; }

.step { display: flex; flex-direction: column; gap: 12px; padding-top: 20px; border-top: 2px solid var(--brand); }
.step__label { font-size: 12px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--brand); }
.step__title { font-family: var(--display); font-size: 20px; font-weight: 600; }

.panel {
  border: 1px solid var(--line); border-radius: 12px; background: var(--surface-alt);
  padding: 32px; display: flex; flex-direction: column; gap: 18px;
}
.panel span { display: flex; gap: 12px; font-size: 15px; line-height: 1.6; color: #334155; }
.panel i { font-size: 20px; color: var(--brand); flex-shrink: 0; }

.pillars { background: var(--surface); border-top: 1px solid var(--line); display: grid; grid-template-columns: 1fr 1px 1fr; }
.pillars__col { padding: 64px 72px; display: flex; flex-direction: column; gap: 16px; }
.pillars__rule { background: var(--line); }

.deadline { padding: 48px var(--gutter); background: var(--dark); display: flex; align-items: center; gap: 32px; }
.deadline__badge {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  min-width: 132px; padding: 16px 20px; border-radius: 12px;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.16);
}
.deadline__year { font-family: var(--display); font-size: 32px; font-weight: 600; color: #fff; line-height: 1; font-variant-numeric: tabular-nums; }
.deadline__day { font-size: 12px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--faint); padding-top: 6px; }
.deadline__body { display: flex; flex-direction: column; gap: 12px; max-width: 940px; }
.deadline__body p { font-size: 19px; line-height: 1.55; color: #E2E8F0; text-wrap: pretty; }

.deadline__chips { display: flex; flex-wrap: wrap; gap: 8px; padding-top: 2px; }
.deadline__chips span {
  display: inline-flex; align-items: center; height: 30px; padding: 0 13px;
  border-radius: 999px; background: var(--surface); border: 1px solid var(--brand-tint-line);
  font-size: 13px; font-weight: 500; color: var(--brand);
}

/* ---------- cenník ---------- */

/* Štyri hladiny idú do existujúceho .grid-4, takže zlomy 4 → 2 → 1 stĺpca
   dedia po ňom a netreba pre ne vlastné media query. */
.tier {
  position: relative; display: flex; flex-direction: column; gap: 14px;
  padding: 26px 24px; border: 1px solid var(--line); border-radius: 14px;
  background: var(--surface); box-shadow: 0 1px 2px rgba(2,6,23,.05);
}

/* Odporúčaná hladina: značkový rámik a odznak presahujúci hornú hranicu karty,
   aby sa dala zahliadnuť periférne bez čítania. */
.tier--featured { border-color: var(--brand); box-shadow: 0 8px 24px rgba(145,71,53,.12); }
.tier__badge {
  position: absolute; top: -13px; left: 24px;
  display: inline-flex; align-items: center; gap: 6px; height: 26px; padding: 0 11px;
  border-radius: 999px; background: var(--brand); color: #fff;
  font-size: 12px; font-weight: 600; white-space: nowrap;
}
.tier__badge i { font-size: 14px; }

.tier__name { font-family: var(--display); font-size: 20px; font-weight: 600; }
.tier__limit { font-size: 14px; color: var(--subtle); margin-top: -8px; }

.tier__price { display: flex; align-items: baseline; gap: 6px; }
.tier__amount {
  font-family: var(--display); font-size: 34px; font-weight: 600;
  line-height: 1; letter-spacing: -.02em; font-variant-numeric: tabular-nums;
}
.tier--featured .tier__amount { color: var(--brand); }
.tier__per { font-size: 15px; color: var(--subtle); }

/* Founder cena a cena po nej. Pod sumou, nie vedľa — vedľa sa na dvoch stĺpcoch
   veta láme uprostred a číslo prestane byť dominantné. */
.tier__terms {
  font-size: 13px; line-height: 1.5; color: var(--muted);
  padding-bottom: 14px; border-bottom: 1px solid var(--line); text-wrap: pretty;
}
.tier__terms strong { color: var(--ink); font-weight: 600; }

/* margin-top: auto drží tlačidlá štyroch kariet na jednej linke aj vtedy,
   keď má každá hladina iný počet riadkov nad ním. */
.tier .btn { width: 100%; margin-top: auto; }

.security-row { display: grid; grid-template-columns: 280px 1fr; gap: 64px; align-items: center; }
.security-row__head { display: flex; align-items: center; gap: 12px; }
.security-row__head i { font-size: 24px; color: var(--brand); }
.security-note { font-size: 14px; line-height: 1.6; color: var(--muted); }
.security-note strong { color: var(--ink); font-weight: 600; }
.security-item { display: flex; gap: 14px; }
.security-item i { font-size: 22px; color: var(--brand); flex-shrink: 0; }

/* ---------- source → KROS → target flow ---------- */

.pipeline { display: grid; grid-template-columns: 1fr 84px 260px 84px 1fr; align-items: stretch; }
.pipeline__col { display: flex; flex-direction: column; gap: 12px; justify-content: space-between; }
.pipeline__item {
  display: flex; align-items: center; gap: 12px; border: 1px solid var(--line);
  border-radius: 12px; background: #fff; padding: 14px 18px; box-shadow: 0 1px 2px rgba(2,6,23,.05);
}
a.pipeline__item { color: var(--ink); transition: border-color .15s ease, box-shadow .15s ease; }
a.pipeline__item:hover { color: var(--ink); border-color: var(--brand); box-shadow: 0 6px 16px rgba(2,6,23,.08); }
.pipeline__item-go { margin-left: auto; font-size: 16px; color: var(--faint); }
a.pipeline__item:hover .pipeline__item-go { color: var(--brand); }
.pipeline__item img { display: block; width: 32px; height: 32px; border-radius: 8px; flex-shrink: 0; }
.pipeline__item img.contain { object-fit: contain; background: #fff; }
.pipeline__item i { font-size: 20px; color: var(--brand); flex-shrink: 0; }
.pipeline__item b { font-size: 15px; font-weight: 600; }
.pipeline__item small { font-size: 13px; color: var(--subtle); }
/* obrysová karta namiesto plnej — o úroveň vzadu za spustenými zdrojmi */
.pipeline__item--soon {
  flex-wrap: wrap; row-gap: 10px;
  background: transparent; box-shadow: none;
}
.pipeline__item--soon img { opacity: .6; }
.pipeline__item--soon b { color: var(--muted); }
.pipeline__item--soon .pill--soon { margin-left: auto; }
.pipeline__hub {
  border: 1px solid var(--brand-tint-line); border-radius: 12px; background: var(--brand-tint);
  padding: 28px; display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 14px; text-align: center;
}
.pipeline__hub img { display: block; width: 52px; height: 52px; border-radius: 13px; }
.pipeline__hub b { font-family: var(--display); font-size: 22px; font-weight: 600; letter-spacing: -.01em; }
.pipeline__hub small { font-size: 14px; line-height: 1.55; color: var(--muted); }
.pipeline__wires { position: relative; }
.pipeline__wires span { position: absolute; background: var(--line-strong); }
.pipeline__wires .v { left: 50%; width: 1px; }
.pipeline__wires .h { height: 1px; }
.pipeline__wires .lead-in { background: var(--brand); }
.pipeline__arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  display: inline-flex; align-items: center; justify-content: center;
  width: 18px; height: 18px; border-radius: 50%; background: var(--brand);
}
.pipeline__arrow i { font-size: 11px; color: #fff; }
.pipeline-mobile { display: none; flex-direction: column; align-items: center; gap: 12px; }
.pipeline-mobile__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; width: 100%; }
.pipeline-mobile__down {
  display: inline-flex; align-items: center; justify-content: center;
  width: 28px; height: 28px; border-radius: 50%; background: var(--brand);
}
.pipeline-mobile__down i { font-size: 16px; color: #fff; }
.pipeline-mobile .pipeline__hub { align-self: stretch; }
.pipeline-mobile__list { display: flex; flex-direction: column; gap: 10px; width: 100%; }

.footnote-row {
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  padding-top: 20px; border-top: 1px solid var(--line);
}

/* ---------- screenshots ---------- */

.phone-frame {
  border-radius: 28px; border: 1px solid var(--line-strong);
  background: repeating-linear-gradient(135deg, #F1F5F9 0 10px, #E7EBF1 10px 20px);
  display: flex; align-items: flex-end; justify-content: center; padding-bottom: 24px;
  box-shadow: 0 12px 28px rgba(2,6,23,.10);
  width: 236px; height: 480px; flex-shrink: 0;
}
.phone-frame--lg { width: 248px; height: 508px; border-radius: 32px; box-shadow: 0 24px 48px rgba(2,6,23,.12); }
.phone-frame--sm { width: 216px; height: 440px; box-shadow: 0 16px 36px rgba(2,6,23,.10); padding-bottom: 20px; }
.phone-pair { display: flex; align-items: center; justify-content: center; gap: 20px; }

/* frames holding a real screenshot instead of the placeholder hatch */
.phone-frame.phone-frame--shot {
  padding: 5px; background: var(--dark); border-color: #0B1220;
  align-items: stretch; overflow: hidden;
}
.phone-frame--shot img {
  display: block; width: 100%; height: 100%;
  object-fit: contain; border-radius: 23px;
}
.phone-frame--lg.phone-frame--shot img { border-radius: 27px; }
.screen-shot {
  width: 100%; max-width: 1080px; margin: 0 auto -64px;
  border-radius: 12px 12px 0 0; border: 1px solid rgba(255,255,255,.18); border-bottom: none;
  overflow: hidden; box-shadow: 0 -12px 48px rgba(0,0,0,.35);
}
.screen-shot img { display: block; width: 100%; height: auto; }
.section--flush .wrap { display: flex; flex-direction: column; gap: 36px; align-items: center; }
.section--flush .measure--sm { text-align: center; }

/* ---------- FAQ ---------- */

.faq { display: flex; flex-direction: column; }
.faq details { border-bottom: 1px solid var(--line); padding: 20px 0; }
.faq details:first-child { padding-top: 0; }
.faq details:last-child { border-bottom: none; }
.faq summary {
  display: flex; align-items: flex-start; justify-content: space-between; gap: 16px;
  font-size: 17px; font-weight: 600; cursor: pointer; list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary i { font-size: 20px; color: var(--faint); flex-shrink: 0; transition: transform .15s ease; }
.faq details[open] summary i { transform: rotate(90deg); color: var(--brand); }
.faq p { margin-top: 8px; font-size: 15px; line-height: 1.65; color: var(--muted); text-wrap: pretty; }

/* ---------- právne dokumenty ---------- */

.page-head {
  padding: 0 0 56px;
  border-bottom: 1px solid var(--line);
  background: radial-gradient(120% 100% at 15% -20%, rgba(151,71,255,.13), rgba(151,71,255,0) 58%), var(--surface-alt);
}
.page-head .breadcrumb { padding-top: 24px; padding-bottom: 28px; justify-content: center; }
.page-head .wrap {
  max-width: 820px; margin: 0 auto; padding: 0 var(--gutter);
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  text-align: center;
}

.doc { display: grid; grid-template-columns: 280px 1fr; gap: 64px; align-items: start; }

.toc { position: sticky; top: calc(var(--nav-h) + 24px); display: flex; flex-direction: column; gap: 10px; }
.toc__title { font-size: 12px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--subtle); }
.toc ol { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 1px; }
.toc a {
  display: block; padding: 6px 12px; border-radius: 0 6px 6px 0;
  font-size: 13px; line-height: 1.45; color: var(--subtle);
  border-left: 2px solid var(--line);
}
.toc a:hover { color: var(--ink); background: var(--surface-alt); }
.toc a.is-current {
  color: var(--brand); font-weight: 600;
  border-left-color: var(--brand); background: var(--brand-tint);
}

.legal { max-width: 780px; }
.legal > p, .legal li { font-size: 16px; line-height: 1.75; color: #334155; }
.legal > p { margin-bottom: 14px; }
.legal strong { color: var(--ink); font-weight: 600; }
.legal h2 {
  font-size: 22px; letter-spacing: -.02em; scroll-margin-top: calc(var(--nav-h) + 24px);
  margin: 44px 0 18px; padding-top: 28px; border-top: 1px solid var(--line);
}
.legal h2:first-child { margin-top: 0; padding-top: 0; border-top: none; }
.legal h2 .legal__num { color: var(--brand); font-variant-numeric: tabular-nums; margin-right: 10px; }
.legal ul, .legal ol { margin: 0 0 16px; padding-left: 24px; }
.legal li { margin-bottom: 8px; }
.legal ol.alpha { list-style: lower-alpha; }
.legal__lead { font-size: 17px; line-height: 1.7; color: var(--muted); }
.legal__party {
  border: 1px solid var(--line); border-radius: 12px; background: var(--surface-alt);
  padding: 22px 24px; margin-bottom: 16px;
}
.legal__party p { margin: 0 0 8px; font-size: 15px; line-height: 1.7; color: #334155; }
.legal__party p:last-child { margin-bottom: 0; }
.todo {
  display: inline-block; padding: 1px 8px; border-radius: 5px;
  border: 1px dashed var(--line-strong); background: #fff;
  font-family: var(--mono); font-size: 12px; color: var(--subtle);
}

.callout {
  display: flex; gap: 14px; align-items: flex-start; margin-top: 40px;
  padding: 18px 20px; border-radius: 12px;
  border: 1px solid #FDE68A; background: #FFFBEB;
  font-size: 14px; line-height: 1.65; color: #92400E;
}
.callout i { font-size: 20px; color: #B45309; flex-shrink: 0; }
.callout strong { color: #78350F; font-weight: 600; }

/* ---------- CTA + footer ---------- */

.cta {
  padding: 64px var(--gutter); background: var(--dark);
  display: flex; align-items: center; justify-content: space-between; gap: 48px;
}
.cta__title { font-family: var(--display); font-size: 30px; font-weight: 600; color: #fff; letter-spacing: -.02em; }
.cta__title--lg { font-size: 34px; letter-spacing: -.025em; }
.cta__actions { display: flex; flex-direction: column; gap: 14px; align-items: flex-end; }

.site-footer {
  padding: 48px var(--gutter); background: var(--dark);
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  border-top: 1px solid rgba(255,255,255,.08);
}
.site-footer__brand { font-family: var(--display); font-size: 16px; font-weight: 600; color: #fff; }
.site-footer__note { font-size: 13px; color: var(--faint); }
.site-footer__links { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }
.site-footer__links a { font-size: 13px; color: #CBD5E1; }
.site-footer__links a:hover { color: #fff; }

/* ---------- sticky mobile CTA (4c) ---------- */

.sticky-cta { display: none; }

/* ---------- responsive ---------- */

@media (max-width: 1240px) {
  :root { --gutter: 56px; }
  .h-hero { font-size: 52px; }
  .h-page { font-size: 44px; }
  .detail-hero__grid { grid-template-columns: 1fr 480px; gap: 48px; }
  .detail-hero__grid--phones,
  .detail-hero__grid--landing { grid-template-columns: 1fr 440px; gap: 48px; }
  .split { gap: 48px; }
  .pillars__col { padding: 48px 40px; }
}

@media (max-width: 1000px) {
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .security-row { grid-template-columns: 1fr; gap: 24px; }
  .split--narrow-left,
  .split--label { grid-template-columns: 1fr; gap: 32px; }
}

/* single column, 20px gutters, smaller headings, full-width CTAs (turn 4) */
@media (max-width: 900px) {
  :root { --gutter: 20px; --nav-h: 56px; }

  .section { padding: 48px var(--gutter); }
  .h-hero { font-size: 34px; line-height: 1.1; letter-spacing: -.028em; }
  .h-page { font-size: 34px; line-height: 1.12; }
  .h-1 { font-size: 28px; }
  .h-2 { font-size: 28px; }
  .h-3 { font-size: 26px; }
  .h-4 { font-size: 20px; }
  .lead, .lead--lg { font-size: 16px; }
  .eyebrow { font-size: 11px; }

  .split, .grid-2, .grid-3, .grid-4,
  .detail-hero__grid, .detail-hero__grid--phones, .detail-hero__grid--landing {
    grid-template-columns: 1fr; gap: 24px;
  }
  .grid-2 { gap: 24px; }

  .addon, .addon--reverse {
    grid-template-columns: 1fr;
    grid-template-areas: "intro" "media" "detail";
    row-gap: 18px;
  }
  .addon__intro, .addon__detail { gap: 18px; }
  .addon__foot { flex-direction: column; align-items: stretch; gap: 12px; }
  .addon__foot .btn { width: 100%; height: 48px; }

  .nav { padding: 0 var(--gutter); }
  .nav__contact { height: 40px; padding: 0 14px 0 5px; gap: 8px; }
  .nav__contact-icon { width: 30px; height: 30px; }
  .nav__contact-text { font-size: 13px; }

  .breadcrumb { padding: 16px var(--gutter) 0; }
  .breadcrumb .crumb-tail { display: none; }

  .hero { padding: 44px var(--gutter) 48px; }
  .hero__inner { gap: 18px; }

  .detail-hero { margin-top: 0; padding: 24px var(--gutter) 40px; }

  .btn-row { flex-direction: column; align-items: stretch; }
  .btn-row .btn { width: 100%; height: 50px; }
  .cta__actions { align-items: stretch; }
  .cta__actions .btn-row { width: 100%; }

  .flow { display: none; }
  .flow-stack { display: flex; }
  .float-card {
    position: static; width: auto; margin-top: 14px; padding: 16px;
    box-shadow: 0 8px 20px rgba(2,6,23,.08);
  }
  .meta-dots { flex-direction: column; align-items: flex-start; gap: 8px; }
  .meta-dots span.dot { display: none; }

  .pipeline { display: none; }
  .pipeline-mobile { display: flex; }

  .pillars { grid-template-columns: 1fr; }
  .pillars__col { padding: 40px var(--gutter); }
  .pillars__rule { height: 1px; }

  .tier { padding: 22px 20px; }
  .tier__amount { font-size: 30px; }

  .deadline { flex-direction: column; align-items: flex-start; gap: 20px; padding: 40px var(--gutter); }
  .deadline__body p { font-size: 16px; }

  .cta { flex-direction: column; align-items: stretch; gap: 20px; padding: 48px var(--gutter); }
  .cta__title { font-size: 26px; line-height: 1.2; }
  .cta__title--lg { font-size: 28px; }

  .site-footer { flex-direction: column; align-items: flex-start; gap: 20px; padding: 40px var(--gutter); }
  .site-footer__links { gap: 16px; flex-direction: column; align-items: flex-start; }

  .footnote-row { flex-direction: column; align-items: flex-start; gap: 12px; }

  .phone-frame { width: 172px; height: 340px; border-radius: 24px; padding-bottom: 18px; }
  .phone-pair { gap: 12px; }
  .phone-frame--lg { width: 200px; height: 410px; }
  .phone-frame--sm { display: none; }
  .phone-frame--shot img,
  .phone-frame--lg.phone-frame--shot img { border-radius: 20px; }

  .screen-shot { width: 112%; max-width: none; margin: 8px -6% -20px; }
  .section--flush .wrap { gap: 24px; }

  .faq summary { font-size: 16px; line-height: 1.4; }
  .stat-row { gap: 20px; }

  .page-head { padding: 0 0 40px; }
  .page-head .breadcrumb { padding-top: 16px; padding-bottom: 20px; }
  .page-head .wrap { padding: 0 var(--gutter); }
  .doc { grid-template-columns: 1fr; gap: 32px; }
  .toc {
    position: static; padding: 20px; border: 1px solid var(--line);
    border-radius: 12px; background: var(--surface);
  }
  .toc a { border-left: none; border-radius: 6px; padding: 7px 10px; }
  .legal h2 { font-size: 20px; margin: 32px 0 14px; padding-top: 22px; }

  .sticky-cta {
    display: block; position: sticky; bottom: 0; z-index: 30;
    padding: 12px var(--gutter) 20px;
    background: rgba(255,255,255,.94); border-top: 1px solid var(--line);
    backdrop-filter: blur(8px); box-shadow: 0 -6px 20px rgba(2,6,23,.06);
  }
  .sticky-cta .btn { width: 100%; height: 50px; }
}

@media (max-width: 520px) {
  .grid-4, .pipeline-mobile__grid { grid-template-columns: 1fr; }
  .phone-pair { flex-direction: column; }

  /* Na úzkych displejoch sa mail nezmestí — zostane samotná ikona. */
  .nav__contact { padding: 0; width: 40px; justify-content: center; }
  .nav__contact-icon { width: 38px; height: 38px; }
  .nav__contact-text { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .flow svg circle { display: none; }
}
