* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: black;
    color: white;
    overflow-x: hidden;
    line-height: 1.6;
}

#canvas-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: -1;
    filter: none !important;
    background: linear-gradient(to bottom, #000000, #03000d, #110032) !important;
}

#canvas-container canvas {
    filter: none !important;
    opacity: 1 !important;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    backdrop-filter: blur(10px);
    background: rgba(10, 10, 31, 0.7);
    border-bottom: 1px solid rgba(0, 255, 255, 0.2);
}

.nav-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5em;
    font-weight: 700;
    font-family: 'Space Grotesk', sans-serif;
    background: linear-gradient(135deg, #00d4ff, #7b2ff7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9em;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #00d4ff;
}

.nav-cta {
    padding: 10px 24px;
    background: linear-gradient(135deg, #00d4ff, #7b2ff7);
    border-radius: 8px;
    color: #fff !important;
    font-weight: 600;
    transition: all 0.3s ease;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 212, 255, 0.3);
}

.content {
    position: relative;
    z-index: 1;
    padding: 150px 0 100px;
    min-height: 700vh;
}

.section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px 20px;
    position: relative;
}

.section-left {
    justify-content: flex-start;
    padding: 10%;
}

.section-right {
    justify-content: flex-end;
    padding: 10%;
}

.section-bg {
    position: absolute;
    top: 0;
    background-color: rgba(0, 0, 0, 0.22);
    width: 50vw;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.section-left .section-bg {
    left: 0;
    border-right: 1px solid rgba(0, 212, 255, 0.1);
}

.section-right .section-bg {
    right: 0;
    border-left: 1px solid rgba(123, 47, 247, 0.1);
}

.section-left .glass-card,
.section-left .specs-container,
.section-right .glass-card,
.section-right .specs-container {
    position: relative;
    z-index: 1;
}

.glass-card {
    background: rgba(17, 17, 35, 0.7);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 60px;
    max-width: 800px;
    width: 100%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: 22rem;
}

.glass-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 80px rgba(123, 47, 247, 0.2);
    border-color: rgba(0, 212, 255, 0.2);
}

.glass-card.large {
    padding: 80px;
}

.hero {
    min-height: 100vh;
}

.hero-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(123, 47, 247, 0.15);
    border: 1px solid rgba(123, 47, 247, 0.3);
    border-radius: 30px;
    font-size: 0.75em;
    color: #00d4ff;
    margin-bottom: 24px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.gradient-text {
    font-size: 5.5em;
    font-weight: 700;
    margin-bottom: 16px;
    font-family: 'Space Grotesk', sans-serif;
    background: linear-gradient(135deg, #00d4ff 0%, #7b2ff7 50%, #00d4ff 100%);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 4s ease infinite;
    line-height: 1.1;
    letter-spacing: -2px;
}

.hero-subtitle {
    font-size: 1.5em;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
    margin-bottom: 24px;
    letter-spacing: 0.5px;
}

.hero-desc {
    font-size: 1.125em;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 400;
    line-height: 1.8;
    margin-bottom: 48px;
    max-width: 600px;
    text-align: left;
}

.hero-stats {
    display: flex;
    gap: 48px;
    margin: 48px 0;
}

.stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stat-value {
    font-size: 2.5em;
    font-weight: 700;
    font-family: 'Space Grotesk', sans-serif;
    background: linear-gradient(135deg, #00d4ff, #7b2ff7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.stat-label {
    font-size: 0.875em;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 20px;
    font-size: 0.75em;
    color: #00d4ff;
    margin-bottom: 24px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

h2 {
    font-size: 2.5em;
    font-weight: 700;
    margin-bottom: 16px;
    font-family: 'Space Grotesk', sans-serif;
    background: linear-gradient(135deg, #00d4ff, #7b2ff7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
    letter-spacing: -1px;
    line-height: 1.2;
}

.section-desc {
    font-size: 1em;
    color: rgba(255, 255, 255, 0.6);
    text-align: center;
    margin-bottom: 48px;
    font-weight: 400;
}

h3 {
    font-size: 1.25em;
    font-weight: 600;
    color: #00d4ff;
    margin-bottom: 12px;
    font-family: 'Space Grotesk', sans-serif;
}

p {
    font-size: 1em;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
    text-align: center;
}

.highlight {
    font-size: 1.5em;
    font-family: 'Space Grotesk', sans-serif;
    background: linear-gradient(135deg, #00d4ff, #7b2ff7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
    margin: 32px 0;
    line-height: 1.4;
}

.about-card {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.about-content {
    flex: 1;
}

.about-content p {
    text-align: left;
    font-size: 1em;
    line-height: 1.8;
}

.about-content h2 {
    text-align: left;
    margin-bottom: 24px;
}

.about-stats {
    display: flex;
    flex-direction: row;
    gap: 32px;
    justify-content: space-between;
    padding-top: 32px;
    border-top: 2px solid rgba(123, 47, 247, 0.3);
}

.about-stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.about-stat-number {
    font-size: 2.5em;
    font-weight: 700;
    font-family: 'Space Grotesk', sans-serif;
    background: linear-gradient(135deg, #00d4ff, #7b2ff7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.about-stat-text {
    font-size: 0.875em;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

.specs-container {
    max-width: 550px;
    width: 100%;
}

.specs-header {
    margin-bottom: 48px;
}

.specs-header h2 {
    margin-bottom: 12px;
}

.specs-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.spec-item {
    background: rgba(17, 17, 35, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.spec-item:hover {
    background: rgba(123, 47, 247, 0.1);
    border-color: rgba(123, 47, 247, 0.3);
    transform: translateY(-4px);
}

.spec-icon {
    font-size: 2em;
    margin-bottom: 12px;
    filter: grayscale(0.3);
}

.spec-label {
    font-size: 0.8em;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
    font-weight: 500;
}

.spec-value {
    font-size: 1.5em;
    font-weight: 700;
    font-family: 'Space Grotesk', sans-serif;
    background: linear-gradient(135deg, #00d4ff, #7b2ff7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.spec-desc {
    font-size: 0.85em;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.5;
}

.features-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 48px;
}

.feature {
    background: rgba(255, 255, 255, 0.02);
    border-left: 3px solid #7b2ff7;
    padding: 24px;
    border-radius: 12px;
    text-align: left;
    transition: all 0.3s ease;
}

.feature:hover {
    background: rgba(123, 47, 247, 0.05);
    border-left-color: #00d4ff;
    transform: translateX(8px);
}

.feature h3 {
    text-align: left;
    margin-bottom: 8px;
}

.feature p {
    text-align: left;
    margin-top: 0;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    font-size: 0.95em;
}

.compat-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 48px;
}

.compat-item {
    background: rgba(123, 47, 247, 0.05);
    border: 1px solid rgba(123, 47, 247, 0.2);
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.3s ease;
}

.compat-item:hover {
    background: rgba(123, 47, 247, 0.1);
    border-color: rgba(0, 212, 255, 0.3);
    transform: translateY(-4px);
}

.compat-logo {
    font-size: 1.8em;
    font-weight: 700;
    font-family: 'Space Grotesk', sans-serif;
    background: linear-gradient(135deg, #00d4ff, #7b2ff7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 12px;
}

.compat-item p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95em;
}

.cta-button {
    padding: 16px 40px;
    font-size: 1em;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(135deg, #00d4ff, #7b2ff7);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    letter-spacing: 0.5px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 24px rgba(123, 47, 247, 0.3);
    margin-top: 24px;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(123, 47, 247, 0.5);
}

.cta-button:active {
    transform: translateY(0);
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 32px;
}

.cta-button.secondary {
    background: transparent;
    color: #00d4ff;
    border: 2px solid rgba(0, 212, 255, 0.5);
    box-shadow: none;
}

.cta-button.secondary:hover {
    background: rgba(0, 212, 255, 0.1);
    border-color: #00d4ff;
    box-shadow: 0 8px 24px rgba(0, 212, 255, 0.2);
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

@media (max-width: 968px) {
    .section-left,
    .section-right {
        justify-content: center;
        padding-left: 20px;
        padding-right: 20px;
    }

    .section-bg {
        width: 100vw;
        left: 0 !important;
        right: 0 !important;
    }

    .glass-card {
        max-width: 100%;
    }

    .specs-container {
        max-width: 100%;
    }

    .hero-stats {
        gap: 32px;
    }

    .stat-value {
        font-size: 2em;
    }
}

@media (max-width: 768px) {
    .nav-content {
        padding: 0 20px;
    }

    .nav-links {
        gap: 15px;
        font-size: 0.85em;
    }

    .content {
        padding: 120px 0 50px;
    }

    .glass-card {
        padding: 40px 24px;
        max-width: 100%;
    }

    .specs-container {
        max-width: 100%;
    }

    .gradient-text {
        font-size: 3em;
    }

    .hero-subtitle {
        font-size: 1.125em;
    }

    .hero-desc {
        font-size: 1em;
    }

    .hero-stats {
        flex-direction: column;
        gap: 24px;
    }

    h2 {
        font-size: 2em;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-button {
        width: 100%;
    }

    .about-stats {
        gap: 20px;
    }
}