/* MNZCC - Responsive Styles */

/* ============================================
   REDUCED MOTION - Accessibility
   ============================================ */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .reveal,
    .reveal-left,
    .reveal-right,
    .reveal-scale,
    .stagger-children > * {
        opacity: 1;
        transform: none;
    }

    .hero-bg img {
        transform: scale(1) !important;
    }

    .hero-decor-1 {
        animation: none;
    }

    html {
        scroll-behavior: auto;
    }

    .hero-video {
        display: none !important;
    }

    .hero-poster {
        display: block !important;
    }

    .timeline-progress {
        transition: none;
    }

    .map-svg .flight-path {
        animation: none;
    }

    .live-pulse {
        animation: none;
    }

    .tier-value-badge {
        animation: none;
    }

    .spotlight-carousel {
        scroll-behavior: auto;
    }
}

/* ============================================
   MAX-WIDTH: 1200px
   ============================================ */
@media (max-width: 1200px) {
    .footer-top {
        grid-template-columns: 1fr 1fr 1fr;
    }

    .footer-brand {
        grid-column: span 3;
        max-width: 100%;
        margin-bottom: var(--space-md);
    }

    .footer-newsletter {
        grid-column: span 3;
        margin-top: var(--space-md);
    }

    .tiers-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .tier-card:nth-child(4),
    .tier-card:nth-child(5) {
        grid-column: span 1;
    }
}

/* ============================================
   MAX-WIDTH: 1024px
   ============================================ */
@media (max-width: 1024px) {
    :root {
        --space-lg: 2.5rem;
        --space-xl: 4rem;
        --space-xxl: 6rem;
        --space-card-gap: 1.25rem;
    }

    .hero-bg,
    .hero-media {
        width: 50%;
    }

    .hero-content {
        max-width: 55%;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-item:nth-child(2)::after {
        display: none;
    }

    /* Bento grid adapts to 2 columns */
    .events-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .event-card,
    .event-card:not(:first-child) {
        grid-column: span 1;
    }

    .event-card:first-child {
        grid-column: span 2;
        grid-row: span 1;
    }

    .tiers-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .tier-card:last-child {
        grid-column: span 2;
    }

    .news-grid {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }

    .cta-inner {
        grid-template-columns: 1fr;
    }

    .cta-image {
        order: -1;
        max-width: 500px;
    }

    .timeline {
        padding: var(--space-md) 0;
    }

    .timeline-item {
        grid-template-columns: 70px 1fr;
        gap: var(--space-md);
        margin-bottom: var(--space-lg);
    }

    .timeline-item:nth-child(odd) .timeline-content,
    .timeline-item:nth-child(even) .timeline-content {
        grid-column: 2;
        text-align: left;
    }

    .timeline-item:nth-child(odd) .timeline-marker,
    .timeline-item:nth-child(even) .timeline-marker {
        grid-column: 1;
    }

    .timeline-item:nth-child(odd)::after,
    .timeline-item:nth-child(even)::before {
        display: none;
    }

    .timeline-track {
        left: 35px;
    }

    .timeline-marker {
        width: 70px;
        height: 70px;
    }

    .timeline-content {
        padding: var(--space-md);
    }

    .spotlight-slide {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
        padding: var(--space-sm);
    }

    .spotlight-portrait {
        max-width: 240px;
        margin: 0 auto;
    }

    .spotlight-content {
        text-align: center;
    }

    .spotlight-quote {
        font-size: 1.25rem;
        border-left: none;
        padding-left: 0;
        border-top: 4px solid var(--color-gold);
        padding-top: var(--space-md);
    }

    .map-stats {
        gap: var(--space-md);
        flex-direction: column;
        align-items: center;
    }

    .map-stat {
        min-width: 200px;
        width: 100%;
        max-width: 300px;
    }

    .tier-comparison-panel {
        padding: var(--space-md);
    }
}

/* ============================================
   MAX-WIDTH: 768px
   ============================================ */
@media (max-width: 768px) {
    :root {
        --space-lg: 2rem;
        --space-xl: 3rem;
        --space-xxl: 5rem;
        --space-card-gap: 1rem;
    }

    .container {
        padding: 0 var(--space-sm);
    }

    .nav-links,
    .nav-cta {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }

    .hero {
        min-height: auto;
        padding: var(--space-xxl) 0 var(--space-lg);
    }

    .hero-bg,
    .hero-media {
        position: absolute;
        width: 100%;
        height: 45%;
        top: auto;
        bottom: 0;
        clip-path: polygon(0 20%, 100% 0, 100% 100%, 0% 100%);
    }

    .hero-content {
        max-width: 100%;
        padding-bottom: 220px;
        padding-top: var(--space-xl);
    }

    .hero-text {
        font-size: 1rem;
    }

    .hero-scroll {
        display: none;
    }

    .section-header {
        margin-bottom: var(--space-lg);
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-sm);
    }

    .stat-item {
        padding: var(--space-sm);
    }

    .stat-item::after {
        display: none;
    }

    /* Single column for mobile bento grid */
    .events-grid {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }

    .event-card,
    .event-card:first-child,
    .event-card:not(:first-child) {
        grid-column: span 1;
    }

    .tiers-grid {
        grid-template-columns: 1fr;
        gap: var(--space-sm);
    }

    .tier-card,
    .tier-card:last-child {
        grid-column: span 1;
        padding: var(--space-md);
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-md);
    }

    .footer-brand,
    .footer-newsletter {
        grid-column: span 2;
    }

    .footer-bottom {
        flex-direction: column;
        gap: var(--space-sm);
        text-align: center;
    }

    .hero-video-toggle {
        bottom: 1rem;
        right: 1rem;
        width: 40px;
        height: 40px;
    }

    .story-intro {
        margin-bottom: var(--space-lg);
    }

    .timeline-item {
        grid-template-columns: 50px 1fr;
        gap: var(--space-sm);
    }

    .timeline-track {
        left: 25px;
    }

    .timeline-marker {
        width: 50px;
        height: 50px;
    }

    .timeline-year {
        font-size: 0.75rem;
    }

    .timeline-content {
        padding: var(--space-sm);
    }

    .timeline-title {
        font-size: 1rem;
    }

    .timeline-text {
        font-size: 0.875rem;
    }

    .audio-toggle {
        bottom: 1rem;
        left: 1rem;
        padding: 0.5rem 0.75rem;
        font-size: 0.75rem;
    }

    .audio-panel {
        left: 1rem;
        right: 1rem;
        bottom: 4rem;
    }

    .tier-selector {
        flex-wrap: wrap;
        gap: 0.25rem;
        padding: 0.25rem;
    }

    .tier-selector button {
        flex: 1 1 45%;
        padding: 0.75rem 0.5rem;
        font-size: 0.75rem;
    }

    .spotlight-slide {
        padding: 0;
    }

    .spotlight-portrait {
        max-width: 200px;
    }

    .spotlight-controls {
        gap: var(--space-sm);
    }

    .spotlight-prev,
    .spotlight-next {
        width: 40px;
        height: 40px;
    }
}

/* ============================================
   MAX-WIDTH: 480px
   ============================================ */
@media (max-width: 480px) {
    :root {
        --space-lg: 1.5rem;
        --space-xl: 2.5rem;
        --space-xxl: 4rem;
    }

    h1 {
        font-size: clamp(2rem, 8vw, 3rem);
    }

    h2 {
        font-size: clamp(1.75rem, 6vw, 2.5rem);
    }

    .btn {
        width: 100%;
        justify-content: center;
        padding: 1rem 1.5rem;
    }

    .hero-content {
        padding-bottom: 180px;
    }

    .hero-actions {
        flex-direction: column;
        gap: var(--space-sm);
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 0;
    }

    .stat-item {
        padding: var(--space-sm) var(--space-xs);
    }

    .stat-number {
        font-size: clamp(1.75rem, 6vw, 2.5rem);
    }

    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--space-sm);
    }

    .news-item {
        grid-template-columns: 90px 1fr;
        gap: var(--space-sm);
    }

    .cta-features {
        grid-template-columns: 1fr;
        gap: var(--space-xs);
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }

    .footer-brand,
    .footer-nav,
    .footer-newsletter {
        grid-column: span 1;
    }

    .footer-nav {
        margin-top: 0;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-input {
        border-right: 1px solid rgba(255, 255, 255, 0.1);
    }

    .spotlight-quote {
        font-size: 1rem;
        line-height: 1.5;
    }

    .spotlight-author-name {
        font-size: 1rem;
    }

    .spotlight-author-role {
        font-size: 0.75rem;
    }

    .spotlight-story {
        font-size: 0.875rem;
    }

    .countdown-unit {
        min-width: 38px;
        padding: 0.375rem 0.375rem;
    }

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

    .countdown-label {
        font-size: 0.5rem;
    }

    .event-countdown {
        gap: 0.25rem;
    }

    .event-urgency {
        font-size: 0.6875rem;
        padding: 0.25rem 0.5rem;
    }

    .timeline-stat {
        flex-direction: column;
        gap: var(--space-sm);
    }

    .tier-benefits {
        padding: 0;
    }

    .tier-benefit {
        font-size: 0.875rem;
        padding: 0.5rem 0;
    }

    .tier-price {
        font-size: 1.5rem;
    }
}
