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

:root {
    --primary: #FDB913;
    --primary-dark: #E5A811;
    --primary-light: #FFF8E7;
    --dark: #1a1a1a;
    --dark-secondary: #2a2a2a;
    --text: #333;
    --text-light: #666;
    --text-muted: #999;
    --white: #ffffff;
    --green: #059669;
    --green-light: #D1FAE5;
    --border: #e5e5e5;
    --bg-main: #ffffff;
    --bg-section: #f8f9fa;
    --gradient-1: #FDB913;
    --gradient-2: #F97316;
}

html.lenis, html.lenis body {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}

.lenis.lenis-stopped {
    overflow: hidden;
}

.lenis.lenis-scrolling iframe {
    pointer-events: none;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: var(--text);
    background: var(--dark);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

/* Header */
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.25rem 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

header.scrolled {
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(20px);
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 100px;
    width: auto;
    transition: transform 0.3s ease;
    margin-left: -2.5rem;
    margin-top: -20px;
    margin-bottom: -20px;
}

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

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-menu li a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu li a.active {
    color: var(--primary);
}

.nav-menu li a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.nav-menu li a:hover::after,
.nav-menu li a.active::after {
    width: 100%;
}

.nav-menu li a:hover {
    color: var(--primary);
}

.nav-cta {
    background: var(--primary);
    color: var(--dark);
    padding: 0.75rem 1.75rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.nav-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s ease;
}

.nav-cta:hover::before {
    left: 100%;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(253, 185, 19, 0.4);
}

/* Story Section */
.story-section {
    position: relative;
    background: linear-gradient(180deg, var(--dark) 0%, #0f0f0f 100%);
    overflow: hidden;
    min-height: 100vh;
}

/* Animated particles background */
.story-particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--primary);
    border-radius: 50%;
    opacity: 0.3;
}

/* Story intro - fullscreen cinematic */
.story-intro {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 120px 2rem 100px;
}

.story-intro::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(253, 185, 19, 0.08) 0%, transparent 70%);
}

.story-intro-content {
    max-width: 900px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.story-year {
    font-size: clamp(5rem, 15vw, 12rem);
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 2px var(--primary);
    opacity: 0.3;
    line-height: 1;
    margin-bottom: -2rem;
}

.story-headline {
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 900;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 2rem;
}

.story-headline .highlight-text {
    color: var(--primary);
    position: relative;
}

.story-subheadline {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.6);
    max-width: 700px;
    margin: 0 auto 3rem;
    line-height: 1.8;
}

.scroll-indicator {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    font-weight: 500;
}

.scroll-mouse {
    width: 26px;
    height: 42px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 13px;
    position: relative;
}

.scroll-mouse::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--primary);
    border-radius: 2px;
    animation: scrollDown 2s infinite;
}

@keyframes scrollDown {
    0%, 100% { opacity: 1; transform: translateX(-50%) translateY(0); }
    50% { opacity: 0.3; transform: translateX(-50%) translateY(10px); }
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% center; }
    50% { background-position: 200% center; }
}

/* Timeline container */
.story-timeline {
    padding: 100px 2rem;
    position: relative;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, transparent, var(--primary), var(--primary), transparent);
    transform: translateX(-50%);
}

.timeline-line::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 12px;
    height: 12px;
    background: var(--primary);
    border-radius: 50%;
    box-shadow: 0 0 30px var(--primary);
}

/* Story chapters */
.story-chapter {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
}

.story-chapter:nth-child(even) {
    direction: rtl;
}

.story-chapter:nth-child(even) > * {
    direction: ltr;
}

.story-chapter::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    background: var(--dark);
    border: 3px solid var(--primary);
    border-radius: 50%;
    z-index: 2;
}

.chapter-content {
    padding: 0 2rem;
}

.chapter-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(253, 185, 19, 0.15);
    border: 1px solid rgba(253, 185, 19, 0.3);
    color: var(--primary);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
}

.chapter-title {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 900;
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.chapter-title .accent {
    color: var(--primary);
}

.chapter-text {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.9;
    margin-bottom: 1.5rem;
}

.chapter-quote {
    border-left: 3px solid var(--primary);
    padding-left: 1.5rem;
    font-style: italic;
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.15rem;
    line-height: 1.8;
}

/* Chapter visual */
.chapter-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.visual-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 2.5rem;
    backdrop-filter: blur(10px);
    width: 100%;
    max-width: 400px;
    transition: all 0.3s ease;
}

.visual-card:hover {
    transform: translateY(-5px);
}

.visual-card.crisis {
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.1) 0%, rgba(0, 0, 0, 0.3) 100%);
    border-color: rgba(220, 38, 38, 0.3);
}

.visual-card.problem {
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.1) 0%, rgba(0, 0, 0, 0.3) 100%);
    border-color: rgba(249, 115, 22, 0.3);
}

.visual-card.vision {
    background: linear-gradient(135deg, rgba(253, 185, 19, 0.15) 0%, rgba(0, 0, 0, 0.3) 100%);
    border-color: rgba(253, 185, 19, 0.4);
}

.visual-card.future {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.15) 0%, rgba(0, 0, 0, 0.3) 100%);
    border-color: rgba(16, 185, 129, 0.4);
}

.visual-card.dilemma {
    background: linear-gradient(135deg, rgba(234, 179, 8, 0.1) 0%, rgba(0, 0, 0, 0.3) 100%);
    border-color: rgba(234, 179, 8, 0.4);
}

.visual-icon {
    margin-bottom: 1.5rem;
}

.visual-icon i,
.visual-icon svg {
    width: 48px;
    height: 48px;
    stroke-width: 1.5;
}

.visual-card.crisis .visual-icon svg {
    stroke: #ef4444;
}

.visual-card.problem .visual-icon svg {
    stroke: #f97316;
}

.visual-card.dilemma .visual-icon svg {
    stroke: #eab308;
}

.visual-card.vision .visual-icon svg {
    stroke: var(--primary);
}

.visual-card.future .visual-icon svg {
    stroke: #10b981;
}

.visual-stat {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.visual-stat-value {
    font-size: 3rem;
    font-weight: 900;
    color: var(--white);
    line-height: 1;
}

.visual-stat-value.danger {
    color: #ef4444;
}

.visual-stat-value.warning {
    color: #f97316;
}

.visual-stat-value.success {
    color: #10B981;
}

.visual-stat-value.primary {
    color: var(--primary);
}

.visual-stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

.visual-list {
    list-style: none;
}

.visual-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.visual-list li:last-child {
    border-bottom: none;
}

.visual-list li .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
}

.visual-list li .icon i,
.visual-list li .icon svg {
    width: 18px;
    height: 18px;
    stroke-width: 2;
}

.visual-card.problem .visual-list li .icon svg {
    stroke: #f97316;
}

.visual-card.dilemma .visual-list li .icon svg {
    stroke: #eab308;
}

.visual-card.future .visual-list li .icon svg {
    stroke: #10b981;
}

.visual-list li .icon.check svg {
    stroke: #10B981 !important;
}

.visual-list li .icon.x svg {
    stroke: #ef4444 !important;
}

/* Mission statement */
.story-mission {
    padding: 150px 2rem;
    text-align: center;
    position: relative;
}

.story-mission::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(253, 185, 19, 0.15) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.mission-container {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.mission-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 2rem;
}

.mission-title {
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 900;
    color: var(--white);
    line-height: 1.3;
    margin-bottom: 2rem;
}

.mission-title .gradient {
    background: linear-gradient(135deg, var(--primary) 0%, var(--gradient-2) 50%, var(--primary) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 4s ease infinite;
}

.mission-text {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.9;
    max-width: 800px;
    margin: 0 auto 3rem;
}

/* Promise boxes */
.promise-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.promise-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.4s ease;
}

.promise-card:hover {
    background: rgba(253, 185, 19, 0.1);
    border-color: var(--primary);
    transform: translateY(-10px);
}

.promise-icon {
    margin-bottom: 1rem;
    width: 56px;
    height: 56px;
    background: rgba(253, 185, 19, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.promise-icon i,
.promise-icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--primary);
    stroke-width: 1.5;
}

.promise-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 0.75rem;
}

.promise-text {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
}

/* Final CTA in story */
.story-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.story-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--gradient-2) 100%);
    color: var(--dark);
    padding: 1.25rem 2.5rem;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.story-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 50px rgba(253, 185, 19, 0.4);
}

.story-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: transparent;
    color: var(--white);
    padding: 1.25rem 2.5rem;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.story-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary);
}

/* Footer */
footer {
    padding: 4rem 2rem;
    background: #0a0a0a;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

footer p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

footer a {
    color: var(--primary);
    text-decoration: none;
}

/* ========================================
   MOBILE HAMBURGER MENU
   ======================================== */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
    padding: 10px;
}

.mobile-menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu-toggle span:nth-child(1) { margin-bottom: 6px; }
.mobile-menu-toggle span:nth-child(3) { margin-top: 6px; }

.mobile-menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
.mobile-menu-toggle.active span:nth-child(2) { opacity: 0; transform: translateX(-10px); }
.mobile-menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -6px); }

.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    z-index: 998;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 380px;
    height: 100vh;
    background: var(--dark);
    z-index: 999;
    padding: 100px 2rem 2rem;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.3);
    pointer-events: none;
}

.mobile-nav.active {
    right: 0;
    pointer-events: auto;
}

.mobile-nav-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav-menu li { margin-bottom: 0.5rem; }

.mobile-nav-menu li a {
    display: block;
    padding: 1rem 0;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--white);
    text-decoration: none;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s ease;
}

.mobile-nav-menu li a:hover,
.mobile-nav-menu li a.active {
    color: var(--primary);
    padding-left: 0.5rem;
}

.mobile-nav-cta {
    display: block;
    margin-top: 2rem;
    padding: 1.25rem 2rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--gradient-2) 100%);
    color: var(--dark);
    text-align: center;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 14px;
}

/* Responsive */
@media (max-width: 968px) {
    header {
        padding: 0.5rem 0;
        background: rgba(26, 26, 26, 0.98);
        backdrop-filter: blur(20px);
    }

    nav {
        padding: 0 1rem;
        height: 60px;
    }

    .logo { display: flex; align-items: center; }
    .logo img { height: 50px; margin: 0; margin-left: -0.5rem; }

    .nav-menu { display: none !important; }
    .nav-cta { display: none !important; }

    .mobile-menu-toggle {
        display: flex;
        width: 48px;
        height: 48px;
        background: rgba(253, 185, 19, 0.15);
        border-radius: 12px;
    }

    .mobile-menu-toggle span {
        background: var(--white);
    }

    .mobile-nav, .mobile-menu-overlay { display: block; }

    .story-chapter {
        grid-template-columns: 1fr;
        padding: 60px 1rem;
    }

    .story-chapter:nth-child(even) {
        direction: ltr;
    }

    .timeline-line {
        left: 20px;
    }

    .story-chapter::before {
        left: 20px;
        top: 30px;
        transform: translateX(-50%);
    }

    .chapter-content {
        padding-left: 3rem;
    }

    .chapter-visual {
        padding-left: 3rem;
    }

    .promise-grid {
        grid-template-columns: 1fr;
    }

    .story-year {
        font-size: 5rem;
    }

    .nav-menu {
        display: none;
    }
}

/* Scroll Progress */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--gradient-2) 100%);
    z-index: 10001;
    transform-origin: left;
    transform: scaleX(0);
}
