/* Gemeinsames Geruest der oeffentlichen Seiten (#170): Nav/Buttons/Container + Reveal.
   Lag zuvor byte-identisch inline in pricing/faq/compare/guide - eine Quelle, browser-gecacht. */
.lp { max-width: 1120px; margin: 0 auto; padding: 0 22px; }
.lp-nav { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 16px 0; position: sticky; top: 0; z-index: 50;
    backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); background: transparent; border-bottom: 1px solid transparent;
    transition: background .25s var(--ease), border-color .25s var(--ease), box-shadow .25s var(--ease), backdrop-filter .25s var(--ease); }
.lp-nav.scrolled {
    background: linear-gradient(180deg, rgba(22, 14, 34, .52) 0%, rgba(9, 11, 18, .46) 100%);
    backdrop-filter: blur(20px) saturate(1.35); -webkit-backdrop-filter: blur(20px) saturate(1.35);
    border-bottom-color: rgba(255, 61, 182, .16);
    box-shadow: 0 6px 28px rgba(0, 0, 0, .22), inset 0 1px 0 rgba(54, 224, 255, .07);
}
.lp-brand { display: flex; align-items: center; }
.lp-nav > a .logo-mark,
.lp-brand .logo-mark { display: block; flex-shrink: 0; width: 76px !important; height: 76px !important; }
@media (max-width: 520px) {
    .lp-nav > a .logo-mark,
    .lp-brand .logo-mark { width: 68px !important; height: 68px !important; }
}
.lp-nav-links { display: flex; align-items: center; gap: 6px; }
.lp-nav-links a.txt { color: var(--muted); font-size: .82rem; padding: 8px 12px; font-family: var(--font-mono); letter-spacing: .02em; transition: color .18s var(--ease); }
.lp-nav-links a.txt:hover { color: var(--text); }
@media (max-width: 860px) { .lp-nav-links a.txt { display: none; } }
@media (max-width: 480px) { .lp-nav-links a.lp-btn--g { display: none; } .lp-nav-links a.lp-btn { padding: 8px 13px; font-size: .88rem; } }
.lp-btn { display: inline-flex; align-items: center; gap: 8px; padding: 11px 20px; border-radius: var(--radius); font-weight: 600; font-size: .92rem;
    border: 1px solid var(--border-strong); color: var(--text); white-space: nowrap;
    transition: box-shadow .2s var(--ease), background .2s var(--ease), border-color .2s var(--ease), transform .12s var(--ease); }
.lp-btn:hover { text-decoration: none; }
.lp-btn--p { background: var(--grad-primary); border: none; color: #fff; text-shadow: 0 1px 2px rgba(0,0,0,.4);
    box-shadow: 0 2px 14px rgba(255,61,182,.22), inset 0 1px 0 rgba(255,255,255,.1); overflow: hidden; }
.lp-btn--g { background: rgba(255,255,255,.018); }
@media (hover: hover) {
    .lp-btn--p:hover { box-shadow: 0 0 0 1px rgba(255,61,182,.45), 0 14px 36px rgba(255,61,182,.38), 0 0 24px rgba(54,224,255,.12); transform: translateY(-2px); }
    .lp-btn--g:hover { border-color: var(--accent); box-shadow: 0 0 0 1px rgba(54,224,255,.28); transform: translateY(-2px); }
}
.lp-btn:active { transform: translateY(0) scale(.985); }

.reveal { opacity: 1; transform: none; transition: opacity .6s var(--ease), transform .6s var(--ease); transition-delay: calc(var(--i, 0) * .06s); }
html.js-reveal .reveal { opacity: 0; transform: translateY(18px); }
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { html.js-reveal .reveal { opacity: 1 !important; transform: none !important; transition: none; } }

/* Foto-Hintergrund der oeffentlichen Unterseiten (freie Stockfotos, selbst gehostet).
   Volle Breite hinter Nav + Seitenkopf, schwerer Scrim + Neon-Glow, faded in den bg.
   Die Nav ist bis zum Scrollen transparent (.scrolled kommt per IO-Sentinel je Seite). */
.lp-photo-bg { position: absolute; left: 50%; transform: translateX(-50%); top: 0;
    width: 100vw; height: 520px; z-index: -2; overflow: hidden; pointer-events: none;
    background-size: cover; background-position: center 30%; }
.lp-photo-bg::after { content: ""; position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(7,8,9,.8) 0%, rgba(7,8,9,.62) 45%, rgba(7,8,9,.92) 84%, var(--bg) 98%),
                radial-gradient(ellipse 58% 55% at 50% 30%, rgba(255,61,182,.12), transparent 70%),
                radial-gradient(ellipse 68% 50% at 50% 24%, rgba(54,224,255,.09), transparent 72%); }
@media (max-width: 640px) { .lp-photo-bg { height: 400px; } }
