/* grows420 - Landing Page Stub */
:root {
  --accent: #00996a;
  --accent-hover: #00b980;
  --accent-muted: #00996a33;
  --bg: #0a0a0a;
  --bg-elevated: #141414;
  --bg-card: #121212;
  --bg-hover: #1a1a1a;
  --border: rgb(252 252 252 / 6%);
  --text: #efefef;
  --text-secondary: #999;
  --text-muted: #666;
  --radius: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --font: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --max: 1100px;
  --lp-pad-x: 20px;
  --header-h: 64px;
  --safe-top: env(safe-area-inset-top, 0px);
  --safe-bottom: env(safe-area-inset-bottom, 0px);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  color-scheme: dark;
  -webkit-tap-highlight-color: transparent;
}

body {
  margin: 0;
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -webkit-tap-highlight-color: transparent;
}

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

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  color: var(--accent-hover);
}

.lp-wrap {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Header */
.lp-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: calc(var(--header-h) + var(--safe-top));
  padding-top: var(--safe-top);
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.lp-header-inner {
  max-width: calc(var(--max) + 2 * var(--lp-pad-x));
  margin: 0 auto;
  height: var(--header-h);
  padding-left: max(var(--lp-pad-x), env(safe-area-inset-left, 0px));
  padding-right: max(var(--lp-pad-x), env(safe-area-inset-right, 0px));
  display: flex;
  align-items: center;
  gap: 20px;
}

.lp-logo {
  display: inline-flex;
  align-items: center;
  color: var(--accent);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
  flex-shrink: 0;
}

.lp-logo:hover {
  color: var(--accent);
}

.lp-logo-accent {
  color: var(--accent);
}

.lp-nav {
  display: none;
  align-items: center;
  gap: 4px;
  flex: 1;
  margin-left: 12px;
}

.lp-nav a {
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 8px 12px;
  border-radius: var(--radius);
}

.lp-nav a:hover {
  color: var(--text);
  background: var(--bg-hover);
}

.lp-header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}

.lp-menu-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: transparent;
  color: var(--text);
  cursor: pointer;
  line-height: 1;
}

.lp-menu-btn svg {
  width: 20px;
  height: 20px;
}

.lp-cta-short {
  display: none;
}

@media (max-width: 899px) {
  .lp-header-cta .lp-cta-full {
    display: none;
  }

  .lp-header-cta .lp-cta-short {
    display: inline;
  }
}

@media (min-width: 900px) {
  .lp-nav {
    display: flex;
  }

  .lp-menu-btn {
    display: none;
  }
}

/* Mobile nav panel */
.lp-nav-mobile {
  display: none;
  border-top: 1px solid var(--border);
  background: var(--bg-elevated);
  padding: 8px max(var(--lp-pad-x), env(safe-area-inset-left, 0px)) 16px max(var(--lp-pad-x), env(safe-area-inset-right, 0px));
}

.lp-nav-mobile.is-open {
  display: block;
}

.lp-nav-mobile a {
  display: block;
  color: var(--text-secondary);
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  font-weight: 500;
}

.lp-nav-mobile a:last-child {
  border-bottom: none;
}

@media (min-width: 900px) {
  .lp-nav-mobile,
  .lp-nav-mobile.is-open {
    display: none !important;
  }
}

/* Buttons */
button,
.btn,
.lp-menu-btn,
.lp-wm,
.lp-wm-save,
.lp-wm-modes,
.lp-wm-grow,
.lp-slideshow-open,
.lp-shot {
  -webkit-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: transparent;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: var(--radius);
  font: inherit;
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.btn-sm {
  padding: 8px 12px;
  font-size: 0.85rem;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
}

.btn-primary:hover {
  background: var(--accent-hover);
  color: #fff;
}

.btn-secondary {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}

.btn-secondary:hover {
  background: var(--bg-hover);
  color: var(--text);
}

.btn-ghost {
  background: var(--bg-card);
  color: var(
  --text);
  border-color: transparent;
}

.btn-ghost:hover {
  color: var(--text);
  background: var(--bg-hover);
}

/* Layout helpers */
.lp-main {
  flex: 1;
}

.lp-section {
  padding: 64px var(--lp-pad-x);
}

.lp-section-alt {
  background: var(--bg-elevated);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.lp-inner {
  max-width: var(--max);
  margin: 0 auto;
}

.lp-eyebrow {
  display: inline-block;
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 5px;
}

.lp-h2 {
  margin: 0 0 12px;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.lp-lead {
  margin: 0 0 28px;
  max-width: 1100px;
  color: var(--text-secondary);
  font-size: 1.05rem;
}

.lp-center {
  text-align: center;
}

.lp-center .lp-lead,
.lp-lead.lp-center {
  margin-left: auto;
  margin-right: auto;
}

/* Hero */
.lp-hero {
  padding: 48px var(--lp-pad-x) 72px;
}

.lp-hero-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  gap: 40px;
  align-items: center;
}

@media (min-width: 900px) {
  .lp-hero {
    padding: 64px var(--lp-pad-x) 88px;
  }

  .lp-hero-grid {
    grid-template-columns: 0.95fr 1.15fr;
    gap: 40px;
    align-items: center;
  }
}

.lp-hero h1 {
  margin: 0 0 16px;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 750;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.lp-hero-sub {
  margin: 0 0 28px;
  color: var(--text-secondary);
  font-size: 1.1rem;
  max-width: 40ch;
}

.lp-hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
}

.lp-hero-trust {
  margin: 0;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.lp-hero-visual {
  min-height: 0;
  padding: 0;
  border: none;
  background: transparent;
  box-shadow: none;
}

.lp-shot {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: left;
}

.lp-shot img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  background: var(--bg-card);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

.lp-shot-cap {
  margin: 0;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.02em;
  text-align: center;
}

/* Hero: flaches Dashboard im Browser-Frame – lesbar, ohne 3D-Schiefe */
.lp-shot--hero {
  position: relative;
  z-index: 1;
}

.lp-shot-frame {
  position: relative;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: var(--bg-elevated);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.05) inset,
    0 18px 48px rgba(0, 0, 0, 0.42),
    0 40px 80px rgba(0, 0, 0, 0.28);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.lp-shot-chrome {
  display: flex;
  align-items: center;
  gap: 10px;
  height: 40px;
  padding: 0 12px;
  background: color-mix(in srgb, var(--bg-card) 82%, #fff 5%);
  border-bottom: 1px solid var(--border);
}

.lp-shot-chrome-nav {
  display: flex;
  align-items: center;
  gap: 2px;
  flex-shrink: 0;
  color: var(--text-muted);
}

.lp-shot-chrome-nav svg {
  width: 16px;
  height: 16px;
  padding: 4px;
  box-sizing: content-box;
  opacity: 0.7;
}

.lp-shot-chrome-nav svg:last-child {
  opacity: 0.32;
}

.lp-shot-url {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  flex: 1;
  min-width: 0;
  height: 26px;
  padding: 0 14px;
  border-radius: 8px;
  background: color-mix(in srgb, var(--bg) 70%, var(--bg-hover));
  border: 1px solid var(--border);
  color: var(--text-secondary);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.lp-shot-url-lock {
  width: 12px;
  height: 12px;
  flex-shrink: 0;
  color: var(--accent);
  opacity: 0.9;
}

.lp-shot-url span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.lp-shot-frame img {
  display: block;
  width: 100%;
  height: auto;
  border: none;
  border-radius: 0;
  box-shadow: none;
  background: var(--bg);
}

.lp-shot--hero:hover .lp-shot-frame {
  transform: translateY(-3px);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.06) inset,
    0 22px 56px rgba(0, 0, 0, 0.48),
    0 48px 90px rgba(0, 0, 0, 0.3);
}

.lp-shot--hero .lp-shot-cap {
  text-align: left;
  padding-left: 2px;
  margin-top: 4px;
}

@media (max-width: 899px) {
  .lp-hero-visual {
    max-width: 640px;
    margin: 0 auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  .lp-shot-frame,
  .lp-shot--hero:hover .lp-shot-frame {
    transition: none;
    transform: none;
  }
}

.lp-slide-name {
  color: var(--accent);
  font-weight: 600;
}

.lp-slide-num {
  color: var(--accent);
  margin-left: auto;
  flex-shrink: 0;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}

/* Produkt-Slideshow */
.lp-slideshow {
  width: 100%;
  max-width: min(1120px, 100%);
  margin: 0 auto;
}

.lp-slideshow-stage {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
}

.lp-slideshow-viewport {
  min-width: 0;
}

.lp-slideshow-track {
  position: relative;
}

.lp-slideshow-slide {
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 12px;
  width: fit-content;
  max-width: 100%;
}

.lp-slideshow-slide .lp-shot-cap {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  width: 100%;
  text-align: left;
}

.lp-slideshow-slide[hidden] {
  display: none !important;
}

.lp-slideshow.is-solo .lp-slideshow-nav,
.lp-slideshow.is-solo .lp-slideshow-dots {
  display: none;
}

.lp-slideshow.is-solo .lp-slideshow-stage {
  grid-template-columns: minmax(0, 1fr);
}

.lp-slideshow-open {
  display: flex;
  justify-content: center;
  width: 100%;
  padding: 0;
  margin: 0;
  border: none;
  background: transparent;
  cursor: zoom-in;
  border-radius: var(--radius-xl);
  line-height: 0;
}

.lp-slideshow-open:focus:not(:focus-visible),
.lp-slideshow-open:active {
  outline: none;
  background: transparent;
}

.lp-slideshow-open:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.lp-slideshow-open img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: min(72vh, 820px);
  aspect-ratio: 8 / 5;
  object-fit: contain;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  background: var(--bg-card);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
}

.lp-slideshow-nav {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--bg-card);
  color: var(--text);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.lp-slideshow-nav svg {
  width: 22px;
  height: 22px;
}

.lp-slideshow-nav:hover {
  background: var(--bg-hover);
  border-color: color-mix(in srgb, var(--accent) 40%, var(--border));
  color: var(--accent);
}

.lp-slideshow-nav:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.lp-slideshow-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
}

.lp-slideshow-dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: none;
  border-radius: 999px;
  background: color-mix(in srgb, var(--text-muted) 55%, transparent);
  cursor: pointer;
  transition: background 0.15s ease, transform 0.15s ease;
}

.lp-slideshow-dot.is-active {
  background: var(--accent);
  transform: scale(1.15);
}

.lp-slideshow-dot:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

@media (max-width: 700px) {
  .lp-slideshow-stage {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
  }

  .lp-slideshow-viewport {
    flex: 1 1 100%;
    order: 1;
  }

  .lp-slideshow-nav {
    width: 44px;
    height: 44px;
    order: 2;
  }

  .lp-slideshow-open img {
    max-height: min(58vh, 560px);
  }
}

/* Landing Lightbox */
.lp-lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: max(16px, env(safe-area-inset-top, 0px)) max(16px, env(safe-area-inset-right, 0px)) max(16px, env(safe-area-inset-bottom, 0px)) max(16px, env(safe-area-inset-left, 0px));
  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-sizing: border-box;
}

.lp-lightbox[hidden] {
  display: none !important;
}

.lp-lightbox-figure {
  margin: 0;
  max-width: min(1280px, calc(100vw - 120px));
  max-height: calc(100vh - 48px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.lp-lightbox-figure img {
  display: block;
  max-width: 100%;
  max-height: calc(100vh - 96px);
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.55);
  background: #0a0a0a;
}

.lp-lightbox-cap {
  margin: 0;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
  font-weight: 600;
  text-align: center;
}

.lp-lightbox-close,
.lp-lightbox-nav {
  position: absolute;
  z-index: 2;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(20, 20, 20, 0.75);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.lp-lightbox-close svg,
.lp-lightbox-nav svg {
  width: 22px;
  height: 22px;
}

.lp-lightbox-close:hover,
.lp-lightbox-nav:hover {
  background: rgba(40, 40, 40, 0.9);
  border-color: color-mix(in srgb, var(--accent) 50%, rgba(255, 255, 255, 0.2));
  color: var(--accent);
}

.lp-lightbox-close {
  top: max(16px, env(safe-area-inset-top, 0px));
  right: max(16px, env(safe-area-inset-right, 0px));
}

.lp-lightbox-prev {
  left: max(12px, env(safe-area-inset-left, 0px));
  top: 50%;
  transform: translateY(-50%);
}

.lp-lightbox-next {
  right: max(12px, env(safe-area-inset-right, 0px));
  top: 50%;
  transform: translateY(-50%);
}

body.lp-lightbox-open {
  overflow: hidden;
}

@media (max-width: 700px) {
  .lp-lightbox-figure {
    max-width: calc(100vw - 24px);
  }

  .lp-lightbox-figure img {
    max-height: calc(100vh - 120px);
  }

  .lp-lightbox-prev,
  .lp-lightbox-next {
    width: 42px;
    height: 42px;
  }
}

/* Problem / Loesung */
.lp-tri {
  display: grid;
  gap: 16px;
}

@media (min-width: 768px) {
  .lp-tri {
    grid-template-columns: repeat(3, 1fr);
  }
}

.lp-tri-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px 20px;
}

.lp-tri-card h3 {
  margin: 0 0 8px;
  font-size: 1rem;
}

.lp-tri-card p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.lp-note {
  margin: 24px 0 0;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Features */
.lp-features {
  display: grid;
  gap: 14px;
}

@media (min-width: 640px) {
  .lp-features {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 960px) {
  .lp-features {
    grid-template-columns: repeat(3, 1fr);
  }
}

.lp-feature {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 160px;
}

.lp-feature-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius);
  background: var(--accent-muted);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  line-height: 1;
}

.lp-feature-icon svg {
  width: 22px;
  height: 22px;
  display: block;
  flex-shrink: 0;
}

.lp-feature-icon svg.lp-feature-icon-cannabis {
  width: 24px;
  height: 24px;
  overflow: hidden;
}

.lp-feature-icon.is-emoji {
  font-size: 1.2rem;
}

.lp-feature h3 {
  margin: 0;
  font-size: 1.05rem;
}

.lp-feature p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 0.92rem;
  flex: 1;
}

.lp-feature.is-spotlight {
  border-color: color-mix(in srgb, var(--accent) 40%, var(--border));
  box-shadow: 0 0 0 1px color-mix(in srgb, var(--accent) 18%, transparent);
}

.lp-feature-more {
  display: inline-flex;
  align-items: center;
  margin-top: 2px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--accent);
}

.lp-feature-more:hover {
  color: var(--accent-hover);
}

/* Giessen Spotlight */
.lp-spotlight {
  display: grid;
  gap: 28px;
  align-items: start;
}

@media (min-width: 860px) {
  .lp-spotlight {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 560px);
    gap: 40px 35px;
    align-items: stretch;
  }

  .lp-wm {
    /* unter dem Eyebrow Giessen, Hoehe = restlicher Textblock */
    margin-top: calc(0.78rem * 1.5 + 12px);
    height: auto;
    max-height: 650px;
    align-self: stretch;
  }
}

@media (min-width: 1200px) {
  .lp-spotlight {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 560px);
    gap: 40px 55px;
    align-items: stretch;
  }
  
  .lp-wm {
    margin-top: calc(0.78rem * 1.5 + 12px);
    height: auto;
    max-height: 650px;
    align-self: stretch;
  }
}
  
.lp-spotlight-copy {
  opacity: 0;
  transition: opacity 0.7s ease;
}

.lp-spotlight-copy.is-inview {
  opacity: 1;
}

.lp-spotlight-copy .lp-h2 {
  margin-bottom: 10px;
}

.lp-spotlight-copy .lp-lead {
  margin-bottom: 22px;
  max-width: none;
}

.lp-spotlight-points {
  margin: 0 0 22px;
  padding-left: 1.25em;
  list-style: disc;
  color: var(--accent);
}

.lp-spotlight-points li {
  display: list-item;
  margin: 0 0 14px;
  padding-left: 0.2em;
}

.lp-spotlight-points li:last-child {
  margin-bottom: 0;
}

.lp-spotlight-points strong {
  display: block;
  font-size: 1rem;
  color: var(--text);
}

.lp-spotlight-points span {
  display: block;
  margin-top: 4px;
  color: var(--text-secondary);
  font-size: 0.92rem;
}

.lp-wm {
  --wm-panel: #1e1e1e;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  grid-template-columns: minmax(0, 1fr);
  height: 80vh;
  max-height: 650px;
  min-height: 0;
  min-width: 0;
  width: 100%;
  max-width: 560px;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  background: var(--bg-card);
  overflow: hidden;
  box-shadow: 0 6px 32px rgba(0, 0, 0, 0.5);
  position: relative;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.7s ease;
  -webkit-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: transparent;
}

.lp-wm:focus,
.lp-wm:active {
  outline: none;
  background: var(--bg-card);
}

.lp-wm.is-inview {
  opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
  .lp-wm,
  .lp-spotlight-copy {
    opacity: 1;
    transition: none;
  }
}

.lp-wm-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 12px 14px;
  border-bottom: 1px solid var(--border);
  flex: 0 0 auto;
  background: var(--bg-card);
  z-index: 2;
}

.lp-wm-title {
  font-weight: 650;
  font-size: 0.98rem;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.lp-wm-head-end {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.lp-wm-modes {
  display: inline-flex;
  gap: 4px;
}

.lp-wm-modes span {
  font-size: 0.72rem;
  font-weight: 500;
  padding: 5px 10px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  color: var(--text-secondary);
  background: var(--bg);
}

.lp-wm-modes .is-on {
  border-color: transparent;
  color: #fff;
  background: var(--accent);
}

.lp-wm-x {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  position: relative;
}

.lp-wm-x::before,
.lp-wm-x::after {
  content: "";
  position: absolute;
  left: 7px;
  right: 7px;
  top: 50%;
  height: 1.5px;
  background: var(--text-muted);
}

.lp-wm-x::before { transform: rotate(45deg); }
.lp-wm-x::after { transform: rotate(-45deg); }

.lp-wm-body {
  padding: 14px;
  display: block;
  min-height: 0;
  max-height: 100%;
  overflow-x: hidden;
  overflow-y: scroll;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-y;
  scrollbar-gutter: stable;
  scrollbar-width: thin;
  scrollbar-color: color-mix(in srgb, var(--text-muted) 70%, transparent) transparent;
}

.lp-wm-body > * + * {
  margin-top: 12px;
}

.lp-wm-body::-webkit-scrollbar {
  width: 8px;
}

.lp-wm-body::-webkit-scrollbar-thumb {
  background: color-mix(in srgb, var(--text-muted) 55%, transparent);
  border-radius: 999px;
}

.lp-wm-grows {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.lp-wm-grow {
  font-size: 0.78rem;
  font-weight: 550;
  padding: 6px 10px;
  border-radius: 8px;
  border: 1px solid var(--border);
  color: var(--text-secondary);
}

.lp-wm-grow.is-on {
  background: var(--bg-elevated);
  color: var(--text);
}

.lp-wm-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.lp-wm-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 5px;
}

.lp-wm-input {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 40px;
  padding: 8px 12px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 550;
}

.lp-wm-input span {
  color: var(--text-secondary);
  font-size: 0.72rem;
  font-weight: 700;
}

.lp-wm-select {
  padding-right: 28px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.7rem center;
  background-size: 0.9rem;
}

.lp-wm-doses {
  overflow: hidden;
  border-radius: 12px;
  background: var(--wm-panel);
}

.lp-wm-doses-head {
  padding: 14px 14px 12px;
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--text-secondary);
  border-bottom: 1px solid color-mix(in srgb, var(--border) 80%, transparent);
}

.lp-wm-dose {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-bottom: 1px solid color-mix(in srgb, var(--border) 70%, transparent);
}

.lp-wm-dose strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-secondary);
}

.lp-wm-dose span {
  display: block;
  margin-top: 3px;
  font-size: 0.72rem;
  color: var(--text-secondary);
}

.lp-wm-amt-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
  flex-shrink: 0;
}

.lp-wm-amt {
  font-weight: 800;
  font-size: 1.45rem;
  color: var(--accent);
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
  line-height: 1;
  white-space: nowrap;
}

.lp-wm-amt small {
  font-size: 0.9rem;
  font-weight: 650;
}

.lp-wm-delta {
  display: inline-flex !important;
  align-items: center;
  padding: 2px 8px;
  border-radius: 999px;
  font-size: 0.7rem !important;
  font-weight: 700;
  margin-top: 0 !important;
}

.lp-wm-delta.is-over {
  color: #e67e22 !important;
  background: color-mix(in srgb, #e67e22 16%, transparent);
  border: 1px solid color-mix(in srgb, #e67e22 40%, transparent);
}

.lp-wm-delta.is-under {
  color: #5b9bd5 !important;
  background: color-mix(in srgb, #5b9bd5 16%, transparent);
  border: 1px solid color-mix(in srgb, #5b9bd5 40%, transparent);
}

.lp-wm-total {
  padding: 14px 16px;
}

.lp-wm-total-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-secondary);
  margin-bottom: 6px;
}

.lp-wm-total-val {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 6px 8px;
  font-size: 1.05rem;
  font-weight: 700;
}

.lp-wm-total-val b {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.02em;
}

.lp-wm-total-val em,
.lp-wm-total-val i {
  font-style: normal;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.lp-wm-split {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 16px 16px 18px;
  border-radius: 12px;
  background: var(--wm-panel);
}

.lp-wm-split-title {
  display: flex;
  align-items: baseline;
  gap: 10px;
  flex-wrap: wrap;
}

.lp-wm-split-count {
  font-size: 1.55rem;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
  color: var(--accent);
  line-height: 1;
}

.lp-wm-split-label {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-secondary);
}

.lp-wm-split-stat {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px;
}

.lp-wm-split-val {
  font-size: 1.35rem;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
  color: var(--accent);
  line-height: 1.15;
}

.lp-wm-split-val small {
  font-size: 0.95rem;
  font-weight: 650;
}

.lp-wm-split-meta {
  font-size: 0.92rem;
  font-weight: 650;
  color: var(--text-secondary);
}

.lp-wm-targets {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 16px;
  padding: 14px 16px;
  border-radius: 12px;
  background: var(--wm-panel);
}

.lp-wm-targets span {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-secondary);
  margin-bottom: 4px;
}

.lp-wm-targets strong {
  font-size: 1.85rem;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--accent);
}

.lp-wm-metrics,
.lp-wm-notes {
  padding: 14px 16px;
  border-radius: 12px;
  background: var(--wm-panel);
}

.lp-wm-metrics-head {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-secondary);
  margin-bottom: 10px;
}

.lp-wm-metrics-head em {
  font-style: normal;
  font-weight: 500;
  color: var(--text-muted);
}

.lp-wm-notes-box {
  min-height: 64px;
  align-items: flex-start;
  color: var(--text-secondary);
  font-weight: 500;
}

.lp-wm-foot {
  display: flex;
  align-items: stretch;
  justify-content: flex-end;
  gap: 8px;
  padding: 16px 14px;
  border-top: 1px solid var(--border);
  flex: 0 0 auto;
  background: var(--bg-card);
  z-index: 2;
}

.lp-wm-cancel {
  flex: 0 0 auto;
  width: 44px;
  min-width: 44px;
  min-height: 44px;
  border-radius: 8px;
  border: 1px solid var(--border);
  position: relative;
}

.lp-wm-cancel::before,
.lp-wm-cancel::after {
  content: "";
  position: absolute;
  left: 11px;
  right: 11px;
  top: 50%;
  height: 1.5px;
  background: var(--text-secondary);
}

.lp-wm-cancel::before { transform: rotate(45deg); }
.lp-wm-cancel::after { transform: rotate(-45deg); }

.lp-wm-save {
  flex: 1 1 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 16px;
  border-radius: 8px;
  background: var(--accent);
  color: #fff;
  font-size: 0.88rem;
  font-weight: 650;
}

.lp-wm-demo-overlay {
  position: absolute;
  inset: 0;
  z-index: 6;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgb(0 0 0 / 80%);
  text-align: center;
}

.lp-wm-demo-overlay[hidden] {
  display: none !important;
}

.lp-wm-demo-overlay-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  max-width: 22rem;
}

.lp-wm-demo-overlay p {
  margin: 0;
  max-width: 22ch;
  font-size: 1.05rem;
  font-weight: 650;
  line-height: 1.35;
  color: #fff;
}

.lp-wm-demo-cta {
  pointer-events: auto;
  text-decoration: none;
  box-shadow: 0 8px 24px rgb(0 0 0 / 35%);
}

/* Steps */
.lp-steps {
  display: grid;
  gap: 16px;
  counter-reset: step;
}

@media (min-width: 768px) {
  .lp-steps {
    grid-template-columns: repeat(3, 1fr);
  }
}

.lp-step {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 20px 22px;
  counter-increment: step;
}

.lp-step::before {
  content: counter(step);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 14px;
}

.lp-step h3 {
  margin: 0 0 8px;
  font-size: 1.05rem;
}

.lp-step p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 0.92rem;
}

.lp-section-cta {
  margin-top: 28px;
  text-align: center;
}

/* Audience */
.lp-audience {
  display: grid;
  gap: 32px;
  align-items: center;
}

@media (min-width: 900px) {
  .lp-audience {
    grid-template-columns: minmax(0, 1fr) minmax(240px, 1.05fr);
    gap: 36px 28px;
    align-items: center;
  }
}

.lp-audience-copy .lp-h2 {
  margin-bottom: 18px;
}

.lp-audience-shot {
  margin: 0;
  perspective: 1400px;
  perspective-origin: 60% 40%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 12px 8px 28px;
}

.lp-audience-shot img {
  display: block;
  width: 100%;
  max-width: 560px;
  height: auto;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--bg-card);
  transform: rotateY(-22deg) rotateX(12deg) rotateZ(-7deg);
  transform-origin: center center;
  box-shadow:
    18px 28px 50px rgba(0, 0, 0, 0.48),
    4px 10px 18px rgba(0, 0, 0, 0.28);
}

@media (max-width: 899px) {
  .lp-audience-shot {
    max-width: 480px;
    margin: 0 auto;
    padding: 8px 4px 20px;
  }

  .lp-audience-shot img {
    max-width: 100%;
    transform: rotateY(-14deg) rotateX(8deg) rotateZ(-5deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .lp-audience-shot img {
    transform: none;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
  }
}

.lp-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

#for .lp-muted-box {
  max-width: none;
}

/* Android / BLE */
.lp-android {
  display: grid;
  gap: 14px;
}

@media (min-width: 768px) {
  .lp-android {
    grid-template-columns: repeat(2, 1fr);
  }
}

.lp-android-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px 20px;
}

.lp-android-card h3 {
  margin: 0 0 8px;
  font-size: 1.05rem;
}

.lp-android-card p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 0.92rem;
}

.lp-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--text-secondary);
  font-size: 0.98rem;
}

.lp-list li::before {
  content: "";
  width: 8px;
  height: 8px;
  margin-top: 0.45em;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

.lp-muted-box {
  margin-top: 20px;
  padding: 14px 16px;
  border-radius: var(--radius-lg);
  border: 1px dashed var(--border);
  color: var(--text-muted);
  font-size: 0.9rem;
  max-width: 520px;
}

/* Pricing */
.lp-pricing {
  display: grid;
  gap: 16px;
  max-width: 960px;
  margin: 0 auto;
}

@media (min-width: 700px) {
  .lp-pricing {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
}

.lp-price-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.lp-price-card.is-featured {
  border-color: color-mix(in srgb, var(--accent) 45%, var(--border));
  box-shadow: 0 0 0 1px color-mix(in srgb, var(--accent) 25%, transparent);
}

.lp-price-name {
  margin: 0;
  font-size: 1.2rem;
}

.lp-price-tag {
  margin: 0;
  min-height: 1.6em;
  font-size: 0.85rem;
  color: var(--accent);
  font-weight: 600;
  line-height: 1.35;
}

.lp-price-amount {
  margin: 0;
  font-size: 1.85rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--text);
}

.lp-price-amount small {
  font-size: 0.95rem;
  font-weight: 650;
  color: var(--text-secondary);
}

.lp-price-alt {
  margin: -4px 0 0;
  min-height: 1.6em;
  font-size: 0.88rem;
  line-height: 1.35;
  color: var(--text-secondary);
}

.lp-price-alt--empty {
  visibility: hidden;
  pointer-events: none;
  user-select: none;
}

.lp-price-desc {
  margin: 0;
  color: var(--text-secondary);
  font-size: 0.95rem;
  flex: 1;
}

.lp-price-list {
  margin: 0 auto;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 6px;
  flex: 1;
  align-content: start;
  width: 100%;
  max-width: 22rem;
  text-align: left;
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.4;
}

.lp-price-list li {
  padding-left: 1.05em;
  position: relative;
  /* Leichte Angleichung Free/Premium ohne grosse Leerraeume */
  min-height: 1.4em;
}

.lp-price-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

.lp-price-support {
  margin: 5px 0 5px;
  min-height: 1.8em;
  font-size: 0.82rem;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.4;
}

.lp-price-support--empty {
  visibility: hidden;
  pointer-events: none;
  user-select: none;
}

.lp-price-card .btn {
  width: 100%;
  margin-top: 0;
}

/* FAQ */
.lp-faq {
  max-width: 720px;
  margin: 0 auto;
  display: grid;
  gap: 10px;
}

.lp-faq details {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 4px 16px;
}

.lp-faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  cursor: pointer;
  list-style: none;
  padding: 14px 0;
  font-weight: 600;
  font-size: 0.98rem;
  line-height: 1.25;
}

.lp-faq summary::-webkit-details-marker {
  display: none;
}

.lp-faq summary::after {
  content: "+";
  flex-shrink: 0;
  color: var(--text-muted);
  font-weight: 400;
  font-size: 1.15rem;
  line-height: 1;
}

.lp-faq details[open] summary::after {
  content: "\2212";
}

.lp-faq details p {
  margin: 0 0 16px;
  color: var(--text-secondary);
  font-size: 0.95rem;
}

/* Final CTA */
.lp-final {
  text-align: center;
  padding: 72px 20px 80px;
  background:
    radial-gradient(ellipse 80% 60% at 50% 100%, color-mix(in srgb, var(--accent) 18%, transparent), transparent);
}

.lp-final h2 {
  margin: 0 0 12px;
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
}

.lp-final p {
  margin: 0 0 24px;
  color: var(--text-secondary);
}

.lp-final-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

/* Footer */
.lp-footer {
  border-top: 1px solid var(--border);
  padding: 40px var(--lp-pad-x) calc(32px + var(--safe-bottom));
  background: var(--bg);
}

.lp-footer-grid {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  gap: 28px;
}

@media (min-width: 700px) {
  .lp-footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
  }
}

.lp-footer-brand {
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 8px;
  color: var(--accent);
}

.lp-footer-brand .lp-logo-accent {
  color: var(--accent);
}

.lp-footer p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.85rem;
  max-width: 28ch;
}

.lp-footer h4 {
  margin: 0 0 12px;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
}

.lp-footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.lp-footer a {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.lp-footer a:hover {
  color: var(--text);
}

.lp-footer-legal {
  max-width: var(--max);
  margin: 28px auto 0;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  font-size: 0.8rem;
  color: var(--text-muted);
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  justify-content: space-between;
  align-items: baseline;
}

/* Legal pages */
.lp-legal {
  max-width: 1100px;
}

.lp-legal h1.lp-h2 {
  margin-bottom: 10px;
}

.lp-legal h2 {
  margin: 32px 0 10px;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.lp-legal h3 {
  margin: 20px 0 8px;
  font-size: 1rem;
  font-weight: 650;
}

.lp-legal p,
.lp-legal address {
  margin: 0 0 12px;
  color: var(--text-secondary);
  font-size: 0.98rem;
  line-height: 1.6;
  font-style: normal;
}

.lp-legal ul {
  margin: 0 0 12px;
  padding-left: 1.2em;
  color: var(--text-secondary);
  font-size: 0.98rem;
  line-height: 1.55;
}

.lp-legal li {
  margin: 4px 0;
}

.lp-legal a {
  color: var(--accent);
}

.lp-legal a:hover {
  color: var(--accent-hover);
}

.lp-legal-updated {
  margin-top: 28px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.lp-nav a[aria-current="page"] {
  color: var(--text);
}

.lp-footer-legal p {
  margin: 0;
  max-width: 60ch;
}
