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

/* Global list reset */
ul, ol {
    list-style: none;
    list-style-type: none;
    margin: 0;
    padding: 0;
}

li {
    list-style: none;
    list-style-type: none;
}

:root {
    --primary-green: #7ED957;
    --dark-bg: #0a0a0a;
    --card-bg: rgba(255, 255, 255, 0.03);
    --border-color: rgba(255, 255, 255, 0.1);
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.7);
    --text-muted: rgba(255, 255, 255, 0.5);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-primary);
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
}

/* Background Pattern - Subtle organic texture */
.bg-pattern {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background-image: 
        radial-gradient(ellipse 80% 50% at 50% -10%, rgba(126, 217, 87, 0.12), transparent),
        radial-gradient(ellipse 50% 30% at 90% 90%, rgba(126, 217, 87, 0.06), transparent);
}

/* Subtle earthy texture overlay */
.horseshoe-pattern {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.02;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Cg fill='%23ffffff' fill-opacity='1'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z'/%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

@media (max-width: 768px) {
    .horseshoe-pattern {
        opacity: 0.012;
    }
    
    .bg-pattern {
        background-image: 
            radial-gradient(ellipse 80% 50% at 50% -10%, rgba(126, 217, 87, 0.08), transparent),
            radial-gradient(ellipse 50% 30% at 90% 90%, rgba(126, 217, 87, 0.04), transparent);
    }
}

.container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1.5rem;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Header */
header {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 0.5rem 0;
    gap: 1rem;
    flex-wrap: wrap;
}

.logo {
    height: 100px;
    width: auto;
}

/* Main Content */
main {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    text-align: center;
    padding: 1rem 0;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    padding: 0.4rem 0.9rem;
    border-radius: 50px;
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-bottom: 0;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--primary-green);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

h1 {
    font-size: clamp(1.75rem, 4.5vw, 2.75rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.25rem;
    margin-top: 1rem;
    max-width: 700px;
}

/* Hero Feature Pills */
.hero-pills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    max-width: 500px;
}

.hero-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(126, 217, 87, 0.1);
    border: 1px solid rgba(126, 217, 87, 0.25);
    padding: 0.5rem 0.9rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-primary);
    white-space: nowrap;
}

.hero-pill svg {
    flex-shrink: 0;
    stroke: var(--primary-green);
}

/* Prize Draw Callout */
.prize-callout {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    margin-bottom: 1.25rem;
    font-size: 0.85rem;
    color: var(--text-secondary);
    background: rgba(255, 215, 0, 0.08);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 8px;
}

.prize-callout svg {
    flex-shrink: 0;
    stroke: #FFD700;
}

@media (max-width: 480px) {
    .prize-callout {
        font-size: 0.8rem;
        padding: 0.4rem 0.75rem;
        text-align: left;
    }

    .prize-callout svg {
        width: 14px;
        height: 14px;
    }
}

/* Scroll Hint */
.scroll-hint {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    margin-top: 2rem;
    margin-bottom: 2rem;
    color: var(--text-muted);
    font-size: 0.85rem;
    animation: bounce 2s infinite;
}

.scroll-hint svg {
    stroke: var(--primary-green);
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(6px); }
}

h1 .highlight {
    color: var(--primary-green);
}

.tagline {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    max-width: 500px;
}

.subheadline {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--text-secondary);
    max-width: 600px;
    line-height: 1.6;
    margin-bottom: 2.5rem;
}

/* Countdown */
.countdown-section {
    margin-bottom: 2rem;
}

.countdown-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

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

.countdown-item {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1rem 1.5rem;
    min-width: 80px;
}

.countdown-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-green);
}

.countdown-unit {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Email Form */
.email-form {
    width: 100%;
    max-width: 500px;
    margin-bottom: 3rem;
}

.form-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.form-subtitle {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.input-group {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.email-input {
    flex: 1;
    padding: 1rem 1.25rem;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    color: var(--text-primary);
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.email-input:focus {
    outline: none;
    border-color: var(--primary-green);
    box-shadow: 0 0 0 3px rgba(126, 217, 87, 0.1);
}

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

.email-input.error {
    border-color: #ff4444;
}

.submit-btn {
    padding: 1rem 2rem;
    background: var(--primary-green);
    border: none;
    border-radius: 12px;
    color: #000;
    font-size: 1rem;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.submit-btn:hover {
    background: #6bc948;
    transform: translateY(-1px);
}

.submit-btn:active {
    transform: translateY(0);
}

.submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.form-message {
    font-size: 0.85rem;
    min-height: 1.25rem;
}

.form-message.success {
    color: var(--primary-green);
}

.form-message.error {
    color: #ff4444;
}

.privacy-note {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 1rem;
}

/* Why Join Section */
.why-join {
    width: 100%;
    max-width: 1000px;
    margin-bottom: 3rem;
}

.section-header {
    margin-bottom: 2rem;
}

.section-header h2 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.section-header p {
    color: var(--text-secondary);
    font-size: 1rem;
}

/* Benefits */
.benefits {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}

.benefit {
    background: linear-gradient(135deg, rgba(126, 217, 87, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(126, 217, 87, 0.2);
    border-radius: 16px;
    padding: 1.75rem;
    text-align: left;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.benefit::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(126, 217, 87, 0.1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.benefit:hover {
    border-color: var(--primary-green);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 30px rgba(126, 217, 87, 0.1);
}

.benefit:hover::before {
    opacity: 1;
}

.benefit-icon {
    width: 48px;
    height: 48px;
    background: rgba(126, 217, 87, 0.1);
    border: 1px solid rgba(126, 217, 87, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: var(--primary-green);
}

.benefit-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--primary-green);
}

.benefit h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.benefit p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 0.75rem;
}

.benefit-tag {
    display: inline-block;
    background: rgba(126, 217, 87, 0.15);
    color: var(--primary-green);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Value Proposition */
.value-prop {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2rem;
    margin-top: 1.5rem;
    text-align: center;
}

.value-prop p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.value-prop strong {
    color: var(--primary-green);
}

/* Footer */
footer {
    text-align: center;
    padding: 2rem 0;
    border-top: 1px solid var(--border-color);
}

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

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

.social-links a:hover {
    color: var(--primary-green);
}

.copyright {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Success State */
.success-state {
    display: none;
    text-align: center;
    padding: 2rem;
}

.success-state.show {
    display: block;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: rgba(126, 217, 87, 0.15);
    border: 2px solid var(--primary-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--primary-green);
    font-weight: 300;
}

.success-state h2 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.success-state p {
    color: var(--text-secondary);
}

/* Who This Is For Section */
.who-section {
    width: 100%;
    max-width: 900px;
    margin-bottom: 3rem;
}

.who-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.who-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 1.5rem;
}

.who-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--border-color);
}

.who-for h3 {
    color: var(--primary-green);
}

.who-not h3 {
    color: #ff6b6b;
}

.who-card ul {
    list-style: none !important;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.who-card li {
    list-style: none !important;
    font-size: 0.9rem;
    color: var(--text-secondary);
    padding-left: 1.25rem;
    position: relative;
    margin: 0;
}

.who-for li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 6px;
    height: 6px;
    background: var(--primary-green);
    border-radius: 50%;
}

.who-not li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 6px;
    height: 6px;
    background: #ff6b6b;
    border-radius: 50%;
}

.who-explanation {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1.25rem 1.5rem;
}

.who-explanation p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.who-explanation strong {
    color: var(--text-primary);
}

@media (max-width: 768px) {
    .who-grid {
        grid-template-columns: 1fr;
    }
}

/* Social Proof */
.social-proof {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.25rem;
    padding: 0.75rem 1.25rem;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 50px;
}

.proof-counter {
    display: flex;
    flex-direction: row;
    align-items: baseline;
    gap: 0.4rem;
}

.counter-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-green);
}

.counter-cap {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-muted);
}

.counter-label {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.proof-avatars {
    display: flex;
    align-items: center;
}

.avatar {
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, rgba(126, 217, 87, 0.3), rgba(126, 217, 87, 0.15));
    border: 2px solid var(--dark-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.6rem;
    font-weight: 600;
    color: var(--primary-green);
    margin-left: -8px;
}

.avatar:first-child {
    margin-left: 0;
}

.avatar-more {
    width: 28px;
    height: 28px;
    background: var(--primary-green);
    border: 2px solid var(--dark-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.55rem;
    font-weight: 700;
    color: #000;
    margin-left: -8px;
}

/* Founding Member */
.founding-member {
    width: 100%;
    max-width: 600px;
    background: linear-gradient(135deg, rgba(126, 217, 87, 0.1) 0%, rgba(255, 215, 0, 0.05) 100%);
    border: 1px solid rgba(126, 217, 87, 0.3);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    overflow: hidden;
}


.founding-badge {
    display: inline-block;
    background: var(--primary-green);
    color: #000;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
}

.founding-member h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    position: relative;
}

.founding-member > p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    position: relative;
}

.founding-perks {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    text-align: left;
    position: relative;
}

.founding-perks li {
    font-size: 0.9rem;
    color: var(--text-primary);
    padding: 0.5rem 0.75rem 0.5rem 1.75rem;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    position: relative;
}

.founding-perks li::before {
    content: '';
    position: absolute;
    left: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: var(--primary-green);
    border-radius: 50%;
}

/* Trust Section */
.trust-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.trust-icon {
    width: 16px;
    height: 16px;
    stroke: var(--primary-green);
    flex-shrink: 0;
}

/* FAQ Section */
.faq-section {
    width: 100%;
    max-width: 800px;
    margin-bottom: 3rem;
}

.faq-section h2 {
    text-align: center;
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
}

.faq-grid {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.faq-item {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    transition: border-color 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(126, 217, 87, 0.3);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem;
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-size: 1rem;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    text-align: left;
}

.faq-toggle {
    font-size: 1.5rem;
    color: var(--primary-green);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 1.25rem 1.25rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Final CTA */
.final-cta {
    width: 100%;
    max-width: 600px;
    text-align: center;
    padding: 2.5rem;
    background: linear-gradient(135deg, rgba(126, 217, 87, 0.15) 0%, rgba(126, 217, 87, 0.05) 100%);
    border: 1px solid rgba(126, 217, 87, 0.3);
    border-radius: 20px;
    margin-bottom: 2rem;
}

.final-cta h2 {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
}

.final-cta > p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.cta-form .input-group {
    justify-content: center;
}

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

    .logo {
        height: 100px;
    }

    .benefits {
        grid-template-columns: 1fr;
    }

    .input-group {
        flex-direction: column;
    }

    .submit-btn {
        width: 100%;
    }

    .countdown-item {
        padding: 0.75rem 1rem;
        min-width: 65px;
    }

    .countdown-value {
        font-size: 1.5rem;
    }

    .section-header h2 {
        font-size: 1.5rem;
    }

    .benefit {
        padding: 1.25rem;
    }

    .value-prop {
        padding: 1.5rem;
    }

    .value-prop p {
        font-size: 1rem;
    }

    .founding-perks {
        grid-template-columns: 1fr;
    }

    .trust-section {
        gap: 0.5rem;
    }

    .trust-badge {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }

    .faq-section h2 {
        font-size: 1.5rem;
    }

    .final-cta {
        padding: 1.5rem;
    }

    .final-cta h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    header {
        flex-direction: column;
        gap: 0.5rem;
    }

    .badge {
        font-size: 0.75rem;
        padding: 0.35rem 0.75rem;
    }

    h1 {
        font-size: 1.5rem;
    }

    .tagline {
        font-size: 0.95rem;
    }

    .hero-pills {
        gap: 0.4rem;
    }

    .hero-pill {
        font-size: 0.75rem;
        padding: 0.4rem 0.7rem;
    }

    .hero-pill svg {
        width: 12px;
        height: 12px;
    }

    .social-proof {
        flex-direction: column;
        gap: 0.5rem;
        padding: 0.75rem 1rem;
        border-radius: 16px;
    }

    .scroll-hint {
        margin-top: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .countdown {
        gap: 0.5rem;
    }

    .countdown-item {
        padding: 0.5rem 0.75rem;
        min-width: 55px;
    }

    .countdown-value {
        font-size: 1.25rem;
    }

    .countdown-unit {
        font-size: 0.65rem;
    }
}
