:root {
    --bg-color: #05050A;
    --text-primary: #FFFFFF;
    --text-secondary: #9CA3AF;
    --accent-primary: #0067FD;
    --accent-secondary: #3B82F6;
    --accent-tertiary: #60A5FA;
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.05);
    --glass-hover: rgba(255, 255, 255, 0.08);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Background Effects */
.glow-orb {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(120px);
    z-index: -1;
    opacity: 0.4;
    animation: pulse 8s ease-in-out infinite alternate;
}

.top-left {
    top: -200px;
    left: -200px;
    background: radial-gradient(circle, var(--accent-primary) 0%, transparent 70%);
}

.bottom-right {
    bottom: -200px;
    right: -200px;
    background: radial-gradient(circle, var(--accent-tertiary) 0%, transparent 70%);
    animation-delay: 2s;
}

.grid-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-image: linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: -1;
    pointer-events: none;
}

@keyframes pulse {
    0% { transform: scale(1) translate(0, 0); opacity: 0.3; }
    50% { transform: scale(1.1) translate(20px, -20px); opacity: 0.5; }
    100% { transform: scale(0.9) translate(-20px, 20px); opacity: 0.3; }
}

/* Typography */
h1 {
    font-size: clamp(3rem, 5vw, 5rem);
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
}

h2 {
    font-size: clamp(2rem, 3vw, 3rem);
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: -0.01em;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.gradient-text {
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-tertiary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

p {
    color: var(--text-secondary);
    font-size: 1.125rem;
}

/* Navigation */
.navbar {
    padding: 24px 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--glass-border);
    transition: background 0.3s ease;
}

.navbar.scrolled {
    background: rgba(5, 5, 10, 0.8);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    width: 40px;
    height: 40px;
    border-radius: 10px;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

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

.nav-links a:not(.btn-primary-small) {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:not(.btn-primary-small):hover {
    color: var(--text-primary);
}

.btn-primary-small {
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    color: white;
    padding: 10px 20px;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-primary-small:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 103, 253, 0.35);
}

/* Common UI Elements */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 40px;
    transition: transform 0.3s ease, background 0.3s ease;
}

.glass-card:hover {
    background: var(--glass-hover);
    transform: translateY(-5px);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding-top: 100px;
}

.badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(0, 103, 253, 0.1);
    border: 1px solid rgba(0, 103, 253, 0.25);
    border-radius: 100px;
    color: #93C5FD;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 24px;
}

.hero-subtitle {
    margin-bottom: 40px;
    font-size: 1.25rem;
    max-width: 500px;
}

.store-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.justify-center {
    justify-content: center;
}

.store-btn img {
    height: 50px;
    width: auto;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.store-btn:hover img {
    transform: translateY(-3px) scale(1.02);
}

/* Hero Visual & Mockup */
.hero-visual {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

.mockup-card {
    padding: 24px;
    border-radius: 32px;
    position: relative;
    z-index: 10;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    background: linear-gradient(145deg, rgba(30, 30, 40, 0.7), rgba(10, 10, 15, 0.7));
}

.mockup-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--glass-border);
}

.mockup-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
}

.mockup-title h4 {
    font-size: 1.1rem;
    font-weight: 600;
}

.mockup-title span {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.mockup-body h5 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: #E2E8F0;
}

.mockup-body p {
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 20px;
}

.mockup-body strong {
    color: var(--text-primary);
}

.read-more {
    display: inline-block;
    color: var(--accent-tertiary);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
}

.floating-element {
    position: absolute;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    padding: 12px 20px;
    border-radius: 100px;
    font-weight: 500;
    font-size: 0.9rem;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    animation: float 6s ease-in-out infinite;
}

.el-1 { top: -20px; right: -20px; animation-delay: 0s; }
.el-2 { bottom: 40px; left: -40px; animation-delay: 2s; }
.el-3 { bottom: -20px; right: 20px; animation-delay: 4s; }

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

/* Features Section */
.features {
    padding: 120px 24px;
}

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

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

.feature-num {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: var(--accent-tertiary);
    padding: 6px 12px;
    background: rgba(0, 103, 253, 0.08);
    border: 1px solid rgba(0, 103, 253, 0.18);
    border-radius: 8px;
    margin-bottom: 24px;
}

.feature-card p {
    font-size: 1rem;
}

/* CTA Section */
.cta-section {
    padding: 60px 24px 120px;
}

.cta-card {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(0, 103, 253, 0.12), rgba(96, 165, 250, 0.08));
}

.cta-card h2 {
    margin-bottom: 16px;
}

.cta-card p {
    margin-bottom: 40px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

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

.footer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-logo img {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    filter: grayscale(100%) opacity(0.7);
}

.footer-logo span {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-secondary);
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

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

.copyright {
    font-size: 0.8rem;
    color: rgba(156, 163, 175, 0.5);
}

/* Responsive */
@media (max-width: 992px) {
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 80px;
    }

    .hero-subtitle {
        margin: 0 auto 40px;
    }

    .store-buttons {
        justify-content: center;
    }

    .el-2 { left: -10px; }
    .el-1 { right: -10px; }
}

@media (max-width: 768px) {
    .nav-links {
        display: none; /* simple mobile menu hiding for now */
    }
    
    h1 {
        font-size: 2.5rem;
    }
}

/* Legal Pages */
.legal-content {
    padding: 120px 24px 60px;
    max-width: 800px;
    margin: 0 auto;
}

.legal-content h1 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    text-align: center;
}

.legal-content h2 {
    font-size: 1.5rem;
    margin-top: 40px;
    margin-bottom: 16px;
    color: var(--accent-tertiary);
}

.legal-content p {
    margin-bottom: 16px;
    font-size: 1rem;
    line-height: 1.8;
}

.legal-content ul,
.legal-content ol {
    margin-bottom: 16px;
    padding-left: 24px;
    color: var(--text-secondary);
}

.legal-content li {
    margin-bottom: 8px;
    line-height: 1.8;
}
