:root {
    --bg-dark: #09090b;
    --bg-card: rgba(24, 24, 27, 0.4);
    --primary: #ffffff;
    --primary-hover: #e2e8f0;
    --accent: #6366f1;
    --accent-gradient: linear-gradient(135deg, #a855f7 0%, #6366f1 100%);
    --secondary: #334155;
    --gold: #d4af37;
    --gold-hover: #b5952f;
    --text-primary: #f8fafc;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;
    --border: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.05);
    --success: #10b981;
    --error: #ef4444;
}

.gradient-text {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Outfit', 'Inter', sans-serif;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-primary);
    overflow-x: hidden;
    scroll-behavior: smooth;
    line-height: 1.6;
    min-height: 100vh;
    position: relative;
}

/* Removed Ambient Glow Effects for a cleaner, more realistic look */

/* Navbar */
.landing-nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    padding: 20px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    background: rgba(9, 9, 11, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    transition: all 0.3s;
}
.landing-nav .logo img { height: 40px; }
.nav-buttons { display: flex; gap: 15px; }

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    border: none;
    font-size: 1rem;
    text-align: center;
}
.btn-primary { 
    background: var(--accent-gradient); 
    color: #ffffff; 
    font-weight: 600;
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.15);
}
.btn-primary:hover { 
    filter: brightness(1.1);
    transform: translateY(-2px); 
    box-shadow: 0 12px 25px rgba(99, 102, 241, 0.25);
}
.btn-secondary { 
    background: rgba(255,255,255,0.03); 
    color: white; 
    border: 1px solid var(--border); 
}
.btn-secondary:hover { 
    background: rgba(255,255,255,0.08); 
    transform: translateY(-2px); 
    border-color: rgba(255, 255, 255, 0.25);
}
.btn-outline { 
    background: transparent; 
    color: white; 
    border: 1px solid var(--border); 
}
.btn-outline:hover { 
    border-color: var(--accent); 
    background: rgba(99, 102, 241, 0.05); 
    transform: translateY(-2px);
}
.btn-gold { background: var(--gold); color: #000; font-weight: 700; }
.btn-gold:hover { background: var(--gold-hover); transform: translateY(-2px); }
.btn-xl { padding: 16px 36px; font-size: 1.1rem; border-radius: 12px; }
.full-width { width: 100%; }

/* Footer */
footer {
    background: rgba(0,0,0,0.4);
    border-top: 1px solid var(--glass-border);
    padding: 40px 5%;
    text-align: center;
    position: relative;
    z-index: 10;
}
.footer-logo { height: 30px; margin-bottom: 20px; opacity: 0.7; }

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 5% 60px;
    z-index: 10;
    background: radial-gradient(circle at center, rgba(168, 85, 247, 0.07) 0%, rgba(99, 102, 241, 0.04) 40%, rgba(9, 9, 11, 0) 70%);
}
.hero-content {
    max-width: 1000px;
    margin: 0 auto;
}
.badge-pill {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(99, 102, 241, 0.08);
    border: 1px solid rgba(99, 102, 241, 0.2);
    color: var(--text-primary);
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 25px;
    animation: fadeUp 1s ease forwards;
    opacity: 0;
    transform: translateY(20px);
    letter-spacing: 1.5px;
    text-transform: uppercase;
}
.hero h1 {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 25px;
    color: var(--text-primary);
    letter-spacing: -1.5px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 1s ease 0.2s forwards;
}
.hero p {
    font-size: clamp(1rem, 1.8vw, 1.2rem);
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.7;
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 1s ease 0.4s forwards;
}
.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 1s ease 0.6s forwards;
}

/* Features Section */
.features {
    padding: 100px 5%;
    position: relative;
    z-index: 10;
}
.section-header {
    text-align: center;
    margin-bottom: 80px;
}
.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}
.section-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}
.feature-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--glass-border);
    padding: 40px 30px;
    border-radius: 24px;
    backdrop-filter: blur(20px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-align: left;
}
.feature-card:hover {
    transform: translateY(-10px);
    background: rgba(255,255,255,0.05);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(139, 92, 246, 0.15);
}
.feature-icon {
    width: 60px; height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.8rem; color: white;
    margin-bottom: 25px;
    box-shadow: 0 10px 20px rgba(139, 92, 246, 0.3);
}
.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    font-weight: 600;
}
.feature-card p {
    color: var(--text-muted);
    line-height: 1.7;
}

/* Mockup Section */
.mockup-section {
    padding: 50px 5% 100px;
    position: relative;
    z-index: 10;
    text-align: center;
}
.mockup-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
    border: 1px solid var(--glass-border);
    animation: float 6s ease-in-out infinite;
}
.mockup-container img {
    width: 100%;
    display: block;
}

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

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

@media (max-width: 768px) {
    .hero-buttons { flex-direction: column; width: 100%; }
    .hero-buttons .btn { width: 100%; }
}


/* Image Comparison Slider */
.comparison-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
    border: 1px solid var(--glass-border);
    animation: float 6s ease-in-out infinite;
    cursor: ew-resize;
    height: 562px; /* Approx 16:9 for 1000px width */
}
.comparison-container img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    pointer-events: none;
}
.comparison-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%; /* Default 50% */
    height: 100%;
    overflow: hidden;
}
.comparison-overlay img {
    width: 1000px; /* Must match container max-width */
}
.comparison-slider {
    position: absolute;
    top: 0;
    left: 50%;
    width: 4px;
    height: 100%;
    background: white;
    z-index: 10;
    transform: translateX(-50%);
    box-shadow: 0 0 15px rgba(0,0,0,0.5);
}
.comparison-handle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 6px rgba(0,0,0,0.3);
    color: #000;
}
.comparison-label {
    position: absolute;
    top: 20px;
    padding: 8px 16px;
    background: rgba(0,0,0,0.6);
    color: white;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
    z-index: 5;
    pointer-events: none;
}
.label-before { left: 20px; }
.label-after { right: 20px; }

@media (max-width: 1000px) {
    .comparison-container {
        height: 56.25vw;
    }
    .comparison-overlay img {
        width: 90vw;
    }
}


/* Showcase Sections */
.showcase-section {
    padding: 100px 5%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid var(--glass-border);
}
.showcase-container {
    max-width: 1200px;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 60px;
}
.showcase-container.reverse {
    flex-direction: row-reverse;
}
.showcase-image {
    flex: 1;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    border: 1px solid var(--glass-border);
}
.showcase-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}
.showcase-content {
    flex: 1;
}
.showcase-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-primary);
    line-height: 1.2;
}
.showcase-content p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 30px;
}

@media (max-width: 900px) {
    .showcase-container, .showcase-container.reverse {
        flex-direction: column;
        text-align: center;
    }
}

