* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #4ade80;
    --primary-hover: #22c55e;
    --text-light: #e5e7eb;
    --text-lighter: #f3f4f6;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.5;
    background-color: #000;
}

.hero {
    position: relative;
    min-height: 100vh;
    background-image: url('https://images.unsplash.com/photo-1464965911861-746a04b4bca6?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    animation: fadeIn 1s ease-in;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.7),
        rgba(0, 0, 0, 0.9)
    );
}

.content {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 2rem;
    text-align: center;
    color: white;
}

.logo {
    margin-bottom: 2rem;
    animation: slideDown 1s ease-out;
}

.logo h1 {
    font-size: 5rem;
    font-weight: 700;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 0.05em;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.leaf {
    display: inline-block;
    width: 3rem;
    height: 3rem;
    margin-left: 0.5rem;
    color: var(--primary-color);
    animation: rotate 20s linear infinite;
}

.trade {
    font-size: 1.5rem;
    letter-spacing: 0.5em;
    color: var(--text-light);
    font-weight: 500;
    text-transform: uppercase;
    opacity: 0.9;
}

h2 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    background: linear-gradient(to right, #fff, var(--text-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: slideUp 1s ease-out 0.5s both;
}

.description {
    max-width: 36rem;
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    line-height: 1.8;
    animation: slideUp 1s ease-out 0.7s both;
}

.email-signup {
    width: 100%;
    max-width: 28rem;
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    animation: slideUp 1s ease-out 0.9s both;
}

input[type="email"] {
    flex: 1;
    padding: 1rem 1.5rem;
    border-radius: 0.75rem;
    border: 2px solid transparent;
    outline: none;
    font-size: 1rem;
    font-family: inherit;
    background-color: rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
}

input[type="email"]:focus {
    border-color: var(--primary-color);
    background-color: white;
    box-shadow: 0 0 0 4px rgba(74, 222, 128, 0.1);
}

button {
    padding: 1rem 2rem;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 0.75rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

button:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(74, 222, 128, 0.2);
}

button:active {
    transform: translateY(0);
}

.social-links {
    display: flex;
    gap: 2rem;
    animation: slideUp 1s ease-out 1.1s both;
}

.social-link {
    color: var(--text-light);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    opacity: 0.8;
}

.social-link:hover {
    color: var(--primary-color);
    opacity: 1;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Responsive Design */
@media (max-width: 768px) {
    .logo h1 {
        font-size: 3.5rem;
    }

    .leaf {
        width: 2rem;
        height: 2rem;
    }

    .trade {
        font-size: 1.25rem;
    }

    h2 {
        font-size: 2.5rem;
    }

    .description {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .email-signup {
        flex-direction: column;
        padding: 0 1rem;
    }

    input[type="email"],
    button {
        width: 100%;
    }

    .social-links {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .content {
        padding: 1rem;
    }

    .logo h1 {
        font-size: 2.5rem;
    }

    .trade {
        font-size: 1rem;
    }
}