/* Firmament, večer 28. 9. 2026. Směr 01 Klenba.
   Tokeny z Firmament_Design_Language.md (sekce 3 až 5) a ze schválené makety Klenby na canvasu (17. 9.).
   Žádné stíny, žádná čistá bílá ani černá. Verze 21. 9. 2026. */

:root {
  /* modrá osa */
  --fm-blue-050: #F3F7FE;
  --fm-blue-100: #E8F0FD;
  --fm-blue-200: #C7DAF8;
  --fm-blue-300: #8FB6F1;
  --fm-blue-400: #5B94EC;
  --fm-blue-500: #1E6FE0;
  --fm-blue-600: #1759C4;
  --fm-blue-700: #12459B;
  --fm-blue-900: #16243A;

  /* 01 Klenba */
  --fm-accent: #0FBF9F;
  --fm-accent-tint: #E1F7F2;
  --fm-accent-text: #0A7F6C;
  --fm-ink: #0F1319;
  --fm-muted: #5B6675;
  --fm-line: #DFE6F0;
  --fm-line-soft: #E3EAF3;
  --fm-line-strong: #CFDAE9;
  --fm-paper: #F4F7FC;
  --fm-surface: #FCFDFF;
  --fm-on-blue: #F8FAFF;
  --fm-graphite: #14181D;
  --fm-graphite-700: #2A313B;
  --fm-ink-invert: #EDF1F6;
  --fm-muted-invert: #8A95A3;
  --fm-field-bg: #F6F9FD;
  --fm-field-line: #D3DEEC;
  --fm-field-placeholder: #626C7A;
  --fm-form-line: #D8E4F6;
  --fm-error: #B3261E;
  --fm-error-tint: rgba(179, 38, 30, 0.05);

  /* typografie */
  --fm-font: "Inter", "Helvetica Neue", Arial, sans-serif;
  --fm-feat: "cv05" 1, "ss03" 1;
  /* tnum jen u dat a časů: globálně rozšiřuje spojovník („e-mail") */
  --fm-feat-num: "cv05" 1, "ss03" 1, "tnum" 1;
  --fm-display-size: clamp(42px, 5.6vw, 76px);
  --fm-h1-size: clamp(38px, 4.4vw, 60px);
  --fm-h2-size: clamp(28px, 2.6vw, 38px);
  --fm-body-lg-size: clamp(18px, 1.5vw, 21px);

  /* komponenty a rytmus */
  --fm-radius-sm: 8px;
  --fm-radius-md: 12px;
  --fm-radius-lg: 14px;
  --fm-control-h: 54px;
  --fm-section-py: clamp(64px, 7vw, 96px);
  --fm-page-px: clamp(16px, 7vw, 120px);
  --fm-max: 1200px;
  --fm-measure: 620px;
  --fm-ease: cubic-bezier(0.2, 0.7, 0.2, 1);
}

/* základ */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: 84px; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } *, *::before, *::after { transition: none !important; animation: none !important; } }
body {
  margin: 0;
  background: var(--fm-paper);
  color: var(--fm-ink);
  font-family: var(--fm-font);
  font-feature-settings: var(--fm-feat);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
h1, h2, h3, p, ul, ol, li, figure, fieldset, legend { margin: 0; padding: 0; }
ul, ol { list-style: none; }
fieldset { border: 0; min-width: 0; }
a { color: var(--fm-blue-500); text-decoration: none; }
a:hover { color: var(--fm-blue-600); }
svg { display: block; flex-shrink: 0; }
:focus-visible { outline: 2px solid var(--fm-blue-500); outline-offset: 3px; border-radius: 4px; }
::selection { background: var(--fm-blue-200); color: var(--fm-ink); }

.fm-container { max-width: var(--fm-max); margin: 0 auto; padding: 0 var(--fm-page-px); }
.fm-skip { position: absolute; left: 16px; top: -60px; z-index: 60; background: var(--fm-ink); color: var(--fm-ink-invert); padding: 10px 14px; border-radius: var(--fm-radius-sm); font-size: 14px; font-weight: 600; }
.fm-skip:focus { top: 12px; color: var(--fm-ink-invert); }

/* typografie */
.fm-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fm-blue-500);
}
.fm-display {
  font-size: var(--fm-display-size);
  line-height: 1.02;
  letter-spacing: -0.045em;
  font-weight: 300;
  max-width: 15ch;
  text-wrap: balance;
}
.fm-display strong, .fm-h1 strong { font-weight: 800; }
.fm-h1 { font-size: var(--fm-h1-size); line-height: 1.04; letter-spacing: -0.04em; font-weight: 300; text-wrap: balance; }
.fm-h2 { font-size: var(--fm-h2-size); font-weight: 600; line-height: 1.08; letter-spacing: -0.028em; text-wrap: balance; }
.fm-h3 { font-size: 16px; font-weight: 600; line-height: 1.3; letter-spacing: -0.012em; }
.fm-lead { font-size: var(--fm-body-lg-size); line-height: 1.5; letter-spacing: -0.012em; color: var(--fm-muted); max-width: var(--fm-measure); text-wrap: pretty; }
.fm-small { font-size: 14px; line-height: 1.45; color: var(--fm-muted); text-wrap: pretty; }

/* wordmark */
.fm-wordmark { display: inline-flex; font-size: 22px; line-height: 1; letter-spacing: -0.045em; color: var(--fm-ink); }
.fm-wordmark:hover { color: var(--fm-ink); }
.fm-wordmark span { font-weight: 200; }
.fm-wordmark strong { font-weight: 800; color: var(--fm-blue-500); }
.fm-wordmark--invert, .fm-wordmark--invert:hover { color: var(--fm-ink-invert); }
.fm-wordmark--invert strong { color: var(--fm-blue-400); }

/* horní lišta */
.fm-topbar {
  position: sticky; top: 0; z-index: 40;
  background: rgba(252, 253, 255, 0.94);
  -webkit-backdrop-filter: saturate(1.4) blur(12px);
  backdrop-filter: saturate(1.4) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s var(--fm-ease);
}
.fm-topbar.is-scrolled { border-bottom-color: var(--fm-line-soft); }
.fm-topbar__inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; height: 68px; }
.fm-topbar__right { display: flex; align-items: center; gap: 22px; }
.fm-topbar__meta { display: flex; align-items: center; gap: 14px; font-size: 14px; font-weight: 500; color: var(--fm-muted); white-space: nowrap; }
.fm-topbar__meta b { font-weight: 500; color: var(--fm-blue-500); }
.fm-topbar__meta i { width: 1px; height: 14px; background: var(--fm-line); }
.fm-topbar__cta { opacity: 0; transform: translateY(-4px); pointer-events: none; transition: opacity 0.2s var(--fm-ease), transform 0.2s var(--fm-ease); }
.fm-topbar.show-cta .fm-topbar__cta { opacity: 1; transform: none; pointer-events: auto; }

/* tlačítka */
.fm-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  height: var(--fm-control-h); padding: 0 30px;
  border-radius: var(--fm-radius-sm); border: 1px solid transparent;
  font: inherit; font-size: 16px; font-weight: 600; letter-spacing: -0.01em;
  cursor: pointer; white-space: nowrap; text-decoration: none;
  transition: background-color 0.15s var(--fm-ease), border-color 0.15s var(--fm-ease), color 0.15s var(--fm-ease);
}
.fm-btn svg { transition: transform 0.2s var(--fm-ease); }
.fm-btn:hover svg.fm-arrow { transform: translateX(3px); }
.fm-btn--primary { background: var(--fm-blue-500); color: var(--fm-on-blue); }
.fm-btn--primary:hover { background: var(--fm-blue-600); color: var(--fm-on-blue); }
.fm-btn--primary:active { background: var(--fm-blue-700); }
.fm-btn--secondary { background: transparent; color: var(--fm-ink); border-color: var(--fm-line-strong); font-weight: 500; padding: 0 26px; }
.fm-btn--secondary:hover { color: var(--fm-ink); border-color: var(--fm-blue-300); background: var(--fm-blue-050); }
.fm-btn--sm { height: 40px; padding: 0 16px; font-size: 14px; gap: 8px; }
.fm-btn--lg { height: 58px; font-size: 17px; letter-spacing: -0.012em; }
.fm-btn--block { width: 100%; }
.fm-btn[disabled] { cursor: progress; }
.fm-btn.is-done { background: var(--fm-accent-text); }
.fm-spinner { width: 18px; height: 18px; border-radius: 50%; border: 2px solid rgba(248, 250, 255, 0.35); border-top-color: var(--fm-on-blue); animation: fm-spin 0.7s linear infinite; }
@keyframes fm-spin { to { transform: rotate(360deg); } }

/* hero */
.fm-hero { background: var(--fm-surface); border-bottom: 1px solid var(--fm-line-soft); padding: clamp(40px, 6vw, 72px) 0 clamp(64px, 7vw, 88px); }
.fm-hero__inner { display: flex; flex-direction: column; gap: 28px; }
.fm-arc { width: min(620px, 100%); height: auto; }
.fm-arc .fm-arc__dot { animation: fm-pulse 3.2s var(--fm-ease) infinite; transform-origin: 360px 6px; }
@keyframes fm-pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.45; } }
.fm-hero .fm-label { margin-bottom: -10px; }
.fm-chips { display: flex; flex-wrap: wrap; gap: 10px; padding-top: 4px; }
.fm-chip {
  display: inline-flex; align-items: center; gap: 9px;
  height: 42px; padding: 0 15px;
  border-radius: 7px; background: var(--fm-paper); border: 1px solid var(--fm-line);
  font-size: 14px; font-weight: 500; letter-spacing: -0.005em; color: var(--fm-ink); white-space: nowrap;
}
.fm-chip svg { color: var(--fm-muted); }
.fm-actions { display: flex; flex-wrap: wrap; gap: 12px; padding-top: 6px; }
.fm-hero__foot { display: flex; flex-wrap: wrap; align-items: center; gap: 10px 22px; font-size: 14px; font-weight: 500; color: var(--fm-muted); }
.fm-hero__foot i { width: 1px; height: 16px; background: var(--fm-line); }
.fm-dot { display: inline-block; width: 7px; height: 7px; border-radius: 7px; background: var(--fm-accent); margin-right: 9px; vertical-align: 1px; }

/* sekce */
.fm-section { padding: var(--fm-section-py) 0; }
.fm-section--tint { background: var(--fm-blue-100); }
.fm-section--surface { background: var(--fm-surface); border-top: 1px solid var(--fm-line-soft); border-bottom: 1px solid var(--fm-line-soft); }
.fm-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px 60px; flex-wrap: wrap; margin-bottom: 36px; }
.fm-head__title { display: flex; flex-direction: column; gap: 14px; }
.fm-head .fm-lead { font-size: 17px; max-width: 420px; }

/* karty: kdo bude v místnosti */
.fm-cards { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 16px; }
.fm-card {
  display: flex; flex-direction: column; gap: 14px;
  padding: 22px 20px 24px;
  border-radius: var(--fm-radius-md); background: var(--fm-surface); border: 1px solid var(--fm-line-soft);
  transition: border-color 0.2s var(--fm-ease), transform 0.2s var(--fm-ease);
}
.fm-card:hover { border-color: var(--fm-blue-200); transform: translateY(-2px); }
.fm-card__icon { width: 40px; height: 40px; border-radius: 10px; background: var(--fm-blue-100); color: var(--fm-blue-500); display: flex; align-items: center; justify-content: center; }
.fm-card__body { display: flex; flex-direction: column; gap: 6px; }

.fm-host {
  display: grid; grid-template-columns: auto auto 1px minmax(0, 1fr); align-items: center; gap: 24px;
  margin-top: 16px; padding: 24px 26px;
  border-radius: var(--fm-radius-md); background: var(--fm-surface); border: 1px solid var(--fm-line-soft);
}
.fm-avatar { width: 58px; height: 58px; border-radius: 99px; background: var(--fm-accent-tint); color: var(--fm-accent-text); display: flex; align-items: center; justify-content: center; font-size: 18px; font-weight: 700; letter-spacing: -0.01em; }
.fm-host__who { display: flex; flex-direction: column; gap: 4px; }
.fm-host__who .fm-label { color: var(--fm-accent-text); }
.fm-host__name { font-size: 20px; font-weight: 700; letter-spacing: -0.022em; }
.fm-host__role { font-size: 14px; font-weight: 500; color: var(--fm-muted); }
.fm-host__rule { width: 1px; align-self: stretch; background: var(--fm-line-soft); }
.fm-host__text { font-size: 16px; line-height: 1.5; color: var(--fm-muted); max-width: 520px; text-wrap: pretty; }

.fm-proof { display: flex; align-items: center; gap: 12px; margin-top: 20px; font-size: 15px; color: var(--fm-muted); }
.fm-proof svg { color: var(--fm-accent); }
.fm-proof strong { font-weight: 600; color: var(--fm-ink); }

/* program */
.fm-steps { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 0 28px; counter-reset: step; }
.fm-step { position: relative; padding-top: 44px; }
.fm-step::before { content: ""; position: absolute; top: 13px; left: 0; right: -28px; height: 1px; background: var(--fm-blue-200); }
.fm-step:last-child::before { right: 0; background: linear-gradient(90deg, var(--fm-blue-200), var(--fm-accent)); }
.fm-step__num {
  position: absolute; top: 0; left: 0;
  display: inline-flex; align-items: center; justify-content: center;
  height: 27px; min-width: 40px; padding: 0 11px; border-radius: 99px;
  background: var(--fm-surface); border: 1px solid var(--fm-blue-200); color: var(--fm-blue-500);
  font-size: 12px; font-weight: 600; letter-spacing: 0.04em;
}
.fm-step:last-child .fm-step__num { background: var(--fm-accent-tint); border-color: var(--fm-accent); color: var(--fm-accent-text); }
.fm-step .fm-h3 { font-size: 18px; margin-bottom: 8px; }
.fm-step .fm-small { font-size: 15px; max-width: 320px; }
.fm-timing { display: flex; flex-wrap: wrap; align-items: center; gap: 10px 22px; margin-top: 40px; padding-top: 22px; border-top: 1px solid var(--fm-line-soft); font-size: 14px; font-weight: 500; color: var(--fm-muted); }
.fm-timing span { display: inline-flex; align-items: center; gap: 8px; }
.fm-timing b { font-weight: 600; color: var(--fm-ink); }

/* praktické */
.fm-info { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.fm-info__item { display: flex; flex-direction: column; gap: 10px; padding: 22px 22px 24px; border-radius: var(--fm-radius-md); background: var(--fm-surface); border: 1px solid var(--fm-line-soft); }
.fm-info__item .fm-card__icon { margin-bottom: 4px; }
.fm-info__title { font-size: 18px; font-weight: 600; letter-spacing: -0.018em; }
.fm-link { display: inline-flex; align-items: center; gap: 6px; margin-top: auto; padding-top: 6px; font-size: 14px; font-weight: 600; }
.fm-link svg { transition: transform 0.2s var(--fm-ease); }
.fm-link:hover svg { transform: translateX(3px); }

/* registrace */
.fm-reg { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 580px); gap: 40px 64px; align-items: start; }
.fm-reg__intro { display: flex; flex-direction: column; gap: 18px; padding-top: 4px; position: sticky; top: 100px; }
.fm-reg__intro .fm-lead { font-size: 17px; max-width: 380px; }
.fm-next { display: flex; flex-direction: column; gap: 14px; padding-top: 14px; }
.fm-next li { display: flex; gap: 12px; align-items: flex-start; font-size: 15px; line-height: 1.45; color: var(--fm-muted); max-width: 360px; }
.fm-next li svg { margin-top: 1px; color: var(--fm-accent); }
.fm-next li b { font-weight: 600; color: var(--fm-ink); }

.fm-form {
  display: flex; flex-direction: column; gap: 22px;
  padding: clamp(22px, 3vw, 36px);
  border-radius: var(--fm-radius-lg); background: var(--fm-surface); border: 1px solid var(--fm-form-line);
}
.fm-row { display: grid; grid-template-columns: minmax(0, 1fr) 200px; gap: 16px; }
.fm-field { display: flex; flex-direction: column; gap: 9px; }
.fm-field__label { display: flex; align-items: baseline; justify-content: space-between; gap: 10px; font-size: 13px; font-weight: 600; letter-spacing: 0.005em; color: var(--fm-ink); }
.fm-opt { font-size: 12px; font-weight: 500; color: var(--fm-muted); letter-spacing: 0; }
.fm-input {
  width: 100%; height: var(--fm-control-h);
  padding: 0 16px; border-radius: var(--fm-radius-sm);
  background: var(--fm-field-bg); border: 1px solid var(--fm-field-line);
  font: inherit; font-size: 16px; color: var(--fm-ink);
  transition: border-color 0.15s var(--fm-ease), box-shadow 0.15s var(--fm-ease), background-color 0.15s var(--fm-ease);
  -webkit-appearance: none; appearance: none;
}
textarea.fm-input { height: auto; min-height: 108px; padding: 15px 16px; line-height: 1.5; resize: vertical; }
.fm-input::placeholder { color: var(--fm-field-placeholder); opacity: 1; }
.fm-input:hover { border-color: var(--fm-blue-300); }
.fm-input:focus { outline: none; background: var(--fm-surface); border-color: var(--fm-blue-500); box-shadow: 0 0 0 3px var(--fm-blue-100); }
.fm-input[aria-invalid="true"] { border-color: var(--fm-error); background: var(--fm-error-tint); }
.fm-input[aria-invalid="true"]:focus { box-shadow: 0 0 0 3px rgba(179, 38, 30, 0.12); }
.fm-err { display: none; align-items: center; gap: 7px; font-size: 13px; font-weight: 500; color: var(--fm-error); }
.fm-err.is-on { display: flex; }
.fm-help { font-size: 13px; line-height: 1.45; color: var(--fm-muted); }

/* výběr ze dvou: dlaždice místo nativních radií */
.fm-choice { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.fm-choice__opt { position: relative; }
.fm-choice__opt input { position: absolute; opacity: 0; width: 1px; height: 1px; }
.fm-choice__opt label {
  display: flex; align-items: center; gap: 11px;
  height: var(--fm-control-h); padding: 0 18px;
  border-radius: var(--fm-radius-sm); border: 1px solid var(--fm-field-line); background: transparent;
  font-size: 15px; font-weight: 500; color: var(--fm-ink); cursor: pointer; user-select: none;
  transition: border-color 0.15s var(--fm-ease), background-color 0.15s var(--fm-ease), box-shadow 0.15s var(--fm-ease);
}
.fm-choice__opt label:hover { border-color: var(--fm-blue-300); background: var(--fm-blue-050); }
.fm-radio { width: 18px; height: 18px; border-radius: 18px; border: 1.5px solid var(--fm-field-line); display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: border-color 0.15s var(--fm-ease); }
.fm-radio::after { content: ""; width: 9px; height: 9px; border-radius: 9px; background: var(--fm-blue-500); transform: scale(0); transition: transform 0.15s var(--fm-ease); }
.fm-choice__opt input:checked + label { border-color: var(--fm-blue-500); background: var(--fm-field-bg); box-shadow: inset 0 0 0 0.5px var(--fm-blue-500); }
.fm-choice__opt input:checked + label .fm-radio { border-color: var(--fm-blue-500); }
.fm-choice__opt input:checked + label .fm-radio::after { transform: scale(1); }
.fm-choice__opt input:focus-visible + label { outline: 2px solid var(--fm-blue-500); outline-offset: 2px; }
.fm-choice[aria-invalid="true"] label { border-color: var(--fm-error); background: var(--fm-error-tint); }

.fm-alert { display: none; gap: 10px; align-items: flex-start; padding: 14px 16px; border-radius: var(--fm-radius-sm); background: var(--fm-error-tint); border: 1px solid rgba(179, 38, 30, 0.25); font-size: 14px; line-height: 1.45; color: var(--fm-error); }
.fm-alert.is-on { display: flex; }
.fm-alert svg { margin-top: 1px; }
.fm-fine { font-size: 12px; line-height: 1.45; color: var(--fm-muted); }
.fm-hp { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; overflow: hidden; }

/* FAQ */
.fm-faq-wrap { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 720px); gap: 32px 80px; align-items: start; }
.fm-faq-wrap .fm-head__title .fm-small { font-size: 15px; max-width: 320px; }
.fm-faq { border-top: 1px solid var(--fm-line); }
.fm-faq details { border-bottom: 1px solid var(--fm-line); }
.fm-faq summary { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 20px 0; cursor: pointer; list-style: none; font-size: 17px; font-weight: 600; letter-spacing: -0.012em; }
.fm-faq summary::-webkit-details-marker { display: none; }
.fm-faq summary:hover { color: var(--fm-blue-600); }
.fm-faq__icon { position: relative; width: 28px; height: 28px; border-radius: 99px; border: 1px solid var(--fm-line-strong); flex-shrink: 0; transition: transform 0.25s var(--fm-ease), background-color 0.2s var(--fm-ease), border-color 0.2s var(--fm-ease); }
.fm-faq__icon::before, .fm-faq__icon::after { content: ""; position: absolute; left: 50%; top: 50%; width: 10px; height: 1.5px; background: currentColor; transform: translate(-50%, -50%); border-radius: 2px; }
.fm-faq__icon::after { transform: translate(-50%, -50%) rotate(90deg); transition: transform 0.25s var(--fm-ease); }
.fm-faq details[open] .fm-faq__icon { background: var(--fm-blue-100); border-color: var(--fm-blue-200); color: var(--fm-blue-500); }
.fm-faq details[open] .fm-faq__icon::after { transform: translate(-50%, -50%) rotate(0deg); }
.fm-faq details p { padding: 0 48px 22px 0; color: var(--fm-muted); max-width: 620px; text-wrap: pretty; }

/* patička */
.fm-footer { background: var(--fm-graphite); color: var(--fm-ink-invert); border-top: 1px solid var(--fm-graphite-700); }
.fm-footer__inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 18px 26px; padding-top: 44px; padding-bottom: 44px; }
.fm-footer__meta { display: flex; flex-wrap: wrap; align-items: center; gap: 12px 26px; font-size: 14px; color: var(--fm-muted-invert); }
.fm-footer__meta i { width: 1px; height: 14px; background: var(--fm-graphite-700); }
.fm-footer a { color: var(--fm-blue-400); }
.fm-footer a:hover { color: var(--fm-blue-300); }

/* děkovačka */
.fm-thanks { background: var(--fm-surface); border-bottom: 1px solid var(--fm-line-soft); padding: clamp(48px, 7vw, 88px) 0 clamp(56px, 7vw, 88px); }
.fm-thanks__inner { display: flex; flex-direction: column; gap: 24px; }
.fm-check { width: 64px; height: 64px; border-radius: 99px; background: var(--fm-accent-tint); color: var(--fm-accent-text); display: flex; align-items: center; justify-content: center; }
.fm-check svg { stroke-dasharray: 30; stroke-dashoffset: 30; animation: fm-draw 0.6s 0.15s var(--fm-ease) forwards; }
@keyframes fm-draw { to { stroke-dashoffset: 0; } }
.fm-grid-2 { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 16px; }
.fm-panel { display: flex; flex-direction: column; gap: 16px; padding: clamp(22px, 3vw, 32px); border-radius: var(--fm-radius-lg); background: var(--fm-surface); border: 1px solid var(--fm-line-soft); }
.fm-panel .fm-actions { padding-top: 4px; }
.fm-timeline { display: flex; flex-direction: column; }
.fm-timeline li { position: relative; display: grid; grid-template-columns: 22px minmax(0, 1fr); gap: 14px; padding-bottom: 20px; }
.fm-timeline li:last-child { padding-bottom: 0; }
.fm-timeline li::before { content: ""; position: absolute; left: 10px; top: 20px; bottom: 0; width: 1px; background: var(--fm-blue-200); }
.fm-timeline li:last-child::before { display: none; }
.fm-timeline__dot { width: 21px; height: 21px; border-radius: 99px; border: 1px solid var(--fm-blue-200); background: var(--fm-surface); display: flex; align-items: center; justify-content: center; margin-top: 1px; }
.fm-timeline__dot::after { content: ""; width: 7px; height: 7px; border-radius: 7px; background: var(--fm-blue-300); }
.fm-timeline li.is-now .fm-timeline__dot { border-color: var(--fm-accent); background: var(--fm-accent-tint); }
.fm-timeline li.is-now .fm-timeline__dot::after { background: var(--fm-accent); }
.fm-timeline__when { font-size: 13px; font-weight: 600; color: var(--fm-blue-500); letter-spacing: 0.005em; }
.fm-timeline li.is-now .fm-timeline__when { color: var(--fm-accent-text); }
.fm-timeline__what { font-size: 15px; color: var(--fm-ink); }
.fm-invite { padding: 16px 18px; border-radius: var(--fm-radius-sm); background: var(--fm-field-bg); border: 1px solid var(--fm-field-line); font-size: 15px; line-height: 1.5; color: var(--fm-ink); }
.fm-btn.is-copied { border-color: var(--fm-accent); color: var(--fm-accent-text); background: var(--fm-accent-tint); }

/* tabulková čísla tam, kde jsou data a časy */
.fm-chip, .fm-topbar__meta, .fm-timing, .fm-timeline__when, .fm-step__num, .fm-proof { font-feature-settings: var(--fm-feat-num); }

/* responzivita */
@media (max-width: 1080px) {
  .fm-cards { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .fm-reg { grid-template-columns: minmax(0, 1fr); }
  .fm-reg__intro { position: static; }
  .fm-faq-wrap { grid-template-columns: minmax(0, 1fr); }
}
@media (max-width: 760px) {
  .fm-topbar__inner { height: 60px; }
  .fm-topbar__meta { display: none; }
  .fm-hero__inner { gap: 22px; }
  .fm-hero .fm-label { margin-bottom: -6px; }
  .fm-chip { height: 38px; padding: 0 12px; font-size: 13.5px; }
  .fm-actions .fm-btn { flex: 1 1 100%; }
  .fm-hero__foot i { display: none; }
  .fm-hero__foot { flex-direction: column; align-items: flex-start; gap: 8px; }
  .fm-cards { grid-template-columns: minmax(0, 1fr); gap: 10px; }
  .fm-card { flex-direction: row; align-items: flex-start; gap: 14px; padding: 18px; }
  .fm-card:hover { transform: none; }
  .fm-host { grid-template-columns: auto minmax(0, 1fr); gap: 16px; padding: 20px; }
  .fm-host__rule { display: none; }
  .fm-host__text { grid-column: 1 / -1; font-size: 15px; }
  .fm-steps { grid-template-columns: minmax(0, 1fr); gap: 0; }
  .fm-step { padding: 0 0 28px 56px; }
  .fm-step:last-child { padding-bottom: 0; }
  .fm-step::before { top: 27px; bottom: 0; left: 20px; right: auto; width: 1px; height: auto; }
  .fm-step:last-child::before { display: none; }
  .fm-step .fm-h3 { padding-top: 3px; }
  .fm-info { grid-template-columns: minmax(0, 1fr); gap: 10px; }
  .fm-row { grid-template-columns: minmax(0, 1fr); }
  .fm-choice { grid-template-columns: minmax(0, 1fr); gap: 8px; }
  .fm-faq summary { font-size: 16px; }
  .fm-faq details p { padding-right: 0; }
  .fm-grid-2 { grid-template-columns: minmax(0, 1fr); }
  .fm-panel .fm-actions .fm-btn { flex: 1 1 100%; }
  .fm-footer__meta i { display: none; }
}
