
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&family=Space+Mono:wght@400;700&display=swap');

* {
    box-sizing: border-box;
}

body {
    background-color: #050b17;
    background-image:
        radial-gradient(circle at 25% 10%, rgba(0, 240, 255, 0.1) 0%, transparent 20%),
        radial-gradient(circle at 75% 30%, rgba(144, 0, 255, 0.08) 0%, transparent 25%),
        radial-gradient(circle at 50% 80%, rgba(255, 0, 200, 0.1) 0%, transparent 20%);
    background-attachment: fixed;
    min-height: 100vh;
    overflow-x: hidden;
}

.text-glow {
    text-shadow: 0 0 10px rgba(0, 240, 255, 0.7);
}

.neon-gradient-text {
    background: linear-gradient(90deg, #00f0ff, #9000ff, #ff00c8);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.neon-border {
    position: relative;
}

.neon-border::before {
    content: '';
    position: absolute;
    inset: 0;
    padding: 1.5px;
    border-radius: inherit;
    background: linear-gradient(90deg, #00f0ff, #9000ff, #ff00c8);
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.nav-link {
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background: linear-gradient(90deg, #00f0ff, #9000ff);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.glass-card {
    background: rgba(7, 20, 38, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 240, 255, 0.1);
    transition: all 0.4s ease;
}

.glass-card:hover {
    border: 1px solid rgba(0, 240, 255, 0.3);
    box-shadow: 0 10px 30px -5px rgba(0, 240, 255, 0.2);
}

.section {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.section.visible {
    opacity: 1;
    transform: translateY(0);
}

.grid-bg {
    background-image:
        linear-gradient(rgba(0, 240, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 240, 255, 0.05) 1px, transparent 1px);
    background-size: 20px 20px;
}

.btn-neon {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.btn-neon::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.2),
            transparent);
    transition: all 0.6s ease;
}

.btn-neon:hover::before {
    left: 100%;
}

.cursor {
    position: fixed;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(0, 240, 255, 0.5);
    transform: translate(-50%, -50%);
    pointer-events: none;
    mix-blend-mode: screen;
    z-index: 9999;
    transition: transform 0.2s ease;
}

.cursor-follower {
    position: fixed;
    width: 40px;
    height: 40px;
    border: 2px solid rgba(144, 0, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 9998;
    transition: transform 0.3s ease, width 0.3s ease, height 0.3s ease;
}

.expand {
    transform: translate(-50%, -50%) scale(1.5);
    background: rgba(0, 240, 255, 0.2);
}

.expand-follower {
    transform: translate(-50%, -50%) scale(0.5);
    border-color: rgba(255, 0, 200, 0.5);
}

.social-icon {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.social-icon::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg,
            rgba(0, 240, 255, 0.2),
            rgba(144, 0, 255, 0.2),
            rgba(255, 0, 200, 0.2));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.social-icon:hover::before {
    opacity: 1;
}

.social-icon:hover {
    transform: translateY(-5px);
}

.form-input {
    background: rgba(5, 11, 23, 0.5);
    border: 1px solid rgba(0, 240, 255, 0.2);
    transition: all 0.3s ease;
}

.form-input:focus {
    border-color: rgba(0, 240, 255, 0.6);
    box-shadow: 0 0 0 2px rgba(0, 240, 255, 0.1);
}

.pricing-card {
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: -100%;
    left: -100%;
    width: 300%;
    height: 300%;
    background: linear-gradient(45deg,
            rgba(0, 240, 255, 0.1),
            rgba(144, 0, 255, 0.1),
            rgba(255, 0, 200, 0.1),
            rgba(0, 240, 255, 0.1));
    transform: rotate(45deg);
    transition: all 0.6s ease;
    z-index: -1;
}

.pricing-card:hover::before {
    top: -50%;
    left: -50%;
}

.pricing-card:hover {
    transform: translateY(-10px);
}

.pricing-popular {
    position: relative;
    overflow: hidden;
}

.pricing-popular::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 150px;
    background: linear-gradient(45deg, transparent 50%, rgba(0, 240, 255, 0.1) 50%);
    z-index: -1;
}

.feature-check {
    color: #00f0ff;
}

.feature-x {
    color: #ff00c8;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: rgba(7, 20, 38, 0.5);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(#00f0ff, #9000ff);
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(#9000ff, #ff00c8);
}