* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --hero-green: #228B22;
    --bright-yellow: #FFD700;
    --background: #ffffff;
    --foreground: #1a1a1a;
    --muted-foreground: #6b7280;
    --border: #e5e7eb;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: #fcfeff;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

/* Background Pattern */
.bg-pattern::before {
    content: '';
    position: absolute;
    top: 5rem;
    left: 5rem;
    width: 18rem;
    height: 18rem;
    background: var(--hero-green);
    border-radius: 50%;
    filter: blur(4rem);
    opacity: 0.05;
    z-index: 0;
}

.bg-pattern::after {
    content: '';
    position: absolute;
    bottom: 5rem;
    right: 5rem;
    width: 24rem;
    height: 24rem;
    background: var(--bright-yellow);
    border-radius: 50%;
    filter: blur(4rem);
    opacity: 0.05;
    z-index: 0;
}

/* Header */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem;
    position: relative;
    z-index: 10;
}

.logo {
    width: 200px;
    height: 200px;
    object-fit: contain;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-btn {
    width: 2.5rem;
    height: 2.5rem;
    border: none;
    background: transparent;
    color: var(--hero-green);
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-btn:hover {
    background: rgba(34, 139, 34, 0.1);
    transform: translateY(-2px);
}

/* Main Content */
.main-content {
    position: relative;
    z-index: 10;
    padding: 2rem 2rem 0;
    margin-top: 2rem;
}

.main-heading {
    font-size: clamp(3rem, 12vw, 8rem);
    font-weight: 900;
    color: var(--hero-green);
    line-height: 0.9;
    margin-bottom: 2rem;
    text-transform: uppercase;
}

.email-form {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    max-width: 600px;
    margin-bottom: 3rem;
}

.email-input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 2px solid var(--border);
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.email-input:focus {
    outline: none;
    border-color: var(--hero-green);
    box-shadow: 0 0 0 3px rgba(34, 139, 34, 0.1);
}

.submit-btn {
    padding: 0.75rem 2rem;
    border: 2px solid var(--hero-green);
    background: var(--background);
    color: var(--hero-green);
    border-radius: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.submit-btn:hover {
    background: var(--hero-green);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px -10px rgba(34, 139, 34, 0.3);
}

.status-text {
    color: var(--muted-foreground);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Right Accent Panel */
.accent-panel {
    position: absolute;
    top: 0;
    right: 0;
    width: 33.333%;
    height: 100%;
    background: linear-gradient(135deg, var(--bright-yellow), #f59e0b);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
}

.accent-content {
    text-align: right;
    color: white;
}

.accent-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.accent-line {
    width: 4rem;
    height: 0.25rem;
    background: rgba(255, 255, 255, 0.3);
    margin-left: auto;
    margin-bottom: 1rem;
}

.accent-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.125rem;
    line-height: 1.6;
}

/* Mobile Styles */
@media (max-width: 1024px) {
    .accent-panel {
        display: none;
    }

    .mobile-accent-bar {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 0.5rem;
        background: linear-gradient(135deg, var(--bright-yellow), #f59e0b);
    }
}

@media (max-width: 640px) {
    .header {
        padding: 1.5rem;
    }

    .logo {
        width: 3rem;
        height: 3rem;
    }

    .main-content {
        padding: 1.5rem;
    }

    .email-form {
        flex-direction: column;
    }
}

/* Toast Notification */
.toast {
    position: fixed;
    top: 2rem;
    right: 2rem;
    background: var(--hero-green);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.3);
    transform: translateX(100%);
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 1000;
}

.toast.show {
    transform: translateX(0);
    opacity: 1;
}

.toast-title {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.toast-description {
    font-size: 0.875rem;
    opacity: 0.9;
}