:root {
    --bg-color: #030712;
    --text-primary: #f9fafb;
    --text-secondary: #9ca3af;
    --accent: #3b82f6;
    --accent-glow: rgba(59, 130, 246, 0.5);
    --secondary-accent: #8b5cf6;
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: 'Outfit', sans-serif;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow-x: hidden;
    position: relative;
    padding: 1rem;
}

/* Background Blobs */
.blob {
    position: fixed;
    border-radius: 50%;
    filter: blur(120px);
    z-index: -1;
    opacity: 0.6;
    animation: drift 15s infinite alternate;
}

.blob-1 {
    width: 400px;
    height: 400px;
    background: var(--accent);
    top: -10%;
    left: -10%;
}

.blob-2 {
    width: 300px;
    height: 300px;
    background: var(--secondary-accent);
    bottom: -10%;
    right: -10%;
    animation-delay: -5s;
}

@keyframes drift {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(50px, 50px) scale(1.1);
    }
}

/* Container */
.container {
    width: 100%;
    max-width: 500px;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 3rem 2.5rem;
    text-align: center;
    box-shadow: var(--glass-shadow);
    transform: translateY(20px);
    opacity: 0;
    animation: fadeUp 1s ease forwards;
}

@keyframes fadeUp {
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Logo */
.logo {
    font-family: 'JetBrains Mono', monospace;
    font-size: 2.2rem;
    font-weight: 800;
    letter-spacing: -1px;
    white-space: nowrap;
    color: #fff;
    margin-bottom: 0.5rem;
    display: inline-block;
    background: linear-gradient(135deg, #ffffff 0%, #94a3b8 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 10px rgba(59, 130, 246, 0.4));
}

.logo .dot {
    color: var(--accent);
    -webkit-text-fill-color: var(--accent);
    text-shadow: 0 0 20px var(--accent-glow);
}

.slogan {
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--text-secondary);
    letter-spacing: 2px;
    margin-bottom: 3rem;
    text-transform: uppercase;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.05);
}

/* Roadmap */
.roadmap-title {
    font-weight: 600;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: left;
    display: flex;
    align-items: center;
    gap: 10px;
}

.roadmap-title::before {
    content: '';
    width: 12px;
    height: 12px;
    background: var(--accent);
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 10px var(--accent-glow);
}

.item {
    margin-bottom: 1.5rem;
    text-align: left;
    padding: 0.75rem;
    border-radius: 12px;
    background: transparent;
    transition: background 0.3s ease, transform 0.3s ease;
    margin-inline: -0.75rem;
}

.item:hover {
    background: rgba(255, 255, 255, 0.02);
    transform: translateX(5px);
}

.item-label {
    display: flex;
    justify-content: space-between;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.item-percent {
    color: var(--text-secondary);
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.9rem;
}

.bar {
    height: 8px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.progress {
    height: 100%;
    border-radius: 10px;
    background: linear-gradient(90deg, var(--accent), var(--secondary-accent));
    box-shadow: 0 0 10px var(--accent-glow);
    position: relative;
}

/* Specific Progress Widths */
.progress.vps {
    width: 20%;
    animation: load-vps 1.5s ease-out;
}

.progress.cloud {
    width: 10%;
    animation: load-cloud 1.5s ease-out;
}

.progress.websites {
    width: 0%;
    background: linear-gradient(90deg, var(--text-secondary), #4b5563);
    animation: load-websites 1.5s ease-out;
    box-shadow: none;
    visibility: hidden;
}

.progress.ai {
    width: 10%;
    animation: load-ai 1.5s ease-out;
}

@keyframes load-vps {
    from {
        width: 0;
    }

    to {
        width: 20%;
    }
}

@keyframes load-cloud {
    from {
        width: 0;
    }

    to {
        width: 10%;
    }
}

@keyframes load-websites {
    from {
        width: 0;
    }

    to {
        width: 0%;
    }
}

@keyframes load-ai {
    from {
        width: 0;
    }

    to {
        width: 10%;
    }
}

/* Shine effect on progress bar */
.progress::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: shine 2s infinite;
}

@keyframes shine {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

/* Limit Section */
.limit {
    margin-top: 3rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 16px;
    border: 1px solid var(--glass-border);
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    /* Podkreślenie od góry */
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.limit::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: radial-gradient(circle at 50% 0%, rgba(59, 130, 246, 0.05), transparent 70%);
    pointer-events: none;
}

.limit:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.limit b {
    color: var(--text-primary);
    font-weight: 600;
}

.limit .count {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.5rem 1rem;
    background: rgba(59, 130, 246, 0.1);
    color: var(--accent);
    border-radius: 20px;
    font-family: 'JetBrains Mono', monospace;
    font-weight: 800;
    border: 1px solid rgba(59, 130, 246, 0.2);
    box-shadow: inset 0 0 10px rgba(59, 130, 246, 0.05);
}

/* Footer */
.footer {
    margin-top: 2rem;
    font-size: 0.85rem;
    color: var(--text-secondary);
    position: relative;
    z-index: 10;
}

/* Match Mobile */
@media(max-width: 500px) {
    .container {
        padding: 2rem 1.5rem;
    }

    .logo {
        font-size: 1.8rem;
    }

    .slogan {
        font-size: 0.9rem;
        letter-spacing: 1px;
    }

    .blob-1 {
        width: 250px;
        height: 250px;
    }

    .blob-2 {
        width: 200px;
        height: 200px;
    }
}