@font-face {
  font-family: "Geist";
  src: url("/assets/generace-geist-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

@font-face {
  font-family: "Geist";
  src: url("/assets/generace-geist-latin-ext.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  unicode-range: U+0100-024F, U+1E00-1EFF, U+20A0-20AB, U+20AD-20CF, U+2C60-2C7F, U+A720-A7FF;
}

:root {
  color: #071a2d;
  background: #f5f8fa;
  font-family: "Geist", Arial, Helvetica, sans-serif;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  --navy: #071a2d;
  --navy-soft: #0a1c31;
  --navy-line: #1b3b55;
  --paper: #f5f8fa;
  --white: #ffffff;
  --red: #ce202f;
  --red-bright: #e21f32;
  --cyan: #21b7dd;
  --ink-muted: #637483;
  --line: #dce5ea;
  --shell: 1380px;
}

@property --proof-flash-angle {
  syntax: "<angle>";
  inherits: false;
  initial-value: 0deg;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  min-width: 0;
  min-height: 100vh;
  color: var(--navy);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}

button,
input {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.site-canvas {
  overflow: hidden;
}

.intro-sequence {
  display: none;
}

.motion-ready .intro-sequence {
  display: grid;
  place-items: center;
  position: fixed;
  inset: 0;
  z-index: 130;
  overflow: hidden;
  pointer-events: none;
  animation: intro-sequence-hide 10ms 2.05s both;
}

.intro-panel {
  width: 51%;
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 1;
  background: #03111f;
}

.intro-panel-left {
  left: 0;
  animation: intro-panel-left 0.82s 1.32s cubic-bezier(0.76, 0, 0.24, 1) both;
}

.intro-panel-right {
  right: 0;
  animation: intro-panel-right 0.82s 1.32s cubic-bezier(0.76, 0, 0.24, 1) both;
}

.intro-brand {
  display: grid;
  grid-template-columns: auto auto;
  align-items: end;
  gap: 0 16px;
  position: relative;
  z-index: 3;
  color: var(--white);
  animation: intro-brand 1.28s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.intro-brand b {
  font-size: clamp(64px, 12vw, 170px);
  font-weight: 820;
  line-height: 1;
  letter-spacing: -0.075em;
}

.intro-brand i {
  color: var(--cyan);
  font-size: clamp(19px, 3vw, 42px);
  font-style: normal;
  font-weight: 560;
  letter-spacing: 0.04em;
}

.intro-brand small {
  grid-column: 1 / -1;
  margin-top: 24px;
  color: #819bae;
  text-align: center;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 760;
  letter-spacing: 0.24em;
}

.intro-line {
  width: min(720px, 72vw);
  height: 1px;
  position: absolute;
  z-index: 2;
  background: linear-gradient(90deg, transparent, var(--red), var(--cyan), transparent);
  animation: intro-line 1.25s 0.16s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes intro-brand {
  0% {
    opacity: 0;
    filter: blur(22px);
    transform: scale(1.38);
  }
  48%,
  78% {
    opacity: 1;
    filter: blur(0);
    transform: scale(1);
  }
  100% {
    opacity: 0;
    filter: blur(8px);
    transform: scale(0.88);
  }
}

@keyframes intro-line {
  0% {
    opacity: 0;
    transform: scaleX(0);
  }
  52% {
    opacity: 1;
    transform: scaleX(1);
  }
  100% {
    opacity: 0;
    transform: scaleX(1);
  }
}

@keyframes intro-panel-left {
  to {
    transform: translateX(-101%);
  }
}

@keyframes intro-panel-right {
  to {
    transform: translateX(101%);
  }
}

@keyframes intro-sequence-hide {
  to {
    visibility: hidden;
  }
}

html.cezar-page-exiting .intro-sequence {
  display: grid;
  visibility: visible;
  pointer-events: auto;
  animation: none;
}

html.cezar-page-exiting .intro-panel-left {
  animation: intro-panel-left-exit 720ms both cubic-bezier(0.76, 0, 0.24, 1);
}

html.cezar-page-exiting .intro-panel-right {
  animation: intro-panel-right-exit 720ms both cubic-bezier(0.76, 0, 0.24, 1);
}

html.cezar-page-exiting .intro-line {
  animation: intro-line-exit 500ms 230ms both cubic-bezier(0.22, 1, 0.36, 1);
}

html.cezar-page-exiting .intro-brand {
  animation: intro-brand-exit 520ms 310ms both cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes intro-panel-left-exit {
  from {
    transform: translateX(-101%);
  }
  to {
    transform: translateX(0);
  }
}

@keyframes intro-panel-right-exit {
  from {
    transform: translateX(101%);
  }
  to {
    transform: translateX(0);
  }
}

@keyframes intro-line-exit {
  from {
    opacity: 0;
    transform: scaleX(0);
  }
  to {
    opacity: 1;
    transform: scaleX(1);
  }
}

@keyframes intro-brand-exit {
  from {
    opacity: 0;
    filter: blur(18px);
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    filter: blur(0);
    transform: scale(1);
  }
}

@keyframes intro-brand-mobile {
  0% {
    opacity: 0;
    filter: none;
    transform: scale(1.12);
  }
  48%,
  78% {
    opacity: 1;
    filter: none;
    transform: scale(1);
  }
  100% {
    opacity: 0;
    filter: none;
    transform: scale(0.94);
  }
}

@keyframes intro-brand-exit-mobile {
  from {
    opacity: 0;
    filter: none;
    transform: scale(0.94);
  }
  to {
    opacity: 1;
    filter: none;
    transform: scale(1);
  }
}

.hero-shell,
.common-section,
.contact-section {
  color: var(--white);
  background-color: var(--navy);
  background-image: url("/assets/generace-hero-technical-bg.png");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
}

.site-header {
  width: min(var(--shell), calc(100% - 88px));
  height: 86px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(219, 232, 241, 0.17);
  position: relative;
  z-index: 20;
}

.brand {
  min-width: 0;
  display: inline-flex;
  align-items: center;
  gap: 13px;
  color: var(--white);
}

.brand-mark {
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  display: block;
  background: url('/eshop-cezar-logo-2478832c.png') center / contain no-repeat;
  font-size: 0;
}

.brand-name {
  font-size: 20px;
  font-weight: 780;
  letter-spacing: -0.03em;
  white-space: nowrap;
}

.brand-name sup {
  margin-left: 0;
  position: relative;
  top: -0.28em;
  font-size: 8px;
  line-height: 0;
  vertical-align: baseline;
}

.brand-divider {
  width: 1px;
  height: 26px;
  background: rgba(255, 255, 255, 0.3);
}

.brand-tagline {
  color: #8da1b2;
  font-size: 13px;
  font-weight: 670;
  letter-spacing: 0.075em;
  white-space: nowrap;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(24px, 2.8vw, 50px);
}

.main-nav a,
.main-nav button {
  appearance: none;
  padding: 10px 0;
  color: #edf4f7;
  background: transparent;
  border: 0;
  cursor: pointer;
  font-size: 15px;
  font-weight: 610;
  transition: color 170ms ease;
}

.main-nav a:hover,
.main-nav button:hover,
.main-nav a:focus-visible,
.main-nav button:focus-visible {
  color: var(--cyan);
}

.main-nav .nav-contact {
  min-width: 124px;
  padding: 15px 24px;
  border: 1px solid rgba(255, 255, 255, 0.65);
  color: var(--white);
}

.main-nav .nav-contact:hover,
.main-nav .nav-contact:focus-visible {
  color: var(--white);
  border-color: var(--cyan);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  place-items: center;
  color: var(--white);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.35);
  cursor: pointer;
}

@media (min-width: 981px) {
  .site-header .brand,
  .site-header .main-nav {
    transform: translateY(7px);
  }
}

.hero {
  position: relative;
}

.hero-inner {
  width: min(var(--shell), calc(100% - 88px));
  min-height: 590px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(520px, 0.95fr) minmax(610px, 1.05fr);
  align-items: center;
  gap: 28px;
  position: relative;
}

.hero-copy {
  max-width: 660px;
  padding: 54px 0 48px;
  position: relative;
  top: 17px;
  z-index: 5;
}

.eyebrow {
  margin: 0 0 24px;
  color: var(--red);
  font-size: 12px;
  line-height: 1.35;
  font-weight: 790;
  letter-spacing: 0.145em;
}

.eyebrow::before {
  content: "";
  width: 38px;
  height: 2px;
  margin-right: 17px;
  display: inline-block;
  vertical-align: 0.27em;
  background: currentColor;
}

.eyebrow-dark {
  color: #f13a49;
}

.hero h1 {
  margin: 0;
  color: var(--white);
  font-size: clamp(57px, 5.2vw, 76px);
  line-height: 0.99;
  letter-spacing: -0.055em;
  font-weight: 780;
}

.hero h1 span {
  display: block;
}

.hero-lead {
  max-width: 450px;
  margin: 30px 0 0;
  color: #a8bac8;
  font-size: 19px;
  line-height: 1.55;
}

.hero-actions,
.contact-actions {
  margin-top: 26px;
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}

.hero-actions {
  margin-top: 24px;
  position: relative;
  top: 5px;
}

.button {
  min-height: 52px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  border: 0;
  border-radius: 0;
  cursor: pointer;
  font-size: 15px;
  font-weight: 720;
  transition: color 170ms ease, background-color 170ms ease, border-color 170ms ease, transform 170ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button:focus-visible,
.generation-band:focus-visible,
.generation-row:focus-visible,
.option:has(input:focus-visible),
.faq-item button:focus-visible,
.menu-toggle:focus-visible {
  outline: 3px solid var(--cyan);
  outline-offset: 3px;
}

.button-primary {
  color: var(--white);
  background: var(--red-bright);
  box-shadow: 7px 7px 0 rgba(111, 14, 27, 0.34);
}

.button-primary:hover {
  background: #f0273c;
}

.button-link {
  min-height: 48px;
  padding: 0 0 2px;
  color: var(--white);
  background: transparent;
  border-bottom: 2px solid var(--cyan);
}

.button-dark {
  color: var(--white);
  background: var(--navy);
}

.button-outline-light {
  color: var(--white);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.55);
}

.hero-product {
  min-width: 0;
  height: 590px;
  position: relative;
}

.app-screenshot {
  overflow: hidden;
  position: relative;
  background: #dfe8ee;
}

.app-screenshot img {
  width: 100%;
  height: 100%;
  max-width: none;
  position: absolute;
  left: 0;
  top: 0;
  object-fit: contain;
  object-position: center;
  user-select: none;
}

.hero-screenshot {
  width: 840px;
  height: auto;
  aspect-ratio: 64 / 35;
  position: absolute;
  top: 86px;
  right: -132px;
  border: 1px solid rgba(216, 230, 239, 0.46);
  box-shadow: 0 10px 24px rgba(0, 7, 13, 0.38), 0 38px 64px rgba(0, 7, 13, 0.62);
}

.generation-path {
  width: 236px;
  display: grid;
  gap: 27px;
  position: absolute;
  left: 0;
  top: 225px;
  z-index: 4;
}

.generation-path::before {
  content: "";
  width: 1px;
  height: 214px;
  position: absolute;
  left: -43px;
  top: 20px;
  background: rgba(255, 255, 255, 0.72);
}

.generation-band {
  min-height: 44px;
  padding: 0 15px;
  display: flex;
  align-items: center;
  gap: 9px;
  position: relative;
  color: var(--white);
  background: var(--generation-color);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 10px 24px rgba(0, 5, 12, 0.22);
  cursor: pointer;
  text-align: left;
  opacity: 0.84;
  transition: opacity 170ms ease, transform 170ms ease, box-shadow 170ms ease;
}

.generation-band::before {
  content: "";
  width: 44px;
  height: 1px;
  position: absolute;
  left: -44px;
  top: 50%;
  background: rgba(255, 255, 255, 0.72);
}

.generation-band::after {
  content: "";
  width: 9px;
  height: 9px;
  position: absolute;
  left: -49px;
  top: calc(50% - 5px);
  background: var(--generation-color);
  border: 2px solid var(--white);
  border-radius: 50%;
}

.generation-band.is-active {
  opacity: 1;
  box-shadow: 0 13px 30px rgba(0, 5, 12, 0.35);
}

.generation-band:hover {
  opacity: 1;
  transform: translateX(4px);
}

.generation-band span {
  font-size: 18px;
  font-weight: 780;
  white-space: nowrap;
}

.generation-band small {
  font-size: 14px;
  font-weight: 560;
  white-space: normal;
}

.decision-strip {
  min-height: 282px;
  padding: 44px max(44px, calc((100% - var(--shell)) / 2)) 39px;
  background: var(--paper);
}

.decision-strip h2,
.section-heading h2,
.system-heading h2,
.common-section h2,
.faq-intro h2,
.contact-section h2 {
  margin: 0;
  font-size: clamp(38px, 3.35vw, 56px);
  line-height: 1.04;
  letter-spacing: -0.045em;
  font-weight: 740;
}

.decision-strip .eyebrow {
  margin-bottom: 18px;
}

.criteria-row {
  margin-top: 36px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr auto;
  align-items: center;
}

.criterion {
  min-height: 78px;
  padding: 0 30px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 19px;
  border-right: 1px solid #aebfca;
}

.criterion:first-child {
  padding-left: 0;
}

.criterion-number {
  color: var(--red);
  font-size: 35px;
  line-height: 1;
  font-weight: 760;
  letter-spacing: -0.05em;
}

.criterion:nth-child(2) .criterion-number {
  color: var(--cyan);
}

.criterion:nth-child(3) .criterion-number {
  color: #1783c7;
}

.criterion h3 {
  margin: 0 0 7px;
  font-size: 17px;
  font-weight: 740;
}

.criterion p {
  max-width: 230px;
  margin: 0;
  color: var(--ink-muted);
  font-size: 16px;
  line-height: 1.42;
}

.criteria-action {
  margin-left: 35px;
  position: relative;
  top: 15px;
  box-shadow: none;
}

.trust-strip {
  min-height: 107px;
  padding: 18px max(44px, calc((100% - var(--shell)) / 2));
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--white);
  background: var(--navy);
  border-top: 1px solid var(--navy-line);
  position: relative;
  isolation: isolate;
  font-size: 18px;
}

@supports ((mask-composite: exclude) or (-webkit-mask-composite: xor)) {
  .trust-strip::after,
  .generation-detail::after {
  position: absolute;
  inset: 0;
  padding: 1px;
  background: conic-gradient(from var(--proof-flash-angle), transparent 0deg 312deg, rgb(102 219 238 / 7%) 323deg, rgb(102 219 238 / 38%) 336deg, rgb(255 255 255 / 46%) 346deg, rgb(206 32 47 / 34%) 355deg, transparent 360deg);
  content: "";
  pointer-events: none;
  filter: drop-shadow(0 0 3px rgb(102 219 238 / 24%));
  animation: proof-border-flash 7.2s linear infinite;
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  }

  .generation-detail::after {
    background: conic-gradient(from var(--proof-flash-angle), transparent 0deg 312deg, rgb(102 219 238 / 10%) 323deg, rgb(102 219 238 / 52%) 336deg, rgb(255 255 255 / 62%) 346deg, rgb(206 32 47 / 44%) 355deg, transparent 360deg);
    filter: drop-shadow(0 0 5px rgb(102 219 238 / 34%));
  }

  @keyframes proof-border-flash {
    to {
      --proof-flash-angle: 360deg;
    }
  }
}

.trust-line {
  width: 58px;
  height: 2px;
  margin-right: 22px;
  background: var(--red);
}

.trust-strip strong {
  font-size: 19px;
}

.trust-strip span:last-child {
  color: #afc0cc;
}

.section-shell {
  width: min(var(--shell), calc(100% - 88px));
  margin: 0 auto;
}

.finder-section {
  padding: 108px 0 120px;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  align-items: end;
  gap: 80px;
}

.section-heading .eyebrow {
  margin-bottom: 20px;
}

.section-heading > p,
.finder-heading > p,
.system-heading > p {
  margin: 0 0 3px;
  color: var(--ink-muted);
  font-size: 17px;
  line-height: 1.6;
}

.finder-questions {
  margin-top: 62px;
  border-top: 1px solid var(--line);
}

.finder-question {
  margin: 0;
  padding: 30px 0;
  display: grid;
  grid-template-columns: minmax(270px, 0.74fr) minmax(0, 1.26fr);
  gap: 50px;
  border: 0;
  border-bottom: 1px solid var(--line);
}

.finder-question legend {
  padding: 0;
  display: grid;
  grid-template-columns: 56px 1fr;
  align-items: baseline;
}

.finder-question legend > span {
  color: var(--cyan);
  font-size: 28px;
  font-weight: 760;
}

.finder-question:first-child legend > span {
  color: var(--red);
}

.finder-question legend strong {
  font-size: 18px;
}

.finder-question legend small {
  grid-column: 2;
  margin-top: 6px;
  color: var(--ink-muted);
  font-size: 14px;
  line-height: 1.45;
}

.option-row {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 9px;
  flex-wrap: wrap;
}

.option {
  min-height: 46px;
  padding: 0 15px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #425463;
  background: var(--paper);
  border: 1px solid #617b8d;
  cursor: pointer;
  font-size: 14px;
  font-weight: 630;
  transition: background-color 170ms ease, border-color 170ms ease, color 170ms ease;
}

.option:has(input:focus-visible) {
  outline: 3px solid rgb(33 183 221 / 32%);
  outline-offset: 2px;
  border-color: #1a9bbc;
}

.option:hover,
.option.is-selected {
  color: var(--navy);
  background: var(--white);
  border-color: var(--cyan);
}

.option input {
  width: 1px;
  height: 1px;
  position: absolute;
  opacity: 0;
}

.option-check {
  width: 19px;
  height: 19px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--white);
  border: 1px solid #9eafba;
}

.option.is-selected .option-check {
  background: var(--cyan);
  border-color: var(--cyan);
}

.recommendation {
  min-height: 112px;
  margin-top: 38px;
  padding: 25px 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-muted);
  background: var(--paper);
  border: 1px solid #768d9e;
}

.recommendation.is-ready {
  display: grid;
  grid-template-columns: auto 1fr auto;
  justify-content: initial;
  gap: 30px;
  color: var(--navy);
  border-color: #9dc9d7;
}

.recommendation-code {
  width: 96px;
  height: 76px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--generation-color);
  font-size: 22px;
  font-weight: 800;
}

.recommendation-copy .eyebrow {
  margin-bottom: 7px;
  font-size: 12px;
}

.recommendation-copy .eyebrow::before {
  display: none;
}

.recommendation-copy h3 {
  margin: 0 0 6px;
  font-size: 24px;
  letter-spacing: -0.025em;
}

.recommendation-copy p:last-child {
  margin: 0;
  color: var(--ink-muted);
  line-height: 1.5;
}

.generations-section {
  padding: 118px 0 130px;
  background: var(--paper);
}

.generation-browser {
  margin-top: 68px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(430px, 0.78fr);
  gap: 68px;
}

.generation-list {
  border-top: 1px solid #9fb1be;
}

.generation-row {
  width: 100%;
  min-height: 89px;
  padding: 0 14px 0 0;
  display: grid;
  grid-template-columns: 56px 105px 1fr auto;
  align-items: center;
  gap: 18px;
  color: var(--navy);
  background: transparent;
  border: 0;
  border-bottom: 1px solid #9fb1be;
  cursor: pointer;
  text-align: left;
  transition: padding 170ms ease, background-color 170ms ease;
}

.generation-row:hover,
.generation-row.is-active {
  padding-left: 18px;
  background: var(--white);
}

.generation-index {
  color: #7d909f;
  font-size: 12px;
  font-weight: 760;
  letter-spacing: 0.12em;
}

.generation-label {
  font-size: 26px;
  font-weight: 800;
}

.generation-audience {
  color: #485b6a;
  font-size: 16px;
  font-weight: 620;
}

.generation-detail {
  padding: 46px 48px;
  align-self: stretch;
  background: var(--white);
  border: 1px solid #768d9e;
  border-top: 4px solid var(--generation-color);
  position: relative;
  isolation: isolate;
  box-shadow: 0 22px 55px rgba(10, 28, 49, 0.08);
}

.generation-detail .eyebrow {
  margin-bottom: 20px;
  color: var(--generation-color);
}

.generation-detail h3 {
  margin: 0;
  font-size: 36px;
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.generation-detail > p:not(.eyebrow) {
  margin: 22px 0 0;
  color: var(--ink-muted);
  font-size: 17px;
  line-height: 1.6;
}

.generation-detail ul {
  margin: 30px 0 34px;
  padding: 0;
  list-style: none;
}

.generation-detail li {
  padding: 12px 0;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid var(--line);
  font-size: 15px;
  font-weight: 620;
}

.generation-detail li svg {
  color: var(--generation-color);
}

.system-section {
  padding: 116px 0 0;
  color: var(--white);
  background: #0a1c31;
}

.system-heading {
  margin-bottom: 60px;
}

.system-heading > p {
  color: #a8bac8;
}

.system-screenshot {
  width: 1000px;
  height: auto;
  aspect-ratio: 64 / 35;
  margin: 0 auto;
  border: 1px solid #6e8a9e;
  box-shadow: 0 12px 26px rgba(0, 5, 12, 0.42), 0 44px 82px rgba(0, 5, 12, 0.68);
}

.system-captions {
  margin: 0 auto;
  width: 1000px;
  min-height: 74px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  border-left: 1px solid var(--navy-line);
  border-right: 1px solid var(--navy-line);
}

.system-captions span {
  padding: 0 22px;
  color: #b7c6d0;
  border-right: 1px solid var(--navy-line);
  text-align: center;
  font-size: 13px;
  font-weight: 650;
  letter-spacing: 0.04em;
}

.system-captions span:last-child {
  border-right: 0;
}

.common-section {
  padding: 116px 0 126px;
  background-position: center center;
}

.common-section h2 {
  max-width: 720px;
}

.common-list {
  margin-top: 66px;
  border-top: 1px solid rgba(255, 255, 255, 0.26);
}

.common-list article {
  min-height: 116px;
  display: grid;
  grid-template-columns: 90px 260px 1fr;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.26);
}

.common-list article > span {
  color: var(--cyan);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.common-list article:first-child > span {
  color: var(--red-bright);
}

.common-list h3 {
  margin: 0;
  font-size: 22px;
}

.common-list p {
  max-width: 760px;
  margin: 0;
  color: #aebfcb;
  font-size: 16px;
  line-height: 1.55;
}

.faq-section {
  padding: 124px 0 132px;
  background: var(--paper);
}

.faq-shell {
  display: grid;
  grid-template-columns: minmax(300px, 0.63fr) minmax(520px, 1.37fr);
  gap: 100px;
}

.faq-intro h2 {
  max-width: 400px;
}

.faq-intro > p:last-child {
  max-width: 390px;
  margin: 26px 0 0;
  color: var(--ink-muted);
  font-size: 17px;
  line-height: 1.6;
}

.faq-list {
  border-top: 1px solid #9fb1be;
}

.faq-item {
  border-bottom: 1px solid #9fb1be;
}

.faq-item button {
  width: 100%;
  min-height: 80px;
  padding: 0 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  background: transparent;
  border: 0;
  cursor: pointer;
  text-align: left;
  font-size: 18px;
  font-weight: 710;
}

.faq-item button svg {
  flex: 0 0 auto;
  color: var(--cyan);
  transition: transform 190ms ease;
}

.faq-item.is-open button svg {
  transform: rotate(180deg);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 220ms ease;
}

.faq-answer p {
  min-height: 0;
  margin: 0;
  overflow: hidden;
  color: var(--ink-muted);
  font-size: 16px;
  line-height: 1.65;
}

.faq-item.is-open .faq-answer {
  grid-template-rows: 1fr;
}

.faq-item.is-open .faq-answer p {
  padding: 0 42px 28px 8px;
}

.contact-section {
  padding: 120px 0 110px;
  background-position: center bottom;
}

.contact-inner {
  width: min(940px, calc(100% - 88px));
  margin: 0 auto;
  text-align: center;
}

.contact-section .eyebrow::before {
  display: none;
}

.contact-section h2 {
  font-size: clamp(48px, 4.5vw, 72px);
}

.contact-section .reveal > p:not(.eyebrow) {
  max-width: 700px;
  margin: 28px auto 0;
  color: #b5c5d0;
  font-size: 18px;
  line-height: 1.65;
}

.contact-actions {
  justify-content: center;
}

.contact-details {
  margin-top: 42px;
  display: flex;
  justify-content: center;
  gap: 34px;
  flex-wrap: wrap;
}

.contact-details a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #dce7ed;
  font-weight: 620;
}

.contact-details svg {
  color: var(--cyan);
}

.site-footer {
  min-height: 148px;
  padding: 34px max(44px, calc((100% - var(--shell)) / 2));
  display: grid;
  grid-template-columns: auto minmax(180px, 1fr) auto;
  align-items: center;
  gap: 34px;
  color: #9fb1be;
  background: #041321;
  border-top: 1px solid var(--navy-line);
}

.site-footer p,
.site-footer small {
  margin: 0;
  font-size: 14px;
  line-height: 1.45;
}

.site-footer small {
  width: 100%;
  padding-top: 18px;
  grid-column: 1 / -1;
  color: #c5d4de;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.5;
}

.motion-toggle {
  min-height: 44px;
  padding: 0 14px;
  display: flex;
  align-items: center;
  gap: 9px;
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 140;
  color: #d7e7f0;
  background: rgb(5 19 33 / 92%);
  border: 1px solid rgb(255 255 255 / 28%);
  border-radius: 999px;
  box-shadow: 0 12px 32px rgb(0 0 0 / 22%);
  cursor: pointer;
  font-size: 12px;
  font-weight: 720;
  letter-spacing: 0.04em;
}

.motion-toggle:hover,
.motion-toggle:focus-visible {
  color: #ffffff;
  border-color: #74d9ef;
}

.motion-toggle:focus-visible {
  outline: 3px solid rgb(116 217 239 / 35%);
  outline-offset: 2px;
}

.motion-toggle-icon {
  width: 13px;
  height: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
}

.motion-toggle-icon i {
  width: 3px;
  height: 11px;
  background: #63d0e8;
  border-radius: 2px;
}

.motion-toggle[aria-pressed="false"] .motion-toggle-icon i:first-child {
  width: 0;
  height: 0;
  background: transparent;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 9px solid #63d0e8;
  border-radius: 0;
}

.motion-toggle[aria-pressed="false"] .motion-toggle-icon i:last-child {
  display: none;
}

.cezar-back-to-top {
  bottom: 68px;
}

.advice-dialog-backdrop[hidden] {
  display: none;
}

.advice-dialog-backdrop {
  padding: 24px;
  display: grid;
  place-items: center;
  position: fixed;
  inset: 0;
  z-index: 160;
  overflow-y: auto;
  background: rgb(3 17 31 / 82%);
}

.advice-dialog {
  width: min(760px, 100%);
  max-height: calc(100vh - 48px);
  padding: 34px;
  position: relative;
  overflow-y: auto;
  color: var(--navy);
  background: #ffffff;
  border: 1px solid #617b8d;
  border-top: 5px solid var(--red);
  box-shadow: 0 30px 80px rgb(0 0 0 / 42%);
}

.advice-dialog-close {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  position: absolute;
  top: 12px;
  right: 12px;
  color: var(--navy);
  background: #ffffff;
  border: 1px solid #617b8d;
  cursor: pointer;
  font-size: 24px;
}

.advice-dialog-heading {
  padding-right: 50px;
}

.advice-dialog-heading > span {
  color: var(--red);
  font-size: 14px;
  font-weight: 760;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.advice-dialog-heading h2 {
  margin: 12px 0 10px;
  font-size: clamp(30px, 4vw, 42px);
  line-height: 1.08;
}

.advice-dialog-heading p,
.contact-requirement,
.contact-error {
  margin: 0;
  color: #385064;
  font-size: 16px;
  line-height: 1.5;
}

.advice-contact-form {
  margin-top: 28px;
}

.inquiry-block {
  margin: 0;
  padding: 24px 0 0;
  border: 0;
  border-top: 1px solid #aebfca;
}

.inquiry-block + .inquiry-block {
  margin-top: 26px;
}

.inquiry-block legend {
  padding: 0 12px 0 0;
  font-size: 18px;
  font-weight: 760;
}

.contact-requirement {
  margin: 8px 0 18px;
  font-size: 14px;
}

.inquiry-field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.inquiry-field {
  display: grid;
  align-content: start;
  gap: 7px;
  color: #20384a;
  font-size: 14px;
  font-weight: 680;
}

.inquiry-field-wide {
  grid-column: 1 / -1;
}

.inquiry-field input,
.inquiry-field textarea {
  width: 100%;
  min-height: 42px;
  padding: 8px 10px;
  color: var(--navy);
  background: #ffffff;
  border: 1px solid #617b8d;
  border-radius: 2px;
  font: inherit;
  font-size: 14px;
  font-weight: 500;
}

.inquiry-field textarea {
  min-height: 108px;
  resize: vertical;
}

.inquiry-field input:focus,
.inquiry-field textarea:focus {
  outline: 3px solid rgb(26 155 188 / 24%);
  outline-offset: 1px;
  border-color: #1a9bbc;
}

.inquiry-field small {
  color: #385064;
  font-size: 12px;
  line-height: 1.4;
  font-weight: 540;
}

.contact-error {
  margin-top: 10px;
  color: #a51624;
  font-weight: 700;
}

.inquiry-submit-row {
  margin-top: 28px;
  padding-top: 22px;
  display: flex;
  justify-content: flex-end;
  border-top: 1px solid #aebfca;
}

html.motion-paused *,
html.motion-paused *::before,
html.motion-paused *::after {
  animation-play-state: paused !important;
  transition-duration: 0.01ms !important;
}

html.motion-paused [data-reveal],
html.motion-paused [data-reveal] > * {
  opacity: 1 !important;
  filter: none !important;
  transform: none !important;
}

html.motion-paused .intro-sequence,
html.cezar-page-exiting .motion-toggle,
html.cezar-page-exiting .cezar-back-to-top {
  visibility: hidden !important;
  pointer-events: none !important;
}

.site-footer > div {
  display: flex;
  gap: 24px;
}

.site-footer > div a {
  color: #d5e0e6;
  font-size: 13px;
  font-weight: 620;
}

.site-footer > div a:hover {
  color: var(--cyan);
}

.motion-ready [data-reveal]:where(:not([data-reveal="hero"]):not([data-reveal="stagger"]):not([data-reveal="preview"])) {
  opacity: 0;
  filter: blur(12px);
  will-change: opacity, filter, transform;
  transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1), filter 0.9s cubic-bezier(0.22, 1, 0.36, 1), transform 1.1s cubic-bezier(0.22, 1, 0.36, 1);
  transform: translateY(82px) scale(0.94);
}

.motion-ready [data-reveal="left"] {
  transform: translateX(-120px) scale(0.94);
}

.motion-ready [data-reveal="right"] {
  transform: translateX(120px) scale(0.94);
}

.motion-ready [data-reveal="down"] {
  transform: translateY(-68px);
}

.motion-ready [data-reveal].is-visible {
  opacity: 1;
  filter: blur(0);
  transform: translate(0);
}

.motion-ready [data-reveal="hero"],
.motion-ready [data-reveal="stagger"] {
  opacity: 1;
}

.motion-ready [data-reveal="hero"] > *,
.motion-ready [data-reveal="stagger"] > * {
  opacity: 0;
  filter: blur(10px);
  transition: opacity 0.85s cubic-bezier(0.22, 1, 0.36, 1), filter 0.85s cubic-bezier(0.22, 1, 0.36, 1), transform 1.05s cubic-bezier(0.22, 1, 0.36, 1);
  transform: translateY(86px) scale(0.94);
}

.motion-ready [data-reveal="hero"].is-visible > *,
.motion-ready [data-reveal="stagger"].is-visible > * {
  opacity: 1;
  filter: blur(0);
  transform: translate(0);
}

.motion-ready [data-reveal="hero"].is-visible > :nth-child(2),
.motion-ready [data-reveal="stagger"].is-visible > :nth-child(2) {
  transition-delay: 0.15s;
}

.motion-ready [data-reveal="hero"].is-visible > :nth-child(3),
.motion-ready [data-reveal="stagger"].is-visible > :nth-child(3) {
  transition-delay: 0.3s;
}

.motion-ready [data-reveal="hero"].is-visible > :nth-child(4),
.motion-ready [data-reveal="stagger"].is-visible > :nth-child(4) {
  transition-delay: 0.45s;
}

.motion-ready [data-reveal="hero"].is-visible > :nth-child(5),
.motion-ready [data-reveal="stagger"].is-visible > :nth-child(5) {
  transition-delay: 0.6s;
}

@media (max-width: 1220px) {
  .site-header,
  .hero-inner,
  .section-shell {
    width: min(100% - 54px, 1160px);
  }

  .site-header {
    height: 82px;
  }

  .brand-tagline {
    display: none;
  }

  .main-nav {
    gap: 24px;
  }

  .hero-inner {
    min-height: 580px;
    grid-template-columns: minmax(470px, 0.92fr) minmax(500px, 1.08fr);
  }

  .hero h1 {
    font-size: clamp(54px, 5vw, 67px);
  }

  .hero-screenshot {
    width: 765px;
    right: -155px;
  }

  .generation-path {
    left: -110px;
  }

  .decision-strip {
    padding-inline: 27px;
  }

  .criteria-row {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .criteria-action {
    margin: 28px 0 0;
    grid-column: 3;
    justify-self: end;
  }

  .system-screenshot,
  .system-captions {
    width: min(100%, 1000px);
  }

  .site-footer {
    grid-template-columns: auto 1fr auto;
  }

}

@media (max-width: 980px) {
  html {
    scroll-padding-top: 76px;
  }

  .site-header {
    height: 76px;
  }

  .brand img {
    width: 44px;
    height: 44px;
  }

  .menu-toggle {
    display: grid;
  }

  .main-nav {
    width: min(430px, calc(100vw - 54px));
    padding: 22px;
    display: none;
    align-items: stretch;
    gap: 0;
    position: absolute;
    top: 68px;
    right: 0;
    z-index: 30;
    background: #0b2238;
    border: 1px solid #38536a;
    box-shadow: 0 24px 45px rgba(0, 7, 13, 0.45);
  }

  .main-nav.is-open {
    display: grid;
  }

  .main-nav a,
  .main-nav button {
    min-height: 50px;
    padding: 0 12px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #2b4559;
  }

  .main-nav .nav-contact {
    margin-top: 16px;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.65);
  }

  .hero-inner {
    padding: 40px 0 0;
    display: block;
  }

  .hero-copy {
    max-width: 720px;
    padding: 24px 0 52px;
  }

  .hero h1 {
    font-size: clamp(54px, 8vw, 76px);
  }

  .hero-product {
    height: 530px;
  }

  .hero-screenshot {
    width: 650px;
    top: 20px;
    right: -65px;
  }

  .generation-path {
    left: 15px;
    top: 142px;
  }

  .decision-strip {
    padding-top: 70px;
    padding-bottom: 70px;
  }

  .criteria-row {
    grid-template-columns: 1fr;
  }

  .criterion {
    min-height: 92px;
    padding: 22px 0;
    border-right: 0;
    border-bottom: 1px solid #aebfca;
  }

  .criteria-action {
    width: 100%;
    margin-top: 28px;
    top: 0;
    grid-column: auto;
    justify-self: stretch;
  }

  .trust-strip {
    padding-inline: 27px;
    flex-wrap: wrap;
  }

  .trust-line {
    width: 38px;
    margin-right: 10px;
  }

  .section-heading,
  .faq-shell {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .finder-question {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .option-row {
    justify-content: flex-start;
  }

  .recommendation.is-ready {
    grid-template-columns: auto 1fr;
  }

  .recommendation.is-ready .button {
    grid-column: 2;
    justify-self: start;
  }

  .generation-browser {
    grid-template-columns: 1fr;
  }

  .generation-detail {
    min-height: 420px;
  }

  .system-captions {
    grid-template-columns: repeat(2, 1fr);
  }

  .system-captions span:nth-child(2) {
    border-right: 0;
  }

  .system-captions span:nth-child(-n + 2) {
    padding-block: 18px;
    border-bottom: 1px solid var(--navy-line);
  }

  .common-list article {
    grid-template-columns: 70px 220px 1fr;
  }

  .site-footer {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .site-footer small {
    grid-column: auto;
  }
}

@media (max-width: 640px) {
  .site-header,
  .hero-inner,
  .section-shell {
    width: calc(100% - 36px);
  }

  .intro-brand {
    width: calc(100vw - 32px);
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 6px;
    animation-name: intro-brand-mobile;
  }

  html.cezar-page-exiting .intro-brand {
    animation-name: intro-brand-exit-mobile;
  }

  .intro-brand b {
    font-size: clamp(54px, 17vw, 64px);
    letter-spacing: -0.06em;
  }

  .intro-brand small {
    margin-top: 18px;
    letter-spacing: 0.13em;
  }

  .brand {
    gap: 10px;
  }

  .brand-name {
    font-size: 20px;
  }

  .brand-divider,
  .brand-tagline {
    display: none;
  }

  .hero-inner {
    padding-top: 26px;
  }

  .hero-copy {
    padding-bottom: 38px;
  }

  .eyebrow {
    margin-bottom: 17px;
    font-size: 12px;
  }

  .eyebrow::before {
    width: 24px;
    margin-right: 10px;
  }

  .hero h1 {
    font-size: clamp(44px, 13vw, 62px);
    line-height: 1.01;
  }

  .hero-lead {
    margin-top: 24px;
    font-size: 17px;
  }

  .hero-actions,
  .contact-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .button-link {
    width: fit-content;
  }

  .hero-product {
    height: 590px;
  }

  .hero-screenshot {
    width: 430px;
    top: 28px;
    right: -86px;
  }

  .generation-path {
    width: calc(100% - 14px);
    left: 7px;
    top: 380px;
    gap: 7px;
  }

  .generation-path::before,
  .generation-band::before,
  .generation-band::after {
    display: none;
  }

  .generation-band {
    width: 100%;
  }

  .generation-band:hover,
  .generation-band.is-active {
    transform: translateX(5px);
  }

  .decision-strip {
    padding: 64px 18px;
  }

  .decision-strip h2,
  .section-heading h2,
  .system-heading h2,
  .common-section h2,
  .faq-intro h2,
  .contact-section h2 {
    font-size: 38px;
  }

  .trust-strip {
    padding: 22px 18px;
    gap: 5px;
    font-size: 15px;
  }

  .trust-line {
    display: none;
  }

  .trust-strip strong,
  .trust-strip span:last-child {
    width: 100%;
  }

  .finder-section,
  .generations-section,
  .faq-section {
    padding: 82px 0 90px;
  }

  .finder-questions {
    margin-top: 42px;
  }

  .option-row {
    display: grid;
    grid-template-columns: 1fr;
  }

  .recommendation,
  .recommendation.is-ready {
    padding: 24px;
    grid-template-columns: 1fr;
    align-items: start;
    justify-items: start;
  }

  .recommendation.is-ready .button {
    grid-column: auto;
  }

  .generation-browser {
    margin-top: 46px;
    gap: 38px;
  }

  .generation-row {
    min-height: 102px;
    grid-template-columns: 40px 88px 1fr auto;
    gap: 9px;
  }

  .generation-label {
    font-size: 22px;
  }

  .generation-audience {
    font-size: 14px;
  }

  .generation-detail {
    min-height: auto;
    padding: 34px 26px;
  }

  .generation-detail h3 {
    font-size: 31px;
  }

  .system-section {
    padding-top: 82px;
  }

  .system-captions {
    grid-template-columns: 1fr;
  }

  .system-captions span {
    min-height: 52px;
    display: grid;
    place-items: center;
    border-right: 0;
    border-bottom: 1px solid var(--navy-line);
  }

  .common-section,
  .contact-section {
    padding: 84px 0 92px;
  }

  .common-list {
    margin-top: 46px;
  }

  .common-list article {
    padding: 28px 0;
    grid-template-columns: 45px 1fr;
    align-items: start;
    gap: 4px 10px;
  }

  .common-list p {
    grid-column: 2;
  }

  .faq-shell {
    gap: 50px;
  }

  .faq-item button {
    font-size: 16px;
  }

  .contact-inner {
    width: calc(100% - 36px);
  }

  .contact-details {
    align-items: center;
    flex-direction: column;
  }

  .site-footer {
    padding: 40px 18px;
  }

  .site-footer > div {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .motion-toggle {
    right: 10px;
    bottom: 10px;
  }

  .cezar-back-to-top {
    right: 10px;
    bottom: 58px;
  }

  .advice-dialog-backdrop {
    padding: 12px;
    align-items: start;
  }

  .advice-dialog {
    max-height: calc(100vh - 24px);
    padding: 28px 20px;
  }

  .advice-dialog-heading {
    padding-right: 42px;
  }

  .inquiry-field-grid {
    grid-template-columns: 1fr;
  }

  .inquiry-field-wide {
    grid-column: auto;
  }

  .inquiry-submit-row .button {
    width: 100%;
  }
}



/* Meaningful headline accents, selected by the immediate background. */
.accent-blue{color:#1689a7}.accent-red{color:#ce202f}
.system-section .accent-blue,.hero-shell .accent-blue{color:#73d9ef}
.contact-section .accent-red{color:#ff5a68}
.motion-paused .advice-dialog,.motion-paused .advice-dialog-backdrop{animation:none!important}

/* Shared contact form: Spravce dokumentu reference, 6 September 2026. */
.advice-dialog{box-sizing:border-box!important;display:block;width:min(760px,calc(100vw - 32px))!important;max-width:760px!important;max-height:calc(100dvh - 32px)!important;overflow-y:auto!important;border:1px solid #8ca2b2!important;border-top:6px solid #ce202f!important;border-radius:0!important;background:#fff!important;box-shadow:0 40px 110px #0006!important;padding:20px 30px!important;color:#102a42!important;font:14px/20px Arial,Helvetica,sans-serif!important}
.advice-dialog *{box-sizing:border-box}
dialog.advice-dialog:not([open]){display:none!important}
dialog.advice-dialog[open]{position:fixed;inset:0;margin:auto;transform:none}
dialog.advice-dialog::backdrop{background:#001423b8;backdrop-filter:blur(4px)}
.advice-dialog .advice-dialog-close{position:absolute;z-index:2;top:14px;right:14px;display:grid;width:44px;height:44px;place-items:center;padding:0;border:1px solid #9fb0bd;background:#f3f7f9;color:#27475e;cursor:pointer;font:26px Arial}
.advice-dialog-close svg{width:20px;height:20px}
.advice-dialog .advice-dialog-heading{display:grid;gap:0;padding-right:32px;margin:0}
.advice-dialog-heading>span{display:flex;align-items:center;gap:8px;color:#ce202f;font-size:10px;font-weight:800;letter-spacing:.12em;text-transform:uppercase}
.advice-dialog-heading>span svg{width:18px;height:18px}
.advice-dialog .advice-dialog-heading h2{margin:8px 0 6px!important;color:#102a42!important;font:760 31px/1.12 Arial,Helvetica,sans-serif!important;letter-spacing:-.045em!important}
.advice-dialog .advice-dialog-heading>p{margin:0!important;color:#4f6879!important;font:14px/1.5 Arial,Helvetica,sans-serif!important}
.advice-dialog .inquiry-block{display:block!important;min-width:0;margin:8px 0 0!important;padding:10px 0 0!important;border:0;border-top:1px solid #d9e2ea}
.advice-dialog legend{width:auto;padding:0 18px 0 0;color:#27475e;font:750 14px/20px Arial,Helvetica,sans-serif}
.advice-dialog .inquiry-field-grid{display:grid!important;grid-template-columns:minmax(0,1fr) minmax(0,1fr)!important;gap:10px 17px!important}
.advice-dialog .inquiry-field{display:grid;min-width:0;gap:5px!important;color:#27475e;font:700 14px/20px Arial,Helvetica,sans-serif}
.advice-dialog .inquiry-field-wide{grid-column:1/-1!important}
.advice-dialog .inquiry-field input,.advice-dialog .inquiry-field textarea{box-sizing:border-box;width:100%;min-width:0;border:1px solid #617b8d!important;border-radius:0!important;background:#fff!important;color:#0057b8!important;font:680 15px/1.4286 Arial,Helvetica,sans-serif!important;padding:5px 13px!important;outline:none}
.advice-dialog .inquiry-field input{height:34px!important;min-height:34px!important}
.advice-dialog .inquiry-field textarea{height:165.333px!important;min-height:165.333px!important;field-sizing:fixed!important;padding:10px 13px!important;resize:vertical}
.advice-dialog .inquiry-field input:focus,.advice-dialog .inquiry-field textarea:focus{border-color:#1d9dbc!important;box-shadow:0 0 0 3px #21b7dd21}
.advice-dialog .inquiry-field small{font:13px/1.5 Arial,Helvetica,sans-serif;color:#4f6879}
.advice-dialog .captcha-field input{max-width:230px}
.advice-dialog .inquiry-submit-row{display:flex!important;justify-content:flex-end;margin-top:12px!important;padding-top:10px!important;border-top:1px solid #d9e2ea}
.advice-dialog .inquiry-submit-row .button{display:inline-flex;justify-content:center;align-items:center;gap:12px;min-width:245px;min-height:44px;padding:10px 20px;border:1px solid #ce202f;border-radius:0;background:#ce202f;color:#fff;font:700 14px/20px Arial,Helvetica,sans-serif;cursor:pointer;box-shadow:8px 8px 0 #ce202f33}
.advice-dialog .inquiry-submit-row svg{width:20px;height:20px}
.advice-dialog .contact-error{color:#b51c29}
@media(max-width:640px){.advice-dialog{padding:24px 19px!important}.advice-dialog .advice-dialog-heading h2{font-size:27px!important}.advice-dialog .inquiry-field-grid{grid-template-columns:minmax(0,1fr)!important}.advice-dialog .inquiry-field input{height:38px!important;min-height:38px!important}.advice-dialog .inquiry-submit-row .button{width:100%;min-width:0}}
.advice-dialog .inquiry-field{align-content:start}
.advice-dialog .inquiry-field textarea::placeholder,.advice-dialog .inquiry-field input::placeholder{color:#60717f;opacity:1}
.advice-dialog .advice-contact-form{margin:0!important}
.advice-dialog input[name="Vyraz"]{max-width:230px!important}
.advice-dialog .inquiry-field small{font:13px/1.5 Arial,Helvetica,sans-serif!important}

/* CÉZAR: nabídky a objednávky, 7. 9. 2026. */
@media (min-width: 641px) {
  html body .shell,
  html body .bank-proof {
    width: min(1400px, calc(100% - 48px)) !important;
  }
}
html:root {
  --shell: 1400px;
}

/* Úvodní odstavce kapitol na bílém a světle modrém pozadí. */
html body :is(.benefits, .modes-section) .section-heading > p:not(.section-kicker),
html body .control-copy > p:not(.section-kicker),
html body .documents-copy > p:not(.section-kicker),
html body .audience-section .section-heading-row > p,
html body :is(.mm-white, .mm-light) .mm-section-heading > p:not(.section-kicker),
html body .faq-heading > p:not(.section-kicker),
html body .doc-benefits .section-heading > p:not(.section-kicker),
html body :is(.doc-related, .doc-picture-benefits, .doc-storage) h2 ~ p,
html body :is(.doc-workflow, .doc-rights) .doc-split-heading > p,
html body .km-capabilities .km-section-heading > p:not(.section-kicker),
html body :is(.km-delegation-copy, .km-evidence-copy, .km-faq-heading) > p:not(.section-kicker),
html body .order-config-section .order-section-heading > p:not(.section-kicker),
html body .generations-section .section-heading > p:not(.eyebrow),
html body .faq-intro > p:not(.eyebrow) {
  color: #0a1c31 !important;
}

/* Generace: obsahové a vizuální přepracování podle skillu, 7. 9. 2026. */
.no-script-content { max-width: 1000px; padding: 40px 24px; margin: auto; font-size: 18px; line-height: 1.6; }
.no-script-content a { text-decoration: underline; }
.hero h1 { font-size: clamp(34px, 3.2vw, 50px); font-weight: 600; line-height: 1.08; }
.hero h1 em { font-style: normal; }
.hero-shell .accent-red, .generations-section .accent-red { color: #ff5a68; }
.hero-lead { color: #d2e3ee; }
.eyebrow { font-size: 12px; line-height: 1.5; }
.eyebrow-dark { color: #ff5a68; }
.hero-shell .brand-tagline { color: #bed0df; opacity: 1; }
.main-nav .nav-contact { display: inline-flex; align-items: center; gap: 8px; min-height: 0; padding: 10px 13px 10px 16px; font-size: 13px; font-weight: 650; line-height: 1.5; background: #ce202f; border-color: #ce202f; color: #fff; }
.main-nav .nav-contact:hover { background: #b51c29; border-color: #b51c29; }
.decision-strip { padding-block: 76px 72px; }
.section-lead { max-width: 830px; margin: 24px 0 0; color: #102536; font-size: 18px; line-height: 1.6; }
.comparison-grid { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 20px; margin-top: 38px; }
.comparison-card { position: relative; padding: 26px 24px; background: #fff; border: 1px solid #879eae; border-top: 3px solid var(--generation-color); box-shadow: 0 6px 18px -4px rgb(7 26 45 / 12%), 0 2px 5px rgb(7 26 45 / 5%); }
@supports ((mask-composite: exclude) or (-webkit-mask-composite: xor)) {
  .comparison-card::after { content: ""; position: absolute; inset: -1px; padding: 1.5px; pointer-events: none; background: conic-gradient(from var(--proof-flash-angle), transparent 0deg 307deg, color-mix(in srgb, var(--generation-color) 13%, transparent) 321deg, color-mix(in srgb, var(--generation-color) 60%, transparent) 336deg, rgb(255 255 255 / 68%) 346deg, color-mix(in srgb, var(--generation-color) 52%, transparent) 355deg, transparent 360deg); -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); -webkit-mask-composite: xor; mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); mask-composite: exclude; animation: proof-border-flash 7.2s linear infinite; }
  .comparison-card:nth-child(2)::after { animation-delay: -1.8s; }
  .comparison-card:nth-child(3)::after { animation-delay: -3.6s; }
  .comparison-card:nth-child(4)::after { animation-delay: -5.4s; }
}
.comparison-card h3 { margin: 0 0 20px; color: color-mix(in srgb, var(--generation-color) 75%, #071a2d); font-size: 29px; font-weight: 700; }
.comparison-card p { margin: 12px 0 0; color: #274357; font-size: 16px; line-height: 1.45; }
.comparison-card .comparison-database { min-height: 48px; margin: 0; color: #102536; font-weight: 650; }
.comparison-next { display: flex; justify-content: space-between; align-items: center; gap: 24px; margin-top: 30px; }
.comparison-next p { margin: 0; color: #102536; font-size: 17px; }
.finder-section { margin-top: 48px; padding: 48px 0 0; background: transparent; border-top: 1px solid #879eae; border-bottom: 0; }
.finder-section > .section-shell { width: 100%; }
html body .finder-heading > p, html body .system-heading > p { color: #0a1c31 !important; }
.finder-question legend > span { color: #ce202f; font-size: 32px; font-weight: 750; }
.finder-question legend small { color: #304d62; font-size: 16px; }
.finder-question { display: flow-root; min-width: 0; }
.finder-question legend { float: left; width: 38%; }
.finder-question .option-row { margin-left: 42%; min-height: 71px; }
.option { color: #17384f; border-color: #768d9e; font-size: 16px; }
.recommendation.is-ready { position: relative; animation: generation-result-rise 500ms 120ms ease-out both; }
@keyframes generation-result-rise { from { translate: 0 8px; } to { translate: 0 0; } }
.recommendation.is-ready::after { content: ""; position: absolute; inset: 0; pointer-events: none; border: 2px solid rgb(155 228 248 / 85%); box-shadow: inset 0 0 7px rgb(130 213 235 / 40%); animation: generation-result-border 5s ease-in-out infinite; }
@keyframes generation-result-border { 0%,100% { opacity: .2; } 50% { opacity: .75; } }
.generations-section { background: #071a2d; color: #fff; padding-block: 88px; }
.generations-section .eyebrow { color: #ff5a68; }
html body .generations-section .section-heading > p:not(.eyebrow) { color: #d2e3ee !important; }
.generation-browser { margin-top: 44px; grid-template-columns: minmax(0,1fr) minmax(0,1.04fr); gap: 42px; align-items: start; }
.generation-row { grid-template-columns: 28px 114px 1fr auto; gap: 12px; color: #fff; min-height: 106px; }
.generation-row .generation-label { color: color-mix(in srgb, var(--generation-color) 70%, #fff) !important; white-space: nowrap; font-size: 26px; }
.generation-row .generation-index { font-size: 14px; color: #abc4d5; }
.generation-row .generation-audience { color: #d2e3ee; }
.generation-row:hover, .generation-row.is-active { background: #14334b; }
.generation-row.is-active { box-shadow: inset 3px 0 var(--generation-color); background: color-mix(in srgb, var(--generation-color) 16%, #071a2d); }
.generation-detail { padding: 34px; color: #102536; }
.generation-detail .eyebrow { color: color-mix(in srgb, var(--generation-color) 65%, #071a2d); }
.generation-detail h3 { color: color-mix(in srgb, var(--generation-color) 75%, #071a2d); font-size: clamp(29px,2.6vw,36px); font-weight: 700; }
.generation-detail > p:not(.eyebrow) { color: #274357; }
.generation-detail li { font-size: 16px; }
.generation-detail li svg { color: #228454; background: #e4f5eb; border: 1px solid #73b993; border-radius: 50%; padding: 3px; width: 23px; height: 23px; flex: 0 0 23px; }
.generation-scenario { padding: 18px 20px; margin-top: 22px; background: color-mix(in srgb, var(--generation-color) 8%, #fff); border-left: 3px solid var(--generation-color); }
.generation-scenario strong { font-size: 15px; }
.generation-scenario p { margin: 8px 0 0; font-size: 16px; line-height: 1.5; color: #274357; }
.system-section { padding-block: 86px 64px; color: #071a2d; background: #fff; }
.system-section .accent-blue { color: #1689a7; }
.system-screenshot { width: min(100%, 1300px); box-shadow: 0 24px 48px -8px rgb(7 26 45 / 14%), 0 8px 18px rgb(7 26 45 / 7%); }
.system-captions { max-width: 100%; display: flex; flex-wrap: wrap; justify-content: space-between; gap: 16px; padding-block: 20px; border: 0; }
.system-captions span, .system-captions a { padding: 0; color: #274357; font-size: 14px; line-height: 1.5; font-weight: 650; letter-spacing: normal; border: 0; }
.system-captions a { color: #146b84; text-decoration: underline; text-underline-offset: 4px; }
.common-section { padding-block: 84px 90px; }
.common-section h2 { max-width: 960px; }
.common-section .accent-blue { color: #73d9ef; }
.common-list { margin-top: 42px; }
.common-list article { grid-template-columns: 240px 255px minmax(0,1fr); gap: 26px; padding-block: 28px; }
.common-list article > span, .common-list article:first-child > span { color: #bdeafa; font-size: clamp(24px, 2vw, 28px); letter-spacing: -0.025em; line-height: 1.2; }
.common-list p { color: #d2e3ee; }
.faq-section { padding-block: 64px 56px; }
.faq-item button { min-height: 44px; padding-block: 9px; line-height: 1.3; }
.faq-answer p { line-height: 1.45; }
.site-footer small { color: #c8d9e4; font-size: 13px; font-weight: 600; }
.motion-paused .recommendation, .motion-paused .recommendation::after { animation: none !important; }
.motion-paused { scroll-behavior: auto; }
@media (max-width: 1100px) {
  .finder-question legend { float: none; width: 100%; }
  .finder-question .option-row { margin-left: 0; min-height: 0; }
  .comparison-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .generation-browser { grid-template-columns: minmax(0,1fr); }
  .generation-list { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); }
  .generation-row { grid-template-columns: 100px 1fr auto; padding: 16px; }
  .generation-index { display: none; }
  .common-list article { grid-template-columns: 240px minmax(0,1fr); gap: 12px 22px; }
  .common-list p { grid-column: 2; }
}
@media (max-width: 640px) {
  .hero h1 { font-size: clamp(24px,7.1vw,42px); line-height: 1.12; }
  .hero-copy { transform: none !important; opacity: 1 !important; }
  .hero-actions .button { justify-content: center; }
  .decision-strip { padding-block: 48px; }
  .comparison-grid { grid-template-columns: minmax(0,1fr); gap: 14px; margin-top: 28px; }
  .comparison-card { padding: 20px; }
  .comparison-card h3 { margin-bottom: 12px; }
  .comparison-card .comparison-database { min-height: 0; }
  .comparison-next { align-items: stretch; flex-direction: column; }
  .finder-section { margin-top: 34px; padding-top: 34px; }
  .generations-section, .system-section, .common-section { padding-block: 52px; }
  .generation-list { grid-template-columns: minmax(0,1fr); }
  .generation-row { grid-template-columns: 100px 1fr auto; min-height: 86px; padding-inline: 10px; gap: 10px; }
  .generation-row .generation-label { font-size: 24px; }
  .generation-detail { padding: 26px 20px; }
  .generation-scenario { padding: 16px; }
  .generation-detail .button { padding-inline: 12px; }
  .system-captions { align-items: flex-start; flex-direction: column; gap: 14px; }
  .system-captions span { min-height: 0; display: block; text-align: left; }
  .common-list article { display: block; padding-block: 24px; }
  .common-list h3 { margin: 10px 0 12px; }
  .faq-section { padding-block: 40px 36px; }
}

/* CÉZAR: popisy na bílých a světle modrých plochách, včetně vnořených panelů. */
html body .km-capabilities .km-capability-card:not(.km-capability-primary) > p,
html body .km-use-card > p,
html body .km-use-cases .section-heading-row > p,
html body .km-delegation-path small,
html body .km-evidence-list > span,
html body .benefit-card:not(.benefit-card-featured) > p,
html body .bank-statements p:not(.section-kicker),
html body .mode-card > p,
html body .mode-list > span,
html body .security-copy > p:not(.section-kicker),
html body .audience-bank-grid > article:first-child > p,
html body .mm-mail-body p,
html body .mm-comparison p,
html body .mm-document-outputs > div > p,
html body .mm-history-facts p,
html body .mm-history-actions p,
html body .mm-history-example details p,
html body .mm-template-detail p:not(.section-kicker),
html body .mm-light .mm-start-note > p,
html body .doc-document-row small,
html body .doc-benefit:not(.doc-benefit-0) > p,
html body .doc-picture-list p,
html body .doc-flow-caption,
html body .doc-storage-options p,
html body .doc-rights-cards p,
html body .doc-module-scope p,
html body .decision-strip p:not(.eyebrow),
html body .generation-detail p:not(.eyebrow),
html body .generation-detail li,
html body .competitor-statement,
html body .automatic-change-list li,
html body .future-version-note,
html body .order-effects small,
html body .control-copy li,
html body .control-copy li > span,
html body .b2c-card > p,
html body .b2c-card li,
html body .b2c-card li > span,
html body .customization-section article p,
html body .order-check-option small,
html body .faq-list details p,
html body .faq-answer p {
  color: #0a1c31 !important;
}
html body #funkce .bank-benefit-grid .benefit-card > p,
html body #vypisy .bank-statement-grid article p,
html body #vypisy .section-heading-row > p {
  color: #0a1c31 !important;
}

/* Barevná identita generací: stejný odstín v přehledu, detailu i doporučení. */
.generation-band:nth-child(2) { color: #ffffff; background: #1599bf; }
.generation-caption { color: color-mix(in srgb, var(--generation-color) 70%, #fff); }
.recommendation.is-ready { border-color: var(--generation-color); }
.recommendation.is-ready::after { border-color: var(--generation-color); box-shadow: inset 0 0 7px color-mix(in srgb, var(--generation-color) 40%, transparent); }
.recommendation-copy h3 { color: color-mix(in srgb, var(--generation-color) 75%, #071a2d); }
.recommendation-copy .eyebrow { color: color-mix(in srgb, var(--generation-color) 65%, #071a2d); }
