:root {
    --bg-dark: #0E0F12;
    --bg-card: rgba(255, 255, 255, 0.05);
    --bg-card-hover: rgba(255, 255, 255, 0.1);
    --text-primary: #FFFFFF;
    --text-secondary: #9CA3AF;
    --primary-gradient: linear-gradient(135deg, #9B6BFF 0%, #FF7AC8 100%);
    --glass-border: rgba(255, 255, 255, 0.1);
    --blur: blur(20px);
}

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

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

/* Background Effects */
.background-glow {
    position: fixed;
    top: -20%;
    left: 20%;
    width: 60vw;
    height: 60vh;
    background: radial-gradient(circle, rgba(155, 107, 255, 0.15) 0%, rgba(14, 15, 18, 0) 70%);
    z-index: -2;
    pointer-events: none;
}

.grid-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: -1;
    pointer-events: none;
    mask-image: linear-gradient(to bottom, black 40%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, black 40%, transparent 100%);
}

/* Typography */
h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

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

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

.gradient-text {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

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

/* Navigation */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 1.5rem 0;
    transition: background 0.3s ease;
    backdrop-filter: blur(10px);
}

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

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

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

/* Buttons */
.btn-download-small {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    text-decoration: none;
    padding: 0.6rem 1.25rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: 1px solid var(--glass-border);
}

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

.btn-app-store {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: white;
    color: black;
    padding: 1rem 2rem;
    border-radius: 16px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btn-app-store:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(155, 107, 255, 0.3);
}

.btn-app-store.large {
    padding: 1.25rem 2.5rem;
    font-size: 1.25rem;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 6rem;
    gap: 4rem;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(155, 107, 255, 0.1);
    border: 1px solid rgba(155, 107, 255, 0.3);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    margin-bottom: 2rem;
}

.badge-text {
    font-size: 0.9rem;
    font-weight: 600;
    color: #FF7AC8;
}

.hero-subtitle {
    margin-bottom: 2.5rem;
    font-size: 1.25rem;
    line-height: 1.7;
}

.social-proof {
    margin-top: 3rem;
    border-top: 1px solid var(--glass-border);
    padding-top: 1.5rem;
}

.social-proof p {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.platforms {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 600;
    color: white;
}

.dot {
    color: var(--text-secondary);
}

/* Hero Visual */
.hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
}

.phone-mockup {
    position: relative;
    width: 300px;
    border-radius: 40px;
    border: 8px solid #2a2a2a;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    background: black;
}

.notch {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 30px;
    background: #2a2a2a;
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 16px;
    z-index: 10;
}

.screenshot {
    width: 100%;
    height: auto;
    display: block;
}

.floating-card {
    position: absolute;
    background: rgba(20, 20, 24, 0.8);
    backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    padding: 1rem;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    z-index: 20;
}

.card-1 {
    top: 20%;
    left: -20px;
}

.card-2 {
    bottom: 20%;
    right: -20px;
}

.icon-box {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.card-text {
    display: flex;
    flex-direction: column;
}

.card-text .label {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.card-text .value {
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
}

/* Features Section */
.features {
    padding: 6rem 1rem;
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    padding: 2.5rem;
    border-radius: 24px;
    transition: all 0.3s ease;
}

.feature-card:hover {
    background: var(--bg-card-hover);
    transform: translateY(-5px);
    border-color: rgba(155, 107, 255, 0.3);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

/* Showcase Section */
.showcase {
    padding: 6rem 1rem;
}

.showcase-content {
    display: flex;
    align-items: center;
    gap: 4rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border-radius: 32px;
    padding: 4rem;
    border: 1px solid var(--glass-border);
}

.showcase-text {
    flex: 1;
}

.showcase-visual {
    flex: 1;
    display: flex;
    justify-content: center;
}

.rounded-screenshot {
    width: 80%;
    max-width: 300px;
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    border: 4px solid rgba(255, 255, 255, 0.1);
}

.benefit-list {
    list-style: none;
    margin-top: 2rem;
}

.benefit-list li {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.check {
    width: 24px;
    height: 24px;
    background: #4ade80;
    color: black;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.8rem;
    flex-shrink: 0;
}

/* CTA Section */
.bottom-cta {
    padding: 6rem 1rem 8rem;
    text-align: center;
}

.cta-box {
    max-width: 800px;
    margin: 0 auto;
}

.bottom-cta h2 {
    font-size: 3rem;
}

.bottom-cta p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
}

/* Footer */
footer {
    border-top: 1px solid var(--glass-border);
    padding: 3rem 0;
    background: rgba(0, 0, 0, 0.3);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 700;
    font-size: 1.25rem;
}

.footer-logo img {
    width: 32px;
    height: 32px;
    border-radius: 8px;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

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

.footer-links a:hover {
    color: white;
}

.copyright {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.3);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }
    
    .hero {
        flex-direction: column;
        padding-top: 8rem;
        gap: 3rem;
        text-align: center;
    }
    
    .hero-content {
        margin: 0 auto;
    }
    
    .logo span {
        display: block; /* Ensure logo text is visible */
    }
    
    .cta-group {
        display: flex;
        justify-content: center;
    }
    
    .social-proof {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .platforms {
        justify-content: center;
    }
    
    .showcase-content {
        flex-direction: column-reverse;
        padding: 2rem;
        gap: 2rem;
    }
    
    .showcase-text {
        text-align: center;
    }
    
    .benefit-list li {
        text-align: left;
    }
    
    .floating-card {
        display: none; /* Hide floating cards on mobile to avoid clutter */
    }
}
