/* ==========================================================================
   Soft4Web – základní styly
   Palety: [data-palette="blue"] (modrá + tyrkys), [data-palette="green"] (zelená + grafit)
   Režim:  automaticky dle systému, vynutit lze [data-theme="light"|"dark"]
   ========================================================================== */

/* ---------- Tokeny: paleta A – modrá + tyrkys (výchozí) ---------- */
:root,
[data-palette="blue"] {
  --brand: #1E4FD8;
  --brand-strong: #173EAB;
  --accent: #14B8A6;
  --ink: #0B1B3A;          /* tmavé plochy (hero, patička) */
  --ink-2: #13295A;
  --on-ink: #E8EEFB;
  --on-ink-muted: #9FB0D3;

  --bg: #F6F8FC;
  --surface: #FFFFFF;
  --surface-2: #EEF2FA;
  --text: #0E1A33;
  --muted: #56647E;
  --border: #DFE5F0;
  --brand-soft: rgba(30, 79, 216, .10);
  --accent-soft: rgba(20, 184, 166, .14);
}

/* ---------- Tokeny: paleta B – zelená + grafit ---------- */
[data-palette="green"] {
  --brand: #16A34A;
  --brand-strong: #12833C;
  --accent: #65D38A;
  --ink: #1F2937;
  --ink-2: #2B3747;
  --on-ink: #EEF2F5;
  --on-ink-muted: #A7B1BD;

  --bg: #F6F7F8;
  --surface: #FFFFFF;
  --surface-2: #EEF1F3;
  --text: #17202B;
  --muted: #5A6573;
  --border: #E0E4E8;
  --brand-soft: rgba(22, 163, 74, .10);
  --accent-soft: rgba(101, 211, 138, .16);
}

/* ---------- Tmavý režim ---------- */
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]),
  :root:not([data-theme="light"]) [data-palette="blue"],
  :root:not([data-theme="light"])[data-palette="blue"] {
    --brand: #5B85FF; --brand-strong: #7C9DFF; --accent: #2DD4BF;
    --ink: #07101F; --ink-2: #0F1C36; --on-ink: #E6ECF7; --on-ink-muted: #93A1BC;
    --bg: #0A1120; --surface: #111A2E; --surface-2: #17223A;
    --text: #E6ECF7; --muted: #93A1BC; --border: #22304D;
    --brand-soft: rgba(91, 133, 255, .14); --accent-soft: rgba(45, 212, 191, .14);
  }
  :root:not([data-theme="light"]) [data-palette="green"],
  :root:not([data-theme="light"])[data-palette="green"] {
    --brand: #22C55E; --brand-strong: #4ADE80; --accent: #86EFAC;
    --ink: #0B0F14; --ink-2: #151C24; --on-ink: #E5E9ED; --on-ink-muted: #9AA5B1;
    --bg: #0E1318; --surface: #151C23; --surface-2: #1C252E;
    --text: #E5E9ED; --muted: #9AA5B1; --border: #26313C;
    --brand-soft: rgba(34, 197, 94, .14); --accent-soft: rgba(134, 239, 172, .12);
  }
}
:root[data-theme="dark"],
:root[data-theme="dark"] [data-palette="blue"],
:root[data-theme="dark"][data-palette="blue"] {
  --brand: #5B85FF; --brand-strong: #7C9DFF; --accent: #2DD4BF;
  --ink: #07101F; --ink-2: #0F1C36; --on-ink: #E6ECF7; --on-ink-muted: #93A1BC;
  --bg: #0A1120; --surface: #111A2E; --surface-2: #17223A;
  --text: #E6ECF7; --muted: #93A1BC; --border: #22304D;
  --brand-soft: rgba(91, 133, 255, .14); --accent-soft: rgba(45, 212, 191, .14);
}
:root[data-theme="dark"] [data-palette="green"],
:root[data-theme="dark"][data-palette="green"] {
  --brand: #22C55E; --brand-strong: #4ADE80; --accent: #86EFAC;
  --ink: #0B0F14; --ink-2: #151C24; --on-ink: #E5E9ED; --on-ink-muted: #9AA5B1;
  --bg: #0E1318; --surface: #151C23; --surface-2: #1C252E;
  --text: #E5E9ED; --muted: #9AA5B1; --border: #26313C;
  --brand-soft: rgba(34, 197, 94, .14); --accent-soft: rgba(134, 239, 172, .12);
}

/* ---------- Základ ---------- */
:root {
  --font: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-display: "Space Grotesk", var(--font);
  --radius: 14px;
  --radius-lg: 22px;
  --shadow: 0 1px 2px rgba(10, 20, 40, .06), 0 8px 24px rgba(10, 20, 40, .06);
  --container: 1160px;
  --gutter: clamp(16px, 4vw, 32px);
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
}
img, svg { display: block; max-width: 100%; }
a { color: var(--brand); text-decoration: none; }
a:hover { color: var(--brand-strong); }
h1, h2, h3 { font-family: var(--font-display); line-height: 1.15; letter-spacing: -.02em; margin: 0 0 .5em; }
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); font-weight: 700; }
h2 { font-size: clamp(1.6rem, 3vw, 2.3rem); font-weight: 700; }
h3 { font-size: 1.2rem; font-weight: 600; }
p  { margin: 0 0 1em; }

.site { background: var(--bg); color: var(--text); }
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(56px, 8vw, 104px); }
.section--alt { background: var(--surface-2); }
.eyebrow {
  display: inline-block; font-size: .8rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
  color: var(--brand); margin-bottom: .8rem;
}
.lead { font-size: 1.15rem; color: var(--muted); max-width: 60ch; }

/* ---------- Logo ---------- */
/* Symbol: čtyři buňky. Nápis: Baloo 2, velká zelená čtyřka za písmeny,
   natočená o 18°, písmena ji mírně překrývají a mají obrys v barvě pozadí (--logo-bg). */
.logo {
  --logo-bg: var(--surface);
  display: inline-flex; align-items: center; gap: .42em; font-size: 1.55rem; line-height: 1; color: var(--text);
}
.logo:hover { color: var(--text); }
.logo__mark { width: 1.3em; height: 1.3em; flex: none; }
.logo__mark svg { width: 100%; height: 100%; }
.logo__word { display: inline-flex; align-items: center; font-family: "Baloo 2", var(--font-display); font-weight: 800; letter-spacing: -.015em; }
.logo__word > span { position: relative; z-index: 1; }
.logo__word .logo__four {
  z-index: 0; display: inline-block; font-size: 2em; line-height: .8; color: #22C55E;
  margin-inline: -.06em -.08em; transform: translateY(-.1em) rotate(18deg);
}
.logo__word > span:not(.logo__four) {
  text-shadow:
    .035em 0 0 var(--logo-bg), -.035em 0 0 var(--logo-bg), 0 .035em 0 var(--logo-bg), 0 -.035em 0 var(--logo-bg),
    .025em .025em 0 var(--logo-bg), -.025em .025em 0 var(--logo-bg), .025em -.025em 0 var(--logo-bg), -.025em -.025em 0 var(--logo-bg);
}
.on-ink .logo, .on-ink .logo:hover { --logo-bg: var(--ink); color: var(--on-ink); }

/* ---------- Tlačítka ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .5rem; padding: .8rem 1.3rem; border-radius: 999px;
  font-weight: 600; font-size: .98rem; border: 1px solid transparent; cursor: pointer;
  transition: transform .15s ease, background .15s ease, box-shadow .15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn--primary { background: var(--brand); color: #fff; box-shadow: 0 6px 20px var(--brand-soft); }
.btn--primary:hover { background: var(--brand-strong); color: #fff; }
.btn--ghost { border-color: currentColor; color: inherit; background: transparent; }
.btn--ghost:hover { color: inherit; background: rgba(255,255,255,.06); }

/* ---------- Hlavička ---------- */
.header {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in srgb, var(--surface) 85%, transparent);
  backdrop-filter: saturate(1.4) blur(12px);
  border-bottom: 1px solid var(--border);
}
.header__inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.nav { display: flex; align-items: center; gap: .25rem; }
.nav a {
  color: var(--muted); font-weight: 500; padding: .5rem .9rem; border-radius: 999px; transition: color .15s, background .15s;
}
.nav a:hover { color: var(--text); background: var(--surface-2); }
.nav a[aria-current="page"] { color: var(--brand); background: var(--brand-soft); }
.nav .btn { margin-left: .5rem; padding: .55rem 1.1rem; }
.nav a.btn--primary, .nav a.btn--primary:hover { color: #fff; background: var(--brand); }
.nav a.btn--primary:hover { background: var(--brand-strong); }
.nav-toggle {
  display: none; width: 44px; height: 44px; border: 1px solid var(--border); border-radius: 12px;
  background: var(--surface); color: var(--text); cursor: pointer; align-items: center; justify-content: center;
}
.nav-toggle svg { width: 22px; height: 22px; }

@media (max-width: 760px) {
  .nav-toggle { display: inline-flex; }
  .nav {
    position: absolute; left: 0; right: 0; top: 100%; flex-direction: column; align-items: stretch; gap: 0;
    padding: .5rem var(--gutter) 1rem; background: var(--surface); border-bottom: 1px solid var(--border);
    display: none;
  }
  .nav.is-open { display: flex; }
  .nav a { padding: .8rem 1rem; border-radius: 10px; }
  .nav .btn { margin: .5rem 0 0; justify-content: center; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative; overflow: hidden; color: var(--on-ink); background: var(--ink);
  padding-block: clamp(72px, 11vw, 140px);
}
.hero::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(600px 400px at 85% 10%, color-mix(in srgb, var(--brand) 55%, transparent), transparent 70%),
    radial-gradient(500px 360px at 70% 90%, color-mix(in srgb, var(--accent) 35%, transparent), transparent 70%);
}
.hero__grid {
  position: absolute; inset: 0; pointer-events: none; opacity: .18;
  background-image: linear-gradient(var(--on-ink-muted) 1px, transparent 1px), linear-gradient(90deg, var(--on-ink-muted) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse at 75% 40%, #000 10%, transparent 65%);
  -webkit-mask-image: radial-gradient(ellipse at 75% 40%, #000 10%, transparent 65%);
}
.hero .container { position: relative; }
.hero .eyebrow { color: var(--accent); }
.hero h1 { max-width: 16ch; }
.hero h1 em { font-style: normal; background: linear-gradient(90deg, var(--brand), var(--accent)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero .lead { color: var(--on-ink-muted); }
.hero__actions { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 2rem; }
.hero--page { padding-block: clamp(56px, 8vw, 96px); }

/* ---------- Karty ---------- */
.grid { display: grid; gap: 1.25rem; }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.grid--4 { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }
.section__head { margin-bottom: 2.5rem; max-width: 640px; }
.card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 1.75rem; box-shadow: var(--shadow); transition: transform .2s ease, border-color .2s ease;
}
.card:hover { transform: translateY(-3px); border-color: color-mix(in srgb, var(--brand) 40%, var(--border)); }
.card p { color: var(--muted); margin: 0; }
.card__icon {
  width: 48px; height: 48px; border-radius: 14px; display: grid; place-items: center; margin-bottom: 1.1rem;
  background: var(--brand-soft); color: var(--brand);
}
.card__icon svg { width: 24px; height: 24px; }

/* ---------- Čísla / hodnoty ---------- */
.stat { padding: 1.5rem; border-radius: var(--radius); background: var(--surface); border: 1px solid var(--border); }
.stat__num { font-family: var(--font-display); font-size: 2.4rem; font-weight: 700; color: var(--brand); line-height: 1; }
.stat__label { color: var(--muted); margin-top: .4rem; font-size: .95rem; }

/* ---------- Timeline ---------- */
.timeline { list-style: none; margin: 0; padding: 0; border-left: 2px solid var(--border); }
.timeline li { position: relative; padding: 0 0 1.75rem 1.75rem; }
.timeline li::before {
  content: ""; position: absolute; left: -7px; top: .35rem; width: 12px; height: 12px; border-radius: 50%;
  background: var(--surface); border: 2px solid var(--brand);
}
.timeline strong { display: block; font-family: var(--font-display); color: var(--brand); }
.timeline span { color: var(--muted); }

/* ---------- Dvousloupec ---------- */
.split { display: grid; gap: clamp(2rem, 5vw, 4rem); grid-template-columns: 1fr; align-items: start; }
@media (min-width: 900px) { .split { grid-template-columns: 1fr 1fr; } }

/* ---------- CTA pruh ---------- */
.cta {
  border-radius: var(--radius-lg); padding: clamp(2rem, 5vw, 3.5rem);
  background: linear-gradient(120deg, var(--brand), color-mix(in srgb, var(--brand) 40%, var(--accent)));
  color: #fff; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1.5rem;
}
.cta h2 { margin: 0; }
.cta p { margin: .4rem 0 0; opacity: .9; }
.cta .btn { background: #fff; color: var(--ink); }

/* ---------- Kontakt ---------- */
.contact-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 1rem; }
.contact-list li { display: flex; gap: 1rem; align-items: flex-start; }
.contact-list .card__icon { margin: 0; flex: none; }
.contact-list small { display: block; color: var(--muted); }
.form { display: grid; gap: 1rem; }
.form label { display: grid; gap: .4rem; font-weight: 500; font-size: .95rem; }
.form input, .form textarea {
  font: inherit; color: var(--text); background: var(--bg); border: 1px solid var(--border);
  border-radius: 12px; padding: .8rem 1rem; width: 100%; transition: border-color .15s, box-shadow .15s;
}
.form input:focus, .form textarea:focus { outline: none; border-color: var(--brand); box-shadow: 0 0 0 4px var(--brand-soft); }
.form textarea { min-height: 140px; resize: vertical; }
.form .btn { justify-self: start; }

/* ---------- Patička ---------- */
.footer { background: var(--ink); color: var(--on-ink-muted); padding-block: 3.5rem 2rem; }
.footer__top { display: flex; flex-wrap: wrap; gap: 2rem; justify-content: space-between; align-items: flex-start; }
.footer a { color: var(--on-ink-muted); }
.footer a:hover { color: var(--on-ink); }
.footer__links { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.footer__bottom { margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid color-mix(in srgb, var(--on-ink-muted) 20%, transparent); font-size: .9rem; }

/* ---------- Hero s ukázkou ---------- */
.hero__layout { display: grid; gap: clamp(2.5rem, 5vw, 4rem); grid-template-columns: 1fr; align-items: center; }
@media (min-width: 1000px) { .hero__layout { grid-template-columns: 10fr 11fr; } }
.hero__layout h1 { font-size: clamp(2.1rem, 4.2vw, 3.3rem); max-width: 18ch; }

/* ---------- Ukázka: tabulka -> aplikace ---------- */
/* Ukázka je vždy světlá (jako snímek obrazovky), i v tmavém režimu webu */
.demo {
  --surface: #FFFFFF; --surface-2: #EEF1F3; --text: #17202B; --muted: #5A6573; --border: #E0E4E8;
  --brand: #16A34A; --brand-strong: #12833C; --brand-soft: rgba(22, 163, 74, .10); --accent-soft: rgba(101, 211, 138, .16);
  --ink: #1F2937; --on-ink: #EEF2F5;
}
.demo {
  position: relative; margin: 0; background: var(--surface); color: var(--text);
  border: 1px solid rgba(255, 255, 255, .14); border-radius: 14px;
  box-shadow: 0 40px 80px -30px rgba(0, 0, 0, .55); overflow: hidden;
}
.demo__bar { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: .6rem .7rem .6rem 1rem; border-bottom: 1px solid var(--border); background: var(--surface-2); }
.demo__file { font-size: .85rem; color: var(--muted); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; min-width: 0; }
.demo__file svg { display: inline-block; vertical-align: -3px; margin-right: .45rem; }

.toggle { position: relative; display: inline-flex; flex: none; padding: 3px; border-radius: 999px; background: var(--surface); border: 1px solid var(--border); }
.toggle__pill {
  position: absolute; top: 3px; bottom: 3px; left: 0; width: 0; border-radius: 999px; background: var(--brand);
  box-shadow: 0 4px 14px color-mix(in srgb, var(--brand) 45%, transparent);
  transition: transform .4s cubic-bezier(.3,.7,.2,1), width .4s cubic-bezier(.3,.7,.2,1);
}
.toggle button {
  position: relative; z-index: 1; font: 600 .85rem/1 var(--font); color: var(--muted); background: none; border: 0;
  padding: .5rem .95rem; border-radius: 999px; cursor: pointer; transition: color .3s;
}
.toggle button[aria-pressed="true"] { color: #fff; }
.toggle button.is-tapped::after {
  content: ""; position: absolute; inset: -4px; border-radius: 999px; border: 2px solid var(--brand);
  animation: tap .6s ease-out forwards;
}
@keyframes tap { from { opacity: .9; transform: scale(.85); } to { opacity: 0; transform: scale(1.25); } }

.demo__cursor {
  position: absolute; left: 0; top: 0; z-index: 5; width: 22px; height: 22px; pointer-events: none;
  transform: translate(var(--cx, 70%), var(--cy, 120px)); transition: transform .7s cubic-bezier(.4,0,.2,1), opacity .3s;
  filter: drop-shadow(0 2px 3px rgba(0,0,0,.35)); opacity: 0;
}
.demo__cursor.is-on { opacity: 1; }
.demo__cursor svg { width: 100%; height: 100%; transition: transform .12s; }
.demo__cursor.is-press svg { transform: scale(.8); }

.demo__stage { position: relative; height: 384px; }
.view { position: absolute; inset: 0; overflow: hidden; transition: opacity .45s ease, transform .45s cubic-bezier(.2,.7,.2,1); }
.demo[data-view="sheet"] .app { opacity: 0; transform: translateY(10px); pointer-events: none; }
.demo[data-view="app"] .sheet { opacity: 0; transform: scale(1.02); pointer-events: none; }

/* tabulka – záměrně vypadá jako Excel, v obou režimech */
.sheet { font: 400 13px/1.2 Calibri, Carlito, var(--font); color: #222; background: #fff; }
.sheet__fx { display: flex; align-items: center; height: 28px; border-bottom: 1px solid #d4d4d4; }
.sheet__fx b { width: 56px; line-height: 28px; text-align: center; font-weight: 400; border-right: 1px solid #d4d4d4; }
.sheet__fx span { padding-left: .6rem; color: #555; }
.sheet table { width: 100%; border-collapse: collapse; table-layout: fixed; }
.sheet th, .sheet td { height: 30px; padding: 0 6px; border: 1px solid #dadada; text-align: left; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.sheet thead th { height: 22px; background: #f3f3f3; color: #555; font-weight: 400; text-align: center; }
.sheet tbody th { background: #f3f3f3; color: #555; font-weight: 400; text-align: center; }
.sheet col.c0 { width: 34px; }
.sheet .head td { background: #217346; color: #fff; font-weight: 700; }
.sheet .y { background: #fff2a8; } .sheet .o { background: #fcd5b4; }
.sheet .r { color: #c00000; font-weight: 700; } .sheet .i { color: #777; font-style: italic; }
.sheet .sel { outline: 2px solid #217346; outline-offset: -2px; }

/* aplikace */
.app { display: flex; flex-direction: column; gap: .8rem; padding: 1rem 1.1rem; background: var(--surface); }
.app__top { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.app__top h3 { margin: 0; font-size: 1.15rem; }
.app__new { font-size: .82rem; font-weight: 600; padding: .5rem .85rem; border-radius: 999px; background: var(--brand); color: #fff; }
.chips { display: flex; flex-wrap: wrap; gap: .4rem; }
.chip { font-size: .78rem; padding: .25rem .65rem; border-radius: 999px; border: 1px solid var(--border); color: var(--muted); }
.chip[aria-current] { background: var(--ink); border-color: var(--ink); color: var(--on-ink); }
.rows { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--border); }
.rows li { display: grid; grid-template-columns: 1fr auto 124px 28px; gap: .75rem; align-items: center; padding: .5rem 0; border-bottom: 1px solid var(--border); font-size: .88rem; line-height: 1.3; }
.rows strong { display: block; font-weight: 600; }
.rows small { color: var(--muted); font-size: .78rem; }
.date { color: var(--muted); font-variant-numeric: tabular-nums; white-space: nowrap; }
.date.missing { color: #D9480F; font-weight: 600; }
.pill { justify-self: start; font-size: .75rem; font-weight: 600; padding: .22rem .6rem; border-radius: 999px; background: var(--surface-2); color: var(--muted); }
.pill.run { background: var(--brand-soft); color: var(--brand); }
.pill.done { background: var(--accent-soft); color: var(--brand-strong); }
.pill.wait { background: rgba(245, 159, 0, .16); color: #B45309; }
.who { display: grid; place-items: center; width: 28px; height: 28px; border-radius: 50%; font-size: .7rem; font-weight: 600; background: var(--surface-2); color: var(--muted); }

.app__top, .chips, .rows li { transition: opacity .4s ease, transform .4s cubic-bezier(.2,.7,.2,1); }
.demo[data-view="sheet"] .app__top, .demo[data-view="sheet"] .chips, .demo[data-view="sheet"] .rows li { opacity: 0; transform: translateY(10px); }
.demo[data-view="app"] .app__top { transition-delay: .2s; }
.demo[data-view="app"] .chips { transition-delay: .3s; }
.demo[data-view="app"] .rows li:nth-child(1) { transition-delay: .4s; }
.demo[data-view="app"] .rows li:nth-child(2) { transition-delay: .5s; }
.demo[data-view="app"] .rows li:nth-child(3) { transition-delay: .6s; }
.demo[data-view="app"] .rows li:nth-child(4) { transition-delay: .7s; }
.demo[data-view="app"] .rows li:nth-child(5) { transition-delay: .8s; }
.demo__hint { padding: .6rem 1rem; border-top: 1px solid var(--border); font-size: .82rem; color: var(--muted); background: var(--surface-2); }

@media (max-width: 600px) {
  .col-opt { display: none; }
  .rows li { grid-template-columns: 1fr auto; }
  .rows .date, .rows .who { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  .view, .app__top, .chips, .rows li, .toggle__pill, .demo__cursor { transition: none !important; }
  .demo__cursor { display: none; }
}

/* ---------- Kontaktní formulář: stavy ---------- */
.form .hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form__opt { color: var(--muted); font-weight: 400; }
.form__error { color: #C2410C; font-size: .88rem; font-weight: 500; }
.form [aria-invalid="true"] { border-color: #C2410C; }
.form [aria-invalid="true"]:focus { box-shadow: 0 0 0 4px rgba(194, 65, 12, .15); }
.form__note { margin: 0; font-size: .85rem; color: var(--muted); }
.alert { padding: .9rem 1.1rem; border-radius: 12px; margin-bottom: 1.25rem; font-size: .95rem; }
.alert--ok { background: var(--brand-soft); color: var(--text); border: 1px solid color-mix(in srgb, var(--brand) 35%, transparent); }
.alert--err { background: rgba(194, 65, 12, .08); color: var(--text); border: 1px solid rgba(194, 65, 12, .35); }
.card { position: relative; }
#formular { scroll-margin-top: 96px; }
