:root {
    --primary: #00ffff;
    --primary-glow: rgba(0, 255, 255, 0.5);
    --secondary: #ff00ff;
    --secondary-glow: rgba(255, 0, 255, 0.5);
    --bg-black: #000000;
    --bg-card: rgba(10, 10, 10, 0.6);
    --text-white: #ffffff;
    --text-dim: #a0a0a0;
    --text-cyan: #00ffff;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --container: 1200px;
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    cursor: none;
}

body {
    background-color: var(--bg-black);
    color: var(--text-white);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    cursor: none;
}

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 2rem;
}

/* Navbar */
.navbar {
    height: 80px;
    display: flex;
    align-items: center;
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(15px);
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 255, 255, 0.1);
}

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

.logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: 4px;
    color: var(--text-white);
    text-shadow: 0 0 10px var(--primary-glow);
}

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

.nav-links a {
    text-decoration: none;
    color: var(--text-dim);
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition-smooth);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-links a:hover {
    color: var(--primary);
    text-shadow: 0 0 8px var(--primary-glow);
}

/* Buttons */
.btn {
    padding: 0.8rem 2rem;
    border-radius: 4px;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition-smooth);
    display: inline-block;
    cursor: pointer;
    border: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--primary);
    color: black;
    box-shadow: 0 0 15px var(--primary-glow);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 0 25px var(--primary), 0 0 50px var(--primary-glow);
    background: #ffffff;
}

.btn-outline {
    border: 1px solid var(--primary);
    color: var(--primary);
    background: transparent;
}

.btn-outline:hover {
    background: var(--primary);
    color: black;
    box-shadow: 0 0 20px var(--primary-glow);
}

.btn-large {
    padding: 1.2rem 3.5rem;
    font-size: 1.1rem;
    background: linear-gradient(90deg, var(--primary), var(--secondary), var(--primary));
    background-size: 200% auto;
    color: white;
    border: none;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
    animation: shine 3s linear infinite;
}

@keyframes shine {
    to {
        background-position: 200% center;
    }
}

.btn-large:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 0 40px var(--primary-glow), 0 0 60px var(--secondary-glow);
    letter-spacing: 3px;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 80px;
    overflow: hidden;
}

#hero-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, transparent, rgba(0, 0, 0, 0.8));
    z-index: -1;
}

.hero-content {
    max-width: 800px;
    position: relative;
    z-index: 1;
}

.badge {
    background: rgba(0, 255, 255, 0.05);
    border: 1px solid var(--primary);
    color: var(--primary);
    padding: 0.6rem 1.4rem;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 4px;
    display: inline-block;
    margin-bottom: 2rem;
    box-shadow: 0 0 15px var(--primary-glow);
    animation: pulse 2s infinite ease-in-out;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 10px var(--primary-glow);
    }

    50% {
        box-shadow: 0 0 25px var(--primary-glow);
    }

    100% {
        box-shadow: 0 0 10px var(--primary-glow);
    }
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: 5rem;
    line-height: 1;
    margin-bottom: 2rem;
    font-weight: 800;
}

.hero h1 span {
    color: var(--primary);
    text-shadow: 0 0 20px var(--primary-glow);
}

.hero p {
    font-size: 1.4rem;
    color: var(--text-dim);
    margin-bottom: 3rem;
    max-width: 600px;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
}

/* Problem Section */
.problem-section {
    padding: 10rem 0;
    position: relative;
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 4rem;
}

.problem-item {
    padding: 2rem;
    border-left: 2px solid rgba(0, 255, 255, 0.2);
    transition: var(--transition-smooth);
}

.problem-item:hover {
    border-left-color: var(--primary);
    background: rgba(0, 255, 255, 0.02);
}

.problem-item .number {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    color: var(--primary);
    display: block;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.problem-item p {
    font-size: 1.1rem;
    color: var(--text-dim);
}

.problem-conclusion {
    margin-top: 5rem;
    font-size: 1.5rem;
    font-family: var(--font-heading);
    font-weight: 600;
    color: white;
    text-align: center;
}

.text-center {
    text-align: center;
}

.text-cyan {
    color: var(--primary);
    font-size: 0.8rem;
    letter-spacing: 3px;
    font-weight: 800;
}

/* How We Help */
.how-we-help {
    padding: 8rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-header p {
    color: var(--text-slate);
    font-size: 1.1rem;
}

.grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.card {
    background: var(--bg-card);
    padding: 3.5rem 2.5rem;
    border-radius: 4px;
    border: 1px solid rgba(0, 255, 255, 0.1);
    transition: var(--transition-smooth);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary);
    transform: scaleX(0);
    transition: var(--transition-smooth);
    transform-origin: left;
}

.card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(0, 255, 255, 0.1);
    background: rgba(20, 20, 20, 0.8);
}

.card:hover::before {
    transform: scaleX(1);
}

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

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

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

/* Achievements */
.achievements {
    padding: 8rem 0;
    background: rgba(255, 255, 255, 0.02);
}

.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 4rem;
}

.achievements ul {
    list-style: none;
    margin-top: 2rem;
}

.achievements li {
    margin-bottom: 1.5rem;
    position: relative;
    padding-left: 2rem;
}

.achievements li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 700;
}

.mockup-container {
    background: linear-gradient(135deg, #1e293b, #0f172a);
    height: 400px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    position: relative;
}

.stats-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Testimonials */
.testimonials {
    padding: 8rem 0;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.testimonial-card {
    background: var(--bg-card);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.testimonial-card p {
    font-style: italic;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.author strong {
    display: block;
    color: var(--primary);
}

.author span {
    font-size: 0.9rem;
    color: var(--text-slate);
}

.check-item {
    font-size: 1rem;
    color: var(--text-dim);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Custom Cursor */
#custom-cursor {
    width: 15px;
    height: 15px;
    background: var(--primary);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 9999;
    mix-blend-mode: difference;
    transition: transform 0.1s ease-out;
    transform: translate(-50%, -50%);
}

#custom-cursor.active {
    transform: translate(-50%, -50%) scale(1.5);
    background: white;
}

a:hover~#custom-cursor,
button:hover~#custom-cursor,
.btn:hover~#custom-cursor {
    transform: translate(-50%, -50%) scale(1.5);
}

/* Contact */
.contact {
    padding: 8rem 0;
}

.contact-card {
    max-width: 600px;
    margin: 0 auto;
    background: linear-gradient(to bottom right, var(--bg-card), rgba(16, 185, 129, 0.05));
    padding: 4rem;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.contact-card h2 {
    margin-bottom: 1rem;
}

.contact-card p {
    color: var(--text-slate);
    margin-bottom: 2rem;
}

#contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

#contact-form input {
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(0, 0, 0, 0.2);
    color: white;
    font-family: var(--font-body);
}

.btn-full {
    width: 100%;
}

/* Footer */
.footer {
    padding: 2rem 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-slate);
    font-size: 0.9rem;
}

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

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

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 {
    transition-delay: 0.2s;
}

.delay-2 {
    transition-delay: 0.4s;
}

.delay-3 {
    transition-delay: 0.6s;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .grid,
    .split-layout,
    .testimonial-grid {
        grid-template-columns: 1fr;
    }

    .nav-links {
        display: none;
        /* Simplification for now */
    }

    .hero-actions {
        flex-direction: column;
    }
}