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

body {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
    font-family: 'Outfit', sans-serif;
    overflow: hidden;
    position: relative;
}

/* Animated background glow */
body::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: clamp(300px, 80vw, 600px);
    height: clamp(300px, 80vw, 600px);
    background: radial-gradient(circle, rgba(99, 102, 241, 0.15) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.8;
    }
}

.container {
    text-align: center;
    z-index: 1;
    padding: clamp(1.5rem, 5vw, 2.5rem);
    max-width: 90vw;
    animation: fadeIn 1s ease-out;
}

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

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.tagline-small {
    font-size: clamp(0.75rem, 2vw, 1rem);
    font-weight: 300;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: clamp(2px, 0.5vw, 3px);
    text-transform: uppercase;
    margin-bottom: clamp(0.75rem, 2vw, 1rem);
}

.headline {
    font-size: clamp(2rem, 8vw, 5rem);
    font-weight: 700;
    color: #ffffff;
    line-height: 1.1;
    margin-bottom: clamp(0.5rem, 1.5vw, 1rem);
    background: linear-gradient(135deg, #ffffff 0%, #a5b4fc 50%, #818cf8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.subheadline {
    font-size: clamp(0.875rem, 2.5vw, 1.5rem);
    font-weight: 300;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: clamp(1.5rem, 4vw, 2.5rem);
    max-width: min(90%, 400px);
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
}

.divider {
    width: clamp(40px, 10vw, 60px);
    height: 3px;
    background: linear-gradient(90deg, #6366f1, #a855f7);
    margin: 0 auto clamp(1.5rem, 4vw, 2.5rem);
    border-radius: 2px;
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: clamp(0.5rem, 2vw, 0.75rem);
    text-decoration: none;
    color: rgba(255, 255, 255, 0.8);
    font-size: clamp(0.875rem, 2vw, 1.1rem);
    font-weight: 400;
    padding: clamp(0.75rem, 2vw, 1rem) clamp(1.25rem, 4vw, 2rem);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(99, 102, 241, 0.5);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 10px 40px rgba(99, 102, 241, 0.2);
}

.social-link svg {
    width: clamp(20px, 4vw, 24px);
    height: clamp(20px, 4vw, 24px);
    fill: currentColor;
    transition: transform 0.3s ease;
}

.social-link:hover svg {
    transform: scale(1.1);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    body {
        overflow-x: hidden;
    }

    .container {
        padding: 1.5rem 1rem;
    }

    .headline {
        word-break: break-word;
    }
}

@media (max-width: 480px) {
    .tagline-small {
        letter-spacing: 2px;
        margin-bottom: 0.75rem;
    }

    .headline {
        margin-bottom: 0.5rem;
    }

    .subheadline {
        margin-bottom: 1.5rem;
    }

    .divider {
        margin-bottom: 1.5rem;
    }
}

/* Landscape mobile optimization */
@media (max-height: 500px) and (orientation: landscape) {
    .container {
        padding: 1rem;
    }

    .tagline-small {
        margin-bottom: 0.5rem;
    }

    .headline {
        font-size: clamp(1.5rem, 6vw, 3rem);
        margin-bottom: 0.25rem;
    }

    .subheadline {
        margin-bottom: 1rem;
    }

    .divider {
        margin-bottom: 1rem;
    }
}