/* public/css/14-landing-v2.css
   Rivix-Redesign Teilpaket 1: neue Landingpage (rivix.de) — 1:1 aus dem
   Design-Handoff (code/landing.html + code/mobile.html Screen 01) übernommen.
   Alle Inline-Styles des Handoffs sind hier in Klassen umgesetzt (CSP: keine
   style="…"-Attribute im Markup). Tokens: css/00-public-theme.css.
   Wird NUR von index.html geladen; 10-landing.css bleibt als Legacy-Basis für
   account.html und die Rechtstext-Seiten bestehen (Klassen dort kompatibel). */

/* ── Basis ──────────────────────────────────────────────── */
html { scroll-behavior: smooth; }
body.landing-page {
  margin: 0;
  overflow-x: clip;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.landing-page *,
body.landing-page *::before,
body.landing-page *::after { box-sizing: border-box; }
body.landing-page a { color: var(--teal); text-decoration: none; }
body.landing-page a:hover { color: #0B6459; }
body.landing-page ::selection { background: var(--mint-chip-bg); color: var(--teal-deep); }

@keyframes lpFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-9px); }
}

/* ── Nav (fixed, glass on scroll) ───────────────────────── */
.lp-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 60;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background .35s ease, box-shadow .35s ease, border-color .35s ease;
}
.lp-nav.is-scrolled {
  background: rgba(3, 38, 33, 0.82);
  -webkit-backdrop-filter: blur(16px) saturate(1.3);
  backdrop-filter: blur(16px) saturate(1.3);
  border-bottom-color: rgba(255, 255, 255, 0.09);
  box-shadow: 0 12px 32px -20px rgba(2, 28, 24, 0.55);
}
.lp-nav-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 32px; height: 68px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.lp-nav-start, .lp-nav-end { flex: 1 0 0; display: flex; align-items: center; }
.lp-nav-start { justify-content: flex-start; }
.lp-nav-end { justify-content: flex-end; gap: 12px; }
.lp-brand { display: inline-flex; align-items: baseline; gap: 7px; text-decoration: none; }
.lp-brand-a { font-family: var(--font-sora); font-weight: 700; font-size: 20px; color: #FFFFFF; letter-spacing: -0.01em; }
.lp-brand-b { font-family: var(--font-sora); font-weight: 600; font-size: 20px; color: #7FE0CC; letter-spacing: -0.01em; }
.lp-nav-links { display: flex; align-items: center; gap: 34px; }
.lp-nav-link { font-size: 14.5px; font-weight: 500; color: rgba(255,255,255,0.78); transition: color .2s ease; }
body.landing-page .lp-nav-link:hover { color: #FFFFFF; }
.lp-nav-login {
  font-size: 14.5px; font-weight: 600; color: rgba(255,255,255,0.85);
  padding: 9px 16px; border-radius: 10px; transition: all .2s ease;
}
body.landing-page .lp-nav-login:hover { color: #FFFFFF; background: rgba(255,255,255,0.09); }
.lp-nav-pill {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 14.5px; font-weight: 600; color: var(--teal-deep); background: #FFFFFF;
  padding: 10px 18px; border-radius: 11px;
  box-shadow: 0 8px 22px -10px rgba(2, 30, 26, 0.6);
  border: none; cursor: pointer; font-family: var(--font-sans); line-height: normal;
  transition: all .24s var(--ease-out);
}
body.landing-page .lp-nav-pill:hover { background: var(--mint-chip-bg); color: var(--teal-deep); transform: translateY(-2px); }

/* Konto-Dropdown (eingeloggt) — bestehende Mechanik, neuer Stil */
.lp-acct { position: relative; display: inline-block; }
.lp-acct-name { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; max-width: 160px; }
.lp-acct-caret { font-size: 10px; opacity: .8; }
.lp-acct-menu {
  position: absolute; right: 0; top: calc(100% + 10px); min-width: 264px;
  background: #FFFFFF; border: 1px solid var(--border); border-radius: 16px;
  box-shadow: 0 2px 4px rgba(8,44,38,0.05), 0 28px 70px -30px rgba(8,44,38,0.35);
  padding: 8px; z-index: 70; text-align: left;
}
.lp-acct-menu[hidden] { display: none; }
.lp-acct-head {
  display: flex; flex-direction: column; gap: 3px;
  padding: 12px 12px 13px; margin: 2px 2px 8px;
  border-radius: 12px; background: var(--bg2); border: 1px solid var(--border3);
}
.lp-acct-mname { font-family: var(--font-sora); font-weight: 600; color: var(--ink); font-size: 14px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.lp-acct-mcompany { font-size: 12.5px; font-weight: 600; color: var(--teal-hover); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.lp-acct-mmail { font-size: 12.5px; color: var(--muted); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.lp-acct-item {
  display: block; width: 100%; text-align: left; box-sizing: border-box;
  padding: 10px 12px; border-radius: 10px; font-size: 14px; font-weight: 500; color: var(--body-text);
  background: none; border: none; cursor: pointer; text-decoration: none;
  font-family: var(--font-sans); transition: background .15s ease, color .15s ease;
}
body.landing-page .lp-acct-item:hover,
body.landing-page .lp-acct-item:focus-visible { background: #F0F7F4; color: var(--teal-deep); outline: none; }
.lp-acct-logout { color: #A0552F; margin-top: 4px; border-top: 1px solid var(--border3); border-radius: 0 0 10px 10px; }
body.landing-page .lp-acct-logout:hover,
body.landing-page .lp-acct-logout:focus-visible { background: #FBF4E7; color: #8A4425; }

/* Hamburger (mobil) — bestehende JS-Mechanik (#l-menu-btn, .l-menu-open) */
.lp-menu-btn {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 44px; height: 44px; padding: 10px 12px;
  background: none; border: none; cursor: pointer; flex-shrink: 0;
}
.lp-menu-btn span { display: block; height: 1.8px; background: rgba(255,255,255,0.9); border-radius: 2px; transition: all .25s ease; }
.lp-menu-btn span:nth-child(3) { width: 66%; }
.lp-menu-btn.l-menu-open span:nth-child(1) { transform: translateY(6.8px) rotate(45deg); }
.lp-menu-btn.l-menu-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.lp-menu-btn.l-menu-open span:nth-child(3) { width: 100%; transform: translateY(-6.8px) rotate(-45deg); }

/* Auth-CTAs im Mobil-Menü (von landing.js befüllt) — Desktop ausgeblendet */
.lp-nav-auth { display: none; }
.lp-mbtn {
  display: flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--font-sans); font-weight: 600; font-size: 14.5px;
  padding: 13px 20px; border-radius: 12px; border: none; cursor: pointer;
}
.lp-mbtn-solid { background: #FFFFFF; color: var(--teal-deep); box-shadow: 0 16px 36px -14px rgba(2,30,26,0.55); }
.lp-mbtn-outline { border: 1px solid rgba(255,255,255,0.3); color: #FFFFFF; background: transparent; }
.lp-mbtn-ghost { background: rgba(255,255,255,0.09); color: rgba(255,255,255,0.85); }

/* ── Buttons ────────────────────────────────────────────── */
.lp-btn-solid {
  display: inline-flex; align-items: center; gap: 10px;
  background: #FFFFFF; color: var(--teal-deep); font-weight: 600; font-size: 15.5px;
  padding: 15px 28px; border-radius: 13px;
  box-shadow: 0 18px 44px -16px rgba(2, 30, 26, 0.55);
  transition: all .24s var(--ease-out);
}
body.landing-page .lp-btn-solid:hover { background: var(--mint-chip-bg); color: var(--teal-deep); transform: translateY(-2px); }
.lp-btn-arrow { font-size: 16px; }
.lp-btn-ghost-dark {
  display: inline-flex; align-items: center; gap: 10px;
  border: 1px solid rgba(255,255,255,0.28); color: #FFFFFF; font-weight: 600; font-size: 15.5px;
  padding: 14px 26px; border-radius: 13px; transition: all .24s var(--ease-out);
}
body.landing-page .lp-btn-ghost-dark:hover { background: rgba(255,255,255,0.09); border-color: rgba(255,255,255,0.5); color: #FFFFFF; }
.lp-btn-outline-light {
  display: inline-flex; align-items: center; gap: 9px;
  border: 1px solid #CBDDD7; color: var(--ink); font-weight: 600; font-size: 15px;
  padding: 13px 24px; border-radius: 12px; transition: all .24s var(--ease-out);
}
body.landing-page .lp-btn-outline-light:hover { border-color: var(--teal); color: var(--teal-deep); background: #F0F8F5; }

/* Card-Hover-Rezept (alle Karten der Seite) */
.lp-card-hover { transition: all .28s var(--ease-out); }
.lp-card-hover:hover {
  transform: translateY(-4px);
  box-shadow: 0 2px 4px rgba(8,44,38,.05), 0 28px 70px -30px rgba(8,44,38,.24);
  border-color: #CBDDD7;
}

/* ── Hero ───────────────────────────────────────────────── */
.lp-hero { position: relative; background: linear-gradient(180deg, #06463E 0%, #053B34 58%, #04332C 100%); }
.lp-hero-fx { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.lp-glow { position: absolute; }
.lp-glow-hero1 { top: -260px; left: 6%; width: 860px; height: 640px; background: radial-gradient(closest-side, rgba(61,214,190,0.30), rgba(61,214,190,0) 72%); opacity: .765; }
.lp-glow-hero2 { top: 60px; right: -200px; width: 720px; height: 720px; background: radial-gradient(closest-side, rgba(15,138,124,0.42), rgba(15,138,124,0) 70%); opacity: .5525; }
.lp-grid-pattern {
  position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(0deg, rgba(255,255,255,0.035) 0px, rgba(255,255,255,0.035) 1px, transparent 1px, transparent 64px),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.035) 0px, rgba(255,255,255,0.035) 1px, transparent 1px, transparent 64px);
  -webkit-mask-image: radial-gradient(72% 70% at 50% 24%, #000000 20%, transparent 100%);
  mask-image: radial-gradient(72% 70% at 50% 24%, #000000 20%, transparent 100%);
}
.lp-hero-inner { position: relative; max-width: 920px; margin: 0 auto; padding: 176px 32px 0; text-align: center; }
.lp-eyebrow { font-family: var(--font-mono); font-size: 12px; font-weight: 500; letter-spacing: 0.18em; color: #8FE3D2; }
.lp-h1 {
  margin: 22px 0 0; font-family: var(--font-sora); font-weight: 700;
  font-size: clamp(44px, 6vw, 74px); line-height: 1.06; letter-spacing: -0.028em; color: #FFFFFF;
}
.lp-h1-grad {
  background: linear-gradient(100deg, #F2FFFB 10%, #96EAD7 90%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.lp-hero-sub { margin: 26px auto 0; max-width: 620px; font-size: 18.5px; line-height: 1.65; color: rgba(233,247,243,0.74); }
.lp-hero-ctas { margin-top: 40px; display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── Hero-Produkt-Mock (Browser-Fenster) ────────────────── */
.lp-mock-wrap { position: relative; z-index: 2; max-width: 1128px; margin: 84px auto -256px; padding: 0 32px; }
.lp-glow-mock { left: 12%; right: 12%; top: 60px; bottom: -30px; background: radial-gradient(closest-side, rgba(61,214,190,0.24), rgba(61,214,190,0) 75%); opacity: .68; }
.lp-mock {
  position: relative; border-radius: 20px; border: 1px solid rgba(255,255,255,0.16);
  background: #062E29; overflow: hidden; text-align: left;
  box-shadow: 0 60px 140px -40px rgba(2,28,24,0.62), 0 14px 40px -18px rgba(2,28,24,0.5);
}
.lp-float { animation: lpFloat 9s ease-in-out infinite; }
.lp-mock-bar {
  height: 44px; display: flex; align-items: center; gap: 8px; padding: 0 18px;
  background: rgba(255,255,255,0.055); border-bottom: 1px solid rgba(255,255,255,0.08);
}
.lp-mock-dot { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,0.22); }
.lp-mock-url { margin: 0 auto; font-family: var(--font-mono); font-size: 11px; color: rgba(255,255,255,0.6); background: rgba(255,255,255,0.08); padding: 5px 18px; border-radius: 8px; }
.lp-mock-bar-sp { width: 46px; }
.lp-mock-body { display: flex; background: var(--bg2); height: 540px; }

/* Mock: linke Nav-Rail */
.mk-rail { width: 178px; flex: none; background: #FFFFFF; border-right: 1px solid var(--border3); padding: 14px 10px; display: flex; flex-direction: column; gap: 4px; }
.mk-rail-brand { display: flex; align-items: center; gap: 8px; padding: 4px 8px 16px; }
.mk-rail-logo { flex: none; width: 27px; height: 27px; border-radius: 8px; background: var(--ink); display: grid; place-items: center; }
.mk-rail-name { display: flex; flex-direction: column; gap: 2px; }
.mk-rail-name-a { font-family: var(--font-sora); font-weight: 700; font-size: 12.5px; line-height: 1; color: var(--ink); }
.mk-rail-name-b { font-family: var(--font-mono); font-size: 6.5px; letter-spacing: 0.08em; color: var(--muted); }
.mk-nav-item { display: flex; align-items: center; gap: 9px; padding: 7px 10px; border-radius: 9px; font-size: 11.5px; font-weight: 500; color: var(--body-text); }
.mk-nav-item--lg { padding: 8px 10px; }
.mk-nav-item svg { flex: none; opacity: .75; }
.mk-nav-item.is-active { background: #E8F6F1; font-weight: 600; color: var(--teal-deep); }
.mk-nav-item.is-active svg { opacity: 1; }

/* Mock: dunkle Top-Bar */
.mk-main { flex: 1; min-width: 0; display: flex; flex-direction: column; }
.mk-top { flex: none; display: flex; align-items: center; gap: 9px; background: #10201C; padding: 11px 16px; border-bottom: 1px solid rgba(255,255,255,0.06); }
.mk-top-title { min-width: 0; }
.mk-top-h { font-family: var(--font-sora); font-weight: 600; font-size: 13px; color: #FFFFFF; }
.mk-top-sub { margin-top: 2px; font-size: 9px; color: rgba(255,255,255,0.55); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.mk-top-search { margin-left: auto; flex: none; display: flex; align-items: center; gap: 7px; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.1); border-radius: 9px; padding: 6px 11px; font-size: 9px; color: rgba(255,255,255,0.45); }
.mk-top-new { flex: none; background: var(--teal); color: #FFFFFF; font-size: 9.5px; font-weight: 600; padding: 6px 11px; border-radius: 8px; }
.mk-top-bell { flex: none; margin-left: 2px; }
.mk-top-user { flex: none; display: flex; align-items: center; gap: 6px; padding-left: 2px; }
.mk-top-ava { width: 21px; height: 21px; border-radius: 50%; background: var(--mint-chip-bg); color: var(--teal-deep); font-size: 8.5px; font-weight: 600; display: grid; place-items: center; }
.mk-top-uwrap { display: flex; flex-direction: column; }
.mk-top-uname { font-size: 9px; font-weight: 600; color: #FFFFFF; line-height: 1.25; }
.mk-top-urole { font-size: 7.5px; color: rgba(255,255,255,0.5); line-height: 1.25; }
.mk-content { flex: 1; min-height: 0; display: flex; }

/* Mock: Projektliste */
.mk-list { width: 206px; flex: none; background: var(--bg); border-right: 1px solid var(--border3); padding: 12px; display: flex; flex-direction: column; gap: 9px; }
.mk-list-head { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.mk-list-filter { display: inline-flex; align-items: center; gap: 6px; background: #FFFFFF; border: 1px solid var(--border); border-radius: 8px; padding: 6px 9px; font-size: 9px; font-weight: 600; color: #26403A; }
.mk-list-filter-caret { color: var(--muted2); font-size: 8px; }
.mk-list-count { font-size: 8.5px; color: var(--muted); }
.mk-list-label { font-family: var(--font-mono); font-size: 7.5px; letter-spacing: 0.1em; color: var(--muted); }
.mk-proj { position: relative; background: #FFFFFF; border: 1px solid var(--border); border-radius: 10px; padding: 9px 11px 9px 15px; overflow: hidden; }
.mk-proj.is-selected { border: 1.4px solid #14A390; box-shadow: 0 5px 14px -7px rgba(16,122,111,0.35); }
.mk-proj-bar { position: absolute; left: 0; top: 0; bottom: 0; width: 4px; }
.mk-bar-teal { background: #14A390; }
.mk-bar-blue { background: #3D7BD9; }
.mk-bar-amber { background: #C2883D; }
.mk-proj-titlerow { display: flex; align-items: center; gap: 7px; }
.mk-proj-titlerow svg { flex: none; }
.mk-proj-row { display: flex; justify-content: space-between; align-items: baseline; gap: 6px; }
.mk-proj-meta { margin-top: 4px; display: flex; justify-content: space-between; align-items: baseline; }
.mk-proj-title { font-size: 10px; font-weight: 600; color: var(--ink); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.mk-proj-date { flex: none; font-family: var(--font-mono); font-size: 7.5px; color: var(--muted); }
.mk-proj-sub { margin-top: 2px; font-size: 8.5px; color: var(--muted); }
.mk-proj-count { font-size: 8.5px; color: var(--muted); }
.mk-proj-addr { margin-top: 5px; font-size: 8.5px; color: var(--body-text); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.mk-proj-new { border: 1.4px dashed #CBDDD7; border-radius: 10px; padding: 8px; text-align: center; font-size: 9px; font-weight: 600; color: var(--muted); }

/* Mock: Projekt-Detail + Chat */
.mk-detail { flex: 1; min-width: 0; display: flex; flex-direction: column; background: #FFFFFF; padding: 13px 16px; gap: 10px; }
.mk-det-head { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.mk-det-title { min-width: 0; }
.mk-det-namerow { display: flex; align-items: center; gap: 7px; }
.mk-dot { width: 8px; height: 8px; border-radius: 50%; background: #3D7BD9; flex: none; }
.mk-det-name { font-family: var(--font-sora); font-weight: 600; font-size: 14.5px; color: var(--ink); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.mk-det-addr { margin-top: 2px; font-size: 9px; color: var(--muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.mk-det-actions { display: flex; gap: 6px; flex: none; }
.mk-pillbtn { display: inline-flex; align-items: center; gap: 5px; border: 1px solid var(--border); border-radius: 999px; padding: 6px 11px; font-size: 9px; font-weight: 600; color: #26403A; }
.mk-pillbtn svg { flex: none; }
.mk-pillbtn--primary { background: var(--teal); color: #FFFFFF; border: none; padding: 6px 12px; box-shadow: 0 6px 14px -7px rgba(16,122,111,0.6); }
.mk-tabs { display: flex; gap: 6px; flex-wrap: wrap; }
.mk-tab { display: inline-flex; align-items: center; gap: 5px; border: 1px solid var(--border); color: var(--body-text); font-size: 9px; font-weight: 500; padding: 5px 11px; border-radius: 999px; }
.mk-tab svg { flex: none; }
.mk-tab.is-active { border: 1.4px solid #14A390; background: #F2FBF8; color: var(--teal-deep); font-weight: 600; }
.mk-tab-badge { background: var(--mint-chip-bg); color: var(--teal-deep); font-size: 7.5px; font-weight: 600; padding: 1px 5px; border-radius: 999px; }
.mk-chat { flex: 1; min-height: 0; display: flex; flex-direction: column; justify-content: flex-end; gap: 9px; padding: 2px; overflow: hidden; }
.mk-chat-day { align-self: center; font-family: var(--font-mono); font-size: 7.5px; letter-spacing: 0.08em; color: var(--muted2); background: #F0F7F4; padding: 3px 10px; border-radius: 999px; }
.mk-msg { display: flex; gap: 7px; align-items: flex-end; max-width: 78%; }
.mk-msg-ava { flex: none; width: 20px; height: 20px; border-radius: 50%; background: #E8F6F1; color: var(--teal-deep); font-size: 7px; font-weight: 600; display: grid; place-items: center; }
.mk-msg-body { min-width: 0; }
.mk-msg-bubble { background: #F0F7F4; border: 1px solid var(--border); border-radius: 10px 10px 10px 3px; padding: 7px 10px; font-size: 9.5px; line-height: 1.5; color: #26403A; }
.mk-msg-file { margin-top: 6px; display: inline-flex; align-items: center; gap: 5px; background: #FFFFFF; border: 1px solid var(--border); border-radius: 7px; padding: 4px 9px; font-size: 8.5px; font-weight: 600; color: #26403A; }
.mk-msg-meta { margin-top: 3px; font-size: 7px; color: var(--muted2); }
.mk-msg--own { align-self: flex-end; max-width: 70%; display: flex; flex-direction: column; align-items: flex-end; }
.mk-msg-bubble--own { background: var(--teal); border-radius: 10px 10px 3px 10px; padding: 7px 10px; font-size: 9.5px; line-height: 1.5; color: #FFFFFF; }
.mk-composer { display: flex; align-items: center; gap: 7px; }
.mk-comp-attach { width: 27px; height: 27px; flex: none; border: 1px solid var(--border); border-radius: 9px; display: grid; place-items: center; }
.mk-comp-input { flex: 1; border: 1px solid var(--border); border-radius: 9px; padding: 7px 11px; font-size: 9px; color: var(--muted2); }
.mk-comp-send { flex: none; background: var(--teal); color: #FFFFFF; font-size: 9.5px; font-weight: 600; padding: 7px 13px; border-radius: 9px; }
.mk-comp-hint { margin-top: -4px; font-size: 7.5px; color: var(--muted2); }

/* Mobile-Hero-Mock (kondensierte Dashboard-Karte, Design mobile.html Screen 01) */
.lp-mock-mini {
  position: relative; display: none; margin: 30px auto 0; max-width: 420px;
  background: #FFFFFF; border-radius: 14px; text-align: left;
  box-shadow: 0 30px 60px -24px rgba(2,28,24,0.55); padding: 16px; overflow: hidden;
}
.lp-mini-head { display: flex; align-items: center; justify-content: space-between; }
.lp-mini-hi { font-family: var(--font-sora); font-weight: 600; font-size: 12.5px; color: var(--ink); }
.lp-mini-date { font-family: var(--font-mono); font-size: 8.5px; letter-spacing: 0.08em; color: var(--muted); }
.lp-mini-grid { margin-top: 10px; display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.lp-mini-stat { background: var(--bg2); border: 1px solid var(--border3); border-radius: 10px; padding: 10px; }
.lp-mini-label { font-family: var(--font-mono); font-size: 8px; letter-spacing: 0.1em; color: var(--muted); }
.lp-mini-val { margin-top: 3px; font-family: var(--font-sora); font-weight: 600; font-size: 16px; color: var(--ink); }
.lp-mini-row { margin-top: 10px; display: flex; align-items: center; gap: 9px; background: var(--bg2); border: 1px solid var(--border3); border-radius: 10px; padding: 10px; }
.lp-mini-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--teal-hover); flex: none; }
.lp-mini-txt { flex: 1; min-width: 0; }
.lp-mini-t1 { display: block; font-size: 10.5px; font-weight: 600; color: var(--ink); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.lp-mini-t2 { display: block; font-family: var(--font-mono); font-size: 7.5px; color: var(--muted); }

/* ── Sektionen: Grundgerüst ─────────────────────────────── */
.lp-wrap { max-width: 1160px; margin: 0 auto; }
.lp-sec-head { text-align: center; }
.lp-kicker { font-family: var(--font-mono); font-size: 12px; font-weight: 500; letter-spacing: 0.18em; color: var(--teal-hover); }
.lp-kicker--dark { color: #8FE3D2; }
.lp-h2 {
  margin: 16px 0 0; font-family: var(--font-sora); font-weight: 600;
  font-size: clamp(30px, 3.6vw, 42px); line-height: 1.15; letter-spacing: -0.022em; color: var(--ink);
}
.lp-h2--dark { color: #FFFFFF; }
.lp-lead { margin: 18px auto 0; max-width: 560px; font-size: 16.5px; line-height: 1.65; color: var(--body-text); }
.lp-lead--narrow { max-width: 540px; }
.lp-lead--dark { color: rgba(233,247,243,0.65); }

/* ── Problem / Lösung ───────────────────────────────────── */
.lp-sec-problem { background: var(--bg); padding: 316px 32px 72px; }
.lp-strip {
  display: flex; justify-content: center; align-items: center; gap: 26px; flex-wrap: wrap;
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.14em; color: var(--muted);
}
.lp-strip-dot { width: 4px; height: 4px; border-radius: 50%; background: #CBDDD7; }
.lp-problem-inner { max-width: 1160px; margin: 120px auto 0; }
.lp-cards-auto { margin-top: 52px; display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; }
.lp-card {
  background: #FFFFFF; border: 1px solid var(--border); border-radius: 18px; padding: 28px;
  box-shadow: 0 1px 2px rgba(8,44,38,0.05), 0 10px 30px -14px rgba(8,44,38,0.12);
}
.lp-card--b30 { padding: 30px; }
.lp-card--b32 { padding: 32px; }
.lp-card--sm { padding: 26px; }
.lp-card-num { display: inline-block; font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.1em; color: var(--muted2); }
.lp-card-h { margin: 36px 0 0; font-family: var(--font-sora); font-weight: 600; font-size: 17px; color: var(--ink); }
.lp-card-p { margin: 10px 0 0; font-size: 14.5px; line-height: 1.62; color: var(--body-text); }
.lp-solution {
  margin-top: 24px; background: #FFFFFF; border: 1px solid #DCEAE5; border-radius: 20px; padding: 44px 48px;
  box-shadow: 0 2px 4px rgba(8,44,38,0.05), 0 28px 70px -30px rgba(8,44,38,0.22);
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 40px; align-items: center;
}
.lp-solution-h {
  margin: 14px 0 0; font-family: var(--font-sora); font-weight: 600;
  font-size: clamp(22px, 2.2vw, 27px); line-height: 1.3; letter-spacing: -0.015em; color: var(--ink);
}
.lp-teal { color: var(--teal-hover); }
.lp-checks { display: grid; grid-template-columns: 1fr 1fr; gap: 16px 24px; }
.lp-check { display: flex; align-items: flex-start; gap: 11px; }
.lp-check-ic { flex: none; width: 22px; height: 22px; border-radius: 50%; background: var(--mint-chip-bg); color: var(--teal-deep); display: grid; place-items: center; }
.lp-check-txt { font-size: 14.5px; font-weight: 500; line-height: 1.5; color: #26403A; }

/* ── Funktionen (Bento) ─────────────────────────────────── */
.lp-sec-features { background: var(--bg); padding: 120px 32px; }
.lp-bento { margin-top: 56px; display: grid; grid-template-columns: repeat(12, 1fr); gap: 20px; }
.lp-sp7 { grid-column: span 7; }
.lp-sp5 { grid-column: span 5; }
.lp-sp3 { grid-column: span 3; }
.lp-feat-head { display: flex; align-items: center; gap: 14px; }
.lp-feat-ic { flex: none; width: 44px; height: 44px; border-radius: 12px; background: #E8F6F1; display: grid; place-items: center; }
.lp-feat-ic--sm { width: 40px; height: 40px; border-radius: 11px; }
.lp-feat-h { margin: 0; font-family: var(--font-sora); font-weight: 600; font-size: 19px; color: var(--ink); }
.lp-feat-h--sm { margin: 16px 0 0; font-size: 16px; }
.lp-feat-p { margin: 14px 0 0; font-size: 15px; line-height: 1.62; color: var(--body-text); }
.lp-feat-p--sm { margin: 8px 0 0; font-size: 13.5px; line-height: 1.6; }
.lp-prev { margin-top: 22px; background: var(--bg2); border: 1px solid var(--border3); border-radius: 14px; padding: 16px 18px; }
.lp-prev--rows { padding: 8px 18px; }

/* Bautagebuch-Preview */
.lp-rep-top { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.lp-rep-title { font-size: 12px; font-weight: 600; color: var(--ink); }
.lp-chip-mint { font-size: 9.5px; font-weight: 600; padding: 3px 9px; border-radius: 999px; background: var(--mint-chip-bg); color: var(--teal-deep); }
.lp-rep-meta { margin-top: 4px; font-family: var(--font-mono); font-size: 9.5px; letter-spacing: 0.08em; color: var(--muted); }
.lp-rep-txt { margin: 10px 0 0; font-size: 11.5px; line-height: 1.6; color: var(--body-text); }
.lp-rep-photos { margin-top: 12px; display: flex; gap: 8px; }
.lp-ph { width: 46px; height: 46px; border-radius: 8px; }
.lp-ph1 { background: linear-gradient(135deg, #C7E9DF, #93CDBE); }
.lp-ph2 { background: linear-gradient(135deg, #B4DFD2, #7FBFAE); }
.lp-ph3 { background: linear-gradient(135deg, #D5EFE7, #A5D8CA); }
.lp-ph-more { background: #EAF3F0; border: 1px dashed #BCD6CD; color: #57756D; font-family: var(--font-mono); font-size: 10px; display: grid; place-items: center; }
.lp-rep-stats { margin-top: 12px; display: flex; gap: 16px; font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.08em; color: var(--muted); }

/* Kalender-Preview */
.lp-cal-row { display: flex; align-items: center; gap: 12px; padding: 10px 0; border-bottom: 1px solid var(--border3); }
.lp-cal-row:last-child { border-bottom: none; }
.lp-cal-day { flex: none; width: 52px; font-family: var(--font-mono); font-size: 9.5px; color: var(--muted); }
.lp-cal-day--hl { color: var(--teal-hover); }
.lp-cal-ev { font-size: 10.5px; font-weight: 600; padding: 5px 9px; border-radius: 7px; background: var(--mint-chip-bg); color: var(--teal-deep); }
.lp-cal-ev--solid { background: var(--teal); color: #FFFFFF; }
.lp-cal-ev--ghost { font-weight: 500; background: #F0F5F3; color: var(--body-text); border: 1px solid var(--border); }

/* Projekte-Preview (Fortschritt) */
.lp-prog-row + .lp-prog-row { margin-top: 13px; }
.lp-prog-top { display: flex; justify-content: space-between; align-items: baseline; }
.lp-prog-name { font-size: 11.5px; font-weight: 600; color: var(--ink); }
.lp-prog-pct { font-family: var(--font-mono); font-size: 9.5px; color: var(--muted); }
.lp-prog-track { margin-top: 6px; height: 5px; border-radius: 3px; background: #EAF1EE; }
.lp-prog-fill { height: 100%; border-radius: 3px; background: linear-gradient(90deg, #14A390, #107A6F); }
.lp-w68 { width: 68%; }
.lp-w42 { width: 42%; }
.lp-w91 { width: 91%; }

/* Rechnungen-Preview */
.lp-inv-row { display: flex; justify-content: space-between; align-items: center; gap: 10px; padding: 10px 0; border-bottom: 1px solid var(--border3); }
.lp-inv-row:last-child { border-bottom: none; }
.lp-inv-name { display: block; font-size: 11.5px; font-weight: 600; color: var(--ink); }
.lp-inv-id { display: block; font-family: var(--font-mono); font-size: 9px; color: var(--muted); }
.lp-inv-amt { font-size: 12px; font-weight: 600; color: var(--ink); }
.lp-inv-total-label { font-family: var(--font-mono); font-size: 9.5px; letter-spacing: 0.08em; color: var(--muted); }
.lp-inv-total { font-family: var(--font-sora); font-weight: 600; font-size: 15px; color: var(--teal-deep); }

/* Mobile Feature-Liste (Design mobile.html: Liste statt Bento) */
.lp-feat-list { display: none; margin-top: 20px; flex-direction: column; gap: 10px; }
.lp-feat-row {
  display: flex; align-items: center; gap: 13px; background: #FFFFFF; border: 1px solid var(--border);
  border-radius: 14px; padding: 14px 16px;
  box-shadow: 0 1px 2px rgba(8,44,38,0.05), 0 8px 22px -12px rgba(8,44,38,0.1);
}
.lp-feat-row-ic { flex: none; width: 38px; height: 38px; border-radius: 10px; background: #E8F6F1; display: grid; place-items: center; }
.lp-feat-row-t { display: block; font-size: 14px; font-weight: 600; color: var(--ink); }
.lp-feat-row-s { display: block; margin-top: 1px; font-size: 12px; color: var(--muted); }

/* Domain-Hint-Strip (nur mobil, Design mobile.html) */
.lp-domain-strip { display: none; margin: 26px 22px 0; background: #EAF7F2; border: 1px solid #CFEAE0; border-radius: 14px; padding: 16px 18px; }
.lp-domain-strip-head { display: flex; align-items: center; gap: 8px; }
.lp-domain-strip-a { font-family: var(--font-mono); font-size: 9.5px; letter-spacing: 0.14em; color: var(--teal-hover); }
.lp-domain-strip-arrow { font-size: 11px; color: var(--muted2); }
.lp-domain-strip-b { font-family: var(--font-mono); font-size: 9.5px; letter-spacing: 0.14em; color: var(--teal-deep); }
.lp-domain-strip-p { margin: 8px 0 0; font-size: 12.5px; line-height: 1.55; color: #26403A; }

/* ── Zielgruppen ────────────────────────────────────────── */
.lp-sec-aud { background: var(--bg); padding: 96px 32px 128px; }
.lp-cards-aud { margin-top: 56px; display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }
.lp-aud-num { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.12em; color: var(--muted2); }
.lp-aud-h { margin: 40px 0 0; font-family: var(--font-sora); font-weight: 600; font-size: 19px; color: var(--ink); }
.lp-chips { margin-top: 22px; display: flex; flex-wrap: wrap; gap: 8px; }
.lp-chip { font-family: var(--font-mono); font-size: 10.5px; color: #33544D; background: #F0F7F4; border: 1px solid #DCEAE4; padding: 5px 11px; border-radius: 999px; }

/* ── Vertrauen (dunkel) ─────────────────────────────────── */
.lp-sec-trust { position: relative; background: linear-gradient(180deg, #053B34 0%, #032A25 100%); padding: 128px 32px; overflow: hidden; }
.lp-trust-fx { position: absolute; inset: 0; pointer-events: none; }
.lp-glow-trust { top: -220px; left: 50%; transform: translateX(-50%); width: 900px; height: 520px; background: radial-gradient(closest-side, rgba(61,214,190,0.16), rgba(61,214,190,0) 72%); opacity: .595; }
.lp-trust-inner { position: relative; max-width: 1160px; margin: 0 auto; }
.lp-glass-card { background: rgba(255,255,255,0.055); border: 1px solid rgba(255,255,255,0.12); border-radius: 18px; padding: 30px; }
.lp-glass-ic { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 12px; background: rgba(217,246,239,0.12); }
.lp-glass-h { margin: 18px 0 0; font-family: var(--font-sora); font-weight: 600; font-size: 18px; color: #FFFFFF; }
.lp-glass-p { margin: 10px 0 0; font-size: 14.5px; line-height: 1.65; color: rgba(233,247,243,0.66); }
.lp-domains { margin: 64px auto 0; max-width: 980px; }
.lp-domains-grid { display: grid; grid-template-columns: 1fr 56px 1fr; gap: 0; align-items: stretch; }
.lp-domain-card { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.14); border-radius: 18px; padding: 28px 30px; }
.lp-domain-card--solid { background: #FFFFFF; border: none; box-shadow: 0 30px 70px -28px rgba(0,0,0,0.5); }
.lp-domain-tag { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.16em; color: #8FE3D2; }
.lp-domain-tag--teal { color: var(--teal-hover); }
.lp-domain-h { margin-top: 10px; font-family: var(--font-sora); font-weight: 600; font-size: 18px; color: #FFFFFF; }
.lp-domain-h--ink { color: var(--ink); }
.lp-domain-list { margin-top: 12px; font-size: 14px; line-height: 2; color: rgba(233,247,243,0.68); }
.lp-domain-list--ink { color: var(--body-text); }
.lp-domain-arrow-wrap { display: grid; place-items: center; }
.lp-domain-arrow { width: 38px; height: 38px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.25); color: var(--mint-chip-bg); display: grid; place-items: center; font-size: 16px; }
.lp-domains-note { margin-top: 22px; text-align: center; font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.16em; color: rgba(233,247,243,0.45); }

/* ── Preise ─────────────────────────────────────────────── */
.lp-sec-price { background: var(--bg); padding: 120px 32px; }
.lp-price-card {
  max-width: 760px; margin: 0 auto; background: #FFFFFF; border: 1px solid var(--border);
  border-radius: 20px; padding: 56px 48px; text-align: center;
  box-shadow: 0 1px 2px rgba(8,44,38,0.05), 0 10px 30px -14px rgba(8,44,38,0.12);
}
.lp-soon {
  display: inline-block; font-family: var(--font-mono); font-size: 11px; font-weight: 500;
  letter-spacing: 0.14em; background: var(--mint-chip-bg); color: var(--teal-deep);
  padding: 7px 15px; border-radius: 999px;
}
.lp-price-h { margin: 20px 0 0; font-family: var(--font-sora); font-weight: 600; font-size: clamp(24px, 2.6vw, 30px); letter-spacing: -0.018em; color: var(--ink); }
.lp-price-p { margin: 14px auto 0; max-width: 480px; font-size: 15.5px; line-height: 1.65; color: var(--body-text); }
.lp-price-cta { margin-top: 28px; }

/* ── CTA-Panel ──────────────────────────────────────────── */
.lp-sec-cta { background: var(--bg); padding: 16px 32px 136px; }
.lp-cta-panel {
  position: relative; max-width: 1160px; margin: 0 auto;
  background: linear-gradient(140deg, #0C6156 0%, #053B34 60%, #04352E 100%);
  border-radius: 28px; padding: 96px 40px; text-align: center; overflow: hidden;
}
.lp-cta-fx { position: absolute; inset: 0; pointer-events: none; }
.lp-glow-cta1 { top: -200px; left: 12%; width: 640px; height: 480px; background: radial-gradient(closest-side, rgba(61,214,190,0.28), rgba(61,214,190,0) 72%); opacity: .7225; }
.lp-glow-cta2 { bottom: -260px; right: 6%; width: 620px; height: 520px; background: radial-gradient(closest-side, rgba(15,138,124,0.45), rgba(15,138,124,0) 70%); opacity: .51; }
.lp-cta-inner { position: relative; }
.lp-cta-h { margin: 0; font-family: var(--font-sora); font-weight: 700; font-size: clamp(32px, 4vw, 48px); line-height: 1.1; letter-spacing: -0.025em; color: #FFFFFF; }
.lp-cta-p { margin: 20px auto 0; max-width: 540px; font-size: 17px; line-height: 1.65; color: rgba(233,247,243,0.72); }
.lp-cta-btns { margin-top: 36px; display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── Footer ─────────────────────────────────────────────── */
.lp-footer { background: #04241F; padding: 72px 32px 36px; }
.lp-footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 48px; }
.lp-footer-brandcol { grid-column: span 1; min-width: 220px; }
.lp-footer-brand { display: flex; align-items: baseline; gap: 6px; }
.lp-footer-brand-a { font-family: var(--font-sora); font-weight: 700; font-size: 19px; color: #FFFFFF; }
.lp-footer-brand-b { font-family: var(--font-sora); font-weight: 600; font-size: 19px; color: #7FE0CC; }
.lp-footer-blurb { margin: 14px 0 0; max-width: 250px; font-size: 14px; line-height: 1.7; color: rgba(255,255,255,0.5); }
.lp-footer-head { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.16em; color: rgba(143,227,210,0.7); }
.lp-footer-links { margin-top: 16px; display: flex; flex-direction: column; gap: 2px; }
.lp-footer-link { font-size: 14.5px; color: rgba(255,255,255,0.66); padding: 5px 0; transition: color .2s ease; }
body.landing-page .lp-footer-link:hover { color: #FFFFFF; }
.lp-footer-bottom {
  margin-top: 56px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.08);
  display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap;
}
.lp-footer-fine { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.12em; color: rgba(255,255,255,0.4); }

/* Utility (Landing lädt 01-base-layout.css nicht mehr — .hidden hier lokal) */
body.landing-page .hidden { display: none; }

/* ── Scroll-Reveal (landing.js setzt Klassen) ───────────── */
.lp-reveal-init {
  opacity: 0; transform: translateY(26px);
  transition: opacity .75s var(--ease-out), transform .75s var(--ease-out);
}
.lp-reveal-init.lp-reveal-in { opacity: 1; transform: translateY(0); }

/* ── Responsive ─────────────────────────────────────────── */
@media (max-width: 1020px) {
  /* Bento: 12-col → 2-col */
  .lp-sp7, .lp-sp5, .lp-sp3 { grid-column: span 6; }
}

@media (max-width: 900px) {
  /* Nav kollabiert ins Hamburger-Menü (bestehende Mechanik) */
  .lp-nav-links {
    display: none; flex-direction: column; align-items: stretch; gap: 0;
    position: absolute; top: 68px; left: 0; right: 0;
    background: rgba(3, 38, 33, 0.97);
    -webkit-backdrop-filter: blur(16px) saturate(1.3);
    backdrop-filter: blur(16px) saturate(1.3);
    border-bottom: 1px solid rgba(255,255,255,0.09);
    box-shadow: 0 24px 48px -24px rgba(2,28,24,0.7);
    padding: 8px 22px 18px; z-index: 59;
  }
  .lp-nav-links.l-nav-open { display: flex; }
  .lp-nav-links .lp-nav-link { padding: 14px 2px; font-size: 15px; border-bottom: 1px solid rgba(255,255,255,0.07); }
  .lp-nav-end { display: none; }
  .lp-menu-btn { display: flex; }
  .lp-nav-auth { display: flex; flex-direction: column; gap: 10px; padding-top: 16px; }
  .lp-nav-inner { padding: 0 22px; }
}

@media (max-width: 720px) {
  /* Hero kondensiert (Design mobile.html Screen 01) */
  .lp-hero-inner { padding: 120px 22px 0; }
  .lp-h1 { font-size: 33px; line-height: 1.12; letter-spacing: -0.025em; margin-top: 14px; }
  .lp-eyebrow { font-size: 10.5px; letter-spacing: 0.16em; }
  .lp-hero-sub { margin-top: 16px; font-size: 14.5px; line-height: 1.6; }
  .lp-hero-ctas { margin-top: 24px; flex-direction: column; gap: 10px; }
  .lp-hero-ctas .lp-btn-solid,
  .lp-hero-ctas .lp-btn-ghost-dark { justify-content: center; font-size: 14.5px; padding: 14px 20px; border-radius: 12px; }

  /* Browser-Mock → kompakte Dashboard-Karte */
  .lp-mock-wrap { display: none; }
  .lp-mock-mini { display: block; margin: 30px 22px 0; }
  .lp-hero { padding-bottom: 36px; }
  .lp-sec-problem { padding: 64px 22px 56px; }
  .lp-problem-inner { margin-top: 64px; }
  .lp-solution { padding: 30px 24px; gap: 24px; }
  .lp-checks { grid-template-columns: 1fr; gap: 14px; }

  /* Funktionen: Liste statt Bento */
  .lp-sec-features { padding: 64px 22px; }
  .lp-sec-features .lp-sec-head { text-align: left; }
  .lp-sec-features .lp-lead { margin-left: 0; }
  .lp-bento { display: none; }
  .lp-feat-list { display: flex; }
  .lp-domain-strip { display: block; margin: 26px 0 0; }

  .lp-sec-aud { padding: 64px 22px 72px; }
  .lp-sec-trust { padding: 72px 22px; }
  .lp-domains-grid { grid-template-columns: 1fr; gap: 14px; }
  .lp-domain-arrow-wrap { padding: 4px 0; }
  .lp-domain-arrow { transform: rotate(90deg); }
  .lp-sec-price { padding: 64px 22px; }
  .lp-price-card { padding: 36px 24px; }
  .lp-sec-cta { padding: 12px 22px 72px; }
  .lp-cta-panel { border-radius: 18px; padding: 40px 24px; }
  .lp-cta-h { font-size: 22px; line-height: 1.2; letter-spacing: -0.02em; }
  .lp-cta-p { margin-top: 14px; font-size: 14.5px; }
  .lp-cta-btns { margin-top: 22px; flex-direction: column; gap: 10px; }
  .lp-cta-btns .lp-btn-solid,
  .lp-cta-btns .lp-btn-ghost-dark { justify-content: center; font-size: 14px; padding: 13px 20px; border-radius: 11px; }
  .lp-footer { padding: 40px 22px 32px; }
  .lp-footer-grid { gap: 28px; }
  .lp-footer-bottom { margin-top: 32px; }
}

/* ── Reduzierte Bewegung ────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .lp-float { animation: none; }
  .lp-reveal-init { opacity: 1; transform: none; transition: none; }
  .lp-card-hover, .lp-btn-solid, .lp-btn-ghost-dark, .lp-btn-outline-light,
  .lp-nav-pill, .lp-nav, .lp-nav-login, .lp-nav-link, .lp-footer-link { transition: none; }
  body.landing-page .lp-card-hover:hover { transform: none; }
  body.landing-page .lp-btn-solid:hover,
  body.landing-page .lp-nav-pill:hover { transform: none; }
}
