:root {
    --primary: #00f5ff;
    --secondary: #ff006e;
    --accent: #8338ec;
    --dark: #0a0a0f;
    --darker: #050508;
}

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

body {
    font-family: 'Space Grotesk', -apple-system, sans-serif;
    background: var(--dark);
    color: #e0e0e0;
    overflow-x: hidden;
    line-height: 1.6;
}

.mono {
    font-family: 'JetBrains Mono', monospace;
}

html {
    scroll-behavior: smooth;
}

/* Animated gradient background */
.hero-bg {
    background: 
        radial-gradient(circle at 20% 50%, rgba(0, 245, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(131, 56, 236, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(255, 0, 110, 0.1) 0%, transparent 50%),
        var(--dark);
    position: relative;
    min-height: 100vh;
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(90deg, transparent 0%, rgba(0, 245, 255, 0.03) 50%, transparent 100%),
        linear-gradient(0deg, transparent 0%, rgba(131, 56, 236, 0.03) 50%, transparent 100%);
    animation: grid-move 20s linear infinite;
    pointer-events: none;
}

@keyframes grid-move {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

/* Glitch effect */
.glitch {
    position: relative;
    color: var(--primary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.glitch::before,
.glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.glitch::before {
    left: 2px;
    text-shadow: -2px 0 var(--secondary);
    clip: rect(44px, 450px, 56px, 0);
    animation: glitch-anim 5s infinite linear alternate-reverse;
}

.glitch::after {
    left: -2px;
    text-shadow: -2px 0 var(--accent), 2px 2px var(--secondary);
    clip: rect(44px, 450px, 56px, 0);
    animation: glitch-anim-2 3s infinite linear alternate-reverse;
}

@keyframes glitch-anim {
    0% { clip: rect(31px, 9999px, 94px, 0); }
    20% { clip: rect(54px, 9999px, 66px, 0); }
    40% { clip: rect(28px, 9999px, 98px, 0); }
    60% { clip: rect(75px, 9999px, 5px, 0); }
    80% { clip: rect(42px, 9999px, 78px, 0); }
    100% { clip: rect(12px, 9999px, 23px, 0); }
}

@keyframes glitch-anim-2 {
    0% { clip: rect(65px, 9999px, 100px, 0); }
    20% { clip: rect(33px, 9999px, 11px, 0); }
    40% { clip: rect(88px, 9999px, 2px, 0); }
    60% { clip: rect(19px, 9999px, 76px, 0); }
    80% { clip: rect(51px, 9999px, 44px, 0); }
    100% { clip: rect(7px, 9999px, 89px, 0); }
}

/* Neon glow */
.neon {
    text-shadow: 
        0 0 10px var(--primary),
        0 0 20px var(--primary),
        0 0 30px var(--primary),
        0 0 40px var(--primary);
}

.neon-pink {
    text-shadow: 
        0 0 10px var(--secondary),
        0 0 20px var(--secondary),
        0 0 30px var(--secondary);
}

/* Geometric shapes */
.shape {
    position: absolute;
    opacity: 0.1;
    animation: float 20s ease-in-out infinite;
}

.shape-1 {
    width: 300px;
    height: 300px;
    background: linear-gradient(45deg, var(--primary), var(--accent));
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    top: 10%;
    right: 10%;
}

.shape-2 {
    width: 200px;
    height: 200px;
    background: linear-gradient(45deg, var(--secondary), var(--primary));
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    bottom: 20%;
    left: 5%;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(30px, -30px) rotate(120deg); }
    66% { transform: translate(-20px, 20px) rotate(240deg); }
}

/* Card styles */
.card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 245, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--primary);
    box-shadow: 0 20px 60px rgba(0, 245, 255, 0.3);
}

/* Button styles */
.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: var(--dark);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 1rem 2.5rem;
    border: none;
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
    will-change: transform;
    cursor: pointer;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(0, 245, 255, 0.6);
}

.btn-secondary {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 1rem 2.5rem;
    transition: all 0.3s;
    cursor: pointer;
}

.btn-secondary:hover {
    background: var(--primary);
    color: var(--dark);
    box-shadow: 0 0 30px rgba(0, 245, 255, 0.4);
}

/* Number badge */
.number-badge {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark);
    position: relative;
    box-shadow: 0 0 30px rgba(0, 245, 255, 0.5);
}

.number-badge::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    opacity: 0.5;
    filter: blur(10px);
    z-index: -1;
}

/* Section dividers */
.section-divider {
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    margin: 6rem 0;
    opacity: 0.3;
}

/* Text reveal animation */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: opacity, transform;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
    will-change: auto;
}

/* Navbar */
.nav-glass {
    background: rgba(10, 10, 15, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 245, 255, 0.1);
}

.nav-glass img {
    transition: filter 0.3s ease, transform 0.3s ease;
}

.nav-glass a:hover img {
    filter: drop-shadow(0 0 20px rgba(0, 245, 255, 0.8)) !important;
    transform: scale(1.05);
}

/* Pricing card */
.pricing-card {
    background: linear-gradient(135deg, rgba(0, 245, 255, 0.1), rgba(131, 56, 236, 0.1));
    border: 2px solid var(--primary);
    position: relative;
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 245, 255, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.pricing-card > * {
    position: relative;
    z-index: 1;
}

/* Accordion */
.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.accordion-input:checked ~ .accordion-content {
    max-height: 1000px;
}

/* Stats counter animation */
@keyframes count-up {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Unique section backgrounds */
.section-bg-1 {
    background: 
        radial-gradient(circle at 10% 20%, rgba(0, 245, 255, 0.08) 0%, transparent 50%),
        var(--dark);
}

.section-bg-2 {
    background: 
        radial-gradient(circle at 90% 80%, rgba(131, 56, 236, 0.08) 0%, transparent 50%),
        var(--darker);
}

/* Typography */
h1, h2, h3 {
    font-weight: 700;
    letter-spacing: -0.02em;
}

/* Scroll indicator */
.scroll-indicator {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(0, 245, 255, 0.2);
    z-index: 9999;
}

.scroll-indicator::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: var(--scroll-progress, 0%);
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transition: width 0.1s;
}

