/* ==========================================================================
   EMAROX LANDING — V2 (migrated from React design)
   Scope: everything under #landing-overlay, namespace "ln-".
   Non-destructive: does NOT touch landing.css (overlay base, lightbox,
   cookie banner, gallery, scroll-top all remain owned by landing.css).
   ========================================================================== */

#landing-overlay {
    /* Override the legacy flex/padding container so V2 sections stack naturally
       and the floating nav + sticky sections behave predictably. */
    display: block !important;
    padding-top: 0 !important;
    scroll-behavior: auto; /* Lenis drives smoothness */
}

/* When the system unlocks (login success), fully hide the landing. Needs
   !important + ID specificity to beat the display:block!important above and
   any leftover inline opacity/visibility set during the logged-out state. */
#landing-overlay.hidden {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
}

/* Anti-FOUC: keep the landing hidden until landing.js has applied the stored
   language, so the English defaults never flash and swap to Polish on load. */
#landing-overlay:not(.ln-ready) { visibility: hidden; }
#landing-overlay.ln-ready { visibility: visible; }

/* Local design tokens (mirror globals.css) */
#landing-overlay {
    --ln-bg: #060b16;
    --ln-bg-2: #0a1120;
    --ln-bg-3: #0a1424;
    --ln-text: #f8fafc;
    --ln-cyan: #06b6d4;
    --ln-cyan-bright: #22d3ee;
    --ln-amber: #ff9800;
    --ln-green: #00ff94;
    --ln-red: #ff4545;
    --ln-ease-apple: cubic-bezier(0.22, 1, 0.36, 1);
    --ln-ease-soft: cubic-bezier(0.16, 1, 0.3, 1);
    font-family: 'Inter', 'Roboto', sans-serif;
    background-color: var(--ln-bg);
}

#landing-overlay * {
    box-sizing: border-box;
}

#landing-overlay .ln-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
    width: 100%;
}
@media (max-width: 768px) {
    #landing-overlay .ln-container { padding: 0 20px; }
}

#landing-overlay .ln-mono {
    font-family: 'JetBrains Mono', ui-monospace, monospace;
    font-weight: 700;
}

/* ── Aurora / atmospheric glow ── */
#landing-overlay .ln-aurora {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}
#landing-overlay .ln-aurora::before,
#landing-overlay .ln-aurora::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
}
#landing-overlay .ln-aurora::before {
    width: 60vw; height: 60vw; max-width: 800px; max-height: 800px;
    top: -10%; left: 50%; transform: translateX(-50%);
    background: radial-gradient(circle, rgba(6, 182, 212, 0.22) 0%, transparent 65%);
    animation: ln-drift1 18s ease-in-out infinite alternate;
}
#landing-overlay .ln-aurora::after {
    width: 45vw; height: 45vw; max-width: 600px; max-height: 600px;
    bottom: -5%; right: 5%;
    background: radial-gradient(circle, rgba(34, 211, 238, 0.12) 0%, transparent 65%);
    animation: ln-drift2 22s ease-in-out infinite alternate;
}
@keyframes ln-drift1 {
    0% { transform: translate(-50%, 0) scale(1); }
    100% { transform: translate(-42%, 6%) scale(1.12); }
}
@keyframes ln-drift2 {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(-8%, -6%) scale(1.18); }
}

#landing-overlay .ln-fade-seam-bottom {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 220px;
    background: linear-gradient(to top, var(--ln-bg) 0%, transparent 100%);
    pointer-events: none;
    z-index: 2;
}

/* ── Subtle radial spotlight ── */
#landing-overlay .ln-scan-bg { position: relative; }
#landing-overlay .ln-scan-bg::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(6, 182, 212, 0.07) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

/* ── Scroll reveal (driven by landing.js IntersectionObserver) ── */
#landing-overlay [data-ln-reveal] {
    opacity: 0;
    transform: translateY(40px);
}
#landing-overlay [data-ln-reveal].ln-in {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.7s var(--ln-ease-soft), transform 0.7s var(--ln-ease-soft);
}

/* ==========================================================================
   NAVBAR — floating pill
   ========================================================================== */
#landing-overlay .ln-header {
    position: fixed;
    top: 18px; left: 0; right: 0;
    z-index: 100;
    display: flex;
    justify-content: center;
    padding: 0 20px;
    pointer-events: none;
}
#landing-overlay .ln-nav-pill {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 7px 8px 7px 14px;
    border-radius: 100px;
    background: rgba(13, 20, 35, 0.6);
    backdrop-filter: blur(20px) saturate(160%);
    -webkit-backdrop-filter: blur(20px) saturate(160%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    transition: border-color 0.4s var(--ln-ease-apple), background 0.4s var(--ln-ease-apple), box-shadow 0.4s var(--ln-ease-apple);
    pointer-events: auto;
    position: relative;
    z-index: 110;
    max-width: 100%;
}
#landing-overlay .ln-nav-pill.ln-scrolled {
    background: rgba(10, 16, 28, 0.82);
    border-color: rgba(6, 182, 212, 0.18);
    box-shadow: 0 8px 48px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(6, 182, 212, 0.06), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}
#landing-overlay .ln-nav-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    cursor: pointer;
}
#landing-overlay .ln-nav-logo img {
    height: 30px; width: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 10px rgba(34, 211, 238, 0.4));
}
#landing-overlay .ln-nav-divider {
    width: 1px; height: 20px;
    background: rgba(255, 255, 255, 0.1);
}
#landing-overlay .ln-nav-links {
    display: flex;
    align-items: center;
    gap: 20px;
}
#landing-overlay .ln-nav-link {
    color: rgba(248, 250, 252, 0.72);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: color 0.2s ease;
    background: none;
    border: none;
}
#landing-overlay .ln-nav-link:hover { color: var(--ln-cyan-bright); }

#landing-overlay .ln-nav-right {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

/* Language switcher */
#landing-overlay .ln-lang { position: relative; }
#landing-overlay .ln-lang-trigger {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 100px;
    color: rgba(248, 250, 252, 0.7);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.04em;
    padding: 8px 12px;
    cursor: pointer;
    transition: all 0.25s var(--ln-ease-apple);
}
#landing-overlay .ln-lang.ln-open .ln-lang-trigger {
    background: rgba(34, 211, 238, 0.14);
    border-color: rgba(34, 211, 238, 0.4);
    color: var(--ln-cyan-bright);
}
#landing-overlay .ln-lang-trigger svg { transition: transform 0.3s var(--ln-ease-apple); }
#landing-overlay .ln-lang.ln-open .ln-lang-trigger svg { transform: rotate(180deg); }

#landing-overlay .ln-lang-menu {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    min-width: 140px;
    padding: 6px;
    border-radius: 18px;
    background: rgba(13, 20, 35, 0.72);
    backdrop-filter: blur(28px) saturate(180%);
    -webkit-backdrop-filter: blur(28px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.08);
    transform-origin: top right;
    transform: translateY(-8px) scale(0.94);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s var(--ln-ease-apple), transform 0.42s cubic-bezier(0.34, 1.56, 0.64, 1);
}
#landing-overlay .ln-lang.ln-open .ln-lang-menu {
    transform: translateY(0) scale(1);
    opacity: 1;
    pointer-events: auto;
}
#landing-overlay .ln-lang-opt {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    background: transparent;
    border: none;
    border-radius: 12px;
    color: rgba(248, 250, 252, 0.78);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.03em;
    padding: 10px 12px;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
}
#landing-overlay .ln-lang-opt:hover { background: rgba(255, 255, 255, 0.05); }
#landing-overlay .ln-lang-opt.active {
    background: rgba(34, 211, 238, 0.14);
    color: var(--ln-cyan-bright);
}
#landing-overlay .ln-lang-opt .ln-check { opacity: 0; }
#landing-overlay .ln-lang-opt.active .ln-check { opacity: 1; }

#landing-overlay .ln-login-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: var(--ln-cyan-bright);
    color: #060b16;
    font-size: 13px;
    font-weight: 700;
    padding: 11px 22px;
    border-radius: 100px;
    border: none;
    cursor: pointer;
    white-space: nowrap;
    transition: transform 0.2s var(--ln-ease-apple), box-shadow 0.2s var(--ln-ease-apple);
}
#landing-overlay .ln-login-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 24px rgba(34, 211, 238, 0.4);
}

/* Hamburger + mobile menu */
#landing-overlay .ln-hamburger {
    display: none;
    align-items: center;
    justify-content: center;
    width: 40px; height: 40px;
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #f8fafc;
    cursor: pointer;
}
#landing-overlay .ln-mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 90;
    background: rgba(6, 11, 22, 0.78);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s var(--ln-ease-apple);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 104px 28px 40px;
}
#landing-overlay .ln-mobile-menu.ln-open {
    opacity: 1;
    pointer-events: auto;
}
#landing-overlay .ln-mobile-inner {
    display: flex;
    flex-direction: column;
    gap: 8px;
    transform: translateY(16px);
    opacity: 0;
    transition: transform 0.4s var(--ln-ease-apple), opacity 0.4s var(--ln-ease-apple);
}
#landing-overlay .ln-mobile-menu.ln-open .ln-mobile-inner {
    transform: translateY(0);
    opacity: 1;
}
#landing-overlay .ln-mobile-link {
    color: #f8fafc;
    font-size: 26px;
    font-weight: 700;
    letter-spacing: -0.01em;
    text-decoration: none;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
#landing-overlay .ln-mobile-langs {
    display: flex;
    gap: 8px;
    margin: 20px 0 8px;
}
#landing-overlay .ln-mobile-langs button {
    flex: 1;
    padding: 10px 0;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(248, 250, 252, 0.7);
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
}
#landing-overlay .ln-mobile-langs button.active {
    background: rgba(34, 211, 238, 0.14);
    border-color: rgba(34, 211, 238, 0.4);
    color: var(--ln-cyan-bright);
}
#landing-overlay .ln-mobile-cta {
    margin-top: 12px;
    padding: 16px;
    border-radius: 100px;
    background: var(--ln-cyan-bright);
    color: #060b16;
    font-size: 15px;
    font-weight: 700;
    border: none;
    cursor: pointer;
}
#landing-overlay .ln-mobile-cta.ln-ghost {
    background: transparent;
    color: #f8fafc;
    border: 1.5px solid rgba(248, 250, 252, 0.25);
    margin-top: 0;
}

@media (max-width: 767px) {
    #landing-overlay .ln-nav-desktop { display: none !important; }
    #landing-overlay .ln-hamburger { display: flex !important; }
}

/* ==========================================================================
   HERO
   ========================================================================== */
#landing-overlay .ln-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
    background: radial-gradient(ellipse 90% 70% at 50% -10%, #0e2238 0%, #0a1120 45%, #060b16 100%);
    padding-top: 150px;
}
@media (max-width: 768px) {
    #landing-overlay .ln-hero { padding-top: 104px; }
}
#landing-overlay .ln-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 1000px;
}
#landing-overlay .ln-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 16px 7px 12px;
    border-radius: 100px;
    background: rgba(6, 182, 212, 0.08);
    border: 1px solid rgba(6, 182, 212, 0.2);
    margin-bottom: 32px;
}
#landing-overlay .ln-eyebrow-dot {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: var(--ln-cyan-bright);
    box-shadow: 0 0 10px var(--ln-cyan-bright);
}
#landing-overlay .ln-eyebrow span:last-child {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: rgba(248, 250, 252, 0.8);
}
#landing-overlay .ln-hero-title {
    font-size: clamp(46px, 7.5vw, 96px);
    font-weight: 800;
    line-height: 0.98;
    letter-spacing: -0.035em;
    margin-bottom: 28px;
}
#landing-overlay .ln-hero-title .ln-grad {
    background: linear-gradient(135deg, #22d3ee 0%, #06b6d4 60%, #0891b2 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
}
#landing-overlay .ln-hero-sub {
    font-size: clamp(17px, 2vw, 21px);
    color: rgba(248, 250, 252, 0.6);
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.6;
}
#landing-overlay .ln-hero-ctas {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 56px;
}
#landing-overlay .ln-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    border-radius: 100px;
    background: var(--ln-cyan-bright);
    color: #060b16;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    border: none;
    cursor: pointer;
    box-shadow: 0 8px 32px rgba(34, 211, 238, 0.3);
    transition: transform 0.2s var(--ln-ease-apple), box-shadow 0.2s var(--ln-ease-apple);
}
#landing-overlay .ln-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(34, 211, 238, 0.45);
}
#landing-overlay .ln-btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.04);
    color: #f8fafc;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.12);
    cursor: pointer;
    transition: all 0.2s var(--ln-ease-apple);
}
#landing-overlay .ln-btn-ghost:hover {
    border-color: rgba(34, 211, 238, 0.4);
    color: var(--ln-cyan-bright);
}
#landing-overlay .ln-hero-stats {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}
#landing-overlay .ln-stat {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 18px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(255, 255, 255, 0.07);
    transition: border-color 0.25s var(--ln-ease-apple), background 0.25s var(--ln-ease-apple);
}
#landing-overlay .ln-stat:hover {
    border-color: rgba(34, 211, 238, 0.3);
    background: rgba(34, 211, 238, 0.05);
}
#landing-overlay .ln-stat-icon {
    flex-shrink: 0;
    width: 38px; height: 38px;
    border-radius: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(34, 211, 238, 0.1);
    border: 1px solid rgba(34, 211, 238, 0.18);
}
#landing-overlay .ln-stat-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    text-align: left;
}
#landing-overlay .ln-stat-value {
    font-size: 15px;
    font-weight: 700;
    color: #f8fafc;
    line-height: 1.1;
    white-space: nowrap;
}
#landing-overlay .ln-stat-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: rgba(248, 250, 252, 0.45);
    white-space: nowrap;
}

/* Hero mockup */
#landing-overlay .ln-hero-mockup-wrap {
    position: relative;
    z-index: 1;
    max-width: 1120px;
    width: 100%;
    margin: 64px auto 0;
    perspective: 1600px;
    padding: 0 40px;
}
#landing-overlay .ln-hero-mockup {
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 -10px 80px rgba(6, 182, 212, 0.18), 0 40px 100px rgba(0, 0, 0, 0.7);
    transform-style: preserve-3d;
    will-change: transform;
}
#landing-overlay .ln-browser-bar {
    background: rgba(13, 20, 35, 0.95);
    padding: 11px 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
#landing-overlay .ln-dot { width: 11px; height: 11px; border-radius: 50%; }
#landing-overlay .ln-dot-r { background: #ff4545; }
#landing-overlay .ln-dot-y { background: #ff9800; }
#landing-overlay .ln-dot-g { background: #00ff94; }
#landing-overlay .ln-browser-url {
    margin-left: 14px;
    flex: 1;
    max-width: 260px;
    background: rgba(6, 11, 22, 0.8);
    border-radius: 6px;
    padding: 5px 14px;
    font-size: 11px;
    color: rgba(248, 250, 252, 0.4);
    font-family: 'JetBrains Mono', monospace;
}
#landing-overlay .ln-hero-mockup img {
    width: 100%; height: auto; display: block;
}

/* ==========================================================================
   BRAND REVEAL (scroll-driven, JS sets vars)
   ========================================================================== */
#landing-overlay .ln-brand-reveal {
    position: relative;
    height: 240vh;
    background: linear-gradient(to bottom, #060b16 0%, #0a1424 50%, #060b16 100%);
}
@media (max-width: 768px) {
    #landing-overlay .ln-brand-reveal { height: 160vh; }
}
#landing-overlay .ln-brand-sticky {
    position: sticky;
    top: 0;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
#landing-overlay .ln-brand-svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    will-change: opacity, transform;
}
#landing-overlay .ln-wordmark {
    position: relative;
    z-index: 1;
    text-align: center;
    font-size: clamp(64px, 16vw, 240px);
    font-weight: 800;
    line-height: 0.82;
    letter-spacing: -0.045em;
    background: linear-gradient(125deg, rgba(125, 235, 250, 0.95) 0%, rgba(34, 211, 238, 0.9) 40%, rgba(8, 145, 178, 0.94) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    filter: saturate(1.35) brightness(1.1) drop-shadow(0 0 50px rgba(34, 211, 238, 0.5)) drop-shadow(0 0 120px rgba(6, 182, 212, 0.28));
    opacity: 0;
    transform: scale(0.92);
    will-change: transform, opacity;
}

/* ==========================================================================
   WHY (word-by-word reveal)
   ========================================================================== */
#landing-overlay .ln-why {
    padding: 120px 0;
    background: #060b16;
    display: flex;
    justify-content: center;
}
@media (max-width: 768px) {
    #landing-overlay .ln-why { padding: 72px 0; }
}
#landing-overlay .ln-why .ln-container { max-width: 900px; text-align: center; }
#landing-overlay .ln-section-eyebrow {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: var(--ln-cyan-bright);
    text-transform: uppercase;
    margin-bottom: 28px;
}
#landing-overlay .ln-why-text {
    font-size: clamp(26px, 4vw, 46px);
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: -0.02em;
}
#landing-overlay .ln-why-text .ln-word {
    color: rgba(248, 250, 252, 0.22);
    transition: color 0.4s ease;
}
#landing-overlay .ln-why-text .ln-word.ln-lit { color: #f8fafc; }
#landing-overlay .ln-why-text .ln-cyan { color: var(--ln-cyan-bright); }

/* ==========================================================================
   FEATURES (zig-zag)
   ========================================================================== */
#landing-overlay .ln-features {
    padding: 100px 0 24px;
    background: #060b16;
    position: relative;
}
@media (max-width: 768px) {
    #landing-overlay .ln-features { padding: 64px 0 16px; }
}
#landing-overlay .ln-features-header {
    text-align: center;
    margin-bottom: 90px;
}
@media (max-width: 768px) {
    #landing-overlay .ln-features-header { margin-bottom: 48px; }
}
#landing-overlay .ln-features-header h2 {
    font-size: clamp(24px, 3vw, 34px);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.01em;
    color: rgba(248, 250, 252, 0.85);
    margin: 16px 0 0;
}
#landing-overlay .ln-feature-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    margin-bottom: 96px;
}
#landing-overlay .ln-feature-row.ln-rev .ln-feature-text { order: 2; }
#landing-overlay .ln-feature-row.ln-rev .ln-feature-media { order: 1; }
#landing-overlay .ln-feature-index {
    font-family: 'JetBrains Mono', ui-monospace, monospace;
    font-weight: 700;
    font-size: 13px;
    color: var(--ln-cyan);
    letter-spacing: 0.1em;
    margin-bottom: 20px;
}
#landing-overlay .ln-feature-text h3 {
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.02em;
    margin: 0 0 24px;
}
#landing-overlay .ln-feature-text h3 .ln-hl { color: var(--ln-cyan); }
#landing-overlay .ln-feature-bullets {
    list-style: none;
    padding: 0; margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
#landing-overlay .ln-feature-bullets li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 15px;
    color: rgba(248, 250, 252, 0.8);
    line-height: 1.5;
}
#landing-overlay .ln-feature-bullets li::before {
    content: "";
    flex-shrink: 0;
    margin-top: 9px;
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--ln-cyan-bright);
}
#landing-overlay .ln-feature-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: rgba(30, 41, 59, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
#landing-overlay .ln-feature-card:hover {
    transform: translateY(-4px);
    border-color: rgba(6, 182, 212, 0.3);
    box-shadow: 0 8px 32px rgba(6, 182, 212, 0.12);
}
#landing-overlay .ln-feature-card img {
    width: 100%; height: auto; display: block; border-radius: 16px;
}
#landing-overlay .ln-feature-card::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 16px;
    box-shadow: inset 0 0 0 1px rgba(6, 182, 212, 0.15);
    pointer-events: none;
}
@media (max-width: 860px) {
    #landing-overlay .ln-feature-row {
        grid-template-columns: 1fr !important;
        gap: 28px;
        margin-bottom: 64px;
    }
    #landing-overlay .ln-feature-row .ln-feature-text { order: 1 !important; }
    #landing-overlay .ln-feature-row .ln-feature-media { order: 2 !important; }
}

/* ==========================================================================
   STEPS
   ========================================================================== */
#landing-overlay .ln-steps {
    padding: 60px 0 100px;
    background: #060b16;
}
#landing-overlay .ln-steps-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 80px;
    align-items: start;
}
#landing-overlay .ln-steps-head {
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.03em;
    margin: 0 0 32px;
}
#landing-overlay .ln-steps-head .ln-dim { color: rgba(248, 250, 252, 0.35); }
#landing-overlay .ln-steps-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    cursor: pointer;
    text-decoration: none;
    background: var(--ln-cyan);
    color: var(--ln-bg);
    border: none;
    transition: all 0.25s ease;
}
#landing-overlay .ln-steps-cta:hover {
    box-shadow: 0 0 24px rgba(6, 182, 212, 0.5);
    transform: translateY(-1px);
}
#landing-overlay .ln-steps-eyebrow {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: rgba(248, 250, 252, 0.4);
    text-transform: uppercase;
    margin-bottom: 8px;
}
#landing-overlay .ln-step {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 24px;
    padding: 28px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    align-items: start;
}
#landing-overlay .ln-step-num {
    font-family: 'JetBrains Mono', ui-monospace, monospace;
    font-weight: 700;
    font-size: 13px;
    color: var(--ln-cyan);
    padding-top: 4px;
}
#landing-overlay .ln-step h4 {
    font-size: clamp(20px, 2.5vw, 28px);
    font-weight: 700;
    margin: 0 0 8px;
    display: inline;
}
#landing-overlay .ln-step span.ln-step-desc {
    font-size: clamp(16px, 2vw, 20px);
    color: rgba(248, 250, 252, 0.5);
    line-height: 1.5;
}
@media (max-width: 860px) {
    #landing-overlay .ln-steps-grid {
        grid-template-columns: 1fr !important;
        gap: 48px;
    }
}

/* ==========================================================================
   MODES
   ========================================================================== */
#landing-overlay .ln-modes {
    padding: 100px 0;
    background: #0a1120;
    position: relative;
}
#landing-overlay .ln-modes-header {
    margin-bottom: 40px;
    max-width: 700px;
    position: relative;
    z-index: 1;
}
#landing-overlay .ln-modes-header h2 {
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.02em;
    margin: 0;
}
#landing-overlay .ln-modes-header h2 .ln-dim { color: rgba(248, 250, 252, 0.35); }
#landing-overlay .ln-mode-row {
    display: grid;
    grid-template-columns: 40px 1fr 1fr;
    gap: 40px;
    align-items: center;
    padding: 48px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 1;
}
#landing-overlay .ln-mode-num {
    width: 36px; height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'JetBrains Mono', ui-monospace, monospace;
    font-size: 13px;
    font-weight: 700;
}
#landing-overlay .ln-mode-desc {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(248, 250, 252, 0.65);
    max-width: 360px;
    margin: 0;
}
#landing-overlay .ln-mode-word {
    font-size: clamp(56px, 9vw, 120px);
    font-weight: 800;
    line-height: 0.9;
    letter-spacing: -0.03em;
    text-align: right;
}
#landing-overlay .ln-mode-end { border-top: 1px solid rgba(255, 255, 255, 0.1); position: relative; z-index: 1; }
@media (max-width: 768px) {
    #landing-overlay .ln-mode-row {
        grid-template-columns: 32px 1fr !important;
        gap: 20px;
    }
    #landing-overlay .ln-mode-word {
        grid-column: 1 / -1;
        text-align: left !important;
    }
}

/* ==========================================================================
   PRICING TEASER (links to existing modal)
   ========================================================================== */
#landing-overlay .ln-pricing-teaser {
    padding: 40px 0 100px;
    background: #0a1120;
    text-align: center;
}

/* ==========================================================================
   FAQ
   ========================================================================== */
#landing-overlay .ln-faq {
    padding: 100px 0;
    background: #060b16;
}
#landing-overlay .ln-faq-grid {
    display: grid;
    grid-template-columns: 1fr 1.8fr;
    gap: 64px;
    align-items: start;
}
#landing-overlay .ln-faq-head {
    position: sticky;
    top: 120px;
}
#landing-overlay .ln-faq-head h2 {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.02em;
    margin: 0 0 24px;
}
#landing-overlay .ln-faq-head h2 .ln-dim { color: rgba(248, 250, 252, 0.35); }
#landing-overlay .ln-faq-contact {
    font-size: 15px;
    color: rgba(248, 250, 252, 0.5);
    line-height: 1.6;
}
#landing-overlay .ln-faq-contact a { color: var(--ln-cyan-bright); text-decoration: none; }
#landing-overlay .ln-faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
#landing-overlay .ln-faq-item {
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.02);
    overflow: hidden;
    transition: border-color 0.3s var(--ln-ease-apple), background 0.3s var(--ln-ease-apple);
}
#landing-overlay .ln-faq-item.ln-open {
    border-color: rgba(34, 211, 238, 0.3);
    background: rgba(34, 211, 238, 0.04);
}
#landing-overlay .ln-faq-q {
    width: 100%;
    background: none;
    border: none;
    padding: 24px 26px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    cursor: pointer;
    text-align: left;
    color: #f8fafc;
}
#landing-overlay .ln-faq-q span:first-child {
    font-size: clamp(16px, 1.9vw, 19px);
    font-weight: 600;
    line-height: 1.35;
}
#landing-overlay .ln-faq-icon {
    flex-shrink: 0;
    position: relative;
    width: 32px; height: 32px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s var(--ln-ease-apple);
}
#landing-overlay .ln-faq-item.ln-open .ln-faq-icon {
    border-color: rgba(34, 211, 238, 0.6);
    background: rgba(34, 211, 238, 0.12);
    transform: rotate(135deg);
}
#landing-overlay .ln-faq-icon::before,
#landing-overlay .ln-faq-icon::after {
    content: "";
    position: absolute;
    border-radius: 2px;
    background: rgba(248, 250, 252, 0.65);
    transition: background 0.4s var(--ln-ease-apple);
}
#landing-overlay .ln-faq-icon::before { width: 12px; height: 2px; }
#landing-overlay .ln-faq-icon::after { width: 2px; height: 12px; }
#landing-overlay .ln-faq-item.ln-open .ln-faq-icon::before,
#landing-overlay .ln-faq-item.ln-open .ln-faq-icon::after { background: var(--ln-cyan-bright); }
#landing-overlay .ln-faq-a {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.4s var(--ln-ease-apple);
}
#landing-overlay .ln-faq-item.ln-open .ln-faq-a { grid-template-rows: 1fr; }
#landing-overlay .ln-faq-a-inner { overflow: hidden; }
#landing-overlay .ln-faq-a p {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(248, 250, 252, 0.6);
    padding: 0 26px 26px;
    margin: 0;
    max-width: 760px;
}
@media (max-width: 860px) {
    #landing-overlay .ln-faq-grid {
        grid-template-columns: 1fr !important;
        gap: 40px;
    }
    #landing-overlay .ln-faq-head { position: static !important; }
}

/* ==========================================================================
   CTA
   ========================================================================== */
#landing-overlay .ln-cta {
    padding: 80px 0 100px;
    background: #060b16;
}
#landing-overlay .ln-cta-box {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    padding: clamp(48px, 8vw, 96px) clamp(32px, 6vw, 80px);
    background: linear-gradient(135deg, #06b6d4 0%, #0891b2 60%, #0e7490 100%);
    text-align: center;
}
#landing-overlay .ln-cta-grid-overlay {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(15, 23, 42, 0.06) 1px, transparent 1px), linear-gradient(90deg, rgba(15, 23, 42, 0.06) 1px, transparent 1px);
    background-size: 48px 48px;
}
#landing-overlay .ln-cta-inner { position: relative; z-index: 1; }
#landing-overlay .ln-cta-inner h2 {
    font-size: clamp(32px, 5vw, 60px);
    font-weight: 800;
    line-height: 1.02;
    letter-spacing: -0.03em;
    color: #0f172a;
    margin: 0 0 20px;
}
#landing-overlay .ln-cta-inner p {
    font-size: clamp(16px, 2vw, 20px);
    color: rgba(15, 23, 42, 0.7);
    max-width: 520px;
    margin: 0 auto 40px;
    line-height: 1.5;
}
#landing-overlay .ln-cta-btns {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}
#landing-overlay .ln-cta-dark {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 36px;
    border-radius: 100px;
    background: #0f172a;
    color: #f8fafc;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
#landing-overlay .ln-cta-dark:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.4);
}
#landing-overlay .ln-cta-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 36px;
    border-radius: 100px;
    background: transparent;
    color: #0f172a;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-decoration: none;
    border: 1.5px solid rgba(15, 23, 42, 0.4);
    cursor: pointer;
    transition: all 0.2s ease;
}
#landing-overlay .ln-cta-outline:hover { background: rgba(15, 23, 42, 0.08); }

/* ==========================================================================
   FOOTER
   ========================================================================== */
#landing-overlay .ln-footer {
    background: #0a1120;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}
#landing-overlay .ln-footer-wordmark-wrap {
    overflow: hidden;
    text-align: center;
    padding-top: 72px;
    -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.9) 0%, transparent 92%);
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.9) 0%, transparent 92%);
}
#landing-overlay .ln-footer-wordmark {
    font-size: clamp(72px, 18vw, 240px);
    font-weight: 800;
    line-height: 0.82;
    letter-spacing: -0.045em;
    background: linear-gradient(180deg, rgba(34, 211, 238, 0.18) 0%, rgba(6, 182, 212, 0.05) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    user-select: none;
}
#landing-overlay .ln-footer-main {
    padding-top: 60px;
    padding-bottom: 40px;
}
#landing-overlay .ln-footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 64px;
}
#landing-overlay .ln-footer-brand img {
    height: 38px; width: auto;
    object-fit: contain;
    margin-bottom: 20px;
}
#landing-overlay .ln-footer-brand p {
    font-size: 14px;
    color: rgba(248, 250, 252, 0.5);
    line-height: 1.6;
    max-width: 300px;
    margin: 0;
}
#landing-overlay .ln-footer-col h4 {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: rgba(248, 250, 252, 0.4);
    margin: 0 0 20px;
}
#landing-overlay .ln-footer-col ul {
    list-style: none;
    padding: 0; margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
#landing-overlay .ln-footer-col a {
    font-size: 14px;
    color: rgba(248, 250, 252, 0.7);
    text-decoration: none;
    transition: color 0.2s ease;
    cursor: pointer;
}
#landing-overlay .ln-footer-col a:hover { color: var(--ln-cyan); }
#landing-overlay .ln-footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}
#landing-overlay .ln-footer-bottom p {
    font-size: 13px;
    color: rgba(248, 250, 252, 0.4);
    margin: 0;
}
#landing-overlay .ln-footer-bottom .ln-footer-links { display: flex; gap: 24px; }
#landing-overlay .ln-footer-bottom .ln-footer-links a {
    font-size: 13px;
    color: rgba(248, 250, 252, 0.4);
    text-decoration: none;
}
#landing-overlay .ln-footer-bottom .ln-footer-links span { font-size: 13px; color: var(--ln-cyan); }
@media (max-width: 768px) {
    #landing-overlay .ln-footer-grid {
        grid-template-columns: 1fr 1fr !important;
        gap: 32px;
    }
}

/* ==========================================================================
   ON-PAGE PRICING SECTION (React design; wired to existing selectPlan flow)
   ========================================================================== */
#landing-overlay .ln-pricing {
    padding: 100px 0;
    background: #0a1120;
    position: relative;
}
#landing-overlay .ln-pricing-header { text-align: center; margin-bottom: 40px; position: relative; z-index: 1; }
#landing-overlay .ln-pricing-header h2 {
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.02em;
    margin: 0 0 16px;
}
#landing-overlay .ln-pricing-header h2 .ln-cyan { color: var(--ln-cyan-bright); }
#landing-overlay .ln-pricing-sub { font-size: 15px; color: rgba(248, 250, 252, 0.55); margin: 0 0 28px; }
#landing-overlay .ln-toggle-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 100px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 14px;
}
#landing-overlay .ln-toggle-pill.ln-currency { margin-bottom: 0; padding: 5px; }
#landing-overlay .ln-toggle-btn {
    padding: 8px 20px;
    border-radius: 100px;
    border: none;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    background: transparent;
    color: rgba(248, 250, 252, 0.6);
    transition: all 0.25s var(--ln-ease-apple);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
#landing-overlay .ln-currency .ln-toggle-btn { padding: 6px 18px; font-size: 12px; }
#landing-overlay .ln-toggle-btn.ln-on { background: var(--ln-cyan-bright); color: #060b16; }
#landing-overlay .ln-toggle-badge {
    font-size: 10px;
    background: rgba(0, 255, 148, 0.15);
    color: var(--ln-green);
    padding: 2px 8px;
    border-radius: 100px;
}
#landing-overlay .ln-toggle-btn.ln-on .ln-toggle-badge { background: rgba(6, 11, 22, 0.2); color: #060b16; }

#landing-overlay .ln-pricing-panel {
    position: relative;
    max-width: 1040px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 32px;
    padding: 40px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
    z-index: 1;
}
#landing-overlay .ln-pricing-panel::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--ln-cyan-bright), transparent);
}
#landing-overlay .ln-pr-label {
    font-size: 11px; font-weight: 700; letter-spacing: 0.16em;
    color: rgba(248, 250, 252, 0.45); margin-bottom: 6px;
}
#landing-overlay .ln-pr-plan { font-size: 22px; font-weight: 800; color: var(--ln-cyan-bright); margin-bottom: 20px; }
#landing-overlay .ln-pr-rate-row { display: flex; align-items: baseline; gap: 8px; margin-bottom: 2px; }
#landing-overlay .ln-pr-rate { font-size: 52px; font-weight: 700; color: #f8fafc; line-height: 1; font-family: 'JetBrains Mono', ui-monospace, monospace; }
#landing-overlay .ln-pr-rate-period { font-size: 14px; color: rgba(248, 250, 252, 0.5); }
#landing-overlay .ln-pr-billed { font-size: 12px; color: rgba(248, 250, 252, 0.4); margin-bottom: 28px; }
#landing-overlay .ln-pr-seats-head { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 14px; }
#landing-overlay .ln-pr-seats-label { font-size: 13px; color: rgba(248, 250, 252, 0.6); letter-spacing: 0.04em; }
#landing-overlay .ln-pr-seats-val { font-size: 26px; font-weight: 700; color: var(--ln-cyan-bright); line-height: 1; font-family: 'JetBrains Mono', ui-monospace, monospace; }
#landing-overlay .ln-pr-slider {
    -webkit-appearance: none; appearance: none;
    width: 100%; height: 8px; border-radius: 100px; outline: none; cursor: pointer;
    background: linear-gradient(to right, var(--ln-cyan-bright) 0%, var(--ln-cyan-bright) var(--pct, 0%), rgba(255,255,255,0.1) var(--pct, 0%), rgba(255,255,255,0.1) 100%);
    touch-action: none;
}
#landing-overlay .ln-pr-slider::-webkit-slider-thumb {
    -webkit-appearance: none; appearance: none;
    width: 26px; height: 26px; border-radius: 50%;
    background: #fff; border: 4px solid var(--ln-cyan-bright);
    box-shadow: 0 0 0 6px rgba(34, 211, 238, 0.15), 0 4px 14px rgba(0, 0, 0, 0.4);
    cursor: grab;
}
#landing-overlay .ln-pr-slider::-moz-range-thumb {
    width: 26px; height: 26px; border-radius: 50%;
    background: #fff; border: 4px solid var(--ln-cyan-bright);
    box-shadow: 0 0 0 6px rgba(34, 211, 238, 0.15), 0 4px 14px rgba(0, 0, 0, 0.4);
    cursor: grab;
}
#landing-overlay .ln-pr-slider-ends { display: flex; justify-content: space-between; margin-top: 8px; font-size: 12px; color: rgba(248, 250, 252, 0.4); }
#landing-overlay .ln-pr-total {
    display: flex; align-items: center; justify-content: space-between; gap: 16px;
    margin-top: 24px; padding: 18px 20px; border-radius: 14px;
    background: rgba(255, 255, 255, 0.03); border: 1px solid rgba(255, 255, 255, 0.08);
}
#landing-overlay .ln-pr-total-label { font-size: 13px; font-weight: 700; color: #f8fafc; margin-bottom: 2px; }
#landing-overlay .ln-pr-total-breakdown { font-size: 12px; color: rgba(248, 250, 252, 0.45); }
#landing-overlay .ln-pr-total-right { text-align: right; }
#landing-overlay .ln-pr-total-amt-row { display: flex; align-items: baseline; gap: 6px; justify-content: flex-end; }
#landing-overlay .ln-pr-total-amt { font-size: 30px; font-weight: 700; color: var(--ln-cyan-bright); line-height: 1; font-family: 'JetBrains Mono', ui-monospace, monospace; }
#landing-overlay .ln-pr-total-amt-period { font-size: 13px; color: rgba(248, 250, 252, 0.5); }
#landing-overlay .ln-pr-annual-sub { font-size: 12px; color: rgba(248, 250, 252, 0.45); margin-top: 4px; }
#landing-overlay .ln-pr-checkout {
    display: flex; align-items: center; justify-content: center; gap: 8px;
    margin-top: 32px; padding: 16px; border-radius: 100px;
    font-size: 14px; font-weight: 700; letter-spacing: 0.04em;
    border: none; cursor: pointer; background: var(--ln-cyan-bright); color: #060b16;
    transition: all 0.25s var(--ln-ease-apple); width: 100%;
}
#landing-overlay .ln-pr-checkout:hover { box-shadow: 0 8px 28px rgba(34, 211, 238, 0.35); transform: translateY(-1px); }
#landing-overlay .ln-pr-trial-btn {
    display: flex; align-items: center; justify-content: center; gap: 8px;
    margin-top: 10px; padding: 14px; border-radius: 100px;
    font-size: 13px; font-weight: 700; letter-spacing: 0.04em;
    cursor: pointer; background: transparent; color: var(--ln-cyan-bright);
    border: 1px solid rgba(34, 211, 238, 0.4);
    transition: all 0.25s var(--ln-ease-apple); width: 100%;
}
#landing-overlay .ln-pr-trial-btn:hover { background: rgba(34, 211, 238, 0.1); border-color: var(--ln-cyan-bright); transform: translateY(-1px); }
#landing-overlay .ln-pr-note { text-align: center; margin-top: 12px; font-size: 12px; color: rgba(248, 250, 252, 0.4); }
#landing-overlay .ln-pr-guarantee { text-align: center; margin-top: 6px; font-size: 12px; color: var(--ln-green); display: flex; align-items: center; justify-content: center; gap: 6px; }
#landing-overlay .ln-pr-right { display: flex; flex-direction: column; gap: 20px; }
#landing-overlay .ln-pr-cmp { padding: 20px; border-radius: 16px; background: rgba(255, 255, 255, 0.02); border: 1px solid rgba(255, 255, 255, 0.07); }
#landing-overlay .ln-pr-cmp-title { font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(248, 250, 252, 0.45); margin-bottom: 14px; }
#landing-overlay .ln-pr-cmp-row {
    display: flex; align-items: center; justify-content: space-between; gap: 12px;
    padding: 10px 12px; border-radius: 10px; border-left: 3px solid transparent;
    opacity: 0.55; transition: all 0.25s var(--ln-ease-apple); margin-bottom: 6px;
}
#landing-overlay .ln-pr-cmp-row.ln-on { border-left-color: var(--ln-cyan-bright); background: rgba(34, 211, 238, 0.12); opacity: 1; }
#landing-overlay .ln-pr-cmp-name { font-size: 12px; font-weight: 700; color: #f8fafc; white-space: nowrap; }
#landing-overlay .ln-pr-cmp-row.ln-on .ln-pr-cmp-name { color: var(--ln-cyan-bright); }
#landing-overlay .ln-pr-cmp-seats { font-size: 11px; color: rgba(248, 250, 252, 0.45); }
#landing-overlay .ln-pr-cmp-price { font-size: 14px; font-weight: 700; color: rgba(248, 250, 252, 0.7); white-space: nowrap; font-family: 'JetBrains Mono', ui-monospace, monospace; }
#landing-overlay .ln-pr-cmp-row.ln-on .ln-pr-cmp-price { color: var(--ln-cyan-bright); }
#landing-overlay .ln-pr-roi {
    padding: 22px; border-radius: 16px; background: rgba(34, 211, 238, 0.06);
    border: 1px solid rgba(34, 211, 238, 0.2); text-align: center; flex: 1;
    display: flex; flex-direction: column; justify-content: center;
}
#landing-overlay .ln-pr-roi-title { font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(248, 250, 252, 0.45); margin-bottom: 10px; }
#landing-overlay .ln-pr-roi-val { font-size: 44px; font-weight: 700; color: var(--ln-cyan-bright); line-height: 1; font-family: 'JetBrains Mono', ui-monospace, monospace; }
#landing-overlay .ln-pr-roi-unit { font-size: 13px; color: rgba(248, 250, 252, 0.6); margin: 6px 0 12px; }
#landing-overlay .ln-pr-roi-caption { font-size: 12px; color: rgba(248, 250, 252, 0.45); line-height: 1.5; }
#landing-overlay .ln-pr-trial { text-align: center; margin-top: 28px; font-size: 14px; color: rgba(248, 250, 252, 0.45); }
@media (max-width: 900px) {
    #landing-overlay .ln-pricing-panel { grid-template-columns: 1fr !important; max-width: 480px; }
}

/* ==========================================================================
   AUTH MODAL restyle (React .am-* look) — scoped to #auth-modal, keeps logic
   ========================================================================== */
#auth-modal.modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 10001;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: rgba(6, 11, 22, 0.6);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    overflow-y: auto;
}
#auth-modal.modal-overlay.active { display: flex; }
#auth-modal .auth-card-container {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
    width: auto !important;
    overflow: visible !important;
    /* Parent must not flex-shrink the 3D container below its set height. */
    display: block !important;
    height: auto !important;
    max-height: none !important;
}
#auth-modal .close-btn {
    width: 30px; height: 30px;
    display: inline-flex; align-items: center; justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    color: rgba(248, 250, 252, 0.6);
    font-size: 18px; line-height: 1; cursor: pointer;
    right: 18px !important; top: 18px !important;
}
#auth-modal #auth-modal-content.auth-3d-container {
    perspective: 2200px;
    width: min(400px, 92vw);
    height: 468px !important;
    flex-shrink: 0 !important;
    margin: auto;
    position: relative;
    transition: height 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}
#auth-modal #auth-modal-content.auth-3d-container.mode-register { height: 660px !important; }
#auth-modal .auth-card-wrapper { width: 100% !important; }
#auth-modal .auth-card-wrapper {
    width: 100%; height: 100%;
    position: absolute; inset: 0;
    transform-style: preserve-3d;
    transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}
#auth-modal .auth-card-wrapper.flipped { transform: rotateY(180deg); }
#auth-modal .auth-card-face {
    position: absolute; inset: 0; width: 100%; height: 100%;
    -webkit-backface-visibility: hidden; backface-visibility: hidden;
    background: rgba(20, 26, 36, 0.92);
    -webkit-backdrop-filter: blur(40px) saturate(150%);
    backdrop-filter: blur(40px) saturate(150%);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 28px;
    padding: 28px 32px;
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.06);
    display: flex; flex-direction: column; justify-content: center;
    text-align: left;
    overflow: hidden;
}
#auth-modal .auth-card-face.card-back { transform: rotateY(180deg); }
#auth-modal .auth-header-visual { margin-bottom: 26px; display: flex; flex-direction: column; align-items: flex-start; gap: 4px; }
#auth-modal .auth-header-visual h3 { margin: 0; font-size: 24px; font-weight: 600; letter-spacing: -0.02em; color: #fff; text-transform: none !important; }
#auth-modal .auth-header-visual .auth-sub { margin: 0; font-size: 14px; font-weight: 400; color: rgba(248, 250, 252, 0.5); letter-spacing: -0.01em; text-transform: none; }
#auth-modal .control-group { margin-bottom: 14px; }
#auth-modal .label-title {
    display: block; font-size: 12px; font-weight: 500;
    color: rgba(248, 250, 252, 0.55); margin-bottom: 7px; letter-spacing: -0.01em;
    text-transform: none;
}
#auth-modal .auth-input, #auth-modal .glass-input {
    width: 100%; font-family: inherit;
    background: rgba(255, 255, 255, 0.04) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 14px !important; padding: 13px 15px !important;
    font-size: 15px !important; font-weight: 400 !important; color: #fff !important; outline: none;
    transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease !important;
}
#auth-modal .auth-input:focus, #auth-modal .glass-input:focus {
    background: rgba(255, 255, 255, 0.06) !important;
    border-color: rgba(34, 211, 238, 0.6) !important;
    box-shadow: 0 0 0 3px rgba(34, 211, 238, 0.13) !important;
    transform: none !important;
}
#auth-modal .input-wrapper { position: relative; }
#auth-modal .input-wrapper .auth-input { padding-right: 42px; }
#auth-modal .eye-toggle {
    position: absolute; right: 14px; top: 50%; transform: translateY(-50%);
    color: rgba(248, 250, 252, 0.45); cursor: pointer; transition: color 0.2s ease;
}
#auth-modal .eye-toggle:hover { color: var(--ln-cyan-bright, #22d3ee); }
#auth-modal .forgot-link-container { text-align: right; margin-top: 8px; }
#auth-modal .forgot-link { font-size: 13px; color: rgba(248, 250, 252, 0.55); cursor: pointer; }
#auth-modal .forgot-link:hover { color: var(--ln-cyan-bright, #22d3ee); }
#auth-modal .fx-btn.primary-btn.full-width {
    width: 100%; font-family: inherit; margin-top: 14px !important;
    padding: 14px !important; border-radius: 14px !important;
    background: var(--ln-cyan-bright, #22d3ee) !important; border: none !important; color: #060b16 !important;
    font-weight: 600 !important; font-size: 15px !important; letter-spacing: -0.01em !important;
    text-transform: none !important; box-shadow: none !important; cursor: pointer;
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease !important;
}
#auth-modal .fx-btn.primary-btn.full-width:hover { background: #4fdef0 !important; color: #060b16 !important; transform: translateY(-1px); box-shadow: 0 10px 28px rgba(34, 211, 238, 0.32) !important; }
#auth-modal .fx-btn.primary-btn.full-width i { color: #060b16 !important; }
#auth-modal .auth-switch-trigger {
    margin-top: 18px; text-align: center; font-size: 14px;
    color: var(--ln-cyan-bright, #22d3ee); font-weight: 600; cursor: pointer;
}
#auth-modal .auth-switch-trigger:hover { text-decoration: underline; }

/* ==========================================================================
   COOKIE BANNER restyle (React floating pill) — keeps #cookie-banner logic
   ========================================================================== */
/* Visual-only restyle — show/hide (bottom/visibility/opacity via .active/.hidden)
   stays owned by landing.css so the banner reliably appears on entry. */
#cookie-banner.cookie-banner {
    width: calc(100% - 32px); max-width: 640px;
    padding: 18px 22px; border-radius: 16px;
    background: rgba(10, 17, 32, 0.9);
    -webkit-backdrop-filter: blur(16px); backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5);
    z-index: 20001;
}
/* Deterministic show state (beats the duplicate .cookie-banner rules in style.css
   + landing.css). Excludes .hidden so dismissing still works. */
#cookie-banner.cookie-banner.active:not(.hidden) {
    bottom: 30px !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transform: translateX(-50%) !important;
}
#cookie-banner .cookie-content { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; justify-content: space-between; }
#cookie-banner .cookie-icon { color: var(--ln-cyan-bright, #22d3ee); font-size: 18px; flex-shrink: 0; }
#cookie-banner .cookie-text { flex: 1 1 260px; }
#cookie-banner .cookie-text p { margin: 0; font-size: 13px; line-height: 1.5; color: rgba(248, 250, 252, 0.7); }
#cookie-banner .cookie-text a { color: var(--ln-cyan-bright, #22d3ee); text-decoration: underline; }
#cookie-banner .cookie-actions { display: flex; gap: 10px; flex-shrink: 0; }
#cookie-banner .cookie-btn { padding: 10px 22px; border-radius: 100px; border: none; font-size: 13px; font-weight: 700; cursor: pointer; transition: all 0.2s ease; }
#cookie-banner .cookie-btn.secondary { background: rgba(255, 255, 255, 0.05); color: rgba(248, 250, 252, 0.7); border: 1px solid rgba(255, 255, 255, 0.12); }
#cookie-banner .cookie-btn.primary { background: var(--ln-cyan-bright, #22d3ee); color: #060b16; }

/* ==========================================================================
   TOS OVERLAY restyle (React TermsModal look) — keeps #tos-overlay logic
   ========================================================================== */
#tos-overlay.tos-overlay {
    position: fixed; inset: 0; z-index: 10010;
    /* NO display here — the head <style>.tos-overlay{display:none} keeps it hidden
       until the app shows it via inline style.display='flex'. Avoids reload flash. */
    align-items: center; justify-content: center; padding: 20px;
    background: rgba(3, 7, 15, 0.7);
    -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
}
#tos-overlay.tos-overlay.hidden { display: none !important; }
#tos-overlay .tos-modal {
    width: 100%; max-width: 560px; max-height: 88vh;
    display: flex; flex-direction: column;
    padding: 0 !important; gap: 0 !important;   /* sections own their spacing (React) */
    border-radius: 20px; background: #0a1120;
    border: 1px solid rgba(34, 211, 238, 0.18);
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.6);
    overflow: hidden;
}
#tos-overlay .tos-header {
    padding: 22px 26px; border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    display: flex; align-items: center; justify-content: space-between; gap: 12px;
}
#tos-overlay .tos-header-title { font-size: 17px; font-weight: 700; color: #f8fafc; }
#tos-overlay .tos-close-btn {
    flex-shrink: 0; width: 32px; height: 32px; border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.12); background: rgba(255, 255, 255, 0.04);
    color: rgba(248, 250, 252, 0.6); font-size: 16px; line-height: 1;
    cursor: pointer; display: inline-flex; align-items: center; justify-content: center;
    transition: background 0.2s ease;
}
#tos-overlay .tos-close-btn:hover { background: rgba(255, 255, 255, 0.08); }
#tos-overlay .tos-content-wrapper { padding: 22px 26px; overflow-y: auto; }
#tos-overlay .tos-content-box p { margin: 0 0 14px; font-size: 14px; line-height: 1.6; color: rgba(248, 250, 252, 0.75); }
#tos-overlay .tos-content-box strong { color: var(--ln-cyan-bright, #22d3ee); font-size: 12px; letter-spacing: 0.08em; }
#tos-overlay .tos-content-box ul { margin: 0 0 18px; padding-left: 0; list-style: none; display: flex; flex-direction: column; gap: 10px; }
#tos-overlay .tos-content-box ul li { display: flex; gap: 10px; font-size: 13px; line-height: 1.5; color: rgba(248, 250, 252, 0.7); }
#tos-overlay .tos-content-box ul li::before { content: ""; flex-shrink: 0; margin-top: 8px; width: 5px; height: 5px; border-radius: 50%; background: var(--ln-cyan-bright, #22d3ee); }
#tos-overlay .tos-links { display: flex; flex-wrap: wrap; gap: 8px 18px; margin-bottom: 20px; }
#tos-overlay .tos-links a { color: var(--ln-cyan-bright, #22d3ee); font-size: 13px; text-decoration: none; font-weight: 600; }
#tos-overlay .tos-compliance { display: flex; flex-direction: column; gap: 10px; }
#tos-overlay .tos-checkbox-label {
    display: flex; align-items: flex-start; gap: 12px;
    padding: 12px 14px; border-radius: 12px;
    background: rgba(255, 255, 255, 0.02); border: 1px solid rgba(255, 255, 255, 0.08);
    cursor: pointer; transition: all 0.2s ease;
}
#tos-overlay .tos-checkbox-label:has(input:checked) { background: rgba(34, 211, 238, 0.07); border-color: rgba(34, 211, 238, 0.3); }
#tos-overlay .tos-checkbox-label input { margin-top: 2px; width: 16px; height: 16px; accent-color: var(--ln-cyan-bright, #22d3ee); flex-shrink: 0; cursor: pointer; }
#tos-overlay .tos-checkbox-label span { font-size: 13px; line-height: 1.5; color: rgba(248, 250, 252, 0.8); }
#tos-overlay .tos-footer {
    padding: 18px 26px; border-top: 1px solid rgba(255, 255, 255, 0.07);
    display: flex; flex-direction: row !important; gap: 12px;
    justify-content: flex-end; align-items: center; flex-wrap: wrap; margin-top: 0 !important;
}
#tos-overlay .tos-btn-accept, #tos-overlay .tos-btn-decline {
    text-transform: none; letter-spacing: normal; box-shadow: none; width: auto; flex: 0 0 auto;
}
#tos-overlay .tos-btn-accept {
    padding: 12px 24px; border-radius: 100px; border: none;
    background: var(--ln-cyan-bright, #22d3ee); color: #060b16;
    font-size: 13px; font-weight: 700; cursor: pointer; transition: all 0.2s ease;
}
#tos-overlay .tos-btn-accept:disabled { background: rgba(34, 211, 238, 0.2); color: rgba(248, 250, 252, 0.4); cursor: not-allowed; }
#tos-overlay .tos-btn-decline {
    padding: 12px 22px; border-radius: 100px;
    border: 1px solid rgba(255, 255, 255, 0.12); background: rgba(255, 255, 255, 0.04);
    color: rgba(248, 250, 252, 0.7); font-size: 13px; font-weight: 700; cursor: pointer; transition: all 0.2s ease;
}
