:root {
    --bg-color: #050505;
    --text-color: #e0e0e0;
    --accent-primary: #a855f7;
    /* Purple */
    --accent-secondary: #14b8a6;
    /* Teal */
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.05);
    --font-main: 'Inter', sans-serif;
    --font-display: 'Outfit', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    cursor: none;
    /* Custom cursor */
}

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

/* Custom Cursor */
.cursor-dot,
.cursor-outline {
    position: fixed;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: 9999;
    pointer-events: none;
}

.cursor-dot {
    width: 8px;
    height: 8px;
    background-color: white;
}

.cursor-outline {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    transition: width 0.2s, height 0.2s, background-color 0.2s;
}

body:hover .cursor-outline {
    width: 40px;
    height: 40px;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 2rem 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    mix-blend-mode: difference;
}

.logo {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.5rem;
    letter-spacing: 2px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 3rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-color);
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: opacity 0.3s;
}

.nav-links a:hover {
    opacity: 0.7;
}

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

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

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    animation: float 10s infinite ease-in-out;
}

.orb-1 {
    width: 400px;
    height: 400px;
    background: var(--accent-primary);
    top: 10%;
    left: 20%;
    animation-delay: 0s;
}

.orb-2 {
    width: 300px;
    height: 300px;
    background: var(--accent-secondary);
    bottom: 20%;
    right: 15%;
    animation-delay: -3s;
}

.orb-3 {
    width: 150px;
    height: 150px;
    background: #ffffff;
    top: 40%;
    left: 50%;
    opacity: 0.1;
    animation-delay: -5s;
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(30px, -30px);
    }
}

.hero-content {
    text-align: center;
    z-index: 2;
}

h1 {
    font-family: var(--font-display);
    font-size: 10vw;
    line-height: 1;
    margin-bottom: 2rem;
    position: relative;
    background: linear-gradient(to right, #fff, #aaa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.status-line {
    font-family: monospace;
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.6);
}

.highlight {
    color: var(--accent-secondary);
    text-shadow: 0 0 10px rgba(20, 184, 166, 0.5);
}

.separator {
    margin: 0 1rem;
    opacity: 0.3;
}

.hero-desc {
    max-width: 500px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.6);
}

.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    font-size: 0.8rem;
    letter-spacing: 2px;
    opacity: 0.5;
}

.line {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, #fff, transparent);
}

/* Content Sections */
.content-section {
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 4rem;
    position: relative;
}

.glass-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
    padding: 4rem;
    border-radius: 20px;
    max-width: 800px;
    width: 100%;
    transform: translateY(50px);
    opacity: 0;
    transition: all 1s ease-out;
}

.glass-card.visible {
    transform: translateY(0);
    opacity: 1;
}

.glass-card h2 {
    font-family: var(--font-display);
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

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

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.stat .num {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--accent-primary);
}

.stat .label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.6;
}

/* Footer & Contact */
.footer-section {
    min-height: 60vh;
}

.cta-button {
    display: inline-block;
    margin-top: 2rem;
    padding: 1rem 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    text-decoration: none;
    font-family: monospace;
    letter-spacing: 1px;
    transition: all 0.3s;
}

.cta-button:hover {
    background: white;
    color: black;
    border-color: white;
}

footer {
    margin-top: auto;
    padding-bottom: 2rem;
    font-size: 0.8rem;
    opacity: 0.3;
}

/* Responsive */
@media (max-width: 768px) {
    h1 {
        font-size: 15vw;
    }

    .glass-card {
        padding: 2rem;
    }

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

    .nav-links {
        display: none;
    }

    /* Simplified for mobile */
    .orb {
        filter: blur(60px);
    }

    nav {
        justify-content: center;
    }
}