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

:root {
    --primary: #FFD700;
    --primary-dark: #E6C200;
    --secondary: #1A1A1A;
    --accent: #FF6B35;
    --text-primary: #0A0A0A;
    --text-secondary: #4A4A4A;
    --text-muted: #8A8A8A;
    --bg-primary: #FFFFFF;
    --bg-secondary: #FAFAFA;
    --bg-tertiary: #F5F5F5;
    --border: #E5E5E5;
    --shadow: rgba(0, 0, 0, 0.1);
    --gradient-primary: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    --gradient-secondary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-accent: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
}

body {
    font-family: 'Inter', system-ui, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    overflow-x: hidden;
}

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

/* Animated Background */
.animated-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

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

.orb-1 {
    width: 400px;
    height: 400px;
    background: var(--gradient-primary);
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.orb-2 {
    width: 300px;
    height: 300px;
    background: var(--gradient-secondary);
    bottom: 20%;
    left: 10%;
    animation-delay: 2s;
}

.orb-3 {
    width: 200px;
    height: 200px;
    background: var(--gradient-accent);
    top: 60%;
    right: 30%;
    animation-delay: 4s;
}

.floating-particles {
    position: absolute;
    width: 100%;
    height: 100%;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--primary);
    border-radius: 50%;
    animation: particle-float 10s linear infinite;
}

.particle:nth-child(1) { left: 10%; animation-delay: 0s; }
.particle:nth-child(2) { left: 30%; animation-delay: 2s; }
.particle:nth-child(3) { left: 50%; animation-delay: 4s; }
.particle:nth-child(4) { left: 70%; animation-delay: 6s; }
.particle:nth-child(5) { left: 90%; animation-delay: 8s; }

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

@keyframes particle-float {
    0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateY(-100vh) rotate(360deg); opacity: 0; }
}

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
    transition: all 0.3s ease;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Space Grotesk', sans-serif;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: transform 0.3s ease;
}

.logo-icon:hover {
    transform: scale(1.1) rotate(10deg);
}

.logo-text {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
}

.nav-desktop {
    display: flex;
    align-items: center;
    gap: 40px;
}

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

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

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

.nav-link:hover::after {
    width: 100%;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    font-size: 14px;
}

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

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--border);
    color: var(--text-primary);
}

.btn-outline:hover {
    background: var(--bg-secondary);
    border-color: var(--primary);
}

.btn-lg {
    padding: 16px 32px;
    font-size: 16px;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-secondary);
}

.nav-mobile {
    display: none;
    padding: 20px 0;
    border-top: 1px solid var(--border);
}

.nav-mobile-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 50px;
    color: var(--primary-dark);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
    animation: pulse 2s infinite;
}

.badge-icon {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 64px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
}

.title-line {
    display: block;
    color: var(--text-primary);
}

.title-gradient {
    display: block;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 20px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 60px;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 32px;
    padding-top: 40px;
    border-top: 1px solid var(--border);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 32px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 4px;
}

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

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--border);
}

/* Hero Visual */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.floating-card {
    background: white;
    border-radius: 24px;
    padding: 32px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border);
    backdrop-filter: blur(20px);
    position: relative;
    z-index: 10;
    animation: float 6s ease-in-out infinite;
}

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

.card-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
}

.status-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #10B981;
    font-size: 12px;
    font-weight: 600;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #10B981;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.phase-preview {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.phase-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    border-radius: 16px;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

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

.phase-item:hover::before {
    left: 100%;
}

.phase-1 {
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.phase-1:hover {
    background: rgba(255, 215, 0, 0.15);
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(255, 215, 0, 0.2);
}

.phase-2 {
    background: rgba(102, 126, 234, 0.1);
    border: 1px solid rgba(102, 126, 234, 0.3);
}

.phase-2:hover {
    background: rgba(102, 126, 234, 0.15);
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(102, 126, 234, 0.2);
}

.phase-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
}

.phase-1 .phase-icon {
    background: var(--gradient-primary);
}

.phase-2 .phase-icon {
    background: var(--gradient-secondary);
}

.phase-item:hover .phase-icon {
    transform: rotate(10deg) scale(1.1);
}

.phase-content h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.phase-content p {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.phase-metrics {
    font-size: 14px;
    font-weight: 700;
    color: #10B981;
}

.phase-arrow {
    display: flex;
    justify-content: center;
    color: var(--text-muted);
    transition: all 0.3s ease;
}

.floating-elements {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.floating-icon {
    position: absolute;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    animation: float 4s ease-in-out infinite;
    transition: all 0.3s ease;
    cursor: pointer;
    pointer-events: auto;
}

.floating-icon:hover {
    transform: rotate(15deg) scale(1.2);
}

.icon-1 {
    top: -20px;
    right: -20px;
    background: var(--gradient-accent);
    animation-delay: 0s;
}

.icon-2 {
    bottom: -20px;
    left: -20px;
    background: var(--gradient-secondary);
    animation-delay: 1s;
}

.icon-3 {
    top: 50%;
    right: -40px;
    background: var(--gradient-primary);
    animation-delay: 2s;
}

/* Section Styles */
section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 50px;
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
}

.section-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.section-description {
    font-size: 20px;
    color: var(--text-secondary);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

/* Vision Section */
.vision {
    background: var(--bg-secondary);
}

.vision-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.vision-card {
    background: white;
    padding: 40px;
    border-radius: 24px;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.vision-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.vision-card:hover::before {
    transform: scaleX(1);
}

.vision-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.vision-card.featured {
    background: var(--gradient-primary);
    color: white;
    transform: scale(1.05);
}

.vision-card.featured:hover {
    transform: scale(1.05) translateY(-8px);
}

.card-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    background: rgba(255, 215, 0, 0.1);
    color: var(--primary-dark);
    transition: all 0.3s ease;
}

.vision-card:hover .card-icon {
    transform: rotate(10deg) scale(1.1);
}

.vision-card.featured .card-icon {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.vision-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
}

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

.vision-card.featured p {
    color: rgba(255, 255, 255, 0.9);
}

/* Additional Interactive Elements */
.feature-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 60px;
}

.feature-card {
    background: white;
    padding: 32px;
    border-radius: 20px;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.feature-card::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(102, 126, 234, 0.1));
    transition: width 0.3s ease;
}

.feature-card:hover::after {
    width: 100%;
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.feature-card-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 10;
}

.feature-card:hover .feature-card-icon {
    transform: rotate(12deg) scale(1.1);
}

.feature-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
    position: relative;
    z-index: 10;
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.5;
    position: relative;
    z-index: 10;
}

.metric-cards {
    display: flex;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.metric-card {
    flex: 1;
    min-width: 200px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    padding: 24px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.metric-card:hover {
    transform: translateY(-4px) scale(1.02);
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.metric-number {
    font-size: 28px;
    font-weight: 800;
    color: var(--primary-dark);
    margin-bottom: 8px;
}

.metric-label {
    font-size: 14px;
    color: var(--text-secondary);
    font-weight: 500;
}

/* ... keep existing code (rest of the CSS remains the same) */

/* Phases Section */
.phases {
    background: var(--bg-primary);
}

.phases-container {
    max-width: 1000px;
    margin: 0 auto;
}

.phase-timeline {
    position: relative;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--border);
    transform: translateX(-50%);
}

.phase-block {
    display: flex;
    align-items: center;
    margin-bottom: 80px;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
}

.phase-block:hover {
    transform: scale(1.02);
}

.phase-block:nth-child(odd) {
    flex-direction: row;
}

.phase-block:nth-child(even) {
    flex-direction: row-reverse;
}

.phase-block:nth-child(odd) .phase-content {
    margin-left: 60px;
}

.phase-block:nth-child(even) .phase-content {
    margin-right: 60px;
}

.phase-header {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    border: 4px solid var(--border);
    border-radius: 20px;
    padding: 16px;
    text-align: center;
    z-index: 10;
    min-width: 200px;
    transition: all 0.3s ease;
}

.phase-block:hover .phase-header {
    transform: translateX(-50%) scale(1.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.phase-1 .phase-header {
    border-color: var(--primary);
}

.phase-2 .phase-header {
    border-color: #667eea;
}

.phase-number {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 4px;
}

.phase-1 .phase-number {
    color: var(--primary-dark);
}

.phase-2 .phase-number {
    color: #667eea;
}

.phase-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.phase-status {
    font-size: 12px;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 8px;
}

.phase-1 .phase-status {
    background: rgba(255, 215, 0, 0.2);
    color: var(--primary-dark);
}

.phase-2 .phase-status {
    background: rgba(102, 126, 234, 0.2);
    color: #667eea;
}

.phase-content {
    background: white;
    padding: 40px;
    border-radius: 24px;
    border: 1px solid var(--border);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    flex: 1;
    max-width: 450px;
    transition: all 0.3s ease;
}

.phase-content:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.phase-description {
    margin-bottom: 32px;
}

.phase-description p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 32px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.feature-item:hover {
    color: var(--text-primary);
    transform: translateX(4px);
}

.feature-item i {
    width: 20px;
    height: 20px;
    color: var(--primary-dark);
    transition: all 0.3s ease;
}

.feature-item:hover i {
    transform: rotate(10deg) scale(1.1);
}

.pricing-card {
    background: var(--bg-secondary);
    padding: 24px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    background: rgba(255, 215, 0, 0.1);
    transform: scale(1.05);
}

.price {
    font-size: 28px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.price-period {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.price-desc {
    font-size: 12px;
    color: var(--text-muted);
}

.phase-connector {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 5;
}

.connector-line {
    width: 2px;
    height: 40px;
    background: var(--border);
}

.connector-icon {
    width: 40px;
    height: 40px;
    background: white;
    border: 2px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: all 0.3s ease;
}

.connector-icon:hover {
    transform: rotate(90deg) scale(1.2);
    border-color: var(--primary);
    color: var(--primary-dark);
}

/* Market Section */
.market {
    background: var(--bg-secondary);
}

.market-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
}

.market-card {
    background: white;
    padding: 40px;
    border-radius: 24px;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 24px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.market-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.market-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.market-card:hover .market-icon {
    transform: rotate(10deg) scale(1.1);
}

.market-number {
    font-size: 32px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.market-label {
    font-size: 14px;
    color: var(--text-secondary);
    font-weight: 500;
}

/* Roadmap Section */
.roadmap {
    background: var(--bg-primary);
}

.roadmap-container {
    max-width: 800px;
    margin: 0 auto;
}

.roadmap-timeline {
    position: relative;
}

.roadmap-timeline::before {
    content: '';
    position: absolute;
    left: 40px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--border);
}

.timeline-progress {
    position: absolute;
    left: 40px;
    top: 0;
    width: 2px;
    background: var(--gradient-primary);
    height: 80%;
    transition: height 2s ease;
}

.roadmap-item {
    position: relative;
    padding-left: 100px;
    margin-bottom: 60px;
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.6s ease;
    cursor: pointer;
}

.roadmap-item.animate {
    opacity: 1;
    transform: translateX(0);
}

.roadmap-item:hover {
    transform: translateX(8px) scale(1.02);
}

.roadmap-marker {
    position: absolute;
    left: 24px;
    top: 20px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
    z-index: 10;
    transition: all 0.3s ease;
}

.roadmap-item:hover .roadmap-marker {
    transform: rotate(15deg) scale(1.2);
}

.roadmap-item.completed .roadmap-marker {
    background: #10B981;
    box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.2);
}

.roadmap-item.current .roadmap-marker {
    background: var(--primary);
    position: relative;
}

.progress-ring {
    width: 32px;
    height: 32px;
    border: 3px solid var(--border);
    border-radius: 50%;
    position: relative;
    background: white;
}

.progress-circle {
    position: absolute;
    top: -3px;
    left: -3px;
    width: 32px;
    height: 32px;
    border: 3px solid var(--primary);
    border-radius: 50%;
    border-right-color: transparent;
    animation: spin 2s linear infinite;
}

.roadmap-item.future .roadmap-marker {
    background: var(--bg-secondary);
    border: 2px solid var(--border);
    color: var(--text-muted);
}

.roadmap-content {
    background: white;
    padding: 32px;
    border-radius: 24px;
    border: 1px solid var(--border);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.roadmap-content:hover::before {
    left: 100%;
}

.roadmap-content:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.roadmap-date {
    color: var(--primary-dark);
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 8px;
}

.roadmap-content h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.roadmap-content p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 16px;
}

.roadmap-status {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.roadmap-status.completed {
    background: rgba(16, 185, 129, 0.1);
    color: #10B981;
}

.roadmap-status.current {
    background: rgba(255, 215, 0, 0.2);
    color: var(--primary-dark);
}

.roadmap-status.future {
    background: var(--bg-secondary);
    color: var(--text-muted);
}

/* CTA Section */
.cta {
    background: var(--gradient-primary);
    color: white;
    text-align: center;
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
}

.cta h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 16px;
}

.cta p {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
}

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

.cta .btn-outline {
    border-color: white;
    color: white;
}

.cta .btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Footer */
.footer {
    background: var(--secondary);
    color: white;
    padding: 60px 0 40px;
}

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

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.footer-contact h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 16px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
}

/* Animations */
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* AOS Animation Setup */
[data-aos] {
    opacity: 0;
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos].aos-animate {
    opacity: 1;
}

[data-aos="fade-up"] {
    transform: translateY(20px);
}

[data-aos="fade-up"].aos-animate {
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 48px;
    }
    
    .phase-block {
        flex-direction: column !important;
        text-align: center;
    }
    
    .phase-block .phase-content {
        margin: 80px 0 0 0 !important;
        max-width: 100%;
    }
    
    .phase-header {
        position: relative;
        transform: none;
        left: auto;
        margin-bottom: 40px;
    }
    
    .timeline-line {
        display: none;
    }
    
    .feature-cards-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .metric-cards {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .nav-desktop {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .nav-mobile.show {
        display: block;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .stat-divider {
        width: 40px;
        height: 1px;
    }
    
    .vision-grid {
        grid-template-columns: 1fr;
    }
    
    .market-grid {
        grid-template-columns: 1fr;
    }
    
    .market-card {
        flex-direction: column;
        text-align: center;
    }
    
    .feature-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .roadmap-item {
        padding-left: 60px;
    }
    
    .roadmap-timeline::before {
        left: 20px;
    }
    
    .roadmap-marker {
        left: 4px;
    }
    
    .timeline-progress {
        left: 20px;
    }
    
    .feature-cards-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .cta h2 {
        font-size: 32px;
    }
    
    .btn-lg {
        padding: 12px 24px;
        font-size: 14px;
    }
}
