:root {
    /* LA World Cup 2026 Colors - Sunset/Ocean vibes */
    --sunset-orange: #FF6B35;
    --sunset-pink: #F7567C;
    --sunset-purple: #9B5DE5;
    --ocean-blue: #00BBF9;
    --sky-blue: #00F5D4;
    --gold: #FEE440;
    --white: #FFFFFF;
    --dark: #1a1a2e;
    --darker: #0f0f1a;
    
    /* Gradients */
    --gradient-sunset: linear-gradient(135deg, var(--sunset-orange), var(--sunset-pink), var(--sunset-purple));
    --gradient-ocean: linear-gradient(135deg, var(--ocean-blue), var(--sky-blue));
    --gradient-hero: linear-gradient(180deg, var(--sunset-orange) 0%, var(--sunset-pink) 40%, var(--sunset-purple) 70%, var(--dark) 100%);
}

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

html {
    scroll-behavior: smooth;
}

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

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(15, 15, 26, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 800;
    font-size: 1.2rem;
}

.nav-logo img {
    height: 32px;
}

.logo-divider {
    color: var(--sunset-orange);
    font-weight: 300;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.nav-links a:hover {
    opacity: 1;
}

.nav-cta {
    background: var(--gradient-sunset);
    padding: 0.6rem 1.2rem;
    border-radius: 30px;
    opacity: 1 !important;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 6rem 2rem;
    position: relative;
    background: var(--gradient-hero);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="0.5"/></svg>');
    background-size: 200px;
    opacity: 0.5;
}

/* Animated soccer ball pattern */
.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(255, 107, 53, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(155, 93, 229, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(0, 187, 249, 0.1) 0%, transparent 70%);
    animation: heroGlow 10s ease-in-out infinite;
}

@keyframes heroGlow {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(3rem, 10vw, 7rem);
    font-weight: 700;
    line-height: 1;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.hero-line {
    display: block;
}

.hero-line.gradient {
    background: var(--gradient-ocean);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto 3rem;
    line-height: 1.7;
}

/* Trophy Icon */
.trophy-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Stats Row */
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-bottom: 3rem;
}

.stat {
    text-align: center;
}

.stat-value {
    display: block;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    background: var(--gradient-sunset);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.7;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* CTA Button */
.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--white);
    color: var(--dark);
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s;
}

.hero-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(255, 107, 53, 0.3);
}

/* Sections */
.section {
    padding: 6rem 2rem;
    position: relative;
}

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

.section-label {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: var(--sunset-orange);
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.section-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.section-title .gradient {
    background: var(--gradient-sunset);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-desc {
    font-size: 1.1rem;
    opacity: 0.8;
    max-width: 700px;
    margin-bottom: 3rem;
}

/* Feature Cards */
.elements-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

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

.element-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    transition: transform 0.3s, border-color 0.3s;
}

.element-card:hover {
    transform: translateY(-5px);
    border-color: var(--sunset-orange);
}

.element-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.element-label {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--sunset-pink);
    margin-bottom: 0.5rem;
}

.element-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.element-card p {
    opacity: 0.8;
    font-size: 0.95rem;
    line-height: 1.6;
}

.element-card ul {
    list-style: none;
    margin-top: 1rem;
}

.element-card li {
    padding: 0.3rem 0;
    opacity: 0.8;
    font-size: 0.9rem;
}

.element-card li::before {
    content: '→';
    color: var(--sunset-orange);
    margin-right: 0.5rem;
}

/* Venue Section */
.venue-specs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.spec-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 1.5rem;
}

.spec-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.spec-card h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    color: var(--ocean-blue);
}

.spec-card ul {
    list-style: none;
}

.spec-card li {
    font-size: 0.9rem;
    opacity: 0.8;
    padding: 0.25rem 0;
}

/* Timeline */
.timeline {
    margin-top: 3rem;
}

.timeline-item {
    display: flex;
    gap: 2rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    margin-bottom: 1rem;
    border-left: 4px solid var(--sunset-orange);
}

.timeline-date {
    min-width: 100px;
}

.timeline-date .day-name {
    display: block;
    font-weight: 700;
    font-size: 1rem;
}

.timeline-date .day-num {
    display: block;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    color: var(--sunset-orange);
}

.timeline-content h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.timeline-content p {
    opacity: 0.8;
    font-size: 0.95rem;
}

.timeline-tag {
    display: inline-block;
    background: var(--gradient-sunset);
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-top: 1rem;
}

/* Audience Cards */
.audience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.audience-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 2rem;
    position: relative;
}

.audience-card.featured {
    background: linear-gradient(145deg, rgba(255, 107, 53, 0.1), rgba(155, 93, 229, 0.1));
    border-color: var(--sunset-orange);
}

.audience-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    opacity: 0.2;
    position: absolute;
    top: 1rem;
    right: 1.5rem;
}

.audience-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.audience-card p {
    opacity: 0.8;
    font-size: 0.95rem;
    line-height: 1.6;
}

.audience-tag {
    display: inline-block;
    background: rgba(255, 107, 53, 0.2);
    color: var(--sunset-orange);
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-top: 1rem;
}

/* Investment Section */
.budget-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    border: 2px solid var(--sunset-orange);
    border-radius: 24px;
    padding: 3rem;
    max-width: 700px;
    margin: 2rem auto;
}

.budget-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.budget-header h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.budget-range {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    background: var(--gradient-sunset);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.budget-breakdown {
    margin-bottom: 2rem;
}

.budget-item {
    display: flex;
    justify-content: space-between;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.budget-item.highlight {
    color: var(--ocean-blue);
}

.budget-category {
    opacity: 0.8;
}

.budget-amount {
    font-weight: 600;
}

.budget-note {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    padding: 1.5rem;
}

.budget-note p {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.budget-note ul {
    list-style: none;
}

.budget-note li {
    padding: 0.4rem 0;
    opacity: 0.8;
    font-size: 0.95rem;
}

.budget-note li::before {
    content: '✓';
    color: var(--sky-blue);
    margin-right: 0.75rem;
}

/* Contact Section */
.contact {
    background: var(--gradient-hero);
    text-align: center;
    padding: 8rem 2rem;
}

.contact-content {
    max-width: 700px;
    margin: 0 auto;
}

.contact-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin: 3rem 0;
}

.btn-primary {
    display: inline-block;
    background: var(--white);
    color: var(--dark);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(255, 255, 255, 0.2);
}

.btn-secondary {
    color: var(--white);
    text-decoration: none;
    opacity: 0.8;
    font-size: 0.95rem;
}

.contact-footer {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.footer-xclsv {
    height: 40px;
}

.footer-divider {
    color: var(--sunset-orange);
    font-size: 1.5rem;
}

.contact-footer p {
    opacity: 0.5;
    font-size: 0.85rem;
}

/* Funnel/Impact */
.funnel {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 600px;
    margin: 2rem auto;
}

.funnel-stage {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 1.5rem 2rem;
}

.funnel-stage.highlight {
    background: linear-gradient(145deg, rgba(255, 107, 53, 0.1), rgba(155, 93, 229, 0.1));
    border-color: var(--sunset-orange);
}

.funnel-icon {
    font-size: 2rem;
}

.funnel-content h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.funnel-metrics {
    display: flex;
    gap: 2rem;
}

.metric {
    display: flex;
    flex-direction: column;
}

.metric-value {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--ocean-blue);
}

.metric-label {
    font-size: 0.8rem;
    opacity: 0.7;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 2rem;
    }
    
    .timeline-item {
        flex-direction: column;
        gap: 1rem;
    }
    
    .funnel-metrics {
        flex-direction: column;
        gap: 0.5rem;
    }
}
