:root {
    --lp-bg: #0b0f17;
    --lp-bg-soft: #111827;
    --lp-surface: rgba(255, 255, 255, 0.06);
    --lp-surface-strong: rgba(255, 255, 255, 0.1);
    --lp-border: rgba(255, 255, 255, 0.1);
    --lp-text: #f8fafc;
    --lp-muted: #94a3b8;
    --lp-accent: #6366f1;
    --lp-accent-2: #22d3ee;
    --lp-accent-3: #f97316;
    --lp-success: #34d399;
    --lp-radius: 18px;
    --lp-font: "Plus Jakarta Sans", "Segoe UI", sans-serif;
    --lp-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

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

html {
    scroll-behavior: smooth;
}

body.lp-body {
    margin: 0;
    font-family: var(--lp-font);
    background: var(--lp-bg);
    color: var(--lp-text);
    -webkit-font-smoothing: antialiased;
}

.lp-wrap {
    overflow-x: hidden;
    background:
        radial-gradient(ellipse 70% 50% at 10% -10%, rgba(99, 102, 241, 0.22), transparent),
        radial-gradient(ellipse 50% 40% at 100% 0%, rgba(34, 211, 238, 0.12), transparent),
        radial-gradient(ellipse 40% 30% at 50% 100%, rgba(249, 115, 22, 0.08), transparent),
        var(--lp-bg);
}

.lp-container {
    width: min(1140px, calc(100% - 32px));
    margin: 0 auto;
}

.lp-nav {
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    background: rgba(11, 15, 23, 0.82);
    border-bottom: 1px solid var(--lp-border);
}

.lp-nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    min-height: 68px;
}

.lp-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--lp-text);
    font-weight: 800;
    letter-spacing: -0.03em;
}

.lp-brand-icon {
    width: 36px;
    height: 36px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--lp-accent), var(--lp-accent-2));
    color: #fff;
    font-size: 1rem;
}

.lp-nav-links {
    display: none;
    align-items: center;
    gap: 24px;
}

.lp-nav-links a {
    color: var(--lp-muted);
    text-decoration: none;
    font-size: 0.92rem;
    font-weight: 600;
    transition: color 0.2s;
}

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

.lp-nav-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.lp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 11px 18px;
    border-radius: 999px;
    font-size: 0.88rem;
    font-weight: 700;
    text-decoration: none;
    border: 1px solid transparent;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}

.lp-btn:hover {
    transform: translateY(-1px);
}

.lp-btn-primary {
    background: linear-gradient(135deg, var(--lp-accent), #818cf8);
    color: #fff;
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.35);
}

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

.lp-btn-ghost:hover {
    background: var(--lp-surface);
}

.lp-hero {
    padding: 56px 0 72px;
}

.lp-hero-grid {
    display: grid;
    gap: 40px;
    align-items: center;
}

.lp-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    border-radius: 999px;
    background: var(--lp-surface);
    border: 1px solid var(--lp-border);
    color: var(--lp-accent-2);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.lp-hero h1 {
    margin: 0;
    font-size: clamp(2rem, 5vw, 3.4rem);
    line-height: 1.08;
    letter-spacing: -0.04em;
    font-weight: 800;
}

.lp-hero h1 span {
    background: linear-gradient(135deg, #fff 0%, #c7d2fe 45%, #67e8f9 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.lp-hero-lead {
    margin: 18px 0 0;
    max-width: 34rem;
    color: var(--lp-muted);
    font-size: 1.05rem;
    line-height: 1.65;
}

.lp-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.lp-hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid var(--lp-border);
}

.lp-stat strong {
    display: block;
    font-size: 1.35rem;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.lp-stat span {
    color: var(--lp-muted);
    font-size: 0.82rem;
}

.lp-phone-mock {
    position: relative;
    width: 300px;
    max-width: 100%;
    margin: 0 auto;
    flex-shrink: 0;
}

.lp-phone-frame {
    border-radius: 32px;
    padding: 12px;
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.04));
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow: var(--lp-shadow);
}

.lp-phone-screen {
    height: 440px;
    border-radius: 24px;
    overflow: hidden;
    background: #151a24;
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    flex-direction: column;
}

.lp-chat-demo {
    height: 100%;
    min-height: 0;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 0;
    box-sizing: border-box;
}

.lp-chat-messages {
    flex: 1 1 auto;
    min-height: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    overflow-y: auto;
    overflow-x: hidden;
    padding-top: 4px;
    scroll-behavior: smooth;
}

.lp-chat-messages::-webkit-scrollbar {
    width: 0;
    height: 0;
}

.lp-bubble {
    max-width: 88%;
    padding: 10px 12px;
    border-radius: 14px;
    font-size: 0.78rem;
    line-height: 1.45;
    opacity: 0;
    transform: translateY(6px);
    animation: lpBubbleIn 0.35s ease forwards;
}

.lp-bubble.is-typing-cursor::after {
    content: "";
    display: inline-block;
    width: 2px;
    height: 0.9em;
    margin-left: 2px;
    vertical-align: text-bottom;
    background: currentColor;
    opacity: 0.7;
    animation: lpCursorBlink 0.8s step-end infinite;
}

.lp-typing {
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 10px 14px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.lp-typing span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.45);
    animation: lpTypingDot 1.1s ease-in-out infinite;
}

.lp-typing span:nth-child(2) {
    animation-delay: 0.15s;
}

.lp-typing span:nth-child(3) {
    animation-delay: 0.3s;
}

@keyframes lpBubbleIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes lpTypingDot {
    0%, 60%, 100% {
        opacity: 0.35;
        transform: translateY(0);
    }
    30% {
        opacity: 1;
        transform: translateY(-3px);
    }
}

@keyframes lpCursorBlink {
    50% {
        opacity: 0;
    }
}

@media (prefers-reduced-motion: reduce) {
    .lp-bubble {
        animation: none;
        opacity: 1;
        transform: none;
    }

    .lp-bubble.is-typing-cursor::after {
        display: none;
    }
}

.lp-chat-header {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 4px;
}

.lp-chat-avatar {
    width: 34px;
    height: 34px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--lp-accent), var(--lp-accent-2));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

.lp-chat-header strong {
    display: block;
    font-size: 0.88rem;
}

.lp-chat-header small {
    color: var(--lp-muted);
    font-size: 0.72rem;
}

.lp-bubble-user {
    align-self: flex-end;
    background: rgba(99, 102, 241, 0.25);
    border: 1px solid rgba(129, 140, 248, 0.35);
}

.lp-bubble-ai {
    align-self: flex-start;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.lp-bubble-ai em {
    color: var(--lp-success);
    font-style: normal;
    font-weight: 700;
}

.lp-glow {
    position: absolute;
    inset: auto -20% -20% -20%;
    height: 120px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.35), transparent 70%);
    filter: blur(24px);
    pointer-events: none;
}

.lp-section {
    padding: 72px 0;
}

.lp-section-head {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 40px;
}

.lp-section-head h2 {
    margin: 0 0 12px;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    letter-spacing: -0.03em;
    font-weight: 800;
}

.lp-section-head p {
    margin: 0;
    color: var(--lp-muted);
    line-height: 1.6;
}

.lp-ai-grid {
    display: grid;
    gap: 16px;
}

.lp-ai-card {
    padding: 22px;
    border-radius: var(--lp-radius);
    background: var(--lp-surface);
    border: 1px solid var(--lp-border);
    transition: transform 0.2s, border-color 0.2s;
}

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

.lp-ai-icon {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    font-size: 1.15rem;
}

.lp-ai-icon-purple { background: rgba(99, 102, 241, 0.18); color: #a5b4fc; }
.lp-ai-icon-cyan { background: rgba(34, 211, 238, 0.15); color: #67e8f9; }
.lp-ai-icon-orange { background: rgba(249, 115, 22, 0.15); color: #fdba74; }
.lp-ai-icon-green { background: rgba(52, 211, 153, 0.15); color: #6ee7b7; }
.lp-ai-icon-pink { background: rgba(236, 72, 153, 0.15); color: #f9a8d4; }
.lp-ai-icon-blue { background: rgba(59, 130, 246, 0.15); color: #93c5fd; }

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

.lp-ai-card p {
    margin: 0;
    color: var(--lp-muted);
    font-size: 0.92rem;
    line-height: 1.55;
}

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

.lp-text-gradient {
    background: linear-gradient(135deg, #c7d2fe 0%, #67e8f9 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.lp-onboarding {
    position: relative;
}

.lp-onboarding::before {
    content: "";
    position: absolute;
    inset: 10% 0 40%;
    background: radial-gradient(ellipse 60% 50% at 50% 50%, rgba(99, 102, 241, 0.12), transparent 70%);
    pointer-events: none;
}

.lp-onboarding .lp-container {
    position: relative;
    z-index: 1;
}

.lp-onboard-split {
    display: grid;
    gap: 28px;
    margin-bottom: 28px;
}

.lp-onboard-paths {
    display: grid;
    gap: 16px;
}

.lp-onboard-path {
    padding: 22px;
    border-radius: var(--lp-radius);
    background: var(--lp-surface);
    border: 1px solid var(--lp-border);
}

.lp-onboard-path-new {
    border-color: rgba(52, 211, 153, 0.25);
    background: linear-gradient(145deg, rgba(52, 211, 153, 0.08), rgba(255, 255, 255, 0.03));
}

.lp-onboard-path-migrate {
    border-color: rgba(34, 211, 238, 0.25);
    background: linear-gradient(145deg, rgba(34, 211, 238, 0.08), rgba(255, 255, 255, 0.03));
}

.lp-onboard-path-head {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 12px;
}

.lp-onboard-path-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    flex-shrink: 0;
}

.lp-onboard-path-icon-green {
    background: rgba(52, 211, 153, 0.18);
    color: #6ee7b7;
}

.lp-onboard-path-icon-cyan {
    background: rgba(34, 211, 238, 0.18);
    color: #67e8f9;
}

.lp-onboard-path-label {
    display: block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--lp-muted);
    margin-bottom: 2px;
}

.lp-onboard-path h3 {
    margin: 0;
    font-size: 1.15rem;
}

.lp-onboard-path p {
    margin: 0 0 14px;
    color: var(--lp-muted);
    font-size: 0.92rem;
    line-height: 1.55;
}

.lp-onboard-tags {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.lp-onboard-tags li {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--lp-border);
    font-size: 0.78rem;
    color: var(--lp-text);
}

.lp-onboard-tags i {
    color: var(--lp-success);
    font-size: 0.85rem;
}

.lp-onboard-join {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--lp-muted);
}

.lp-onboard-join span {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--lp-border), transparent);
}

.lp-onboard-join i {
    font-size: 1.25rem;
    color: var(--lp-accent-2);
}

.lp-onboard-pipeline-wrap {
    padding: 22px;
    border-radius: var(--lp-radius);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--lp-border);
}

.lp-onboard-pipeline-title {
    margin: 0 0 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--lp-muted);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.lp-onboard-pipeline {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    position: relative;
}

.lp-onboard-pipeline::before {
    content: "";
    position: absolute;
    inset: 18px;
    border: 1px dashed rgba(99, 102, 241, 0.25);
    border-radius: 14px;
    pointer-events: none;
}

.lp-pipeline-step {
    position: relative;
    z-index: 1;
    padding: 16px 12px;
    border-radius: 14px;
    background: rgba(11, 15, 23, 0.65);
    border: 1px solid var(--lp-border);
    text-align: center;
}

.lp-pipeline-icon {
    width: 42px;
    height: 42px;
    margin: 0 auto 10px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
}

.lp-pipeline-icon-purple { background: rgba(99, 102, 241, 0.2); color: #a5b4fc; }
.lp-pipeline-icon-orange { background: rgba(249, 115, 22, 0.2); color: #fdba74; }
.lp-pipeline-icon-blue { background: rgba(59, 130, 246, 0.2); color: #93c5fd; }
.lp-pipeline-icon-pink { background: rgba(236, 72, 153, 0.2); color: #f9a8d4; }

.lp-pipeline-step strong {
    display: block;
    font-size: 0.88rem;
    margin-bottom: 4px;
}

.lp-pipeline-step span {
    display: block;
    font-size: 0.75rem;
    color: var(--lp-muted);
    line-height: 1.35;
}

.lp-onboard-finish {
    display: grid;
    gap: 24px;
    align-items: center;
    padding: 24px;
    border-radius: calc(var(--lp-radius) + 4px);
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.14), rgba(34, 211, 238, 0.08));
    border: 1px solid rgba(99, 102, 241, 0.28);
}

.lp-onboard-finish-visual {
    display: flex;
    justify-content: center;
}

.lp-onboard-phone {
    width: 160px;
    padding: 10px;
    border-radius: 22px;
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.04));
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: var(--lp-shadow);
}

.lp-onboard-phone-screen {
    border-radius: 16px;
    background: #151a24;
    padding: 12px 10px;
    min-height: 180px;
}

.lp-onboard-phone-bar {
    height: 8px;
    width: 42%;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    margin-bottom: 12px;
}

.lp-onboard-phone-row {
    height: 6px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    margin-bottom: 8px;
}

.lp-onboard-phone-row.short {
    width: 65%;
    margin-bottom: 14px;
}

.lp-onboard-phone-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
}

.lp-onboard-phone-grid span {
    height: 52px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.lp-onboard-finish-badge {
    display: inline-block;
    padding: 5px 12px;
    border-radius: 999px;
    background: rgba(99, 102, 241, 0.22);
    border: 1px solid rgba(129, 140, 248, 0.35);
    color: #c7d2fe;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.lp-onboard-finish-copy h3 {
    margin: 0 0 10px;
    font-size: clamp(1.25rem, 3vw, 1.6rem);
    letter-spacing: -0.03em;
}

.lp-onboard-finish-copy p {
    margin: 0 0 16px;
    color: var(--lp-muted);
    line-height: 1.6;
    max-width: 36rem;
}

.lp-onboard-theme-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 18px;
}

.lp-onboard-theme-chip {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.lp-onboard-theme-more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--lp-muted);
}

.lp-steps {
    display: grid;
    gap: 16px;
}

.lp-step {
    display: flex;
    gap: 16px;
    padding: 20px;
    border-radius: var(--lp-radius);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--lp-border);
}

.lp-step-num {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--lp-accent), var(--lp-accent-2));
    font-weight: 800;
    font-size: 0.95rem;
}

.lp-step h3 {
    margin: 0 0 6px;
    font-size: 1rem;
}

.lp-step p {
    margin: 0;
    color: var(--lp-muted);
    font-size: 0.9rem;
    line-height: 1.5;
}

.lp-themes-wrap {
    position: relative;
}

.lp-themes-nav {
    position: absolute;
    top: 50%;
    z-index: 3;
    width: 40px;
    height: 40px;
    margin-top: -20px;
    border: 1px solid var(--lp-border);
    border-radius: 999px;
    background: rgba(15, 20, 30, 0.92);
    color: var(--lp-text);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s, opacity 0.2s;
    box-shadow: var(--lp-shadow);
}

.lp-themes-nav:hover {
    border-color: rgba(99, 102, 241, 0.45);
    background: rgba(25, 32, 48, 0.98);
}

.lp-themes-nav:disabled {
    opacity: 0.35;
    cursor: default;
}

.lp-themes-nav-prev {
    left: -6px;
}

.lp-themes-nav-next {
    right: -6px;
}

.lp-themes-scroll {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    padding: 8px 28px 16px;
    scroll-snap-type: x proximity;
    scroll-behavior: smooth;
    scrollbar-width: none;
    cursor: grab;
    touch-action: pan-x;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
}

.lp-themes-scroll.is-grabbing {
    cursor: grabbing;
    scroll-snap-type: none;
}

.lp-themes-scroll.is-grabbing .lp-theme-card {
    pointer-events: none;
}

.lp-themes-scroll::-webkit-scrollbar {
    display: none;
}

.lp-theme-card {
    flex: 0 0 208px;
    scroll-snap-align: start;
    text-decoration: none;
    color: inherit;
    border-radius: 16px;
    overflow: hidden;
    background: var(--lp-surface);
    border: 1px solid var(--lp-border);
    transition: transform 0.2s, border-color 0.2s;
    user-select: none;
    -webkit-user-drag: none;
}

.lp-theme-card:hover {
    transform: translateY(-4px);
    border-color: rgba(99, 102, 241, 0.4);
}

.lp-theme-phone {
    position: relative;
    width: 100%;
    height: 320px;
    background: #0a0c10;
    overflow: hidden;
    border-bottom: 1px solid var(--lp-border);
}

.lp-theme-phone-notch {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 36%;
    height: 12px;
    background: #0a0c10;
    border-radius: 0 0 9px 9px;
    z-index: 2;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.lp-theme-phone iframe {
    width: 375px;
    height: 667px;
    border: 0;
    transform: scale(0.555);
    transform-origin: top left;
    pointer-events: none;
    background: #fff;
}

.lp-theme-preview {
    height: 220px;
    position: relative;
}

.lp-theme-preview::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.35));
}

.lp-theme-meta {
    padding: 12px;
}

.lp-theme-meta strong {
    display: block;
    font-size: 0.82rem;
    margin-bottom: 4px;
}

.lp-theme-meta span {
    color: var(--lp-muted);
    font-size: 0.72rem;
    line-height: 1.35;
}

.lp-theme-t1 { background: linear-gradient(160deg, #374151, #111827); }
.lp-theme-t2 { background: linear-gradient(160deg, #4b5563, #1f2937); }
.lp-theme-t3 { background: linear-gradient(160deg, #111827, #991b1b); }
.lp-theme-t4 { background: linear-gradient(160deg, #ffffff, #fecaca); }
.lp-theme-t5 { background: linear-gradient(160deg, #faf8f5, #5c6b4a); }
.lp-theme-t6 { background: linear-gradient(160deg, #0f1115, #2dd4bf); }
.lp-theme-t7 { background: linear-gradient(160deg, #f6f7fb, #6366f1); }
.lp-theme-t8 { background: linear-gradient(160deg, #14110f, #d4a853); }
.lp-theme-t9 { background: linear-gradient(160deg, #f4f4f5, #f97316); }
.lp-theme-t10 { background: linear-gradient(160deg, #faf9f6, #6b9080); }

.lp-cta {
    padding: 56px 0 80px;
}

.lp-cta-box {
    text-align: center;
    padding: 48px 24px;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.18), rgba(34, 211, 238, 0.1));
    border: 1px solid rgba(129, 140, 248, 0.25);
    box-shadow: var(--lp-shadow);
}

.lp-cta-box h2 {
    margin: 0 0 12px;
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    letter-spacing: -0.03em;
}

.lp-cta-box p {
    margin: 0 auto 24px;
    max-width: 520px;
    color: var(--lp-muted);
    line-height: 1.6;
}

.lp-footer {
    border-top: 1px solid var(--lp-border);
    padding: 28px 0 40px;
    color: var(--lp-muted);
    font-size: 0.85rem;
    text-align: center;
}

.lp-hide-mobile {
    display: none;
}

@media (max-width: 767px) {
    .lp-themes-nav-prev {
        left: 4px;
    }

    .lp-themes-nav-next {
        right: 4px;
    }

    .lp-themes-scroll {
        padding-left: 20px;
        padding-right: 20px;
    }
}

@media (min-width: 768px) {
    .lp-hide-mobile {
        display: inline-flex;
    }

    .lp-nav-links {
        display: flex;
    }

    .lp-hero-grid {
        grid-template-columns: 1.05fr 0.95fr;
    }

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

    .lp-onboard-paths {
        grid-template-columns: 1fr auto 1fr;
        align-items: stretch;
    }

    .lp-onboard-join {
        display: flex;
        flex-direction: column;
        padding: 0 4px;
    }

    .lp-onboard-join span {
        flex: 1;
        width: 1px;
        height: auto;
        background: linear-gradient(180deg, transparent, var(--lp-border), transparent);
    }

    .lp-onboard-split {
        grid-template-columns: 1.05fr 0.95fr;
        align-items: start;
    }

    .lp-onboard-pipeline {
        grid-template-columns: repeat(4, 1fr);
    }

    .lp-onboard-pipeline::before {
        inset: 50% 8% auto;
        height: 0;
        border: none;
        border-top: 2px dashed rgba(99, 102, 241, 0.3);
        transform: translateY(-50%);
    }

    .lp-onboard-finish {
        grid-template-columns: 220px 1fr;
        padding: 28px 32px;
    }

    .lp-steps {
        grid-template-columns: repeat(3, 1fr);
    }

    .lp-step {
        flex-direction: column;
    }
}

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

.lp-modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.2s ease, visibility 0.2s ease;
}

.lp-modal.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

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

.lp-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(3, 6, 14, 0.72);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.lp-modal-dialog {
    position: relative;
    width: min(480px, 100%);
    max-height: calc(100vh - 40px);
    overflow-y: auto;
    border-radius: calc(var(--lp-radius) + 4px);
    background: #121826;
    border: 1px solid var(--lp-border);
    box-shadow: var(--lp-shadow);
    padding: 24px;
}

.lp-modal-close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 36px;
    height: 36px;
    border: 0;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.06);
    color: var(--lp-muted);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background 0.15s, color 0.15s;
}

.lp-modal-close:hover {
    background: rgba(255, 255, 255, 0.12);
    color: var(--lp-text);
}

.lp-modal-head {
    margin-bottom: 20px;
    padding-right: 36px;
}

.lp-modal-head h2 {
    margin: 10px 0 8px;
    font-size: 1.45rem;
    letter-spacing: -0.03em;
}

.lp-modal-head p {
    margin: 0;
    color: var(--lp-muted);
    font-size: 0.92rem;
    line-height: 1.55;
}

.lp-apply-form {
    display: grid;
    gap: 14px;
}

.lp-form-alert {
    padding: 10px 12px;
    border-radius: 10px;
    background: rgba(248, 113, 113, 0.12);
    border: 1px solid rgba(248, 113, 113, 0.35);
    color: #fecaca;
    font-size: 0.84rem;
    line-height: 1.45;
}

.lp-apply-grid {
    display: grid;
    gap: 14px;
}

.lp-field label {
    display: block;
    margin-bottom: 6px;
    font-size: 0.84rem;
    font-weight: 600;
}

.lp-required {
    color: #f87171;
}

.lp-optional {
    color: var(--lp-muted);
    font-weight: 500;
    font-size: 0.78rem;
}

.lp-field input {
    width: 100%;
    padding: 11px 12px;
    border-radius: 12px;
    border: 1px solid var(--lp-border);
    background: rgba(255, 255, 255, 0.04);
    color: var(--lp-text);
    font: inherit;
    font-size: 0.92rem;
    transition: border-color 0.15s, box-shadow 0.15s;
}

.lp-field input::placeholder {
    color: rgba(148, 163, 184, 0.65);
}

.lp-field input:focus {
    outline: none;
    border-color: rgba(99, 102, 241, 0.55);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.18);
}

.lp-field input.is-invalid {
    border-color: rgba(248, 113, 113, 0.65);
}

.lp-field-error {
    display: block;
    min-height: 18px;
    margin-top: 4px;
    font-size: 0.76rem;
    color: #fca5a5;
}

.lp-btn-block {
    width: 100%;
    margin-top: 4px;
}

.lp-btn-block:disabled {
    opacity: 0.65;
    cursor: not-allowed;
}

.lp-modal-success {
    text-align: center;
    padding: 12px 8px 4px;
}

.lp-modal-success-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 14px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(52, 211, 153, 0.15);
    color: var(--lp-success);
    font-size: 1.8rem;
}

.lp-modal-success h3 {
    margin: 0 0 8px;
    font-size: 1.25rem;
}

.lp-modal-success p {
    margin: 0 0 18px;
    color: var(--lp-muted);
    line-height: 1.55;
}

@media (min-width: 540px) {
    .lp-apply-grid {
        grid-template-columns: 1fr 1fr;
    }
}
