:root {
    /* Colors */
    --primary: #0066FF;
    --primary-dark: #0044AA;
    --secondary: #00D4FF;
    --accent: #FF3366;
    --dark: #0A0A1E;
    --light: #FFFFFF;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    --gradient-dark: linear-gradient(135deg, var(--dark) 0%, #1A1A3E 100%);
    
    /* Glass Effect */
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.15);
    --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    
    /* RGB Colors */
    --primary-rgb: 0, 102, 255;
    --secondary-rgb: 0, 212, 255;
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background: var(--dark);
    color: var(--light);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Custom Cursor */
.cursor {
    position: fixed;
    width: 40px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    pointer-events: none;
    transition: transform 0.2s ease;
    z-index: 9999;
}

.cursor-dot {
    position: fixed;
    width: 8px;
    height: 8px;
    background: var(--secondary);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 1rem 0;
    backdrop-filter: blur(10px);
    background: rgba(10, 10, 30, 0.8);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: var(--light);
}

.logo-mark {
    width: 40px;
    height: 40px;
    transition: transform 0.3s ease;
}

.logo:hover .logo-mark {
    transform: rotate(-180deg);
}

.logo-circle {
    opacity: 0.8;
    transition: stroke-dasharray 0.6s ease;
}

.logo-arch {
    transform-origin: center;
    animation: float-arch 3s ease-in-out infinite;
}

.logo-dot {
    animation: pulse 2s ease-in-out infinite;
}

.logo-path {
    fill: none;
    stroke: var(--primary);
    stroke-width: 2;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links a {
    color: var(--light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary);
}

.menu-toggle {
    display: none;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    height: auto;
    padding: 8rem 0 6rem;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-content {
    max-width: 600px;
    position: relative;
    z-index: 1;
    padding-bottom: 2rem;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    color: transparent;
    display: block;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
}

/* Buttons */
.btn-primary {
    background: var(--gradient-primary);
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    color: var(--light);
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.btn-secondary {
    background: transparent;
    border: 1px solid var(--glass-border);
    padding: 1rem 2rem;
    border-radius: 50px;
    color: var(--light);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary:hover,
.btn-secondary:hover {
    transform: translateY(-2px);
}

/* Stats Cards */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.stat-card {
    padding: 1.5rem;
    border-radius: 20px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary);
    display: block;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Visual Elements */
.hero-visual {
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.gradient-orb {
    position: absolute;
    width: 600px;
    height: 600px;
    background: var(--gradient-primary);
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
    right: -200px;
    top: 50%;
    transform: translateY(-50%);
}

.data-grid {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.3;
}

/* Animations */
@keyframes float {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-30px, 30px); }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-stats {
        grid-template-columns: 1fr;
    }

    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 100vh;
        padding: 80px 24px;
        background: rgba(10, 10, 30, 0.98);
        transform: translateX(100%);
        transition: transform 0.3s ease-in-out;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        z-index: 998;
    }

    .nav-links.active {
        transform: translateX(0);
    }

    .navbar {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }

    .container {
        width: 100%;
        max-width: 100%;
        padding-left: 16px;
        padding-right: 16px;
        overflow-x: hidden;
    }

    .hero-visual {
        width: 100%;
        opacity: 0.3;
    }

    .hero {
        min-height: auto;
        padding: 6rem 0 4rem;
        overflow-x: hidden;
        width: 100%;
    }

    .hero-content {
        padding-bottom: 2rem;
    }

    .explore-section {
        padding: 3rem 0 4rem;
        position: relative;
        z-index: 1;
        background: var(--dark);
    }

    .section-title {
        margin-bottom: 2rem;
    }

    .hero-visual {
        position: absolute;
        opacity: 0.3;
        z-index: 0;
        pointer-events: none;
    }

    /* Fix cursor size for mobile */
    .cursor, .cursor-dot {
        display: none;
    }

    .gradient-orb {
        width: 300px;
        height: 300px;
        right: -100px;
    }
} 

/* Cursor hover effect */
.cursor-hover {
    transform: scale(1.5);
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--secondary);
}

/* Floating elements */
.floating-element {
    position: absolute;
    background: var(--secondary);
    border-radius: 50%;
    animation: floatElement 6s ease-in-out infinite;
    filter: blur(1px);
}

.network-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.1;
}

.network-line {
    stroke: var(--secondary);
    stroke-width: 1;
    animation: fadeInOut 4s ease-in-out infinite;
}

@keyframes floatElement {
    0%, 100% {
        transform: translate(0, 0);
    }
    25% {
        transform: translate(20px, -20px);
    }
    50% {
        transform: translate(-10px, -30px);
    }
    75% {
        transform: translate(-20px, 10px);
    }
}

@keyframes fadeInOut {
    0%, 100% { opacity: 0.1; }
    50% { opacity: 0.3; }
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 30px;
        height: 20px;
        padding: 0;
        background: none;
        border: none;
        cursor: pointer;
        z-index: 1000;
        position: relative;
    }

    .menu-toggle span {
        display: block;
        width: 100%;
        height: 2px;
        background: var(--light);
        transition: transform 0.3s ease, opacity 0.3s ease;
    }

    .menu-toggle.active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }

    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 100vh;
        padding: 80px 24px;
        background: rgba(10, 10, 30, 0.98);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2rem;
        opacity: 0;
        visibility: hidden;
        transform: translateX(100%);
        transition: all 0.3s ease-in-out;
        z-index: 999;
    }

    .nav-links.active {
        opacity: 1;
        visibility: visible;
        transform: translateX(0);
    }

    .nav-links a {
        font-size: 1.25rem;
    }

    .nav-links .btn-primary {
        margin-top: 1rem;
        width: 200px;
        text-align: center;
    }
}

@keyframes float-arch {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-2px); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(0.8); opacity: 0.8; }
} 

/* Footer Styles */
.footer {
    background: linear-gradient(180deg, var(--dark) 0%, #080816 100%);
    padding: 80px 0 40px;
    color: rgba(255, 255, 255, 0.8);
    position: relative;
    z-index: 1;
    will-change: transform;
    transform: translateZ(0);
    -webkit-font-smoothing: antialiased;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-brand {
    max-width: 320px;
}

.footer-brand .logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.footer-brand .logo-mark {
    width: 32px;
    height: 32px;
}

.footer-description {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    font-size: 0.9375rem;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-section h3 {
    color: var(--light);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section ul a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.9375rem;
}

.footer-section ul a:hover {
    color: var(--primary);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
}

.footer-legal {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.footer-legal nav {
    display: flex;
    gap: 1.5rem;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: var(--primary);
}

.social-links {
    display: flex;
    gap: 1.5rem;
}

.social-links a {
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--primary);
}

/* Responsive Footer */
@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footer-brand {
        max-width: 100%;
        text-align: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }

    .footer-legal {
        flex-direction: column;
        gap: 1rem;
    }

    .footer-legal nav {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 60px 0 30px;
    }

    .footer-links {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .social-links {
        justify-content: center;
    }
} 

/* Explore Section */
.explore-section {
    padding: 4rem 0 6rem;
    margin-top: 0;
    background: linear-gradient(180deg, var(--dark) 0%, rgba(10, 10, 30, 0.95) 100%);
    position: relative;
    overflow: hidden;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    color: transparent;
}

.explore-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.explore-card {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 2rem;
    background: rgba(47, 37, 88, 0.1);
    border: 1px solid rgba(93, 83, 134, 0.2);
    border-radius: 24px;
    transition: all 0.3s ease;
    text-decoration: none;
    color: var(--light);
    height: 100%;
}

.explore-card .card-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 1.5rem;
    color: var(--secondary);
}

.explore-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--light);
}

.explore-card p {
    color: var(--text-muted);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.explore-card .card-footer {
    margin-top: auto;
}

.explore-card .card-link {
    display: inline-flex;
    align-items: center;
    font-weight: 500;
    color: var(--secondary);
    transition: color 0.3s ease;
}

.explore-card .card-link .arrow {
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.explore-card:hover {
    transform: translateY(-4px);
    border-color: var(--secondary);
    background: rgba(47, 37, 88, 0.2);
}

.explore-card:hover .card-link {
    color: var(--primary);
}

.explore-card:hover .card-link .arrow {
    transform: translateX(4px);
}

@media (max-width: 992px) {
    .explore-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .explore-section {
        padding: 3rem 0 4rem;
    }

    .explore-grid {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 2rem;
    }
} 

.hero-cta .btn-primary {
    text-decoration: none;
} 

/* Performance optimizations */
.footer {
    background: linear-gradient(180deg, var(--dark) 0%, #080816 100%);
    padding: 80px 0 40px;
    color: rgba(255, 255, 255, 0.8);
    position: relative;
    z-index: 1;
    will-change: transform;
    transform: translateZ(0);
    -webkit-font-smoothing: antialiased;
}

/* Optimize floating animations */
.floating-element {
    position: absolute;
    background: var(--secondary);
    border-radius: 50%;
    filter: blur(1px);
    will-change: transform;
    transform: translateZ(0);
    backface-visibility: hidden;
    perspective: 1000px;
}

/* Optimize gradient orb */
.gradient-orb {
    position: absolute;
    width: 600px;
    height: 600px;
    background: var(--gradient-primary);
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
    will-change: transform;
    transform: translateZ(0);
    backface-visibility: hidden;
}

@media (max-width: 768px) {
    /* Disable heavy animations on mobile */
    .floating-element {
        animation: none;
        opacity: 0.1;
    }

    .gradient-orb {
        animation: none;
        transform: none;
        opacity: 0.1;
    }

    .network-lines {
        display: none;
    }

    /* Optimize footer for mobile */
    .footer-content {
        transform: translateZ(0);
        will-change: transform;
        backface-visibility: hidden;
    }
} 