/* CSS Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-purple: #6738FF;
    --purple-hover: #5a2fe6;
    --purple-light: rgba(103, 56, 255, 0.1);
    --purple-gradient: linear-gradient(135deg, #6738FF, #8B5CF6);
    
    --bg-primary: #FCFAFF;
    --bg-secondary: #F8F4FF;
    --bg-tertiary: #EDE7FF;
    
    --text-primary: #1A1A1A;
    --text-secondary: #6B7280;
    --text-muted: #9CA3AF;
    
    --font-family: 'Inter', system-ui, -apple-system, sans-serif;
    
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    
    --border-radius: 12px;
    --border-radius-lg: 20px;
    
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: var(--font-family);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(252, 250, 255, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(103, 56, 255, 0.1);
    z-index: 1000;
    transition: var(--transition);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 700;
    font-size: 1.25rem;
}

.logo {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-link:hover {
    color: var(--primary-purple);
}

.nav-cta {
    background: var(--primary-purple);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.nav-cta:hover {
    background: var(--purple-hover);
    transform: translateY(-1px);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 50%, var(--bg-tertiary) 100%);
}

.hero-background {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.6;
    animation: float 8s ease-in-out infinite;
}

.orb-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(103, 56, 255, 0.3), transparent);
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.orb-2 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.2), transparent);
    top: 60%;
    right: 20%;
    animation-delay: 2s;
}

.orb-3 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.15), transparent);
    bottom: 10%;
    left: 60%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) scale(1); }
    50% { transform: translateY(-20px) scale(1.1); }
}

.hero-content {
    text-align: center;
    z-index: 2;
    max-width: 800px;
    padding: 2rem;
}

.hero-badge {
    background: var(--purple-light);
    color: var(--primary-purple);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    display: inline-block;
    margin-bottom: 2rem;
    border: 2px solid rgba(103, 56, 255, 0.3);
    box-shadow: 0 8px 32px rgba(103, 56, 255, 0.12);
    animation: fadeInUp 0.8s ease-out;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.hero-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: heroBadgeShine 3s ease-in-out infinite;
    animation-delay: 1s;
}

@keyframes heroBadgeShine {
    0% { left: -100%; }
    100% { left: 100%; }
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.gradient-text {
    background: var(--purple-gradient);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% 200%;
    animation: gradientShift 3s ease infinite;
}

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

.hero-description {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Button Styles */
.cta-primary, .cta-secondary {
    padding: 1rem 2rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.cta-primary {
    background: var(--primary-purple);
    color: white;
}

.cta-primary:hover {
    background: var(--purple-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.cta-secondary {
    background: transparent;
    color: var(--primary-purple);
    border: 2px solid var(--primary-purple);
}

.cta-secondary:hover {
    background: var(--primary-purple);
    color: white;
    transform: translateY(-2px);
}

.cta-primary.large, .cta-secondary.large {
    padding: 1.25rem 2.5rem;
    font-size: 1.1rem;
}

/* Story Sections */
.story-section {
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
}

.story-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(103, 56, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(139, 92, 246, 0.08) 0%, transparent 50%);
    animation: gradientMove 15s ease-in-out infinite;
    z-index: 1;
}

.story-section.alt {
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-tertiary) 100%);
}

.story-section.alt::before {
    background: radial-gradient(circle at 80% 20%, rgba(103, 56, 255, 0.12) 0%, transparent 50%),
                radial-gradient(circle at 20% 80%, rgba(168, 85, 247, 0.08) 0%, transparent 50%);
}

@keyframes gradientMove {
    0%, 100% { 
        transform: translateX(0) translateY(0) scale(1); 
        opacity: 0.6;
    }
    33% { 
        transform: translateX(30px) translateY(-30px) scale(1.1); 
        opacity: 0.8;
    }
    66% { 
        transform: translateX(-20px) translateY(20px) scale(0.9); 
        opacity: 0.7;
    }
}

.story-card {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: center;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease-out;
    position: relative;
    z-index: 2;
}

.story-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.card-title {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-right: 2rem;
}

.card-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* Second story section - reverse layout: content left, title right */
.story-section.alt .story-card {
    grid-template-columns: 2fr 1fr;
}

.card-number {
    display: none;
}

.card-title h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    position: relative;
    transition: all 0.8s ease-out;
}

/* Initial hidden states for scroll animations */
.story-card[data-card="1"] h2 {
    opacity: 0;
    transform: translateX(-100px);
}

.story-card[data-card="2"] h2 {
    opacity: 0;
    transform: translateX(100px);
}

/* Scroll-triggered visible states */
.story-card.animate-title[data-card="1"] h2 {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 0.2s;
}

.story-card.animate-title[data-card="2"] h2 {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 0.2s;
}

.card-content p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

/* Story Visualizations */
.story-visual {
    padding: 2rem;
}

.problem-visualization, .solution-visualization {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.ai-agent, .ai-manager, .agent {
    background: white;
    border: 2px solid #E5E7EB;
    border-radius: var(--border-radius);
    padding: 1.5rem;
    font-weight: 600;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    white-space: nowrap;
}

.ai-agent.declining {
    border-color: #EF4444;
    animation: decline 2s ease-in-out infinite;
}

.ai-manager {
    background: var(--purple-gradient);
    color: white;
    border-color: var(--primary-purple);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    position: relative;
    z-index: 2;
}

.manager-circle {
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.manager-logo {
    width: 32px;
    height: 32px;
    border-radius: 50%;
}

.managed-agents {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    position: relative;
    z-index: 2;
}

.solution-visualization {
    position: relative;
    min-height: 300px;
}

.connection-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.agent.improving {
    border-color: #10B981;
    animation: improve 2s ease-in-out infinite;
}

@keyframes decline {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(0.95); opacity: 0.7; }
}

@keyframes improve {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); box-shadow: var(--shadow-lg); }
}

/* Story highlight labels - enhanced for brand storytelling */
.decline-label {
    font-size: 1.2rem;
    font-weight: 700;
    color: #EF4444;
    background: rgba(239, 68, 68, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    border: 2px solid rgba(239, 68, 68, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.2);
}

.improve-label {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-purple);
    background: var(--purple-light);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    border: 2px solid rgba(103, 56, 255, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(103, 56, 255, 0.2);
}

.improve-label::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
    animation: improveShine 2.5s ease-in-out infinite;
}

.performance-line {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-style: italic;
}

@keyframes improveShine {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* Vision Section */
.vision-section {
    padding: 8rem 0;
    background: var(--bg-primary);
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 4rem;
}

.section-header h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--text-secondary);
}

.vision-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.vision-card {
    background: white;
    padding: 2.5rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(50px) rotateX(15deg) rotateY(10deg);
    transform-style: preserve-3d;
    perspective: 1000px;
}

.vision-card.visible {
    opacity: 1;
    transform: translateY(0) rotateX(0deg) rotateY(0deg);
}

.vision-card.animate-3d {
    transform: translateY(-5px) rotateX(-2deg) rotateY(2deg) scale(1.02);
    box-shadow: 0 25px 50px -12px rgba(103, 56, 255, 0.25);
}

.vision-icon-container {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}

.vision-icon {
    width: 80px;
    height: 80px;
    position: relative;
    cursor: pointer;
    transition: var(--transition);
}

.vision-card.animate-3d .vision-icon {
    transform: rotateY(5deg) scale(1.05);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Production Icon */
.production-icon .icon-center {
    width: 24px;
    height: 24px;
    background: var(--primary-purple);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.production-icon .ring {
    position: absolute;
    border: 2px solid var(--primary-purple);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.7;
}

.production-icon .ring-1 {
    width: 40px;
    height: 40px;
    animation: ringPulse 2s ease-in-out infinite;
}

.production-icon .ring-2 {
    width: 56px;
    height: 56px;
    animation: ringPulse 2s ease-in-out infinite 0.5s;
}

.production-icon .ring-3 {
    width: 72px;
    height: 72px;
    animation: ringPulse 2s ease-in-out infinite 1s;
}

@keyframes ringPulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.7;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 0.3;
    }
}

/* Improvement Icon */
.improvement-icon .improvement-core {
    width: 16px;
    height: 16px;
    background: var(--primary-purple);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.improvement-icon .arrow {
    position: absolute;
    width: 20px;
    height: 4px;
    background: var(--primary-purple);
    border-radius: 2px;
    top: 50%;
    left: 50%;
    transform-origin: 10px 2px;
}

.improvement-icon .arrow::after {
    content: '';
    position: absolute;
    right: -6px;
    top: -3px;
    width: 0;
    height: 0;
    border-left: 8px solid var(--primary-purple);
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
}

.improvement-icon .arrow-1 {
    transform: translate(-50%, -50%) rotate(0deg);
    animation: arrowRotate 3s ease-in-out infinite;
}

.improvement-icon .arrow-2 {
    transform: translate(-50%, -50%) rotate(90deg);
    animation: arrowRotate 3s ease-in-out infinite 0.75s;
}

.improvement-icon .arrow-3 {
    transform: translate(-50%, -50%) rotate(180deg);
    animation: arrowRotate 3s ease-in-out infinite 1.5s;
}

.improvement-icon .arrow-4 {
    transform: translate(-50%, -50%) rotate(270deg);
    animation: arrowRotate 3s ease-in-out infinite 2.25s;
}

@keyframes arrowRotate {
    0%, 80%, 100% {
        opacity: 0.3;
        transform: translate(-50%, -50%) rotate(var(--rotation, 0deg)) scale(1);
    }
    10%, 70% {
        opacity: 1;
        transform: translate(-50%, -50%) rotate(var(--rotation, 0deg)) scale(1.2);
    }
}

/* Expertise Icon */
.expertise-icon .expertise-bolt {
    width: 16px;
    height: 32px;
    background: var(--primary-purple);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    clip-path: polygon(50% 0%, 0% 40%, 40% 40%, 0% 100%, 100% 60%, 60% 60%);
    animation: boltFlash 2s ease-in-out infinite;
}

@keyframes boltFlash {
    0%, 70%, 100% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
    10%, 60% {
        opacity: 0.3;
        transform: translate(-50%, -50%) scale(1.2);
    }
}

.expertise-icon .wave {
    position: absolute;
    border: 2px solid var(--primary-purple);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.expertise-icon .wave-1 {
    width: 40px;
    height: 40px;
    animation: waveExpand 2s ease-in-out infinite;
}

.expertise-icon .wave-2 {
    width: 56px;
    height: 56px;
    animation: waveExpand 2s ease-in-out infinite 0.3s;
}

.expertise-icon .wave-3 {
    width: 72px;
    height: 72px;
    animation: waveExpand 2s ease-in-out infinite 0.6s;
}

@keyframes waveExpand {
    0% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.8);
    }
    50% {
        opacity: 0.6;
    }
    100% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(1.2);
    }
}

.vision-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.vision-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Impact Section */
.impact-section {
    padding: 8rem 0;
    background: var(--bg-secondary);
}

.impact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.impact-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.impact-text p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.impact-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.stat {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-purple);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* AI Ecosystem Visualization */
.ai-ecosystem {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 400px;
}

.center-node {
    background: white;
    border: 3px solid var(--primary-purple);
    border-radius: 50%;
    width: 120px;
    height: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    box-shadow: var(--shadow-lg);
    z-index: 2;
}

.ecosystem-logo {
    width: 40px;
    height: 40px;
    margin-bottom: 0.5rem;
}

.ecosystem-agents {
    position: absolute;
    inset: 0;
}

.ecosystem-agent {
    position: absolute;
    background: white;
    border: 2px solid #E5E7EB;
    border-radius: var(--border-radius);
    padding: 1rem 1.5rem;
    font-weight: 600;
    box-shadow: var(--shadow-md);
    animation: orbit 10s linear infinite;
    transform-origin: 200px 200px;
}

.ecosystem-agent:nth-child(1) {
    top: 50px;
    left: 50%;
    transform-origin: 0 150px;
    animation-delay: var(--delay);
}

.ecosystem-agent:nth-child(2) {
    right: 50px;
    top: 50%;
    transform-origin: -150px 0;
    animation-delay: var(--delay);
}

.ecosystem-agent:nth-child(3) {
    bottom: 50px;
    left: 50%;
    transform-origin: 0 -150px;
    animation-delay: var(--delay);
}

.ecosystem-agent:nth-child(4) {
    left: 50px;
    top: 50%;
    transform-origin: 150px 0;
    animation-delay: var(--delay);
}

@keyframes orbit {
    from { transform: rotate(0deg) translateX(150px) rotate(0deg); }
    to { transform: rotate(360deg) translateX(150px) rotate(-360deg); }
}

/* Funding Section */
.funding-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, var(--bg-tertiary) 0%, rgba(103, 56, 255, 0.05) 100%);
}

.funding-card {
    background: white;
    border-radius: var(--border-radius-lg);
    padding: 4rem;
    box-shadow: var(--shadow-xl);
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(103, 56, 255, 0.1);
}

.funding-background {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.funding-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.4;
}

.funding-orb.orb-1 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(103, 56, 255, 0.3), transparent);
    top: -100px;
    right: -100px;
    animation: float 6s ease-in-out infinite;
}

.funding-orb.orb-2 {
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.2), transparent);
    bottom: -75px;
    left: -75px;
    animation: float 8s ease-in-out infinite reverse;
}

.funding-grid-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(103, 56, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(103, 56, 255, 0.03) 1px, transparent 1px);
    background-size: 30px 30px;
    animation: gridShift 20s linear infinite;
}

@keyframes gridShift {
    0% { transform: translateX(0) translateY(0); }
    100% { transform: translateX(30px) translateY(30px); }
}

.funding-content {
    position: relative;
    z-index: 2;
}

.funding-badge {
    background: var(--purple-gradient);
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    display: inline-block;
    margin-bottom: 2rem;
    box-shadow: 0 8px 32px rgba(103, 56, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.funding-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: badgeShine 3s ease-in-out infinite;
}

@keyframes badgeShine {
    0% { left: -100%; }
    100% { left: 100%; }
}

.funding-content h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--primary-purple) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.funding-vision {
    font-size: 1.3rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.world-impact {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.impact-metric {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(103, 56, 255, 0.02);
    border-radius: var(--border-radius);
    border: 1px solid rgba(103, 56, 255, 0.1);
    transition: var(--transition);
}

.impact-metric:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    background: rgba(103, 56, 255, 0.05);
}

.metric-icon {
    width: 60px;
    height: 60px;
    position: relative;
    flex-shrink: 0;
}

.metric-content {
    text-align: left;
}

.metric-content h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.metric-content p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin: 0;
}

/* Revolutionary Icon */
.revolutionary-icon .rev-center {
    width: 20px;
    height: 20px;
    background: var(--primary-purple);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: revPulse 3s ease-in-out infinite;
}

.revolutionary-icon .rev-orbit {
    position: absolute;
    border: 2px solid var(--primary-purple);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: revRotate 8s linear infinite;
}

.revolutionary-icon .orbit-1 {
    width: 40px;
    height: 40px;
    border-style: dashed;
    opacity: 0.6;
}

.revolutionary-icon .orbit-2 {
    width: 56px;
    height: 56px;
    animation-direction: reverse;
    animation-duration: 12s;
    opacity: 0.4;
}

@keyframes revPulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -50%) scale(1.2); }
}

@keyframes revRotate {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Market Icon */
.market-icon .market-graph {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: end;
    justify-content: center;
    gap: 4px;
}

.market-icon .graph-bar {
    width: 8px;
    background: var(--primary-purple);
    border-radius: 2px 2px 0 0;
    animation: barGrow 2s ease-in-out infinite;
}

.market-icon .bar-1 {
    height: 20px;
    animation-delay: 0s;
}

.market-icon .bar-2 {
    height: 35px;
    animation-delay: 0.2s;
}

.market-icon .bar-3 {
    height: 45px;
    animation-delay: 0.4s;
}

.market-icon .bar-4 {
    height: 55px;
    animation-delay: 0.6s;
}

@keyframes barGrow {
    0%, 50%, 100% { transform: scaleY(1); }
    25% { transform: scaleY(1.2); }
}

/* Team Icon */
.team-icon .team-constellation {
    width: 100%;
    height: 100%;
    position: relative;
}

.team-icon .team-star {
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--primary-purple);
    border-radius: 50%;
    animation: starTwinkle 3s ease-in-out infinite;
}

.team-icon .star-1 {
    top: 20%;
    left: 30%;
    animation-delay: 0s;
}

.team-icon .star-2 {
    top: 60%;
    right: 25%;
    animation-delay: 1s;
}

.team-icon .star-3 {
    bottom: 25%;
    left: 50%;
    animation-delay: 2s;
}

@keyframes starTwinkle {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.3; transform: scale(1.5); }
}

.funding-vision-statement {
    margin: 3rem 0;
    padding: 2rem;
    background: rgba(103, 56, 255, 0.02);
    border-left: 4px solid var(--primary-purple);
    border-right: 4px solid var(--primary-purple);
    border-radius: var(--border-radius);
}

.funding-vision-statement blockquote {
    font-size: 1.3rem;
    font-style: italic;
    color: var(--text-primary);
    line-height: 1.6;
    margin: 0;
    font-weight: 500;
}

.funding-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-primary.worldchanger {
    background: linear-gradient(135deg, var(--primary-purple) 0%, #8B5CF6 100%);
    position: relative;
    overflow: hidden;
}

.cta-primary.worldchanger::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* Footer */
.footer {
    background: var(--text-primary);
    color: white;
    padding: 2rem 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 700;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
    
    .nav-container {
        padding: 1rem;
    }
    
    .nav-links {
        display: none;
    }
    
    .hero-content {
        padding: 1rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .story-card {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .story-section.alt .story-card {
        grid-template-columns: 1fr;
        direction: ltr;
    }
    
    .vision-grid {
        grid-template-columns: 1fr;
    }
    
    .impact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .impact-stats {
        grid-template-columns: 1fr;
    }
    
    .funding-card {
        padding: 2rem;
    }
    
    .funding-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

