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

html, body {
    font-family: 'Inter', sans-serif;
    height: 100%;
}

/* Body */
body {
    background: radial-gradient(circle at 20% 30%, #140028, #050010 70%);
    color: #ffffff;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;
}

/* Hero */
.hero {
    text-align: center;
    padding: 40px 20px;
    max-width: 900px;

    animation: fadeIn 1.8s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Logo */
.logo span {
    font-size: clamp(4rem, 8vw, 7rem);
    font-weight: 800;
    letter-spacing: 3px;
    color: #ffffff;

    text-shadow:
        0 0 4px #ffffff,
        0 0 12px rgba(0, 104, 244, 0.8),
        0 0 24px rgba(254, 0, 254, 0.6);

    transition: text-shadow 0.3s ease;
}

.logo span:hover {
    text-shadow:
        0 0 6px #ffffff,
        0 0 20px rgba(0, 104, 244, 1),
        0 0 40px rgba(254, 0, 254, 0.8);
}

/* Tagline */
.tagline {
    margin-top: 36px;
    font-size: 1.25rem;
    line-height: 1.7;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: rgba(255, 255, 255, 0.85);
    text-transform: capitalize;
}

/* Email */
.email {
    position: fixed;
    bottom: 40px;
    left: 40px;

    font-size: 0.95rem;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.8);
    
    opacity: 0;
    animation: fadeInButton 2s ease-out forwards;
    animation-delay: 0.8s;

    transition: all 0.3s ease;
}

/* Contact Button (Fixed from start) */
.contact {
    position: fixed;
    bottom: 40px;
    right: 40px;

    padding: 16px 40px;
    font-size: 0.95rem;
    letter-spacing: 3px;
    text-decoration: none;
    color: #ffffff;

    border: 2px solid #0068F4;
    background: transparent;

    opacity: 0;
    animation: fadeInButton 2s ease-out forwards;
    animation-delay: 0.8s;

    transition: all 0.3s ease;
}

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

.contact:hover {
    background: #0068F4;
    box-shadow:
        0 0 10px #0068F4,
        0 0 30px rgba(0, 104, 244, 0.8);
}

/* Canvas */
#bgCanvas {
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
}

/* Responsive */
@media (max-width: 768px) {

    .logo span {
        font-size: 3.5rem;
        letter-spacing: 2px;
    }

    .tagline {
        font-size: 1.05rem;
        padding: 0 10px;
    }
    
    .email {
        bottom: 25px;
        left: 25px;
        font-size: 0.8rem;
    }

    .contact {
        bottom: 25px;
        right: 25px;
        padding: 12px 28px;
        font-size: 0.8rem;
    }
}