:root {
    --bg-color: #050505;
    --text-primary: #FFFFFF;
    --text-muted: #888888;
    --accent: #FF4D00; /* Vibrant Orange */
    --accent-hover: #ff6600;
    --accent-blue: #00B4D8;
    --accent-purple: #7B2CBF;
    --accent-pink: #FF006E;
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.05);
    --glass-blur: blur(20px);
}

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

html {
    scroll-behavior: smooth;
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: var(--font-body);
    overflow-x: hidden;
}

body {
    overflow-x: hidden;
}

/* Custom Cursor */
.cursor-glow {
    position: fixed;
    top: 0;
    left: 0;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 77, 0, 0.15) 0%, transparent 70%);
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 9999;
    mix-blend-mode: screen;
    transition: transform 0.1s ease-out;
}

/* Typography */
h1, h2, h3, h4, .giant-text {
    font-family: var(--font-heading);
    text-transform: uppercase;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    background: rgba(5, 5, 5, 0.8);
    backdrop-filter: var(--glass-blur);
    border-bottom: 1px solid var(--glass-border);
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.2rem;
    letter-spacing: 1px;
}

.logo img {
    height: 30px;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--accent);
}

.btn-nav {
    background: transparent;
    color: var(--accent);
    border: 1px solid var(--accent);
    padding: 10px 20px;
    text-decoration: none;
    font-family: var(--font-heading);
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-nav:hover {
    background: var(--accent);
    color: #000;
    box-shadow: 0 0 15px rgba(255, 77, 0, 0.5);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 0 5%;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-bg .bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
    filter: grayscale(80%) contrast(1.2);
}

.overlay-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 0%, var(--bg-color) 100%), 
                linear-gradient(to right, var(--bg-color) 20%, transparent 100%);
}

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

.badge-party {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(255, 77, 0, 0.1);
    border: 1px solid rgba(255, 77, 0, 0.3);
    color: var(--accent);
    font-family: var(--font-heading);
    font-weight: 600;
    border-radius: 20px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.giant-text {
    font-size: clamp(2rem, 10vw, 8rem);
    line-height: 0.9;
    font-weight: 900;
    letter-spacing: -2px;
    margin-bottom: 10px;
    margin-top: 80px;
    background: linear-gradient(to right, #fff, #888);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    overflow: visible;
}

.sub-giant {
    font-size: clamp(1rem, 4vw, 2.5rem);
    color: var(--accent);
    margin-bottom: 20px;
    font-weight: 800;
    letter-spacing: -1px;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 600px;
    margin-bottom: 40px;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    gap: 20px;
    margin-bottom: 60px;
}

.btn-primary-neon {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--accent);
    color: #000;
    padding: 15px 30px;
    font-family: var(--font-heading);
    font-weight: 800;
    text-transform: uppercase;
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.3s;
    box-shadow: 0 0 20px rgba(255, 77, 0, 0.4);
}

.btn-primary-neon:hover {
    background: var(--accent-hover);
    box-shadow: 0 0 40px rgba(255, 77, 0, 0.8);
    transform: translateY(-2px);
}

.btn-outline-glass {
    display: flex;
    align-items: center;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: var(--glass-blur);
    color: #fff;
    padding: 15px 30px;
    font-family: var(--font-heading);
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.3s;
}

.btn-outline-glass:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.floating-indicators {
    display: flex;
    gap: 30px;
}

.indicator {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-muted);
    background: var(--glass-bg);
    padding: 10px 15px;
    border-radius: 4px;
    border: 1px solid var(--glass-border);
}

.indicator i {
    color: var(--accent);
    width: 18px;
    height: 18px;
}

/* Impact Section */
.impact-section {
    padding: 100px 0;
    position: relative;
}

.marquee-container {
    width: 100%;
    overflow: hidden;
    background: var(--accent);
    color: #000;
    padding: 20px 0;
    margin-bottom: 80px;
    transform: rotate(-2deg) scale(1.05);
}

.marquee-content {
    display: flex;
    white-space: nowrap;
    animation: marquee 20s linear infinite;
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 900;
}

.marquee-content span {
    margin-right: 30px;
}

.marquee-content .star {
    margin-right: 30px;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    padding: 0 5%;
}

.metric-box {
    text-align: center;
    padding: 40px 20px;
    border: 1px solid var(--glass-border);
    background: var(--glass-bg);
    transition: transform 0.3s;
}

.metric-box:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 77, 0, 0.3);
}

.metric-number {
    font-size: 4rem;
    font-family: var(--font-heading);
    font-weight: 900;
    color: var(--accent);
    margin-bottom: 10px;
    line-height: 1;
}

.metric-label {
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--text-muted);
    letter-spacing: 2px;
}

/* Common Section Headers */
.section-header {
    margin-bottom: 60px;
    padding: 0 5%;
}

.section-title {
    font-size: clamp(1.8rem, 8vw, 4rem);
    line-height: 1.1;
    margin-bottom: 10px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--accent);
    font-family: var(--font-heading);
}

/* Community Section */
.community-section {
    padding: 100px 0;
}

.mosaic-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: minmax(250px, auto);
    gap: 20px;
    padding: 0 5%;
}

.mosaic-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 40px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.mosaic-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 77, 0, 0.5);
    transform: scale(1.02);
}

.card-large {
    grid-column: span 2;
    grid-row: span 2;
    background: linear-gradient(135deg, rgba(255,77,0,0.1), transparent);
}

.card-wide {
    grid-column: span 3;
}

.card-icon i {
    width: 40px;
    height: 40px;
    color: var(--accent);
    margin-bottom: 20px;
}

.mosaic-card h3 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.mosaic-card p {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.5;
}

.card-content-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.card-img-small {
    width: 300px;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    filter: grayscale(50%);
    transition: filter 0.3s;
}

.mosaic-card:hover .card-img-small {
    filter: grayscale(0%);
}

/* Ecosystem Section — 3D Global Network */
.ecosystem-section {
    padding: 100px 0 80px;
    background: radial-gradient(ellipse at 50% 30%, rgba(255, 107, 0, 0.06) 0%, transparent 55%),
                #000000;
    position: relative;
    overflow: hidden;
}

.ecosystem-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 80%, rgba(255, 179, 71, 0.04) 0%, transparent 40%),
                radial-gradient(circle at 80% 20%, rgba(255, 107, 0, 0.05) 0%, transparent 35%);
    pointer-events: none;
}

.ecosystem-stage {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}

.ecosystem-counter {
    text-align: center;
    margin-bottom: 24px;
    position: relative;
    z-index: 3;
}

.ecosystem-counter-label {
    display: block;
    font-family: var(--font-heading);
    font-size: clamp(0.75rem, 2vw, 0.95rem);
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.ecosystem-counter-value {
    display: block;
    font-family: var(--font-heading);
    font-size: clamp(2rem, 6vw, 3.5rem);
    font-weight: 900;
    color: #ffffff;
    text-shadow: 0 0 30px rgba(255, 107, 0, 0.6), 0 0 60px rgba(255, 179, 71, 0.25);
    line-height: 1;
}

.ecosystem-canvas-wrap {
    position: relative;
    width: 100%;
    height: min(72vh, 680px);
    min-height: 380px;
    border-radius: 12px;
    border: 1px solid rgba(255, 107, 0, 0.15);
    background: radial-gradient(ellipse at center, rgba(255, 107, 0, 0.04) 0%, rgba(0, 0, 0, 0.95) 70%);
    overflow: hidden;
    box-shadow: 0 0 80px rgba(255, 107, 0, 0.08), inset 0 0 60px rgba(0, 0, 0, 0.8);
    cursor: grab;
    touch-action: none;
}

.ecosystem-canvas-wrap:active {
    cursor: grabbing;
}

#ecosystem-canvas {
    display: block;
    width: 100%;
    height: 100%;
    touch-action: none;
    position: relative;
    z-index: 1;
}

.ecosystem-metrics {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 2;
}

.eco-metric {
    position: absolute;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 107, 0, 0.2);
    border-radius: 8px;
    min-width: 130px;
    animation: ecoFloat 6s ease-in-out infinite;
}

.eco-metric--tl { top: 18%; left: 2%; animation-delay: 0s; }
.eco-metric--tr { top: 22%; right: 2%; animation-delay: -1.2s; }
.eco-metric--ml { top: 50%; left: 0; transform: translateY(-50%); animation-delay: -2.4s; }
.eco-metric--mr { top: 48%; right: 0; transform: translateY(-50%); animation-delay: -3.6s; }
.eco-metric--bl { bottom: 16%; left: 8%; animation-delay: -4.8s; }

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

.eco-metric--ml { animation-name: ecoFloatMl; }
.eco-metric--mr { animation-name: ecoFloatMr; }

@keyframes ecoFloatMl {
    0%, 100% { transform: translateY(-50%); }
    50% { transform: translateY(calc(-50% - 8px)); }
}

@keyframes ecoFloatMr {
    0%, 100% { transform: translateY(-50%); }
    50% { transform: translateY(calc(-50% - 8px)); }
}

.eco-metric-value {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 900;
    color: #ffb347;
    line-height: 1.2;
}

.eco-metric-label {
    display: block;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin-top: 4px;
}

.city-tooltip {
    position: absolute;
    z-index: 5;
    transform: translate(-50%, -100%);
    padding: 12px 16px;
    background: rgba(10, 10, 15, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 179, 71, 0.35);
    border-radius: 8px;
    pointer-events: none;
    white-space: nowrap;
    box-shadow: 0 8px 32px rgba(255, 107, 0, 0.2);
}

.city-tooltip-name {
    display: block;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 4px;
}

.city-tooltip-stat {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.city-tooltip-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.city-tag {
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 3px 8px;
    background: rgba(255, 107, 0, 0.15);
    border: 1px solid rgba(255, 107, 0, 0.3);
    color: #ffb347;
    border-radius: 20px;
}

.city-panel {
    position: absolute;
    top: 50%;
    right: 5%;
    transform: translateY(-50%);
    z-index: 12;
    width: min(320px, 90vw);
    padding: 28px 24px;
    background: rgba(8, 8, 12, 0.88);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 107, 0, 0.25);
    border-radius: 12px;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.6), 0 0 40px rgba(255, 107, 0, 0.12);
}

.city-panel-close {
    position: absolute;
    top: 12px;
    right: 14px;
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    padding: 4px 8px;
    transition: color 0.2s;
}

.city-panel-close:hover {
    color: #ffb347;
}

.city-panel-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 20px;
    padding-right: 24px;
}

.city-panel-grid {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.city-stat {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 12px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.city-stat span {
    font-size: 0.78rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.city-stat strong {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 800;
    color: #ffb347;
    text-align: right;
}

.city-stat em {
    display: block;
    font-style: normal;
    font-size: 0.7rem;
    font-weight: 600;
    color: #ff6b00;
}

.ecosystem-hint {
    text-align: center;
    margin-top: 16px;
    font-size: 0.8rem;
    color: var(--text-muted);
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Legacy dashboard styles (events page compatibility) */
.dashboard-wrapper {
    display: flex;
    gap: 40px;
    padding: 0 5%;
    margin: 0 auto;
    max-width: 1200px;
}

.dashboard-sidebar {
    width: 300px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.dash-item {
    padding: 20px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    cursor: pointer;
    font-family: var(--font-heading);
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s;
}

.dash-item.active, .dash-item:hover {
    background: var(--accent);
    color: #000;
    border-color: var(--accent);
}

.dashboard-main {
    flex-grow: 1;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 40px;
    position: relative;
}

.dash-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.pulse-dot {
    width: 12px;
    height: 12px;
    background: var(--accent);
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(255, 77, 0, 0.7);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(255, 77, 0, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(255, 77, 0, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 77, 0, 0); }
}

.dash-chart {
    height: 300px;
    display: flex;
    align-items: flex-end;
    gap: 20px;
    justify-content: space-around;
}

.bar-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    height: 100%;
    justify-content: flex-end;
    width: 100%;
}

.bar {
    width: 100%;
    max-width: 60px;
    border-radius: 4px 4px 0 0;
    transition: height 1s ease-out;
}

.bar-wrap span {
    font-family: var(--font-heading);
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 600;
}

/* Partners Section */
.partners-section {
    padding: 100px 0;
}

.partner-showcase {
    padding: 0 5%;
}

.partner-card {
    display: flex;
    align-items: center;
    gap: 60px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 60px;
    position: relative;
    overflow: hidden;
}

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

.partner-logo {
    flex-shrink: 0;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    width: 250px;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.partner-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.partner-tag {
    display: inline-block;
    color: var(--accent);
    font-family: var(--font-heading);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    font-weight: 600;
}

.partner-info h3 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.partner-info p {
    font-size: 1.2rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 600px;
}

.btn-text-link {
    color: var(--text-primary);
    text-decoration: none;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-transform: uppercase;
    transition: color 0.3s;
}

.btn-text-link:hover {
    color: var(--accent);
}

/* Success Stories */
.stories-section {
    padding: 100px 0;
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    padding: 0 5%;
}

.story-card {
    position: relative;
    group: hover;
    cursor: pointer;
}

.story-img-wrapper {
    width: 100%;
    height: 500px;
    overflow: hidden;
    position: relative;
}

.story-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: all 0.5s ease;
}

.story-card:hover .story-img-wrapper img {
    filter: grayscale(0%);
    transform: scale(1.05);
}

.story-content {
    position: absolute;
    bottom: -30px;
    left: 30px;
    right: 30px;
    background: var(--bg-color);
    padding: 30px;
    border: 1px solid var(--glass-border);
    transition: transform 0.3s ease;
}

.story-card:hover .story-content {
    transform: translateY(-10px);
    border-color: rgba(255, 77, 0, 0.3);
}

.story-category {
    color: var(--accent);
    font-family: var(--font-heading);
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 10px;
    display: block;
}

.story-content h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.story-content p {
    color: var(--text-muted);
}

/* Events Timeline */
.events-timeline-section {
    padding: 150px 0;
}

.timeline {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 5%;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: calc(5% + 7px);
    top: 0;
    height: 100%;
    width: 2px;
    background: var(--glass-border);
}

.timeline-item {
    position: relative;
    padding-left: 60px;
    margin-bottom: 60px;
}

.time-dot {
    position: absolute;
    left: 0;
    top: 5px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--bg-color);
    border: 2px solid var(--accent);
    z-index: 2;
    transition: background 0.3s;
}

.timeline-item:hover .time-dot {
    background: var(--accent);
    box-shadow: 0 0 15px var(--accent);
}

.time-date {
    font-family: var(--font-heading);
    color: var(--text-muted);
    font-weight: 800;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.time-content {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 30px;
    transition: transform 0.3s;
}

.timeline-item:hover .time-content {
    transform: translateX(10px);
    border-color: rgba(255, 77, 0, 0.3);
}

.time-content h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.time-content p {
    color: var(--text-muted);
    margin-bottom: 15px;
}

.tag {
    display: inline-block;
    padding: 5px 12px;
    background: rgba(255, 255, 255, 0.1);
    font-size: 0.8rem;
    text-transform: uppercase;
    font-family: var(--font-heading);
    border-radius: 20px;
}

/* Footer */
.modern-footer {
    border-top: 1px solid var(--glass-border);
    padding: 80px 5% 40px;
    background: #020202;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 80px;
}

.footer-brand p {
    color: var(--text-muted);
    margin-top: 20px;
}

.footer-links h4, .footer-social h4 {
    font-family: var(--font-heading);
    color: var(--accent);
    margin-bottom: 20px;
    text-transform: uppercase;
}

.footer-links a {
    display: block;
    color: var(--text-muted);
    text-decoration: none;
    margin-bottom: 12px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--text-primary);
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    color: var(--text-primary);
    background: var(--glass-bg);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid var(--glass-border);
    transition: all 0.3s;
}

.social-icons a:hover {
    background: var(--accent);
    color: #000;
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
    border-top: 1px solid var(--glass-border);
    padding-top: 40px;
}

/* Accessibility & Touch Targets */
button,
a.btn-nav,
a.btn-primary-neon,
a.btn-outline-glass,
.social-icons a,
.footer-links a,
.dash-item {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.footer-links a {
    justify-content: flex-start;
}

/* Responsive */
@media (max-width: 1024px) {
    .mosaic-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .card-wide, .card-large {
        grid-column: span 2;
    }
    .dashboard-wrapper {
        flex-direction: column;
    }
    .dashboard-sidebar {
        width: 100%;
        flex-direction: row;
        overflow-x: auto;
    }
    .dash-item {
        flex-shrink: 0;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    .cursor-glow {
        display: none;
    }
    .hero {
        padding-top: 120px;
        padding-bottom: 60px;
        align-items: flex-start;
    }
    .giant-text {
        font-size: clamp(1.5rem, 10vw, 3rem);
    }
    .sub-giant {
        font-size: clamp(0.9rem, 4vw, 1.5rem);
    }
    .hero-actions {
        flex-direction: column;
        gap: 15px;
    }
    .floating-indicators {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    .section-header {
        margin-bottom: 30px;
    }
    .section-title {
        font-size: clamp(1.5rem, 8vw, 2.5rem);
    }
    .ecosystem-section {
        padding: 50px 0 40px;
    }
    .ecosystem-canvas-wrap {
        height: min(55vh, 420px);
        min-height: 320px;
    }
    .eco-metric {
        padding: 8px 10px;
        min-width: 90px;
    }
    .eco-metric-value {
        font-size: 0.95rem;
    }
    .eco-metric-label {
        font-size: 0.55rem;
    }
    .eco-metric--tl { top: 12%; left: 1%; }
    .eco-metric--tr { top: 12%; right: 1%; }
    .eco-metric--ml { display: none; }
    .eco-metric--mr { display: none; }
    .eco-metric--bl { bottom: 10%; left: 4%; }
    .city-panel {
        top: auto;
        bottom: 12px;
        right: 50%;
        transform: translateX(50%);
        width: calc(100% - 24px);
        max-width: 360px;
    }
    .city-tooltip {
        white-space: normal;
        max-width: 200px;
    }
    .ecosystem-hint {
        font-size: 0.65rem;
    }
    .impact-section, .community-section, .ecosystem-section, .partners-section, .stories-section {
        padding: 50px 0;
    }
    .events-timeline-section {
        padding: 60px 0;
    }
    .metric-box {
        padding: 15px 10px;
    }
    .metric-number {
        font-size: 2rem;
    }
    .mosaic-grid {
        grid-template-columns: 1fr;
    }
    .card-large, .card-wide {
        grid-column: span 1;
        grid-row: auto;
    }
    .mosaic-card {
        padding: 25px;
    }
    .card-content-flex {
        flex-direction: column;
    }
    .card-img-small {
        width: 100%;
        max-width: 100%;
        height: auto;
    }
    .dashboard-main {
        padding: 20px;
    }
    .dash-chart {
        height: 200px;
    }
    .partner-card {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
        gap: 30px;
    }
    .partner-logo {
        width: 100%;
        max-width: 200px;
        height: auto;
    }
    .partner-info h3 {
        font-size: 1.5rem;
    }
    .partner-card::before {
        width: 100%;
        height: 5px;
        top: 0; left: 0;
    }
    .timeline::before {
        left: calc(5% + 7px);
    }
    .timeline-item {
        padding-left: 40px;
    }
    .time-dot {
        left: 0;
    }
    .time-content {
        padding: 15px;
    }
    .time-content h3 {
        font-size: 1.2rem;
    }
    .modern-footer {
        padding: 40px 5% 20px;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}