/* ==========================================================================
   Elite Apply V2 - Landing Page
   Standalone stylesheet, deliberately separate from dashboard/style.css so
   nothing here can ever regress the internal app's look.
   ========================================================================== */

:root {
    --lp-bg: #050308;
    --lp-bg-elevated: #0c0814;
    --lp-purple: #8b5cf6;
    --lp-purple-bright: #a78bfa;
    --lp-purple-dark: #6d28d9;
    --lp-blue: #5865f2;
    --lp-blue-bright: #7c8cff;
    --lp-text: #f5f3ff;
    --lp-text-dim: #b9b3d1;
    --lp-text-muted: #7d7796;
    --lp-border: rgba(139, 92, 246, 0.18);
    --lp-border-strong: rgba(139, 92, 246, 0.4);
    --lp-glass: rgba(20, 14, 32, 0.55);
    --lp-glass-strong: rgba(26, 18, 41, 0.75);
    --lp-success: #4ade80;
    --lp-danger: #f87171;
    --lp-warning: #fbbf24;
    --lp-radius-sm: 12px;
    --lp-radius-md: 20px;
    --lp-radius-lg: 28px;
}

.lp-body {
    background: var(--lp-bg);
    color: var(--lp-text);
    font-family: "Inter", "gg sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    overflow-x: hidden;
    position: relative;
}

.lp-body * {
    box-sizing: border-box;
}

.lp-container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 2;
}

/* ---------------------------------------------------------------------- */
/* Aurora background + particle canvas                                    */
/* ---------------------------------------------------------------------- */

.lp-aurora {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.lp-aurora::before,
.lp-aurora::after {
    content: "";
    position: absolute;
    width: 900px;
    height: 900px;
    border-radius: 50%;
    filter: blur(140px);
    opacity: 0.35;
    animation: lp-aurora-float 22s ease-in-out infinite alternate;
}

.lp-aurora::before {
    background: radial-gradient(circle, var(--lp-purple), transparent 70%);
    top: -300px;
    left: -200px;
}

.lp-aurora::after {
    background: radial-gradient(circle, var(--lp-blue), transparent 70%);
    bottom: -350px;
    right: -250px;
    animation-delay: -11s;
}

@keyframes lp-aurora-float {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(60px, 80px) scale(1.15); }
}

#lp-particles {
    position: fixed;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

/* ---------------------------------------------------------------------- */
/* Glass primitives                                                       */
/* ---------------------------------------------------------------------- */

.lp-glass {
    background: var(--lp-glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--lp-border);
    border-radius: var(--lp-radius-md);
}

.lp-glass-strong {
    background: var(--lp-glass-strong);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid var(--lp-border-strong);
    border-radius: var(--lp-radius-lg);
}

.lp-gradient-text {
    background: linear-gradient(135deg, var(--lp-purple-bright), var(--lp-blue-bright));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.lp-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 16px;
    border-radius: 999px;
    background: rgba(139, 92, 246, 0.12);
    border: 1px solid var(--lp-border-strong);
    font-size: 13px;
    font-weight: 600;
    color: var(--lp-purple-bright);
}

.lp-badge .lp-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--lp-success);
    box-shadow: 0 0 8px var(--lp-success);
}

/* ---------------------------------------------------------------------- */
/* Buttons                                                                 */
/* ---------------------------------------------------------------------- */

.lp-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 14px;
    font-weight: 600;
    font-size: 15px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    white-space: nowrap;
}

.lp-btn:hover {
    transform: translateY(-2px);
    text-decoration: none;
}

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

.lp-btn-primary {
    background: linear-gradient(135deg, var(--lp-purple), var(--lp-purple-dark));
    color: #fff;
    box-shadow: 0 8px 30px rgba(139, 92, 246, 0.4);
}

.lp-btn-primary:hover {
    box-shadow: 0 12px 40px rgba(139, 92, 246, 0.6);
    color: #fff;
}

.lp-btn-secondary {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--lp-border-strong);
    color: var(--lp-text);
}

.lp-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
}

.lp-btn-sm {
    padding: 10px 18px;
    font-size: 13px;
    border-radius: 10px;
}

.lp-btn .lp-ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    transform: scale(0);
    animation: lp-ripple 0.6s ease-out;
    pointer-events: none;
}

@keyframes lp-ripple {
    to {
        transform: scale(3);
        opacity: 0;
    }
}

/* ---------------------------------------------------------------------- */
/* Navbar                                                                  */
/* ---------------------------------------------------------------------- */

.lp-navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 16px 0;
    transition: background 0.3s ease, border-color 0.3s ease, padding 0.3s ease;
    border-bottom: 1px solid transparent;
}

.lp-navbar.lp-scrolled {
    background: rgba(5, 3, 8, 0.85);
    backdrop-filter: blur(16px);
    border-bottom-color: var(--lp-border);
    padding: 10px 0;
}

.lp-navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.lp-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    font-size: 18px;
    color: #fff;
    text-decoration: none;
}

.lp-logo img {
    width: 34px;
    height: 34px;
    border-radius: 9px;
    box-shadow: 0 0 18px rgba(139, 92, 246, 0.5);
}

.lp-logo .lp-v2 {
    color: var(--lp-purple-bright);
}

.lp-nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.lp-nav-links a {
    color: var(--lp-text-dim);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.15s ease;
}

.lp-nav-links a:hover {
    color: #fff;
}

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

.lp-nav-toggle {
    display: none;
    background: none;
    border: 1px solid var(--lp-border-strong);
    border-radius: 10px;
    color: #fff;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.lp-mobile-menu {
    display: none;
    position: fixed;
    top: 64px;
    left: 16px;
    right: 16px;
    z-index: 99;
    padding: 20px;
    flex-direction: column;
    gap: 16px;
}

.lp-mobile-menu.lp-open {
    display: flex;
}

.lp-mobile-menu a {
    color: var(--lp-text-dim);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
}

/* ---------------------------------------------------------------------- */
/* Hero                                                                    */
/* ---------------------------------------------------------------------- */

.lp-hero {
    padding: 170px 0 100px;
    position: relative;
}

.lp-hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.lp-hero h1 {
    font-size: 56px;
    line-height: 1.08;
    font-weight: 800;
    letter-spacing: -1.5px;
    margin: 20px 0;
}

.lp-hero p.lp-subtitle {
    font-size: 18px;
    line-height: 1.6;
    color: var(--lp-text-dim);
    max-width: 540px;
    margin-bottom: 32px;
}

.lp-hero-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 28px;
}

.lp-hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.lp-hero-trust span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--lp-text-muted);
}

.lp-hero-trust svg {
    width: 15px;
    height: 15px;
    color: var(--lp-purple-bright);
}

.lp-workflow {
    position: relative;
    height: 480px;
}

.lp-workflow-step {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 20px;
    margin-bottom: 46px;
    width: 78%;
    opacity: 0;
    transform: translateX(30px);
    animation: lp-step-in 0.7s ease forwards;
}

.lp-workflow-step:nth-child(1) { animation-delay: 0.2s; }
.lp-workflow-step:nth-child(2) { animation-delay: 0.5s; margin-left: 10%; }
.lp-workflow-step:nth-child(3) { animation-delay: 0.8s; }
.lp-workflow-step:nth-child(4) { animation-delay: 1.1s; margin-left: 10%; }

@keyframes lp-step-in {
    to { opacity: 1; transform: translateX(0); }
}

.lp-workflow-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.lp-workflow-icon svg {
    width: 20px;
    height: 20px;
}

.lp-workflow-step-title {
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 2px;
}

.lp-workflow-step-sub {
    font-size: 12px;
    color: var(--lp-text-muted);
}

.lp-workflow-discord {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 130px;
    height: 130px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.35), transparent 70%);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: lp-pulse-glow 3s ease-in-out infinite;
}

.lp-workflow-discord-inner {
    width: 84px;
    height: 84px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--lp-purple), var(--lp-blue));
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 50px rgba(139, 92, 246, 0.6);
}

.lp-workflow-discord-inner svg {
    width: 40px;
    height: 40px;
    color: #fff;
}

@keyframes lp-pulse-glow {
    0%, 100% { transform: translateY(-50%) scale(1); }
    50% { transform: translateY(-50%) scale(1.08); }
}

/* ---------------------------------------------------------------------- */
/* Section scaffolding                                                    */
/* ---------------------------------------------------------------------- */

.lp-section {
    padding: 110px 0;
    position: relative;
}

.lp-section-tight {
    padding: 70px 0;
}

.lp-section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 60px;
}

.lp-section-header h2 {
    font-size: 38px;
    font-weight: 800;
    letter-spacing: -1px;
    margin: 14px 0;
}

.lp-section-header p {
    font-size: 16px;
    color: var(--lp-text-dim);
    line-height: 1.6;
}

.lp-reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.lp-reveal.lp-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ---------------------------------------------------------------------- */
/* Stats                                                                   */
/* ---------------------------------------------------------------------- */

.lp-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.lp-stat-card {
    padding: 28px 24px;
    text-align: center;
    transition: transform 0.25s ease, border-color 0.25s ease;
}

.lp-stat-card:hover {
    transform: translateY(-6px);
    border-color: var(--lp-border-strong);
}

.lp-stat-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    background: linear-gradient(135deg, var(--lp-purple), var(--lp-purple-dark));
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.4);
}

.lp-stat-icon svg {
    width: 20px;
    height: 20px;
    color: #fff;
}

.lp-stat-value {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 4px;
}

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

/* ---------------------------------------------------------------------- */
/* Feature cards                                                          */
/* ---------------------------------------------------------------------- */

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

.lp-feature-card {
    padding: 30px;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.lp-feature-card:hover {
    transform: translateY(-8px);
    border-color: var(--lp-border-strong);
    box-shadow: 0 20px 50px rgba(139, 92, 246, 0.15);
}

.lp-feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.lp-feature-icon svg {
    width: 22px;
    height: 22px;
    color: #fff;
}

.lp-feature-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
}

.lp-feature-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.lp-feature-card li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--lp-text-dim);
    padding: 5px 0;
}

.lp-feature-card li svg {
    width: 14px;
    height: 14px;
    color: var(--lp-purple-bright);
    flex-shrink: 0;
}

.lp-icon-purple { background: linear-gradient(135deg, #8b5cf6, #6d28d9); }
.lp-icon-orange { background: linear-gradient(135deg, #fb923c, #c2410c); }
.lp-icon-blue   { background: linear-gradient(135deg, #60a5fa, #2563eb); }
.lp-icon-green  { background: linear-gradient(135deg, #4ade80, #15803d); }
.lp-icon-pink   { background: linear-gradient(135deg, #f472b6, #be185d); }
.lp-icon-yellow { background: linear-gradient(135deg, #fbbf24, #b45309); }

/* ---------------------------------------------------------------------- */
/* How it works                                                           */
/* ---------------------------------------------------------------------- */

.lp-steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    align-items: start;
    position: relative;
}

.lp-step-card {
    padding: 28px 22px;
    text-align: left;
    position: relative;
    margin: 0 10px;
}

.lp-step-number {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--lp-purple), var(--lp-purple-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 16px;
    box-shadow: 0 0 16px rgba(139, 92, 246, 0.5);
}

.lp-step-card h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
}

.lp-step-card p {
    font-size: 13px;
    color: var(--lp-text-muted);
    line-height: 1.5;
    margin: 0;
}

.lp-step-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--lp-purple-bright);
    opacity: 0.6;
}

.lp-step-arrow svg {
    width: 22px;
    height: 22px;
}

/* ---------------------------------------------------------------------- */
/* Dashboard showcase                                                     */
/* ---------------------------------------------------------------------- */

.lp-showcase-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 60px;
    align-items: center;
}

.lp-showcase-list {
    list-style: none;
    padding: 0;
    margin: 24px 0 32px;
}

.lp-showcase-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--lp-text-dim);
    padding: 7px 0;
}

.lp-showcase-list svg {
    width: 16px;
    height: 16px;
    color: var(--lp-success);
    flex-shrink: 0;
}

.lp-mockup {
    padding: 14px;
    box-shadow: 0 40px 100px rgba(139, 92, 246, 0.25);
}

.lp-mockup-titlebar {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 10px 14px;
}

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

.lp-mockup-body {
    display: grid;
    grid-template-columns: 190px 1fr;
    gap: 14px;
    background: rgba(0, 0, 0, 0.25);
    border-radius: 14px;
    padding: 14px;
    min-height: 380px;
}

.lp-mockup-sidebar {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.lp-mockup-nav-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 10px;
    border-radius: 8px;
    font-size: 11px;
    color: var(--lp-text-muted);
}

.lp-mockup-nav-item svg {
    width: 13px;
    height: 13px;
}

.lp-mockup-nav-item.lp-active {
    background: rgba(139, 92, 246, 0.18);
    color: #fff;
}

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

.lp-mockup-stat-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.lp-mockup-stat {
    padding: 12px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--lp-border);
}

.lp-mockup-stat .lp-mockup-stat-value {
    font-size: 18px;
    font-weight: 800;
}

.lp-mockup-stat .lp-mockup-stat-label {
    font-size: 10px;
    color: var(--lp-text-muted);
    margin-top: 2px;
}

.lp-mockup-chart {
    flex: 1;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--lp-border);
    padding: 12px;
    display: flex;
    align-items: flex-end;
    gap: 6px;
    min-height: 140px;
}

.lp-mockup-bar {
    flex: 1;
    background: linear-gradient(180deg, var(--lp-purple-bright), var(--lp-purple-dark));
    border-radius: 4px 4px 0 0;
    opacity: 0.85;
}

/* ---------------------------------------------------------------------- */
/* Comparison table                                                       */
/* ---------------------------------------------------------------------- */

.lp-compare-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    overflow: hidden;
    border-radius: var(--lp-radius-md);
}

.lp-compare-table th,
.lp-compare-table td {
    padding: 16px 20px;
    text-align: center;
    border-bottom: 1px solid var(--lp-border);
    font-size: 14px;
}

.lp-compare-table th:first-child,
.lp-compare-table td:first-child {
    text-align: left;
    color: var(--lp-text-dim);
}

.lp-compare-table thead th {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--lp-text-muted);
    background: rgba(255, 255, 255, 0.02);
}

.lp-compare-table thead th.lp-highlight-col {
    color: var(--lp-purple-bright);
}

.lp-compare-table tbody tr:last-child td {
    border-bottom: none;
}

.lp-check-yes {
    color: var(--lp-success);
}

.lp-check-no {
    color: var(--lp-text-muted);
    opacity: 0.4;
}

/* ---------------------------------------------------------------------- */
/* Premium pricing card                                                   */
/* ---------------------------------------------------------------------- */

.lp-pricing-card {
    max-width: 460px;
    margin: 0 auto;
    padding: 44px;
    text-align: center;
    position: relative;
    border-color: var(--lp-border-strong);
    box-shadow: 0 0 80px rgba(139, 92, 246, 0.2);
}

.lp-pricing-card::before {
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(135deg, var(--lp-purple), transparent 40%, transparent 60%, var(--lp-blue));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    opacity: 0.7;
}

.lp-pricing-list {
    list-style: none;
    padding: 0;
    margin: 28px 0 32px;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.lp-pricing-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--lp-text-dim);
}

.lp-pricing-list svg {
    width: 16px;
    height: 16px;
    color: var(--lp-purple-bright);
    flex-shrink: 0;
}

/* ---------------------------------------------------------------------- */
/* Testimonials                                                           */
/* ---------------------------------------------------------------------- */

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

.lp-testimonial-card {
    padding: 28px;
}

.lp-testimonial-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 14px;
    color: var(--lp-warning);
}

.lp-testimonial-stars svg {
    width: 15px;
    height: 15px;
    fill: currentColor;
}

.lp-testimonial-card p.lp-quote {
    font-size: 14px;
    color: var(--lp-text-dim);
    line-height: 1.6;
    margin-bottom: 20px;
}

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

.lp-testimonial-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--lp-purple), var(--lp-blue));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    color: #fff;
}

.lp-testimonial-name {
    font-size: 13px;
    font-weight: 700;
}

.lp-testimonial-role {
    font-size: 12px;
    color: var(--lp-text-muted);
}

/* ---------------------------------------------------------------------- */
/* FAQ accordion                                                          */
/* ---------------------------------------------------------------------- */

.lp-faq-list {
    max-width: 720px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.lp-faq-item {
    padding: 0;
    overflow: hidden;
}

.lp-faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    cursor: pointer;
    font-weight: 600;
    font-size: 15px;
}

.lp-faq-question svg {
    width: 18px;
    height: 18px;
    color: var(--lp-purple-bright);
    transition: transform 0.25s ease;
    flex-shrink: 0;
}

.lp-faq-item.lp-open .lp-faq-question svg {
    transform: rotate(180deg);
}

.lp-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 24px;
    color: var(--lp-text-dim);
    font-size: 14px;
    line-height: 1.6;
}

.lp-faq-item.lp-open .lp-faq-answer {
    max-height: 300px;
    padding: 0 24px 20px;
}

/* ---------------------------------------------------------------------- */
/* Final CTA                                                              */
/* ---------------------------------------------------------------------- */

.lp-cta {
    padding: 90px 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.lp-cta::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(139, 92, 246, 0.3), transparent 60%);
    pointer-events: none;
}

.lp-cta h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 16px;
    position: relative;
}

.lp-cta p {
    color: var(--lp-text-dim);
    margin-bottom: 32px;
    position: relative;
}

.lp-cta-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    position: relative;
}

/* ---------------------------------------------------------------------- */
/* Footer                                                                  */
/* ---------------------------------------------------------------------- */

.lp-footer {
    border-top: 1px solid var(--lp-border);
    padding: 50px 0 30px;
}

.lp-footer-grid {
    display: grid;
    grid-template-columns: 1.4fr repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.lp-footer-brand p {
    color: var(--lp-text-muted);
    font-size: 13px;
    max-width: 280px;
    margin-top: 12px;
}

.lp-footer-col h5 {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--lp-text-muted);
    margin-bottom: 16px;
}

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

.lp-footer-col a {
    color: var(--lp-text-dim);
    text-decoration: none;
    font-size: 14px;
}

.lp-footer-col a:hover {
    color: #fff;
}

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

.lp-footer-socials {
    display: flex;
    gap: 14px;
}

.lp-footer-socials a {
    color: var(--lp-text-muted);
    display: flex;
}

.lp-footer-socials svg {
    width: 18px;
    height: 18px;
}

/* ---------------------------------------------------------------------- */
/* Responsive                                                              */
/* ---------------------------------------------------------------------- */

@media (max-width: 991px) {
    .lp-nav-links { display: none; }
    .lp-nav-toggle { display: flex; }
    .lp-hero-grid { grid-template-columns: 1fr; }
    .lp-workflow { height: auto; margin-top: 40px; }
    .lp-workflow-discord { display: none; }
    .lp-stats-grid { grid-template-columns: repeat(2, 1fr); }
    .lp-features-grid { grid-template-columns: repeat(2, 1fr); }
    .lp-steps-grid { grid-template-columns: repeat(2, 1fr); row-gap: 20px; }
    .lp-step-arrow { display: none; }
    .lp-showcase-grid { grid-template-columns: 1fr; }
    .lp-mockup-body { grid-template-columns: 1fr; }
    .lp-mockup-sidebar { display: none; }
    .lp-testimonials-grid { grid-template-columns: 1fr; }
    .lp-footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
    .lp-hero { padding: 130px 0 70px; }
    .lp-hero h1 { font-size: 36px; }
    .lp-stats-grid { grid-template-columns: 1fr 1fr; }
    .lp-features-grid { grid-template-columns: 1fr; }
    .lp-steps-grid { grid-template-columns: 1fr; }
    .lp-compare-table { font-size: 12px; }
    .lp-compare-table th, .lp-compare-table td { padding: 10px 8px; }
    .lp-footer-grid { grid-template-columns: 1fr; }
    .lp-footer-bottom { flex-direction: column; align-items: flex-start; }
    .lp-cta { padding: 60px 24px; }
    .lp-cta h2 { font-size: 26px; }
}
