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

:root {
    --primary: #D4AF37;
    --primary-dark: #B8941F;
    --secondary: #C9A961;
    --dark: #000000;
    --dark-light: #1A1A1A;
    --gray: #666666;
    --light-gray: #F5F5F5;
    --white: #FFFFFF;
    --background: #FFFFFF;
    --text: #000000;
    --text-secondary: #666666;
    --gold: #D4AF37;
    --gold-light: #F4E4B8;
    --gradient: linear-gradient(135deg, #D4AF37 0%, #C9A961 100%);
    --gradient-dark: linear-gradient(135deg, #000000 0%, #1A1A1A 100%);
    --shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.15);
    --shadow-gold: 0 10px 40px rgba(212, 175, 55, 0.3);
    --border: rgba(0, 0, 0, 0.1);
    --border-gold: rgba(212, 175, 55, 0.3);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--background);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(45deg, transparent 48%, rgba(212, 175, 55, 0.03) 49%, rgba(212, 175, 55, 0.03) 51%, transparent 52%),
        linear-gradient(-45deg, transparent 48%, rgba(212, 175, 55, 0.03) 49%, rgba(212, 175, 55, 0.03) 51%, transparent 52%);
    background-size: 100px 100px;
    pointer-events: none;
    z-index: -1;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    padding: 60px 20px;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://images.unsplash.com/photo-1478720568477-152d9b164e26?w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--white);
}

.logo h1 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--gold);
    margin-bottom: 60px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.5);
}

.hero-content {
    max-width: 900px;
}

.headline {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.03em;
    color: var(--white);
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.subheadline {
    font-size: 1.5rem;
    color: var(--gold-light);
    margin-bottom: 40px;
    font-weight: 400;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: rgba(212, 175, 55, 0.2);
    border: 2px solid var(--gold);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    box-shadow: var(--shadow-gold);
    backdrop-filter: blur(10px);
    color: var(--gold);
}

.pulse {
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
    box-shadow: 0 0 10px var(--gold);
}

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

.section {
    padding: 100px 20px;
    border-top: 1px solid var(--border);
    position: relative;
}

.problem {
    position: relative;
}

.problem::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(60px);
    pointer-events: none;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-label {
    display: block;
    padding: 8px 16px;
    background: var(--dark);
    color: var(--gold);
    border: 1px solid var(--gold);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 20px;
    text-align: center;
    max-width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

.section-header h3 {
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
    position: relative;
    display: inline-block;
}

.section-header h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--gradient);
    border-radius: 2px;
}

.section-description {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.2rem;
    color: var(--text-secondary);
    text-align: center;
    line-height: 1.8;
}

.vision-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.vision-card {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    border: 2px solid var(--border-gold);
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

.vision-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient);
}

.vision-card::after {
    content: '';
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(30px);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.vision-card:hover::after {
    opacity: 1;
}

.vision-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
    box-shadow: var(--shadow-gold);
}

.icon {
    font-size: 3rem;
    margin-bottom: 20px;
    width: 80px;
    height: 80px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--white);
    font-weight: bold;
    box-shadow: var(--shadow-gold);
}

.vision-card h4 {
    font-size: 1.5rem;
    margin-bottom: 16px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--text) 0%, var(--gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.vision-card p {
    color: var(--text-secondary);
    line-height: 1.7;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.feature-card {
    background: var(--white);
    padding: 30px;
    border-radius: 16px;
    border: 1px solid var(--border);
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
    position: relative;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
    box-shadow: var(--shadow-gold);
    background: linear-gradient(to bottom, var(--white), var(--gold-light));
}

.feature-icon {
    font-size: 2rem;
    margin-bottom: 16px;
    width: 60px;
    height: 60px;
    background: var(--dark);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    color: var(--gold);
    border: 1px solid var(--gold);
}

.feature-card h4 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    font-weight: 600;
    color: var(--dark);
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.market {
    background: linear-gradient(rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.85)), url('https://images.unsplash.com/photo-1559827260-dc66d52bef19?w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--white);
}

.market .section-header h3,
.market .section-description {
    color: var(--white);
}

.market-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.stat-card {
    background: rgba(0, 0, 0, 0.6);
    padding: 40px 30px;
    border-radius: 20px;
    border: 2px solid var(--gold);
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-gold);
    backdrop-filter: blur(10px);
}

.stat-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.5);
    background: rgba(212, 175, 55, 0.2);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--gold);
    margin-bottom: 12px;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

.stat-label {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--white);
}

.stat-description {
    font-size: 0.9rem;
    color: var(--gold-light);
}

.market-highlights {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 60px;
}

.highlight {
    padding: 20px 30px;
    background: rgba(212, 175, 55, 0.15);
    border: 1px solid var(--gold);
    border-radius: 12px;
    font-size: 1rem;
    color: var(--gold-light);
    backdrop-filter: blur(5px);
}

.highlight strong {
    color: var(--gold);
    font-weight: 700;
}

.pipeline {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 60px;
}

.pipeline-step {
    background: var(--white);
    padding: 30px;
    border-radius: 16px;
    border: 2px solid var(--border-gold);
    text-align: center;
    min-width: 180px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
}

.pipeline-step:hover {
    border-color: var(--gold);
    transform: scale(1.05);
    box-shadow: var(--shadow-gold);
    background: var(--gold-light);
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--dark);
    border: 2px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0 auto 16px;
    color: var(--gold);
    box-shadow: var(--shadow-gold);
}

.pipeline-step h4 {
    font-size: 1.3rem;
    margin-bottom: 8px;
    font-weight: 700;
}

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

.pipeline-arrow {
    font-size: 2rem;
    color: var(--gold);
    font-weight: 300;
}

.how-it-works {
    background: linear-gradient(180deg, var(--light-gray) 0%, var(--white) 100%);
    position: relative;
}

.how-it-works::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
}

.cta-section {
    padding: 120px 20px;
    text-align: center;
    background: linear-gradient(rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.9)), url('https://images.unsplash.com/photo-1485846234645-a62644f84728?w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--white);
}

.cta-section h3 {
    color: var(--white);
}

.cta-section p {
    color: var(--gold-light);
}

.cta-section h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.cta-section p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.waitlist-form {
    display: flex;
    gap: 12px;
    max-width: 500px;
    margin: 0 auto 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.waitlist-form input {
    flex: 1;
    min-width: 250px;
    padding: 16px 24px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid var(--gold);
    border-radius: 50px;
    color: var(--white);
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.waitlist-form input:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.3);
    background: rgba(255, 255, 255, 0.15);
}

.waitlist-form input::placeholder {
    color: var(--gold-light);
}

.waitlist-form button {
    padding: 16px 40px;
    background: var(--gradient);
    border: 2px solid var(--gold);
    border-radius: 50px;
    color: var(--dark);
    font-size: 1rem;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.waitlist-form button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
    background: var(--gold);
}

.social-links {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.social-link {
    color: var(--gold-light);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: var(--gold);
}

footer {
    padding: 40px 20px;
    text-align: center;
    border-top: 2px solid var(--gold);
    background: var(--dark);
    color: var(--gold-light);
    font-size: 0.9rem;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: var(--dark);
}

::-webkit-scrollbar-thumb {
    background: var(--gradient);
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gold);
}

/* Selection Styling */
::selection {
    background: var(--gold);
    color: var(--dark);
}

::-moz-selection {
    background: var(--gold);
    color: var(--dark);
}

@media (max-width: 768px) {
    .headline {
        font-size: 2.5rem;
    }
    
    .subheadline {
        font-size: 1.2rem;
    }
    
    .section-header h3 {
        font-size: 2rem;
    }
    
    .pipeline {
        flex-direction: column;
    }
    
    .pipeline-arrow {
        transform: rotate(90deg);
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .waitlist-form {
        flex-direction: column;
    }
    
    .waitlist-form input {
        width: 100%;
    }
    
    .hero {
        background-attachment: scroll;
    }
    
    .market,
    .cta-section {
        background-attachment: scroll;
    }
}
