:root {
    --primary-orange: #F16529;
    --primary-gradient: linear-gradient(135deg, #FF6B35 0%, #F16529 100%);
    --bg-dark: #0A0A0B;
    --card-bg: rgba(255, 255, 255, 0.03);
    --border-color: rgba(255, 255, 255, 0.1);
    --text-main: #FFFFFF;
    --text-muted: #A0A0A0;
    --font-main: 'Outfit', sans-serif;
}

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

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-main);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    position: relative;
}

/* Background Animations */
.background-blobs {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    filter: blur(80px);
}

.blob {
    position: absolute;
    border-radius: 50%;
    opacity: 0.4;
    animation: move 20s infinite alternate cubic-bezier(0.45, 0, 0.55, 1);
}

.blob-1 {
    width: 400px;
    height: 400px;
    background: var(--primary-orange);
    top: -100px;
    left: -100px;
}

.blob-2 {
    width: 350px;
    height: 350px;
    background: #4A90E2;
    /* Subtle contrast */
    bottom: -50px;
    right: -50px;
    animation-delay: -5s;
}

.blob-3 {
    width: 300px;
    height: 300px;
    background: var(--primary-orange);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.1;
}

@keyframes move {
    from {
        transform: translate(0, 0) rotate(0deg);
    }

    to {
        transform: translate(100px, 100px) rotate(360deg);
    }
}

/* Container & Layout */
.container {
    width: 100%;
    max-width: 1000px;
    padding: 2rem;
    text-align: center;
    z-index: 1;
}

.logo-container {
    margin-bottom: 4rem;
    animation: fadeInDown 1s ease-out;
}

.main-logo {
    width: 100%;
    max-width: 450px;
    height: auto;
}

.content h1 {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.highlight {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 3rem;
    font-weight: 300;
    line-height: 1.6;
    animation: fadeInUp 1s ease-out 0.4s both;
}

/* Contact Info */
.contact-info {
    margin-top: 3rem;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.contact-info p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.contact-email {
    font-size: 1.5rem;
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
}

.contact-email:hover {
    color: var(--primary-orange);
    border-bottom-color: var(--primary-orange);
}

.footer {
    margin-top: 8rem;
    animation: fadeIn 1s ease-out 1s both;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.social-icon {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: color 0.3s ease;
}

.social-icon:hover {
    color: var(--primary-orange);
}

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

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

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

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Mobile Responsiveness */
@media (max-width: 600px) {
    .container {
        padding: 1rem;
    }

    .input-group {
        flex-direction: column;
        border-radius: 20px;
        background: transparent;
        border: none;
        gap: 1rem;
    }

    input[type="email"] {
        background: var(--card-bg);
        border: 1px solid var(--border-color);
        border-radius: 100px;
        width: 100%;
        backdrop-filter: blur(10px);
    }

    button {
        width: 100%;
    }
}