:root {
    --primary-color: #002741;
    --background: #eff6fe;
    --card-bg: #e6f0fb;
    --white: #ffffff;
    --text-main: #000000;
    --text-muted: #64748b;
    --accent-blue: #3b82f6;
    --accent-purple: #c084fc;
    --border: #d1d5db;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--background);
    color: var(--text-main);
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Background Effects */
.background-blobs {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.blob {
    position: absolute;
    width: 45vw;
    height: 45vw;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.35;
}

.blob-1 {
    top: -15%;
    left: -15%;
    background: var(--accent-purple);
}

.blob-2 {
    bottom: -15%;
    right: -15%;
    background: var(--accent-blue);
}

/* Container */
.container {
    max-width: 800px;
    width: 100%;
    padding: 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}


.logo {
    width: 100%;
    height: auto;
    max-width: 450px;
    display: block;
    mix-blend-mode: multiply;
}

/* Badge */
.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #e2e8f0;
    padding: 6px 16px;
    border-radius: 9999px;
    font-size: 0.70rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: #475569;
    margin-bottom: 1.8rem;
    text-transform: uppercase;
}

.status-badge .dot {
    width: 6px;
    height: 6px;
    background-color: var(--accent-blue);
    border-radius: 50%;
}

/* Hero Section */
.hero-section {
    margin-bottom: 2rem;
    margin-top: -1rem;
    /* Zmniejszenie odstępu od góry, przybliżenie do loga */
}

.hero-section h1 {
    font-size: 2.2rem;
    font-weight: 500;
    color: var(--text-main);
    margin-bottom: 1.25rem;
    letter-spacing: -0.015em;
    line-height: 1.2;
}

.subtitle {
    font-size: 0.85rem;
    color: var(--text-muted);
    max-width: 500px;
    margin: 0 auto;
    font-weight: 400;
    line-height: 1.8;
}

/* Download Section */
.download-section {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.button-container {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 24px;
}

.btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9.2px;
    padding: 11.5px 27.6px;
    border-radius: 9999px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.98rem;
    transition: var(--transition);
    border: 1px solid var(--accent-blue);
    background: var(--accent-blue);
    color: var(--white);
}

.btn-macos {
    background: transparent;
    color: var(--accent-blue);
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.25);
}

.btn-macos:hover {
    background: var(--accent-blue);
    color: var(--white);
}

.icon {
    width: 18.4px;
    height: 18.4px;
}

.security-info {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
}

/* Footer */
.footer-divider {
    width: 100%;
    max-width: 500px;
    height: 1px;
    background: #e2e8f0;
    margin: 0 auto 1.5rem;
    border: none;
}

.footer {
    font-size: 0.7rem;
    color: #94a3b8;
    line-height: 1.8;
}

.contact-info {
    margin-top: 4px;
    color: var(--text-main);
    font-weight: 600;
}

/* Responsive */
@media (max-width: 640px) {
    .button-container {
        flex-direction: column;
    }

    .hero-section h1 {
        font-size: 1.8rem;
    }

    .logo-card {
        width: 200px;
        height: 200px;
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }
}