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

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #000000 0%, #1a0033 100%);
    color: #EAEAEA;
    overflow-x: hidden;
    line-height: 1.6;
}

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

.particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: #7B2FF7;
    border-radius: 50%;
    animation: float linear infinite;
    opacity: 0.6;
}

@keyframes float {
    0% {
        transform: translateY(100vh) translateX(0);
        opacity: 0;
    }
    10% {
        opacity: 0.6;
    }
    90% {
        opacity: 0.6;
    }
    100% {
        transform: translateY(-100px) translateX(100px);
        opacity: 0;
    }
}

nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1.5rem 5%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(123, 47, 247, 0.3);
}

.nav-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    font-weight: 900;
    color: #2DFCD8;
    text-shadow: 0 0 20px rgba(45, 252, 216, 0.5);
}

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

.nav-links a {
    color: #EAEAEA;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    position: relative;
}

.nav-links a:hover {
    color: #7B2FF7;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #7B2FF7;
    transition: width 0.3s;
}

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



section {
    position: relative;
    z-index: 1;
    padding: 6rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-top: 8rem;
}

h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 4.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #2DFCD8 0%, #7B2FF7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: glow 3s ease-in-out infinite;
}

@keyframes glow {
    0%, 100% {
        filter: drop-shadow(0 0 20px rgba(123, 47, 247, 0.5));
    }
    50% {
        filter: drop-shadow(0 0 40px rgba(45, 252, 216, 0.7));
    }
}

.tagline {
    font-size: 1.5rem;
    color: #2DFCD8;
    margin-bottom: 2rem;
    font-weight: 600;
}

.hero-description {
    max-width: 700px;
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 3rem;
    color: #CCCCCC;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.btn {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background: linear-gradient(135deg, #7B2FF7 0%, #2DFCD8 100%);
    color: #000;
    box-shadow: 0 0 30px rgba(123, 47, 247, 0.6);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 50px rgba(123, 47, 247, 0.9);
}

.btn-secondary {
    background: transparent;
    color: #2DFCD8;
    border: 2px solid #2DFCD8;
}

.btn-secondary:hover {
    background: #2DFCD8;
    color: #000;
    transform: translateY(-3px);
}

h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 3rem;
    margin-bottom: 3rem;
    text-align: center;
    color: #2DFCD8;
}

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

.feature-card {
    background: rgba(123, 47, 247, 0.1);
    border: 1px solid rgba(123, 47, 247, 0.3);
    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.3s;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: #7B2FF7;
    box-shadow: 0 10px 40px rgba(123, 47, 247, 0.4);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #EAEAEA;
}

.tech-diagram {
    margin: 4rem 0;
    padding: 3rem;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 20px;
    border: 1px solid rgba(45, 252, 216, 0.3);
}

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

.diagram-node {
    text-align: center;
    padding: 2rem;
    background: rgba(123, 47, 247, 0.2);
    border-radius: 15px;
    border: 2px solid #7B2FF7;
    min-width: 200px;
}

.diagram-arrow {
    font-size: 3rem;
    color: #2DFCD8;
}

.use-cases {
    background: rgba(0, 0, 0, 0.3);
}

.roadmap {
    background: rgba(26, 0, 51, 0.5);
}

.timeline {
    max-width: 900px;
    margin: 0 auto;
}

.milestone {
    position: relative;
    padding: 2rem;
    margin-bottom: 2rem;
    background: rgba(123, 47, 247, 0.1);
    border-left: 4px solid #7B2FF7;
    border-radius: 10px;
    transition: all 0.3s;
}

.milestone:hover {
    background: rgba(123, 47, 247, 0.2);
    transform: translateX(10px);
}

.milestone h3 {
    font-family: 'Orbitron', sans-serif;
    color: #2DFCD8;
    margin-bottom: 0.5rem;
}

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

.team-member {
    text-align: center;
    padding: 2rem;
    background: rgba(123, 47, 247, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(123, 47, 247, 0.3);
    transition: all 0.3s;
}

.team-member:hover {
    transform: scale(1.05);
    border-color: #2DFCD8;
}

.avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, #7B2FF7 0%, #2DFCD8 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(123, 47, 247, 0.1);
    border: 1px solid rgba(123, 47, 247, 0.3);
    border-radius: 10px;
    color: #EAEAEA;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.social-links {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-top: 3rem;
}

.social-links a {
    color: #2DFCD8;
    font-size: 2rem;
    transition: all 0.3s;
}

.social-links a:hover {
    color: #7B2FF7;
    transform: scale(1.2);
}

footer {
    text-align: center;
    padding: 3rem 5%;
    background: rgba(0, 0, 0, 0.8);
    border-top: 1px solid rgba(123, 47, 247, 0.3);
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .nav-links {
        flex-direction: column;
        gap: 1rem;
    }

    .diagram-arrow {
        display: none;
    }
}