:root {
    --bg-color: #0b0d11;
    --text-color: #f1f5f9;

    /* Vibrant Goop Accents */
    --primary-neon: #ff0055;
    /* Hot Pink/Red */
    --secondary-neon: #00ffff;
    /* Cyber Cyan */

    --glass-bg: rgba(20, 25, 35, 0.4);
    --glass-border: rgba(255, 255, 255, 0.06);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    overflow-x: hidden;
    min-height: 100vh;
}

/* 3D Grid Perspective */
.background-grid {
    position: fixed;
    top: 50%;
    left: 50%;
    width: 200vw;
    height: 200vh;
    margin-left: -100vw;
    margin-top: -100vh;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    z-index: -2;
    transform: perspective(600px) rotateX(60deg) translateY(-100px);
    transform-origin: center top;
    animation: gridMove 5s linear infinite;
    pointer-events: none;
}

@keyframes gridMove {
    0% {
        transform: perspective(600px) rotateX(60deg) translateY(0);
    }

    100% {
        transform: perspective(600px) rotateX(60deg) translateY(60px);
    }
}

/* Vibrant glowing Orbs */
.blob {
    position: fixed;
    border-radius: 50%;
    filter: blur(100px);
    z-index: -1;
    opacity: 0.35;
    transition: transform 0.3s cubic-bezier(0.2, 0, 0.2, 1);
    pointer-events: none;
    mix-blend-mode: screen;
}

.blob1 {
    top: -5%;
    left: -10%;
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, var(--primary-neon) 0%, rgba(255, 0, 85, 0) 70%);
    animation: float1 15s infinite alternate ease-in-out;
}

.blob2 {
    bottom: -15%;
    right: -10%;
    width: 45vw;
    height: 45vw;
    background: radial-gradient(circle, var(--secondary-neon) 0%, rgba(0, 255, 255, 0) 70%);
    animation: float2 20s infinite alternate-reverse ease-in-out;
}

@keyframes float1 {
    0% {
        transform: translate(0, 0) scale(1);
        opacity: 0.35;
    }

    100% {
        transform: translate(10%, 10%) scale(1.1);
        opacity: 0.5;
    }
}

@keyframes float2 {
    0% {
        transform: translate(0, 0) scale(1);
        opacity: 0.35;
    }

    100% {
        transform: translate(-10%, -10%) scale(1.1);
        opacity: 0.45;
    }
}

/* Layout */
main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    position: relative;
    z-index: 10;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.social-links {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.social-icon {
    color: #94a3b8;
    transition: all 0.3s ease;
}

.social-links a:hover .social-icon {
    color: #fff;
    transform: translateY(-2px);
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.4));
}

.logo {
    font-size: 1.8rem;
    font-weight: 900;
    letter-spacing: -1px;
    background: linear-gradient(135deg, white, #94a3b8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero {
    text-align: center;
    margin-top: 15vh;
    margin-bottom: 25vh;
}

h1 {
    font-size: clamp(3rem, 8vw, 6.5rem);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -3px;
    margin-bottom: 1.5rem;
    background: linear-gradient(to bottom right, #ffffff, #64748b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.hero p {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    color: #94a3b8;
    max-width: 650px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

/* Call to Action Buttons */
.cta-group {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 1rem 2.5rem;
    border-radius: 100px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--primary-neon);
    color: #fff;
    box-shadow: 0 0 25px rgba(255, 0, 85, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 40px rgba(255, 0, 85, 0.7);
    background: #ff1a66;
}

.btn-secondary {
    background: var(--glass-bg);
    color: var(--text-color);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.2);
}

/* Features Grid */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    padding-bottom: 5rem;
}

.feature-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-top-width: 3px;
    border-radius: 20px;
    padding: 2.5rem;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.feature-card:hover {
    transform: translateY(-15px);
    background: rgba(25, 30, 45, 0.7);
}

.feature-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: #fff;
}

.feature-card p {
    color: #94a3b8;
    line-height: 1.7;
    font-size: 1.05rem;
}

/* Animations */
@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

main>* {
    animation: slideUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.hero h1 {
    animation-delay: 0.1s;
}

.hero p {
    animation-delay: 0.2s;
}

.cta-group {
    animation-delay: 0.3s;
}

.features {
    animation-delay: 0.5s;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .cta-group {
        flex-direction: column;
        padding: 0 1rem;
    }

    .btn {
        width: 100%;
        text-align: center;
    }
}