:root {
    --primary: #9D00FF;
    --secondary: #00D2FF;
    --dark-bg: #050505;
    --card-bg: rgba(255, 255, 255, 0.05);
    --text-main: #ffffff;
    --text-muted: #a0a0a0;
    --glass-border: rgba(255, 255, 255, 0.1);
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
}

body {
    background-color: var(--dark-bg);
    color: var(--text-main);
    font-family: var(--font-body);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Background Blobs */
.cursor-blob, .cursor-blob-2 {
    position: fixed;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(100px);
    z-index: -1;
    opacity: 0.4;
    animation: blob-bounce 20s infinite ease-in-out;
}

.cursor-blob {
    top: -200px;
    left: -200px;
    background: radial-gradient(circle, var(--primary), transparent);
}

.cursor-blob-2 {
    bottom: -200px;
    right: -200px;
    background: radial-gradient(circle, var(--secondary), transparent);
    animation-delay: -10s;
}

/* Typography & Layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

h1, h2, h3, .logo {
    font-family: var(--font-heading);
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

.text-gradient {
    background: linear-gradient(135deg, #fff 30%, var(--secondary), var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    z-index: 100;
    transition: 0.3s;
}

.navbar.scrolled {
    background: rgba(5, 5, 5, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    padding: 15px 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    color: var(--secondary);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-muted);
}

.nav-links a:hover, .nav-links a.active {
    color: var(--text-main);
}

/* Buttons */
.btn {
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 700;
    color: white !important;
    position: relative;
    overflow: hidden;
    display: inline-block;
    border: 1px solid rgba(255,255,255,0.2);
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(157, 0, 255, 0.3);
}

.btn-sm {
    padding: 8px 24px;
    font-size: 0.9rem;
}

.app-store-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--glass-border);
    padding: 10px 20px;
    border-radius: 12px;
    transition: 0.3s;
}

.app-store-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.app-store-btn i {
    font-size: 24px;
}

.btn-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.btn-text span:first-child {
    font-size: 10px;
    opacity: 0.8;
}

.store-name {
    font-weight: 700;
    font-size: 16px;
}

.app-store-btn.large {
    padding: 15px 30px;
    background: #fff;
    color: #000;
}
.app-store-btn.large:hover {
    background: #f0f0f0;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    padding-top: 140px;
    position: relative;
    display: flex;
    align-items: center;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 14px;
    margin-bottom: 24px;
    font-weight: 600;
    color: var(--secondary);
}

.badge-dot {
    width: 6px;
    height: 6px;
    background-color: var(--secondary);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--secondary);
}

.hero-content h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 24px;
    font-weight: 800;
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 500px;
}

.stats {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-top: 40px;
    border-top: 1px solid var(--glass-border);
    padding-top: 30px;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 700;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.stat-separator {
    width: 1px;
    height: 40px;
    background: var(--glass-border);
}

/* Phone Mockup */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
}

.phone-mockup {
    width: 320px;
    height: 650px;
    background: #000;
    border-radius: 40px;
    border: 8px solid #202020;
    position: relative;
    box-shadow: 0 40px 80px rgba(0,0,0,0.5);
    z-index: 2;
    overflow: hidden;
}

.phone-notch {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 25px;
    background: #202020;
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 16px;
    z-index: 3;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: #111;
    position: relative;
}

/* App Placeholder in CSS */
.app-screen-placeholder {
    padding: 60px 20px 20px;
    height: 100%;
    background: linear-gradient(180deg, #1a1a2e 0%, #000 100%);
    display: flex;
    flex-direction: column;
}

.app-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
    margin-bottom: 30px;
    font-weight: 600;
}

.app-preview-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
}

.app-preview-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(45deg, rgba(157,0,255,0.2), rgba(0,210,255,0.2));
    z-index: 0;
    opacity: 0.5;
}

.quote-text {
    position: relative;
    z-index: 1;
    font-family: serif;
    font-size: 24px;
    line-height: 1.4;
    margin-bottom: 20px;
    color: #fff;
}

.quote-author {
    position: relative;
    z-index: 1;
    text-align: right;
    font-style: italic;
    color: var(--secondary);
}

.app-controls {
    margin-top: auto;
    background: #222;
    border-radius: 12px;
    padding: 15px;
    gap: 10px;
    display: flex;
    flex-direction: column;
}

.control-bar {
    height: 8px;
    background: #333;
    border-radius: 4px;
    width: 100%;
}

.control-bar.short {
    width: 60%;
}

.download-progress {
    margin-top: 20px;
    background: rgba(0, 210, 255, 0.1);
    padding: 15px;
    border-radius: 12px;
    border: 1px solid rgba(0, 210, 255, 0.3);
}

.progress-info {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    margin-bottom: 8px;
    color: var(--secondary);
}

.progress-bar {
    height: 6px;
    background: rgba(255,255,255,0.1);
    border-radius: 3px;
    overflow: hidden;
}

.progress-bar .fill {
    width: 78%;
    height: 100%;
    background: var(--secondary);
}

.background-circle {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    z-index: 1;
}

.circle-1 {
    width: 300px;
    height: 300px;
    background: var(--primary);
    top: 50px;
    right: -50px;
    opacity: 0.3;
}

.circle-2 {
    width: 250px;
    height: 250px;
    background: var(--secondary);
    bottom: 50px;
    left: -50px;
    opacity: 0.3;
}

/* Features Section */
.features {
    padding: 100px 0;
}

.section-header {
    margin-bottom: 60px;
}

.section-header.center {
    text-align: center;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

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

.glass-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
    padding: 32px;
    border-radius: 24px;
    transition: 0.4s;
    position: relative;
    overflow: hidden;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(255,255,255,0.05) 0%, transparent 100%);
    opacity: 0;
    transition: 0.4s;
}

.glass-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 255, 255, 0.2);
}

.glass-card:hover::before {
    opacity: 1;
}

.icon-box {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 24px;
    color: #fff;
}

.gradient-1 { background: linear-gradient(135deg, #FF0080, #7928CA); }
.gradient-2 { background: linear-gradient(135deg, #4facfe, #00f2fe); }
.gradient-3 { background: linear-gradient(135deg, #43e97b, #38f9d7); }
.gradient-4 { background: linear-gradient(135deg, #fa709a, #fee140); }

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

/* Showcase Section */
.showcase {
    padding: 100px 0;
    background: radial-gradient(circle at center, rgba(157,0,255,0.05) 0%, transparent 70%);
}

.showcase-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.feature-list {
    list-style: none;
    margin: 30px 0;
}

.feature-list li {
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.1rem;
}

.feature-list i {
    color: var(--secondary);
}

.quote-card-preview {
    background: #000;
    border: 1px solid #333;
    padding: 24px;
    border-radius: 16px;
    max-width: 400px;
    margin: 0 auto;
    position: relative;
}

.preview-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
}

.user-info {
    display: flex;
    flex-direction: column;
}

.name {
    font-weight: 700;
    color: #fff;
}

.user {
    color: #888;
    font-size: 0.9rem;
}

.twitter-icon {
    margin-left: auto;
    color: #1DA1F2;
    font-size: 20px;
}

.preview-body {
    font-size: 1.5rem;
    color: #fff;
    font-weight: 400;
    margin-bottom: 20px;
    line-height: 1.4;
}

.preview-footer {
    color: #888;
    font-size: 0.9rem;
    border-top: 1px solid #333;
    padding-top: 16px;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
}

.cta-box {
    background: linear-gradient(135deg, rgba(157,0,255,0.2), rgba(5,5,5,0.8));
    border: 1px solid var(--glass-border);
    border-radius: 32px;
    padding: 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-box h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.cta-box p {
    color: var(--text-muted);
    margin-bottom: 40px;
    font-size: 1.1rem;
}

/* Footer */
.footer {
    padding: 80px 0 40px;
    border-top: 1px solid var(--glass-border);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-links a {
    margin-right: 30px;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--text-main);
}

.social-links a {
    color: var(--text-muted);
    font-size: 1.5rem;
    margin-left: 20px;
}

.social-links a:hover {
    color: var(--text-main);
    transform: translateY(-3px);
    display: inline-block;
}

/* Animations */
@keyframes blob-bounce {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(30px, -30px); }
}

.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }

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

.floating {
    animation: float 6s ease-in-out infinite;
}

.floating-delayed {
    animation: float 6s ease-in-out infinite;
    animation-delay: 3s;
}

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

/* Responsive */
@media (max-width: 768px) {
    .navbar .nav-links, .navbar .btn {
        display: none;
    }
    .menu-toggle {
        display: block;
        font-size: 24px;
        color: white;
    }
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-content p {
        margin: 0 auto 40px;
    }
    .hero-btns, .stats {
        justify-content: center;
    }
    .hero h1 {
        font-size: 2.5rem;
    }
    .showcase-container {
        grid-template-columns: 1fr;
    }
    .showcase-content {
        order: 2;
    }
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    .footer-links a {
        margin: 0 15px;
    }
    .social-links a {
        margin: 0 10px;
    }
}
