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

:root {
    --primary-dark: #0a192f;
    --primary-blue: #112240;
    --accent-cyan: #64ffda;
    --accent-light: #8ff4ca;
    --text-light: #ccd6f6;
    --text-slate: #8892b0;
    --text-dark: #495670;
    --bg-navy: #020c1b;
    --card-bg: rgba(17, 34, 64, 0.45);
    --border-cyan: rgba(100, 255, 218, 0.1);
    --shadow-navy: 0 10px 30px -15px rgba(2, 12, 27, 0.7);
}

body {
    font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: var(--text-light);
    background: var(--bg-navy);
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at top left, rgba(100, 255, 218, 0.08) 0%, transparent 40%),
        radial-gradient(ellipse at bottom right, rgba(100, 255, 218, 0.06) 0%, transparent 40%),
        linear-gradient(180deg, var(--primary-dark) 0%, var(--primary-blue) 50%, var(--bg-navy) 100%);
    z-index: -3;
}

.geometric-props {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    pointer-events: none;
}

.node-graph-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    pointer-events: none;
    opacity: 0.4;
}

.prop {
    position: absolute;
    opacity: 0.03;
}

.prop-1 {
    top: 10%;
    left: 5%;
    width: 300px;
    height: 300px;
    background: linear-gradient(45deg, var(--accent-cyan), transparent);
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}

.prop-2 {
    top: 60%;
    right: 10%;
    width: 200px;
    height: 200px;
    border: 2px solid var(--accent-cyan);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
}

.prop-3 {
    bottom: 20%;
    left: 15%;
    width: 150px;
    height: 150px;
    background: var(--accent-cyan);
    clip-path: polygon(50% 0%, 100% 38%, 82% 100%, 18% 100%, 0% 38%);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navbar */
.navbar {
    background: rgba(10, 25, 47, 0.85);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid var(--border-cyan);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 0;
}

.logo {
    font-family: 'JetBrains Mono', monospace;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--accent-cyan);
    letter-spacing: -0.03em;
}

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

.nav-links a {
    color: var(--text-slate);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: color 0.2s ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent-cyan);
    transition: width 0.2s ease;
}

.nav-links a:hover {
    color: var(--accent-cyan);
}

.nav-links a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    padding: 7rem 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: var(--primary-blue);
    clip-path: ellipse(100% 100% at 50% 100%);
    z-index: -1;
}

.hero-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-family: 'Outfit', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-light);
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.hero-title span {
    color: var(--accent-cyan);
}

.hero-subtitle {
    font-size: 1.375rem;
    color: var(--text-slate);
    margin-bottom: 3rem;
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    gap: 1.25rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    font-family: 'JetBrains Mono', monospace;
    padding: 1rem 2.5rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    display: inline-block;
    position: relative;
    transition: transform 0.2s ease;
    letter-spacing: 0.02em;
}

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

.btn-primary:hover {
    background: rgba(100, 255, 218, 0.1);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: var(--text-light);
    border: 1px solid var(--text-slate);
}

.btn-secondary:hover {
    border-color: var(--accent-cyan);
    color: var(--accent-cyan);
    transform: translateY(-2px);
}

/* Products Section */
.products {
    padding: 6rem 0;
    position: relative;
}

.products::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-cyan), transparent);
}

.section-title {
    font-family: 'Outfit', sans-serif;
    font-size: 2.5rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--text-light);
    letter-spacing: -0.01em;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 2px;
    background: var(--accent-cyan);
    margin: 1rem auto 3rem;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.product-card {
    background: var(--card-bg);
    border: 1px solid var(--border-cyan);
    border-radius: 4px;
    padding: 2.5rem;
    position: relative;
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--accent-cyan);
    transform: scaleX(0);
    transition: transform 0.2s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-cyan);
}

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

.product-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-icon svg {
    color: var(--accent-cyan);
    width: 40px;
    height: 40px;
}

.product-card h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-light);
    font-weight: 600;
    letter-spacing: -0.01em;
}

.product-card p {
    color: var(--text-slate);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.product-link {
    color: var(--accent-cyan);
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    transition: transform 0.2s ease;
}

.product-link:hover {
    transform: translateX(5px);
}

.coming-soon-badge {
    font-family: 'JetBrains Mono', monospace;
    background: transparent;
    color: var(--accent-cyan);
    padding: 0.375rem 1rem;
    border: 1px solid var(--accent-cyan);
    border-radius: 3px;
    font-size: 0.7rem;
    font-weight: 500;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

/* About Section */
.about {
    padding: 6rem 0;
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 100%;
    background: 
        radial-gradient(ellipse at center, rgba(100, 255, 218, 0.02) 0%, transparent 70%);
    z-index: -1;
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.about-text {
    font-size: 1.125rem;
    color: var(--text-slate);
    margin-bottom: 4rem;
    line-height: 1.8;
}

.stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.stat {
    background: var(--card-bg);
    padding: 2rem;
    border: 1px solid var(--border-cyan);
    border-radius: 4px;
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.stat:hover {
    transform: translateY(-3px);
    border-color: var(--accent-cyan);
}

.stat-number {
    font-family: 'JetBrains Mono', monospace;
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--accent-cyan);
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.stat-label {
    font-family: 'JetBrains Mono', monospace;
    color: var(--text-slate);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 500;
}

/* Contact Section */
.contact {
    padding: 6rem 0;
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 300px;
    background: var(--primary-blue);
    clip-path: ellipse(100% 50% at 50% 0%);
    z-index: -1;
}

.contact-subtitle {
    text-align: center;
    color: var(--text-slate);
    margin-bottom: 3rem;
    font-size: 1.125rem;
}

.contact-options {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: transparent;
    border: 1px solid var(--border-cyan);
    border-radius: 4px;
    text-decoration: none;
    color: var(--text-slate);
    font-weight: 500;
    transition: all 0.2s ease;
}

.contact-card:hover {
    border-color: var(--accent-cyan);
    color: var(--accent-cyan);
    transform: translateY(-2px);
    background: rgba(100, 255, 218, 0.05);
}

.contact-card svg {
    width: 20px;
    height: 20px;
}

/* Footer */
.footer {
    background: var(--primary-dark);
    color: var(--text-slate);
    padding: 3rem 0;
    position: relative;
    border-top: 1px solid var(--border-cyan);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-logo {
    font-family: 'JetBrains Mono', monospace;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--accent-cyan);
    letter-spacing: -0.02em;
}

.footer-text {
    color: var(--text-dark);
    font-size: 0.875rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: var(--accent-cyan);
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--primary-dark);
}

::-webkit-scrollbar-thumb {
    background: var(--text-dark);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-cyan);
}

/* Selection color */
::selection {
    background: rgba(100, 255, 218, 0.2);
    color: var(--accent-cyan);
}

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

    .hero-subtitle {
        font-size: 1.125rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .product-grid {
        grid-template-columns: 1fr;
    }

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

    .nav-links {
        gap: 1.5rem;
        font-size: 0.875rem;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
    }

    .hero {
        padding: 4rem 0;
    }
}