/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

:root {
    /* Colors - App-Aligned Blue Dominant */
    --bg-primary: #0a0a0a;
    --bg-secondary: #1a1a1a;
    --bg-tertiary: #2a2a2a;
    
    --primary: #1565C0;        /* Deep Blue from App (Main) */
    --primary-hover: #1E88E5;  /* Light Blue hover */
    --primary-glow: #42A5F5;   /* Lighter Blue glow */
    
    --accent: #64B5F6;         /* Light Blue for highlights */
    --accent-hover: #90CAF9;   /* Even lighter hover */
    --accent-light: #BBDEFB;   /* Subtle blue tint */
    
    --highlight: #00cc88;      /* Green for special CTAs only */
    --highlight-hover: #00aa70;
    --highlight-glow: #00ffaa; /* Bright green glow */
    
    --text: #e0e0e0;
    --text-muted: #999999;
    --text-dark: #666666;
    
    --danger: #ff6b6b;
    --code-bg: #1e1e1e;
    
    /* Glassmorphism */
    --glass-bg: rgba(26, 26, 26, 0.4);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-shadow: rgba(0, 0, 0, 0.3);
    --glass-blur: 20px;
    
    --glass-light: rgba(255, 255, 255, 0.05);
    --glass-lighter: rgba(255, 255, 255, 0.1);
    
    /* Gradients - Blue Dominant */
    --gradient-primary: linear-gradient(135deg, #1565C0, #42A5F5);
    --gradient-accent: linear-gradient(135deg, #1E88E5, #64B5F6);
    --gradient-hero: linear-gradient(135deg, #1565C0 0%, #64B5F6 100%);
    --gradient-highlight: linear-gradient(135deg, #00cc88, #00ffaa);
    
    /* Shadows & Glow - Blue Focused */
    --glow-primary: 0 0 40px rgba(21, 101, 192, 0.5);
    --glow-accent: 0 0 40px rgba(66, 165, 245, 0.4);
    --glow-highlight: 0 0 40px rgba(0, 204, 136, 0.4);
    --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.4);
    
    /* Fonts */
    --font-heading: 'IBM Plex Sans', sans-serif;
    --font-body: 'IBM Plex Sans', sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
    
    /* Spacing */
    --container-width: 1200px;
    --section-padding: 6rem 2rem;
    
    /* Animation */
    --transition-smooth: cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

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

/* Animated Background Gradient */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(21, 101, 192, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(66, 165, 245, 0.15) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
    animation: gradientShift 15s ease infinite;
}

@keyframes gradientShift {
    0%, 100% { opacity: 1; transform: translateY(0); }
    50% { opacity: 0.8; transform: translateY(-20px); }
}

body > * {
    position: relative;
    z-index: 1;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
}

/* Navbar - Glassmorphism Enhanced */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 12, 0.3);
    backdrop-filter: blur(var(--glass-blur)) saturate(180%);
    -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(180%);
    z-index: 1000;
    border-bottom: 1px solid var(--glass-border);
    transition: all 0.4s var(--transition-smooth);
    padding: 0.75rem 0;
}

.navbar.scrolled {
    background: rgba(10, 10, 10, 0.8);
    box-shadow: 0 4px 30px var(--glass-shadow);
    padding: 0.5rem 0;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.25rem;
    color: #ffffff;
    text-decoration: none;
    transition: opacity 0.3s var(--transition-smooth);
    outline: none;
}

.logo:hover {
    opacity: 0.8;
}

.logo:focus {
    outline: none;
    box-shadow: none;
}

.logo:focus-visible {
    outline: none;
}

.logo img {
    border-radius: 8px;
    transition: transform 0.3s var(--transition-smooth);
}

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

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

.nav-links a {
    color: var(--text);
    text-decoration: none;
    transition: all 0.3s var(--transition-smooth);
    font-size: 0.95rem;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    outline: none;
}

.nav-links a:focus {
    outline: none;
    box-shadow: none;
}

.nav-links a:hover {
    color: var(--primary);
    background: rgba(21, 101, 192, 0.08);
}

/* Nav Buttons - Compact sizing for navbar */
.nav-links .btn-secondary,
.nav-links .btn-primary {
    padding: 0.5rem 1.25rem;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-links .btn-primary svg {
    fill: currentColor;
}

/* Buttons - Enhanced with Glassmorphism */
.btn-primary {
    background: var(--gradient-primary);
    color: #ffffff;
    padding: 0.875rem 1.75rem;
    border-radius: 12px;
    text-decoration: none;
    font-family: var(--font-body);
    font-weight: 600;
    transition: all 0.4s var(--transition-smooth);
    border: none;
    cursor: pointer;
    display: inline-block;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(21, 101, 192, 0.4);
    outline: none;
}

.btn-primary:focus {
    outline: none;
    box-shadow: 0 4px 20px rgba(21, 101, 192, 0.4), 0 0 0 3px rgba(21, 101, 192, 0.2);
}

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

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

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: var(--glow-primary), 0 8px 32px rgba(21, 101, 192, 0.5);
}

.btn-secondary {
    background: var(--glass-light);
    backdrop-filter: blur(10px);
    color: var(--text);
    padding: 0.875rem 1.75rem;
    border-radius: 12px;
    text-decoration: none;
    font-family: var(--font-body);
    font-weight: 600;
    transition: all 0.4s var(--transition-smooth);
    border: 2px solid var(--glass-border);
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-secondary svg {
    fill: currentColor;
}

.btn-secondary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.4s;
}

.btn-secondary:hover::before {
    opacity: 0.1;
}

.btn-secondary:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(21, 101, 192, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    padding: 0.75rem 1.5rem;
    border-radius: 10px;
    text-decoration: none;
    font-family: var(--font-body);
    font-weight: 500;
    transition: all 0.4s var(--transition-bounce);
    border: 2px solid var(--primary);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    overflow: hidden;
    outline: none;
}

.btn-outline:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(21, 101, 192, 0.2);
}

.btn-outline::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.4s;
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--bg-primary);
    box-shadow: var(--glow-primary);
    transform: scale(1.05);
}

.btn-outline:hover::before {
    opacity: 1;
}

.full-width {
    width: 100%;
    text-align: center;
    justify-content: center;
}

/* Hero Section */
.hero {
    padding: 10rem 2rem 6rem;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

/* Video Background */
.hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.hero-video-bg video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    opacity: 0.3;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
                rgba(10, 10, 12, 0.85) 0%, 
                rgba(10, 10, 12, 0.75) 50%,
                rgba(21, 101, 192, 0.15) 100%);
    backdrop-filter: blur(2px);
    z-index: 1;
}

.hero-desktop {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

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

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

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.hero-badges {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.badge {
    background: var(--glass-light);
    backdrop-filter: blur(10px);
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    font-size: 0.875rem;
    border: 1px solid var(--glass-border);
    transition: all 0.3s var(--transition-bounce);
    position: relative;
    overflow: hidden;
}

.badge::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.3s;
}

.badge:hover {
    transform: translateY(-2px) scale(1.05);
    border-color: var(--primary);
    box-shadow: 0 4px 15px rgba(21, 101, 192, 0.4);
}

.badge:hover::before {
    opacity: 0.15;
}

.hero-cta {
    display: flex;
    gap: 1rem;
}

/* Phone Mockup - Enhanced Glassmorphism */
.phone-mockup {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: float 6s ease-in-out infinite;
}

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

.phone-frame {
    width: 350px;
    height: 700px;
    background: var(--glass-bg);
    backdrop-filter: blur(var(--glass-blur));
    border-radius: 40px;
    padding: 12px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6), 
                0 0 60px rgba(255, 255, 255, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border: 2px solid var(--glass-border);
    position: relative;
    transition: transform 0.3s var(--transition-smooth);
}

.phone-frame::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 40px;
    background: linear-gradient(135deg, 
                rgba(21, 101, 192, 0.1) 0%, 
                transparent 50%,
                rgba(66, 165, 245, 0.1) 100%);
    pointer-events: none;
}

.phone-frame:hover {
    transform: scale(1.02) translateY(-10px);
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.7), 
                0 0 80px rgba(255, 255, 255, 0.4),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: var(--bg-primary);
    border-radius: 30px;
    overflow: hidden;
}

.phone-screenshot {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* ================================
   Hero Carousel (Mobile Only)
   ================================ */
.hero-carousel {
    display: none;
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-carousel-wrapper {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.hero-slides {
    display: flex;
    width: 100%;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.hero-slide {
    min-width: 100%;
    min-height: 60vh;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
}

.hero-slide .hero-text {
    text-align: center;
    width: 100%;
    max-width: 600px;
}

.hero-slide .hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.carousel-dots {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-top: 2rem;
    padding: 1rem 0;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: transparent;
    border: 2px solid var(--primary);
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dot:hover {
    transform: scale(1.2);
    border-color: var(--primary-hover);
}

.carousel-dot.active {
    background: var(--primary);
    transform: scale(1.3);
    box-shadow: 0 0 10px rgba(21, 101, 192, 0.6);
}

.chat-ui {
    padding: 1rem;
}

.chat-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--bg-tertiary);
    margin-bottom: 1rem;
}

.avatar {
    width: 40px;
    height: 40px;
    background: var(--primary);
    border-radius: 50%;
}

.chat-messages {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.message {
    display: flex;
}

.message.sent {
    justify-content: flex-end;
}

.message-bubble {
    background: rgba(21, 101, 192, 0.15);
    padding: 0.75rem 1rem;
    border-radius: 16px;
    max-width: 70%;
    font-size: 0.875rem;
}

.message.sent .message-bubble {
    background: var(--primary);
    color: var(--bg-primary);
}

/* Trust Section */
.trust-section {
    padding: var(--section-padding);
    background: transparent;
}

.trust-headline {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1.5rem;
    text-align: center;
}

.trust-description {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--text);
    opacity: 0.9;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.trust-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.trust-feature {
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    padding: 2.5rem 2rem;
    border-radius: 16px;
    border: 2px solid var(--glass-border);
    text-align: center;
    transition: all 0.4s var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.trust-feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.4s;
}

.trust-feature:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: 0 12px 40px rgba(21, 101, 192, 0.3);
}

.trust-feature:hover::before {
    opacity: 1;
}

.trust-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(21, 101, 192, 0.1);
    border-radius: 50%;
    border: 2px solid var(--glass-border);
}

.trust-icon svg {
    stroke: var(--primary);
    transition: all 0.4s;
}

.trust-feature:hover .trust-icon svg {
    stroke: var(--accent);
    transform: scale(1.1);
}

.trust-feature h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.trust-feature p {
    color: var(--text);
    opacity: 0.9;
    line-height: 1.6;
}

/* Old styles kept for backwards compatibility */
.trust-quote {
    text-align: center;
    margin-bottom: 4rem;
}

.trust-quote blockquote {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 600;
    color: #ffffff;
    border-left: 4px solid var(--primary);
    padding-left: 2rem;
    display: inline-block;
    text-align: left;
}

.trust-comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

/* Trust Card - Glassmorphism Enhanced */
.trust-card {
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    padding: 2rem;
    border-radius: 16px;
    border: 2px solid var(--glass-border);
    position: relative;
    transition: all 0.4s var(--transition-smooth);
    overflow: hidden;
}

.trust-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.4s;
}

.trust-card:hover::before {
    opacity: 1;
}

.trust-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-card), 0 0 40px rgba(21, 101, 192, 0.3);
    border-color: var(--glass-lighter);
}

.trust-card.highlight {
    border-color: var(--primary);
    background: rgba(21, 101, 192, 0.08);
    box-shadow: var(--glow-primary);
}

.trust-card.highlight::before {
    opacity: 1;
}

.trust-card h3 {
    font-family: var(--font-heading);
    margin-bottom: 1.5rem;
    text-align: center;
}

.trust-flow {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: center;
}

.flow-step {
    background: var(--bg-tertiary);
    padding: 1rem 1.5rem;
    border-radius: 8px;
    text-align: center;
    width: 100%;
}

.flow-arrow {
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* Features Section */
.features-section {
    padding: var(--section-padding);
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    font-size: 1.125rem;
    color: var(--text-muted);
    margin-bottom: 4rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

/* Feature Card - Glassmorphism Enhanced */
.feature-card {
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    transition: all 0.5s var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, 
                rgba(21, 101, 192, 0.15) 0%, 
                transparent 70%);
    opacity: 0;
    transition: opacity 0.5s;
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card:hover {
    border-color: var(--primary);
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-card), var(--glow-primary);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon svg {
    width: 48px;
    height: 48px;
    stroke: var(--primary);
}

.feature-card h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.feature-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* GitHub Section */
.github-section {
    padding: var(--section-padding);
    background: transparent;
}

.github-repos {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

/* Repo Card - Glassmorphism */
.repo-card {
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid var(--glass-border);
    transition: all 0.4s var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.repo-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-accent);
    opacity: 0;
    transition: opacity 0.4s;
}

.repo-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-card), var(--glow-accent);
    border-color: var(--accent);
}

.repo-card:hover::before {
    opacity: 1;
}

.repo-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.repo-header svg {
    color: var(--accent);
    transition: transform 0.3s;
}

.repo-card:hover .repo-header svg {
    transform: scale(1.1) rotate(5deg);
}

.repo-header h3 {
    font-family: var(--font-mono);
    font-size: 1rem;
}

.repo-card p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.repo-stats {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.repo-stats span {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.status-active {
    color: var(--primary) !important;
}

.repo-link {
    color: var(--accent);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
    outline: none;
}

.repo-link:hover {
    color: var(--primary);
    text-decoration: underline;
    text-underline-offset: 4px;
}

.repo-link:focus {
    outline: none;
}

/* Tech Section */
/* ========================================
   ROADMAP TIMELINE SECTION
   ======================================== */

.roadmap-section {
    padding: var(--section-padding);
    background: linear-gradient(180deg,
                rgba(10, 10, 12, 0.8) 0%,
                rgba(21, 101, 192, 0.08) 50%,
                rgba(10, 10, 12, 0.8) 100%);
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(21, 101, 192, 0.1);
    border-bottom: 1px solid rgba(21, 101, 192, 0.1);
}

.roadmap-section .section-title {
    font-size: 3.5rem;
    color: #ffffff;
    text-shadow: 0 0 40px rgba(255, 255, 255, 0.3);
}

.roadmap-section .section-subtitle {
    font-size: 1.5rem;
    color: var(--text-muted);
}

.roadmap-timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    padding: 2rem 0;
}

/* Vertical Timeline Line */
.roadmap-timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, 
                var(--primary) 0%, 
                var(--accent) 50%, 
                rgba(100, 181, 246, 0.3) 100%);
}

/* Timeline Item */
.timeline-item {
    position: relative;
    padding-left: 80px;
    margin-bottom: 3rem;
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

.timeline-item:nth-child(1) { animation-delay: 0.1s; }
.timeline-item:nth-child(2) { animation-delay: 0.3s; }
.timeline-item:nth-child(3) { animation-delay: 0.5s; }

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

/* Timeline Marker (Dot on line) */
.timeline-marker {
    position: absolute;
    left: 20px;
    top: 10px;
    width: 20px;
    height: 20px;
    background: var(--primary);
    border: 3px solid var(--bg);
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(21, 101, 192, 0.2),
                0 0 20px rgba(21, 101, 192, 0.4);
    z-index: 2;
    transition: all 0.3s ease;
}

.timeline-item:hover .timeline-marker {
    transform: scale(1.3);
    box-shadow: 0 0 0 6px rgba(21, 101, 192, 0.3),
                0 0 30px rgba(21, 101, 192, 0.6);
}

/* Timeline Content */
.timeline-content {
    background: linear-gradient(135deg, 
                rgba(26, 26, 26, 0.6) 0%, 
                rgba(26, 26, 26, 0.3) 100%);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 12px;
    border-left: 3px solid var(--primary);
    position: relative;
    transition: all 0.3s ease;
}

.timeline-content::before {
    content: '';
    position: absolute;
    left: -12px;
    top: 15px;
    width: 0;
    height: 0;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-right: 10px solid var(--primary);
}

.timeline-item:hover .timeline-content {
    transform: translateX(5px);
    background: linear-gradient(135deg, 
                rgba(21, 101, 192, 0.15) 0%, 
                rgba(26, 26, 26, 0.4) 100%);
    border-left-color: var(--accent);
}

/* Timeline Badge */
.timeline-badge {
    display: inline-block;
    background: var(--primary);
    color: #ffffff;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
}

.timeline-content h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.75rem;
}

.timeline-content p {
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

/* Large Button */
.btn-large {
    padding: 1.25rem 3rem;
    font-size: 1.125rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* ========================================
   HOW IT WORKS SECTION
   ======================================== */

.how-it-works-section {
    padding: var(--section-padding);
    background: linear-gradient(180deg, 
                transparent 0%, 
                rgba(21, 101, 192, 0.03) 50%, 
                transparent 100%);
}

.how-it-works-section .section-title {
    color: var(--primary);
}

.steps-flow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Individual Step */
.step {
    flex: 1;
    text-align: center;
    position: relative;
}

/* Step Number Circle */
.step-number {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: #ffffff;
    font-weight: 700;
    box-shadow: 0 8px 30px rgba(21, 101, 192, 0.4),
                0 0 0 0 rgba(21, 101, 192, 0.7);
    animation: pulse 2s infinite;
    transition: all 0.3s ease;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 8px 30px rgba(21, 101, 192, 0.4),
                    0 0 0 0 rgba(21, 101, 192, 0.7);
    }
    50% {
        box-shadow: 0 8px 30px rgba(21, 101, 192, 0.6),
                    0 0 0 20px rgba(21, 101, 192, 0);
    }
}

.step:hover .step-number {
    transform: scale(1.1);
    animation: none;
}

/* Step Content */
.step-content h3 {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

.step-content p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.8;
}

/* Arrow Between Steps */
.step-arrow {
    color: var(--accent);
    opacity: 0.5;
    flex-shrink: 0;
}

.step-arrow svg {
    display: block;
}

/* ========================================
   NODES SECTION
   ======================================== */

.nodes-section {
    padding: var(--section-padding);
    background: linear-gradient(180deg,
                rgba(10, 10, 12, 0.8) 0%,
                rgba(21, 101, 192, 0.05) 50%,
                rgba(10, 10, 12, 0.8) 100%);
    position: relative;
    overflow: hidden;
}

.nodes-hero {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.nodes-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    text-shadow: 0 0 40px rgba(255, 255, 255, 0.3);
}

.nodes-subtitle {
    font-size: 1.5rem;
    color: var(--text-muted);
    margin-bottom: 4rem;
}

/* Node Visual Grid */
.node-visual {
    position: relative;
    height: 300px;
    margin-bottom: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.node-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 100px;
    position: relative;
}

.node-point {
    width: 20px;
    height: 20px;
    background: var(--primary);
    border-radius: 50%;
    position: relative;
    box-shadow: 0 0 20px var(--primary),
                0 0 40px var(--primary),
                0 0 60px var(--primary);
    animation: pulse-node 2s ease-in-out infinite;
}

.node-point:nth-child(1) { animation-delay: 0s; }
.node-point:nth-child(2) { animation-delay: 0.2s; }
.node-point:nth-child(3) { animation-delay: 0.4s; }
.node-point:nth-child(4) { animation-delay: 0.6s; }
.node-point:nth-child(5) { animation-delay: 0.8s; }
.node-point:nth-child(6) { animation-delay: 1s; }
.node-point:nth-child(7) { animation-delay: 1.2s; }
.node-point:nth-child(8) { animation-delay: 1.4s; }
.node-point:nth-child(9) { animation-delay: 1.6s; }

@keyframes pulse-node {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.5);
        opacity: 0.6;
    }
}

/* Node Stats */
.node-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-bottom: 5rem;
}

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

.stat-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    width: 80px;
    height: 80px;
    transition: all 0.3s;
}

.stat-icon svg {
    width: 48px;
    height: 48px;
    color: var(--accent);
    transition: all 0.3s;
}

.stat-item:hover .stat-icon svg {
    color: var(--primary);
    transform: scale(1.2);
}

.stat-item h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.stat-item p {
    color: var(--text-muted);
    font-size: 1rem;
}

/* Node CTA */
.node-cta {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    padding: 3rem 2rem;
    border-radius: 20px;
    border: 1px solid var(--glass-border);
}

.node-cta h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

/* Pricing Section */
.pricing-section {
    padding: var(--section-padding);
    background: var(--bg-secondary);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

/* Pricing Card - Glassmorphism */
.pricing-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    border: 2px solid var(--glass-border);
    position: relative;
    transition: all 0.5s var(--transition-smooth);
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top, 
                rgba(21, 101, 192, 0.12) 0%, 
                transparent 60%);
    opacity: 0;
    transition: opacity 0.5s;
}

.pricing-card:hover {
    transform: translateY(-12px) scale(1.02);
    border-color: var(--primary);
    box-shadow: var(--shadow-card), var(--glow-primary);
}

.pricing-card:hover::before {
    opacity: 1;
}

.pricing-card.featured {
    border-color: var(--primary);
    transform: scale(1.05);
    background: rgba(0, 204, 136, 0.05);
    box-shadow: var(--glow-primary);
}

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

.featured-badge {
    position: absolute;
    top: -12px;
    right: 2rem;
    background: var(--gradient-primary);
    color: #ffffff;
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(21, 101, 192, 0.5);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.pricing-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.price {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    display: inline-block;
}

.price span {
    font-size: 1.25rem;
    color: var(--text-muted);
}

.price-note {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.features-list {
    list-style: none;
    margin-bottom: 2rem;
}

.features-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--bg-tertiary);
    color: var(--text-muted);
}

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

/* Payment Methods */
/* Payment Methods - Glassmorphism */
.payment-methods {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-card);
}

.payment-methods h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

.payment-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.payment-group h4 {
    font-family: var(--font-heading);
    margin-bottom: 1rem;
}

.crypto-icons {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.crypto-badge {
    background: var(--glass-light);
    backdrop-filter: blur(10px);
    padding: 0.6rem 1.2rem;
    border-radius: 8px;
    font-family: var(--font-mono);
    font-size: 0.875rem;
    border: 1px solid var(--glass-border);
    transition: all 0.3s var(--transition-bounce);
    cursor: default;
}

.crypto-badge:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(21, 101, 192, 0.3);
}

.payment-note {
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* Download Section */
/* ================================
   DOWNLOAD SECTION
   ================================ */

.download-section {
    padding: 100px 0;
    background: transparent;
}

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

.download-subtitle {
    font-size: 1.125rem;
    color: var(--text-muted);
    margin-top: 1rem;
}

/* Platform Grid */
.platform-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto 4rem;
}

/* Platform Card */
.platform-card {
    background: rgba(26, 26, 26, 0.4);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.platform-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, 
                rgba(21, 101, 192, 0.1) 0%, 
                transparent 100%);
    opacity: 0;
    transition: opacity 0.3s;
}

.platform-card:hover::before {
    opacity: 1;
}

.platform-card:hover {
    transform: translateY(-8px);
    border-color: rgba(21, 101, 192, 0.5);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 
                0 0 30px rgba(21, 101, 192, 0.3);
}

/* Disabled State */
.platform-card-disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.platform-card-disabled:hover {
    transform: none;
    border-color: rgba(255, 255, 255, 0.05);
    box-shadow: none;
}

.platform-card-disabled::before {
    display: none;
}

/* Platform Icon */
.platform-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(21, 101, 192, 0.1);
    border-radius: 20px;
    color: var(--primary);
    transition: all 0.3s ease;
}

.platform-card:hover .platform-icon {
    background: rgba(21, 101, 192, 0.2);
    transform: scale(1.05);
}

.platform-card-disabled .platform-icon {
    background: rgba(100, 100, 100, 0.1);
    color: #666;
}

/* Platform Text */
.platform-name {
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.platform-desc {
    font-size: 0.95rem;
    color: #888;
    margin-bottom: 1.5rem;
}

/* Platform Button */
.platform-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0.875rem 1.75rem;
    background: rgba(21, 101, 192, 0.1);
    border: 1px solid rgba(21, 101, 192, 0.3);
    border-radius: 12px;
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    margin-bottom: 1rem;
    cursor: pointer;
    pointer-events: auto !important;
    position: relative;
    z-index: 10;
}

.platform-btn:hover {
    background: rgba(21, 101, 192, 0.2);
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(21, 101, 192, 0.3);
}

.platform-btn svg {
    transition: transform 0.3s ease;
}

.platform-btn:hover svg {
    transform: translateY(2px);
}

/* Platform Note */
.platform-note {
    display: block;
    font-size: 0.8rem;
    color: #666;
    font-style: italic;
}

/* Desktop Platforms */
.desktop-platforms {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.desktop-platform {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0.625rem 1rem;
    background: rgba(100, 100, 100, 0.1);
    border-radius: 8px;
    color: #666;
    font-size: 0.9rem;
}

/* Privacy Statement */
.download-statement {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    position: relative;
}

.statement-line {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, 
                transparent 0%, 
                rgba(255, 255, 255, 0.1) 50%, 
                transparent 100%);
    margin-bottom: 2rem;
}

.statement-text {
    font-size: 1.25rem;
    line-height: 1.8;
    color: #b0b0b0;
    font-weight: 300;
    font-style: italic;
}

/* =====================================
   Build with Oasis Section
   ===================================== */
.build-section {
    padding: var(--section-padding);
    background: transparent;
}

.build-offerings {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto 6rem;
}

.offering-box {
    text-align: center;
    padding: 2.5rem 2rem;
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    transition: all 0.4s var(--transition-smooth);
}

.offering-box:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 8px 24px rgba(21, 101, 192, 0.2);
}

.offering-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(21, 101, 192, 0.1);
    border-radius: 50%;
    border: 2px solid var(--glass-border);
    color: var(--primary);
}

.offering-box h3 {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--text);
}

.offering-box p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.build-contact {
    max-width: 1000px;
    margin: 0 auto;
    padding-top: 3rem;
}

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

.contact-left {
    display: flex;
    justify-content: center;
}

.contact-right {
    display: flex;
    flex-direction: column;
}

.contact-method {
    text-align: center;
}

.qr-section {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.qr-image {
    width: 320px;
    height: 320px;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.98);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.email-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
}

.email-text {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 1rem;
    color: var(--primary);
}

.copy-icon-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(21, 101, 192, 0.1);
    border: 1px solid rgba(21, 101, 192, 0.3);
    border-radius: 8px;
    color: var(--primary);
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.copy-icon-btn:hover {
    background: rgba(21, 101, 192, 0.2);
    border-color: var(--primary);
    transform: scale(1.1);
}

.copy-icon-btn:active {
    transform: scale(0.95);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: rgba(21, 101, 192, 0.1);
    border: 1px solid rgba(21, 101, 192, 0.3);
    cursor: pointer;
    padding: 10px 12px;
    border-radius: 12px;
    z-index: 1001;
    transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
    background: rgba(21, 101, 192, 0.2);
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(21, 101, 192, 0.3);
}

.mobile-menu-toggle span {
    width: 24px;
    height: 2.5px;
    background: var(--primary);
    border-radius: 3px;
    transition: all 0.3s ease;
    display: block;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Responsive */
@media (max-width: 1024px) {
    .platform-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .platform-card:last-child {
        grid-column: 1 / -1;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .build-offerings {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .download-section {
        padding: 60px 0;
    }
    
    .platform-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .platform-card:last-child {
        max-width: 100%;
        grid-column: auto;
    }
    
    .platform-card,
    .platform-card-disabled {
        padding: 2rem 1.5rem !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: space-between !important;
        min-height: 320px !important;
        opacity: 1 !important;
        width: 100% !important;
        max-width: 100% !important;
    }
    
    .desktop-platforms {
        flex-direction: row !important;
        gap: 0.5rem !important;
        margin-top: 1rem !important;
        width: 100%;
    }
    
    .desktop-platform {
        flex: 1 !important;
        flex-direction: column !important;
        gap: 6px !important;
        padding: 1rem 0.5rem !important;
        font-size: 0.85rem !important;
        background: rgba(100, 100, 100, 0.15) !important;
    }
    
    .desktop-platform svg {
        width: 24px !important;
        height: 24px !important;
    }
    
    .platform-icon {
        width: 64px;
        height: 64px;
    }
    
    .statement-text {
        font-size: 1.1rem;
    }
    
    .build-offerings {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 3rem;
    }
    
    .offering-box {
        padding: 2rem 1.5rem;
    }
    
    .offering-icon {
        width: 56px;
        height: 56px;
    }
    
    .qr-image {
        width: 240px;
        height: 240px;
        padding: 1.5rem;
    }
    
    .email-row {
        padding: 0.875rem 1.25rem;
    }
    
    .email-text {
        font-size: 0.9rem;
    }
    
    /* Hero Carousel - Smaller phones */
    .hero-slide .phone-mockup {
        display: flex !important;
        opacity: 1 !important;
        visibility: visible !important;
    }
    
    .hero-slide .phone-frame {
        width: 220px;
        height: 440px;
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
    }
    
    .hero-slide .phone-screen {
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
    }
    
    .hero-slide .phone-screenshot {
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .carousel-dots {
        gap: 10px;
        margin-top: 1.5rem;
    }
    
    .carousel-dot {
        width: 8px;
        height: 8px;
    }
}

/* FAQ Section */
.faq-section {
    padding: var(--section-padding);
    background: transparent;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

/* FAQ Item - Glassmorphism */
.faq-item {
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid var(--glass-border);
    transition: all 0.4s var(--transition-smooth);
}

.faq-item:hover {
    transform: translateY(-5px);
    border-color: var(--glass-lighter);
    box-shadow: var(--shadow-card);
}

.faq-item h3 {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    margin-bottom: 1rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.faq-item p {
    color: var(--text-muted);
    line-height: 1.7;
}

/* Footer */
/* Footer - Enhanced Glassmorphism */
.footer {
    background: var(--glass-bg);
    backdrop-filter: blur(25px);
    padding: 4rem 2rem 2rem;
    border-top: 1px solid var(--glass-border);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-hero);
    opacity: 0.5;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h4 {
    font-family: var(--font-heading);
    margin-bottom: 1rem;
}

.footer-section a {
    display: block;
    color: var(--text-muted);
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.3s;
    outline: none;
}

.footer-section a:hover {
    color: var(--primary);
}

.footer-section a:focus {
    outline: none;
    color: var(--primary);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--bg-tertiary);
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* Responsive */
@media (max-width: 1024px) {
    /* Hide desktop grid, show mobile carousel */
    .hero-desktop {
        display: none !important;
    }
    
    .hero-carousel {
        display: block !important;
        width: 100% !important;
        opacity: 1 !important;
        visibility: visible !important;
    }
    
    .hero-carousel-wrapper {
        display: block !important;
        width: 100% !important;
        opacity: 1 !important;
        visibility: visible !important;
    }
    
    .hero-slides {
        display: flex !important;
        width: 100% !important;
        opacity: 1 !important;
        visibility: visible !important;
    }
    
    .hero-slide {
        display: flex !important;
        opacity: 1 !important;
        visibility: visible !important;
    }
    
    .hero-slide .hero-text {
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
    }
    
    .hero-slide .hero-visual {
        display: flex !important;
        opacity: 1 !important;
        visibility: visible !important;
    }
    
    .hero-slide .phone-mockup {
        display: flex !important;
        opacity: 1 !important;
        visibility: visible !important;
    }
    
    .hero-slide .phone-frame {
        width: 280px;
        height: 560px;
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
    }
    
    .hero-slide .phone-screen {
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
    }
    
    .hero-slide .phone-screenshot {
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
    }
    
    .hero-title {
        font-size: 2.5rem;
        color: var(--text-primary) !important;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        color: var(--text-muted) !important;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .hero-cta a {
        width: 100%;
        max-width: 300px;
        text-align: center;
        justify-content: center;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.featured {
        transform: none;
    }
}

@media (max-width: 768px) {
    /* Mobile Menu Toggle anzeigen */
    .mobile-menu-toggle {
        display: flex;
    }
    
    /* Navigation mobile Styles */
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(30px);
        flex-direction: column;
        justify-content: flex-start;
        padding: 100px 2rem 2rem;
        gap: 0.5rem;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        border-left: 1px solid var(--glass-border);
        box-shadow: -10px 0 50px rgba(0, 0, 0, 0.5);
        z-index: 1000;
        overflow-y: auto;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links a {
        width: 100%;
        text-align: left;
        padding: 1rem 1.25rem;
        border-radius: 10px;
        font-size: 1.05rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }
    
    .nav-links a:hover {
        background: rgba(21, 101, 192, 0.15);
        transform: translateX(5px);
    }
    
    /* Buttons in mobile menu */
    .nav-links .btn-secondary,
    .nav-links .btn-primary,
    .nav-links .btn-outline {
        width: 100%;
        justify-content: center;
        margin-top: 0.5rem;
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
    
    /* Overlay when menu is open */
    body.menu-open::before {
        content: '';
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.7);
        backdrop-filter: blur(5px);
        z-index: 999;
        animation: fadeIn 0.3s ease;
    }
    
    @keyframes fadeIn {
        from { opacity: 0; }
        to { opacity: 1; }
    }
    
    body.menu-open {
        overflow: hidden;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .download-section {
        font-size: 2.5rem;
    }
    
    .trust-headline {
        font-size: 2rem;
    }
    
    .trust-description {
        font-size: 1.1rem;
    }
    
    .hero-video-bg video {
        opacity: 0.2;
    }
    
    .video-overlay {
        background: linear-gradient(135deg, 
                    rgba(10, 10, 12, 0.9) 0%, 
                    rgba(10, 10, 12, 0.85) 100%);
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .roadmap-timeline::before {
        left: 15px;
    }
    
    .timeline-item {
        padding-left: 50px;
    }
    
    .timeline-marker {
        left: 5px;
    }
    
    .timeline-content {
        padding: 1.5rem;
    }
    
    .steps-flow {
        flex-direction: column;
        gap: 2rem;
    }
    
    .step-arrow {
        transform: rotate(90deg);
    }
    
    .trust-features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .trust-comparison {
        grid-template-columns: 1fr;
    }
    
    .github-repos {
        grid-template-columns: 1fr;
    }
    
    .node-stats {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .node-grid {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 40px !important;
    }
    
    .node-point {
        width: 12px !important;
        height: 12px !important;
    }
    
    .nodes-title {
        font-size: 2.5rem;
    }
    
    .nodes-subtitle {
        font-size: 1.2rem;
    }
    
    .roadmap-section .section-title {
        font-size: 2.5rem;
    }
    
    .roadmap-section .section-subtitle {
        font-size: 1.2rem;
    }
    
    .payment-options {
        grid-template-columns: 1fr;
    }
    
    .download-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   ADDITIONAL MOBILE OPTIMIZATIONS
   Small Mobile Devices (< 480px)
   ======================================== */
@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .hero {
        padding: 8rem 1rem 4rem;
        min-height: 90vh;
    }
    
    .hero-title {
        font-size: 2rem;
        line-height: 1.1;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-cta {
        flex-direction: column;
        width: 100%;
        gap: 1rem;
    }
    
    .hero-cta a {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
    
    .btn-primary,
    .btn-secondary,
    .btn-outline {
        padding: 1rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .trust-headline {
        font-size: 1.75rem;
    }
    
    .trust-description {
        font-size: 1rem;
    }
    
    .feature-card,
    .trust-feature {
        padding: 1.5rem;
    }
    
    .feature-icon svg,
    .trust-icon svg {
        width: 40px;
        height: 40px;
    }
    
    .feature-card h3,
    .trust-feature h3 {
        font-size: 1.1rem;
    }
    
    .feature-card p,
    .trust-feature p {
        font-size: 0.9rem;
    }
    
    .node-grid {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 25px !important;
    }
    
    .node-point {
        width: 8px !important;
        height: 8px !important;
    }
    
    .nodes-title {
        font-size: 2rem;
    }
    
    .nodes-subtitle {
        font-size: 1rem;
    }
    
    .roadmap-section .section-title {
        font-size: 2rem;
    }
    
    .timeline-content h3 {
        font-size: 1.1rem;
    }
    
    .timeline-content p {
        font-size: 0.9rem;
    }
    
    .step-box {
        padding: 1.5rem;
    }
    
    .step-number {
        font-size: 1.5rem;
    }
    
    .step-box h3 {
        font-size: 1.1rem;
    }
    
    .faq-item {
        padding: 1.5rem;
    }
    
    .faq-item h3 {
        font-size: 1rem;
    }
    
    .faq-item p {
        font-size: 0.9rem;
    }
    
    /* Hero Carousel - Very small phones */
    .hero-slide .phone-mockup {
        display: flex !important;
        opacity: 1 !important;
        visibility: visible !important;
    }
    
    .hero-slide .phone-frame {
        width: 180px;
        height: 360px;
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
    }
    
    .hero-slide .phone-screen {
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
    }
    
    .hero-slide .phone-screenshot {
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
    }
    
    .hero-slide {
        padding: 1.5rem 0;
    }
    
    .carousel-dots {
        gap: 8px;
        margin-top: 1rem;
    }
    
    .carousel-dot {
        width: 7px;
        height: 7px;
        border-width: 1.5px;
    }
}

/* ========================================
   TOUCH OPTIMIZATIONS
   ======================================== */
@media (hover: none) and (pointer: coarse) {
    /* Larger touch targets */
    .btn-primary,
    .btn-secondary,
    .btn-outline {
        min-height: 48px;
        padding: 1rem 2rem;
    }
    
    .nav-links a {
        min-height: 48px;
        padding: 1rem 1.25rem;
    }
    
    .mobile-menu-toggle {
        min-width: 48px;
        min-height: 48px;
    }
    
    /* Remove hover effects on touch devices */
    .feature-card:hover,
    .trust-feature:hover,
    .btn-primary:hover,
    .btn-secondary:hover {
        transform: none;
    }
    
    /* Add active states instead */
    .feature-card:active,
    .trust-feature:active {
        transform: scale(0.98);
    }
    
    .btn-primary:active,
    .btn-secondary:active,
    .btn-outline:active {
        transform: scale(0.95);
    }
}

/* ========================================
   LANDSCAPE ORIENTATION FIXES
   ======================================== */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        min-height: auto;
        padding: 6rem 2rem 3rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .nav-links {
        padding: 80px 2rem 2rem;
    }
}

/* ========================================
   ADDITIONAL ENHANCEMENTS
   ======================================== */

/* Scroll Progress Bar */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: var(--gradient-primary);
    width: 0%;
    z-index: 10000;
    transition: width 0.1s ease;
    box-shadow: 0 0 10px rgba(21, 101, 192, 0.6);
}

/* Loading Screen */
.loading-screen {
    position: fixed;
    inset: 0;
    background: var(--bg-primary);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 1;
    transition: opacity 0.5s ease;
}

.loading-screen.fade-out {
    opacity: 0;
    pointer-events: none;
}

.loading-logo {
    width: 80px;
    height: 80px;
    margin-bottom: 2rem;
}

.loading-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: textPulse 1.5s ease-in-out infinite;
}

@keyframes textPulse {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

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

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border-radius: 5px;
    border: 2px solid var(--bg-primary);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

/* Selection */
::selection {
    background: rgba(21, 101, 192, 0.4);
    color: var(--text);
}

::-moz-selection {
    background: rgba(21, 101, 192, 0.4);
    color: var(--text);
}

/* Focus Styles */
button:focus,
a:focus,
input:focus,
textarea:focus {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

/* Utility Classes */
.glow-effect {
    animation: glowPulse 3s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% { box-shadow: 0 0 20px rgba(21, 101, 192, 0.4); }
    50% { box-shadow: 0 0 40px rgba(21, 101, 192, 0.7); }
}

.fade-in {
    animation: fadeIn 0.8s ease-out;
}

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

.slide-in-left {
    animation: slideInLeft 0.8s ease-out;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.slide-in-right {
    animation: slideInRight 0.8s ease-out;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Accessibility */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
