/* ElementSnap Website Styles */

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

:root {
    --primary-color: #6366f1;
    --primary-dark: #4f46e5;
    --secondary-color: #f8fafc;
    --accent-color: #06d6a0;
    --text-dark: #0f172a;
    --text-light: #64748b;
    --background: #ffffff;
    --border-color: #e2e8f0;
    
    /* 2025 Gradients */
    --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-hero: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    --gradient-card: linear-gradient(145deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
    --gradient-text: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    --gradient-button: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #ec4899 100%);
    --gradient-accent: linear-gradient(135deg, #06d6a0 0%, #0891b2 100%);
    
    /* Glass & Blur Effects */
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --blur-amount: 20px;
    
    /* 2025 Shadows */
    --shadow-soft: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-medium: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-large: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --shadow-colored: 0 20px 25px -5px rgba(99, 102, 241, 0.1), 0 10px 10px -5px rgba(99, 102, 241, 0.04);
    --shadow-glow: 0 0 20px rgba(99, 102, 241, 0.3);
    
    /* Animations */
    --ease-bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);
    --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--background);
    overflow-x: hidden;
}

/* Ensure responsive images */
img {
    max-width: 100%;
    height: auto;
}

/* Prevent horizontal scrolling */
* {
    max-width: 100%;
}

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.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 var(--ease-smooth);
    font-size: 14px;
    position: relative;
    overflow: hidden;
}

.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;
}

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

.btn-primary {
    background: var(--gradient-button);
    color: white;
    box-shadow: var(--shadow-colored);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: var(--shadow-glow), var(--shadow-large);
    filter: brightness(1.1);
}

.btn-secondary {
    background: var(--glass-bg);
    color: var(--text-dark);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(var(--blur-amount));
    box-shadow: var(--shadow-soft);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px) scale(1.02);
    box-shadow: var(--shadow-medium);
    border-color: rgba(255, 255, 255, 0.3);
}

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

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.section-subtitle {
    font-size: 1.2rem;
    text-align: center;
    color: var(--text-light);
    margin-bottom: 48px;
}

.gradient-text {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #ec4899 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: gradient-shift 4s ease infinite;
    font-weight: 900;
    position: relative;
}

/* Fallback for better readability */
@supports not (-webkit-background-clip: text) {
    .gradient-text {
        color: #6366f1;
        background: none;
    }
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--glass-bg);
    backdrop-filter: blur(var(--blur-amount));
    border-bottom: 1px solid var(--glass-border);
    z-index: 1000;
    padding: 12px 0;
    transition: all 0.3s var(--ease-smooth);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.9);
    box-shadow: var(--shadow-medium);
    border-bottom-color: var(--border-color);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--text-dark);
}

.logo-icon {
    font-size: 1.8rem;
    transition: transform 0.3s ease;
    display: block;
    flex-shrink: 0;
}

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

/* Ensure SVG icons are crisp */
.logo-icon[src*=".svg"] {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.2s ease;
}

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

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 8px;
    gap: 4px;
}

.mobile-menu-toggle span {
    width: 24px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle:hover span {
    background: var(--primary-color);
}

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

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

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

/* Mobile Navigation Menu */
.mobile-nav {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    z-index: 999;
    padding: 20px;
    box-shadow: var(--shadow-medium);
}

.mobile-nav.active {
    display: block;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
}

.mobile-nav-links a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    padding: 12px 20px;
    border-radius: 8px;
    transition: all 0.3s ease;
    width: 100%;
    text-align: center;
    max-width: 200px;
}

.mobile-nav-links a:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 50%, #f1f5f9 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(99, 102, 241, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(236, 72, 153, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(6, 214, 160, 0.05) 0%, transparent 50%);
    pointer-events: none;
    animation: float 8s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="25" cy="25" r="1.5" fill="rgba(99,102,241,0.08)"/><circle cx="75" cy="75" r="1" fill="rgba(236,72,153,0.06)"/><circle cx="50" cy="10" r="0.8" fill="rgba(6,214,160,0.05)"/></svg>');
    pointer-events: none;
    animation: float 12s ease-in-out infinite reverse;
}

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

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-block;
    background: rgba(99, 102, 241, 0.1);
    color: var(--primary-color);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
    border: 1px solid rgba(99, 102, 241, 0.2);
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 3;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--text-dark);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
    position: relative;
    z-index: 3;
}

.hero-description {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 32px;
    line-height: 1.6;
    position: relative;
    z-index: 3;
    max-width: 90%;
}

.hero-cta {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
    position: relative;
    z-index: 3;
}

.hero-stats {
    display: flex;
    gap: 32px;
    position: relative;
    z-index: 3;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-light);
}

/* Hero Demo */
.hero-demo {
    position: relative;
}

.demo-window {
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.demo-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    background: #f8fafc;
    border-bottom: 1px solid var(--border-color);
}

.demo-dots {
    display: flex;
    gap: 6px;
}

.demo-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #e5e7eb;
}

.demo-dots span:first-child { background: #ef4444; }
.demo-dots span:nth-child(2) { background: #f59e0b; }
.demo-dots span:nth-child(3) { background: #10b981; }

.demo-title {
    font-size: 14px;
    color: var(--text-light);
}

.demo-content {
    padding: 24px;
}

.demo-element {
    position: relative;
    margin-bottom: 24px;
}

.github-btn {
    background: #238636;
    color: white;
    border: 1px solid rgba(240, 246, 252, 0.1);
    padding: 8px 16px;
    border-radius: 6px;
    font-weight: 500;
    font-size: 14px;
    cursor: pointer;
}

.extraction-highlight {
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border: 2px solid var(--primary-color);
    border-radius: 8px;
    background: rgba(59, 130, 246, 0.1);
    animation: pulse 2s infinite;
}

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

.demo-code {
    background: #1f2937;
    border-radius: 8px;
    overflow: hidden;
}

.code-tabs {
    display: flex;
    background: #374151;
    padding: 8px 16px;
    gap: 16px;
}

.tab {
    font-size: 12px;
    color: #9ca3af;
    padding: 4px 8px;
    border-radius: 4px;
    cursor: pointer;
}

.tab.active {
    background: #1f2937;
    color: white;
}

.code-block {
    padding: 16px;
    margin: 0;
    color: #f9fafb;
    font-family: 'SF Mono', Monaco, Consolas, monospace;
    font-size: 13px;
    line-height: 1.5;
}

/* Social Proof Section */
.social-proof {
    padding: 40px 0;
    background: white;
    border-bottom: 1px solid var(--border-color);
}

.social-proof-text {
    text-align: center;
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 24px;
}

.social-proof-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 48px;
    flex-wrap: wrap;
}

.company-logo {
    color: var(--text-light);
    font-weight: 600;
    font-size: 1.1rem;
    opacity: 0.7;
    transition: opacity 0.2s ease;
}

.company-logo:hover {
    opacity: 1;
}

/* AI Integration Section */
.ai-integration {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 50%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

.ai-integration::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(99, 102, 241, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(139, 92, 246, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

.ai-logos-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin: 48px 0;
    position: relative;
    z-index: 2;
}

.ai-tool {
    background: white;
    border-radius: 16px;
    padding: 32px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border-color);
    transition: all 0.3s var(--ease-smooth);
    position: relative;
    overflow: hidden;
}

.ai-tool::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.05), transparent);
    transition: left 0.5s ease;
}

.ai-tool:hover::before {
    left: 100%;
}

.ai-tool:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium);
    border-color: rgba(99, 102, 241, 0.2);
}

.ai-logo {
    width: 48px;
    height: 48px;
    object-fit: contain;
    transition: all 0.3s var(--ease-smooth);
    flex-shrink: 0;
}

.ai-tool:hover .ai-logo {
    transform: scale(1.1) rotate(3deg);
}

.ai-tool-info h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.ai-tool-info p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.5;
}

.ai-benefit {
    background: var(--glass-bg);
    backdrop-filter: blur(var(--blur-amount));
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    margin-top: 48px;
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
    z-index: 2;
}

.benefit-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
    animation: float 3s ease-in-out infinite;
}

.ai-benefit p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

/* Figma Coming Soon Section */
.figma-coming-soon {
    background: linear-gradient(135deg, #f24e1e 0%, #ff7262 50%, #a259ff 100%);
    color: white;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.figma-coming-soon::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    animation: shimmer-figma 3s infinite;
}

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

.figma-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.figma-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 12px 24px;
    border-radius: 30px;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 24px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.figma-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.figma-subtitle {
    font-size: 1.3rem;
    margin-bottom: 48px;
    opacity: 0.9;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
}

.figma-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin: 48px 0;
}

.figma-feature {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 32px 24px;
    text-align: left;
    transition: all 0.3s var(--ease-smooth);
}

.figma-feature:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.figma-feature .feature-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
    display: block;
}

.figma-feature h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: white;
}

.figma-feature p {
    font-size: 0.95rem;
    opacity: 0.85;
    line-height: 1.5;
    margin: 0;
}

.figma-cta {
    margin-top: 48px;
}

.btn-figma {
    background: white;
    color: #f24e1e;
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s var(--ease-smooth);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

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

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

.btn-figma:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    background: #f8f9fa;
}

/* What It Does Grid */
.what-it-does-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.what-it-does-card {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 32px;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s var(--ease-smooth);
    position: relative;
    overflow: hidden;
}

.what-it-does-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-button);
    transform: scaleX(0);
    transition: transform 0.3s var(--ease-smooth);
}

.what-it-does-card:hover::before {
    transform: scaleX(1);
}

.what-it-does-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-large);
    border-color: rgba(99, 102, 241, 0.3);
}

.what-it-does-card .feature-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    display: block;
}

.what-it-does-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.what-it-does-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Comparison Section */
.comparison {
    padding: 80px 0;
    background: white;
}

.comparison-table {
    max-width: 800px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
}

.comparison-header {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    background: var(--gradient);
    color: white;
    font-weight: 600;
}

.comparison-header > div {
    padding: 20px 24px;
    text-align: center;
}

.comparison-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    border-bottom: 1px solid var(--border-color);
}

.comparison-row:last-child {
    border-bottom: none;
}

.comparison-row > div {
    padding: 16px 24px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.comparison-feature {
    font-weight: 600;
    background: #f8fafc;
}

.status-good {
    color: #10b981;
}

.status-bad {
    color: #ef4444;
}

/* Features Section */
.features {
    padding: 80px 0;
    background: #f8fafc;
}

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

.feature-card {
    background: var(--glass-bg);
    backdrop-filter: blur(var(--blur-amount));
    border: 1px solid var(--glass-border);
    padding: 32px;
    border-radius: 20px;
    box-shadow: var(--shadow-medium);
    text-align: center;
    transition: all 0.4s var(--ease-bounce);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-button);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: var(--shadow-large);
    background: rgba(255, 255, 255, 0.2);
}

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

.feature-icon {
    font-size: 3rem;
    margin-bottom: 16px;
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 16px;
}

.feature-tags {
    display: flex;
    gap: 8px;
    justify-content: center;
    flex-wrap: wrap;
}

.feature-tags span {
    background: rgba(59, 130, 246, 0.1);
    color: var(--primary-color);
    padding: 4px 12px;
    border-radius: 16px;
    font-size: 0.75rem;
    font-weight: 500;
}

/* Professional Demo Section */
.demo-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 30%, #f1f5f9 100%);
    position: relative;
}

.demo-header {
    text-align: center;
    position: relative;
    z-index: 2;
}

.demo-experience {
    position: relative;
    z-index: 2;
}

/* Workspace Layout */
.demo-workspace {
    background: var(--glass-bg);
    backdrop-filter: blur(var(--blur-amount));
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 40px;
    margin-bottom: 60px;
    box-shadow: var(--shadow-large);
}

.workspace-split {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 40px;
    align-items: center;
}

.workspace-panel {
    background: white;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    transition: all 0.3s var(--ease-smooth);
}

.workspace-panel:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-large);
}

.panel-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-bottom: 1px solid var(--border-color);
}

.panel-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--text-light);
    transition: all 0.3s ease;
}

.panel-indicator.active {
    background: var(--accent-color);
    box-shadow: 0 0 12px rgba(6, 214, 160, 0.4);
}

.panel-title {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.9rem;
}

.panel-badge {
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    background: rgba(99, 102, 241, 0.1);
    color: var(--primary-color);
}

.panel-badge.success {
    background: rgba(6, 214, 160, 0.1);
    color: var(--accent-color);
}

.panel-content {
    position: relative;
    min-height: 400px;
}

/* Website Demo */
.demo-website {
    height: 100%;
}

.website-chrome {
    background: #f8fafc;
    border-bottom: 1px solid var(--border-color);
}

.chrome-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
}

.chrome-dots {
    display: flex;
    gap: 8px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.dot.red { background: #ff5f57; }
.dot.yellow { background: #ffbd2e; }
.dot.green { background: #28ca42; }

.chrome-url {
    background: white;
    padding: 6px 16px;
    border-radius: 8px;
    font-size: 0.85rem;
    color: var(--text-light);
    border: 1px solid var(--border-color);
    min-width: 200px;
    text-align: center;
}

.website-content {
    padding: 60px 40px;
    background: linear-gradient(135deg, #635bff 0%, #4c51bf 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 320px;
}

.component-showcase {
    position: relative;
}

.target-element {
    position: relative;
}

.stripe-button {
    background: white;
    color: #635bff;
    border: none;
    padding: 16px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.stripe-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.button-icon {
    font-size: 1.2rem;
}

.selection-overlay {
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    border: 2px solid var(--accent-color);
    border-radius: 12px;
    background: rgba(6, 214, 160, 0.1);
    pointer-events: none;
    animation: selection-pulse 2s infinite;
}

.selection-handle {
    position: absolute;
    top: -12px;
    left: 12px;
    background: var(--accent-color);
    color: white;
    padding: 4px 12px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    box-shadow: var(--shadow-soft);
}

@keyframes selection-pulse {
    0%, 100% { opacity: 0.8; }
    50% { opacity: 1; }
}

/* Processing Flow */
.processing-flow {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.flow-line {
    width: 2px;
    height: 60px;
    background: linear-gradient(to bottom, var(--primary-color), var(--accent-color));
    border-radius: 1px;
    position: relative;
}

.flow-line::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 8px solid var(--accent-color);
}

.flow-processor {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 16px;
    background: var(--glass-bg);
    backdrop-filter: blur(var(--blur-amount));
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    box-shadow: var(--shadow-soft);
}

.processor-icon {
    font-size: 2rem;
    animation: processor-glow 2s ease-in-out infinite;
}

@keyframes processor-glow {
    0%, 100% { filter: brightness(1); }
    50% { filter: brightness(1.3) drop-shadow(0 0 8px rgba(255, 235, 59, 0.6)); }
}

.processor-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Code Editor */
.code-editor {
    background: #1e293b;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.editor-tabs {
    display: flex;
    background: #334155;
    padding: 0 16px;
    border-bottom: 1px solid #475569;
}

.tab {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    color: #94a3b8;
    cursor: pointer;
    border-radius: 8px 8px 0 0;
    transition: all 0.2s ease;
    font-size: 0.85rem;
    font-weight: 500;
    margin-top: 4px;
}

.tab.active {
    background: #1e293b;
    color: white;
    margin-top: 0;
}

.tab-icon {
    font-size: 0.9rem;
}

.editor-content {
    flex: 1;
    padding: 20px;
    font-family: 'SF Mono', Monaco, Consolas, monospace;
    overflow-y: auto;
}

.code-line {
    display: flex;
    align-items: center;
    min-height: 20px;
    margin-bottom: 4px;
}

.line-number {
    width: 32px;
    color: #64748b;
    font-size: 0.8rem;
    text-align: right;
    margin-right: 16px;
    user-select: none;
}

.code-text {
    color: #f1f5f9;
    font-size: 0.85rem;
    line-height: 1.5;
}

.keyword { color: #c084fc; }
.type { color: #60a5fa; }
.property { color: #34d399; }
.function { color: #fbbf24; }
.string { color: #fb7185; }
.tag { color: #60a5fa; }
.attribute { color: #a78bfa; }

.editor-actions {
    display: flex;
    gap: 12px;
    padding: 16px 20px;
    background: #334155;
    border-top: 1px solid #475569;
}

.action-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border: none;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.action-btn.primary {
    background: var(--gradient-accent);
    color: white;
}

.action-btn.primary:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow-soft);
}

.action-btn.secondary {
    background: transparent;
    color: #94a3b8;
    border: 1px solid #475569;
}

.action-btn.secondary:hover {
    background: #475569;
    color: white;
}

.btn-icon {
    font-size: 0.9rem;
}

/* Capabilities Grid */
.capabilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.capability-card {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 32px;
    background: white;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-soft);
    transition: all 0.3s var(--ease-smooth);
}

.capability-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium);
}

.capability-metric {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-width: 80px;
}

.metric-value {
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gradient-button);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.metric-unit {
    font-size: 0.75rem;
    color: var(--text-light);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 4px;
}

.capability-content h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-dark);
}

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

.demo-showcase {
    max-width: 1200px;
    margin: 0 auto 100px;
    position: relative;
    z-index: 2;
}

.demo-flow {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 80px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.demo-step-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    position: relative;
}

.step-indicator {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gradient-button);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 800;
    font-size: 1.5rem;
    box-shadow: var(--shadow-colored);
    animation: pulse-glow 3s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { 
        box-shadow: var(--shadow-colored), 0 0 0 0 rgba(99, 102, 241, 0.4);
    }
    50% { 
        box-shadow: var(--shadow-colored), 0 0 0 20px rgba(99, 102, 241, 0);
    }
}

.flow-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--primary-color);
    animation: arrow-float 2s ease-in-out infinite;
}

@keyframes arrow-float {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(10px); }
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.demo-browser {
    width: 100%;
    max-width: 500px;
    background: white;
    border-radius: 20px;
    box-shadow: var(--shadow-large);
    border: 1px solid var(--border-color);
    overflow: hidden;
    transition: all 0.4s var(--ease-smooth);
    position: relative;
}

.demo-browser:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: var(--shadow-glow), var(--shadow-large);
}

.demo-browser::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-button);
}

.browser-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    background: #f8fafc;
    border-bottom: 1px solid var(--border-color);
}

.browser-dots {
    display: flex;
    gap: 6px;
}

.browser-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #e5e7eb;
}

.browser-dots span:first-child { background: #ef4444; }
.browser-dots span:nth-child(2) { background: #f59e0b; }
.browser-dots span:nth-child(3) { background: #10b981; }

.browser-url {
    font-size: 14px;
    color: var(--text-light);
    background: white;
    padding: 4px 12px;
    border-radius: 6px;
    border: 1px solid var(--border-color);
}

.browser-content {
    padding: 40px;
    background: linear-gradient(135deg, #e50914 0%, #b20710 100%);
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.netflix-mockup {
    position: relative;
}

.netflix-button {
    background: white;
    color: #e50914;
    padding: 12px 32px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 16px;
    border: none;
    cursor: pointer;
    position: relative;
    transition: all 0.2s ease;
}

.netflix-button.highlighted {
    animation: highlight-pulse 2s infinite;
    position: relative;
}

.highlight-tooltip {
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-button);
    color: white;
    padding: 8px 16px;
    border-radius: 12px;
    font-size: 12px;
    white-space: nowrap;
    animation: tooltip-bounce 2s infinite;
    box-shadow: var(--shadow-colored);
    backdrop-filter: blur(var(--blur-amount));
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.highlight-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 8px solid transparent;
    border-top: 8px solid;
    border-image: var(--gradient-button) 1;
}

@keyframes highlight-pulse {
    0%, 100% { 
        box-shadow: 0 0 0 0 rgba(99, 102, 241, 0.7);
        transform: scale(1);
    }
    50% { 
        box-shadow: 0 0 0 15px rgba(99, 102, 241, 0);
        transform: scale(1.05);
    }
}

@keyframes tooltip-bounce {
    0%, 100% { 
        transform: translateX(-50%) translateY(0) scale(1); 
    }
    50% { 
        transform: translateX(-50%) translateY(-8px) scale(1.05); 
    }
}

.arrow-down {
    color: var(--primary-color);
    animation: bounce 2s infinite;
}

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

.code-output {
    width: 100%;
    max-width: 500px;
    background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-large);
    transition: all 0.4s var(--ease-smooth);
    position: relative;
    border: 1px solid rgba(99, 102, 241, 0.2);
}

.code-output:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: var(--shadow-glow), var(--shadow-large);
}

.code-output::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-accent);
}

.code-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    background: #374151;
    border-bottom: 1px solid #4b5563;
}

.code-title {
    color: white;
    font-weight: 500;
    font-size: 14px;
}

.copy-btn {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 12px;
    cursor: pointer;
    transition: background 0.2s ease;
}

.copy-btn:hover {
    background: var(--primary-dark);
}

.code-preview {
    padding: 20px;
}

.code-preview pre {
    margin: 0;
    color: #f9fafb;
    font-family: 'SF Mono', Monaco, Consolas, monospace;
    font-size: 14px;
    line-height: 1.6;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 48px;
}

.process-step {
    text-align: center;
    padding: 32px 24px;
    background: #f8fafc;
    border-radius: 12px;
    transition: transform 0.2s ease;
}

.process-step:hover {
    transform: translateY(-4px);
}

.step-icon {
    font-size: 3rem;
    margin-bottom: 16px;
}

.process-step h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.process-step p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Testimonials */
.testimonials {
    padding: 80px 0;
    background: #f8fafc;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.testimonial {
    background: var(--glass-bg);
    backdrop-filter: blur(var(--blur-amount));
    border: 1px solid var(--glass-border);
    padding: 32px;
    border-radius: 20px;
    box-shadow: var(--shadow-medium);
    transition: all 0.4s var(--ease-smooth);
    position: relative;
    overflow: hidden;
}

.testimonial::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-accent);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.testimonial:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-large);
    background: rgba(255, 255, 255, 0.15);
}

.testimonial:hover::before {
    transform: scaleX(1);
}

.testimonial-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-dark);
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-avatar {
    font-size: 2.5rem;
}

.author-name {
    font-weight: 600;
    color: var(--text-dark);
}

.author-title {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* About Creator */
.about-creator {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e0f2fe 50%, #f3e8ff 100%);
    position: relative;
    overflow: hidden;
}

.about-creator::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 20%, rgba(99, 102, 241, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(236, 72, 153, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

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

.about-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.about-intro {
    font-size: 1.2rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 40px;
}

.about-details {
    margin-bottom: 40px;
}

.detail {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.detail-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.detail h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.detail p {
    color: var(--text-light);
    line-height: 1.6;
}

.about-cta {
    display: flex;
    gap: 16px;
}

.about-visual {
    display: flex;
    justify-content: center;
}

.designer-card {
    background: var(--glass-bg);
    backdrop-filter: blur(var(--blur-amount));
    border-radius: 24px;
    padding: 32px;
    box-shadow: var(--shadow-large);
    max-width: 350px;
    width: 100%;
    border: 1px solid var(--glass-border);
    transition: all 0.4s var(--ease-bounce);
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.designer-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-button);
}

.designer-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: var(--shadow-glow), var(--shadow-large);
    background: rgba(255, 255, 255, 0.15);
}

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

.avatar {
    font-size: 3rem;
}

.status {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    color: var(--text-light);
}

.status-dot {
    width: 8px;
    height: 8px;
    background: var(--accent-color);
    border-radius: 50%;
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.card-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.card-content p {
    color: var(--text-light);
    margin-bottom: 24px;
}

.skills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
}

.skills span {
    background: rgba(59, 130, 246, 0.1);
    color: var(--primary-color);
    padding: 4px 12px;
    border-radius: 16px;
    font-size: 0.75rem;
    font-weight: 500;
}

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

.contact-info span {
    font-size: 0.875rem;
    color: var(--text-light);
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background: #f8fafc;
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 8px;
    margin-bottom: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.faq-question:hover {
    background: #f9fafb;
}

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
}

.faq-toggle {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--primary-color);
    transition: transform 0.2s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 24px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 24px 24px;
}

.faq-answer p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Download Section */
.download {
    padding: 80px 0;
    background: var(--gradient-hero);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.download::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        radial-gradient(circle, rgba(255,255,255,0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: sparkle 20s linear infinite;
}

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

.download .section-title,
.download .section-subtitle {
    color: white;
    position: relative;
    z-index: 2;
}

.download-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin: 48px 0;
}

.download-option {
    background: var(--glass-bg);
    backdrop-filter: blur(var(--blur-amount));
    padding: 32px;
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    transition: all 0.4s var(--ease-bounce);
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.download-option::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;
}

.download-option:hover::before {
    left: 100%;
}

.download-option:hover {
    transform: translateY(-5px) scale(1.03);
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.download-option.primary {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: var(--shadow-glow);
}

.download-option.primary:hover {
    background: rgba(255, 255, 255, 0.25);
    box-shadow: var(--shadow-glow), 0 25px 50px rgba(0, 0, 0, 0.2);
}

.download-icon {
    font-size: 3rem;
    margin-bottom: 16px;
}

.download-option h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.download-option p {
    margin-bottom: 16px;
    opacity: 0.9;
}

.download-stats {
    display: flex;
    justify-content: center;
    gap: 64px;
    margin-top: 48px;
}

.download-stats .stat-number {
    color: white;
}

.download-stats .stat-label {
    color: rgba(255, 255, 255, 0.8);
}

/* Premium Footer Design */
.footer {
    background: linear-gradient(135deg, #0a0a1a 0%, #1a1a2e 50%, #16213e 100%);
    color: white;
    padding: 100px 0 0;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(99, 102, 241, 0.8), 
        rgba(147, 51, 234, 0.8),
        rgba(239, 68, 68, 0.6),
        rgba(16, 185, 129, 0.6),
        rgba(99, 102, 241, 0.8), 
        transparent
    );
    animation: shimmer-line 4s ease-in-out infinite;
}

.footer::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(99, 102, 241, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(147, 51, 234, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(16, 185, 129, 0.02) 0%, transparent 50%);
    pointer-events: none;
}

@keyframes shimmer-line {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 100px;
    margin-bottom: 60px;
    align-items: start;
    position: relative;
    z-index: 2;
}

.footer-brand-section {
    max-width: 450px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 32px;
}

.footer-logo .logo-icon {
    font-size: 2.5rem;
    filter: drop-shadow(0 0 20px rgba(99, 102, 241, 0.5));
}

.footer-logo .logo-text {
    font-size: 2rem;
    font-weight: 900;
    background: linear-gradient(135deg, #60a5fa, #a855f7, #ec4899, #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
}

.footer-description {
    color: #cbd5e1;
    line-height: 1.8;
    margin-bottom: 36px;
    font-size: 1.05rem;
    font-weight: 400;
}

.footer-social {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #e2e8f0;
    text-decoration: none;
    padding: 16px 24px;
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
    font-weight: 600;
}

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

.social-link:hover::before {
    left: 100%;
}

.social-link:hover {
    background: rgba(99, 102, 241, 0.15);
    border-color: rgba(99, 102, 241, 0.3);
    transform: translateY(-4px) scale(1.05);
    color: white;
    box-shadow: 0 20px 40px rgba(99, 102, 241, 0.2);
}

.social-icon {
    font-size: 1.3rem;
    transition: transform 0.3s ease;
}

.social-link:hover .social-icon {
    transform: scale(1.2) rotate(5deg);
}

.footer-links-section {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 28px;
    color: #f8fafc;
    position: relative;
    padding-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #60a5fa, #a855f7);
    border-radius: 2px;
}

.footer-nav {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-nav a {
    color: #cbd5e1;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 8px 0;
    font-size: 0.95rem;
    font-weight: 500;
    position: relative;
    display: inline-block;
}

.footer-nav a::before {
    content: '';
    position: absolute;
    left: -20px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #60a5fa, #a855f7);
    transition: width 0.3s ease;
}

.footer-nav a:hover::before {
    width: 16px;
}

.footer-nav a:hover {
    color: #f8fafc;
    transform: translateX(24px);
}



/* Tablet Responsiveness */
@media (max-width: 1024px) and (min-width: 769px) {
    .hero-container {
        gap: 60px;
        padding: 0 32px;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 28px;
    }
    
    .what-it-does-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 28px;
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 28px;
    }
    
    .download-options {
        grid-template-columns: repeat(2, 1fr);
        gap: 28px;
    }
    
    .figma-features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

/* Enhanced Mobile Responsiveness */
@media (max-width: 768px) {
    /* Hero Section Mobile */
    .hero-container {
        grid-template-columns: 1fr;
        gap: 48px;
        text-align: center;
        padding: 0 16px;
    }
    
    .hero-title {
        font-size: 2.2rem;
        line-height: 1.2;
    }
    
    .hero-description {
        font-size: 1.1rem;
        max-width: 100%;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    
    .hero-stats {
        justify-content: center;
        gap: 24px;
        flex-wrap: wrap;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    /* Navigation Mobile */
    .nav-links {
        display: none;
    }
    
    .nav-cta {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .navbar {
        padding: 8px 0;
    }
    
    .nav-container {
        padding: 0 16px;
    }
    
    .logo-text {
        font-size: 1.3rem;
    }
    
    /* Logo Icon Mobile */
    .logo-icon {
        width: 28px !important;
        height: 28px !important;
    }
    
    /* Sections Mobile */
    .section-title {
        font-size: 2rem;
        margin-bottom: 12px;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
        margin-bottom: 32px;
    }
    
         /* Comparison Table Mobile */
     .comparison {
         padding: 60px 0;
     }
     
     .comparison-table {
         grid-template-columns: 1fr;
         gap: 0;
         margin: 0 16px;
         max-width: none;
     }
     
     .comparison-header,
     .comparison-row {
         grid-template-columns: 1fr;
         gap: 0;
     }
     
     .comparison-row > div {
         padding: 16px 20px;
         text-align: center;
         border-bottom: 1px solid var(--border-color);
     }
     
     .comparison-row:last-child > div {
         border-bottom: none;
     }
     
     .comparison-feature {
         background: #f8fafc;
         font-weight: 600;
         border-bottom: 1px solid var(--border-color) !important;
     }
    
    /* Features Mobile */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-top: 32px;
    }
    
    .feature-card {
        padding: 24px 20px;
    }
    
    /* Demo Section Mobile */
    .demo-workspace {
        padding: 24px 16px;
        margin-bottom: 40px;
    }
    
    .workspace-split {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .processing-flow {
        order: 2;
        transform: rotate(90deg);
        margin: 16px 0;
    }
    
    .panel-content {
        min-height: 300px;
    }
    
    .code-line {
        font-size: 0.75rem;
    }
    
    /* Testimonials Mobile */
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .testimonial {
        padding: 24px 20px;
    }
    
    /* About Creator Mobile */
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .about-cta {
        justify-content: center;
    }
    
    .designer-card {
        max-width: 100%;
        padding: 24px 20px;
    }
    
    /* Download Section Mobile */
    .download-options {
        grid-template-columns: 1fr;
        gap: 24px;
        margin: 32px 0;
    }
    
    .download-stats {
        flex-direction: column;
        gap: 20px;
        margin-top: 32px;
    }
    
    /* FAQ Mobile */
    .faq-grid {
        margin: 0 16px;
    }
    
    .faq-question {
        padding: 20px 16px;
    }
    
    .faq-answer {
        padding: 0 16px;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 16px 20px;
    }
    
    /* Footer Mobile */
    .footer {
        padding: 60px 0 0;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 40px;
    }
    
    .footer-brand-section {
        text-align: center;
        max-width: 100%;
    }
    
    .footer-logo {
        justify-content: center;
        margin-bottom: 24px;
    }
    
    .footer-logo .logo-icon {
        width: 36px !important;
        height: 36px !important;
    }
    
    .footer-description {
        text-align: center;
        margin-bottom: 24px;
    }
    
    .footer-social {
        justify-content: center;
        gap: 16px;
    }
    
    .social-link {
        padding: 12px 16px;
        font-size: 0.9rem;
    }
    
    .footer-links-section {
        grid-template-columns: 1fr;
        gap: 24px;
        text-align: center;
    }
    
    .footer-title {
        text-align: center;
        margin-bottom: 20px;
    }
    
    .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-nav a {
        font-size: 0.9rem;
        padding: 6px 0;
    }
    
    .footer-nav a:hover {
        transform: translateX(0);
    }
    
    .footer-nav a::before {
        display: none;
    }
    
    
    
    /* AI Integration Mobile */
    .ai-integration {
        padding: 60px 0;
    }

    .ai-logos-container {
        grid-template-columns: 1fr;
        gap: 24px;
        margin: 32px 0;
    }

    .ai-tool {
        padding: 24px;
        gap: 16px;
    }

    .ai-logo {
        width: 40px;
        height: 40px;
    }

    .ai-tool-info h4 {
        font-size: 1.1rem;
    }

    .ai-benefit {
        padding: 24px;
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }

    .benefit-icon {
        font-size: 2rem;
    }

    .ai-benefit p {
        font-size: 1rem;
    }

    /* Figma Coming Soon Mobile */
    .figma-coming-soon {
        padding: 60px 0;
    }

    .figma-title {
        font-size: 2.2rem;
    }

    .figma-subtitle {
        font-size: 1.1rem;
        margin-bottom: 32px;
    }

    .figma-features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin: 32px 0;
    }

    .figma-feature {
        padding: 24px 20px;
    }

    .figma-feature .feature-icon {
        font-size: 2rem;
        margin-bottom: 12px;
    }

    .figma-feature h4 {
        font-size: 1.1rem;
        margin-bottom: 8px;
    }

    .figma-feature p {
        font-size: 0.9rem;
    }

    .btn-figma {
        padding: 14px 28px;
        font-size: 1rem;
        gap: 10px;
    }
    
    /* Button Adjustments Mobile */
    .btn {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    
    .btn-large {
        padding: 14px 24px;
        font-size: 1rem;
    }
    
    /* Container Mobile */
    .container {
        padding: 0 16px;
    }
    
    /* What It Does Grid Mobile */
    .what-it-does-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-top: 32px;
    }
    
    .what-it-does-card {
        padding: 24px 20px;
    }
    
    .what-it-does-card .feature-icon {
        font-size: 2rem;
        margin-bottom: 16px;
    }
    
    .what-it-does-card h3 {
        font-size: 1.2rem;
        margin-bottom: 12px;
    }
    
    /* Superpowers Mobile Styles */
    .superpowers {
        padding: 60px 0;
    }
    
    .superpower-status {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .superpower-preview {
        padding: 12px;
    }
    
    .preview-visual.playground {
        grid-template-columns: 1fr;
    }
    
    .preview-visual.comparison {
        grid-template-columns: 1fr;
    }
    .preview-visual.comparison {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
        line-height: 1.3;
    }
    
    .section-title {
        font-size: 1.6rem;
        line-height: 1.3;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-cta {
        gap: 16px;
    }
    
    .btn-large {
        padding: 16px 20px;
        font-size: 0.95rem;
    }
    
    .footer-social {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    
    .social-link {
        width: 200px;
        justify-content: center;
    }
    
    .demo-workspace {
        padding: 16px 12px;
    }
    
    .workspace-panel {
        min-height: 250px;
    }
    
    .what-it-does-card {
        padding: 20px 16px;
    }
    
    .what-it-does-card h3 {
        font-size: 1.1rem;
    }
    
    .feature-card {
        padding: 20px 16px;
    }
    
    .feature-card h3 {
        font-size: 1.1rem;
    }
    
    .testimonial {
        padding: 20px 16px;
    }
    
    .testimonial-content p {
        font-size: 0.95rem;
    }
    
    .download-option {
        padding: 24px 16px;
    }
    
    .download-option h3 {
        font-size: 1.2rem;
    }
}

/* Extra small screens */
@media (max-width: 360px) {
    .hero-title {
        font-size: 1.6rem;
    }
    
    .section-title {
        font-size: 1.4rem;
    }
    
    .hero-badge {
        font-size: 0.8rem;
        padding: 6px 12px;
    }
    
    .btn {
        padding: 10px 16px;
        font-size: 0.85rem;
    }
    
    .btn-large {
        padding: 12px 16px;
        font-size: 0.9rem;
    }
    
    .container {
        padding: 0 12px;
    }
    
    .hero-stats {
        gap: 16px;
    }
    
    .stat-number {
        font-size: 1.3rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
}

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

.feature-card,
.testimonial,
.demo-step,
.pricing-card {
    animation: fadeInUp 0.6s ease-out;
}

/* Chrome Web Store Icons */
.chrome-icon {
    display: inline-block;
    width: 16px;
    height: 16px;
    margin-right: 6px;
    vertical-align: middle;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><circle cx="12" cy="12" r="10" fill="%234285f4"/><circle cx="12" cy="12" r="6" fill="white"/><circle cx="12" cy="12" r="3" fill="%234285f4"/><path d="M6.5 6.5l11 11M17.5 6.5l-11 11" stroke="%23ea4335" stroke-width="1.5" opacity="0.6"/><path d="M12 2v20M2 12h20" stroke="%2334a853" stroke-width="1.5" opacity="0.6"/></svg>');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.chrome-icon-large {
    width: 48px;
    height: 48px;
}

.chrome-icon-medium {
    width: 20px;
    height: 20px;
}

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

/* Browser Extension Superpowers Section */
.superpowers {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 50%, #f1f5f9 100%);
    position: relative;
}

.superpowers::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 20%, rgba(139, 92, 246, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(16, 185, 129, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.superpower-card {
    position: relative;
    overflow: visible;
}

.superpower-status {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 16px;
    margin-bottom: 16px;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 12px;
    border-radius: 16px;
    font-size: 12px;
    font-weight: 600;
}

.status-badge.live {
    background: rgba(16, 185, 129, 0.1);
    color: #059669;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.status-badge.mvp {
    background: rgba(245, 158, 11, 0.1);
    color: #d97706;
    border: 1px solid rgba(245, 158, 11, 0.2);
}

.status-badge.value {
    background: rgba(139, 92, 246, 0.1);
    color: #7c3aed;
    border: 1px solid rgba(139, 92, 246, 0.2);
}

.status-badge.target {
    background: rgba(6, 182, 212, 0.1);
    color: #0891b2;
    border: 1px solid rgba(6, 182, 212, 0.2);
}

.shortcut-hint {
    font-size: 12px;
    color: var(--text-light);
    font-family: 'SF Mono', Monaco, Consolas, monospace;
    background: #f1f5f9;
    padding: 4px 8px;
    border-radius: 4px;
}

.superpower-preview {
    background: #f8fafc;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 16px;
    margin-top: 16px;
}

.preview-title {
    font-size: 12px;
    color: var(--text-light);
    margin-bottom: 12px;
}

.preview-visual {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Bulk Selection Preview */
.selection-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 24px;
    background: rgba(16, 185, 129, 0.1);
    border: 2px solid #10b981;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 700;
    color: #059669;
}

/* Flow Preview */
.preview-visual.flow {
    display: flex;
    align-items: center;
    gap: 4px;
}

.flow-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: rgba(139, 92, 246, 0.1);
    border: 2px dashed #8b5cf6;
    border-radius: 50%;
    font-size: 11px;
    font-weight: 700;
    color: #7c3aed;
}

.flow-connector {
    width: 16px;
    height: 2px;
    background: #8b5cf6;
}

/* Playground Preview */
.preview-visual.playground {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.playground-preview {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    padding: 16px;
    text-align: center;
    font-size: 12px;
    color: var(--text-light);
}

.playground-code {
    background: #e5e7eb;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    padding: 16px;
    text-align: center;
    font-size: 12px;
    font-family: 'SF Mono', Monaco, Consolas, monospace;
    color: var(--text-light);
}

/* Controls Preview */
.preview-visual.controls {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.control-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.control-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.control-dot.bg-blue {
    background: #3b82f6;
}

.control-dot.bg-green {
    background: #10b981;
}

.control-slider {
    flex: 1;
    height: 4px;
    background: #e5e7eb;
    border-radius: 2px;
}

/* Comparison Preview */
.preview-visual.comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.comparison-before {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid #fecaca;
    border-radius: 4px;
    padding: 8px;
    text-align: center;
    font-size: 12px;
    color: #dc2626;
}

.comparison-after {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid #a7f3d0;
    border-radius: 4px;
    padding: 8px;
    text-align: center;
    font-size: 12px;
    color: #059669;
}

/* Shortcuts Preview */
.preview-visual.shortcuts {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.shortcut-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
}

.shortcut-item span:first-child {
    font-family: 'SF Mono', Monaco, Consolas, monospace;
    font-weight: 600;
    color: var(--text-dark);
}

.shortcut-item span:last-child {
    color: var(--text-light);
}
