@font-face {
    font-family: "Aldrich";
    src: url("fonts/Aldrich-Regular.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: "Roboto";
    src: url("fonts/Roboto-Regular.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
}

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

body {
    font-family: 'Roboto', sans-serif;
    background: #0a0a0a;
    color: #ffffff;
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* Animated background */
.bg-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.hex-grid {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(30deg, transparent 24%, rgba(0, 255, 136, 0.03) 25%, rgba(0, 255, 136, 0.03) 26%, transparent 27%, transparent 74%, rgba(0, 255, 136, 0.03) 75%, rgba(0, 255, 136, 0.03) 76%, transparent 77%, transparent),
        linear-gradient(150deg, transparent 24%, rgba(0, 255, 136, 0.03) 25%, rgba(0, 255, 136, 0.03) 26%, transparent 27%, transparent 74%, rgba(0, 255, 136, 0.03) 75%, rgba(0, 255, 136, 0.03) 76%, transparent 77%, transparent);
    background-size: 80px 140px;
    background-position: 0 0, 40px 70px;
    animation: moveGrid 20s linear infinite;
}

@keyframes moveGrid {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(140px);
    }
}

@keyframes float {

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

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

    66% {
        transform: translate(-20px, 20px);
    }
}

/* Main content */
.container {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 20px;
    max-width: 900px;
}

.logo {
    font-family: 'Aldrich', sans-serif;
    font-size: 5rem;
    font-weight: 400;
    padding-top: 1rem;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #00ff88 0%, #00b3ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 40px rgba(0, 255, 136, 0.3);
    letter-spacing: 2px;
    animation: glow 1s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        filter: drop-shadow(0 0 10px rgba(0, 255, 136, 0.4));
    }

    to {
        filter: drop-shadow(0 0 20px rgba(0, 255, 136, 0.8));
    }
}

.tagline {
    font-family: 'Roboto', sans-serif;
    font-size: 1.5rem;
    color: #b0b0b0;
    margin-bottom: 3rem;
    font-weight: 300;
    letter-spacing: 1px;
}

.features {
    display: flex;
    gap: 2rem;
    justify-content: center;
    /* flex-wrap: wrap; */
    margin-top: 3rem;
}

.feature-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(0, 255, 136, 0.2);
    border-radius: 15px;
    padding: 2rem;
    width: 300px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 255, 136, 0.6);
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.2);
}

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

.feature-title {
    font-family: 'Aldrich', sans-serif;
    font-size: 1.2rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
    color: #00ff88;
}

.feature-desc {
    font-family: 'Roboto', sans-serif;
    font-size: 0.95rem;
    color: #a0a0a0;
    line-height: 1.5;
}

.contact-info {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-links {
    display: flex;
    gap: 2rem;
    justify-content: center;
    align-items: center;
}

.contact-link {
    font-family: 'Aldrich', sans-serif;
    color: #00ff88;
    text-decoration: none;
    font-size: 1rem;
    padding: 0.8rem 1.5rem;
    border: 1px solid rgba(0, 255, 136, 0.3);
    border-radius: 8px;
    transition: all 0.3s ease;
    display: inline-block;
}

.contact-link:hover {
    background: rgba(0, 255, 136, 0.1);
    border-color: #00ff88;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 255, 136, 0.3);
}

.status-badge {
    font-family: 'Aldrich', sans-serif;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1.2rem 2rem;
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid rgba(0, 255, 136, 0.3);
    border-radius: 30px;
    font-size: 1.5rem;
    margin-bottom: 4rem;
    font-weight: 500;
}

.status-dot {
    width: 12px;
    height: 12px;
    background: #00ff88;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(1.2);
    }
}

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

    .tagline {
        font-size: 1.2rem;
    }

    .status-badge {
        font-size: 1.2rem;
        padding: 1rem 1.5rem;
    }

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

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

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