/* Landing Page CSS - Geminos Style */
:root {
    --landing-bg: #0b0e1a;
    --landing-primary: #7c4dff;
    --landing-secondary: #00e5ff;
    --landing-text: #ffffff;
    --landing-text-muted: #a0a0c0;
    --landing-card-bg: rgba(26, 31, 53, 0.6);
    --landing-border: rgba(124, 77, 255, 0.2);
}

#landingPage {
    font-family: 'Inter', 'Outfit', sans-serif;
    background: var(--landing-bg);
    color: var(--landing-text);
    overflow-x: hidden;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow-y: auto;
    z-index: 9999;
    /* Absolute top */
}

/* Background Blobs */
.landing-blob {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(124, 77, 255, 0.15) 0%, rgba(0, 0, 0, 0) 70%);
    border-radius: 50%;
    z-index: -1;
    filter: blur(80px);
}

/* Navigation */
.landing-nav {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 8%;
    position: sticky;
    top: 0;
    background: rgba(11, 14, 26, 0.8);
    backdrop-filter: blur(10px);
    z-index: 100;
}

.landing-nav .logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 20px;
    font-weight: 800;
    letter-spacing: 0.5px;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-link {
    color: var(--landing-text-muted);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    transition: 0.3s;
}

.nav-link:hover {
    color: var(--landing-text);
}

.nav-auth {
    display: flex;
    gap: 15px;
}

.btn-landing {
    padding: 10px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
    border: none;
}

.btn-outline {
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
}

.btn-solid {
    background: var(--landing-primary);
    color: #fff;
    box-shadow: 0 4px 15px rgba(124, 77, 255, 0.3);
}

.btn-solid:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(124, 77, 255, 0.4);
}

/* Hero Section */
.hero {
    padding: 100px 8% 60px;
    text-align: center;
}

.hero h1 {
    font-size: 64px;
    font-weight: 900;
    margin-bottom: 20px;
    background: linear-gradient(to right, #fff 30%, #a0a0c0 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 18px;
    color: var(--landing-text-muted);
    max-width: 600px;
    margin: 0 auto 40px;
}

.hero-mockup {
    margin-top: 60px;
    position: relative;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.hero-mockup img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Pricing Grid */
.pricing-section {
    padding: 100px 8%;
    text-align: center;
}

.pricing-header h2 {
    font-size: 42px;
    margin-bottom: 40px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.pricing-card {
    background: var(--landing-card-bg);
    border: 1px solid var(--landing-border);
    padding: 40px 30px;
    border-radius: 20px;
    transition: 0.3s;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-10px);
    border-color: var(--landing-primary);
    background: rgba(124, 77, 255, 0.05);
}

.pricing-tier {
    font-size: 14px;
    text-transform: uppercase;
    color: var(--landing-primary);
    font-weight: 700;
    margin-bottom: 10px;
}

.pricing-price {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 5px;
}

.price-suffix {
    font-size: 16px;
    font-weight: 400;
    color: var(--landing-text-muted);
}

/* Pricing Toggle Switch */
.price-toggle-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
    font-size: 14px;
    color: var(--landing-text-muted);
    font-weight: 600;
}

.price-toggle-wrap .active {
    color: #fff;
}

.price-switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 26px;
}

.price-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.price-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.1);
    transition: .4s;
    border-radius: 34px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.price-slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 4px;
    bottom: 3.5px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(124, 77, 255, 0.5);
}

input:checked+.price-slider {
    background-color: var(--landing-primary);
}

input:checked+.price-slider:before {
    transform: translateX(24px);
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 30px 0;
    text-align: left;
    flex: 1;
}

.pricing-features li {
    padding: 10px 0;
    font-size: 14px;
    color: var(--landing-text-muted);
    display: flex;
    align-items: center;
    gap: 10px;
}

.pricing-features li::before {
    content: "\f00c";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: #4CAF50;
}

/* Responsive */
@media (max-width: 991px) {
    .nav-links {
        display: none;
    }

    .hero h1 {
        font-size: 40px;
    }

    .hero p {
        font-size: 16px;
    }
}