:root {
    --bg-base: #ffffff;
    --bg-secondary: #f8fafc;
    --accent-primary: #10b981;
    --accent-secondary: #059669;
    --text-primary: #0f172a;
    --text-secondary: #475569;
    --text-muted: #94a3b8;
    --border-color: rgba(203, 213, 225, 0.3);
    --glass-bg: rgba(255, 255, 255, 0.7);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.08);
    --transition-smooth: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Falling Leaves (Forest Theme Particles) */
#atmospheric-particle-container {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 10;
    overflow: hidden;
}

.particle-leaf {
    position: absolute;
    top: -40px;
    width: 15px !important;
    height: 25px !important;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 20px 0 20px 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    will-change: transform, opacity;
    animation: fallLeaf linear both;
    opacity: 0;
}

@keyframes fallLeaf {
    0% {
        transform: translate3d(0, -20px, 0) rotate(0deg) scale(1);
        opacity: 0;
    }

    10% {
        opacity: 0.8;
    }

    90% {
        opacity: 0.5;
    }

    100% {
        transform: translate3d(var(--tx), 110vh, 0) rotate(720deg) scale(0.8);
        opacity: 0;
    }
}

.leaves-paused .particle-leaf {
    animation-play-state: paused !important;
}

.toggle-leaves-btn {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    color: var(--accent-primary);
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.toggle-leaves-btn:hover {
    background: rgba(16, 185, 129, 0.2);
    transform: scale(1.1) rotate(15deg);
    border-color: var(--accent-primary);
    color: var(--accent-primary);
    box-shadow: 0 10px 40px rgba(16, 185, 129, 0.3);
}

.toggle-leaves-btn.paused {
    background: rgba(16, 185, 129, 0.9);
    color: #fff;
    border-color: #ffffff;
}

.toggle-leaves-btn i {
    transition: transform 0.3s ease;
}

.toggle-leaves-btn:active {
    transform: scale(0.9);
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', system-ui, sans-serif;
    color: var(--text-primary);
    background: var(--bg-base);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition-smooth);
}

.nav-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    height: 40px;
    width: auto;
}

.go-app-btn {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border-color);
    padding: 12px 24px;
    border-radius: 40px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-primary);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    cursor: pointer;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-sm);
}

.go-app-btn:hover {
    background: #fff;
    transform: scale(1.05);
    box-shadow: var(--shadow-md);
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 80px;
}

.hero-background {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.sky-gradient {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, #ffffff 0%, #e2e8f0 100%);
}

.particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.particle {
    position: absolute;
    background: #fff;
    border-radius: 50%;
    pointer-events: none;
    will-change: transform;
    opacity: 0.6;
}

.hero-visual-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 1;
}

.bg-shape {
    position: absolute;
    filter: blur(80px);
    opacity: 0.15;
    border-radius: 50%;
    animation: shapeFloat 20s infinite alternate ease-in-out;
}

.shape-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--accent-primary), transparent);
    top: -100px;
    left: -100px;
}

.shape-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #60a5fa, transparent);
    bottom: -50px;
    right: -100px;
    animation-delay: -5s;
}

.shape-3 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--accent-secondary), transparent);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.1;
    animation-duration: 30s;
}

@keyframes shapeFloat {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(50px, 50px) scale(1.1);
    }
}

@keyframes coreBreath {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.05);
    }
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 900px;
    padding: 2rem;
}

.hero-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--accent-primary);
    margin-bottom: 1rem;
    padding: 8px 20px;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 50px;
}

.hero-title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--accent-primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.cta-btn {
    padding: 16px 32px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition-smooth);
    cursor: pointer;
}

.cta-btn.primary {
    background: var(--accent-primary);
    color: white;
    box-shadow: 0 4px 20px rgba(16, 185, 129, 0.3);
}

.cta-btn.primary:hover {
    background: var(--accent-secondary);
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(16, 185, 129, 0.4);
}

.cta-btn.secondary {
    background: rgba(255, 255, 255, 0.9);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

.cta-btn.secondary:hover {
    background: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Hero Stats */
.hero-stats {
    display: flex;
    gap: 3rem;
    justify-content: center;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-family: 'Outfit', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-primary);
    line-height: 1;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-top: 0.5rem;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    z-index: 10;
}

.scroll-indicator span {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--text-muted);
}

.scroll-arrow {
    width: 24px;
    height: 24px;
    border-left: 2px solid var(--text-muted);
    border-bottom: 2px solid var(--text-muted);
    transform: rotate(-45deg);
    animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {

    0%,
    100% {
        transform: rotate(-45deg) translateY(0);
    }

    50% {
        transform: rotate(-45deg) translateY(10px);
    }
}

/* Content Sections */
.content-section {
    padding: 100px 2rem;
    position: relative;
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    margin-bottom: 4rem;
}

.section-header.centered {
    text-align: center;
}

.section-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--accent-primary);
    margin-bottom: 1rem;
}

.section-title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.section-description {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Vision Section */
.vision-section {
    background: var(--bg-secondary);
}

.two-col {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.content-block {
    background: white;
    padding: 3rem;
    border-radius: 24px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
}

.content-block:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.icon-box {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.icon-box i {
    font-size: 28px;
    color: white;
}

.content-block h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.content-block p {
    color: var(--text-secondary);
    line-height: 1.8;
}

/* History Section */
.history-section {
    background: var(--bg-secondary);
    position: relative;
}

.history-timeline {
    max-width: 900px;
    margin: 4rem auto 0;
    position: relative;
    padding: 2rem 0;
}

.history-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 18px;
    height: 100%;
    width: 2px;
    background: linear-gradient(to bottom, transparent, var(--accent-primary), transparent);
}

.timeline-item {
    position: relative;
    padding-left: 3.5rem;
    margin-bottom: 3rem;
}

.timeline-dot {
    position: absolute;
    left: 11px;
    top: 5px;
    width: 16px;
    height: 16px;
    background: white;
    border: 3px solid var(--accent-primary);
    border-radius: 50%;
    z-index: 2;
    transition: var(--transition-smooth);
}

.timeline-item:hover .timeline-dot {
    transform: scale(1.3);
    background: var(--accent-primary);
    box-shadow: 0 0 15px rgba(16, 185, 129, 0.4);
}

.timeline-content {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: var(--transition-smooth);
}

.timeline-item:hover .timeline-content {
    transform: translateX(10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-primary);
}

.timeline-year {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(16, 185, 129, 0.1);
    color: var(--accent-primary);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 1rem;
    font-family: 'Outfit', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.timeline-content h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.timeline-content p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
}

.timeline-item.highlight .timeline-content {
    background: linear-gradient(135deg, #ffffff 0%, #f0fdf4 100%);
    border-left: 4px solid var(--accent-primary);
}

@media (max-width: 768px) {
    .history-timeline {
        padding-left: 0.5rem;
    }

    .timeline-content {
        padding: 1.5rem;
    }
}

/* Mission Section */
.mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.mission-card {
    position: relative;
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: var(--transition-smooth);
    overflow: hidden;
}

.mission-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-primary);
}

.mission-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(16, 185, 129, 0.2));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.mission-icon i {
    font-size: 24px;
    color: var(--accent-primary);
}

.mission-card h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.mission-card p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 0.95rem;
}

.mission-number {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-family: 'Outfit', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: rgba(16, 185, 129, 0.08);
}

/* Innovation Section */
.innovation-section {
    background: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 100%);
}

.feature-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.feature-content h2 {
    margin-bottom: 1.5rem;
}

.feature-list {
    list-style: none;
    margin: 2rem 0;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    font-size: 1.05rem;
    color: var(--text-secondary);
}

.feature-list i {
    color: var(--accent-primary);
    font-size: 1.25rem;
}

.feature-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 30px;
    background: var(--accent-primary);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(16, 185, 129, 0.3);
    transition: var(--transition-smooth);
}

.feature-btn:hover {
    background: var(--accent-secondary);
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(16, 185, 129, 0.4);
}

.feature-visual {
    position: relative;
    height: 400px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 1.5rem;
}

.visual-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    box-shadow: var(--shadow-md);
    transition: var(--transition-smooth);
}

.visual-card:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: var(--shadow-lg);
}

.visual-card i {
    font-size: 3rem;
    color: var(--accent-primary);
}

.visual-card span {
    font-weight: 600;
    color: var(--text-primary);
}

.visual-card.card-1 {
    grid-column: span 2;
}

/* Values Section */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.value-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    transition: var(--transition-smooth);
    text-align: center;
}

.value-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-primary);
}

.value-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.value-icon i {
    font-size: 28px;
    color: white;
}

.value-card h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.value-card p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Impact Section */
.impact-section {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.impact-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
}

.impact-stat {
    text-align: center;
}

.stat-circle {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.3);
}

.stat-circle i {
    font-size: 2.5rem;
    color: white;
}

.impact-stat h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.impact-stat p {
    color: var(--text-secondary);
    font-size: 1rem;
}

.impact-stories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.story-card {
    background: white;
    padding: 3rem;
    border-radius: 24px;
    box-shadow: var(--shadow-md);
    position: relative;
}

.story-quote {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(16, 185, 129, 0.2));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.story-quote i {
    font-size: 20px;
    color: var(--accent-primary);
}

.story-card p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-secondary);
    font-style: italic;
    margin-bottom: 1.5rem;
}

.story-author strong {
    display: block;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.story-author span {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* Team Section */
.founder-spotlight {
    margin-top: 50px;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: center;
    background: white;
    padding: 4rem;
    border-radius: 32px;
    box-shadow: var(--shadow-lg);
}

.founder-avatar {
    width: 250px;
    height: 250px;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    box-shadow: 0 8px 32px rgba(16, 185, 129, 0.3);
}

.founder-avatar i {
    font-size: 6rem;
    color: white;
}

.founder-info h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.founder-title {
    display: block;
    font-size: 1.125rem;
    color: var(--accent-primary);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.founder-info p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.founder-achievements {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.achievement-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.25rem;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent-primary);
}

.achievement-item i {
    font-size: 1.125rem;
}

/* Technology Section */
.tech-section {
    background: var(--bg-secondary);
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.tech-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    transition: var(--transition-smooth);
    text-align: center;
}

.tech-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-primary);
}

.tech-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(16, 185, 129, 0.2));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.tech-icon i {
    font-size: 28px;
    color: var(--accent-primary);
}

.tech-card h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.tech-card p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Future Section */
.future-roadmap {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.roadmap-item {
    background: white;
    padding: 3rem 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--accent-primary);
    transition: var(--transition-smooth);
}

.roadmap-item:hover {
    transform: translateX(6px);
    box-shadow: var(--shadow-lg);
}

.roadmap-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(16, 185, 129, 0.2));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.roadmap-icon i {
    font-size: 26px;
    color: var(--accent-primary);
}

.roadmap-item h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.roadmap-item p {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-secondary) 100%);
    padding: 100px 2rem;
    text-align: center;
}

.cta-content h2 {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn.primary-large,
.cta-btn.secondary-large {
    padding: 18px 40px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.cta-btn.primary-large {
    background: white;
    color: var(--accent-primary);
}

.cta-btn.primary-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.cta-btn.secondary-large {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid white;
}

.cta-btn.secondary-large:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
}

/* Footer */
.footer {
    background: var(--text-primary);
    color: white;
    padding: 4rem 2rem 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto 3rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.footer-logo {
    height: 50px;
    width: auto;
    margin-bottom: 1rem;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.social-links a:hover {
    background: var(--accent-primary);
    transform: translateY(-3px);
}

.footer-section h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.footer-section ul li a:hover {
    color: var(--accent-primary);
}

.footer-section ul li i {
    margin-right: 0.75rem;
    color: var(--accent-primary);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
}

.portal-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 25px;
    padding: 12px 25px;
    background: transparent;
    border: 2px solid var(--accent-primary);
    color: var(--accent-primary);
    border-radius: 100px;
    font-family: var(--font-heading);
    font-weight: 700;
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    cursor: pointer;
}

.portal-btn:hover {
    background: var(--accent-primary);
    color: white !important;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(16, 185, 129, 0.2);
}

.portal-btn i {
    font-size: 12px;
    transition: transform 0.4s;
}

.portal-btn:hover i {
    transform: translate(3px, -3px);
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .feature-showcase {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .founder-spotlight {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 3rem;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 0.75rem 0;
    }

    .nav-content {
        padding: 0.75rem 1.5rem;
    }

    .nav-logo {
        height: 32px;
    }

    .go-app-btn {
        padding: 10px 20px;
        font-size: 10px;
    }

    .hero-section {
        min-height: 90vh;
        padding-top: 70px;
    }

    .hero-core-container {
        transform: translate(-50%, -50%) scale(0.6);
        opacity: 0.3;
    }

    .hero-content {
        padding: 1.5rem;
    }

    .hero-stats {
        gap: 2rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .content-section {
        padding: 60px 1.5rem;
    }

    .section-header {
        margin-bottom: 2.5rem;
    }

    .two-col,
    .mission-grid,
    .values-grid,
    .impact-stats,
    .impact-stories,
    .tech-grid,
    .future-roadmap {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .content-block,
    .mission-card,
    .value-card,
    .story-card,
    .tech-card {
        padding: 2rem;
    }

    .feature-visual {
        height: 300px;
        gap: 1rem;
    }

    .visual-card {
        padding: 1.5rem;
    }

    .visual-card i {
        font-size: 2rem;
    }

    .founder-avatar {
        width: 180px;
        height: 180px;
    }

    .founder-avatar i {
        font-size: 4rem;
    }

    .founder-spotlight {
        padding: 2rem;
    }

    .portal-btn {
        width: 100%;
        justify-content: center;
    }

    .hero-cta {
        flex-direction: column;
        gap: 1rem;
    }

    .cta-btn {
        width: 100%;
        justify-content: center;
    }

    .cta-section {
        padding: 60px 1.5rem;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .cta-btn.primary-large,
    .cta-btn.secondary-large {
        width: 100%;
        justify-content: center;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .scroll-indicator {
        bottom: 20px;
    }
}

/* ============================================
   INTERACTIVE JOURNEY SECTION (3D Experience)
   ============================================ */

.interactive-journey-section {
    background: #ffffff;
    padding: 120px 0 !important;
    position: relative;
    overflow: hidden;
}

.journey-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.journey-scene {
    position: relative;
    width: 100%;
    height: 700px;
    border-radius: 32px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    /* Softer shadow */
}

/* Journey Background Elements */
.journey-sky-gradient {
    position: absolute;
    inset: 0;
    background: #ffffff;
    z-index: 0;
}

/* Journey Viewport */
.journey-viewport {
    position: absolute;
    inset: 0;
    transform-style: preserve-3d;
    perspective: 1200px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
    will-change: transform;
}

/* Journey Story Hub */
.journey-story-hub {
    position: absolute;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transition: transform 0.1s linear;
}

.journey-story-fragment {
    position: absolute;
    top: 50%;
    left: 50%;
    width: clamp(300px, 80vw, 420px);
    padding: clamp(24px, 4vw, 40px);
    background: #ffffff;
    border: 1px solid rgba(16, 185, 129, 0.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    border-radius: 32px;
    transform: translate(-50%, -50%);
    opacity: 0.1;
    will-change: transform, opacity;
    backface-visibility: hidden;
    transition: opacity 0.4s ease;
    /* Only transition opacity */
}

.journey-story-fragment.active {
    opacity: 1;
    transform: translate(-50%, -50%) translateZ(120px) scale(1.05);
    box-shadow: 0 12px 48px rgba(16, 185, 129, 0.15);
    border-color: rgba(16, 185, 129, 0.4);
}

.journey-number {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 15rem;
    font-weight: 800;
    color: var(--accent-primary);
    opacity: 0.04;
    z-index: 0;
    pointer-events: none;
    font-family: 'Outfit', sans-serif;
    user-select: none;
}

.journey-fragment-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.journey-chapter-label {
    display: block;
    font-family: 'Outfit', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 11px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--accent-primary);
    opacity: 0.9;
}

.journey-fragment-content h3 {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(20px, 3.5vw, 28px);
    font-weight: 600;
    margin-bottom: 16px;
    line-height: 1.2;
    color: var(--text-primary);
}

.journey-fragment-content p {
    font-size: clamp(14px, 1.6vw, 16px);
    line-height: 1.7;
    color: var(--text-secondary);
}

/* Journey Controls */
.journey-controls {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 24px;
    z-index: 100;
    pointer-events: all;
}

.journey-nav-arrow {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(16, 185, 129, 0.3);
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: var(--transition-smooth);
    color: var(--accent-primary);
}

.journey-nav-arrow svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.journey-nav-arrow:hover {
    background: var(--accent-primary);
    color: white;
    transform: scale(1.1);
    border-color: var(--accent-primary);
}

.journey-nav-indicator {
    display: flex;
    gap: 12px;
    background: rgba(255, 255, 255, 0.95);
    padding: 14px 24px;
    border-radius: 50px;
    border: 1px solid rgba(16, 185, 129, 0.2);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.journey-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(16, 185, 129, 0.3);
    border: none;
    cursor: pointer;
    transition: all 0.4s ease;
}

.journey-dot.active {
    width: 28px;
    border-radius: 10px;
    background: var(--accent-primary);
}

/* Journey Interaction Hint */
.journey-interaction-hint {
    position: absolute;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--text-muted);
    opacity: 0.6;
    pointer-events: none;
    z-index: 50;
}

/* Mobile Responsive for Journey Section */
@media (max-width: 1024px) {
    .journey-scene {
        height: 600px;
    }

    .journey-memory-core {
        width: 220px;
        height: 220px;
    }
}

@media (max-width: 768px) {
    .interactive-journey-section {
        padding: 80px 0 !important;
    }

    .journey-container {
        padding: 0 1rem;
    }

    .journey-scene {
        height: 500px;
        border-radius: 24px;
    }

    .journey-memory-core {
        width: 180px;
        height: 180px;
        opacity: 0.3;
    }

    .journey-story-fragment {
        width: clamp(260px, 90vw, 350px);
        padding: 24px;
    }

    .journey-story-fragment.active {
        transform: translate(-50%, -50%) translateZ(80px) scale(1);
    }

    .journey-controls {
        bottom: 24px;
        gap: 16px;
    }

    .journey-nav-arrow {
        width: 40px;
        height: 40px;
    }

    .journey-nav-indicator {
        padding: 10px 18px;
        gap: 8px;
    }

    .journey-dot {
        width: 6px;
        height: 6px;
    }

    .journey-dot.active {
        width: 20px;
    }

    .journey-interaction-hint {
        top: 20px;
        font-size: 10px;
    }
}

@media (max-width: 480px) {
    .journey-scene {
        height: 450px;
    }

    .journey-memory-core {
        width: 140px;
        height: 140px;
    }

    .journey-story-fragment {
        width: clamp(240px, 92vw, 320px);
        padding: 20px;
    }

    .journey-number {
        font-size: 8rem;
    }
}