@import url('https://fonts.googleapis.com/css2?family=Sora:wght@300;400;500;600;700;800&family=Space+Grotesk:wght@500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Sora', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: #333;
    background: #f5f5f5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Sponsors Container */
.sponsors-container {
    width: 100%;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #013220 0%, #016b38 100%);
    padding: 120px 20px 100px;
    color: white;
    position: relative;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
}

.hero-content {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 50px;
    text-align: left;
}

.hero-content h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: -1.5px;
}

.hero-subtitle {
    font-size: 0.95rem;
    font-weight: 500;
    opacity: 0.85;
    line-height: 1.6;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
    padding-top: 20px;
    max-width: 700px;
}

.hero-subtitle::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 60px;
    height: 2px;
    background: rgba(255, 255, 255, 0.6);
}

/* Content Sections */
.content-section {
    padding: 15px 0;
    width: 100%;
}

.white-section {
    background: white;
}

.green-section {
    background: #013220;
    position: relative;
}

.green-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
}

.green-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
}

/* Section Wrapper */
.section-wrapper {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 50px;
}

/* Status Content */
.status-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.icon-wrapper {
    margin-bottom: 40px;
    display: flex;
    justify-content: center;
}

.handshake-icon {
    width: 90px;
    height: 90px;
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { 
        transform: scale(1); 
        opacity: 1;
    }
    50% { 
        transform: scale(1.08); 
        opacity: 0.9;
    }
}

.status-content h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: #013220;
    margin-bottom: 25px;
    letter-spacing: -1px;
    line-height: 1.2;
}

.lead-text {
    font-size: 1.15rem;
    color: #444;
    line-height: 1.8;
    font-weight: 400;
}

/* CTA Section */
.cta-section {
    padding-bottom: 120px;
}

/* CTA Content */
.cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    padding-top: 40px;
    border-top: 1px solid rgba(1, 50, 32, 0.1);
}

.cta-content h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.4rem;
    font-weight: 700;
    color: #013220;
    margin-bottom: 25px;
    letter-spacing: -1px;
    line-height: 1.3;
}

.cta-content p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 40px;
}

/* Button Group */
.button-group {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button {
    display: inline-block;
    padding: 15px 38px;
    text-decoration: none;
    border-radius: 0;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    font-family: 'Sora', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    transition: left 0.6s;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button.primary {
    background: #016b38;
    color: white;
    box-shadow: 0 4px 20px rgba(1, 107, 56, 0.25);
}

.cta-button.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(1, 107, 56, 0.35);
    background: #013220;
}

.cta-button.secondary {
    background: transparent;
    color: #013220;
    border: 2px solid #013220;
}

.cta-button.secondary:hover {
    transform: translateY(-2px);
    background: #013220;
    color: white;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Tablet Responsive */
@media (max-width: 1200px) {
    .section-wrapper {
        max-width: 1000px;
    }

    .status-content h2 {
        font-size: 2.5rem;
    }

    .cta-content h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 1024px) {
    .hero-content h1 {
        font-size: 3.5rem;
    }

    .section-wrapper {
        padding: 0 40px;
    }

    .status-content h2 {
        font-size: 2.3rem;
    }

    .cta-content h2 {
        font-size: 2.1rem;
    }

    .lead-text,
    .cta-content p {
        font-size: 1.08rem;
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero-section {
        padding: 100px 20px 80px;
    }

    .hero-content {
        padding: 0 25px;
    }

    .hero-content h1 {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 0.9rem;
        letter-spacing: 1.2px;
    }

    .content-section {
        padding: 70px 0;
    }

    .cta-section {
        padding-bottom: 90px;
    }

    .section-wrapper {
        padding: 0 25px;
    }

    .handshake-icon {
        width: 75px;
        height: 75px;
    }

    .status-content h2 {
        font-size: 2.1rem;
    }

    .cta-content h2 {
        font-size: 1.9rem;
    }

    .lead-text {
        font-size: 1.05rem;
    }

    .cta-content p {
        font-size: 1.03rem;
        margin-bottom: 35px;
    }

    .button-group {
        flex-direction: column;
        gap: 15px;
    }

    .cta-button {
        width: 100%;
        max-width: 350px;
        padding: 14px 30px;
        font-size: 0.95rem;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .hero-section {
        padding: 80px 15px 60px;
    }

    .hero-content {
        padding: 0 20px;
    }

    .hero-content h1 {
        font-size: 2.4rem;
        letter-spacing: -1px;
    }

    .hero-subtitle {
        font-size: 0.85rem;
        letter-spacing: 1px;
    }

    .hero-subtitle::before {
        width: 50px;
    }

    .content-section {
        padding: 60px 0;
    }

    .cta-section {
        padding-bottom: 80px;
    }

    .section-wrapper {
        padding: 0 20px;
    }

    .handshake-icon {
        width: 65px;
        height: 65px;
    }

    .status-content h2 {
        font-size: 1.9rem;
    }

    .cta-content h2 {
        font-size: 1.7rem;
    }

    .lead-text,
    .cta-content p {
        font-size: 1rem;
    }

    .cta-button {
        font-size: 0.9rem;
        padding: 13px 25px;
    }
}