:root {
    --font-primary: 'Montserrat', sans-serif;
    --color-bg: #0b0014;
    --color-text: #e4d4f4;
    --color-accent1: #8338EC;
    --color-accent2: #B923FF;
    --color-accent-gradient: linear-gradient(93deg, var(--color-accent1) 49.3%, var(--color-accent2) 87.76%);
    --color-hover: linear-gradient(93deg, var(--color-accent2) 49.3%, var(--color-accent1) 87.76%);
    --box-shadow-accent: #a86cf455;
    --box-shadow-accent-hover: #a86cf488;
}

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

html, body {
    height: 100%;
}
body {
    overflow: hidden;
    font-family: var(--font-primary);
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
}

.cta-btn {
    display: inline-block;
    margin-top: 2.5rem;
    padding: 0.9rem 2.2rem;
    font-size: 1.2rem;
    font-weight: 600;
    color: #fff;
    background: var(--color-accent-gradient);
    border: none;
    border-radius: 2rem;
    box-shadow: 0 4px 24px var(--box-shadow-accent);
    cursor: pointer;
    text-decoration: none;
    letter-spacing: 0.07rem;
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
    z-index: 2;
    position: relative;
    text-transform: none;
}

.cta-btn:hover {
    background: var(--color-hover);
    transform: translateY(-2px) scale(1.04);
    box-shadow: 0 8px 32px var(--box-shadow-accent-hover);
}

.contact-icons {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    z-index: 20;
    gap: 20px;
}

.contact-icons img {
    width: 2.5rem;
    height: auto;
    max-width: 100%;
    opacity: 0.5;
    display: block;
    vertical-align: middle;
}

.contact-icons a:hover img {
    opacity: 0.8;
    transform: translateY(-2px) scale(1.04);
}

main {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-text {
    position: relative;
    width: 100%;
    height: 7.5rem;
}

h1 {
    position: absolute;
    left: 50%;
    top: 0;
    width: 100%;
    transform: translateX(-50%);
    text-align: center;
    opacity: 0;
    margin: 0;
    pointer-events: none;
    font-size: 3.5rem;
    font-weight: 300;
    color: #e4d4f4;
    line-height: 1.2;
}

h1.text1 {
    animation: text1Out 2s cubic-bezier(.77, 0, .18, 1) forwards;
    animation-delay: 0s;
    z-index: 2;
    opacity: 1;
    pointer-events: auto;
}

h1.text2 {
    animation: text2In 2s cubic-bezier(.77, 0, .18, 1) forwards;
    animation-delay: 2s;
    z-index: 1;
}

.text1 .emph, .text2 .emph {
    font-style: italic;
    font-weight: 600;
    text-decoration: underline;
    background: linear-gradient(93deg, #8338EC 49.3%, #B923FF 87.76%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

@keyframes text1Out {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    80% {
        opacity: 0;
        transform: translateX(-50%) translateY(-30px);
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(-30px);
    }
}

@keyframes text2In {
    0% {
        opacity: 0;
        transform: translateX(-50%) translateY(30px);
    }
    20% {
        opacity: 0;
        transform: translateX(-50%) translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

p {
    margin-top: 2rem;
    font-size: 1.4rem;
    color: #ccc;
    max-width: 600px;
    line-height: 1.6;
}

@keyframes bounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(16px);
    }
}

@media (max-width: 600px) {
    .hero-text {
        height: 4.5rem;
        min-height: 3.5rem;
    }
    h1 {
        font-size: 2rem;
    }
    p {
        font-size: 1rem;
        margin-top: 1.2rem;
    }

    .contact-icons {
        flex-direction: row;
    }
    .contact-icons img {
        width: 1.6rem;
        max-width: 1.6rem;
    }
}

@media (max-width: 900px) {
    main {
        width: 100%;
        padding: 1.5rem 1rem 0 1rem;
        box-sizing: border-box;
    }

    h2 {
        font-size: 2.2rem;
    }

    p {
        font-size: 1.1rem;
        max-width: 100%;
    }
}