:root {
    --bg-deep: #0b0e1a;
    --bg-card: #141829;
    --purple: #6a5acd;
    --purple-light: #8b7cf7;
    --orange: #e8853b;
    --gold: #f5c542;
    --text-primary: #eaeaf0;
    --text-secondary: #9a9ab0;
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
    background: var(--bg-deep);
    color: var(--text-primary);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* Hero */

.hero {
    text-align: center;
    padding: 5rem 1.5rem 4rem;
    background: linear-gradient(180deg, #1a1040 0%, #2d1a20 100%);
}

.hero-icon {
    width: 148px;
    height: 148px;
    border-radius: 22.5%;
    margin-bottom: 1.5rem;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 0.25rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 1.25rem;
}

.hero-description {
    max-width: 520px;
    margin: 0 auto 2rem;
    color: var(--text-secondary);
    font-size: 1.05rem;
}

.app-store-badge {
    display: inline-block;
    transition: opacity 0.2s;
}

.app-store-badge:hover {
    opacity: 0.85;
}

.app-store-badge img {
    height: 54px;
}

.hero-platforms {
    margin-top: 0.75rem;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* Features */

.features {
    padding: 4rem 1.5rem;
    max-width: 860px;
    margin: 0 auto;
}

.features h2 {
    text-align: center;
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 2.5rem;
}

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

.feature-card {
    background: var(--bg-card);
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.feature-card h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.35rem;
    color: var(--text-primary);
}

.feature-card p {
    font-size: 0.925rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* Privacy */

.privacy {
    text-align: center;
    padding: 3.5rem 1.5rem;
    max-width: 560px;
    margin: 0 auto;
}

.privacy h2 {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.privacy p {
    color: var(--text-secondary);
    font-size: 1.05rem;
}

/* Support */

.support {
    text-align: center;
    padding: 2rem 1.5rem 3rem;
}

.support h2 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.support a {
    color: var(--purple-light);
    text-decoration: none;
}

.support a:hover {
    text-decoration: underline;
}

/* Footer */

footer {
    text-align: center;
    padding: 2rem 1.5rem;
    color: var(--text-secondary);
    font-size: 0.8rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

footer a {
    color: var(--text-secondary);
    text-decoration: none;
}

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

/* Responsive */

@media (max-width: 768px) {
    .hero {
        padding: 3.5rem 1.25rem 3rem;
    }

    .hero h1 {
        font-size: 2.25rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .features {
        padding: 3rem 1.25rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }
}
