:root {
    --bg-dark: #0a0e17;
    --bg-card: #12171f;
    --text-primary: #e8eef5;
    --text-secondary: #9ba5b8;
    --accent-blue: #00d4ff;
    --accent-blue-dim: #0088cc;
    --accent-purple: #e651ff;
    --accent-purple-dim: #b845cc;
    --grid-color: rgba(0, 212, 255, 0.08);
    --grid-glow: rgba(0, 212, 255, 0.15);
}

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

body {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

#grid-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.4;
}

.container {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

.content {
    max-width: 700px;
    width: 100%;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.logo-section {
    margin-bottom: 3rem;
    animation: fadeIn 0.8s ease-out 0.2s both;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.logo-icon {
    width: 70px;
    height: 70px;
    filter: drop-shadow(0 0 20px rgba(0, 212, 255, 0.3));
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        filter: drop-shadow(0 0 20px rgba(0, 212, 255, 0.3)) drop-shadow(0 0 15px rgba(230, 81, 255, 0.2));
    }
    50% {
        filter: drop-shadow(0 0 30px rgba(0, 212, 255, 0.5)) drop-shadow(0 0 25px rgba(230, 81, 255, 0.3));
    }
}

.logo-text {
    font-family: 'JetBrains Mono', monospace;
    font-size: 3.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #00d4ff 0%, #8b5cf6 50%, #e651ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
}

.description {
    margin-bottom: 4rem;
    animation: fadeIn 0.8s ease-out 0.4s both;
}

.tagline {
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    font-weight: 300;
    letter-spacing: 0.01em;
}

.services {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    font-weight: 300;
}

.contact-section {
    padding: 2rem 0;
    border-top: 1px solid rgba(155, 165, 184, 0.15);
    animation: fadeIn 0.8s ease-out 0.6s both;
}

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

.email {
    font-size: 1.3rem;
    color: var(--text-primary);
    text-decoration: none;
    font-family: 'JetBrains Mono', monospace;
    display: inline-block;
    position: relative;
    transition: all 0.3s ease;
}

.email::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-blue), var(--accent-purple));
    transition: width 0.3s ease;
}

.email:hover {
    color: var(--accent-blue);
}

.email:hover::after {
    width: 100%;
}

.footer {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    width: 100%;
    max-width: 700px;
    animation: fadeIn 0.8s ease-out 0.8s both;
}

.footer-line {
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-blue), var(--accent-purple), transparent);
    margin: 0 auto 1rem;
}

.footer p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-weight: 300;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 1.5rem;
    }

    .logo-icon {
        width: 50px;
        height: 50px;
    }

    .logo-text {
        font-size: 2.5rem;
    }

    .tagline {
        font-size: 1.25rem;
    }

    .services {
        font-size: 1rem;
    }

    .email {
        font-size: 1.1rem;
        word-break: break-all;
    }

    .footer {
        position: relative;
        bottom: auto;
        margin-top: 4rem;
    }
}

@media (max-width: 480px) {
    .logo-text {
        font-size: 2rem;
    }

    .logo-icon {
        width: 40px;
        height: 40px;
    }

    .tagline {
        font-size: 1.1rem;
    }

    .services {
        font-size: 0.95rem;
    }
}
