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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: #0F1417;
    color: #E8E9EA;
    line-height: 1.6;
}

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

/* Header */
header {
    background: #161D22;
    padding: 20px 0;
    border-bottom: 1px solid #253038;
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #7FBFA3;
}

nav {
    display: flex;
    gap: 32px;
}

nav a {
    color: #B0B3B5;
    text-decoration: none;
    transition: color 0.2s;
}

nav a:hover {
    color: #7FBFA3;
}

/* Hero Section */
.hero {
    padding: 80px 0 100px;
    text-align: center;
}

.hero h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #E8E9EA;
}

.subtitle {
    font-size: 20px;
    color: #B0B3B5;
    margin-bottom: 40px;
}

.app-store-badge {
    display: inline-block;
    background: #7FBFA3;
    color: #0F1417;
    padding: 14px 32px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.2s;
}

.app-store-badge:hover {
    background: #A6DCC7;
}

/* Features Section */
.features {
    padding: 80px 0;
    background: #161D22;
}

.features h3 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 60px;
    color: #E8E9EA;
}

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

.feature {
    text-align: center;
}

.icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.feature h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #E8E9EA;
}

.feature p {
    color: #B0B3B5;
    font-size: 16px;
}

/* Premium Section */
.premium {
    padding: 80px 0;
}

.premium h3 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 40px;
    color: #E8E9EA;
}

.premium-list {
    max-width: 600px;
    margin: 0 auto 32px;
    list-style: none;
}

.premium-list li {
    padding: 16px;
    margin-bottom: 12px;
    background: #161D22;
    border-radius: 8px;
    border-left: 4px solid #7FBFA3;
}

.pricing {
    text-align: center;
    font-size: 18px;
    color: #7FBFA3;
    font-weight: 600;
}

/* Footer */
footer {
    background: #161D22;
    padding: 60px 0 40px;
    border-top: 1px solid #253038;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
}

.footer-brand .tagline {
    color: #B0B3B5;
    margin-top: 8px;
}

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

.footer-links a {
    color: #B0B3B5;
    text-decoration: none;
}

.footer-links a:hover {
    color: #7FBFA3;
}

.copyright {
    text-align: center;
    color: #6B7280;
    font-size: 14px;
    margin-bottom: 16px;
}

.disclaimer {
    text-align: center;
    color: #6B7280;
    font-size: 12px;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h2 {
        font-size: 36px;
    }

    .subtitle {
        font-size: 18px;
    }

    .features h3,
    .premium h3 {
        font-size: 28px;
    }

    .footer-content {
        flex-direction: column;
        gap: 32px;
    }

    nav {
        gap: 20px;
    }
}
