/* ============================================
   JOA - PRODUCTION STYLES
   Optimized for performance and iOS compatibility
   ============================================ */

/* ============================================
   GLOBAL RESET & BASE STYLES
   ============================================ */

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

/* ============================================
   SAFE AREA + FULL HEIGHT FIX (iOS + modern mobile)
   ============================================ */
html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    min-height: 100vh;
    min-height: 100dvh; /* modern browsers, handles Safari toolbar collapse */
    background-color: #0a0a0a;
    /* Extend background into iPhone notch and bottom bar area */
    padding-top: env(safe-area-inset-top);
    padding-bottom: env(safe-area-inset-bottom);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: 
        linear-gradient(180deg, rgba(10, 10, 10, 0.75) 0%, rgba(10, 10, 10, 0.85) 100%),
        url('../assets/stadium-background.jpg') center/cover no-repeat;
    color: #ffffff;
    overflow-x: hidden;
    will-change: scroll-position;
}

/* WebP support for modern browsers */
@supports (background-image: url('data:image/webp;base64,UklGRh4AAABXRUJQVlA4TBEAAAAvAAAAAAfQ//73v/+BiOh/AAA=')) {
    body {
        background: 
            linear-gradient(180deg, rgba(10, 10, 10, 0.75) 0%, rgba(10, 10, 10, 0.85) 100%),
            url('../assets/stadium-background.webp') center/cover no-repeat;
    }
}

/* Fixed background for desktop only */
@media (min-width: 769px) {
    body {
        background-attachment: fixed;
    }
}

section {
    padding: 6rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 3rem;
    text-align: center;
    background: linear-gradient(135deg, #ffffff 0%, #4caf50 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    text-align: center;
    font-size: 1.25rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
    max-width: 800px;
    margin: -1.5rem auto 3rem;
    line-height: 1.6;
}

a {
    transition: all 0.3s ease;
}

a:hover {
    text-decoration: none;
}

/* ============================================
   ACCESSIBILITY
   ============================================ */

/* Focus indicators */
:focus-visible {
    outline: 3px solid #4caf50;
    outline-offset: 2px;
}

/* Skip to main content link */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: #4caf50;
    color: white;
    padding: 8px 16px;
    z-index: 100;
    text-decoration: none;
    font-weight: 600;
}

.skip-link:focus {
    top: 0;
}


/* ============================================
   HERO SECTION
   ============================================ */

.hero {
    min-height: 100vh;
    min-height: 100dvh;
    background: transparent;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(76, 175, 80, 0.15) 0%, transparent 60%);
    animation: heroGlow 6s ease-in-out infinite;
}

@keyframes heroGlow {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

.hero::after {
    content: '';
    position: absolute;
    top: -50%;
    left: 50%;
    width: 150%;
    height: 200%;
    background: linear-gradient(
        135deg,
        transparent 0%,
        rgba(76, 175, 80, 0.03) 48%,
        rgba(76, 175, 80, 0.05) 50%,
        rgba(76, 175, 80, 0.03) 52%,
        transparent 100%
    );
    transform: rotate(-20deg);
    pointer-events: none;
    animation: lightSweep 8s ease-in-out infinite;
}

@keyframes lightSweep {
    0%, 100% { transform: rotate(-20deg) translateX(-10%); }
    50% { transform: rotate(-20deg) translateX(10%); }
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 2rem;
    max-width: 1200px;
    transition: transform 0.3s ease, opacity 0.3s ease;
    will-change: transform, opacity;
}

.logo {
    margin-bottom: 2.5rem;
    animation: fadeInUp 1.2s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.logo::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(76, 175, 80, 0.2) 0%, transparent 70%);
    filter: blur(40px);
    z-index: -1;
}

.logo img {
    max-width: 480px;
    width: 100%;
    height: auto;
    filter: brightness(1.2) drop-shadow(0 0 40px rgba(76, 175, 80, 0.3));
    animation: logoGlow 3s ease-in-out infinite;
}

@keyframes logoGlow {
    0%, 100% { 
        filter: brightness(1.2) drop-shadow(0 0 40px rgba(76, 175, 80, 0.3));
    }
    50% { 
        filter: brightness(1.3) drop-shadow(0 0 50px rgba(76, 175, 80, 0.4));
    }
}

.tagline {
    font-size: 2.8rem;
    font-weight: 400;
    margin-bottom: 4rem;
    max-width: 40ch;
    margin-left: auto;
    margin-right: auto;
    letter-spacing: 0.02em;
    line-height: 1.3;
    background: linear-gradient(135deg, #ffffff 0%, rgba(76, 175, 80, 0.9) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 1.2s cubic-bezier(0.4, 0, 0.2, 1) 0.3s both;
}

.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
    animation: fadeInUp 1.2s cubic-bezier(0.4, 0, 0.2, 1) 0.6s both;
    position: relative;
}

.scroll-chevron {
    color: rgba(76, 175, 80, 0.9);
    filter: drop-shadow(0 0 12px rgba(76, 175, 80, 0.6));
    animation: chevronBounce 2.5s ease-in-out infinite;
    width: 40px;
    height: 40px;
}

@keyframes chevronBounce {
    0%, 100% {
        transform: translateY(0);
        opacity: 0.9;
        filter: drop-shadow(0 0 12px rgba(76, 175, 80, 0.6));
    }
    50% {
        transform: translateY(10px);
        opacity: 0.5;
        filter: drop-shadow(0 0 20px rgba(76, 175, 80, 0.8));
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* ============================================
   REDEFINING FAN ENGAGEMENT SECTION
   ============================================ */

.problem-section {
    background: linear-gradient(180deg, rgba(10, 10, 10, 0.95) 0%, rgba(15, 17, 15, 0.9) 100%);
    backdrop-filter: blur(10px);
    padding: 6rem 2rem 0;
    position: relative;
    overflow: hidden;
}

.problem-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 30% 30%, rgba(76, 175, 80, 0.04) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 70%, rgba(76, 175, 80, 0.03) 0%, transparent 50%);
    animation: atmosphereShift 15s ease-in-out infinite;
    pointer-events: none;
}

@keyframes atmosphereShift {
    0%, 100% {
        opacity: 0.5;
        transform: translateY(0);
    }
    50% {
        opacity: 0.8;
        transform: translateY(-20px);
    }
}

.problem-section-heading {
    margin-bottom: 3rem;
}

.cinematic-statement {
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    position: relative;
    opacity: 0;
    transition: opacity 0.8s ease-out;
}

.cinematic-statement.active {
    opacity: 1;
}

.cinematic-statement:first-of-type {
    padding-top: 0;
    min-height: 40vh;
    min-height: 40dvh;
}

.statement-content {
    max-width: 1000px;
    text-align: center;
    position: relative;
}

.statement-line {
    font-size: clamp(2rem, 5vw, 3.5rem);
    line-height: 1.3;
    letter-spacing: 0.01em;
    margin: 0.5rem 0;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.7s ease-out;
}

.cinematic-statement.active .statement-line {
    opacity: 1;
    transform: translateY(0);
}

.cinematic-statement.active .statement-line:nth-child(2) {
    transition-delay: 0.2s;
}

.muted-line {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
}

.highlight-line {
    color: #ffffff;
    font-weight: 700;
    background: linear-gradient(135deg, #ffffff 0%, #4caf50 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.statement-accent {
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, #4caf50 50%, transparent 100%);
    margin: 2rem auto 0;
    box-shadow: 0 0 20px rgba(76, 175, 80, 0.6);
    transition: width 0.8s ease-out 0.4s;
}

.cinematic-statement.active .statement-accent {
    width: 200px;
}


/* ============================================
   FEATURED PARTNERSHIP SECTION
   ============================================ */

.partnership-section {
    background: linear-gradient(180deg, rgba(15, 17, 15, 0.9) 0%, rgba(17, 15, 10, 0.95) 100%);
    backdrop-filter: blur(10px);
    padding: 6rem 2rem;
    position: relative;
    overflow: hidden;
}

.partnership-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 30% 40%, rgba(255, 215, 0, 0.03) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 60%, rgba(255, 215, 0, 0.02) 0%, transparent 50%);
    animation: atmosphereShift 15s ease-in-out infinite;
    pointer-events: none;
}

.partnership-intro {
    max-width: 1200px;
    margin: 0 auto 2rem;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: center;
}

.partnership-logo-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateX(-30px);
    animation: fadeInLeft 1s ease-out 0.3s forwards;
}

.partnership-logo-container a {
    display: inline-block;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.partnership-logo-container a:hover {
    transform: scale(1.05);
}

@keyframes fadeInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.partnership-logo {
    max-width: 280px;
    width: 100%;
    height: auto;
    transition: all 0.3s ease;
    display: block;
}

.partnership-logo:hover {
    transform: scale(1.05);
}

.partnership-text {
    opacity: 0;
    transform: translateX(30px);
    animation: fadeInRight 1s ease-out 0.5s forwards;
}

@keyframes fadeInRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.partnership-text p {
    font-size: 1.4rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 400;
    margin: 0;
}

.partnership-video-container {
    max-width: 1200px;
    margin: 0 auto 3rem;
    padding: 0 1rem;
    opacity: 0;
    transform: scale(0.95);
    animation: videoScaleIn 1s ease-out 0.7s forwards;
}

@keyframes videoScaleIn {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 215, 0, 0.3);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.5),
        0 0 40px rgba(255, 215, 0, 0.1);
    background: #000;
    transition: all 0.3s ease;
}

.video-wrapper::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 12px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.4), rgba(255, 215, 0, 0.1));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.video-wrapper:hover {
    transform: scale(1.02);
    border-color: rgba(255, 215, 0, 0.6);
    box-shadow: 
        0 25px 70px rgba(0, 0, 0, 0.6),
        0 0 60px rgba(255, 215, 0, 0.2);
}

.video-wrapper:hover::before {
    opacity: 1;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
    transition: opacity 0.3s ease;
    background: #000;
}

.video-thumbnail-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.video-overlay-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5));
    z-index: 2;
}

.video-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

.play-btn {
    background: none;
    border: none;
    cursor: pointer;
    transition: transform 0.3s ease;
    padding: 0;
    z-index: 3;
    position: relative;
}

.play-btn:hover {
    transform: scale(1.15);
}

.play-btn svg circle {
    transition: fill 0.3s ease;
}

.play-btn:hover svg circle {
    fill: rgba(255, 215, 0, 1);
}

.play-btn:focus-visible {
    outline: 3px solid #ffd700;
    outline-offset: 4px;
    border-radius: 50%;
}

.partnership-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.partnership-video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.partnership-stats-bar {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    justify-content: space-around;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.5), rgba(26, 26, 26, 0.5));
    border-radius: 15px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    backdrop-filter: blur(10px);
}

.partnership-stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.5rem;
}

.stat-number-container {
    display: flex;
    align-items: baseline;
    justify-content: center;
    height: 3rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #FFD700;
    line-height: 1;
    display: inline-block;
}

.stat-unit {
    font-size: 2rem;
    font-weight: 700;
    color: #FFD700;
    line-height: 1;
    margin-left: 0.2rem;
}

.stat-label {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
}

.stat-divider {
    width: 1px;
    height: 60px;
    background: linear-gradient(180deg, transparent 0%, rgba(255, 215, 0, 0.4) 50%, transparent 100%);
}


/* ============================================
   NEWS SECTION
   ============================================ */

.news-section {
    background: linear-gradient(180deg, rgba(17, 15, 10, 0.95) 0%, rgba(15, 17, 15, 0.9) 100%);
    backdrop-filter: blur(10px);
    padding: 8rem 2rem;
    position: relative;
}

.news-carousel {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    padding: 0 2rem;
}

.news-carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    gap: 2rem;
    will-change: transform;
}

.news-card {
    flex: 0 0 calc(33.333% - 1.33rem);
    min-width: calc(33.333% - 1.33rem);
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: rgba(26, 26, 26, 0.6);
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.news-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}

.news-card-image {
    position: relative;
    width: 100%;
    aspect-ratio: 16/10;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.2), rgba(26, 26, 26, 0.8));
}

.news-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.news-card:hover .news-card-image img {
    transform: scale(1.05);
}

.news-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        transparent 0%,
        rgba(0, 0, 0, 0.3) 40%,
        rgba(0, 0, 0, 0.8) 100%
    );
    opacity: 0.6;
    transition: opacity 0.4s ease;
}

.news-card:hover .news-card-overlay {
    opacity: 0.9;
}

.news-card-content {
    padding: 2rem;
    padding-bottom: 3rem;
    position: relative;
}

.news-card-date {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: #4caf50;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 0.75rem;
    opacity: 0.8;
}

.news-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.3;
    margin: 0;
    padding-right: 3rem;
    transition: all 0.3s ease;
    position: relative;
}

.news-card:hover .news-card-title {
    transform: translateY(-3px);
    color: #4caf50;
}

.news-card-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 2px;
    background: #4caf50;
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 10px rgba(76, 175, 80, 0.6);
}

.news-card:hover .news-card-title::after {
    width: 60px;
}

.news-card-arrow {
    position: absolute;
    top: 2rem;
    right: 2rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(76, 175, 80, 0.1);
    border-radius: 50%;
    color: #4caf50;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.news-card:hover .news-card-arrow {
    opacity: 1;
    transform: translateX(0);
    background: rgba(76, 175, 80, 0.2);
}

.news-carousel-dots {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 3rem;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(76, 175, 80, 0.4);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.carousel-dot:hover {
    border-color: rgba(76, 175, 80, 0.7);
    transform: scale(1.2);
}

.carousel-dot.active {
    background: #4caf50;
    border-color: #4caf50;
    box-shadow: 0 0 10px rgba(76, 175, 80, 0.5);
}


/* ============================================
   INVESTORS SECTION
   ============================================ */

.licenses-section {
    background: linear-gradient(180deg, rgba(15, 17, 15, 0.9) 0%, rgba(17, 15, 12, 0.95) 100%);
    backdrop-filter: blur(10px);
}

.investors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
    align-items: stretch;
}

.investor-item {
    text-align: center;
    padding: 2rem;
    background: #1a1a1a;
    border-radius: 15px;
    transition: transform 0.3s ease;
    border: 1px solid #2a2a2a;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 150px;
}

.investor-item:hover {
    transform: scale(1.05);
    border-color: #4caf50;
}

.investor-logo {
    max-width: 180px;
    width: 100%;
    height: auto;
    filter: brightness(0) invert(1) brightness(0.9);
    transition: filter 0.3s ease;
}

.investor-item:hover .investor-logo {
    filter: brightness(0) invert(1) brightness(1.1);
}


/* ============================================
   CONTACT SECTION
   ============================================ */

.contact-section {
    background: linear-gradient(180deg, rgba(17, 15, 12, 0.95) 0%, rgba(10, 10, 10, 0.98) 100%);
    backdrop-filter: blur(10px);
    padding: 8rem 2rem;
}

.contact-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.contact-email {
    display: inline-block;
    font-size: 1.8rem;
    font-weight: 700;
    color: #4caf50;
    text-decoration: none;
    margin-bottom: 3rem;
    padding: 1.2rem 2.5rem;
    border: 1px solid rgba(76, 175, 80, 0.4);
    border-radius: 50px;
    background: rgba(76, 175, 80, 0.05);
    transition: all 0.3s ease;
}

.contact-email:hover {
    transform: translateY(-2px);
    border-color: #4caf50;
    background: rgba(76, 175, 80, 0.1);
    box-shadow: 0 5px 25px rgba(76, 175, 80, 0.2);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: rgba(26, 26, 26, 0.6);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
    border: 1px solid rgba(76, 175, 80, 0.2);
}

.social-link:hover {
    background: rgba(76, 175, 80, 0.15);
    border-color: #4caf50;
    color: #4caf50;
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(76, 175, 80, 0.3);
}

.social-link svg {
    width: 24px;
    height: 24px;
}


/* ============================================
   FOOTER
   ============================================ */

.site-footer {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    padding: 3rem 2rem;
    border-top: 1px solid transparent;
    background-image: 
        linear-gradient(rgba(10, 10, 10, 0.95), rgba(10, 10, 10, 0.95)),
        linear-gradient(90deg, transparent 0%, rgba(76, 175, 80, 0.3) 50%, transparent 100%);
    background-origin: border-box;
    background-clip: padding-box, border-box;
}

.site-footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;
}

.site-footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(135deg, #ffffff 0%, #4caf50 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.site-footer-copyright {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    font-weight: 400;
    margin: 0;
}


/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 968px) {
    .partnership-intro {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .partnership-text p {
        font-size: 1.2rem;
    }
    
    .partnership-stats-bar {
        flex-direction: row;
        gap: 1rem;
        padding: 2rem 1.5rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .stat-unit {
        font-size: 1.1rem;
    }
    
    .stat-label {
        font-size: 0.65rem;
    }
    
    .stat-number-container {
        height: 2rem;
    }
    
    .site-footer-content {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
}

@media (max-width: 768px) {
    section {
        padding: 4rem 1.5rem;
    }
    
    .logo img {
        max-width: 250px;
    }
    
    .tagline {
        font-size: 1.5rem;
    }
    
    h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
        margin: -1rem auto 2rem;
    }
    
    .statement-line {
        font-size: clamp(1rem, 4vw, 1.5rem);
        line-height: 1.4;
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
    
    .statement-content {
        max-width: 98%;
    }
    
    .cinematic-statement {
        min-height: 80vh;
        min-height: 80dvh;
        padding: 3rem 0.5rem;
    }
    
    .cinematic-statement:first-of-type {
        min-height: 30vh;
        min-height: 30dvh;
    }
    
    .partnership-logo {
        max-width: 200px;
    }
    
    .partnership-video-container {
        padding: 0 0.5rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .news-section {
        padding: 6rem 2rem;
    }
    
    .news-carousel {
        padding: 0;
    }
    
    .news-carousel-track {
        gap: 0;
    }
    
    .news-card {
        flex: 0 0 100%;
        min-width: 100%;
    }
    
    .news-card-content {
        padding: 1.5rem;
        padding-bottom: 2.5rem;
    }
    
    .news-card-title {
        font-size: 1.3rem;
    }
    
    .contact-section {
        padding: 6rem 1.5rem;
    }
    
    .contact-email {
        font-size: 1.4rem;
        padding: 1rem 2rem;
    }
    
    .social-link {
        width: 50px;
        height: 50px;
    }
    
    .social-link svg {
        width: 20px;
        height: 20px;
    }
    
    .investors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .investor-item {
        min-height: 120px;
        padding: 1.5rem;
    }
    
    .investor-logo {
        max-width: 140px;
    }
}

