/* Landing Page Logic - Lucca-inspired */
:root {
    --brand-orange: #7c5dfa;
    /* FIXED: Violet like Dashboard */
    /* Previously Orange then Green */
    --brand-dark: #1f2937;
    --brand-blue: #2563eb;
    --bg-light: #f5f3ff;
    /* Very subtle violet tint */
}

body.landing-page {
    font-family: 'Outfit', 'Inter', sans-serif;
    /* More rounded/friendly font if available, fallback Inter */
    background-color: #ffffff;
    color: var(--brand-dark);

    /* OVERRIDE GLOBAL FLEX STYLE */
    display: block !important;
    height: auto !important;
    overflow-y: auto !important;
}

/* Header */
.public-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    max-width: 1280px;
    margin: 0 auto;
}

.public-logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--brand-orange);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.public-nav a {
    margin: 0 1rem;
    font-weight: 500;
    color: var(--brand-dark);
}

.public-nav a:hover {
    color: var(--brand-orange);
}

/* Hero Section */
.hero {
    padding: 4rem 2rem;
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 4rem;
    min-height: 80vh;
}

.hero-content {
    flex: 1;
}

.hero-tag {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background-color: #ede9fe;
    /* Light Violet */
    color: var(--brand-orange);
    border-radius: 99px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.hero h1 {
    font-family: 'Inter', sans-serif;
    /* Or a more display font */
    font-size: 3.5rem;
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: #111827;
}

.hero p {
    font-size: 1.25rem;
    color: #4b5563;
    margin-bottom: 2.5rem;
    line-height: 1.6;
    max-width: 600px;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

/* Floating UI Illustration */
.hero-visual {
    flex: 1;
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ui-card {
    background: white;
    border-radius: 1rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    position: absolute;
    padding: 1.5rem;
    border: 1px solid #f3f4f6;
    transition: transform 0.3s ease;
}

.ui-card:hover {
    transform: translateY(-5px);
}

/* Animations/Shapes */
/* Animations/Shapes */
.blob {
    position: absolute;
    width: 500px;
    height: 500px;
    background: #ddd6fe;
    /* Violet 200 */
    /* Warm orange light replaced */
    border-radius: 50%;
    z-index: -1;
    filter: blur(40px);
    opacity: 0.6;
}

/* Pricing Grid */
.pricing {
    padding: 5rem 2rem;
    background: #fbfbfe;
    text-align: center;
}

/* Floating Animation */
@keyframes float {
    0% {
        transform: translateY(0px) rotate(-3deg);
    }

    50% {
        transform: translateY(-10px) rotate(-3deg);
    }

    100% {
        transform: translateY(0px) rotate(-3deg);
    }
}

@keyframes float-reverse {
    0% {
        transform: translateY(0px) rotate(3deg);
    }

    50% {
        transform: translateY(-10px) rotate(3deg);
    }

    100% {
        transform: translateY(0px) rotate(3deg);
    }
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1060px;
    /* Increased slightly to breathe */
    margin: 3rem auto 0;
}

.p-card {
    background: white;
    padding: 2.5rem;
    border-radius: 1rem;
    border: 1px solid #e5e7eb;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.p-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.p-card.featured {
    border-color: var(--brand-orange);
    box-shadow: 0 4px 20px rgba(124, 93, 250, 0.2);
    /* Violet Shadow */
    position: relative;
    transform: scale(1.05);
    z-index: 10;
}

.p-card.featured:hover {
    transform: scale(1.05) translateY(-5px);
    box-shadow: 0 14px 30px rgba(124, 93, 250, 0.3);
    /* Violet Shadow */
}

.p-tag {
    background: var(--brand-orange);
    color: white;
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.25rem 1rem;
    border-radius: 99px;
    font-size: 0.8rem;
    font-weight: 700;
    box-shadow: 0 4px 6px rgba(124, 93, 250, 0.3);
}

/* Footer */
.intro-footer {
    background-color: #1f2937;
    color: white;
    padding: 4rem 2rem;
    text-align: center;
}

.btn-orange {
    background-color: var(--brand-orange);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    border-radius: 0.5rem;
    font-size: 1rem;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    transition: all 0.2s;
}

.btn-orange:hover {
    background-color: #6046bd;
    /* Darker Violet on Hover */
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(124, 93, 250, 0.3);
}

@media (max-width: 768px) {
    .hero {
        flex-direction: column;
        padding-top: 2rem;
        text-align: center;
    }

    .hero-content {
        width: 100%;
    }

    .hero-visual {
        width: 100%;
        height: 300px;
        margin-top: 2rem;
        display: none;
    }

    /* Hide complex visual on mobile */
}