:root {
    --background: #FDFBF7;
    --primary: #1A1A1A;
    --accent: #C41E3A;
    --secondary: #4A4A4A;
    --border-color: rgba(0, 0, 0, 0.1);
}

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

body {
    font-family: "Courier New", Courier, monospace;
    background-color: var(--background);
    color: var(--primary);
    line-height: 1.5;
    display: flex;
    justify-content: center;
    min-height: 100vh;
}

.container {
    width: 100%;
    max-width: 680px;
    padding: 60px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

header {
    margin-bottom: 32px;
}

.logo {
    width: 100px;
    height: 100px;
    border-radius: 22px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    object-fit: cover;
}

main {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.title {
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: -1px;
    margin-bottom: 8px;
}

.tagline {
    font-size: 1.1rem;
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 40px;
}

.description {
    text-align: left;
    margin-bottom: 40px;
    width: 100%;
}

.intro {
    font-size: 1.1rem;
    margin-bottom: 24px;
    text-align: center;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
}

.features {
    display: grid;
    gap: 20px;
    margin-bottom: 24px;
}

.feature-item {
    padding: 20px;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}

.feature-item h3 {
    font-size: 1rem;
    margin-bottom: 8px;
    color: var(--primary);
    text-transform: lowercase;
    font-weight: 700;
}

.feature-item p {
    font-size: 0.95rem;
    color: var(--secondary);
    line-height: 1.4;
}



.download-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.download-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background-color: var(--primary);
    color: #fff;
    text-decoration: none;
    padding: 18px 36px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: transform 0.2s, opacity 0.2s;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.download-btn:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

.download-btn svg {
    fill: currentColor;
}

.trial-text {
    font-size: 0.85rem;
    color: var(--secondary);
    opacity: 0.8;
}

footer {
    margin-top: 80px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    font-size: 0.85rem;
    color: var(--secondary);
    width: 100%;
    border-top: 1px solid var(--border-color);
    padding-top: 32px;
}

.links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
}

.links a {
    color: var(--primary);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.2s;
}

.links a:hover {
    border-bottom-color: var(--primary);
}

.separator {
    opacity: 0.3;
}

.email {
    opacity: 0.6;
}

@media (max-width: 480px) {
    .container {
        padding: 40px 20px;
    }

    .title {
        font-size: 2rem;
    }

    .intro {
        font-size: 1rem;
    }


}