/* ========================================
   G MEDIA - CINEMATIC 3D EXPERIENCE
   Premium. Immersive. Unforgettable.
   ======================================== */

/* ----------------------------------------
   CSS CUSTOM PROPERTIES
   ---------------------------------------- */
:root {
    /* Colors */
    --black: #050505;
    --black-soft: #0a0a0a;
    --black-lighter: #111111;
    --white: #ffffff;
    --white-soft: #f0f0f0;
    --gray: #888888;
    --gray-dark: #333333;

    /* Accent - Extracted from logo */
    --cyan: #00d4ff;
    --cyan-glow: rgba(0, 212, 255, 0.5);
    --blue: #0077b6;
    --blue-deep: #023e8a;
    --navy: #0a4b78;

    /* Secondary Accent - Gold/Warm */
    --gold: #ffa726;
    --gold-light: #ffcc80;
    --gold-glow: rgba(255, 167, 38, 0.5);

    /* Gradients */
    --gradient: linear-gradient(135deg, var(--cyan) 0%, var(--blue) 50%, var(--blue-deep) 100%);
    --gradient-text: linear-gradient(90deg, var(--cyan) 0%, var(--blue) 100%);
    --gradient-warm: linear-gradient(135deg, var(--gold) 0%, #ff7043 100%);

    /* Typography */
    --font: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Sizing */
    --container: 90vw;
    --container-max: 1600px;

    /* Transitions */
    --ease: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-out: cubic-bezier(0.33, 1, 0.68, 1);
    --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

/* Floating Particle Animation */
@keyframes floatParticle {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    25% {
        transform: translate(15px, -20px) rotate(90deg);
    }

    50% {
        transform: translate(-10px, -40px) rotate(180deg);
    }

    75% {
        transform: translate(20px, -15px) rotate(270deg);
    }
}

.floating-particle {
    pointer-events: none;
}

/* ----------------------------------------
   RESET & BASE
   ---------------------------------------- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

html.lenis {
    height: auto;
}

body {
    font-family: var(--font);
    background: var(--black);
    color: var(--white);
    overflow-x: hidden;
    cursor: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    color: inherit;
    text-decoration: none;
    cursor: none;
}

button {
    font-family: inherit;
    cursor: none;
    border: none;
    background: none;
    color: inherit;
}

img {
    display: block;
    max-width: 100%;
}

::selection {
    background: var(--cyan);
    color: var(--black);
}

/* ----------------------------------------
   CUSTOM CURSOR
   ---------------------------------------- */
.cursor {
    pointer-events: none;
    position: fixed;
    z-index: 10000;
    mix-blend-mode: difference;
}

.cursor-dot {
    position: fixed;
    width: 8px;
    height: 8px;
    background: var(--white);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: transform 0.1s var(--ease);
}

.cursor-ring {
    position: fixed;
    width: 40px;
    height: 40px;
    border: 1px solid var(--white);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.3s var(--ease), height 0.3s var(--ease), border-color 0.3s;
    opacity: 0.5;
}

.cursor.hover .cursor-ring {
    width: 80px;
    height: 80px;
    border-color: var(--cyan);
}

.cursor.hover .cursor-dot {
    transform: translate(-50%, -50%) scale(2);
    background: var(--cyan);
}

/* ----------------------------------------
   NOISE OVERLAY
   ---------------------------------------- */
.noise-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    pointer-events: none;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

/* ----------------------------------------
   LOADING SCREEN
   ---------------------------------------- */
.loader {
    position: fixed;
    inset: 0;
    z-index: 9998;
    background: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
}

.loader-content {
    text-align: center;
}

.loader-logo {
    width: clamp(100px, 20vw, 180px);
    margin: 0 auto;
    animation: pulse 2s ease-in-out infinite;
}

.loader-logo img {
    width: 100%;
    height: auto;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

.loader-bar {
    width: 200px;
    height: 2px;
    background: var(--gray-dark);
    margin: 30px auto;
    overflow: hidden;
}

.loader-progress {
    width: 0%;
    height: 100%;
    background: var(--gradient);
    transition: width 0.3s var(--ease);
}

.loader-text {
    font-size: 12px;
    letter-spacing: 0.3em;
    color: var(--gray);
    text-transform: uppercase;
}

/* ----------------------------------------
   THREE.JS CANVAS
   ---------------------------------------- */
.canvas-container {
    position: fixed;
    inset: 0;
    z-index: 0;
}

.canvas-container canvas {
    display: block;
}

/* ----------------------------------------
   NAVIGATION
   ---------------------------------------- */
.nav {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 20px 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: transparent;
}

.nav-logo img {
    height: 100px;
}

.nav-menu {
    display: flex;
    gap: 50px;
}

.nav-link {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.15em;
    position: relative;
    padding: 10px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--white);
    transition: width 0.4s var(--ease);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-cta {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.1em;
    padding: 15px 30px;
    border: 1px solid currentColor;
    position: relative;
    overflow: hidden;
}

.nav-cta span {
    position: relative;
    z-index: 1;
}

.nav-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--white);
    transform: translateY(100%);
    transition: transform 0.4s var(--ease);
}

.nav-cta:hover::before {
    transform: translateY(0);
}

.nav-cta:hover {
    color: var(--black);
}

/* Mobile Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 101;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: all 0.3s var(--ease);
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ----------------------------------------
   HERO SECTION
   ---------------------------------------- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 50px;
    z-index: 1;
}

.hero-content {
    text-align: center;
    max-width: 1200px;
}

.hero-eyebrow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.hero-eyebrow .line {
    width: 50px;
    height: 1px;
    background: var(--gray);
}

.hero-eyebrow .text {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.3em;
    color: var(--gray);
}

.hero-title {
    line-height: 0.9;
    margin-bottom: 40px;
}

.title-line {
    overflow: hidden;
}

.hero-title .split-text {
    display: inline-block;
    font-size: clamp(60px, 12vw, 180px);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

.gradient-text {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-sub {
    font-size: clamp(14px, 2vw, 18px);
    font-weight: 400;
    letter-spacing: 0.2em;
    color: var(--gray);
    margin-bottom: 60px;
}

.hero-scroll {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--cyan), transparent);
    animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {

    0%,
    100% {
        transform: scaleY(1);
        opacity: 1;
    }

    50% {
        transform: scaleY(0.5);
        opacity: 0.5;
    }
}

.hero-scroll span {
    font-size: 10px;
    letter-spacing: 0.3em;
    color: var(--gray);
}

.hero-stats {
    position: absolute;
    bottom: 120px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 60px;
}

.stat {
    text-align: center;
}

.stat-num {
    display: inline;
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 800;
    color: var(--white);
    line-height: 1;
}

.stat-suffix {
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 700;
    color: var(--white);
}

.stat-label {
    display: block;
    font-size: 11px;
    letter-spacing: 0.25em;
    color: var(--gray);
    margin-top: 8px;
}

/* ----------------------------------------
   WORK SECTION - HORIZONTAL SCROLL
   ---------------------------------------- */
.work {
    position: relative;
    z-index: 1;
    background: var(--black);
    overflow: hidden;
}

.work-header {
    padding: 80px 50px 40px;
}

.work-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.work-track {
    display: flex;
    gap: 40px;
    padding: 0 50px;
}

.work-item {
    flex-shrink: 0;
    width: 400px;
    display: flex;
    flex-direction: column;
}

.work-image {
    position: relative;
    width: 100%;
    height: 380px;
    overflow: hidden;
    margin-bottom: 25px;
}

.work-image-inner {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s var(--ease);
}

.work-item:hover .work-image-inner {
    transform: scale(1.1);
}

.work-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 50%, rgba(0, 0, 0, 0.7) 100%);
}

.work-info {
    flex: 1;
}

.work-number {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: var(--cyan);
    display: block;
    margin-bottom: 15px;
}

.work-title {
    font-size: 28px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.work-meta {
    font-size: 11px;
    letter-spacing: 0.15em;
    color: var(--gray);
    margin-bottom: 15px;
}

.work-desc {
    font-size: 14px;
    line-height: 1.6;
    color: var(--gray);
}

.work-progress {
    padding: 20px 50px 40px;
}

.work-progress-bar {
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    position: relative;
}

.work-progress-bar::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: var(--progress, 0%);
    background: var(--gradient);
    transition: width 0.1s linear;
}

/* ----------------------------------------
   MARQUEE
   ---------------------------------------- */
.marquee-section {
    position: relative;
    z-index: 1;
    padding: 30px 0;
    background: var(--black-soft);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
}

.marquee {
    overflow: hidden;
}

.marquee-track {
    display: flex;
    gap: 60px;
    animation: marquee 20s linear infinite;
    width: max-content;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.marquee-track span {
    font-size: clamp(40px, 6vw, 80px);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    white-space: nowrap;
}

.marquee-track span.outline {
    -webkit-text-stroke: 1px var(--gray);
    -webkit-text-fill-color: transparent;
    font-size: clamp(20px, 3vw, 40px);
}

/* ----------------------------------------
   STATS BAR SECTION - 3D FLOATING
   ---------------------------------------- */
.stats-bar {
    position: relative;
    z-index: 1;
    padding: 40px 50px;
    background: var(--black-soft);
    overflow: hidden;
}

.stats-bar-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 25% 50%, rgba(0, 212, 255, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse at 75% 50%, rgba(0, 119, 182, 0.06) 0%, transparent 50%);
}

.stats-container {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    max-width: var(--container-max);
    margin: 0 auto;
}

.stat-item {
    text-align: center;
    padding: 10px 15px;
    transition: transform 0.4s var(--ease);
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 800;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline;
    line-height: 1;
}

.stat-plus {
    font-size: clamp(20px, 3vw, 32px);
    font-weight: 700;
    color: var(--cyan);
}

.stat-text {
    display: block;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.15em;
    color: var(--gray);
    margin-top: 8px;
    line-height: 1.4;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: linear-gradient(180deg, transparent, var(--gray-dark), transparent);
}

/* ----------------------------------------
   VOICES - VERTICAL TIMELINE TESTIMONIALS
   ---------------------------------------- */
.voices {
    position: relative;
    z-index: 1;
    padding: 150px 50px;
    background: var(--black);
    overflow: hidden;
}

.voices-particles {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.voices-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
}

.voices-title {
    text-align: center;
    margin-bottom: 100px;
}

.voices-title-small {
    display: block;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.4em;
    color: var(--gray);
    margin-bottom: 10px;
}

.voices-title-big {
    font-size: clamp(60px, 10vw, 120px);
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
}

.voices-timeline {
    position: relative;
    padding-left: 80px;
}

.voice-line {
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--cyan), var(--blue), transparent);
}

.voice-block {
    position: relative;
    margin-bottom: 60px;
}

.voice-block:last-child {
    margin-bottom: 0;
}

.voice-marker {
    position: absolute;
    left: -80px;
    top: 0;
    width: 40px;
    height: 40px;
    background: var(--black);
    border: 2px solid var(--cyan);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
}

.voice-number {
    font-size: 12px;
    font-weight: 700;
    color: var(--cyan);
    letter-spacing: 0.1em;
}

.voice-content-box {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 35px;
    position: relative;
    transition: all 0.4s var(--ease);
}

.voice-content-box::before {
    content: '';
    position: absolute;
    left: -20px;
    top: 10px;
    width: 18px;
    height: 2px;
    background: var(--cyan);
}

.voice-content-box:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(0, 212, 255, 0.2);
    transform: translateX(10px);
}

.voice-text {
    font-size: 18px;
    line-height: 1.7;
    color: var(--gray);
    margin-bottom: 20px;
    font-style: italic;
}

.voice-text .highlight {
    color: var(--cyan);
    font-weight: 600;
    font-style: normal;
}

.voice-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.voice-name {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--white);
}

.voice-event {
    font-size: 11px;
    letter-spacing: 0.1em;
    color: var(--gray);
    position: relative;
    padding-left: 15px;
}

.voice-event::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--cyan);
}

/* ----------------------------------------
   EVENT TEASER SECTION - PREMIUM BRAND THEME
   ---------------------------------------- */

.event-teaser {
    position: relative;
    z-index: 1;
    min-height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 50px 80px;
    overflow: hidden;
}

/* Premium Dark Background */
.event-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.spiritual-gradient {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 30%, rgba(0, 212, 255, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 70%, rgba(0, 119, 182, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(2, 62, 138, 0.05) 0%, transparent 60%),
        linear-gradient(180deg, #050505 0%, #0a0a12 50%, #050505 100%);
}

/* Floating Particles */
.particles-container {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--cyan);
    border-radius: 50%;
    opacity: 0;
    animation: floatParticle 8s ease-in-out infinite;
}

@keyframes floatParticle {
    0% {
        opacity: 0;
        transform: translateY(100vh) scale(0);
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        transform: translateY(-100px) scale(1);
    }
}

/* Glowing Diyas - Decorative near poster */
.diyas-container {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    padding: 0 15%;
    z-index: 3;
    pointer-events: none;
}

.diya {
    position: relative;
    width: 60px;
    height: 80px;
}

.diya-base {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 25px;
    background: linear-gradient(135deg, #cd7f32 0%, #b8860b 50%, #8b4513 100%);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

.diya-base::before {
    content: '';
    position: absolute;
    top: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 35px;
    height: 10px;
    background: linear-gradient(90deg, #ffd700, #ffaa00, #ffd700);
    border-radius: 50%;
}

.diya-flame {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 35px;
    background: linear-gradient(0deg, #ff6600 0%, #ffcc00 50%, #ffffff 100%);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    animation: flicker 0.5s ease-in-out infinite alternate;
    filter: blur(1px);
}

.flame-inner {
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 10px;
    height: 20px;
    background: linear-gradient(0deg, #ffcc00 0%, #ffffff 100%);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    animation: flicker 0.3s ease-in-out infinite alternate;
}

@keyframes flicker {
    0% {
        transform: translateX(-50%) scaleY(1) scaleX(1);
        opacity: 1;
    }

    50% {
        transform: translateX(-50%) scaleY(1.1) scaleX(0.9);
        opacity: 0.9;
    }

    100% {
        transform: translateX(-50%) scaleY(0.95) scaleX(1.05);
        opacity: 1;
    }
}

.diya-glow {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(255, 200, 0, 0.4) 0%, rgba(255, 150, 0, 0.2) 30%, transparent 70%);
    border-radius: 50%;
    animation: glowPulse 2s ease-in-out infinite;
}

@keyframes glowPulse {

    0%,
    100% {
        opacity: 0.8;
        transform: translateX(-50%) scale(1);
    }

    50% {
        opacity: 1;
        transform: translateX(-50%) scale(1.2);
    }
}

/* Split Layout */
.event-split {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1200px;
    width: 100%;
    align-items: flex-start;
    padding-top: 40px;
}

/* Poster Styling with Diyas */
.event-poster {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 15px;
    perspective: 1000px;
    padding-bottom: 20px;
}

.event-poster .diya {
    position: relative;
    flex-shrink: 0;
    margin-bottom: -10px;
    /* Slight offset to sit at bottom */
}

.poster-frame {
    position: relative;
    max-width: 380px;
    width: 100%;
    border-radius: 12px;
    overflow: visible;
    transform-style: preserve-3d;
    transition: transform 0.1s ease-out;
    will-change: transform;
}

.poster-frame .poster-inner {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow:
        0 25px 80px rgba(0, 0, 0, 0.6),
        0 0 60px rgba(0, 212, 255, 0.2),
        0 0 100px rgba(0, 212, 255, 0.1);
}

.poster-frame img {
    width: 100%;
    height: auto;
    display: block;
}

/* Particle Canvas for Assembly Effect */
.particle-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    border-radius: 12px;
    pointer-events: none;
}

.poster-glow {
    position: absolute;
    inset: -50px;
    background: radial-gradient(ellipse at center, rgba(0, 212, 255, 0.35) 0%, rgba(0, 119, 182, 0.2) 40%, transparent 70%);
    pointer-events: none;
    z-index: -1;
    border-radius: 50%;
}

@keyframes posterGlow {

    0%,
    100% {
        opacity: 0.5;
        transform: scale(1);
    }

    50% {
        opacity: 0.8;
        transform: scale(1.05);
    }
}

/* ========================================
   MYSTICAL SMOKE REVEAL EFFECT
   ======================================== */
.smoke-container {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 20;
    border-radius: 12px;
    overflow: visible;
}

.smoke-layer {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    border-radius: 50%;
    opacity: 1;
}

/* Dense smoke layers - solid dark centers with glowing cyan edges */
.smoke-1 {
    background: radial-gradient(ellipse at center,
            rgba(5, 15, 25, 0.98) 0%,
            rgba(0, 40, 70, 0.9) 30%,
            rgba(0, 100, 150, 0.6) 50%,
            rgba(0, 180, 220, 0.3) 70%,
            transparent 100%);
    transform: translate(-10%, -15%) scale(0.8);
    filter: blur(15px);
    animation: smokeFloat1 12s ease-in-out infinite;
}

.smoke-2 {
    background: radial-gradient(ellipse at center,
            rgba(3, 12, 22, 0.95) 0%,
            rgba(0, 50, 85, 0.85) 35%,
            rgba(0, 120, 170, 0.5) 55%,
            rgba(0, 200, 255, 0.2) 75%,
            transparent 100%);
    transform: translate(15%, 10%) scale(0.9);
    filter: blur(20px);
    animation: smokeFloat2 15s ease-in-out infinite;
}

.smoke-3 {
    background: radial-gradient(ellipse at center,
            rgba(2, 8, 18, 0.99) 0%,
            rgba(0, 30, 55, 0.92) 25%,
            rgba(0, 80, 130, 0.65) 45%,
            rgba(0, 150, 200, 0.35) 65%,
            transparent 100%);
    transform: translate(0, 0) scale(1);
    filter: blur(10px);
    animation: smokeFloat3 18s ease-in-out infinite;
}

.smoke-4 {
    background: radial-gradient(ellipse at center,
            rgba(5, 18, 30, 0.92) 0%,
            rgba(0, 45, 80, 0.82) 30%,
            rgba(0, 110, 160, 0.5) 55%,
            transparent 100%);
    transform: translate(-20%, 15%) scale(0.75);
    filter: blur(18px);
    animation: smokeFloat4 14s ease-in-out infinite;
}

.smoke-5 {
    background: radial-gradient(ellipse at center,
            rgba(4, 14, 26, 0.9) 0%,
            rgba(0, 55, 95, 0.75) 35%,
            rgba(0, 130, 180, 0.4) 60%,
            transparent 100%);
    transform: translate(20%, -10%) scale(0.85);
    filter: blur(22px);
    animation: smokeFloat5 16s ease-in-out infinite;
}

/* Smoke floating animations */
@keyframes smokeFloat1 {

    0%,
    100% {
        transform: translate(-20px, -30px) scale(1.3) rotate(0deg);
    }

    50% {
        transform: translate(-10px, -40px) scale(1.4) rotate(5deg);
    }
}

@keyframes smokeFloat2 {

    0%,
    100% {
        transform: translate(30px, 20px) scale(1.4) rotate(0deg);
    }

    50% {
        transform: translate(40px, 10px) scale(1.5) rotate(-5deg);
    }
}

@keyframes smokeFloat3 {

    0%,
    100% {
        transform: translate(0, 0) scale(1.5) rotate(0deg);
    }

    50% {
        transform: translate(10px, -10px) scale(1.6) rotate(3deg);
    }
}

@keyframes smokeFloat4 {

    0%,
    100% {
        transform: translate(-40px, 30px) scale(1.2) rotate(0deg);
    }

    50% {
        transform: translate(-30px, 40px) scale(1.3) rotate(-3deg);
    }
}

@keyframes smokeFloat5 {

    0%,
    100% {
        transform: translate(20px, -20px) scale(1.6) rotate(0deg);
    }

    50% {
        transform: translate(30px, -30px) scale(1.7) rotate(4deg);
    }
}

/* Event Content */
.event-content {
    position: relative;
    z-index: 1;
    text-align: left;
}

/* Accent Label - Cyan Theme */
.event-accent-label {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 10px 25px;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 50px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.3em;
    color: var(--cyan);
    margin-bottom: 25px;
    backdrop-filter: blur(10px);
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: var(--cyan);
    border-radius: 50%;
    animation: pulse-glow-cyan 2s ease-in-out infinite;
}

@keyframes pulse-glow-cyan {

    0%,
    100% {
        opacity: 1;
        box-shadow: 0 0 0 0 rgba(0, 212, 255, 0.7);
    }

    50% {
        opacity: 0.6;
        box-shadow: 0 0 0 10px rgba(0, 212, 255, 0);
    }
}

/* Gradient Text */
.gold-text {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Event Title */
.event-title {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 30px;
    line-height: 1;
}

.event-title .title-word {
    display: block;
    font-size: clamp(28px, 4vw, 55px);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    line-height: 1;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.event-title .title-year {
    font-size: clamp(50px, 8vw, 100px);
    font-weight: 900;
    letter-spacing: -0.02em;
    margin-top: 5px;
    text-shadow: 0 0 40px rgba(0, 212, 255, 0.4), 0 0 80px rgba(0, 212, 255, 0.2);
}

/* Countdown Timer */
.countdown-wrapper {
    margin-bottom: 30px;
}

.countdown-label {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.2em;
    color: var(--gray);
    text-transform: uppercase;
    margin-bottom: 15px;
}

.countdown {
    display: flex;
    gap: 10px;
    align-items: center;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(0, 212, 255, 0.08);
    border: 1px solid rgba(0, 212, 255, 0.2);
    padding: 15px 20px;
    min-width: 70px;
}

.countdown-num {
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 800;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.countdown-unit {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.1em;
    color: var(--cyan);
    text-transform: uppercase;
    margin-top: 5px;
}

.countdown-separator {
    font-size: 28px;
    font-weight: 700;
    color: var(--cyan);
    opacity: 0.5;
}

/* Event Info Bar - Clean horizontal layout */
.event-info-bar {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 25px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
}

.info-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.info-icon {
    width: 20px;
    height: 20px;
    color: var(--cyan);
    flex-shrink: 0;
}

.info-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.info-label {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gray);
}

.info-value {
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
    letter-spacing: 0.02em;
}

.info-divider {
    width: 1px;
    height: 40px;
    background: linear-gradient(180deg, transparent, rgba(0, 212, 255, 0.3), transparent);
}

/* Highlights Grid - Brand Colors */
.event-highlights {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 30px;
}

.highlight-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    padding: 20px 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    transition: all 0.4s var(--ease);
    position: relative;
    overflow: hidden;
}

.highlight-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s var(--ease);
}

.highlight-card:hover {
    border-color: rgba(0, 212, 255, 0.3);
    transform: translateY(-3px);
}

.highlight-card:hover::before {
    opacity: 1;
}

.highlight-number {
    font-size: clamp(28px, 3vw, 38px);
    font-weight: 800;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.highlight-label {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.15em;
    color: var(--gray);
    text-transform: uppercase;
}

.highlight-icon {
    font-size: 24px;
    color: var(--cyan);
    line-height: 1;
}

.highlight-text {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: var(--white);
    text-align: center;
}

.highlight-names {
    font-size: 11px;
    font-weight: 500;
    color: var(--cyan);
    letter-spacing: 0.08em;
}

.highlight-sub {
    font-size: 10px;
    font-weight: 400;
    color: var(--gray);
    letter-spacing: 0.08em;
}

/* Event CTA Button - Brand Theme */
.event-cta {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 18px 40px;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.15) 0%, rgba(0, 119, 182, 0.15) 100%);
    border: 2px solid var(--cyan);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--white);
    position: relative;
    overflow: hidden;
    transition: all 0.4s var(--ease);
}

.event-cta .cta-glow {
    position: absolute;
    inset: 0;
    background: var(--gradient);
    transform: translateY(100%);
    transition: transform 0.4s var(--ease);
}

.event-cta:hover .cta-glow {
    transform: translateY(0);
}

.event-cta:hover {
    color: var(--black);
}

.event-cta .cta-text {
    position: relative;
    z-index: 1;
}

.event-cta .cta-arrow {
    width: 18px;
    height: 18px;
    position: relative;
    z-index: 1;
    transition: transform 0.4s var(--ease);
}

.event-cta:hover .cta-arrow {
    transform: translateX(5px);
}

.event-cta:hover {
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.4), 0 0 60px rgba(0, 212, 255, 0.2);
}

/* Responsive Event Section */
@media (max-width: 1024px) {
    .event-split {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .event-poster {
        order: -1;
    }

    .poster-frame {
        max-width: 300px;
        transform: none;
    }

    .event-content {
        text-align: center;
    }

    .event-title {
        align-items: center;
    }

    .event-details {
        align-items: center;
    }

    .countdown {
        justify-content: center;
    }

    .diyas-container {
        padding: 0 30px;
    }
}

@media (max-width: 768px) {
    .event-teaser {
        padding: 80px 20px 120px;
    }

    .event-highlights {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .highlight-card {
        padding: 15px 10px;
    }

    .countdown-item {
        padding: 10px 12px;
        min-width: 55px;
    }

    .event-cta {
        padding: 15px 30px;
        font-size: 12px;
    }

    .diya {
        transform: scale(0.7);
    }
}

@media (max-width: 480px) {
    .event-highlights {
        grid-template-columns: 1fr;
    }

    .countdown {
        flex-wrap: wrap;
        gap: 8px;
    }

    .countdown-separator {
        display: none;
    }
}


/* ----------------------------------------
   SECTION LABELS (Shared)
   ---------------------------------------- */
.section-label {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.3em;
    color: var(--gray);
}

.section-label .line {
    width: 40px;
    height: 1px;
    background: var(--gray);
}

.section-label.center {
    justify-content: center;
}

.reveal-text {
    opacity: 0;
    transform: translateY(40px);
}

/* ----------------------------------------
   WORK SECTION - HORIZONTAL SCROLL
   ---------------------------------------- */
.work {
    position: relative;
    z-index: 1;
    background: var(--black-soft);
}

.work-header {
    padding: 80px 50px 40px;
    text-align: center;
}

.section-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

.section-title .split-text {
    font-size: clamp(50px, 10vw, 150px);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    line-height: 0.9;
}

.work-container {
    overflow: visible;
    height: 100vh;
    display: flex;
    align-items: center;
}

.work-track {
    display: flex;
    gap: 50px;
    padding: 30px 50px;
    width: max-content;
    align-items: center;
}

.work-item {
    width: 70vw;
    max-width: 900px;
    flex-shrink: 0;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
    background: var(--black-lighter);
    padding: 30px;
    position: relative;
    overflow: hidden;
}

.work-item::before {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid rgba(255, 255, 255, 0.05);
    pointer-events: none;
}

.work-image {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
}

.work-image-inner {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 1s var(--ease);
}

.work-item:hover .work-image-inner {
    transform: scale(1.1);
}

.work-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, transparent 50%, var(--black-lighter) 100%);
}

.work-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 20px;
}

.work-number {
    font-size: 80px;
    font-weight: 900;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.3;
    line-height: 1;
    margin-bottom: 20px;
}

.work-title {
    font-size: clamp(28px, 3vw, 42px);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    line-height: 1.1;
    margin-bottom: 15px;
}

.work-meta {
    font-size: 11px;
    letter-spacing: 0.2em;
    color: var(--cyan);
    margin-bottom: 20px;
}

.work-desc {
    font-size: 15px;
    font-weight: 300;
    line-height: 1.6;
    color: var(--gray);
}

.work-progress {
    padding: 0 50px 80px;
}

.work-progress-bar {
    width: 100%;
    height: 2px;
    background: var(--gray-dark);
    position: relative;
    overflow: hidden;
}

.work-progress-bar::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: var(--progress, 0%);
    background: var(--gradient);
    transition: width 0.1s linear;
}

/* ----------------------------------------
   STARS SECTION
   ---------------------------------------- */
.stars {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 150px 50px;
    overflow: hidden;
}

.stars-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(0, 212, 255, 0.05) 0%, transparent 70%);
}

.stars-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.stars-list {
    margin: 60px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.star-name {
    overflow: visible;
    padding: 15px 0;
    position: relative;
}

.star-name span {
    display: inline-block;
    font-size: clamp(40px, 8vw, 120px);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    line-height: 1.2;
    -webkit-text-stroke: 1px var(--white);
    -webkit-text-fill-color: transparent;
    transition: all 0.5s var(--ease);
}

.star-name:hover span {
    -webkit-text-fill-color: var(--white);
    text-shadow: 0 0 60px var(--cyan-glow);
}

.stars-sub {
    font-size: clamp(14px, 1.5vw, 18px);
    font-weight: 300;
    letter-spacing: 0.1em;
    color: var(--gray);
    line-height: 1.8;
    margin-top: 40px;
}

/* ----------------------------------------
   FOUNDERS SECTION - NEW DESIGN
   ---------------------------------------- */
.founders {
    position: relative;
    z-index: 1;
    padding: 120px 50px;
    background: var(--black);
    overflow: hidden;
}

.founders::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 50%, rgba(0, 212, 255, 0.05) 0%, transparent 60%);
    pointer-events: none;
}

.founders-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.founders-headline {
    margin-bottom: 80px;
}

.founders-label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.4em;
    color: var(--gray);
    margin-bottom: 15px;
}

.founders-title {
    font-size: clamp(48px, 8vw, 100px);
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1;
}

.founders-row {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 30px;
    margin-bottom: 80px;
}

.founder-card {
    position: relative;
    width: 280px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 40px 30px 30px;
    transition: all 0.5s var(--ease);
}

.founder-card:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-10px);
    border-color: rgba(0, 212, 255, 0.3);
}

.founder-card.featured {
    width: 320px;
    padding: 50px 30px 35px;
    background: rgba(0, 212, 255, 0.05);
    border-color: rgba(0, 212, 255, 0.2);
    z-index: 2;
    transform: translateY(-20px);
}

.founder-card.featured:hover {
    transform: translateY(-30px);
}

.founder-image {
    width: 140px;
    height: 140px;
    margin: 0 auto 25px;
    position: relative;
}

.founder-card.featured .founder-image {
    width: 160px;
    height: 160px;
}

.founder-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    border-radius: 50%;
    border: 3px solid transparent;
    background: linear-gradient(var(--black), var(--black)) padding-box,
        var(--gradient) border-box;
    transition: all 0.4s ease;
}

.founder-card:hover .founder-image img {
    filter: brightness(1.1);
    box-shadow: 0 0 40px rgba(0, 212, 255, 0.3);
}

.founder-image::before {
    content: '';
    position: absolute;
    inset: -10px;
    border-radius: 50%;
    background: var(--gradient);
    opacity: 0;
    filter: blur(20px);
    transition: opacity 0.4s ease;
    z-index: -1;
}

.founder-card:hover .founder-image::before {
    opacity: 0.4;
}

.founder-info {
    text-align: center;
}

.founder-name {
    display: block;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--white);
    margin-bottom: 8px;
}

.founder-role {
    display: block;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.2em;
    color: var(--gray);
    text-transform: uppercase;
}

.founder-card.featured .founder-name {
    font-size: 22px;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.founders-story-block {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
}

.founders-story-block::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 30px;
    font-size: 80px;
    font-weight: 900;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.3;
    line-height: 1;
}

.founders-quote {
    font-size: clamp(18px, 2vw, 24px);
    font-style: italic;
    line-height: 1.8;
    color: var(--gray);
    position: relative;
    z-index: 1;
}

.founders-quote .highlight {
    color: var(--cyan);
    font-weight: 600;
    font-style: normal;
}

/* ----------------------------------------
   PARTNER WITH US SECTION
   ---------------------------------------- */
.partner {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 50px;
    background: var(--black);
    overflow: hidden;
}

.partner-particles {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.partner-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    max-width: var(--container-max);
    width: var(--container);
    align-items: center;
}

.partner-info {
    padding-right: 40px;
}

.partner-headline {
    font-size: clamp(36px, 5vw, 60px);
    font-weight: 800;
    line-height: 1.2;
    margin: 30px 0 25px;
}

.partner-subtext {
    font-size: 18px;
    color: var(--gray);
    line-height: 1.7;
}

.partner-form {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 50px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

.form-row:last-of-type {
    grid-template-columns: 1fr;
}

.form-group {
    position: relative;
}

.form-group.full-width {
    margin-bottom: 40px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--gray-dark);
    padding: 15px 0;
    font-size: 16px;
    color: var(--white);
    font-family: var(--font);
    transition: border-color 0.3s ease;
    resize: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--gray);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--cyan);
}

.form-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient);
    transition: width 0.4s var(--ease);
}

.form-group input:focus~.form-line,
.form-group textarea:focus~.form-line {
    width: 100%;
}

.submit-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 20px 50px;
    background: transparent;
    border: 2px solid var(--cyan);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--white);
    cursor: pointer;
    overflow: hidden;
    transition: all 0.4s var(--ease);
}

.btn-text {
    position: relative;
    z-index: 2;
}

.btn-glow {
    position: absolute;
    inset: 0;
    background: var(--gradient);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.submit-btn:hover {
    border-color: transparent;
    color: var(--black);
    box-shadow: 0 0 40px var(--cyan-glow),
        0 0 80px rgba(0, 212, 255, 0.3);
}

.submit-btn:hover .btn-glow {
    opacity: 1;
}

/* ----------------------------------------
   FOOTER
   ---------------------------------------- */
.footer {
    position: relative;
    z-index: 1;
    padding: 50px;
    background: var(--black);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    align-items: center;
    max-width: var(--container-max);
    margin: 0 auto;
}

.footer-logo {
    height: 40px;
    width: auto;
    margin-bottom: 15px;
    display: block;
}

.footer-left p {
    font-size: 11px;
    letter-spacing: 0.1em;
    color: var(--gray);
}

.footer-center {
    text-align: center;
}

.footer-tagline {
    font-size: 12px;
    letter-spacing: 0.2em;
    color: var(--gray);
}

.footer-right {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.footer-social {
    display: flex;
    gap: 15px;
    align-items: center;
}

.social-link {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--gray-dark);
    border-radius: 4px;
    transition: all 0.3s var(--ease);
}

.social-link svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.social-link:hover {
    background: var(--white);
    color: var(--black);
    border-color: var(--white);
    transform: translateY(-2px);
}

/* ----------------------------------------
   MAGNETIC EFFECT
   ---------------------------------------- */
.magnetic {
    display: inline-block;
}

/* ----------------------------------------
   RESPONSIVE
   ---------------------------------------- */
@media (max-width: 1024px) {
    .nav {
        padding: 20px 30px;
    }

    .nav-menu {
        display: none;
    }

    .hero {
        padding: 100px 30px;
    }

    .hero-stats {
        position: relative;
        bottom: auto;
        right: auto;
        justify-content: center;
        margin-top: 60px;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .work-item {
        width: 85vw;
        grid-template-columns: 1fr;
    }

    .founders-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }

    .footer-right {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .cursor {
        display: none;
    }

    body {
        cursor: auto;
    }

    a,
    button {
        cursor: pointer;
    }

    .hero-scroll {
        display: none;
    }

    .stat {
        text-align: center;
    }

    .founders-images {
        flex-direction: column;
        align-items: center;
    }
}

/* ----------------------------------------
   ANIMATIONS (GSAP will enhance these)
   ---------------------------------------- */
.split-text {
    display: inline-block;
}

.char {
    display: inline-block;
}

/* ----------------------------------------
   MOBILE RESPONSIVENESS
   ---------------------------------------- */

/* Tablet */
@media (max-width: 1024px) {
    .hero-title .split-text {
        font-size: clamp(50px, 10vw, 120px);
    }

    .founders-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .founders-images {
        order: -1;
    }

    .partner-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .work-item {
        width: 350px;
    }

    .work-image {
        height: 320px;
    }

    .voices-title-big {
        font-size: clamp(50px, 8vw, 90px);
    }

    .stats-container {
        gap: 25px;
    }
}

/* Mobile */
@media (max-width: 768px) {

    /* Global */
    section {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }

    /* Mobile Visual Enhancements */
    body::before {
        content: '';
        position: fixed;
        top: 0;
        left: -50%;
        width: 200%;
        height: 100%;
        background: radial-gradient(ellipse at 30% 20%, rgba(0, 212, 255, 0.08) 0%, transparent 50%),
            radial-gradient(ellipse at 70% 80%, rgba(0, 119, 182, 0.06) 0%, transparent 50%);
        pointer-events: none;
        z-index: -1;
        animation: mobileGlow 8s ease-in-out infinite alternate;
    }

    @keyframes mobileGlow {
        0% {
            opacity: 0.5;
            transform: translateX(0);
        }

        100% {
            opacity: 1;
            transform: translateX(-10%);
        }
    }

    /* Gradient accent line for sections */
    .voices::before,
    .founders::before,
    .partner::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 2px;
        background: var(--gradient);
        opacity: 0.5;
    }

    /* Enhanced section titles with glow */
    .voices-title-big,
    .stars-title,
    .founders-headline {
        text-shadow: 0 0 40px rgba(0, 212, 255, 0.3);
    }

    /* Mobile cards with subtle animation */
    .voice-content-box,
    .work-item {
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    }

    /* Floating accent dots */
    .hero::after {
        content: '';
        position: absolute;
        bottom: 120px;
        right: 20px;
        width: 6px;
        height: 6px;
        background: var(--cyan);
        border-radius: 50%;
        box-shadow: 0 0 20px var(--cyan),
            -30px 40px 0 var(--blue),
            -60px 10px 0 rgba(0, 212, 255, 0.5);
        animation: accentPulse 3s ease-in-out infinite;
    }

    @keyframes accentPulse {

        0%,
        100% {
            opacity: 0.5;
            transform: scale(1);
        }

        50% {
            opacity: 1;
            transform: scale(1.2);
        }
    }

    /* Navigation - Mobile */
    .nav {
        padding: 16px 20px;
        z-index: 1000;
    }

    .nav-logo img {
        height: 60px;
    }

    .nav-menu {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(5, 5, 5, 0.98);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 30px;
        z-index: 9999;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-link {
        font-size: 24px;
        letter-spacing: 0.2em;
    }

    .nav-cta {
        display: none;
    }

    .nav-toggle {
        display: flex;
        z-index: 10000;
    }

    /* Hero */
    .hero {
        padding: 120px 20px 80px;
    }

    .hero-title .split-text {
        font-size: clamp(36px, 12vw, 70px);
    }

    .hero-sub {
        font-size: 12px;
        letter-spacing: 0.15em;
    }

    .hero-stats {
        bottom: 80px;
        gap: 30px;
    }

    .stat-num {
        font-size: clamp(28px, 8vw, 40px);
    }

    /* Stats Bar */
    .stats-bar {
        padding: 30px 20px;
    }

    .stats-container {
        flex-wrap: wrap;
        gap: 20px;
    }

    .stat-item {
        min-width: 120px;
    }

    .stat-number {
        font-size: clamp(24px, 6vw, 36px);
    }

    .stat-divider {
        display: none;
    }

    /* Marquee */
    .marquee-track span {
        font-size: clamp(16px, 4vw, 28px);
    }

    /* Event Section - Mobile */
    .event {
        overflow: visible;
    }

    .event-split {
        flex-direction: column;
        gap: 40px;
        padding: 60px 20px;
    }

    .event-visual {
        width: 100%;
        max-width: 100%;
        padding: 0;
    }

    .poster-container {
        max-width: 280px;
        margin: 0 auto;
    }

    .diyas-container {
        padding: 0 25%;
        /* More inward padding to stay within overflow bounds */
    }

    .diya {
        transform: scale(0.7);
        /* Slightly smaller on mobile */
    }

    .event-info-bar {
        flex-direction: column;
        gap: 20px;
        padding: 25px 20px;
        align-items: flex-start;
        /* Align left */
    }

    .info-item {
        width: 100%;
        gap: 15px;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding-bottom: 15px;
    }

    .info-item:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }

    .info-value {
        font-size: 16px;
        /* Slightly larger for readability */
        white-space: normal;
        /* Allow text wrapping */
    }

    .event-details {
        text-align: center;
        padding: 0 10px;
    }

    .event-title {
        font-size: clamp(28px, 8vw, 48px);
    }

    .countdown {
        justify-content: center;
        gap: 10px;
    }

    .countdown-item {
        min-width: 60px;
        padding: 12px 8px;
    }

    .countdown-num {
        font-size: 24px;
    }

    /* Work Section - Horizontal Scroll */
    .work-header {
        padding: 60px 20px 30px;
    }

    .work-track {
        padding: 0 20px;
        gap: 15px;
    }

    .work-item {
        width: 280px;
        flex-shrink: 0;
    }

    .work-image {
        height: 220px;
    }

    .work-title {
        font-size: 18px;
    }

    /* Stars */
    .stars-title {
        font-size: clamp(40px, 10vw, 80px);
    }

    .stars-sub {
        font-size: 12px;
    }

    /* Founders */
    .founders {
        padding: 80px 20px;
    }

    .founders-headline {
        margin-bottom: 50px;
    }

    .founders-title {
        font-size: clamp(36px, 10vw, 60px);
    }

    .founders-row {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 20px;
        margin-bottom: 50px;
    }

    .founder-card {
        width: calc(50% - 10px);
        padding: 25px 15px 20px;
    }

    .founder-card.featured {
        width: 100%;
        max-width: 280px;
        transform: none;
        order: -1;
    }

    .founder-card.featured:hover {
        transform: translateY(-10px);
    }

    .founder-image {
        width: 100px;
        height: 100px;
    }

    .founder-card.featured .founder-image {
        width: 120px;
        height: 120px;
    }

    .founder-name {
        font-size: 14px;
    }

    .founder-role {
        font-size: 9px;
    }

    .founders-story-block {
        padding: 30px 20px;
    }

    .founders-story-block::before {
        font-size: 50px;
        top: 10px;
        left: 15px;
    }

    .founders-quote {
        font-size: 16px;
    }

    /* Voices */
    .voices {
        padding: 80px 20px;
    }

    .voices-title {
        margin-bottom: 60px;
    }

    .voices-title-small {
        font-size: 12px;
    }

    .voices-title-big {
        font-size: clamp(40px, 12vw, 70px);
    }

    .voices-timeline {
        padding-left: 50px;
    }

    .voice-marker {
        left: -50px;
        width: 32px;
        height: 32px;
    }

    .voice-number {
        font-size: 10px;
    }

    .voice-line {
        left: -34px;
    }

    .voice-content-box {
        padding: 25px;
    }

    .voice-content-box::before {
        left: -16px;
        width: 14px;
    }

    .voice-text {
        font-size: 15px;
    }

    .voice-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }

    .voice-event {
        padding-left: 0;
    }

    .voice-event::before {
        display: none;
    }

    .voice-block {
        margin-bottom: 40px;
    }

    /* Event Teaser */
    .event-teaser {
        padding: 60px 20px;
    }

    .event-countdown {
        gap: 15px;
    }

    .countdown-item {
        min-width: 60px;
        padding: 15px 10px;
    }

    .countdown-number {
        font-size: 28px;
    }

    /* Partner */
    .partner {
        padding: 80px 20px;
    }

    .partner-headline {
        font-size: clamp(28px, 6vw, 40px);
    }

    .partner-form {
        gap: 15px;
    }

    .form-row {
        flex-direction: column;
    }

    /* Footer */
    .footer {
        padding: 60px 20px 30px;
    }

    .footer-content {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }

    .footer-left,
    .footer-right {
        align-items: center;
    }

    .footer-tagline {
        font-size: 14px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .hero-title .split-text {
        font-size: clamp(28px, 14vw, 50px);
    }

    .hero-eyebrow .text {
        font-size: 10px;
    }

    .section-label span:not(.line) {
        font-size: 11px;
    }

    .work-item {
        width: 260px;
    }

    .work-image {
        height: 200px;
    }

    .work-title {
        font-size: 18px;
    }

    .voices-title-big {
        font-size: clamp(32px, 15vw, 55px);
    }

    .voices-timeline {
        padding-left: 40px;
    }

    .voice-marker {
        left: -40px;
        width: 28px;
        height: 28px;
    }

    .voice-line {
        left: -26px;
    }

    .voice-content-box::before {
        left: -14px;
        width: 12px;
    }

    .stat-item {
        min-width: 100px;
    }

    .founder-img img {
        width: 100px;
        height: 100px;
    }

    .countdown-item {
        min-width: 50px;
        padding: 12px 8px;
    }

    .countdown-number {
        font-size: 22px;
    }

    .countdown-label {
        font-size: 8px;
    }
}