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

:root {
    --electric-purple: #9D4EDD;
    --acid-green: #CCFF00;
    --dark-navy: #0B0C10;
    --off-white: #F8F9FA;
    --purple-dark: #7209B7;
}

html {
    background-color: var(--acid-green);
}

body {
    font-family: 'Manrope', sans-serif;
    background-color: var(--dark-navy);
    color: var(--off-white);
    overflow-x: hidden;
    line-height: 1.6;
    min-height: 100vh;
    position: relative;
}

body::after {
    content: '';
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100vh;
    background: linear-gradient(to top, var(--acid-green) 0%, var(--electric-purple) 50%);
    z-index: -1;
    pointer-events: none;
}

/* Hero Section with Parallax */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    z-index: 0;
}

.parallax-layer {
    position: absolute;
    width: 100%;
    height: 100%;
}

.layer-1 {
    background: radial-gradient(circle at 20% 30%, var(--electric-purple) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, var(--purple-dark) 0%, transparent 50%);
    opacity: 0.4;
}

.layer-2 {
    background: radial-gradient(circle at 60% 40%, var(--acid-green) 0%, transparent 40%);
    opacity: 0.15;
}

.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.shape {
    position: absolute;
    border-radius: 50%;
    animation: float 20s infinite ease-in-out;
}

.shape-1 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, var(--electric-purple), var(--purple-dark));
    top: 10%;
    left: 5%;
    opacity: 0.2;
    animation-delay: 0s;
}

.shape-2 {
    width: 200px;
    height: 200px;
    background: var(--acid-green);
    bottom: 15%;
    right: 10%;
    opacity: 0.15;
    animation-delay: 3s;
}

.shape-3 {
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, var(--electric-purple), var(--acid-green));
    top: 60%;
    left: 15%;
    opacity: 0.2;
    animation-delay: 6s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(30px, -30px) scale(1.1);
    }
    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 1200px;
    padding: 0 2rem;
}

.brand-name {
    font-family: 'Outfit', sans-serif;
    font-weight: 900;
    font-size: clamp(4rem, 15vw, 12rem);
    line-height: 0.9;
    letter-spacing: -0.05em;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, var(--acid-green) 0%, var(--electric-purple) 50%, var(--acid-green) 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 8s ease infinite;
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.tagline {
    font-family: 'Manrope', sans-serif;
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    font-weight: 400;
    color: var(--off-white);
    margin-bottom: 3rem;
    opacity: 0.9;
}

.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    animation: bounce 2s infinite;
}

.scroll-indicator::before {
    content: '';
    width: 2px;
    height: 40px;
    background: linear-gradient(to bottom, transparent, var(--acid-green));
}

@keyframes bounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(10px);
    }
}

/* Services Section */
.services {
    padding: 8rem 2rem;
    background: linear-gradient(180deg, var(--dark-navy) 0%, #1a1d29 100%);
}

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

.section-title {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: clamp(2.5rem, 6vw, 4rem);
    text-align: center;
    margin-bottom: 1rem;
    color: var(--acid-green);
}

.section-subtitle {
    text-align: center;
    font-size: clamp(1rem, 2vw, 1.3rem);
    color: var(--off-white);
    opacity: 0.8;
    margin-bottom: 5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 5rem;
}

.service-card {
    background: rgba(157, 78, 221, 0.05);
    border: 2px solid transparent;
    border-radius: 20px;
    padding: 3rem 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 18px;
    padding: 2px;
    background: linear-gradient(135deg, var(--electric-purple), var(--acid-green));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    background: rgba(157, 78, 221, 0.1);
}

.service-card:hover::before {
    opacity: 1;
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.service-title {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--electric-purple);
}

.service-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--off-white);
    opacity: 0.85;
}

/* CTA Section */
.cta-section {
    padding: 6rem 2rem;
    text-align: center;
    background: var(--dark-navy);
}

.cta-title {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 1rem;
    color: var(--off-white);
}

.cta-subtitle {
    font-size: clamp(1rem, 2vw, 1.3rem);
    color: var(--off-white);
    opacity: 0.8;
    margin-bottom: 3rem;
}

.cta-button {
    display: inline-block;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1.3rem;
    padding: 1.5rem 3.5rem;
    background: var(--acid-green);
    color: var(--dark-navy);
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--electric-purple);
    transition: left 0.3s ease;
    z-index: -1;
}

.cta-button:hover {
    color: var(--acid-green);
    transform: scale(1.05);
    box-shadow: 0 10px 40px rgba(204, 255, 0, 0.3);
}

.cta-button:hover::before {
    left: 0;
}

/* Footer */
.footer {
    padding: 3rem 2rem;
    text-align: center;
    border-top: 1px solid rgba(157, 78, 221, 0.2);
    background: var(--dark-navy);
}

.footer-brand {
    font-family: 'Outfit', sans-serif;
    font-weight: 900;
    font-size: 2rem;
    background: linear-gradient(135deg, var(--electric-purple), var(--acid-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.footer-text {
    color: var(--off-white);
    opacity: 0;
    font-size: 0.95rem;
    transition: opacity 0.3s ease;
}

.footer-text.loaded {
    opacity: 0.6;
}

/* Responsive */
@media (max-width: 768px) {
    .hero {
        height: 100vh;
    }

    .services {
        padding: 4rem 1rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .service-card {
        padding: 2rem 1.5rem;
    }

    .cta-section {
        padding: 4rem 1rem;
    }

    .cta-button {
        padding: 1.2rem 2.5rem;
        font-size: 1.1rem;
    }

    .shape-1, .shape-2, .shape-3 {
        width: 150px;
        height: 150px;
    }
}

/* Smooth scroll */
html {
    scroll-behavior: smooth;
}

