/* =========================================================================
   svaton.sk / svaton.cz - zdielany dizajn system
   STONE & COBALT (editorial / auditny). Verzia 4.0 - 2026-06-13
   Fonty: Newsreader (display serif) + Hanken Grotesk (UI) + JetBrains Mono.
   Jeden akcent: kobalt #2A4FCB. Ziadna terakota, ziadne teple kremove tony.
   Triedy zostavaju kompatibilne s index.php, inc/*, blog, slovnik, o-mne.
   ========================================================================= */

:root {
  --bg:          #EEF1F3;   /* chladna kamenna, hlavne pozadie */
  --paper:       #F6F8FA;   /* alternativne sekcie */
  --card:        #FFFFFF;
  --ink:         #1B2430;   /* chladny grafit, nadpisy + tmave tlacidla */
  --body:        #414C57;   /* text */
  --muted:       #6C7682;   /* sekundarny text, mono labely */
  --line:        rgba(27,36,48,0.13);
  --line-strong: rgba(27,36,48,0.22);
  --accent:      #2A4FCB;   /* KOBALT - jediny akcent */
  --accent-deep: #1E3CA0;
  --accent-soft: rgba(42,79,203,0.10);
  --dark:        #121821;   /* tmava AI sekcia + footer */
  --dark-soft:   #1B2330;
  --dark-line:   rgba(231,236,242,0.14);
  --dark-text:   #E5E9EF;
  --dark-muted:  #93A0AD;
  --ok:          #2E7D55;
  --warn:        #B8852A;
  --danger:      #B23B22;

  --serif: 'Fraunces', Georgia, 'Times New Roman', serif;
  --sans:  'Hanken Grotesk', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --mono:  'JetBrains Mono', ui-monospace, 'SFMono-Regular', monospace;

  --wrap: min(1140px, calc(100% - clamp(40px, 10vw, 80px)));
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; }

html {
  min-height: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  min-width: 0;
  margin: 0;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--body);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

::selection { background: var(--accent); color: var(--bg); }

a { color: inherit; text-decoration: none; }
input, textarea, button { font: inherit; }
button { border: 0; background: none; }
img, svg { max-width: 100%; display: block; }
h1, h2, h3, h4, p, li { overflow-wrap: anywhere; }

.section-inner { width: var(--wrap); margin: 0 auto; }
main, .site-nav, .site-footer { position: relative; z-index: 2; }

.eyebrow {
  margin: 0 0 22px;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
}

/* ---------- pixel avatar chip ---------- */
.av-chip {
  display: inline-flex;
  align-items: flex-end;
  justify-content: center;
  flex: none;
  overflow: hidden;
  background: var(--ink);
  border-radius: 7px;
}
.av-chip svg { display: block; }

/* ---------- NAV ---------- */
.site-nav {
  position: sticky;
  top: 0; left: 0; right: 0;
  z-index: 60;
  background: rgba(238,241,243,0.82);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 240ms var(--ease), background 240ms var(--ease);
}
.site-nav.is-stuck { border-bottom-color: var(--line); }
.site-nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: var(--wrap);
  height: 66px;
  margin: 0 auto;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--ink);
  white-space: nowrap;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.2vw, 28px);
  font-size: 14px;
  font-weight: 500;
  color: var(--body);
}
.nav-links a { position: relative; transition: color 160ms ease; }
.nav-links a:not(.nav-cta)::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: -5px;
  height: 1px; background: var(--accent); transition: right 220ms var(--ease);
}
.nav-links a:not(.nav-cta):hover { color: var(--ink); }
.nav-links a:not(.nav-cta):hover::after { right: 0; }
.nav-links .nav-cta {
  display: inline-flex; align-items: center;
  padding: 9px 16px;
  background: var(--ink);
  color: var(--bg);
  border-radius: 2px;
  font-weight: 600;
  transition: background 180ms ease;
}
.nav-links .nav-cta::after { display: none; }
.nav-links .nav-cta:hover { background: var(--accent); color: var(--bg); }

/* mobile hamburger + panel */
.nav-toggle {
  display: none;
  flex-direction: column; gap: 4px;
  padding: 11px;
  border: 1px solid var(--line);
  border-radius: 2px;
  cursor: pointer;
}
.nav-toggle span { display: block; width: 18px; height: 1.5px; background: var(--ink); transition: transform 200ms var(--ease), opacity 160ms ease; }
.mobile-nav { display: none; }
.mobile-nav[hidden] { display: none; }
@media (max-width: 960px) {
  .nav-links { display: none; }
  .nav-toggle { display: inline-flex; }
  .mobile-nav {
    display: flex; flex-direction: column;
    border-top: 1px solid var(--line);
    background: var(--bg);
    padding: 8px clamp(20px,5vw,40px) 18px;
  }
  .mobile-nav a {
    font-size: 16px; font-weight: 500; color: var(--ink);
    padding: 13px 0; border-bottom: 1px solid var(--line);
  }
  .mobile-nav a:last-child { border-bottom: 0; }
  .mobile-nav .nav-cta {
    margin-top: 14px; text-align: center;
    background: var(--ink); color: var(--bg);
    border-radius: 2px; padding: 13px 16px; font-weight: 600;
  }
  .site-nav.is-open .nav-toggle span:nth-child(1) { transform: translateY(5.5px) rotate(45deg); }
  .site-nav.is-open .nav-toggle span:nth-child(2) { opacity: 0; }
  .site-nav.is-open .nav-toggle span:nth-child(3) { transform: translateY(-5.5px) rotate(-45deg); }
}

/* ---------- HERO ---------- */
.hero { padding: clamp(48px,8vw,96px) 0 clamp(44px,7vw,80px); }
.hero-grid {
  display: flex; flex-wrap: wrap;
  gap: clamp(36px,5vw,72px);
  align-items: flex-start;
}
.hero-grid > div:first-child { flex: 1 1 460px; min-width: 300px; }
.hero-grid > .ai-card { flex: 1 1 360px; min-width: 300px; }
.hero h1 {
  margin: 0 0 26px;
  font-family: var(--serif);
  font-weight: 580;
  font-size: clamp(40px, 6.4vw, 74px);
  line-height: 1.03;
  letter-spacing: -0.015em;
  color: var(--ink);
  text-wrap: balance;
}
.hero h1 em, .section-head h2 em, .band h2 em, .contact h2 em, .band-dark h2 em {
  font-style: italic; color: var(--accent);
}
.hero-lead {
  max-width: 46ch;
  margin: 0 0 34px;
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.55;
  color: var(--body);
  text-wrap: pretty;
}
.actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-id {
  display: flex; align-items: center; gap: 13px;
  margin: 0; padding-top: 26px;
  border-top: 1px solid var(--line);
  max-width: 46ch;
}
.hero-id__txt { margin: 0; font-size: 13.5px; line-height: 1.5; color: var(--muted); }
.hero-id__txt b { font-weight: 600; color: var(--body); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 50px;
  padding: 15px 24px;
  border-radius: 7px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms var(--ease), box-shadow 220ms var(--ease);
}
.btn.primary { background: var(--ink); color: var(--bg); border: 1px solid var(--ink); box-shadow: 0 1px 2px rgba(27,36,48,0.12); }
.btn.primary:hover { background: var(--accent); border-color: var(--accent); transform: translateY(-2px); box-shadow: 0 12px 26px -12px rgba(42,79,203,0.55); }
.btn.ghost { background: transparent; color: var(--ink); border: 1px solid var(--line); }
.btn.ghost:hover { border-color: var(--ink); transform: translateY(-2px); box-shadow: 0 10px 22px -16px rgba(27,36,48,0.5); }
.btn .arrow { transition: transform 200ms var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }

/* hero AI-answer mock card (stepped reveal) */
.ai-card {
  align-self: flex-start;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--card);
  overflow: hidden;
  box-shadow: 0 1px 0 rgba(27,36,48,0.04), 0 28px 56px -30px rgba(27,36,48,0.30);
}
.ai-card__bar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 18px; border-bottom: 1px solid var(--line);
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--muted);
}
.ai-card__bar .dot {
  display: inline-flex; align-items: center; gap: 8px;
}
.ai-card__bar .dot::before {
  content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--accent);
}
.ai-card__body { padding: 20px 18px; min-height: 252px; }
.ai-card__lbl { font-size: 12px; color: var(--muted); margin: 0 0 8px; }
.ai-card__q {
  display: inline-block; margin: 0 0 20px;
  background: var(--bg); border: 1px solid var(--line);
  border-radius: 12px 12px 12px 3px; padding: 11px 15px;
  font-size: 15px; color: var(--ink);
}
.ai-card__cites {
  background: var(--accent-soft); border: 1px solid rgba(42,79,203,0.18);
  border-radius: 8px; padding: 14px 15px;
}
.ai-card__cites p { margin: 0 0 12px; font-size: 14.5px; line-height: 1.5; color: var(--ink); }
.ai-card__cites ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 8px; }
.ai-card__cites li {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--mono); font-size: 12.5px; color: var(--ink);
}
.ai-card__cites li .num { color: var(--accent); }
.ai-card__cites li .tag { color: var(--muted); }
.ai-card__cites li.you { font-weight: 600; }
.ai-card__cites li.you .miss { border-bottom: 2px solid var(--accent); padding-bottom: 1px; }
.ai-card__point {
  margin: 0; padding: 16px 18px;
  border-top: 1px solid var(--line); background: var(--paper);
  font-family: var(--serif); font-style: italic; font-size: 20px; color: var(--ink);
}
.ai-step { opacity: 0; transform: translateY(8px); transition: opacity .5s ease, transform .5s ease; }
.ai-step.in { opacity: 1; transform: none; }

/* engine marquee */
.engines { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--paper); overflow: hidden; }
.engines__track {
  display: flex; gap: 56px; align-items: center; width: max-content;
  padding: 15px 0; animation: marq 34s linear infinite;
  font-family: var(--mono); font-size: 12.5px; letter-spacing: 0.08em; color: var(--muted);
}
.engines:hover .engines__track { animation-play-state: paused; }
.engines__track span { display: inline-flex; align-items: center; gap: 10px; white-space: nowrap; }
.engines__track span::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--accent); opacity: 0.7; }
@keyframes marq { to { transform: translateX(-50%); } }

/* ---------- generic section ---------- */
.section { padding: clamp(64px, 9vw, 124px) 0; }
.section, .band, .contact, .band-dark { border-top: 1px solid var(--line); }

.section-head {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px,1fr));
  gap: clamp(24px, 5vw, 72px); align-items: end; margin-bottom: clamp(40px, 5vw, 64px);
}
.section-head h2 {
  margin: 0; font-family: var(--serif); font-weight: 430;
  font-size: clamp(30px, 4.2vw, 52px); line-height: 1.06; letter-spacing: -0.015em;
  color: var(--ink); text-wrap: balance;
}
.section-head p { margin: 0; max-width: 46ch; font-size: clamp(16px,1.4vw,18px); line-height: 1.66; color: var(--body); text-wrap: pretty; }

/* light statement band */
.band { padding: clamp(56px, 8vw, 104px) 0; background: var(--paper); }
.band__inner { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px,1fr)); gap: clamp(28px, 5vw, 72px); align-items: start; }
.band h2 { margin: 0; font-family: var(--serif); font-weight: 430; font-size: clamp(28px, 3.6vw, 44px); line-height: 1.14; letter-spacing: -0.01em; color: var(--ink); text-wrap: balance; }
.band p { margin: 0; align-self: center; font-size: clamp(16px,1.4vw,18px); line-height: 1.65; color: var(--body); max-width: 46ch; text-wrap: pretty; }

/* DARK band (AI Search) - radialny gradient grafit -> takmer cierna + decentna kobaltova ziara */
.band-dark { position: relative; overflow: hidden; padding: clamp(72px, 10vw, 144px) 0; background: radial-gradient(135% 150% at 82% -10%, #1C2535 0%, #141B26 42%, #0C1118 100%); color: var(--dark-text); }
.band-dark::before { content: ""; position: absolute; top: -25%; right: -8%; width: 62%; height: 150%; background: radial-gradient(circle at center, rgba(42,79,203,0.22), rgba(42,79,203,0) 62%); pointer-events: none; z-index: 0; }
.band-dark > .section-inner { position: relative; z-index: 1; }
.band-dark .eyebrow { color: var(--accent); }
.band-dark .section-head h2 { color: #F1F5F9; }
.band-dark .section-head p { color: var(--dark-muted); max-width: 50ch; align-self: center; }
.dark-stats {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(248px,1fr));
  gap: clamp(28px,3vw,48px); border-top: 1px solid var(--dark-line); padding-top: clamp(36px,4vw,56px);
}
.dark-stat b { display: block; font-family: var(--serif); font-weight: 500; font-size: clamp(34px, 4vw, 52px); line-height: 1; color: #F1F5F9; background: linear-gradient(96deg, #FFFFFF 0%, #AFC0FF 100%); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.dark-stat span { display: block; margin-top: 16px; font-size: 15.5px; line-height: 1.6; color: var(--dark-muted); max-width: 32ch; }
.band-dark .actions { margin-top: 42px; }
.band-dark .btn.ghost { color: var(--dark-text); border-color: var(--dark-line); }
.band-dark .btn.ghost:hover { border-color: var(--dark-text); background: transparent; }

/* principles (Dopyt / Paka / Priorita) */
.principles {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(248px,1fr));
  gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: 8px; overflow: hidden;
}
.principle { background: var(--card); padding: clamp(26px,3vw,38px) clamp(22px,2.5vw,32px); }
.principle span { font-family: var(--mono); font-size: 13px; color: var(--accent); }
.principle h3 { margin: 18px 0 0; font-family: var(--serif); font-weight: 500; font-size: 24px; line-height: 1.1; color: var(--ink); }
.principle p { margin: 12px 0 0; font-size: 15.5px; line-height: 1.6; color: var(--body); }

/* loss grid (Kde sa straca vykon - 6 dlazdic) */
.loss-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(258px,1fr));
  gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: 8px; overflow: hidden;
}
.loss-cell { background: var(--card); padding: clamp(24px,2.6vw,34px) clamp(22px,2.4vw,30px); }
.loss-cell span { font-family: var(--mono); font-size: 13px; color: var(--accent); }
.loss-cell h3 { margin: 16px 0 9px; font-family: var(--serif); font-weight: 500; font-size: 20px; color: var(--ink); }
.loss-cell p { margin: 0; font-size: 14.5px; line-height: 1.55; color: var(--body); }

/* "kedy sa ozvat" cards */
.problem-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px,1fr)); gap: clamp(16px,1.6vw,20px); }
.problem-card {
  background: var(--card); border: 1px solid var(--line); border-radius: 8px;
  padding: clamp(24px,2.5vw,30px); transition: border-color .2s, transform .2s;
}
.problem-card::before { content: ""; display: block; width: 9px; height: 9px; border-radius: 50%; background: var(--accent); margin-bottom: 20px; }
.problem-card:hover { border-color: var(--ink); transform: translateY(-3px); }
.problem-card h3 { margin: 0 0 10px; font-family: var(--serif); font-weight: 500; font-size: 21px; line-height: 1.14; color: var(--ink); }
.problem-card p { margin: 0; font-size: 15px; line-height: 1.6; color: var(--body); }

/* expectation card (co cakat) */
.expectation-card { background: var(--card); border: 1px solid var(--line); border-radius: 8px; overflow: hidden; }
.expectation-card h3 { margin: 0; padding: clamp(26px,3vw,40px) clamp(24px,3vw,44px); border-bottom: 1px solid var(--line); font-family: var(--serif); font-weight: 500; font-size: clamp(22px,2.4vw,28px); line-height: 1.18; color: var(--ink); }
.expectation-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px,1fr)); }
.expectation-item { display: flex; gap: 14px; padding: 24px clamp(24px,3vw,44px); border-bottom: 1px solid var(--line); border-right: 1px solid var(--line); }
.expectation-item span { font-family: var(--mono); font-size: 12px; color: var(--accent); padding-top: 3px; }
.expectation-item p { margin: 0; font-size: 15.5px; line-height: 1.55; color: var(--body); }
.expectation-note { margin: 22px 0 0; max-width: 60ch; font-size: 15px; color: var(--muted); }

/* offer (AI Search Audit) */
.offer { display: grid; grid-template-columns: minmax(0,1.55fr) minmax(0,1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: 8px; overflow: hidden; }
.offer__main { background: var(--card); padding: clamp(28px,3vw,44px); }
.offer__main h3 { margin: 0 0 22px; font-family: var(--serif); font-weight: 500; font-size: clamp(22px,2.4vw,28px); line-height: 1.2; color: var(--ink); }
.offer__cap { font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); margin: 0 0 22px; }
.offer__list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 16px; }
.offer__list li { display: flex; gap: 13px; font-size: 15.5px; line-height: 1.5; color: var(--body); }
.offer__list li::before { content: "-"; color: var(--accent); font-family: var(--mono); font-size: 13px; padding-top: 2px; }
.offer__note { margin: 22px 0 0; font-size: 14px; color: var(--muted); max-width: 56ch; }
.offer__meta { background: var(--paper); padding: clamp(28px,3vw,44px); display: flex; flex-direction: column; }
.offer__meta dl { margin: 0 0 28px; display: flex; flex-direction: column; gap: 18px; }
.offer__meta dt { font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin: 0 0 4px; }
.offer__meta dd { margin: 0; font-size: 16px; color: var(--ink); }
.offer__meta .btn { margin-top: auto; }
@media (max-width: 820px) { .offer { grid-template-columns: 1fr; } }

/* formy spoluprace */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px,1fr)); gap: clamp(20px,3vw,40px); margin-top: clamp(32px,4vw,52px); }
.service { padding-top: 24px; border-top: 2px solid var(--ink); }
.service--accent { border-top-color: var(--accent); }
.service h3 { margin: 0 0 8px; font-family: var(--serif); font-weight: 500; font-size: 20px; color: var(--ink); }
.service p { margin: 0; font-size: 15px; line-height: 1.6; color: var(--body); }

/* about (O mne) */
.about__inner { display: grid; grid-template-columns: repeat(auto-fit, minmax(290px,1fr)); gap: clamp(32px,5vw,72px); align-items: start; }
.about__inner h2 { margin: 0 0 24px; font-family: var(--serif); font-weight: 430; font-size: clamp(30px,4.2vw,52px); line-height: 1.05; letter-spacing: -0.015em; color: var(--ink); }
.about__inner p { font-size: clamp(16px,1.4vw,18px); line-height: 1.66; color: var(--body); margin: 0 0 28px; max-width: 50ch; text-wrap: pretty; }
.about__sig { font-size: 15px !important; color: var(--body); }
.about__sig a, .about__inner a.link { border-bottom: 1px solid var(--accent); padding-bottom: 1px; color: var(--ink); font-weight: 600; }
.about-proof { display: flex; flex-direction: column; }
.about-photo { aspect-ratio: 4/5; width: 100%; max-width: 300px; background: repeating-linear-gradient(135deg,#E1E5EA,#E1E5EA 11px,#ECEFF3 11px,#ECEFF3 22px); border: 1px solid var(--line); border-radius: 8px; display: flex; align-items: flex-end; padding: 16px; margin-bottom: 20px; }
.about-photo span { font-family: var(--mono); font-size: 11px; color: var(--muted); background: var(--bg); padding: 5px 9px; border-radius: 3px; }
.about-stats { display: flex; flex-direction: column; gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: 8px; overflow: hidden; }
.about-stats div { background: var(--card); padding: 16px 18px; display: flex; align-items: baseline; justify-content: space-between; gap: 12px; }
.about-stats .k { font-size: 13.5px; color: var(--muted); }
.about-stats .v { font-family: var(--serif); font-size: 22px; color: var(--ink); }
.about-note { font-family: var(--mono); font-size: 11px; color: var(--muted); margin: 10px 0 0; }

/* fit yes/no */
.fit-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px,1fr)); gap: clamp(16px,2vw,24px); }
.fit-card { border: 1px solid var(--line); border-radius: 8px; padding: clamp(26px,3vw,38px); }
.fit-card--yes { background: var(--card); }
.fit-card--no { background: transparent; }
.fit-card__label { display: flex; align-items: center; gap: 9px; margin: 0 0 22px; font-family: var(--mono); font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; }
.fit-card__label::before { content: ""; width: 20px; height: 20px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; font-size: 13px; line-height: 1; }
.fit-card--yes .fit-card__label { color: var(--ink); }
.fit-card--yes .fit-card__label::before { content: "+"; background: var(--accent-soft); color: var(--accent); }
.fit-card--no .fit-card__label { color: var(--muted); }
.fit-card--no .fit-card__label::before { content: "–"; background: rgba(36,40,44,0.06); color: var(--muted); }
.fit-card ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 14px; }
.fit-card li { position: relative; padding-left: 18px; font-size: 15.5px; line-height: 1.5; }
.fit-card li::before { content: "·"; position: absolute; left: 0; top: 0; }
.fit-card--yes li { color: var(--body); }
.fit-card--yes li::before { color: var(--accent); }
.fit-card--no li { color: var(--muted); }

/* ---------- content teaser cards (blog/slovnik na homepage) ---------- */
.teaser-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px,1fr)); gap: clamp(16px,1.8vw,20px); }
.teaser {
  display: flex; flex-direction: column; gap: 12px;
  border: 1px solid var(--line); border-radius: 8px; background: var(--card);
  padding: clamp(22px,2.4vw,28px); transition: border-color 180ms ease, transform 180ms ease;
}
.teaser:hover { transform: translateY(-3px); border-color: var(--ink); }
.teaser__tag { font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); }
.teaser__title { margin: 0; font-family: var(--serif); font-weight: 500; font-size: 21px; line-height: 1.14; color: var(--ink); }
.teaser__excerpt { margin: 0; font-size: 14.5px; line-height: 1.55; color: var(--body); }
.teaser__more { margin-top: auto; font-family: var(--mono); font-size: 12px; color: var(--ink); display: inline-flex; gap: 6px; align-items: center; }
.teaser:hover .teaser__more .arrow { transform: translateX(4px); }
.teaser__more .arrow { transition: transform 200ms var(--ease); }

/* ---------- contact ---------- */
.contact { padding: clamp(64px, 9vw, 124px) 0; background: var(--paper); }
.contact__inner { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px,1fr)); gap: clamp(36px,5vw,72px); align-items: start; }
.contact h2 { margin: 0 0 24px; font-family: var(--serif); font-weight: 430; font-size: clamp(30px,4.4vw,52px); line-height: 1.05; letter-spacing: -0.015em; color: var(--ink); text-wrap: balance; }
.contact__copy p { max-width: 46ch; margin: 0 0 32px; font-size: clamp(16px,1.4vw,18px); line-height: 1.66; color: var(--body); }
.contact-lines { display: flex; flex-direction: column; gap: 10px; font-size: 16px; color: var(--ink); }
.contact-lines a { color: var(--ink); }
.contact-lines a:hover { color: var(--accent); }
.contact-steps { margin-top: 36px; padding-top: 30px; border-top: 1px solid var(--line); }
.contact-steps__h { font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); margin: 0 0 22px; }
.contact-steps ol { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 20px; counter-reset: step; }
.contact-steps li { display: flex; gap: 14px; font-size: 15px; line-height: 1.55; color: var(--body); counter-increment: step; }
.contact-steps li::before { content: "0" counter(step); font-family: var(--mono); font-size: 12px; color: var(--accent); padding-top: 2px; }

/* form */
.signal-form { display: grid; gap: 18px; border: 1px solid var(--line); border-radius: 8px; background: var(--card); padding: clamp(26px,3vw,36px); }
.field-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.signal-form label { display: grid; gap: 7px; min-width: 0; font-family: var(--mono); font-size: 11px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }
.signal-form input, .signal-form textarea { width: 100%; min-width: 0; border: 1px solid var(--line); border-radius: 3px; background: var(--bg); color: var(--ink); padding: 12px 14px; outline: 0; font-family: var(--sans); font-size: 15px; transition: border-color 150ms ease, box-shadow 150ms ease; }
.signal-form input::placeholder, .signal-form textarea::placeholder { color: #94A0AD; }
.signal-form textarea { min-height: 120px; resize: vertical; }
.signal-form input:focus, .signal-form textarea:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(42,79,203,0.12); }
.spam-check { display: grid; gap: 12px; }
.spam-check__title { margin: 0; font-size: 13px; color: var(--body); font-family: var(--sans); letter-spacing: 0; text-transform: none; font-weight: 400; }
.symbol-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.symbol-grid label { position: relative; display: block; }
.symbol-grid input { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0; pointer-events: none; }
.symbol-tile { display: grid; place-items: center; aspect-ratio: 1; border: 1px solid var(--line); border-radius: 6px; background: var(--bg); cursor: pointer; transition: border-color 150ms ease, background 150ms ease; }
.symbol-tile svg { width: 34px; height: 34px; fill: none; stroke: var(--body); stroke-width: 6; stroke-linecap: round; stroke-linejoin: round; }
.symbol-grid input:checked + .symbol-tile { border-color: var(--accent); background: var(--accent-soft); }
.symbol-grid input:checked + .symbol-tile svg { stroke: var(--accent); }
.field-trap { position: absolute; width: 1px; height: 1px; clip: rect(0 0 0 0); clip-path: inset(50%); opacity: 0; overflow: hidden; white-space: nowrap; }
.field-hint { display: block; margin-top: 6px; font-size: 12px; color: var(--muted); font-weight: 400; }
.field-optional { font-weight: 400; color: var(--muted); font-size: 0.85em; text-transform: none; letter-spacing: 0; }
.form-note { min-height: 18px; margin: 0; font-size: 13px; color: var(--muted); }
.form-note.ok, .form-note.error { min-height: 0; padding: 14px 16px; border-radius: 8px; font-size: 14px; line-height: 1.45; }
.form-note.ok { color: var(--ok); background: rgba(46,125,85,0.10); border: 1px solid rgba(46,125,85,0.35); }
.form-note.ok b { font-weight: 600; }
.form-note.error { color: var(--danger); background: rgba(178,59,34,0.08); border: 1px solid rgba(178,59,34,0.32); }

/* ---------- footer (dark) ---------- */
.site-footer { position: relative; overflow: hidden; background: radial-gradient(130% 170% at 90% -20%, #1A2331 0%, #131A25 48%, #0C1118 100%); color: var(--dark-muted); padding: clamp(48px,6vw,72px) 0 clamp(32px,4vw,48px); border-top: 1px solid var(--line); }
.site-footer::before { content: ""; position: absolute; top: -30%; right: -4%; width: 48%; height: 150%; background: radial-gradient(circle at center, rgba(42,79,203,0.16), rgba(42,79,203,0) 62%); pointer-events: none; z-index: 0; }
.site-footer__inner, .site-footer__bar { position: relative; z-index: 1; }
.site-footer__inner { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); gap: clamp(28px,4vw,48px); width: var(--wrap); margin: 0 auto; padding-bottom: clamp(36px,4vw,52px); border-bottom: 1px solid var(--dark-line); }
.site-footer__brand { max-width: 34ch; }
.site-footer__name { display: inline-flex; align-items: center; gap: 10px; font-family: var(--serif); font-size: 19px; font-weight: 500; color: #F1F5F9; margin-bottom: 16px; }
.site-footer__role { font-family: var(--mono); font-size: 11px; letter-spacing: .04em; text-transform: uppercase; color: #6F7479; margin: 0 0 13px; }
.site-footer__claim { font-size: 14.5px; line-height: 1.6; color: var(--dark-muted); margin: 0; }
.site-footer__col { display: flex; flex-direction: column; align-items: flex-start; gap: 10px; }
.site-footer__h { font-family: var(--mono); font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: #6F7479; margin: 0 0 6px; }
.site-footer__col a { font-size: 14.5px; color: var(--dark-text); }
.site-footer__col a:hover { color: #fff; }
.site-footer__bar { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 12px; width: var(--wrap); margin: 24px auto 0; font-family: var(--mono); font-size: 11.5px; color: #6F7479; }

/* =========================================================================
   SLOVNIK + BLOG + O MNE (sekundarne stranky)
   ========================================================================= */
.page-hero { padding: clamp(56px,8vw,104px) 0 0; }
.page-hero .eyebrow { margin-bottom: 14px; }
.page-hero h1 { margin: 0; font-family: var(--serif); font-weight: 430; font-size: clamp(38px,6vw,72px); line-height: 1.03; letter-spacing: -0.02em; max-width: 18ch; color: var(--ink); text-wrap: balance; }
.page-hero p { margin: 22px 0 0; max-width: 52ch; font-size: clamp(17px,1.6vw,20px); line-height: 1.55; color: var(--body); }

.breadcrumb { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; font-family: var(--mono); font-size: 12px; color: var(--muted); margin-bottom: 22px; }
.breadcrumb a { color: var(--body); }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb span.sep { opacity: 0.5; }

/* glossary list */
.glossary-controls { margin: 40px 0 8px; }
.glossary-search { width: 100%; max-width: 420px; border: 1px solid var(--line); border-radius: 3px; background: var(--card); padding: 12px 16px; outline: 0; font-size: 15px; transition: border-color 150ms ease, box-shadow 150ms ease; }
.glossary-search:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(42,79,203,0.12); }
.glossary-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px,1fr)); gap: 18px; margin-top: 26px; }
.term-card { display: block; border: 1px solid var(--line); border-radius: 8px; background: var(--card); padding: 24px; transition: transform 170ms var(--ease), border-color 170ms ease; }
.term-card:hover { transform: translateY(-3px); border-color: var(--ink); }
.term-card__head { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; }
.term-card h3 { margin: 0; font-family: var(--serif); font-weight: 500; font-size: 23px; line-height: 1.1; color: var(--ink); }
.term-card__abbr { font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em; color: var(--accent); white-space: nowrap; }
.term-card p { margin: 12px 0 0; font-size: 14.5px; line-height: 1.55; color: var(--body); }
.term-card__more { margin-top: 16px; font-family: var(--mono); font-size: 12px; color: var(--ink); display: inline-flex; gap: 6px; align-items: center; }
.glossary-empty { margin-top: 26px; color: var(--muted); font-size: 15px; }

/* blog list */
.post-list { display: grid; gap: 0; margin-top: 40px; }
.post-row { display: grid; grid-template-columns: 130px 1fr auto; gap: clamp(16px,4vw,48px); align-items: baseline; padding: 28px 0; border-top: 1px solid var(--line); transition: padding-left 200ms var(--ease); }
.post-row:hover { padding-left: 10px; }
.post-row:last-child { border-bottom: 1px solid var(--line); }
.post-row__date { font-family: var(--mono); font-size: 12px; color: var(--muted); letter-spacing: 0.04em; }
.post-row__body h3 { margin: 0; font-family: var(--serif); font-weight: 500; font-size: clamp(22px,2.6vw,30px); line-height: 1.12; color: var(--ink); }
.post-row__body p { margin: 10px 0 0; max-width: 60ch; font-size: 15px; line-height: 1.6; color: var(--body); }
.post-row__tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; }
.tag-pill { font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); border: 1px solid var(--line); border-radius: 999px; padding: 4px 10px; }
.post-row__arrow { font-family: var(--mono); color: var(--accent); font-size: 18px; transition: transform 200ms var(--ease); }
.post-row:hover .post-row__arrow { transform: translateX(5px); }

/* article / single term reading layout */
.article { padding: clamp(48px,7vw,96px) 0 0; }
.article__wrap { width: min(760px, calc(100% - 40px)); margin: 0 auto; }
.article__meta { display: flex; flex-wrap: wrap; gap: 8px 16px; align-items: center; font-family: var(--mono); font-size: 12px; color: var(--muted); margin: 18px 0 0; }
.article h1 { margin: 18px 0 0; font-family: var(--serif); font-weight: 430; font-size: clamp(32px,5vw,56px); line-height: 1.05; letter-spacing: -0.02em; color: var(--ink); text-wrap: balance; }
.article__lead { margin: 22px 0 0; font-size: clamp(18px,1.8vw,22px); line-height: 1.5; color: var(--body); }
.article__divider { height: 1px; background: var(--line); margin: 40px 0; }
.prose { font-size: 17.5px; line-height: 1.72; color: #2A323C; }
.prose > * + * { margin-top: 1.25em; }
.prose h2 { font-family: var(--serif); font-weight: 500; font-size: clamp(24px,3vw,33px); line-height: 1.15; letter-spacing: -0.015em; color: var(--ink); margin-top: 1.9em; }
.prose h3 { font-family: var(--serif); font-weight: 500; font-size: clamp(20px,2.3vw,25px); line-height: 1.2; color: var(--ink); margin-top: 1.6em; }
.prose a { color: var(--accent-deep); border-bottom: 1px solid rgba(30,60,160,0.35); }
.prose a:hover { border-bottom-color: var(--accent-deep); }
.prose ul, .prose ol { padding-left: 1.3em; }
.prose li + li { margin-top: 0.5em; }
.prose strong { color: var(--ink); }
.prose blockquote { margin: 0; padding: 4px 0 4px 22px; border-left: 3px solid var(--accent); font-family: var(--serif); font-size: 1.15em; font-style: italic; color: var(--body); }
.prose code { font-family: var(--mono); font-size: 0.86em; background: var(--paper); padding: 2px 6px; border-radius: 5px; }
.prose .callout { background: var(--paper); border: 1px solid var(--line); border-left: 3px solid var(--accent); border-radius: 8px; padding: 18px 20px; font-size: 16px; }
.prose .callout p { margin: 0; }
.prose .callout p + p { margin-top: 0.7em; }

/* FAQ (GEO friendly) */
.faq { margin-top: 2em; display: grid; gap: 0; }
.faq details { border-top: 1px solid var(--line); padding: 18px 0; }
.faq details:last-child { border-bottom: 1px solid var(--line); }
.faq summary { cursor: pointer; list-style: none; font-family: var(--serif); font-weight: 500; font-size: 19px; color: var(--ink); display: flex; justify-content: space-between; gap: 16px; align-items: center; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-family: var(--mono); color: var(--accent); font-size: 22px; transition: transform 200ms var(--ease); }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { margin: 14px 0 0; font-size: 16px; color: var(--body); line-height: 1.65; }

/* article footer / related + CTA */
.article-cta { margin: 56px 0; padding: 30px 28px; border-radius: 8px; background: var(--paper); border: 1px solid var(--line); display: grid; gap: 14px; }
.article-cta h3 { margin: 0; font-family: var(--serif); font-weight: 500; font-size: 24px; color: var(--ink); }
.article-cta p { margin: 0; font-size: 15.5px; color: var(--body); max-width: 52ch; }
.related { margin: 50px 0 0; }
.related h4 { font-family: var(--mono); font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); margin: 0 0 16px; }
.related-links { display: flex; flex-wrap: wrap; gap: 10px; }
.related-links a { font-family: var(--mono); font-size: 12.5px; border: 1px solid var(--line); border-radius: 999px; padding: 7px 14px; color: var(--body); transition: border-color 150ms ease, color 150ms ease; }
.related-links a:hover { border-color: var(--accent); color: var(--accent); }

/* ---------- scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 700ms var(--ease), transform 700ms var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal-stagger > * { opacity: 0; transform: translateY(18px); transition: opacity 600ms var(--ease), transform 600ms var(--ease); }
.reveal-stagger.in > * { opacity: 1; transform: none; }
.reveal-stagger.in > *:nth-child(2) { transition-delay: 70ms; }
.reveal-stagger.in > *:nth-child(3) { transition-delay: 140ms; }
.reveal-stagger.in > *:nth-child(4) { transition-delay: 210ms; }
.reveal-stagger.in > *:nth-child(5) { transition-delay: 280ms; }
.reveal-stagger.in > *:nth-child(6) { transition-delay: 350ms; }

/* ---------- responsive ---------- */
@media (max-width: 900px) {
  .offer { grid-template-columns: 1fr; }
  .expectation-item { border-right: 0; }
  .post-row { grid-template-columns: 1fr; gap: 6px; }
  .post-row__arrow { display: none; }
}
@media (max-width: 560px) {
  .field-grid { grid-template-columns: 1fr; }
  .symbol-grid { grid-template-columns: repeat(2, 1fr); }
  .site-footer__bar { flex-direction: column; align-items: flex-start; gap: 6px; }
}

/* cookie / consent lista */
.cookie-bar { position: fixed; left: 50%; bottom: 18px; transform: translateX(-50%); z-index: 9999; max-width: 680px; width: calc(100% - 32px); display: flex; flex-wrap: wrap; align-items: center; gap: 12px 18px; justify-content: space-between; background: var(--card); border: 1px solid var(--line); border-radius: 10px; padding: 16px 18px; box-shadow: 0 18px 48px -20px rgba(27,36,48,0.35); }
.cookie-bar[hidden] { display: none; }
.cookie-bar__text { margin: 0; font-size: 14px; line-height: 1.5; color: var(--body); flex: 1 1 320px; }
.cookie-bar__actions { display: flex; gap: 10px; flex: 0 0 auto; }
.cookie-bar .cb-btn { cursor: pointer; border-radius: 2px; padding: 9px 16px; font-size: 14px; font-weight: 600; border: 1px solid var(--line); background: transparent; color: var(--body); }
.cookie-bar .cb-btn.allow { background: var(--ink); border-color: var(--ink); color: var(--bg); }
.cookie-bar .cb-btn.allow:hover { background: var(--accent); border-color: var(--accent); }
@media (max-width: 560px) { .cookie-bar { flex-direction: column; align-items: stretch; } .cookie-bar__actions { justify-content: flex-end; } }

/* reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
  .reveal, .reveal-stagger > *, .ai-step { opacity: 1 !important; transform: none !important; }
}

/* ===================== E-E-A-T: autor box, kategorie, tagy ===================== */
.author-box { display: flex; gap: 18px; align-items: flex-start; margin: 50px 0 0; padding: 24px; border: 1px solid var(--line); border-radius: 8px; background: var(--paper); }
.author-box__avatar { flex: 0 0 auto; width: 64px; height: 64px; border-radius: 8px; overflow: hidden; display: flex; align-items: flex-end; justify-content: center; background: var(--ink); color: var(--dark-text); font-family: var(--serif); font-weight: 500; font-size: 22px; }
.author-box__avatar img, .author-box__avatar svg { width: 100%; height: 100%; object-fit: cover; }
.author-box__body { min-width: 0; }
.author-box__name { margin: 2px 0 0; font-family: var(--serif); font-weight: 500; font-size: 18px; color: var(--ink); }
.author-box__name span { display: block; font-family: var(--mono); font-weight: 400; font-size: 11.5px; letter-spacing: 0.04em; color: var(--muted); margin-top: 3px; text-transform: none; }
.author-box__bio { margin: 12px 0 0; font-size: 15px; line-height: 1.6; color: var(--body); max-width: 60ch; }
.author-box__links { margin: 12px 0 0; font-family: var(--mono); font-size: 12.5px; display: flex; flex-wrap: wrap; align-items: center; gap: 8px; }
.author-box__links a { color: var(--accent-deep); border-bottom: 1px solid rgba(30,60,160,0.3); }
.author-box__links a:hover { border-bottom-color: var(--accent-deep); }
.author-box__links .sep { color: var(--muted); }
@media (max-width: 600px) { .author-box { flex-direction: column; gap: 14px; } }

.eyebrow .cat-link { color: inherit; border-bottom: 1px solid transparent; transition: border-color 150ms ease; }
.eyebrow .cat-link:hover { border-bottom-color: currentColor; }

.article-tags { display: flex; flex-wrap: wrap; gap: 8px; margin: 36px 0 0; }
.article-tags a.tag-pill { transition: border-color 150ms ease, color 150ms ease; }
.article-tags a.tag-pill:hover { border-color: var(--accent); color: var(--accent); }

.blog-nav { display: flex; flex-wrap: wrap; gap: 10px; margin: 0 0 32px; }
.blog-nav__chip { font-family: var(--mono); font-size: 12.5px; border: 1px solid var(--line); border-radius: 999px; padding: 8px 16px; color: var(--body); transition: border-color 150ms ease, color 150ms ease, background 150ms ease; }
.blog-nav__chip:hover { border-color: var(--accent); color: var(--accent); }
.blog-nav__chip.is-active { background: var(--ink); color: var(--bg); border-color: var(--ink); }

.author-page__head { display: flex; gap: clamp(20px,4vw,40px); align-items: flex-start; margin: 8px 0 0; }
.author-page__photo { flex: 0 0 auto; width: 140px; height: 140px; border-radius: 12px; overflow: hidden; display: flex; align-items: flex-end; justify-content: center; background: var(--ink); color: var(--dark-text); font-family: var(--serif); font-weight: 500; font-size: 46px; }
.author-page__photo img, .author-page__photo svg { width: 100%; height: 100%; object-fit: cover; }
.author-page__intro { margin: 0; }
.author-page__intro.prose { font-size: 17.5px; }
@media (max-width: 640px) { .author-page__head { flex-direction: column; gap: 18px; } .author-page__photo { width: 110px; height: 110px; font-size: 38px; } }

/* =========================================================================
   v4c CRAFT PASS (2026-06-14) - zivy avatar, Fraunces linka, hlbka, lead-gen.
   Iba svaton.sk. Stone & Cobalt paleta nezmenena.
   ========================================================================= */

/* ---------- zivy fotoavatar (.av-node) ---------- */
.av-node { position: relative; display: inline-flex; flex: none; width: var(--av, 30px); height: var(--av, 30px); }
.av-node__img { width: 100%; height: 100%; border-radius: 50%; object-fit: cover; background: var(--card); border: 1px solid var(--line); display: block; }
.av-node::before {
  content: ""; position: absolute; inset: -3px; border-radius: 50%;
  border: 1px solid var(--accent); opacity: 0.4;
  animation: av-pulse 4.5s var(--ease) infinite; pointer-events: none;
}
.av-node::after {
  content: ""; position: absolute; right: 2%; bottom: 2%;
  width: 26%; height: 26%; min-width: 5px; min-height: 5px; max-width: 9px; max-height: 9px;
  border-radius: 50%; background: var(--accent); border: 2px solid var(--card);
}
.av-node--lg::after { border-width: 2.5px; }
@keyframes av-pulse {
  0%   { transform: scale(1);    opacity: 0.5; }
  70%  { transform: scale(1.16); opacity: 0; }
  100% { transform: scale(1.16); opacity: 0; }
}
/* avatar v tmavej paticke: biely lem bodky na tmavom by rusil -> jemnejsi */
.site-footer .av-node__img { border-color: var(--dark-line); }
.site-footer .av-node::after { border-color: #131A25; }

/* ---------- hero: animovana linka pod akcentovanym slovom ---------- */
.hero h1 em { position: relative; }
.hero h1 em::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0.02em; height: 3px;
  background: var(--accent); border-radius: 2px;
  transform: scaleX(0); transform-origin: left center;
  animation: hero-draw 900ms var(--ease) 450ms forwards;
}
@keyframes hero-draw { to { transform: scaleX(1); } }

/* ---------- hlbka a hover na kartach ---------- */
.problem-card, .teaser, .term-card, .expectation-card { box-shadow: 0 1px 2px rgba(27,36,48,0.05); }
.problem-card:hover, .teaser:hover, .term-card:hover { box-shadow: 0 18px 36px -24px rgba(27,36,48,0.5); }
.loss-grid, .principles { box-shadow: 0 1px 2px rgba(27,36,48,0.05), 0 28px 56px -42px rgba(27,36,48,0.45); }
.loss-cell, .principle { transition: background 180ms ease; }
.loss-cell:hover, .principle:hover { background: var(--paper); }
.offer { position: relative; box-shadow: 0 1px 2px rgba(27,36,48,0.05), 0 32px 64px -46px rgba(27,36,48,0.45); }
.offer::after { content: ""; position: absolute; left: 0; right: 0; top: 0; height: 2px; background: var(--accent); z-index: 2; }

/* ---------- hero kompetencny pas (01 SEO / 02 PPC / 03 AI Search) ---------- */
.competence { border-top: 1px solid var(--line); background: var(--card); }
.competence__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1px; background: var(--line); width: var(--wrap); margin: 0 auto; }
.competence__cell { position: relative; background: var(--card); padding: clamp(26px,3vw,40px) clamp(22px,2.6vw,34px); transition: background 180ms ease; }
.competence__cell::before { content: ""; position: absolute; left: 0; top: 0; width: 100%; height: 2px; background: var(--accent); }
.competence__cell:hover { background: var(--paper); }
.competence__cell .ix { font-family: var(--mono); font-size: 13px; color: var(--accent); }
.competence__cell h3 { margin: 14px 0 8px; font-family: var(--serif); font-weight: 600; font-size: 22px; line-height: 1.1; color: var(--ink); }
.competence__cell p { margin: 0; font-size: 14.5px; line-height: 1.55; color: var(--body); }

/* ---------- O mne: realna fotka (nahrada placeholderov) ---------- */
.about-portrait { display: flex; }
.about-portrait img { width: 100%; max-width: 340px; aspect-ratio: 1 / 1; object-fit: cover; border-radius: 12px; border: 1px solid var(--line); box-shadow: 0 1px 2px rgba(27,36,48,0.06), 0 30px 60px -42px rgba(27,36,48,0.5); }

/* =========================================================================
   LEAD-GEN: AI Search checker (#nastroj), lead magnet (#zadarmo), hub (#hub)
   ========================================================================= */
.tag-new { display: inline-block; font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: #fff; background: var(--accent); padding: 4px 10px; border-radius: 6px; margin: 0 0 16px; }

/* ---- nastroj (checker) ---- */
.tool { background: var(--card); border: 1px solid var(--line); border-radius: 14px; overflow: hidden; box-shadow: 0 1px 2px rgba(27,36,48,0.05), 0 34px 70px -48px rgba(27,36,48,0.5); }
.tool__grid { display: grid; grid-template-columns: 1.1fr 0.9fr; }
@media (max-width: 880px) { .tool__grid { grid-template-columns: 1fr; } }
.tool__form { padding: clamp(24px,3vw,32px); border-right: 1px solid var(--line); }
@media (max-width: 880px) { .tool__form { border-right: 0; border-bottom: 1px solid var(--line); } }
.tool__url { margin: 0 0 20px; }
.tool__url input { width: 100%; border: 1px solid var(--line-strong); border-radius: 8px; padding: 12px 14px; font-family: var(--mono); font-size: 13.5px; color: var(--ink); background: var(--bg); outline: 0; transition: border-color 150ms ease, box-shadow 150ms ease; }
.tool__url input:focus { border-color: var(--accent); background: var(--card); box-shadow: 0 0 0 3px rgba(42,79,203,0.12); }
.q { display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 12px 0; border-top: 1px solid var(--line); }
.q:first-of-type { border-top: 0; }
.q__txt { font-size: 14.5px; color: var(--ink); }
.q__txt small { display: block; color: var(--muted); font-size: 12.5px; font-weight: 400; margin-top: 2px; }
.seg { display: inline-flex; border: 1px solid var(--line-strong); border-radius: 8px; overflow: hidden; flex: none; }
.seg button { padding: 7px 12px; font-size: 12.5px; font-weight: 600; color: var(--muted); background: var(--card); cursor: pointer; border-right: 1px solid var(--line); transition: background 150ms ease, color 150ms ease; }
.seg button:last-child { border-right: 0; }
.seg button.on[data-v="yes"] { background: var(--ok); color: #fff; }
.seg button.on[data-v="no"] { background: var(--danger); color: #fff; }
.seg button.on[data-v="idk"] { background: var(--muted); color: #fff; }
.tool__out { padding: clamp(24px,3vw,32px); background: var(--paper); }
.gauge { display: flex; align-items: center; gap: 18px; margin-bottom: 22px; }
.gauge__ring { --p: 0; --c: var(--danger); width: 104px; height: 104px; border-radius: 50%; flex: none; background: conic-gradient(var(--c) calc(var(--p) * 1%), var(--line) 0); display: grid; place-items: center; transition: 500ms var(--ease); }
.gauge__ring i { width: 80px; height: 80px; border-radius: 50%; background: var(--paper); display: grid; place-items: center; font-family: var(--serif); font-size: 29px; color: var(--ink); font-style: normal; }
.gauge__lbl .s { font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); }
.gauge__lbl .t { font-family: var(--serif); font-size: 21px; color: var(--ink); margin-top: 3px; }
.fixes { margin: 0 0 22px; }
.fixes h4 { font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); margin: 0 0 12px; }
.fix { display: flex; gap: 11px; padding: 10px 0; border-top: 1px solid var(--line); font-size: 14px; color: var(--body); }
.fix:first-of-type { border-top: 0; }
.fix .n { font-family: var(--mono); color: var(--accent); font-weight: 600; flex: none; }
.fix b { color: var(--ink); font-weight: 600; }
.fix.empty { color: var(--ok); }
.gate { background: var(--card); border: 1px dashed var(--line-strong); border-radius: 12px; padding: 18px; }
.gate p { font-size: 14px; color: var(--body); margin: 0 0 12px; }
.gate p b { color: var(--ink); }
.gate__row { display: flex; gap: 8px; flex-wrap: wrap; }
.gate__row input[type="email"] { flex: 1; min-width: 180px; border: 1px solid var(--line-strong); border-radius: 8px; padding: 12px 14px; font-size: 14px; background: var(--bg); color: var(--ink); outline: 0; transition: border-color 150ms ease, box-shadow 150ms ease; }
.gate__row input[type="email"]:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(42,79,203,0.12); }
.tool__note { font-size: 12.5px; color: var(--muted); margin: 14px 0 0; display: flex; align-items: center; gap: 7px; }
.tool__note::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--ok); flex: none; }

/* ---- consent + lead poznamky (lead magnet / gate) ---- */
.consent { display: flex; gap: 10px; align-items: flex-start; margin: 12px 0 0; font-size: 12.5px; line-height: 1.45; color: var(--muted); cursor: pointer; font-family: var(--sans); letter-spacing: 0; text-transform: none; font-weight: 400; }
.consent input { flex: none; width: 16px; height: 16px; margin-top: 1px; accent-color: var(--accent); }
.lead-note { min-height: 0; margin: 0 0 14px; padding: 12px 14px; border-radius: 8px; font-size: 13.5px; line-height: 1.45; }
.lead-note.ok { color: var(--ok); background: rgba(46,125,85,0.10); border: 1px solid rgba(46,125,85,0.35); }
.lead-note.ok b { font-weight: 600; }
.lead-note.error { color: var(--danger); background: rgba(178,59,34,0.08); border: 1px solid rgba(178,59,34,0.32); }

/* ---- lead magnet (#zadarmo) ---- */
.lm { display: grid; grid-template-columns: 1fr 1fr; gap: 0; position: relative; overflow: hidden; border-radius: 16px; color: var(--dark-text); background: radial-gradient(130% 150% at 85% -10%, #1C2535 0%, #141B26 45%, #0C1118 100%); }
.lm::before { content: ""; position: absolute; top: -25%; right: -8%; width: 55%; height: 150%; background: radial-gradient(circle at center, rgba(42,79,203,0.20), rgba(42,79,203,0) 62%); pointer-events: none; z-index: 0; }
@media (max-width: 820px) { .lm { grid-template-columns: 1fr; } }
.lm__l, .lm__r { position: relative; z-index: 1; padding: clamp(30px,4vw,44px); }
.lm__l .eyebrow { color: #8FA6F2; }
.lm__l h2 { margin: 0; font-family: var(--serif); font-weight: 500; font-size: clamp(26px,3.4vw,38px); line-height: 1.12; color: #fff; }
.lm__l ul { list-style: none; padding: 0; margin: 22px 0 0; font-size: 15px; }
.lm__l li { display: flex; gap: 10px; padding: 7px 0; color: var(--dark-text); line-height: 1.5; }
.lm__l li::before { content: "-"; color: #8FA6F2; flex: none; }
.lm__r { background: rgba(13,18,25,0.55); display: flex; flex-direction: column; justify-content: center; border-left: 1px solid var(--dark-line); }
@media (max-width: 820px) { .lm__r { border-left: 0; border-top: 1px solid var(--dark-line); } }
.lm__cover { font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--dark-muted); margin: 0 0 18px; }
.lm__r label.lab { display: block; font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--dark-muted); margin: 0 0 7px; }
.lm__r input[type="email"] { width: 100%; border: 1px solid var(--dark-line); background: #0D1219; color: #fff; border-radius: 10px; padding: 13px 15px; font-size: 15px; outline: 0; transition: border-color 150ms ease; }
.lm__r input[type="email"]:focus { border-color: var(--accent); }
.lm__r .btn { margin-top: 14px; width: 100%; }
.lm__r .consent { color: var(--dark-muted); }
.lm__r .fine { font-size: 12px; color: var(--dark-muted); margin: 14px 0 0; }
.lm__r .lead-note.ok { color: #9FE3C0; background: rgba(46,125,85,0.18); border-color: rgba(46,125,85,0.45); }
.lm__r .lead-note.error { color: #F0B3A4; background: rgba(178,59,34,0.18); border-color: rgba(178,59,34,0.45); }

/* ---- hub (#hub) ---- */
.hub-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
@media (max-width: 820px) { .hub-grid { grid-template-columns: 1fr; } }
.hub-card { background: var(--card); border: 1px solid var(--line); border-radius: 12px; padding: 24px; box-shadow: 0 1px 2px rgba(27,36,48,0.05); transition: transform 180ms var(--ease), border-color 180ms ease, box-shadow 220ms var(--ease); }
.hub-card:not(.soon):hover { transform: translateY(-3px); border-color: var(--ink); box-shadow: 0 18px 36px -24px rgba(27,36,48,0.5); }
.hub-card .ix { font-family: var(--mono); font-size: 12px; color: var(--accent); margin-bottom: 14px; }
.hub-card h3 { margin: 0 0 8px; font-family: var(--serif); font-size: 21px; font-weight: 500; color: var(--ink); }
.hub-card p { margin: 0; font-size: 14px; line-height: 1.55; color: var(--body); }
.hub-card .meta { font-family: var(--mono); font-size: 11.5px; color: var(--muted); margin-top: 16px; }
.hub-card.soon { opacity: 0.62; }

/* reduced-motion: linka rovno plna, prstenec staticky */
@media (prefers-reduced-motion: reduce) {
  .hero h1 em::after { transform: scaleX(1); animation: none; }
  .av-node::before { animation: none; opacity: 0.4; }
}
