:root {
    --primary: #0ea5e9;
    --primary-dark: #0369a1;
    --accent: #a78bfa;
    --bg-dark: #0f172a;
    --text-light: #f8fafc;
    --text-muted: #94a3b8;
    --glass: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
}

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

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

span {
    color: var(--primary);
}

/* Navigation */
nav {
    padding: 2rem 0;
    position: absolute;
    width: 100%;
    z-index: 10;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -1px;
}

.nav-links {
    display: flex;
    align-items: center;
}

.nav-links a {
    color: var(--text-light);
    text-decoration: none;
    margin-left: 2rem;
    font-weight: 600;
    transition: color 0.3s;
}

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

/* Language Switcher */
.lang-switcher {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-left: 2rem;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.lang-btn {
    background: none;
    border: none;
    color: var(--text-muted);
    font-weight: 600;
    cursor: pointer;
    transition: color 0.3s;
    font-family: inherit;
    padding: 2px 5px;
}

.lang-btn.active {
    color: var(--primary);
    text-shadow: 0 0 10px rgba(14, 165, 233, 0.5);
}

.lang-btn:hover {
    color: var(--text-light);
}

/* Buttons */
.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(14, 165, 233, 0.3);
}

.btn-large {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    text-decoration: none;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1.1rem;
    display: inline-block;
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(14, 165, 233, 0.4);
}

.btn-secondary {
    color: var(--text-light);
    text-decoration: none;
    margin-left: 1.5rem;
    font-weight: 600;
    border-bottom: 2px solid var(--primary);
    padding-bottom: 2px;
}

/* Global Background Blobs */
.blob-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    /* Behind everything */
    pointer-events: none;
    overflow: hidden;
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.3;
    transition: transform 1.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.blob-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--primary), transparent);
    top: -10%;
    right: 5%;
    animation: float 20s infinite alternate ease-in-out;
}

.blob-2 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--accent), transparent);
    bottom: 5%;
    left: 10%;
    animation: float 15s infinite alternate-reverse ease-in-out;
}

.blob-3 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, #f43f5e, transparent);
    top: 20%;
    left: 30%;
    animation: float 25s infinite alternate ease-in-out;
}

@keyframes float {
    0% {
        margin-top: 0px;
        margin-left: 0px;
    }

    50% {
        margin-top: 50px;
        margin-left: 30px;
    }

    100% {
        margin-top: 20px;
        margin-left: -20px;
    }
}

/* Hero Section */
.hero {
    position: relative;
    padding: 12rem 0 8rem;
    overflow: hidden;
}

.hero-container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.badge {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.hero-content h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.hero-content p {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 500px;
}

.hero-image {
    position: relative;
}

.glass-card {
    background: var(--glass);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 30px;
    padding: 2rem;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
    overflow: hidden;
}

.glass-card img {
    width: 100%;
    border-radius: 15px;
}

/* Showcase */
.showcase {
    padding: 6rem 0;
    background: linear-gradient(180deg, transparent, rgba(14, 165, 233, 0.05), transparent);
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.caption {
    margin-top: 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-muted);
}

/* Features */
.features {
    padding: 8rem 0;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 4rem;
    font-weight: 800;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    padding: 2.5rem;
    border-radius: 24px;
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
}

.feature-card .icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--text-muted);
}

/* Pricing */
.pricing {
    padding: 8rem 0;
}

.pricing-card {
    max-width: 500px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.1), rgba(167, 139, 250, 0.1));
    border: 1px solid var(--glass-border);
    padding: 4rem;
    border-radius: 40px;
    text-align: center;
    position: relative;
}

.pricing-card.primary {
    border: 2px solid var(--primary);
}

.pricing-header h3 {
    font-size: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.price {
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.price .amount {
    font-size: 3rem;
    /* Bold, clear, and massive */
    font-weight: 800;
    letter-spacing: -3px;
    background: linear-gradient(to bottom, #fff, #94a3b8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
}

.price span:not(.amount) {
    font-size: 1.25rem;
    color: var(--text-muted);
    -webkit-text-fill-color: var(--text-muted);
    font-weight: 600;
}

.pricing-features {
    list-style: none;
    text-align: left;
    margin-bottom: 3rem;
}

.pricing-features li {
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--glass-border);
    color: var(--text-muted);
}

.crypto-note {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 1.5rem;
}

/* Footer */
footer {
    padding: 4rem 0;
    border-top: 1px solid var(--glass-border);
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 900px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }

    .hero-content h1 {
        font-size: 3rem;
    }

    .hero-content p {
        margin-left: auto;
        margin-right: auto;
    }

    .nav-container {
        flex-direction: column;
        gap: 1.5rem;
    }

    nav {
        position: relative; /* Push content down instead of overlapping */
        padding: 2rem 0 0;
    }

    .nav-links {
        margin-left: 0;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }

    .nav-links a {
        margin-left: 0;
    }

    .lang-switcher {
        margin-left: 0;
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 600px) {
    .hero {
        padding: 4rem 0 4rem; /* Reduced top padding since nav is relative */
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .price .amount {
        font-size: 3.5rem;
    }

    .pricing-card {
        padding: 2.5rem 1.5rem;
    }

    .cta-group {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1.25rem;
    }

    .btn-secondary {
        margin-left: 0 !important;
        display: inline-block;
    }

    .feature-card {
        padding: 1.5rem;
    }
}