﻿body {
    margin: 0;
    padding: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background: #ffffff;
    color: #1a1a1a;
    text-rendering: optimizeLegibility;
}

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

.logo {
    font-size: 20px;
    font-weight: 600;
}

.hero {
    text-align: center;
    padding: 120px 20px 100px;
    max-width: 800px;
    margin: auto;
}

    .hero h1 {
        font-size: 52px;
        font-weight: 600;
        margin-bottom: 20px;
    }

    .hero p {
        font-size: 22px;
        color: #555;
        margin-bottom: 40px;
    }

.cta-btn {
    display: inline-block;
    padding: 14px 32px;
    background: #0071e3;
    color: #fff;
    border-radius: 28px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    transition: 0.2s ease;
}

    .cta-btn:hover {
        background: #0a84ff;
    }

.features {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 900px;
    margin: 80px auto;
    padding: 0 20px;
    text-align: center;
}

.feature-item h3 {
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 10px;
}

.feature-item p {
    font-size: 18px;
    color: #666;
}

.screenshot {
    width: 100%;
    max-width: 420px;
    display: block;
    margin: 80px auto;
    border-radius: 18px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

footer {
    text-align: center;
    font-size: 14px;
    color: #777;
    padding: 60px 0;
}


    footer div.version {
        font-size: 0.75rem;
        color: #999 !important;
        margin-top: 15px;
        display: block;
    }