html {
    scrollbar-gutter: stable;
    overflow-y: scroll;
}

::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: #090A0A;
}

::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border: 3px solid #090A0A;
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.2);
}

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

body {
    font-family: 'Space Grotesk', -apple-system, sans-serif;
    background: #090A0A;
    color: white;
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 24px;
    width: 100%;
    box-sizing: border-box;
}

nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    margin-bottom: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
    font-size: 20px;
    color: white;
    text-decoration: none;
}

.logo-image {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

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

.pill-button {
    background: linear-gradient(90deg, #4361ee, #3451db);
    color: white;
    padding: 10px 24px;
    border-radius: 100px;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.2s ease;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 0 1px rgba(67, 97, 238, 0.2);
    display: inline-flex;
    align-items: center;
    line-height: 20px;
}

.pill-button:hover {
    background: linear-gradient(90deg, #3451db, #2941c8);
    box-shadow: 0 0 0 1px rgba(67, 97, 238, 0.4);
}

.hero {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 0;
    display: flex;
    align-items: center;
    gap: 48px;
    width: 100%;
}

.hero-content {
    flex: 1;
    text-align: left;
}

h1 {
    font-size: 56px;
    line-height: 1.1;
    color: white;
    font-weight: 600;
    margin-bottom: 32px;
    letter-spacing: -0.02em;
}

.subtitle {
    font-size: 20px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 24px;
}

.hero-description {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 32px;
    max-width: 540px;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.iphone-image {
    max-width: 480px;
    width: 100%;
    height: auto;
    border-radius: 32px;
}

.features-section {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 24px;
    text-align: center;
}

.features-section h2 {
    font-size: 36px;
    margin-bottom: 48px;
    background: linear-gradient(90deg, #fff, rgba(255, 255, 255, 0.8));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 40px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 32px;
    text-align: left;
    transition: transform 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
}

.feature-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #fff;
    font-weight: 600;
}

.feature-card p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.cta-section {
    margin: 60px 0 40px;
    text-align: center;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(90deg, #4361ee, #3451db);
    color: white;
    padding: 16px 32px;
    border-radius: 100px;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.2s ease;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 0 1px rgba(67, 97, 238, 0.2);
}

.cta-button:hover {
    background: linear-gradient(90deg, #3451db, #2941c8);
    box-shadow: 0 0 0 1px rgba(67, 97, 238, 0.4);
    transform: translateY(-1px);
}

footer {
    background: rgba(255, 255, 255, 0.02);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px 0;
    text-align: center;
    margin-top: 80px;
}

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

.footer-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.footer-links {
    display: flex;
    gap: 16px;
    align-items: center;
}

.privacy-link {
    color: #4361ee;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.2s ease;
    font-weight: 500;
}

.privacy-link:hover {
    color: #3451db;
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 20px 0;
    }

    .hero-content {
        text-align: center;
    }

    h1 {
        font-size: 36px;
        background: linear-gradient(
            to bottom,
            rgba(255, 255, 255, 0.95) 0%,
            rgba(184, 198, 219, 0.4) 100%
        );
        -webkit-background-clip: text;
        background-clip: text;
    }

    .iphone-image {
        max-width: 100%;
        margin: 0 auto;
    }

    .hero-description {
        font-size: 15px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .feature-card {
        padding: 24px;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .features-section h2 {
        font-size: 28px;
        margin-bottom: 32px;
    }

    nav {
        margin-bottom: 40px;
    }

    h1 {
        font-size: 32px;
    }

    .subtitle {
        font-size: 18px;
    }
} 