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

:root {
    --primary-orange: #EB6F23;
    --primary-pink: #FF3370;
    --primary-yellow: #DEA73A;
    --dark-bg: #0A0B0F;
    --dark-secondary: #141519;
    --text-primary: #FFFFFF;
    --text-secondary: #9CA3AF;
    --text-tertiary: #6B7280;
    --gradient-primary: linear-gradient(135deg, #EB6F23 0%, #FF3370 50%, #DEA73A 100%);
    --gradient-logo: linear-gradient(90deg, #EB6F23 0%, #F59E0B 25%, #FF3370 80%, #FF1E5D 100%);
    --gradient-headline: linear-gradient(120deg, #DEA73A 0%, #EB6F23 40%, #FF3370 100%);
    --border-radius: 12px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--dark-bg);
    color: var(--text-primary);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow-x: hidden;
    overflow-y: auto;
}

/* Container */
.container {
    width: 100%;
    max-width: 600px;
    padding: 2rem 2rem 4rem;
    text-align: center;
    position: relative;
    z-index: 10;
    margin: auto;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Background Animation */
.bg-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.3;
    animation: float 20s infinite ease-in-out;
}

.shape-1 {
    width: 400px;
    height: 400px;
    background: var(--primary-orange);
    top: -200px;
    left: -200px;
    animation-delay: 0s;
}

.shape-2 {
    width: 300px;
    height: 300px;
    background: var(--primary-pink);
    bottom: -150px;
    right: -150px;
    animation-delay: 5s;
}

.shape-3 {
    width: 350px;
    height: 350px;
    background: var(--primary-yellow);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 10s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) translateX(0) scale(1);
    }
    33% {
        transform: translateY(-30px) translateX(30px) scale(1.1);
    }
    66% {
        transform: translateY(30px) translateX(-30px) scale(0.9);
    }
}

/* Logo Section */
.logo-section {
    margin-bottom: 2rem;
    animation: fadeInDown 0.8s ease;
}

.logo {
    width: 80px;
    height: 80px;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 30px rgba(235, 111, 35, 0.5));
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.brand-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    letter-spacing: -0.02em;
    background: var(--gradient-logo);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
}

.accent {
    /* Removed - now applying gradient to entire brand name */
}

/* Main Content */
.main-content {
    animation: fadeInUp 0.8s ease 0.2s both;
}

.headline {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    background: var(--gradient-headline);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
}

.headline::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 5%;
    width: 90%;
    height: 8px;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(222, 167, 58, 0.5) 15%,
        rgba(235, 111, 35, 0.6) 40%,
        rgba(255, 51, 112, 0.5) 70%,
        transparent 100%);
    border-radius: 50% 50% 50% 50% / 100% 100% 0% 0%;
    transform: rotate(-2deg) skewX(-10deg);
    filter: blur(1px);
    box-shadow:
        0 2px 8px rgba(235, 111, 35, 0.3),
        0 4px 15px rgba(235, 111, 35, 0.2);
}

.tagline {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-top: 0.75rem;
    margin-bottom: 2rem;
}

.description {
    max-width: 500px;
    margin: 0 auto 2rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

/* Features */
.features {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.feature i {
    font-size: 2rem;
    color: var(--primary-orange);
    margin-bottom: 0.5rem;
}

.feature span {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* Email Signup */
.signup-section {
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease 0.6s both;
}

.signup-text {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: var(--text-primary);
}

.email-form {
    margin-bottom: 1rem;
}

.form-group {
    display: flex;
    gap: 0.5rem;
    max-width: 400px;
    margin: 0 auto;
    background: var(--dark-secondary);
    padding: 0.5rem;
    border-radius: 50px;
    border: 1px solid rgba(235, 111, 35, 0.2);
    transition: all 0.3s ease;
}

.form-group:focus-within {
    border-color: var(--primary-orange);
    box-shadow: 0 0 20px rgba(235, 111, 35, 0.2);
}

.email-input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    padding: 0.75rem 1rem;
    color: var(--text-primary);
    font-size: 1rem;
}

.email-input::placeholder {
    color: var(--text-tertiary);
}

.submit-btn {
    background: var(--gradient-primary);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.submit-btn:hover {
    transform: translateX(3px);
    box-shadow: 0 5px 15px rgba(235, 111, 35, 0.4);
}

.privacy-note {
    font-size: 0.85rem;
    color: var(--text-tertiary);
}

/* Social Links */
.social-section {
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease 0.8s both;
}

.follow-text {
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.social-links a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--dark-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    text-decoration: none;
    border: 1px solid rgba(235, 111, 35, 0.2);
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--gradient-primary);
    color: white;
    transform: translateY(-3px);
    border-color: transparent;
}

/* Contact Info */
.contact-info {
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease 1s both;
}

.contact-info p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.contact-info a {
    color: var(--primary-orange);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: var(--primary-pink);
}

/* Footer */
.footer {
    animation: fadeInUp 0.8s ease 1.2s both;
}

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

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 1.5rem;
    }

    .headline {
        font-size: 1.5rem;
    }

    .tagline {
        font-size: 1rem;
    }

    .features {
        gap: 2rem;
    }

    .form-group {
        flex-direction: column;
        border-radius: var(--border-radius);
    }

    .email-input {
        width: 100%;
    }

    .submit-btn {
        width: 100%;
        justify-content: center;
    }

    .shape-1,
    .shape-2,
    .shape-3 {
        width: 200px;
        height: 200px;
    }
}

@media (max-width: 480px) {
    .brand-name {
        font-size: 2.2rem;
    }

    .features {
        flex-direction: column;
        gap: 1.5rem;
    }
}