/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap');

:root {
    /* Premium Dark Palette */
    --bg-dark: #030014;
    --bg-card: rgba(255, 255, 255, 0.03);
    --bg-glass: rgba(17, 25, 40, 0.75);

    /* Brand Colors - Neon Core */
    --primary: #8B5CF6;
    /* Violet */
    --primary-glow: #7C3AED;
    --secondary: #06b6d4;
    /* Cyan */
    --accent: #F43F5E;
    /* Rose */

    /* Text Colors */
    --text-main: #ffffff;
    --text-muted: #94a3b8;
    --text-dim: #64748b;

    /* Gradients */
    --grad-main: linear-gradient(135deg, #8B5CF6 0%, #06b6d4 100%);
    --grad-dark: linear-gradient(to bottom, #0f172a, #020617);
    --grad-glass: linear-gradient(145deg,
            rgba(255, 255, 255, 0.05) 0%,
            rgba(255, 255, 255, 0.01) 100%);

    /* Spacing & Layout */
    --container: 1200px;
    --header-height: 80px;

    /* Effects */
    --shadow-glow: 0 0 40px rgba(139, 92, 246, 0.15);
    --shadow-card: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: 'Plus Jakarta Sans', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    background-image:
        radial-gradient(circle at 15% 50%, rgba(139, 92, 246, 0.08) 0%, transparent 25%),
        radial-gradient(circle at 85% 30%, rgba(6, 182, 212, 0.08) 0%, transparent 25%);
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.text-gradient {
    background: var(--grad-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.title-lg {
    font-size: 4.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.title-md {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.text-xl {
    font-size: 1.25rem;
    color: var(--text-muted);
}

/* Layout Utilities */
.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: 6rem 0;
}

.flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

/* Glassmorphism Components */
.glass-card {
    background: var(--bg-card);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.glass-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-glow);
    border-color: rgba(139, 92, 246, 0.3);
}

.glass-header {
    background: rgba(3, 0, 20, 0.8);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.5rem;
    border-radius: 100px;
    font-weight: 600;
    font-family: 'Outfit', sans-serif;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 1.1rem;
    gap: 0.5rem;
}

.btn-primary {
    background: var(--grad-main);
    color: white;
    box-shadow: 0 4px 20px rgba(139, 92, 246, 0.4);
    border: none;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(139, 92, 246, 0.6);
}

.btn-outline {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.1);
    color: white;
}

.btn-outline:hover {
    border-color: var(--primary);
    background: rgba(139, 92, 246, 0.1);
}

.btn-google {
    background: white;
    color: #333;
    border: 1px solid #ddd;
    margin-top: 1rem;
    font-size: 1rem;
    font-weight: 500;
}

.btn-google:hover {
    background: #f1f1f1;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-google i {
    color: #DB4437;
}

/* Navigation */
.nav-container {
    height: var(--header-height);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: white;
}

/* Hero Section */
/* Hero Section */
.hero {
    min-height: 100vh;
    padding-top: var(--header-height);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero .container {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    max-width: 100%;
}

.hero-badges {
    display: inline-flex;
    padding: 0.5rem 1rem;
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 100px;
    color: var(--primary-glow);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

.hero-visual {
    position: relative;
    right: auto;
    top: auto;
    transform: perspective(1000px) rotateY(-10deg) rotateX(5deg);
    width: 100%;
    z-index: 1;
    transition: transform 0.3s ease;
}

.hero-visual:hover {
    transform: perspective(1000px) rotateY(-5deg) rotateX(2deg) translateY(-10px);
}

@media (max-width: 992px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 4rem;
        padding-bottom: 4rem;
    }

    .hero-visual {
        transform: none;
        margin-top: 3rem;
    }

    .hero-content {
        margin: 0 auto;
    }

    .hero .hero-badges {
        margin-left: auto;
        margin-right: auto;
    }

    .hero .flex-center,
    .hero div[style*="display: flex"] {
        justify-content: center;
    }
}

/* Feature Showcase (Alternating) */
.showcase-item {
    display: flex;
    align-items: center;
    gap: 4rem;
    margin-bottom: 8rem;
}

.showcase-item:nth-child(even) {
    flex-direction: row-reverse;
}

.showcase-text {
    flex: 1;
}

.showcase-visual {
    flex: 1.2;
    position: relative;
}

.showcase-img {
    width: 100%;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease;
}

.showcase-img:hover {
    transform: scale(1.02);
}

@media (max-width: 900px) {

    .showcase-item,
    .showcase-item:nth-child(even) {
        flex-direction: column;
        gap: 2rem;
        margin-bottom: 5rem;
        text-align: center;
    }
}

.glow-orch {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
    opacity: 0.2;
    filter: blur(80px);
    border-radius: 50%;
    z-index: -1;
}

/* Feature Grid */
.feature-icon {
    width: 64px;
    height: 64px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    color: var(--secondary);
}

/* Pricing Cards */
.pricing-card {
    position: relative;
    overflow: hidden;
}

.price-tag {
    font-size: 3rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    color: white;
}

.price-period {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 400;
}

.pricing-features {
    list-style: none;
    margin: 2rem 0;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: var(--text-dim);
}

.pricing-features li.active {
    color: white;
}

.check-icon {
    color: var(--secondary);
}

.pricing-card.popular {
    border-color: var(--primary);
    box-shadow: 0 0 40px rgba(139, 92, 246, 0.15);
}

.popular-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--primary);
    color: white;
    font-size: 0.8rem;
    font-weight: 700;
    padding: 0.25rem 0.75rem;
    border-radius: 100px;
}

/* Footer */
footer {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 4rem 0;
    margin-top: 4rem;
    background: rgba(0, 0, 0, 0.2);
}