/* =============================================================================
 * Displayna — "Modern" Theme (hell, luftig, Signage-SaaS)
 * Angelehnt an moderne Konkurrenten (ScreenCloud/Yodeck/OptiSigns): weißer
 * Grund, geometrische Sans (Sora/Inter, self-hosted), kräftige Akzente
 * (Displayna-Türkis + Koralle), große Produkt-/Einsatz-Fotos, viel Weißraum,
 * runde Karten, weiche Schatten. Kein Google-CDN (DSGVO), CSP bleibt gültig.
 * ========================================================================== */

:root {
  --bg: #ffffff;
  --bg-tint: #ecfbf5;
  --bg-soft: #f5f8f7;
  --ink: #0c1a16;
  --ink-2: #55655f;
  --ink-3: #93a29c;
  --teal: #0d9488;
  --teal-500: #14b8a6;
  --teal-400: #2dd4bf;
  --teal-700: #0f766e;
  --teal-50: #e8faf4;
  --coral: #ff6a52;
  --amber: #ffb020;
  --line: #e5ece9;
  --line-strong: #d3ddd9;
  --card: #ffffff;
  --sora: "Sora", system-ui, sans-serif;
  --inter: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --ease: cubic-bezier(.16, 1, .3, 1);
  --r-lg: 26px;
  --r-md: 16px;
  --r-sm: 10px;
  --sh-sm: 0 2px 10px rgba(12, 26, 22, .05);
  --sh: 0 16px 44px rgba(12, 26, 22, .09);
  --sh-teal: 0 20px 55px rgba(13, 148, 136, .24);
  --maxw: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0; background: var(--bg); color: var(--ink);
  font-family: var(--inter); font-weight: 400; line-height: 1.6; letter-spacing: -.011em;
  -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; overflow-x: hidden;
}
::selection { background: var(--teal); color: #fff; }
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 24px; }
.container--wide { max-width: 1320px; }

/* --------------------------------------------------------------- Typo */
.eyebrow { font-family: var(--inter); font-size: .78rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; color: var(--teal); margin: 0; }
.eyebrow--light { color: var(--teal-400); }
h1, h2, h3, .h-display, .h1, .h2, .h3 { font-family: var(--sora); font-weight: 700; letter-spacing: -.03em; line-height: 1.08; margin: 0; color: var(--ink); }
.h-display { font-size: clamp(2.6rem, 5.6vw, 4.6rem); font-weight: 800; letter-spacing: -.04em; }
.h1 { font-size: clamp(2.1rem, 4vw, 3.1rem); }
.h2 { font-size: clamp(1.8rem, 3.2vw, 2.6rem); }
.h3 { font-size: 1.2rem; letter-spacing: -.02em; }
.lead { font-size: clamp(1.05rem, 1.5vw, 1.24rem); color: var(--ink-2); margin: 0; line-height: 1.55; }
.grad { background: linear-gradient(100deg, var(--teal), var(--teal-400)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.muted { color: var(--ink-3); }
.balance { text-wrap: balance; }
.maxch { max-width: 40ch; }
.center { text-align: center; }
.mt-2 { margin-top: .5rem; } .mt-3 { margin-top: 1rem; } .mt-4 { margin-top: 1.5rem; }
.mt-6 { margin-top: 2.5rem; } .mx-auto { margin-inline: auto; }

/* ------------------------------------------------------------- Buttons */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .78rem 1.4rem; border-radius: 12px;
  font-family: var(--inter); font-weight: 600; font-size: .97rem; letter-spacing: -.01em;
  border: 1.5px solid transparent; background: transparent; color: var(--ink); cursor: pointer;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease), border-color .25s var(--ease); white-space: nowrap;
}
.btn svg { width: 1.05em; height: 1.05em; }
.btn:hover { transform: translateY(-2px); }
.btn--primary { background: linear-gradient(180deg, var(--teal-500), var(--teal)); color: #fff; box-shadow: var(--sh-teal); }
.btn--primary:hover { box-shadow: 0 24px 60px rgba(13, 148, 136, .34); }
.btn--outline { border-color: var(--line-strong); color: var(--ink); background: #fff; }
.btn--outline:hover { border-color: var(--teal); color: var(--teal); }
.btn--ghost { color: var(--teal); }
.btn--ghost:hover { background: var(--teal-50); }
.btn--white { background: #fff; color: var(--teal-700); }
.btn--dark { background: var(--ink); color: #fff; }
.btn--dark:hover { background: #16302a; }
.btn--lg { padding: .95rem 1.7rem; font-size: 1.02rem; }
.btn--sm { padding: .55rem 1rem; font-size: .88rem; }
.btn-row { display: flex; flex-wrap: wrap; gap: .8rem; align-items: center; }

.link-arrow { display: inline-flex; align-items: center; gap: .35rem; color: var(--teal); font-weight: 600; font-size: .95rem; }
.link-arrow::after { content: "→"; transition: transform .3s var(--ease); }
.link-arrow:hover::after { transform: translateX(4px); }

.pill { display: inline-flex; align-items: center; gap: .5rem; padding: .5rem 1rem; border-radius: 999px; font-size: .85rem; font-weight: 600; color: var(--teal-700); background: var(--teal-50); border: 1px solid rgba(13, 148, 136, .16); }
.pill svg { width: 1em; height: 1em; color: var(--teal); }
.chip { display: inline-flex; align-items: center; gap: .4rem; padding: .5rem .95rem; border-radius: 999px; font-size: .86rem; font-weight: 500; color: var(--ink-2); background: #fff; border: 1px solid var(--line); box-shadow: var(--sh-sm); }
.chip-row { display: flex; flex-wrap: wrap; gap: .6rem; }

/* ----------------------------------------------------------------- Nav */
.nav { position: sticky; top: 0; z-index: 50; background: rgba(255, 255, 255, .82); backdrop-filter: saturate(150%) blur(14px); border-bottom: 1px solid var(--line); }
.nav__inner { display: flex; align-items: center; gap: 1rem; max-width: var(--maxw); margin-inline: auto; padding: .75rem 24px; }
.nav__brand { display: flex; align-items: center; gap: .5rem; font-family: var(--sora); font-weight: 800; font-size: 1.25rem; letter-spacing: -.03em; }
.nav__spacer { flex: 1; }
.nav__links { display: flex; align-items: center; gap: .2rem; }
.nav__group { position: relative; }
.nav__link { padding: .5rem .85rem; border-radius: 10px; font-weight: 500; font-size: .96rem; color: var(--ink-2); transition: color .2s, background .2s; }
.nav__link:hover { color: var(--ink); background: var(--bg-soft); }
.nav__panel { position: absolute; top: calc(100% + 10px); left: 0; min-width: 300px; display: grid; gap: .1rem; padding: .5rem; background: #fff; border: 1px solid var(--line); border-radius: var(--r-md); box-shadow: var(--sh); opacity: 0; visibility: hidden; transform: translateY(8px); transition: all .28s var(--ease); }
.nav__group:hover .nav__panel { opacity: 1; visibility: visible; transform: translateY(0); }
.nav__panel a { display: flex; gap: .7rem; align-items: center; padding: .6rem .7rem; border-radius: 12px; color: var(--ink-2); transition: background .2s, color .2s; }
.nav__panel a:hover { background: var(--teal-50); color: var(--ink); }
.nav__panel .t { font-weight: 600; color: var(--ink); font-size: .93rem; }
.nav__panel .d { font-size: .78rem; color: var(--ink-3); }
.nav__panel .ico { display: grid; place-items: center; width: 34px; height: 34px; border-radius: 10px; background: var(--teal-50); color: var(--teal); flex: none; }
.nav__panel .ico svg { width: 18px; height: 18px; }
.nav__cta { display: flex; align-items: center; gap: .55rem; }
.nav__lang { display: grid; place-items: center; width: 38px; height: 34px; border-radius: 10px; border: 1px solid var(--line); font-size: .8rem; font-weight: 600; color: var(--ink-2); }
.nav__lang:hover { color: var(--teal); border-color: var(--teal); }
.nav__burger { display: none; width: 42px; height: 38px; border: 1px solid var(--line); border-radius: 10px; background: #fff; cursor: pointer; position: relative; }
.nav__burger span, .nav__burger span::before, .nav__burger span::after { content: ""; position: absolute; left: 50%; top: 50%; width: 18px; height: 2px; background: var(--ink); transform: translate(-50%, -50%); transition: .3s var(--ease); }
.nav__burger span::before { transform: translate(-50%, -6px); }
.nav__burger span::after { transform: translate(-50%, 4px); }

.mobile { display: none; }
.mobile.open { display: flex; flex-direction: column; gap: .1rem; padding: 1rem 24px 2rem; background: #fff; border-bottom: 1px solid var(--line); }
.mobile a { padding: .7rem .2rem; color: var(--ink-2); border-bottom: 1px solid var(--line); font-weight: 500; }
.mobile a.sub { padding-left: 1.1rem; font-size: .92rem; color: var(--ink-3); }
.mobile a.btn { border-radius: 12px; justify-content: center; margin-top: .8rem; }
body.menu-open { overflow: hidden; }

/* ------------------------------------------------------------ Sections */
.section { padding: clamp(3.5rem, 8vw, 6.5rem) 0; }
.section--tint { background: var(--bg-tint); }
.section--soft { background: var(--bg-soft); }
.section--tight { padding: clamp(2rem, 4vw, 3rem) 0; }
.section-head { max-width: 640px; }

/* --------------------------------------------------------------- Hero */
.hero { position: relative; padding: clamp(3rem, 7vw, 5.5rem) 0 clamp(2.5rem, 5vw, 4rem); overflow: hidden; }
.hero__blob { position: absolute; z-index: 0; border-radius: 50%; filter: blur(70px); opacity: .5; pointer-events: none; }
.hero__blob--1 { width: 520px; height: 520px; right: -120px; top: -160px; background: radial-gradient(circle, rgba(45, 212, 191, .55), transparent 70%); }
.hero__blob--2 { width: 460px; height: 460px; left: -160px; bottom: -200px; background: radial-gradient(circle, rgba(255, 106, 82, .32), transparent 70%); }
.hero .container { position: relative; z-index: 1; }
.hero__grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 52px; align-items: center; }
.hero__visual { position: relative; }
.hero__frame { position: relative; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--sh); border: 1px solid var(--line); aspect-ratio: 4 / 3; background: #eaf2f0; }
.hero__frame img { width: 100%; height: 100%; object-fit: cover; }
.hero__floative { position: absolute; left: -18px; bottom: 26px; display: flex; align-items: center; gap: .7rem; padding: .8rem 1rem; background: #fff; border-radius: 14px; box-shadow: var(--sh); border: 1px solid var(--line); }
.hero__floative .dot { width: 10px; height: 10px; border-radius: 50%; background: var(--teal); box-shadow: 0 0 0 4px rgba(13, 148, 136, .16); }
.hero__floative b { font-family: var(--sora); font-size: .95rem; }
.hero__floative span { display: block; font-size: .76rem; color: var(--ink-3); }
.hero__floative--tr { left: auto; right: -14px; bottom: auto; top: 22px; }

/* -------------------------------------------------------- Trust strip */
.trust { display: flex; flex-wrap: wrap; gap: .8rem 1.4rem; align-items: center; justify-content: center; }
.trust span { display: inline-flex; align-items: center; gap: .45rem; color: var(--ink-2); font-weight: 600; font-size: .92rem; }
.trust svg { width: 1.05em; height: 1.05em; color: var(--teal); }

/* -------------------------------------------------------- Feature grid */
.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.feature { background: var(--card); border: 1px solid var(--line); border-radius: var(--r-md); padding: 1.7rem; box-shadow: var(--sh-sm); transition: transform .35s var(--ease), box-shadow .35s var(--ease); }
.feature:hover { transform: translateY(-5px); box-shadow: var(--sh); }
.feature__ico { display: grid; place-items: center; width: 52px; height: 52px; border-radius: 14px; color: #fff; margin-bottom: 1.1rem; box-shadow: 0 8px 20px rgba(13, 148, 136, .28); }
.feature__ico svg { width: 24px; height: 24px; }
.ico-teal { background: linear-gradient(150deg, var(--teal-400), var(--teal)); }
.ico-coral { background: linear-gradient(150deg, #ff8f7a, var(--coral)); box-shadow: 0 8px 20px rgba(255, 106, 82, .3); }
.ico-amber { background: linear-gradient(150deg, #ffca5c, var(--amber)); box-shadow: 0 8px 20px rgba(255, 176, 32, .3); }
.ico-ink { background: linear-gradient(150deg, #35514a, var(--ink)); box-shadow: 0 8px 20px rgba(12, 26, 22, .25); }
.feature h3 { font-size: 1.2rem; margin-bottom: .4rem; }
.feature p { color: var(--ink-2); font-size: .95rem; margin: 0; }

/* --------------------------------------------------- Product showcase */
.showcase { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.showcase--rev .showcase__media { order: 2; }
.browser { border-radius: var(--r-md); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--sh); background: #fff; }
.browser__bar { display: flex; align-items: center; gap: .4rem; padding: .7rem .9rem; background: var(--bg-soft); border-bottom: 1px solid var(--line); }
.browser__bar i { width: 11px; height: 11px; border-radius: 50%; background: #dfe6e3; }
.browser__bar i:nth-child(1) { background: #ff6a52; } .browser__bar i:nth-child(2) { background: var(--amber); } .browser__bar i:nth-child(3) { background: var(--teal-400); }
.browser img { width: 100%; display: block; }
.check { display: flex; gap: .6rem; align-items: flex-start; margin-top: .7rem; color: var(--ink-2); }
.check svg { width: 22px; height: 22px; flex: none; color: #fff; background: var(--teal); border-radius: 50%; padding: 3px; }

/* --------------------------------------------------------------- Stats */
.statband { border-radius: var(--r-lg); padding: clamp(2rem, 4vw, 3rem); background: linear-gradient(135deg, var(--teal-700), var(--teal)); color: #fff; }
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stat .n { font-family: var(--sora); font-weight: 800; font-size: clamp(2.2rem, 4vw, 3rem); line-height: 1; }
.stat .l { color: rgba(255, 255, 255, .85); font-size: .92rem; margin-top: .4rem; }

/* ------------------------------------------------------------ Industries */
.industries { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.industry { display: flex; flex-direction: column; overflow: hidden; background: var(--card); border: 1px solid var(--line); border-radius: var(--r-md); box-shadow: var(--sh-sm); transition: transform .35s var(--ease), box-shadow .35s var(--ease); }
.industry:hover { transform: translateY(-5px); box-shadow: var(--sh); }
.industry__photo { aspect-ratio: 3 / 2; overflow: hidden; background: var(--bg-soft); }
.industry__photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.industry:hover .industry__photo img { transform: scale(1.05); }
.industry__body { display: flex; flex-direction: column; gap: .5rem; padding: 1.4rem; flex: 1; }
.industry__ico { display: grid; place-items: center; width: 40px; height: 40px; border-radius: 11px; background: var(--teal-50); color: var(--teal); }
.industry__ico svg { width: 20px; height: 20px; }
.industry h3 { font-size: 1.14rem; }
.industry p { color: var(--ink-2); font-size: .89rem; margin: 0; flex: 1; }
.industry--cta { background: linear-gradient(150deg, var(--teal-50), #fff); border-color: rgba(13, 148, 136, .2); justify-content: center; }

/* ------------------------------------------------------------ Steps */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.step { position: relative; padding: 1.6rem; background: #fff; border: 1px solid var(--line); border-radius: var(--r-md); box-shadow: var(--sh-sm); }
.step__n { display: grid; place-items: center; width: 40px; height: 40px; border-radius: 12px; background: var(--ink); color: #fff; font-family: var(--sora); font-weight: 700; margin-bottom: .9rem; }
.step h3 { font-size: 1.12rem; margin-bottom: .35rem; }
.step p { color: var(--ink-2); font-size: .93rem; margin: 0; }

/* --------------------------------------------------------------- CTA */
.cta { position: relative; overflow: hidden; text-align: center; border-radius: var(--r-lg); padding: clamp(2.8rem, 6vw, 4.5rem) 1.5rem; background: linear-gradient(135deg, var(--teal-700), var(--teal) 55%, var(--teal-400)); color: #fff; }
.cta h2 { color: #fff; }
.cta .lead { color: rgba(255, 255, 255, .9); }
.cta::after { content: ""; position: absolute; width: 380px; height: 380px; border-radius: 50%; background: rgba(255, 255, 255, .12); right: -120px; top: -140px; filter: blur(20px); }
.cta > * { position: relative; }

/* -------------------------------------------------------------- Footer */
.footer { background: var(--ink); color: #c7d3cf; padding: 3.5rem 0 2rem; }
.footer__grid { display: grid; grid-template-columns: 1.6fr repeat(4, 1fr); gap: 2rem; }
.footer__brand { display: flex; align-items: center; gap: .5rem; font-family: var(--sora); font-weight: 800; font-size: 1.2rem; color: #fff; }
.footer h4 { font-size: .76rem; text-transform: uppercase; letter-spacing: .12em; color: #7f8f8a; margin: 0 0 .85rem; font-family: var(--inter); font-weight: 700; }
.footer a { display: block; color: #b7c4bf; font-size: .92rem; padding: .22rem 0; }
.footer a:hover { color: var(--teal-400); }
.footer p { color: #9aa8a3; font-size: .92rem; }
.footer__bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem; margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid rgba(255, 255, 255, .1); color: #7f8f8a; font-size: .84rem; }
.footer__bottom a { display: inline; color: #b7c4bf; }

/* --------------------------------------------------------------- Reveal */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-d="1"] { transition-delay: .07s; } .reveal[data-d="2"] { transition-delay: .14s; }
.reveal[data-d="3"] { transition-delay: .21s; } .reveal[data-d="4"] { transition-delay: .28s; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } .btn:hover, .feature:hover, .industry:hover { transform: none; } }

/* Cookie-Banner (von main.js injiziert) — hell */
.cookie { position: fixed; left: 50%; bottom: 20px; transform: translate(-50%, 20px); z-index: 90; width: min(560px, calc(100% - 32px)); background: #fff; border: 1px solid var(--line); border-radius: var(--r-md); padding: 1.2rem 1.3rem; box-shadow: var(--sh); opacity: 0; visibility: hidden; transition: all .4s var(--ease); }
.cookie.show { opacity: 1; visibility: visible; transform: translate(-50%, 0); }
.cookie h4 { font-family: var(--sora); font-size: 1.05rem; margin: 0 0 .4rem; }
.cookie p { color: var(--ink-2); font-size: .88rem; margin: 0 0 .9rem; }
.cookie a { color: var(--teal); }
.cookie__head { display: flex; justify-content: space-between; align-items: start; }
.cookie__x { background: none; border: none; color: var(--ink-3); font-size: 1.4rem; cursor: pointer; line-height: 1; }
.cookie__row { display: flex; flex-wrap: wrap; gap: .5rem; }
.cookie__cats { display: grid; gap: .6rem; margin-bottom: .9rem; }
.cookie__cat { display: flex; justify-content: space-between; gap: 1rem; padding: .7rem; border: 1px solid var(--line); border-radius: 10px; font-size: .84rem; }
.cookie__cat small { display: block; color: var(--ink-3); margin-top: .2rem; }

/* ---------------------------------------------------------- Responsive */
@media (max-width: 940px) {
  .nav__links, .nav__cta .btn { display: none; }
  .nav__burger { display: block; }
  .hero__grid { grid-template-columns: 1fr; gap: 36px; }
  .features, .industries, .steps { grid-template-columns: 1fr 1fr; }
  .showcase { grid-template-columns: 1fr; gap: 28px; }
  .showcase--rev .showcase__media { order: 0; }
  .stats { grid-template-columns: 1fr 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .features, .industries, .steps, .stats { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .hero__floative { left: 8px; }
}

/* =============================================================================
 * INNENSEITEN — Alt-Markup-Komponenten im modernen, hellen Look.
 * Die 40 konvertierten Seiten nutzen das ursprüngliche Klassen-Set (.card,
 * .grid, .split, .acc, .price, .prose, .demo, dunkle Sektionen …). Hier werden
 * die alten Marken-Variablen auf Türkis gemappt, damit alles konsistent im
 * neuen Theme erscheint.
 * ========================================================================== */
:root {
  --brand-50: var(--teal-50); --brand-200: #b6e6df; --brand-300: #7fd8cd;
  --brand-400: var(--teal-400); --brand-500: var(--teal); --brand-600: var(--teal-700); --brand-700: #0b5f57;
  --slate-900: var(--ink); --slate-800: #1f2d29; --slate-700: #3a4a45;
  --slate-600: var(--ink-2); --slate-500: var(--ink-3); --slate-400: #a9b5b0;
  --slate-300: var(--line-strong); --slate-200: var(--line); --slate-100: var(--bg-soft); --slate-50: #f9fbfa; --white: #fff;
  --radius: var(--r-md); --radius-lg: var(--r-lg); --radius-sm: var(--r-sm);
  --shadow-sm: var(--sh-sm); --shadow: var(--sh); --shadow-lg: var(--sh);
  --gutter: 24px; --font: var(--inter);
}

.maxch { max-width: 60ch; } .maxch-sm { max-width: 48ch; }
.mt-1 { margin-top: .5rem; }
.hr { height: 1px; background: var(--line); border: 0; }

/* Grid + Cards */
.grid { display: grid; gap: 22px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); } .grid-3 { grid-template-columns: repeat(3, 1fr); } .grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 940px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }
.card { background: #fff; border: 1px solid var(--line); border-radius: var(--r-md); padding: 26px; box-shadow: var(--sh-sm); transition: transform .3s var(--ease), box-shadow .3s var(--ease); }
.card:hover { transform: translateY(-4px); box-shadow: var(--sh); }
.card .ico { width: 50px; height: 50px; border-radius: 14px; background: var(--teal-50); color: var(--teal); display: grid; place-items: center; margin-bottom: 14px; }
.card .ico svg { width: 24px; height: 24px; }
.card h3 { font-family: var(--sora); font-size: 1.18rem; margin-bottom: 8px; }
.card p { color: var(--ink-2); font-size: .96rem; }

/* Split (Bild + Text) */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 64px); align-items: center; }
.split--rev .split__media { order: 2; }
@media (max-width: 860px) { .split { grid-template-columns: 1fr; } .split--rev .split__media { order: 0; } }
.split__media { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--sh); border: 1px solid var(--line); }
.split__media img { width: 100%; height: auto; }

/* Inner hero background wash */
.hero__bg { position: absolute; inset: 0; z-index: 0; background: radial-gradient(60% 50% at 88% -10%, rgba(45, 212, 191, .18), transparent 60%), radial-gradient(50% 45% at 0% 0%, rgba(255, 106, 82, .10), transparent 60%); }
.breadcrumb { font-size: .85rem; color: var(--ink-3); display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: .6rem; }
.breadcrumb a:hover { color: var(--teal); }
.badge { display: inline-block; padding: .3em .7em; border-radius: 8px; font-size: .72rem; font-weight: 700; letter-spacing: .03em; }

/* Stat colors (default dark; white inside teal statband) */
.stat .n { color: var(--ink); }
.stat .n.grad { background: linear-gradient(100deg, var(--teal), var(--teal-400)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stat .l { color: var(--ink-3); }
.statband .stat .n { color: #fff; }
.statband .stat .l { color: rgba(255, 255, 255, .85); }

/* Tag list + check */
.tag-list { display: flex; flex-wrap: wrap; gap: 8px; }
.tag-list span { background: var(--bg-soft); color: var(--ink-2); padding: .4em .8em; border-radius: 8px; font-size: .85rem; font-weight: 500; border: 1px solid var(--line); }

/* Accordion (FAQ) */
.acc { border-top: 1px solid var(--line); }
.acc__item { border-bottom: 1px solid var(--line); }
.acc__head { width: 100%; text-align: left; display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 20px 4px; font-family: var(--sora); font-size: 1.05rem; font-weight: 600; color: var(--ink); background: none; }
.acc__head .pm { flex: none; width: 26px; height: 26px; border-radius: 50%; border: 1.5px solid var(--line-strong); display: grid; place-items: center; position: relative; transition: .25s; }
.acc__head .pm::before, .acc__head .pm::after { content: ""; position: absolute; background: var(--ink-2); }
.acc__head .pm::before { width: 11px; height: 2px; } .acc__head .pm::after { width: 2px; height: 11px; transition: transform .25s; }
.acc__item.open .pm { border-color: var(--teal); background: var(--teal); }
.acc__item.open .pm::before, .acc__item.open .pm::after { background: #fff; }
.acc__item.open .pm::after { transform: scaleY(0); }
.acc__body { max-height: 0; overflow: hidden; transition: max-height .35s var(--ease); }
.acc__body > div { padding: 0 4px 22px; color: var(--ink-2); max-width: 70ch; }

/* Pricing */
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: stretch; }
@media (max-width: 880px) { .price-grid { grid-template-columns: 1fr; max-width: 440px; margin-inline: auto; } }
.price { display: flex; flex-direction: column; border: 1px solid var(--line); border-radius: var(--r-md); padding: 30px; background: #fff; box-shadow: var(--sh-sm); }
.price--hot { border-color: var(--teal); box-shadow: var(--sh-teal); position: relative; }
.price__amt { font-family: var(--sora); font-size: 2.4rem; font-weight: 800; letter-spacing: -.03em; margin: .2em 0; }
.price ul { margin: 18px 0 24px; flex: 1; list-style: none; padding: 0; }
.price li { padding: 7px 0; color: var(--ink-2); display: flex; gap: 9px; font-size: .95rem; }
.price li svg { flex: none; width: 19px; height: 19px; color: var(--teal); margin-top: 2px; }

/* Prose (Rechtstexte) */
.prose { max-width: 760px; color: var(--ink-2); }
.prose h2 { font-family: var(--sora); font-size: 1.5rem; margin: 2em 0 .6em; color: var(--ink); }
.prose h3 { font-family: var(--sora); font-size: 1.15rem; margin: 1.5em 0 .4em; color: var(--ink); }
.prose p, .prose li { font-size: 1rem; line-height: 1.7; margin-bottom: .8em; }
.prose ul { list-style: disc; padding-left: 1.3em; margin-bottom: 1em; }
.prose a { color: var(--teal); text-decoration: underline; }
.prose strong { color: var(--ink); }

/* Article (Magazin) */
.article-body h2 { font-family: var(--sora); font-size: 1.5rem; line-height: 1.25; font-weight: 700; margin: 2em 0 .6em; color: var(--ink); scroll-margin-top: 90px; }
.article-body h3 { font-family: var(--sora); font-size: 1.18rem; line-height: 1.3; font-weight: 700; margin: 1.6em 0 .5em; color: var(--ink); }
.article-body p { margin: 0 0 1em; } .article-body ul, .article-body ol { margin: 0 0 1.2em; padding-left: 1.4em; } .article-body li { margin-bottom: .45em; }
.article-body a { color: var(--teal-700); text-decoration: underline; text-underline-offset: 3px; }
.article-body a:hover { color: var(--teal); }
.article-body code { font-family: ui-monospace, Menlo, Consolas, monospace; font-size: .92em; background: var(--bg-soft); color: var(--ink); padding: 2px 6px; border-radius: 5px; border: 1px solid var(--line); }
.article-body em { font-style: italic; }
.article-body > *:first-child { margin-top: 0; }
nav[aria-label="Inhalt"] a { transition: color .15s; }
nav[aria-label="Inhalt"] a:hover { color: var(--teal); }
details.card summary { position: relative; padding-right: 28px; cursor: pointer; list-style: none; font-family: var(--sora); font-weight: 600; }
details.card summary::-webkit-details-marker { display: none; }
details.card summary::after { content: ""; position: absolute; right: 4px; top: 50%; width: 8px; height: 8px; margin-top: -6px; border-right: 2px solid var(--ink-3); border-bottom: 2px solid var(--ink-3); transform: rotate(45deg); transition: transform .2s; }
details.card[open] summary::after { transform: rotate(225deg); margin-top: -2px; }

/* Dunkle Sektionen (Kontrast-Bänder) */
.dark { background: var(--ink); color: #dfeae6; border-top: 1px solid rgba(255, 255, 255, .07); border-bottom: 1px solid rgba(255, 255, 255, .07); }
.dark h1, .dark h2, .dark h3, .dark h4 { color: #fff; }
.dark .lead, .dark .muted { color: #9fb3ad; }
.dark .eyebrow, .dark .eyebrow--light { color: var(--teal-400); }
.dark .card { background: #12211d; border-color: rgba(255, 255, 255, .09); }
.dark .card p { color: #a7b8b2; }
.dark .card .ico { background: rgba(45, 212, 191, .14); color: var(--teal-400); }
.dark .check { color: #cbd8d3; } .dark .check svg { background: var(--teal-400); color: var(--ink); }
.dark .tag-list span { background: rgba(255, 255, 255, .07); color: #cfe0da; border-color: rgba(255, 255, 255, .1); }
.dark .stat .l { color: #9fb3ad; }
.dark .pill { background: rgba(45, 212, 191, .14); color: var(--teal-400); }
.dark .chip { background: rgba(255, 255, 255, .06); color: #cfe0da; border-color: rgba(255, 255, 255, .12); }
.dark .link-arrow { color: var(--teal-400); }
.dark .hr { background: rgba(255, 255, 255, .12); }

/* ---------------------------------------------------------- Editor-Demo
   Dunkler Produkt-Mock (Palette → Canvas → Player). Selbstständig; wirkt auf
   heller Seite wie ein Produkt-Screenshot. Türkis-Akzente via gemappte vars. */
.demo { position: relative; border-radius: var(--r-lg); overflow: hidden; background: linear-gradient(180deg, #0c1120, #0a0e1a); border: 1px solid rgba(255, 255, 255, .08); box-shadow: var(--sh); }
.demo__bar { height: 40px; display: flex; align-items: center; gap: 7px; padding: 0 16px; border-bottom: 1px solid rgba(255, 255, 255, .07); }
.demo__dot { width: 11px; height: 11px; border-radius: 50%; }
.demo__title { color: #8ea0c8; font-size: .8rem; margin-left: 10px; font-weight: 500; }
.demo__toolbar { display: flex; align-items: center; gap: 10px; padding: 10px 16px; border-bottom: 1px solid rgba(255, 255, 255, .06); background: rgba(255, 255, 255, .015); }
.demo__tag { font-size: .72rem; padding: .32em .7em; border-radius: 8px; background: rgba(255, 255, 255, .06); color: #cdd8f3; font-weight: 600; display: inline-flex; align-items: center; gap: 6px; }
.demo__tag svg { width: 13px; height: 13px; color: #9fb0d4; }
.demo__tag--res { background: #0e1424; border: 1px solid rgba(255, 255, 255, .08); }
.demo__stage { display: grid; grid-template-columns: 156px 1fr 244px; min-height: 360px; }
@media (max-width: 820px) { .demo__stage { grid-template-columns: 112px 1fr; } .demo__player { display: none; } }
.demo__palette { border-right: 1px solid rgba(255, 255, 255, .07); padding: 14px 10px; display: flex; flex-direction: column; gap: 8px; background: rgba(255, 255, 255, .012); }
.demo__ptitle { font-size: .66rem; letter-spacing: .12em; text-transform: uppercase; color: #6c7a9d; padding: 4px 4px 6px; font-weight: 600; }
.demo__tile { background: rgba(255, 255, 255, .045); border: 1px solid rgba(255, 255, 255, .07); border-radius: 8px; padding: 8px 9px; color: #dde5fb; font-size: .78rem; font-weight: 500; display: flex; align-items: center; gap: 8px; cursor: grab; transition: background .2s, border-color .2s, transform .2s; }
.demo__tile:hover { background: rgba(45, 212, 191, .14); border-color: rgba(45, 212, 191, .5); }
.demo__tile svg { width: 15px; height: 15px; color: var(--teal-400); flex: none; }
@keyframes paletteFlash { 0%, 100% { background: rgba(255, 255, 255, .045); border-color: rgba(255, 255, 255, .07); } 10%, 22% { background: rgba(45, 212, 191, .2); border-color: var(--teal-400); transform: translateX(2px); } }
.demo.run .demo__tile.t1 { animation: paletteFlash 8s ease-in-out infinite; }
.demo.run .demo__tile.t2 { animation: paletteFlash 8s ease-in-out infinite; animation-delay: 1.3s; }
.demo.run .demo__tile.t3 { animation: paletteFlash 8s ease-in-out infinite; animation-delay: 2.6s; }
.demo.run .demo__tile.t4 { animation: paletteFlash 8s ease-in-out infinite; animation-delay: 3.9s; }
.demo__canvas { position: relative; overflow: hidden; background: radial-gradient(circle at 1px 1px, rgba(255, 255, 255, .055) 1px, transparent 0) 0 0 / 22px 22px, radial-gradient(120% 80% at 50% 0%, rgba(13, 148, 136, .16), transparent 60%), #0e1424; }
.demo__slide-frame { position: absolute; left: 6%; right: 6%; top: 8%; bottom: 18%; border: 1px dashed rgba(255, 255, 255, .07); border-radius: 8px; pointer-events: none; }
.demo__cursor { position: absolute; width: 22px; height: 22px; z-index: 5; filter: drop-shadow(0 4px 10px rgba(0, 0, 0, .6)); opacity: 0; }
.demo__cursor svg { width: 100%; height: 100%; color: #fff; }
@keyframes cursorPath { 0% { opacity: 0; transform: translate(2%, 18%) scale(.9); } 3% { opacity: 1; } 10% { transform: translate(20%, 18%) scale(1); } 12% { transform: translate(20%, 18%) scale(.92); } 16% { transform: translate(70%, 18%) scale(1); } 26% { transform: translate(70%, 18%) scale(.92); } 30% { transform: translate(22%, 56%) scale(1); } 40% { transform: translate(22%, 56%) scale(.92); } 46% { transform: translate(68%, 56%) scale(1); } 56% { transform: translate(68%, 56%) scale(.92); } 62% { transform: translate(86%, 90%) scale(1); } 68% { opacity: 1; } 75% { opacity: 0; } 100% { opacity: 0; } }
.demo.run .demo__cursor { animation: cursorPath 12s var(--ease) infinite; }
.fly { position: absolute; border-radius: 9px; opacity: 0; box-shadow: 0 14px 30px -10px rgba(0, 0, 0, .55); display: flex; align-items: center; justify-content: center; color: #fff; font-weight: 700; font-size: .82rem; border: 1px solid rgba(255, 255, 255, .08); }
.fly small { font-weight: 500; opacity: .85; font-size: .66rem; display: block; margin-top: 3px; }
@keyframes flyInTo { 0% { opacity: 0; transform: translate(-140px, 40px) scale(.55); } 6% { opacity: 1; } 18%, 100% { opacity: 1; transform: translate(0, 0) scale(1); } }
.demo.run .fly { animation: flyInTo 12s var(--ease) infinite; }
.demo.run .fly.f1 { animation-delay: .4s; } .demo.run .fly.f2 { animation-delay: 2s; } .demo.run .fly.f3 { animation-delay: 3.6s; } .demo.run .fly.f4 { animation-delay: 5.4s; }
.demo__player { border-left: 1px solid rgba(255, 255, 255, .07); padding: 18px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 14px; background: rgba(255, 255, 255, .012); }
.demo__player-label { color: #7e8db3; font-size: .66rem; letter-spacing: .12em; text-transform: uppercase; font-weight: 600; align-self: flex-start; }
.tv { width: 100%; aspect-ratio: 16/10; border-radius: 10px; background: #050912; border: 4px solid #131a2e; position: relative; overflow: hidden; box-shadow: 0 8px 24px -6px rgba(0, 0, 0, .6); }
.tv__screen { position: absolute; inset: 0; opacity: 0; background: radial-gradient(70% 80% at 20% 0%, rgba(255, 255, 255, .18), transparent 60%), linear-gradient(135deg, var(--teal-700), var(--teal-400) 70%); padding: 9px 11px; color: #fff; display: flex; flex-direction: column; justify-content: space-between; }
.tv__screen .top { display: flex; justify-content: space-between; align-items: flex-start; }
.tv__screen .title { font-weight: 700; font-size: .78rem; }
.tv__screen .clock { font-weight: 700; font-size: .86rem; background: rgba(0, 0, 0, .25); padding: 2px 7px; border-radius: 6px; }
.tv__screen .row { display: flex; gap: 6px; align-items: flex-end; }
.tv__screen .img { width: 46%; aspect-ratio: 16/10; border-radius: 5px; background: rgba(255, 255, 255, .18); }
.tv__screen .weather { width: 50%; background: rgba(255, 255, 255, .14); padding: 6px 8px; border-radius: 5px; }
.tv__screen .weather .t { font-size: 1.5rem; font-weight: 800; line-height: 1; }
.tv__screen .weather .d { font-size: .6rem; opacity: .85; }
@keyframes screenReveal { 0%, 56% { opacity: 0; transform: scale(.96); } 62% { opacity: 1; transform: scale(1.01); } 66%, 100% { opacity: 1; transform: scale(1); } }
.demo.run .tv__screen { animation: screenReveal 12s var(--ease) infinite; }
.tv__stand { width: 70px; height: 6px; background: #131a2e; border-radius: 0 0 5px 5px; margin: 5px auto 0; }
.tv__base { width: 38px; height: 5px; background: #131a2e; border-radius: 0 0 3px 3px; margin: 2px auto 0; }
.publish { display: inline-flex; align-items: center; gap: 7px; padding: .55em 1.05em; border-radius: 999px; background: var(--teal); color: #fff; font-weight: 600; font-size: .82rem; border: 1px solid var(--teal-700); align-self: stretch; justify-content: center; }
.publish svg { width: 14px; height: 14px; }
@keyframes pulsePublish { 0%, 52% { box-shadow: 0 0 0 0 rgba(45, 212, 191, 0); transform: scale(1); } 56% { box-shadow: 0 0 0 4px rgba(45, 212, 191, .4); transform: scale(1.04); } 64% { box-shadow: 0 0 0 18px rgba(45, 212, 191, 0); transform: scale(1); } 100% { box-shadow: 0 0 0 0 rgba(45, 212, 191, 0); } }
.demo.run .publish { animation: pulsePublish 12s ease-out infinite; }
.demo__steps { position: absolute; left: 50%; bottom: 14px; transform: translateX(-50%); display: flex; gap: 6px; background: rgba(0, 0, 0, .4); padding: 6px 12px; border-radius: 999px; border: 1px solid rgba(255, 255, 255, .08); }
.demo__steps span { font-size: .72rem; color: #7e8db3; } .demo__steps b { color: #cdd8f3; font-weight: 600; }
.demo__step { position: absolute; left: 0; top: 0; opacity: 0; white-space: nowrap; transition: opacity .4s var(--ease); }
.demo__step.is-active { opacity: 1; position: relative; }
@keyframes stepCycle { 0%, 24% { opacity: 1; position: relative; } 25%, 49% { opacity: 0; position: absolute; } }
.demo.run .demo__step.s1 { animation: stepCycle 12s linear infinite; }
.demo.run .demo__step.s2 { animation: stepCycle 12s linear infinite; animation-delay: 3s; }
.demo.run .demo__step.s3 { animation: stepCycle 12s linear infinite; animation-delay: 6s; }
.demo.run .demo__step.s4 { animation: stepCycle 12s linear infinite; animation-delay: 9s; }
@media (max-width: 720px) {
  .demo__stage { grid-template-columns: 1fr; min-height: auto; }
  .demo__palette { border-right: 0; border-bottom: 1px solid rgba(255, 255, 255, .07); flex-direction: row; overflow-x: auto; padding: 12px; }
  .demo__ptitle { display: none; } .demo__tile { flex: none; }
  .demo__canvas { aspect-ratio: 16/9; min-height: 200px; } .demo__cursor { display: none; }
  .demo__player { display: flex; border-left: 0; border-top: 1px solid rgba(255, 255, 255, .07); flex-direction: row; align-items: center; }
  .demo__player-label { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  .demo.run .fly, .demo.run .publish, .demo.run .tv__screen, .demo.run .demo__cursor, .demo.run .demo__tile, .demo.run .demo__step { animation: none !important; opacity: 1 !important; transform: none !important; position: relative !important; }
  .demo .demo__step:not(.s1) { display: none; }
}
