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

:root {
    --charcoal: #2D2D2D;
    --orange: #FF6F61;
    --silver: #C0C0C0;
    --white: #FFFFFF;
    --light-gray: #F5F5F5;
}

body {
    font-family: 'Lato', sans-serif;
    background: linear-gradient(135deg, var(--charcoal) 0%, #1a1a1a 100%);
    color: var(--white);
    overflow-x: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* Container */
.container {
    max-width: 1200px;
    width: 100%;
    padding: 2rem;
    text-align: center;
    position: relative;
    z-index: 10;
}

/* Logo */
.logo-container {
    margin-bottom: 3rem;
    opacity: 0;
}

.logo {
    max-width: 350px;
    height: auto;
    filter: drop-shadow(0 4px 20px rgba(255, 111, 97, 0.3));
}

/* Content */
.content {
    max-width: 800px;
    margin: 0 auto;
}

.headline {
    font-family: 'Inter', sans-serif;
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--white) 0%, var(--silver) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0;
    transform: translateY(30px);
}

.tagline-container {
    margin-bottom: 3rem;
}

.tagline {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    font-weight: 400;
    color: var(--silver);
    margin-bottom: 1rem;
    opacity: 0;
    transform: translateY(20px);
}

.tagline-sub {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--silver);
    opacity: 0.8;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    opacity: 0;
    transform: translateY(20px);
}

/* CTA */
.cta-container {
    margin-top: 4rem;
    opacity: 0;
    transform: translateY(20px);
}

.cta-text {
    font-size: 1rem;
    color: var(--silver);
    margin-bottom: 1rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-weight: 600;
}

.email-link {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: var(--orange);
    color: var(--white);
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 1.125rem;
    border-radius: 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(255, 111, 97, 0.3);
    position: relative;
    overflow: hidden;
}

.email-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.email-link:hover::before {
    left: 100%;
}

.email-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(255, 111, 97, 0.4);
}

.email-link .arrow {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.email-link:hover .arrow {
    transform: translateX(5px);
}

/* Background Animated Elements */
.bg-elements {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.circuit-line {
    position: absolute;
    background: linear-gradient(90deg, transparent, var(--orange), transparent);
    opacity: 0.1;
    height: 2px;
}

.line-1 {
    width: 300px;
    top: 20%;
    left: 10%;
}

.line-2 {
    width: 400px;
    top: 60%;
    right: 10%;
}

.line-3 {
    width: 250px;
    bottom: 20%;
    left: 30%;
}

.circuit-dot {
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--orange);
    border-radius: 50%;
    opacity: 0.3;
    box-shadow: 0 0 10px var(--orange);
}

.dot-1 {
    top: 15%;
    left: 15%;
}

.dot-2 {
    top: 70%;
    right: 20%;
}

.dot-3 {
    bottom: 25%;
    left: 40%;
}

.dot-4 {
    top: 40%;
    right: 30%;
}

/* Responsive */
@media (max-width: 768px) {
    .logo {
        max-width: 250px;
    }

    .email-link {
        font-size: 1rem;
        padding: 0.875rem 1.5rem;
    }

    .circuit-line {
        display: none;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 1.5rem;
    }

    .email-link {
        flex-direction: column;
        gap: 0.5rem;
        padding: 1rem;
    }
}
