:root {
    --bg: #0f1115;
    --text: #ffffff;
    --text-muted: #a1a1aa;
    --primary: #3b82f6;
    --primary-glow: rgba(59, 130, 246, 0.5);
    --glass: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
}

body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    background-color: var(--bg);
    color: var(--text);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Background Blobs */
.blob-cont {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    overflow: hidden;
    filter: blur(80px);
}

.blob {
    position: absolute;
    border-radius: 50%;
    opacity: 0.4;
    animation: drift 20s infinite alternate;
}

.blob-one {
    width: 500px;
    height: 500px;
    background: #4f46e5;
    top: -100px;
    left: -100px;
}

.blob-two {
    width: 400px;
    height: 400px;
    background: #ec4899;
    bottom: -50px;
    right: -50px;
    animation-delay: -5s;
}

.blob-three {
    width: 300px;
    height: 300px;
    background: #06b6d4;
    bottom: 20%;
    left: 30%;
    animation-delay: -10s;
}

@keyframes drift {
    from {
        transform: translate(0, 0) rotate(0deg);
    }

    to {
        transform: translate(50px, 50px) rotate(20deg);
    }
}

/* Nav */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 8%;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--glass-border);
}

.logo {
    font-weight: 800;
    font-size: 24px;
    letter-spacing: -1px;
}

.links a {
    color: var(--text);
    text-decoration: none;
    margin-left: 32px;
    font-size: 14px;
    transition: color 0.2s;
}

.links a:hover {
    color: var(--primary);
}

.links .btn-primary {
    color: black;
}

/* Hero */
header {
    text-align: center;
    padding: 120px 20px;
    max-width: 800px;
    margin: 0 auto;
}

.badge {
    display: inline-block;
    padding: 6px 16px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 99px;
    font-size: 13px;
    margin-bottom: 24px;
    color: var(--primary);
}

h1 {
    font-size: 64px;
    line-height: 1.1;
    margin: 0 0 24px 0;
    letter-spacing: -2px;
}

.gradient-text {
    background: linear-gradient(135deg, #60a5fa 0%, #c084fc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

header p {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 40px;
}



.hero-image-container {
    margin-top: 60px;
}

.hero-image {
    max-width: 100%;
    border-radius: 12px;
    box-shadow: 0 20px 50px -10px rgba(0, 0, 0, 0.5);
    border: 1px solid var(--glass-border);
}

/* Buttons */
.cta-group {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.btn-primary {
    background: white;
    color: black;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.2s;
}

.btn-secondary {
    background: var(--glass);
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    border: 1px solid var(--glass-border);
    font-weight: 600;
    transition: background 0.2s;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px -10px rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Features */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    padding: 80px 8%;
}

.card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    padding: 32px;
    border-radius: 16px;
    transition: transform 0.2s;
}

.card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
}

.icon {
    font-size: 32px;
    margin-bottom: 20px;
}

h3 {
    margin: 0 0 12px 0;
}

.card p {
    color: var(--text-muted);
    margin: 0;
    font-size: 15px;
}

footer {
    text-align: center;
    padding: 60px;
    color: var(--text-muted);
    font-size: 14px;
    border-top: 1px solid var(--glass-border);
}

@media (max-width: 600px) {
    h1 {
        font-size: 42px;
    }

    .links {
        display: none;
    }
}

/* Installation Guide */
.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 20px;
}

.install-steps {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 40px;
}

.step {
    display: flex;
    gap: 20px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    padding: 24px;
    border-radius: 12px;
    align-items: flex-start;
}

.step-num {
    background: var(--primary);
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

.step-content h4 {
    margin: 0 0 8px 0;
    font-size: 18px;
}

.step-content p {
    margin: 0;
    color: var(--text-muted);
    font-size: 15px;
}

code {
    background: rgba(0, 0, 0, 0.3);
    padding: 2px 6px;
    border-radius: 4px;
    font-family: monospace;
    color: #e2e8f0;
}