/* ============================================================
   Planna – Public Landing Page Styles
   ============================================================ */

/* ── Base reset for landing sections ── */
/* Landing page always uses dark Antigravity tokens regardless of html.dark toggle */
.lp-page {
    /* Dark token overrides — scoped so they inherit to all children */
    --pln-canvas:         #020617;
    --pln-surface:        #0f172a;
    --pln-surface-2:      #1e293b;
    --pln-border:         rgba(255,255,255,0.08);
    --pln-border-subtle:  rgba(255,255,255,0.05);
    --pln-text-primary:   #f1f5f9;
    --pln-text-secondary: #94a3b8;
    --pln-text-muted:     #64748b;
    --pln-primary:        #818cf8;
    --pln-primary-hover:  #a5b4fc;
    --pln-primary-subtle: rgba(99,102,241,0.12);
    --pln-primary-text:   #a5b4fc;
    --pln-ai:             #8b5cf6;
    --pln-ai-hover:       #a78bfa;
    --pln-ai-subtle:      rgba(139,92,246,0.12);
    --pln-ai-text:        #a78bfa;
    --pln-glass-bg:       rgba(15,23,42,0.70);
    --pln-glass-border:   rgba(255,255,255,0.08);
    --pln-success:        #10b981;
    --pln-success-subtle: rgba(16,185,129,0.12);
    --pln-success-text:   #6ee7b7;
    --pln-warning:        #f59e0b;
    --pln-warning-subtle: rgba(245,158,11,0.12);
    --pln-warning-text:   #fcd34d;

    /* Bridge lp-* vars — read from the dark token overrides above */
    --lp-accent:        var(--pln-primary);
    --lp-accent-light:  var(--pln-primary-hover);
    --lp-accent-glow:   rgba(79, 70, 229, 0.35);
    --lp-purple:        var(--pln-ai-hover);
    --lp-sky:           #0ea5e9;
    --lp-dark:          var(--pln-canvas);
    --lp-surface:       var(--pln-surface);
    --lp-card:          var(--pln-surface-2);
    --lp-border:        var(--pln-border);
    --lp-text:          var(--pln-text-primary);
    --lp-muted:         var(--pln-text-muted);
    --lp-white:         #ffffff;
    --lp-radius:        14px;
    --lp-radius-sm:     8px;
    --lp-shadow:        0 4px 32px rgba(0,0,0,0.4);
    --lp-transition:    0.2s ease;
    --lp-emerald:       var(--pln-success);
    --lp-emerald-glow:  rgba(16,185,129,0.25);
    --lp-grad-cta:      linear-gradient(135deg, #1e1a3f 0%, #0f172a 50%, #0c1a2e 100%);
    --lp-shadow-card:   0 4px 24px rgba(0,0,0,0.35), 0 1px 0 rgba(255,255,255,0.04) inset;
    --lp-shadow-float:  0 20px 60px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.06);

    font-family: 'Plus Jakarta Sans', 'Segoe UI Variable', system-ui, -apple-system, sans-serif;
    color: var(--lp-text);
    background: var(--lp-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

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

.lp-container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ── Navbar ── */
.lp-nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(10, 10, 20, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--lp-border);
}

.lp-nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px;
}

.lp-logo {
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: var(--lp-white);
    text-decoration: none;
    background: linear-gradient(135deg, #a5b4fc 0%, var(--lp-white) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.lp-nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
}

.lp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 20px;
    border-radius: var(--lp-radius-sm);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: all var(--lp-transition);
    white-space: nowrap;
}

.lp-btn-ghost {
    background: transparent;
    color: var(--lp-muted);
    border: 1px solid transparent;
}

.lp-btn-ghost:hover {
    color: var(--lp-text);
    background: rgba(255,255,255,0.06);
}

.lp-btn-primary {
    background: var(--lp-accent);
    color: var(--lp-white);
    box-shadow: 0 0 0 0 var(--lp-accent-glow);
}

.lp-btn-primary:hover {
    background: var(--lp-accent-light);
    box-shadow: 0 0 20px var(--lp-accent-glow);
    transform: translateY(-1px);
}

.lp-btn-outline {
    background: transparent;
    color: var(--lp-text);
    border: 1px solid rgba(255,255,255,0.2);
}

.lp-btn-outline:hover {
    border-color: rgba(255,255,255,0.4);
    background: rgba(255,255,255,0.04);
}

.lp-btn-lg {
    padding: 14px 28px;
    font-size: 16px;
    border-radius: 10px;
}

/* ── Hero ── */
.lp-hero {
    position: relative;
    padding: 120px 24px 80px;
    text-align: center;
    overflow: hidden;
    background: var(--lp-dark);
}

.lp-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
        radial-gradient(ellipse 80% 60% at 50% -10%, rgba(79,70,229,0.4) 0%, transparent 70%),
        radial-gradient(ellipse 60% 40% at 80% 60%, rgba(124,58,237,0.2) 0%, transparent 60%),
        radial-gradient(ellipse 50% 40% at 20% 70%, rgba(14,165,233,0.15) 0%, transparent 60%);
    animation: lp-hero-shift 12s ease-in-out infinite alternate;
}

@keyframes lp-hero-shift {
    0%   { opacity: 1; transform: scale(1) translateY(0); }
    100% { opacity: 0.85; transform: scale(1.05) translateY(-20px); }
}

.lp-hero-noise {
    position: absolute;
    inset: 0;
    z-index: 0;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    background-size: 200px 200px;
}

.lp-hero-content {
    position: relative;
    z-index: 1;
    max-width: 760px;
    margin: 0 auto;
}

.lp-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--pln-ai-subtle, rgba(79,70,229,0.15));
    border: 1px solid var(--pln-ai-subtle, rgba(99,102,241,0.3));
    border-radius: 100px;
    padding: 6px 14px;
    font-size: 13px;
    font-weight: 500;
    color: var(--pln-ai-text, #a5b4fc);
    margin-bottom: 28px;
}

.lp-hero-badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--pln-ai, #818cf8);
    animation: lp-pulse 2s ease-in-out infinite;
}

@keyframes lp-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%       { opacity: 0.5; transform: scale(0.8); }
}

.lp-hero h1 {
    font-size: clamp(40px, 6.5vw, 76px);
    font-weight: 900;
    line-height: 1.02;
    letter-spacing: -3px;
    color: var(--lp-white);
    margin: 0 0 24px;
}

.lp-hero h1 em {
    font-style: normal;
    background: linear-gradient(100deg, var(--pln-primary-text, #a5b4fc) 0%, var(--pln-primary, #818cf8) 30%, var(--pln-ai-text, #c4b5fd) 60%, var(--pln-success-text, #6ee7b7) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 100%;
    animation: lp-gradient-shift 6s ease-in-out infinite alternate;
}

@keyframes lp-gradient-shift {
    0%   { background-position: 0% 50%; }
    100% { background-position: 100% 50%; }
}

.lp-hero-sub {
    font-size: clamp(16px, 2vw, 20px);
    color: var(--lp-muted);
    max-width: 540px;
    margin: 0 auto 40px;
    line-height: 1.65;
}

.lp-hero-ctas {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.lp-hero-note {
    margin-top: 16px;
    font-size: 13px;
    color: var(--lp-muted);
}

/* ── Browser Mockup ── */
.lp-mockup-wrap {
    position: relative;
    z-index: 1;
    margin: 64px auto 0;
    max-width: 880px;
}

.lp-mockup {
    border-radius: 12px 12px 0 0;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.12);
    box-shadow:
        0 0 0 1px rgba(255,255,255,0.05),
        0 32px 80px rgba(0,0,0,0.7),
        0 0 120px rgba(79,70,229,0.2),
        inset 0 1px 0 rgba(255,255,255,0.08),
        inset 0 0 40px rgba(79,70,229,0.05);
}

.lp-mockup-bar {
    background: #1e1e30;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 14px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.lp-mockup-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.lp-mockup-dot:nth-child(1) { background: #ef4444; }
.lp-mockup-dot:nth-child(2) { background: #f59e0b; }
.lp-mockup-dot:nth-child(3) { background: #10b981; }

.lp-mockup-url {
    flex: 1;
    background: rgba(255,255,255,0.05);
    border-radius: 4px;
    height: 22px;
    margin-left: 8px;
    display: flex;
    align-items: center;
    padding: 0 10px;
}

.lp-mockup-url span {
    font-size: 11px;
    color: var(--lp-muted);
}

.lp-mockup-screen {
    background: #12121f;
    height: 340px;
    display: grid;
    grid-template-columns: 200px 1fr;
}

.lp-mockup-sidebar {
    background: #0f0f1a;
    border-right: 1px solid rgba(255,255,255,0.06);
    padding: 16px 12px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.lp-mockup-nav-item {
    height: 32px;
    border-radius: 6px;
    background: rgba(255,255,255,0.04);
    margin-bottom: 2px;
}

.lp-mockup-nav-item.active {
    background: rgba(79,70,229,0.2);
    border-left: 3px solid var(--lp-accent);
}

.lp-mockup-main {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.lp-mockup-header-row {
    display: flex;
    gap: 8px;
    align-items: center;
}

.lp-mockup-pill {
    height: 28px;
    border-radius: 100px;
    background: rgba(255,255,255,0.06);
}

.lp-mockup-grid {
    display: grid;
    grid-template-columns: 50px repeat(4, 1fr);
    gap: 2px;
    flex: 1;
}

.lp-mockup-cell {
    height: 40px;
    background: rgba(255,255,255,0.03);
    border-radius: 4px;
}

.lp-mockup-booking {
    background: rgba(79,70,229,0.25);
    border-left: 3px solid var(--lp-accent);
    border-radius: 4px;
}

.lp-mockup-booking-green {
    background: rgba(16,185,129,0.2);
    border-left: 3px solid #10b981;
    border-radius: 4px;
}

.lp-mockup-booking-sky {
    background: rgba(14,165,233,0.2);
    border-left: 3px solid var(--lp-sky);
    border-radius: 4px;
}

/* ── Hero Orbs ── */
.lp-hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    z-index: 0;
}

.lp-hero-orb-1 {
    width: 500px;
    height: 500px;
    background: rgba(79, 70, 229, 0.25);
    top: -100px;
    left: -100px;
    animation: lp-orb-drift 15s ease-in-out infinite alternate;
}

.lp-hero-orb-2 {
    width: 400px;
    height: 400px;
    background: rgba(124, 58, 237, 0.2);
    bottom: 0;
    right: -80px;
    animation: lp-orb-drift 18s ease-in-out infinite alternate-reverse;
}

@keyframes lp-orb-drift {
    0%   { transform: translate(0, 0) scale(1); }
    100% { transform: translate(40px, -40px) scale(1.1); }
}

/* ── Hero Grid Mesh ── */
.lp-hero-grid {
    position: absolute;
    inset: 0;
    z-index: 0;
    background-image:
        linear-gradient(rgba(99,102,241,0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(99,102,241,0.06) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: radial-gradient(ellipse 80% 70% at 50% 30%, black 20%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 30%, black 20%, transparent 80%);
    pointer-events: none;
}

/* ── Third Orb (Emerald) ── */
.lp-hero-orb-3 {
    width: 350px;
    height: 350px;
    background: rgba(16, 185, 129, 0.12);
    bottom: 80px;
    left: 25%;
    animation: lp-orb-drift 22s ease-in-out infinite alternate;
    filter: blur(100px);
}

/* ── Scroll Indicator ── */
.lp-scroll-indicator {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0.4;
    animation: lp-scroll-bob 2.4s ease-in-out infinite;
}

.lp-scroll-arrow {
    width: 20px;
    height: 20px;
    border-right: 2px solid rgba(255,255,255,0.6);
    border-bottom: 2px solid rgba(255,255,255,0.6);
    transform: rotate(45deg);
}

@keyframes lp-scroll-bob {
    0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.4; }
    50%       { transform: translateX(-50%) translateY(6px); opacity: 0.7; }
}

/* ── Floating Stat Badges ── */
.lp-float-badge {
    position: absolute;
    background: rgba(18, 18, 31, 0.92);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px;
    padding: 10px 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: var(--lp-shadow-float);
    z-index: 2;
}

.lp-float-badge-tl {
    left: -40px;
    top: 30%;
    animation: lp-float-bob 4s ease-in-out infinite;
}

.lp-float-badge-tr {
    right: -40px;
    top: 45%;
    animation: lp-float-bob 4s ease-in-out infinite;
    animation-delay: 1.5s;
}

@keyframes lp-float-bob {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-8px); }
}

.lp-float-badge-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: var(--pln-primary-subtle, rgba(79,70,229,0.2));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--pln-primary-text, #a5b4fc);
}

.lp-float-icon-green {
    background: var(--pln-success-subtle, rgba(16,185,129,0.2));
    color: var(--pln-success-text, #6ee7b7);
}

.lp-float-badge > div {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.lp-float-badge-value {
    font-size: 15px;
    font-weight: 800;
    color: var(--lp-white);
    letter-spacing: -0.5px;
    line-height: 1;
}

.lp-float-badge-text {
    font-size: 11px;
    color: var(--lp-muted);
    white-space: nowrap;
}

/* ── Mockup Tabs ── */
.lp-mockup-tabs {
    display: flex;
    gap: 2px;
    margin-left: 12px;
    margin-right: 8px;
}

.lp-mockup-tab {
    font-size: 10px;
    color: rgba(128,128,168,0.7);
    padding: 3px 10px;
    border-radius: 4px 4px 0 0;
    background: rgba(255,255,255,0.03);
    border: 1px solid transparent;
    border-bottom: none;
    white-space: nowrap;
}

.lp-mockup-tab.active {
    background: #12121f;
    color: rgba(240,240,255,0.9);
    border-color: rgba(255,255,255,0.08);
}

/* ── Mockup Glow ── */
.lp-mockup-glow {
    position: absolute;
    inset: -40px;
    background: radial-gradient(ellipse 60% 40% at 50% 100%, rgba(79,70,229,0.2) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

/* ── Glow Button ── */
.lp-btn-glow {
    box-shadow: 0 0 32px rgba(79,70,229,0.45), 0 4px 16px rgba(0,0,0,0.3);
}

.lp-btn-glow:hover {
    box-shadow: 0 0 48px rgba(79,70,229,0.6), 0 8px 24px rgba(0,0,0,0.4) !important;
}

/* ── Trust Ticker ── */
.lp-ticker {
    overflow: hidden;
    background: rgba(79,70,229,0.07);
    border-top: 1px solid rgba(99,102,241,0.15);
    border-bottom: 1px solid rgba(99,102,241,0.15);
    padding: 12px 0;
    position: relative;
}

.lp-ticker::before,
.lp-ticker::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 80px;
    z-index: 1;
    pointer-events: none;
}

.lp-ticker::before {
    left: 0;
    background: linear-gradient(90deg, var(--lp-dark) 0%, transparent 100%);
}

.lp-ticker::after {
    right: 0;
    background: linear-gradient(270deg, var(--lp-dark) 0%, transparent 100%);
}

.lp-ticker-track {
    display: flex;
    align-items: center;
    white-space: nowrap;
    animation: lp-ticker-scroll 30s linear infinite;
    width: max-content;
}

@keyframes lp-ticker-scroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

.lp-ticker-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 500;
    color: rgba(165,180,252,0.8);
    padding: 0 20px;
}

.lp-ticker-icon {
    display: inline-flex;
    align-items: center;
    font-size: 14px;
    line-height: 1;
}

.lp-ticker-sep {
    color: rgba(99,102,241,0.3);
    font-size: 16px;
    padding: 0 4px;
}

@media (prefers-reduced-motion: reduce) {
    .lp-ticker-track { animation: none; }
}

/* ── Stats Bar ── */
.lp-stats-bar {
    background: var(--lp-surface);
    border-top: 1px solid var(--lp-border);
    border-bottom: 1px solid var(--lp-border);
    padding: 40px 24px;
}

.lp-stats-inner {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
}

.lp-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 0 40px;
    flex: 1;
    min-width: 140px;
    animation: lp-stat-appear 0.6s ease backwards;
}

.lp-stat:nth-child(1) { animation-delay: 0.05s; }
.lp-stat:nth-child(3) { animation-delay: 0.15s; }
.lp-stat:nth-child(5) { animation-delay: 0.25s; }
.lp-stat:nth-child(7) { animation-delay: 0.35s; }

.lp-stat-num {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 900;
    color: var(--lp-white);
    letter-spacing: -2px;
    background: linear-gradient(135deg, var(--pln-primary-text, #a5b4fc) 0%, var(--pln-primary, #818cf8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@keyframes lp-stat-appear {
    from { opacity: 0; transform: translateY(12px); }
    to   { opacity: 1; transform: translateY(0); }
}

.lp-stat-label {
    font-size: 13px;
    color: var(--lp-muted);
    text-align: center;
    font-weight: 500;
}

.lp-stat-divider {
    width: 1px;
    height: 40px;
    background: var(--lp-border);
    flex-shrink: 0;
}

/* ── Logos Bar ── */
.lp-logos {
    background: var(--lp-surface);
    border-top: 1px solid var(--lp-border);
    border-bottom: 1px solid var(--lp-border);
    padding: 28px 24px;
    text-align: center;
}

.lp-logos-label {
    font-size: 13px;
    color: var(--lp-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 500;
    margin-bottom: 20px;
}

.lp-logos-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.lp-logos-marquee {
    overflow: hidden;
    position: relative;
}

.lp-logos-marquee::before,
.lp-logos-marquee::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 60px;
    z-index: 1;
    pointer-events: none;
}

.lp-logos-marquee::before {
    left: 0;
    background: linear-gradient(90deg, var(--lp-surface) 0%, transparent 100%);
}

.lp-logos-marquee::after {
    right: 0;
    background: linear-gradient(270deg, var(--lp-surface) 0%, transparent 100%);
}

.lp-logos-track {
    display: flex;
    align-items: center;
    white-space: nowrap;
    animation: lp-ticker-scroll 20s linear infinite;
    width: max-content;
}

@media (prefers-reduced-motion: reduce) {
    .lp-logos-track { animation: none; }
}

.lp-brand-sep {
    color: rgba(255,255,255,0.1);
    padding: 0 16px;
    font-size: 18px;
}

.lp-brand-name {
    font-size: 15px;
    font-weight: 700;
    color: rgba(255,255,255,0.18);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0 8px;
    transition: color 0.2s ease;
}

.lp-brand-name:hover {
    color: rgba(255,255,255,0.45);
}

/* ── Section Base ── */
.lp-section {
    padding: 96px 24px;
}

.lp-section-light {
    border-top: 1px solid var(--lp-border);
    border-bottom: 1px solid var(--lp-border);
    background: rgba(255,255,255,0.02);
}

.lp-section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--pln-primary, #818cf8);
    margin-bottom: 14px;
}

.lp-section-tag::before {
    content: '';
    width: 16px;
    height: 2px;
    background: linear-gradient(90deg, var(--pln-primary, #818cf8), var(--pln-ai-text, #c4b5fd));
    border-radius: 2px;
    display: inline-block;
    flex-shrink: 0;
}

.lp-section-title {
    font-size: clamp(30px, 4vw, 48px);
    font-weight: 800;
    letter-spacing: -2px;
    color: var(--lp-white);
    margin: 0 0 16px;
    line-height: 1.08;
}

.lp-section-sub {
    font-size: 17px;
    color: var(--lp-muted);
    max-width: 520px;
    line-height: 1.65;
}

.lp-section-header {
    margin-bottom: 56px;
}

/* ── Bento Grid ── */
.lp-bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    gap: 16px;
    max-width: 1140px;
    margin: 0 auto;
}

.lp-bento-card {
    background: var(--lp-card);
    border: 1px solid var(--lp-border);
    border-radius: 18px;
    padding: 28px 26px;
    transition: border-color var(--lp-transition), transform var(--lp-transition), box-shadow var(--lp-transition);
    position: relative;
    overflow: hidden;
}

.lp-bento-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(99,102,241,0.4), transparent);
    opacity: 0;
    transition: opacity var(--lp-transition);
}

.lp-bento-card:hover {
    border-color: rgba(99,102,241,0.4);
    transform: translateY(-4px);
    box-shadow: var(--lp-shadow-card), 0 0 0 1px rgba(99,102,241,0.1);
    background: linear-gradient(135deg, #1e1a3a 0%, #1a1a2e 60%, #121222 100%);
}

.lp-bento-card:hover::before {
    opacity: 1;
}

.lp-bento-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(
        105deg,
        transparent 40%,
        rgba(255,255,255,0.04) 50%,
        transparent 60%
    );
    transition: left 0.5s ease;
    pointer-events: none;
}

.lp-bento-card:hover::after {
    left: 150%;
}

/* Bento mini visuals */
.lp-bento-visual {
    margin: 16px 0 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    opacity: 0.7;
}

.lp-bento-skel-row {
    display: flex;
    gap: 8px;
    align-items: center;
}

.lp-bento-skel {
    height: 8px;
    border-radius: 4px;
    background: rgba(255,255,255,0.07);
    animation: lp-skel-pulse 2s ease-in-out infinite;
}

@keyframes lp-skel-pulse {
    0%, 100% { opacity: 0.7; }
    50%       { opacity: 0.35; }
}

.lp-bento-chart {
    display: flex;
    align-items: flex-end;
    gap: 6px;
    height: 56px;
    margin: 16px 0 12px;
    padding: 0 4px;
}

.lp-bento-bar {
    flex: 1;
    height: var(--h, 50%);
    background: rgba(79,70,229,0.25);
    border-radius: 3px 3px 0 0;
}

.lp-bento-bar-active {
    background: linear-gradient(180deg, #818cf8 0%, rgba(79,70,229,0.4) 100%);
    box-shadow: 0 0 12px rgba(79,70,229,0.4);
}

.lp-bento-large {
    grid-column: span 2;
}

.lp-bento-right {
    grid-column: 2 / span 2;
}

.lp-bento-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 18px;
}

.lp-bento-icon-primary { background: var(--pln-primary-subtle, rgba(79,70,229,0.18)); }
.lp-bento-icon-green   { background: var(--pln-success-subtle, rgba(16,185,129,0.15)); }
.lp-bento-icon-sky     { background: rgba(14,165,233,0.15); }
.lp-bento-icon-purple  { background: var(--pln-ai-subtle, rgba(124,58,237,0.15)); }
.lp-bento-icon-amber   { background: var(--pln-warning-subtle, rgba(245,158,11,0.15)); }

.lp-bento-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--lp-white);
    margin: 0 0 10px;
    letter-spacing: -0.3px;
}

.lp-bento-desc {
    font-size: 14px;
    color: var(--lp-muted);
    line-height: 1.7;
    margin: 0 0 16px;
}

.lp-bento-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--pln-primary-subtle, rgba(79,70,229,0.15));
    border: 1px solid var(--pln-primary-subtle, rgba(99,102,241,0.3));
    border-radius: 100px;
    padding: 4px 12px;
    font-size: 12px;
    font-weight: 600;
    color: var(--pln-primary-text, #a5b4fc);
    margin-top: 4px;
}

.lp-bento-pill-amber {
    background: var(--pln-warning-subtle, rgba(245,158,11,0.12));
    border-color: var(--pln-warning-subtle, rgba(245,158,11,0.3));
    color: var(--pln-warning-text, #fcd34d);
}

/* ── How it Works ── */
.lp-how-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.lp-how-steps::before {
    content: '';
    position: absolute;
    top: 50px;
    left: calc(16.67% + 26px);
    right: calc(16.67% + 26px);
    height: 2px;
    background: linear-gradient(90deg, var(--lp-accent), var(--lp-purple), var(--lp-emerald));
    opacity: 0;
    transform-origin: left center;
    animation: lp-line-draw 1.2s ease forwards;
    animation-delay: 0.3s;
}

@keyframes lp-line-draw {
    from { opacity: 0; clip-path: inset(0 100% 0 0); }
    to   { opacity: 0.5; clip-path: inset(0 0% 0 0); }
}

.lp-step {
    text-align: center;
    padding: 28px 24px;
    background: var(--lp-card);
    border: 1px solid var(--lp-border);
    border-radius: var(--lp-radius);
    position: relative;
    transition: border-color var(--lp-transition), transform var(--lp-transition);
}

.lp-step:hover {
    border-color: rgba(99,102,241,0.3);
    transform: translateY(-3px);
}

.lp-step-num {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--pln-primary, #6366f1), var(--pln-ai, #8b5cf6));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 800;
    color: white;
    margin: 0 auto 20px;
    position: relative;
    z-index: 1;
    box-shadow: 0 0 24px rgba(79,70,229,0.4);
}

.lp-step-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--lp-white);
    margin: 0 0 10px;
}

.lp-step-desc {
    font-size: 14px;
    color: var(--lp-muted);
    line-height: 1.65;
    margin: 0;
}

/* ── Testimonials ── */
.lp-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1140px;
    margin: 0 auto;
}

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

.lp-stars {
    display: flex;
    gap: 3px;
    color: #f59e0b;
    font-size: 14px;
}

.lp-testimonial-quote {
    font-size: 15px;
    color: rgba(240,240,255,0.85);
    line-height: 1.7;
    margin: 0;
    flex: 1;
}

.lp-testimonial-quote::before { content: '\201C'; }
.lp-testimonial-quote::after  { content: '\201D'; }

.lp-testimonial-featured {
    background: linear-gradient(160deg, #1e1a3f 0%, #1a1a2e 100%);
    border-color: rgba(99,102,241,0.35);
    box-shadow: 0 0 40px rgba(79,70,229,0.1);
}

.lp-testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.lp-testimonial-verified {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(16,185,129,0.1);
    border: 1px solid rgba(16,185,129,0.25);
    border-radius: 100px;
    padding: 3px 10px 3px 8px;
    font-size: 11px;
    font-weight: 600;
    color: #6ee7b7;
    letter-spacing: 0.02em;
    margin-top: 4px;
}

.lp-author-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--lp-accent), var(--lp-purple));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    color: white;
    flex-shrink: 0;
}

.lp-author-avatar-green {
    background: linear-gradient(135deg, #10b981, #059669);
}

.lp-author-avatar-sky {
    background: linear-gradient(135deg, #0ea5e9, #0284c7);
}

.lp-testimonial-featured .lp-author-avatar {
    box-shadow: 0 0 0 2px #1e1a3f, 0 0 0 4px rgba(99,102,241,0.4);
}

.lp-testimonial-author > div {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.lp-author-name {
    font-size: 14px;
    font-weight: 700;
    color: var(--lp-white);
}

.lp-author-salon {
    font-size: 13px;
    color: var(--lp-muted);
}

/* ── Pricing ── */
@property --lp-border-angle {
    syntax: '<angle>';
    initial-value: 0deg;
    inherits: false;
}

.lp-pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
}

.lp-toggle-label {
    font-size: 14px;
    color: var(--lp-muted);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
}

.lp-toggle-label.active {
    color: var(--lp-text);
}

.lp-toggle-save {
    background: rgba(16,185,129,0.15);
    border: 1px solid rgba(16,185,129,0.3);
    border-radius: 100px;
    padding: 2px 8px;
    font-size: 11px;
    font-weight: 700;
    color: #6ee7b7;
    letter-spacing: 0.02em;
}

.lp-toggle-switch {
    width: 40px;
    height: 22px;
    border-radius: 100px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    position: relative;
    cursor: pointer;
}

.lp-toggle-thumb {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--lp-muted);
    position: absolute;
    top: 2px;
    left: 2px;
    transition: transform 0.2s ease, background 0.2s ease;
}

.lp-pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 960px;
    margin: 0 auto;
    align-items: start;
}

.lp-pricing-card {
    background: var(--lp-card);
    border: 1px solid var(--lp-border);
    border-radius: var(--lp-radius);
    padding: 32px 28px;
    position: relative;
    transition: border-color var(--lp-transition);
}

.lp-pricing-card.featured {
    background: linear-gradient(160deg, #1e1a3f 0%, #1a1a2e 100%);
    border: none;
    box-shadow: 0 0 48px rgba(79,70,229,0.2), 0 0 80px rgba(124,58,237,0.1);
    transform: scale(1.03);
    z-index: 0;
}

.lp-pricing-card.featured::before {
    content: '';
    position: absolute;
    inset: -1px;
    z-index: -1;
    border-radius: calc(var(--lp-radius) + 1px);
    background: conic-gradient(
        from var(--lp-border-angle),
        rgba(99,102,241,0.8) 0%,
        rgba(124,58,237,0.6) 25%,
        rgba(16,185,129,0.4) 50%,
        rgba(99,102,241,0.6) 75%,
        rgba(99,102,241,0.8) 100%
    );
    animation: lp-border-spin 4s linear infinite;
}

.lp-pricing-card.featured::after {
    content: '';
    position: absolute;
    inset: 1px;
    z-index: -1;
    border-radius: calc(var(--lp-radius) - 1px);
    background: linear-gradient(160deg, #1e1a3f 0%, #1a1a2e 100%);
}

@keyframes lp-border-spin {
    from { --lp-border-angle: 0deg; }
    to   { --lp-border-angle: 360deg; }
}

.lp-pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--lp-accent), var(--lp-purple));
    color: white;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 100px;
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.lp-pricing-tier {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--lp-muted);
    margin-bottom: 16px;
}

.lp-pricing-price {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 8px;
}

.lp-price-currency {
    font-size: 20px;
    font-weight: 700;
    color: var(--lp-text);
}

.lp-price-amount {
    font-size: 48px;
    font-weight: 900;
    color: var(--lp-white);
    letter-spacing: -2px;
    line-height: 1;
}

.lp-price-period {
    font-size: 14px;
    color: var(--lp-muted);
    margin-bottom: 24px;
}

.lp-pricing-desc {
    font-size: 14px;
    color: var(--lp-muted);
    margin-bottom: 24px;
    line-height: 1.6;
}

.lp-pricing-divider {
    height: 1px;
    background: var(--lp-border);
    margin-bottom: 24px;
}

.lp-pricing-features {
    list-style: none;
    margin: 0 0 32px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.lp-pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: rgba(240,240,255,0.8);
    line-height: 1.5;
}

.lp-pricing-features li::before {
    content: '';
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: rgba(79,70,229,0.2);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2 6l3 3 5-5' stroke='%23818cf8' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E");
    background-size: 10px 10px;
    background-repeat: no-repeat;
    background-position: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.lp-pricing-card.featured .lp-pricing-features li::before {
    background-color: rgba(16,185,129,0.2);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2 6l3 3 5-5' stroke='%236ee7b7' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E");
}

.lp-pricing-cta {
    width: 100%;
    text-align: center;
}

/* ── CTA Banner ── */
.lp-cta-banner {
    background: var(--lp-grad-cta);
    border-top: 1px solid rgba(99,102,241,0.2);
    text-align: center;
    padding: 140px 24px;
    position: relative;
    overflow: hidden;
}

.lp-cta-banner-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.lp-cta-banner-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 60% at 50% 40%, rgba(79,70,229,0.3) 0%, transparent 65%),
        radial-gradient(ellipse 50% 40% at 15% 80%, rgba(124,58,237,0.2) 0%, transparent 60%),
        radial-gradient(ellipse 40% 50% at 85% 20%, rgba(16,185,129,0.12) 0%, transparent 60%);
}

.lp-cta-banner-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(99,102,241,0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(99,102,241,0.05) 1px, transparent 1px);
    background-size: 40px 40px;
    mask-image: radial-gradient(ellipse 90% 80% at 50% 50%, black 20%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse 90% 80% at 50% 50%, black 20%, transparent 80%);
}

.lp-cta-inner {
    position: relative;
    z-index: 1;
    max-width: 640px;
    margin: 0 auto;
}

.lp-cta-badge {
    display: inline-block;
    background: var(--pln-ai-subtle, rgba(79,70,229,0.15));
    border: 1px solid var(--pln-ai-subtle, rgba(99,102,241,0.3));
    border-radius: 100px;
    padding: 6px 16px;
    font-size: 13px;
    font-weight: 600;
    color: var(--pln-ai-text, #a5b4fc);
    margin-bottom: 24px;
}

.lp-cta-banner h2 {
    font-size: clamp(36px, 5.5vw, 64px);
    font-weight: 900;
    letter-spacing: -3px;
    color: var(--lp-white);
    margin: 0 0 16px;
    line-height: 1.02;
}

.lp-cta-banner p {
    font-size: 18px;
    color: var(--lp-muted);
    margin: 0 0 40px;
}

.lp-cta-sub-note {
    margin-top: 20px !important;
    font-size: 13px !important;
    color: var(--lp-muted) !important;
    margin-bottom: 0 !important;
}

.lp-cta-banner-btns {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

/* ── Footer ── */
.lp-footer {
    background: var(--lp-surface);
    border-top: 1px solid var(--lp-border);
    padding: 60px 24px 32px;
}

.lp-footer-inner {
    max-width: 1140px;
    margin: 0 auto;
}

.lp-footer-top {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 64px;
    margin-bottom: 48px;
}

.lp-footer-brand p {
    font-size: 14px;
    color: var(--lp-muted);
    margin: 8px 0 0;
    line-height: 1.6;
    max-width: 220px;
}

.lp-footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.lp-footer-col h4 {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--lp-muted);
    margin: 0 0 16px;
}

.lp-footer-col ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.lp-footer-col ul li a {
    font-size: 14px;
    color: rgba(240,240,255,0.6);
    text-decoration: none;
    transition: color var(--lp-transition);
}

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

.lp-footer-bottom {
    padding-top: 24px;
    border-top: 1px solid var(--lp-border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.lp-footer-bottom p {
    font-size: 13px;
    color: var(--lp-muted);
    margin: 0;
}

/* ── Auth Pages ── */
.lp-auth-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--lp-dark);
    padding: 40px 24px;
    font-family: 'Plus Jakarta Sans', 'Segoe UI Variable', system-ui, sans-serif;
    position: relative;
    overflow: hidden;
}

.lp-auth-page::before {
    content: '';
    position: absolute;
    top: -20%;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 400px;
    background: radial-gradient(ellipse at center, rgba(79,70,229,0.25) 0%, transparent 70%);
    pointer-events: none;
}

.lp-auth-logo {
    font-size: 24px;
    font-weight: 800;
    color: var(--lp-white);
    text-decoration: none;
    background: linear-gradient(135deg, #a5b4fc 0%, var(--lp-white) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 32px;
    display: block;
    text-align: center;
    position: relative;
}

.lp-auth-card {
    background: var(--lp-card);
    border: 1px solid var(--lp-border);
    border-radius: 18px;
    padding: 40px;
    width: 100%;
    max-width: 440px;
    position: relative;
}

.lp-auth-card-wide {
    max-width: 480px;
}

.lp-auth-card h1 {
    font-size: 26px;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: var(--lp-white);
    margin: 0 0 6px;
}

.lp-auth-sub {
    font-size: 14px;
    color: var(--lp-muted);
    margin: 0 0 28px;
}

.lp-auth-fields {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 12px;
}

.lp-field-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.lp-field-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 6px;
}

.lp-field-label {
    font-size: 13px;
    font-weight: 600;
    color: rgba(240,240,255,0.8);
}

.lp-field-link {
    font-size: 13px;
    color: #818cf8;
    text-decoration: none;
}

.lp-field-link:hover {
    color: #a5b4fc;
}

.lp-auth-input {
    width: 100%;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    color: var(--lp-text);
    font-size: 14px;
    font-family: inherit;
    padding: 10px 14px;
    outline: none;
    transition: border-color var(--lp-transition), box-shadow var(--lp-transition);
    -webkit-appearance: none;
}

.lp-auth-input::placeholder {
    color: rgba(128,128,168,0.6);
}

.lp-auth-input:focus {
    border-color: rgba(99,102,241,0.6);
    box-shadow: 0 0 0 3px rgba(79,70,229,0.15);
}

.lp-auth-submit {
    width: 100%;
    padding: 12px;
    background: var(--lp-accent);
    color: white;
    font-size: 15px;
    font-weight: 700;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-family: inherit;
    margin-top: 8px;
    transition: all var(--lp-transition);
    letter-spacing: -0.2px;
}

.lp-auth-submit:hover {
    background: var(--lp-accent-light);
    box-shadow: 0 0 20px var(--lp-accent-glow);
    transform: translateY(-1px);
}

.lp-auth-submit:active {
    transform: translateY(0);
}

.lp-auth-divider {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 20px 0;
    color: var(--lp-muted);
    font-size: 13px;
}

.lp-auth-divider::before,
.lp-auth-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--lp-border);
}

.lp-auth-footer-link {
    text-align: center;
    font-size: 14px;
    color: var(--lp-muted);
    margin-top: 4px;
}

.lp-auth-footer-link a {
    color: #818cf8;
    text-decoration: none;
    font-weight: 600;
}

.lp-auth-footer-link a:hover {
    color: #a5b4fc;
}

.lp-auth-terms {
    text-align: center;
    font-size: 12px;
    color: rgba(128,128,168,0.7);
    margin-top: 16px;
    line-height: 1.5;
}

.lp-auth-terms a {
    color: rgba(129,140,248,0.8);
    text-decoration: none;
}

.lp-auth-error {
    background: rgba(239,68,68,0.1);
    border: 1px solid rgba(239,68,68,0.3);
    border-radius: 8px;
    padding: 10px 14px;
    font-size: 13px;
    color: #fca5a5;
    margin-bottom: 12px;
}

/* ============================================================
   Setup / Onboarding Wizard
   ============================================================ */

/* ── Setup Page Wrapper ── */
.lp-setup-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: var(--lp-dark);
    padding: 40px 24px 64px;
    font-family: 'Inter', 'Segoe UI Variable', 'Segoe UI', system-ui, sans-serif;
    position: relative;
    overflow-x: hidden;
}

.lp-setup-page::before {
    content: '';
    position: absolute;
    top: -20%;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 400px;
    background: radial-gradient(ellipse at center, rgba(79,70,229,0.22) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

/* ── Progress Stepper ── */
.lp-setup-progress {
    display: flex;
    align-items: center;
    gap: 0;
    margin-bottom: 32px;
    position: relative;
    z-index: 1;
}

.lp-setup-step {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    color: var(--lp-muted);
    font-size: 14px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background var(--lp-transition), border-color var(--lp-transition), color var(--lp-transition);
}

.lp-setup-step.active {
    background: var(--lp-accent);
    border-color: var(--lp-accent);
    color: var(--lp-white);
    box-shadow: 0 0 0 4px rgba(79,70,229,0.2);
}

.lp-setup-step.completed {
    background: var(--lp-emerald);
    border-color: var(--lp-emerald);
    color: var(--lp-white);
}

.lp-setup-line {
    width: 48px;
    height: 2px;
    background: rgba(255,255,255,0.1);
    flex-shrink: 0;
    transition: background var(--lp-transition);
}

.lp-setup-line.completed {
    background: var(--lp-emerald);
}

/* ── Setup Cards ── */
.lp-setup-card {
    background: var(--lp-card);
    border: 1px solid var(--lp-border);
    border-radius: 18px;
    padding: 40px;
    width: 100%;
    max-width: 520px;
    position: relative;
    z-index: 1;
    box-shadow: var(--lp-shadow-card);
}

.lp-setup-card h1 {
    font-size: 26px;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: var(--lp-white);
    margin: 0 0 6px;
}

.lp-setup-card-wide {
    max-width: 660px;
}

.lp-setup-choice-card {
    max-width: 560px;
}

.lp-setup-complete-card {
    max-width: 520px;
    text-align: center;
}

/* ── Form Structure ── */
.lp-setup-section {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 20px;
}

.lp-field-hint {
    font-size: 12px;
    color: var(--lp-muted);
    margin: 4px 0 0;
    line-height: 1.5;
}

.lp-setup-row {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin-bottom: 20px;
}

.lp-setup-row .lp-field-sm {
    flex: 0 0 100px;
}

.lp-setup-row .lp-field-grow {
    flex: 1;
}

/* ── Business Type Grid (step 1) ── */
.lp-biz-type-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-top: 4px;
}

.lp-biz-type-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 14px 10px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px;
    color: var(--lp-muted);
    font-size: 13px;
    font-weight: 500;
    font-family: inherit;
    cursor: pointer;
    transition: background var(--lp-transition), border-color var(--lp-transition), color var(--lp-transition);
}

.lp-biz-type-btn:hover {
    background: rgba(99,102,241,0.1);
    border-color: rgba(99,102,241,0.3);
    color: var(--lp-text);
}

.lp-biz-type-btn.selected {
    background: rgba(79,70,229,0.18);
    border-color: rgba(99,102,241,0.6);
    color: var(--lp-white);
    box-shadow: 0 0 0 3px rgba(79,70,229,0.12);
}

.lp-biz-icon {
    font-size: 22px;
    line-height: 1;
}

/* ── Slug Row (step 2) ── */
.lp-slug-row {
    display: flex;
    align-items: stretch;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.1);
    background: rgba(255,255,255,0.05);
    transition: border-color var(--lp-transition), box-shadow var(--lp-transition);
}

.lp-slug-row:focus-within {
    border-color: rgba(99,102,241,0.6);
    box-shadow: 0 0 0 3px rgba(79,70,229,0.15);
}

.lp-slug-prefix {
    padding: 10px 12px;
    font-size: 14px;
    color: var(--lp-muted);
    background: rgba(255,255,255,0.04);
    border-right: 1px solid rgba(255,255,255,0.1);
    white-space: nowrap;
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.lp-slug-row .lp-auth-input {
    border: none;
    background: transparent;
    border-radius: 0;
    box-shadow: none !important;
    flex: 1;
    min-width: 0;
}

.lp-slug-ok {
    font-size: 12px;
    color: var(--lp-emerald);
    margin: 6px 0 0;
    font-weight: 600;
}

.lp-slug-taken {
    font-size: 12px;
    color: #f87171;
    margin: 6px 0 0;
    font-weight: 600;
}

.lp-toggle-row {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 4px;
}

/* ── Choice Grid (step 3) ── */
.lp-choice-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 24px;
}

.lp-choice-btn {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    padding: 20px 18px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    color: var(--lp-text);
    font-family: inherit;
    font-size: 14px;
    cursor: pointer;
    text-align: left;
    transition: background var(--lp-transition), border-color var(--lp-transition), transform var(--lp-transition);
}

.lp-choice-btn:hover {
    background: rgba(99,102,241,0.1);
    border-color: rgba(99,102,241,0.4);
    transform: translateY(-2px);
}

.lp-choice-btn-disabled {
    cursor: default;
    opacity: 0.72;
}

.lp-choice-btn-disabled:hover {
    background: rgba(255,255,255,0.04);
    border-color: rgba(255,255,255,0.1);
    transform: none;
}

.lp-choice-btn-ghost {
    background: transparent;
    border-color: rgba(255,255,255,0.07);
    color: var(--lp-muted);
}

.lp-choice-btn-ghost:hover {
    background: rgba(255,255,255,0.04);
    border-color: rgba(255,255,255,0.12);
    color: var(--lp-text);
    transform: none;
}

.lp-choice-icon {
    font-size: 28px;
    line-height: 1;
    margin-bottom: 4px;
}

.lp-choice-btn strong {
    font-size: 14px;
    font-weight: 700;
    color: var(--lp-white);
    display: block;
}

.lp-choice-desc {
    font-size: 12px;
    color: var(--lp-muted);
    line-height: 1.4;
}

/* ── Service Table (step 3 manual) ── */
.lp-service-table {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 16px;
    overflow-x: auto;
}

.lp-service-header,
.lp-service-row {
    display: grid;
    grid-template-columns: 2fr 110px 100px 1fr 32px;
    gap: 8px;
    align-items: center;
}

.lp-service-header {
    font-size: 11px;
    font-weight: 700;
    color: var(--lp-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 0 0 4px;
    border-bottom: 1px solid var(--lp-border);
}

.lp-service-row {
    padding: 4px 0;
}

.lp-table-input {
    width: 100%;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 6px;
    color: var(--lp-text);
    font-size: 13px;
    font-family: inherit;
    padding: 7px 10px;
    outline: none;
    transition: border-color var(--lp-transition);
    -webkit-appearance: none;
}

.lp-table-input::placeholder {
    color: rgba(128,128,168,0.5);
}

.lp-table-input:focus {
    border-color: rgba(99,102,241,0.5);
}

.lp-table-input-row {
    display: flex;
    align-items: center;
    gap: 6px;
}

.lp-unit {
    font-size: 12px;
    color: var(--lp-muted);
    white-space: nowrap;
    flex-shrink: 0;
}

.lp-icon-btn {
    width: 28px;
    height: 28px;
    border-radius: 6px;
    background: rgba(239,68,68,0.08);
    border: 1px solid rgba(239,68,68,0.2);
    color: #f87171;
    font-size: 12px;
    font-family: inherit;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--lp-transition), border-color var(--lp-transition);
    flex-shrink: 0;
}

.lp-icon-btn:hover {
    background: rgba(239,68,68,0.16);
    border-color: rgba(239,68,68,0.4);
}

.lp-add-btn {
    width: 100%;
    padding: 10px;
    background: transparent;
    border: 1px dashed rgba(99,102,241,0.3);
    border-radius: 8px;
    color: #818cf8;
    font-size: 13px;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: background var(--lp-transition), border-color var(--lp-transition), color var(--lp-transition);
    margin-bottom: 24px;
}

.lp-add-btn:hover {
    background: rgba(99,102,241,0.08);
    border-color: rgba(99,102,241,0.5);
    color: #a5b4fc;
}

.lp-btn-ghost {
    padding: 12px 20px;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 8px;
    color: var(--lp-muted);
    font-size: 14px;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: background var(--lp-transition), border-color var(--lp-transition), color var(--lp-transition);
}

.lp-btn-ghost:hover {
    background: rgba(255,255,255,0.05);
    border-color: rgba(255,255,255,0.2);
    color: var(--lp-text);
}

.lp-setup-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 8px;
    padding-top: 24px;
    border-top: 1px solid var(--lp-border);
}

.lp-setup-actions .lp-auth-submit {
    flex: 1;
    max-width: 280px;
    margin-top: 0;
}

/* ── Import Page (step 3 import) ── */
.lp-import-source-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin: 20px 0;
}

.lp-import-source-btn {
    padding: 12px 10px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    color: var(--lp-muted);
    font-size: 13px;
    font-weight: 500;
    font-family: inherit;
    cursor: pointer;
    text-align: center;
    transition: background var(--lp-transition), border-color var(--lp-transition), color var(--lp-transition);
}

.lp-import-source-btn:hover {
    background: rgba(99,102,241,0.08);
    border-color: rgba(99,102,241,0.3);
    color: var(--lp-text);
}

.lp-import-source-btn.selected {
    background: rgba(79,70,229,0.18);
    border-color: rgba(99,102,241,0.55);
    color: var(--lp-white);
}

.lp-import-instructions {
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--lp-border);
    border-radius: 10px;
    padding: 16px 18px;
    margin-bottom: 16px;
    font-size: 14px;
    color: var(--lp-text);
    line-height: 1.6;
}

.lp-import-instructions h3 {
    font-size: 14px;
    font-weight: 700;
    color: var(--lp-white);
    margin: 0 0 8px;
}

.lp-import-instructions ol {
    margin: 0;
    padding-left: 18px;
    color: var(--lp-muted);
}

.lp-import-instructions li {
    margin-bottom: 4px;
}

.lp-file-drop {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 32px 20px;
    border: 2px dashed rgba(99,102,241,0.25);
    border-radius: 12px;
    background: rgba(99,102,241,0.04);
    cursor: pointer;
    transition: background var(--lp-transition), border-color var(--lp-transition);
    font-size: 14px;
    color: var(--lp-muted);
    margin-bottom: 16px;
    text-align: center;
}

.lp-file-drop:hover {
    background: rgba(99,102,241,0.08);
    border-color: rgba(99,102,241,0.45);
}

.lp-file-drop-icon {
    font-size: 36px;
    line-height: 1;
    margin-bottom: 4px;
}

.lp-file-hint {
    font-size: 12px;
    color: rgba(128,128,168,0.6);
}

.lp-import-preview {
    background: rgba(16,185,129,0.07);
    border: 1px solid rgba(16,185,129,0.25);
    border-radius: 10px;
    padding: 12px 16px;
    margin-bottom: 16px;
    font-size: 13px;
}

.lp-import-preview-header {
    font-weight: 700;
    color: var(--lp-emerald);
    margin-bottom: 4px;
}

.lp-import-note {
    color: var(--lp-muted);
    font-size: 12px;
    line-height: 1.5;
    margin: 0;
}

/* ── Photo Page ── */
.lp-ai-badge-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

/* ── Complete Page ── */
.lp-complete-emoji {
    font-size: 56px;
    line-height: 1;
    margin-bottom: 16px;
    display: block;
    text-align: center;
}

.lp-slug-link {
    color: #a5b4fc;
    background: rgba(99,102,241,0.12);
    border-radius: 6px;
    padding: 2px 8px;
    font-size: 14px;
    font-family: 'Courier New', monospace;
}

.lp-copy-btn {
    display: inline-flex;
    align-items: center;
    padding: 3px 10px;
    margin-left: 8px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 6px;
    color: var(--lp-muted);
    font-size: 12px;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: background var(--lp-transition), color var(--lp-transition);
    vertical-align: middle;
}

.lp-copy-btn:hover {
    background: rgba(255,255,255,0.1);
    color: var(--lp-text);
}

.lp-checklist {
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--lp-border);
    border-radius: 12px;
    overflow: hidden;
    margin: 24px 0;
    text-align: left;
}

.lp-checklist-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    font-size: 13px;
    font-weight: 700;
    color: var(--lp-text);
    background: rgba(255,255,255,0.03);
    border-bottom: 1px solid var(--lp-border);
}

.lp-checklist-progress {
    font-size: 12px;
    font-weight: 600;
    color: var(--lp-muted);
}

.lp-checklist-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    font-size: 14px;
    color: var(--lp-muted);
    border-bottom: 1px solid rgba(255,255,255,0.04);
    transition: color var(--lp-transition);
}

.lp-checklist-item:last-child {
    border-bottom: none;
}

.lp-checklist-item.completed {
    color: var(--lp-text);
}

.lp-check {
    font-size: 16px;
    flex-shrink: 0;
    width: 20px;
    text-align: center;
}

.lp-ai-status {
    background: rgba(79,70,229,0.08);
    border: 1px solid rgba(99,102,241,0.2);
    border-radius: 12px;
    padding: 16px 18px;
    margin-bottom: 24px;
    text-align: left;
    font-size: 13px;
    color: var(--lp-muted);
    line-height: 1.6;
}

.lp-ai-status p {
    margin: 6px 0 0;
}

.lp-ai-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(99,102,241,0.15);
    border: 1px solid rgba(99,102,241,0.3);
    border-radius: 100px;
    padding: 3px 10px;
    font-size: 12px;
    font-weight: 700;
    color: #a5b4fc;
    letter-spacing: 0.02em;
}

.lp-complete-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 4px;
}

.lp-complete-actions .lp-auth-submit {
    margin-top: 0;
}

.lp-complete-actions .lp-btn-ghost {
    width: 100%;
    text-align: center;
}

/* ── Responsive ── */
@media (max-width: 900px) {
    .lp-bento-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .lp-bento-large,
    .lp-bento-right {
        grid-column: span 2;
    }

    .lp-testimonials-grid,
    .lp-pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .lp-how-steps {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .lp-how-steps::before { display: none; }

    .lp-footer-top {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .lp-pricing-card.featured {
        transform: none;
    }

    .lp-mockup-screen {
        grid-template-columns: 1fr;
    }
    .lp-mockup-sidebar { display: none; }

    .lp-stat-divider { display: none; }
    .lp-stats-inner { gap: 24px; }
    .lp-stat { padding: 0 16px; }
    .lp-float-badge { display: none; }

    /* Setup wizard */
    .lp-choice-grid {
        grid-template-columns: 1fr;
    }

    .lp-import-source-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .lp-bento-grid {
        grid-template-columns: 1fr;
    }

    .lp-bento-large,
    .lp-bento-right {
        grid-column: span 1;
    }

    .lp-testimonials-grid,
    .lp-pricing-grid {
        grid-template-columns: 1fr;
    }

    .lp-footer-links {
        grid-template-columns: repeat(2, 1fr);
    }

    .lp-hero {
        padding: 80px 16px 48px;
    }

    .lp-section {
        padding: 64px 16px;
    }

    .lp-nav-links .lp-btn-ghost { display: none; }

    .lp-footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .lp-auth-card {
        padding: 28px 20px;
    }

    .lp-hero-orb { display: none; }
    .lp-hero-orb-3 { display: none; }
    .lp-scroll-indicator { display: none; }

    /* Setup wizard */
    .lp-setup-card,
    .lp-setup-card-wide,
    .lp-setup-choice-card,
    .lp-setup-complete-card {
        padding: 28px 20px;
    }

    .lp-biz-type-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .lp-service-header,
    .lp-service-row {
        grid-template-columns: 2fr 90px 80px 32px;
    }

    .lp-service-header span:nth-child(4),
    .lp-service-row .lp-table-input:nth-child(4) {
        display: none;
    }

    .lp-setup-actions {
        flex-direction: column-reverse;
        align-items: stretch;
    }

    .lp-setup-actions .lp-auth-submit {
        max-width: 100%;
    }

    .lp-setup-row {
        flex-direction: column;
    }

    .lp-setup-row .lp-field-sm {
        flex: none;
        width: 100%;
    }

    .lp-setup-line {
        width: 28px;
    }

    .lp-choice-grid {
        grid-template-columns: 1fr;
    }

    .lp-import-source-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
