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

body {
    background: #07111f;
    color: white;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

nav {
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 32px;
    font-weight: 900;
}

.highlight {
    color: #ff3b63;
}

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

.nav-links a {
    color: white;
    text-decoration: none;
}

.hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-content {
    max-width: 800px;
}

.hero h1 {
    font-size: 64px;
    margin-bottom: 24px;
    line-height: 1.1;
}

.hero p {
    color: #9aa8bd;
    font-size: 22px;
    line-height: 1.6;
    margin-bottom: 40px;
}

.button-group {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-primary {
    background: #ff3b63;
    color: white;
    padding: 16px 32px;
    border-radius: 14px;
    text-decoration: none;
    font-weight: bold;
}

.btn-secondary {
    background: #111c2d;
    color: white;
    padding: 16px 32px;
    border-radius: 14px;
    text-decoration: none;
    font-weight: bold;
}

.features {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    font-size: 42px;
    margin-bottom: 50px;
}

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

.feature-card {
    background: #111c2d;
    padding: 32px;
    border-radius: 18px;
}

.feature-card h3 {
    margin-bottom: 12px;
}

.feature-card p {
    color: #9aa8bd;
    line-height: 1.6;
}

.screenshots {
    padding: 100px 0;
    text-align: center;
}

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

footer {
    border-top: 1px solid #1f2b3d;
    padding: 40px 0;
    text-align: center;
}

footer a {
    color: #9aa8bd;
    text-decoration: none;
    margin: 0 12px;
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 42px;
    }
    .hero p {
        font-size: 18px;
    }
    .nav-links {
        display: none;
    }
}

.feature-image {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.feature-image img {
    width: 100%;
    max-width: 450px;
    height: auto;
    display: block;
}

.screenshots {
    padding: 100px 0;
    text-align: center;
}

.screenshot-card img {
    width: 100%;
    aspect-ratio: 9 / 16;
    object-fit: cover;
}

.screenshot-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.screenshot-card {
    background: #111c2d;
    border-radius: 24px;
    padding: 12px;
    overflow: hidden;
}

.screenshot-card img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 18px;
}

@media (max-width: 900px) {
    .screenshot-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .screenshot-grid {
        grid-template-columns: 1fr;
    }
}


/* privacy */

.policy-page {
    max-width: 850px;
    margin: 70px auto 120px;
    background: #111c2d;
    padding: 48px;
    border-radius: 28px;
}

.policy-page h1 {
    font-size: 48px;
    margin-bottom: 12px;
}

.updated {
    color: #9aa8bd;
    margin-bottom: 40px;
}

.policy-page section {
    margin-bottom: 34px;
}

.policy-page h2 {
    font-size: 24px;
    margin-bottom: 12px;
}

.policy-page p {
    color: #c7d1e0;
    line-height: 1.8;
    font-size: 17px;
}

.policy-page a {
    color: #ff3b63;
}

.logo {
    color: white;
    text-decoration: none;
}

@media (max-width: 768px) {
    .policy-page {
        padding: 28px;
        margin: 40px auto 80px;
    }
    .policy-page h1 {
        font-size: 36px;
    }
}


/* terms */