/* ============================================
   COINOMI ART - $5000 Premium Creative Design
   No empty spaces, pure CSS art, living animations
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&family=Syne:wght@400;500;600;700;800&display=swap');

/* ============================================
   CSS VARIABLES
   ============================================ */
:root {
    /* Core Colors */
    --black: #000000;
    --white: #ffffff;
    --dark-900: #030303;
    --dark-800: #0a0a0a;
    --dark-700: #111111;
    --dark-600: #1a1a1a;
    --dark-500: #222222;

    /* Vibrant Palette */
    --accent-1: #6366f1;
    --accent-2: #8b5cf6;
    --accent-3: #a855f7;
    --accent-4: #d946ef;
    --accent-5: #ec4899;
    --accent-6: #f43f5e;
    --accent-glow: rgba(139, 92, 246, 0.6);

    /* Neon Colors */
    --neon-blue: #00f0ff;
    --neon-purple: #bf00ff;
    --neon-pink: #ff006e;
    --neon-green: #00ff87;
    --neon-orange: #ff6b35;
    --neon-yellow: #ffd600;

    /* Text */
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.7);
    --text-muted: rgba(255, 255, 255, 0.4);

    /* Gradients */
    --gradient-main: linear-gradient(135deg, #667eea 0%, #764ba2 25%, #f953c6 50%, #b91c1c 75%, #fbbf24 100%);
    --gradient-vibrant: linear-gradient(135deg, #00f0ff 0%, #8b5cf6 33%, #ff006e 66%, #ffd600 100%);
    --gradient-sunset: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
    --gradient-ocean: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-fire: linear-gradient(135deg, #f12711 0%, #f5af19 100%);
    --gradient-aurora: linear-gradient(135deg, #00c6fb 0%, #005bea 25%, #8b5cf6 50%, #ff006e 75%, #ffd600 100%);

    /* Typography */
    --font-display: 'Syne', sans-serif;
    --font-body: 'Space Grotesk', sans-serif;

    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-2xl: 5rem;
    --space-3xl: 8rem;

    /* Layout */
    --container-max: 1400px;
    --header-height: 80px;

    /* Transitions */
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
    --ease-bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --radius-2xl: 48px;
    --radius-full: 9999px;
}

/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: var(--accent-2) var(--dark-900);
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--dark-900);
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-aurora);
    border-radius: 5px;
}

::selection {
    background: var(--neon-pink);
    color: var(--white);
}

body {
    font-family: var(--font-body);
    background: var(--dark-900);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ============================================
   ANIMATED BACKGROUND CANVAS
   ============================================ */
.bg-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}

/* Animated Gradient Mesh */
.bg-mesh {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 50% at 20% 40%, rgba(99, 102, 241, 0.4) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 80% 20%, rgba(236, 72, 153, 0.35) 0%, transparent 50%),
        radial-gradient(ellipse 70% 60% at 10% 90%, rgba(139, 92, 246, 0.3) 0%, transparent 50%),
        radial-gradient(ellipse 50% 80% at 90% 80%, rgba(0, 240, 255, 0.25) 0%, transparent 50%),
        radial-gradient(ellipse 100% 100% at 50% 50%, rgba(168, 85, 247, 0.15) 0%, transparent 70%);
    filter: blur(60px);
    animation: meshFlow 20s ease-in-out infinite;
}

@keyframes meshFlow {
    0%, 100% { transform: translate(0, 0) rotate(0deg) scale(1); }
    25% { transform: translate(3%, -3%) rotate(1deg) scale(1.02); }
    50% { transform: translate(-2%, 4%) rotate(-1deg) scale(0.98); }
    75% { transform: translate(2%, 2%) rotate(0.5deg) scale(1.01); }
}

/* Floating Orbs */
.bg-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    animation: orbFloat 15s ease-in-out infinite;
}

.bg-orb-1 {
    width: 500px;
    height: 500px;
    top: -100px;
    right: -100px;
    background: radial-gradient(circle, var(--neon-purple) 0%, transparent 70%);
    opacity: 0.5;
    animation-delay: 0s;
}

.bg-orb-2 {
    width: 400px;
    height: 400px;
    bottom: -100px;
    left: -100px;
    background: radial-gradient(circle, var(--neon-pink) 0%, transparent 70%);
    opacity: 0.4;
    animation-delay: -5s;
}

.bg-orb-3 {
    width: 300px;
    height: 300px;
    top: 40%;
    left: 60%;
    background: radial-gradient(circle, var(--neon-blue) 0%, transparent 70%);
    opacity: 0.3;
    animation-delay: -10s;
}

@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(40px, -60px) scale(1.1); }
    66% { transform: translate(-30px, 40px) scale(0.95); }
}

/* Grid Pattern */
.bg-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(139, 92, 246, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(139, 92, 246, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    mask-image: radial-gradient(ellipse at center, black 20%, transparent 70%);
    animation: gridPulse 10s ease-in-out infinite;
}

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

/* Floating Particles */
.bg-particles {
    position: absolute;
    inset: 0;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--accent-2);
    border-radius: 50%;
    animation: particleFloat 20s linear infinite;
    box-shadow: 0 0 10px var(--accent-2), 0 0 20px var(--accent-2);
}

.particle:nth-child(1) { left: 10%; animation-delay: 0s; animation-duration: 25s; }
.particle:nth-child(2) { left: 20%; animation-delay: -3s; animation-duration: 20s; }
.particle:nth-child(3) { left: 30%; animation-delay: -6s; animation-duration: 28s; }
.particle:nth-child(4) { left: 40%; animation-delay: -9s; animation-duration: 22s; }
.particle:nth-child(5) { left: 50%; animation-delay: -12s; animation-duration: 26s; }
.particle:nth-child(6) { left: 60%; animation-delay: -15s; animation-duration: 24s; }
.particle:nth-child(7) { left: 70%; animation-delay: -18s; animation-duration: 30s; }
.particle:nth-child(8) { left: 80%; animation-delay: -21s; animation-duration: 21s; }
.particle:nth-child(9) { left: 90%; animation-delay: -24s; animation-duration: 27s; }

@keyframes particleFloat {
    0% { transform: translateY(100vh) scale(0); opacity: 0; }
    10% { opacity: 1; transform: translateY(90vh) scale(1); }
    90% { opacity: 1; transform: translateY(10vh) scale(1); }
    100% { transform: translateY(-10vh) scale(0); opacity: 0; }
}

/* ============================================
   CUSTOM CURSOR
   ============================================ */
.cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 12px;
    height: 12px;
    background: var(--white);
    border-radius: 50%;
    pointer-events: none;
    z-index: 10000;
    mix-blend-mode: difference;
    transition: transform 0.1s;
    transform: translate(-50%, -50%);
}

.cursor-follower {
    position: fixed;
    top: 0;
    left: 0;
    width: 50px;
    height: 50px;
    border: 2px solid rgba(139, 92, 246, 0.5);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transition: all 0.3s var(--ease-out-expo);
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(139, 92, 246, 0.1) 0%, transparent 70%);
}

.cursor.hovering { transform: translate(-50%, -50%) scale(2.5); }
.cursor-follower.hovering {
    width: 80px;
    height: 80px;
    border-color: var(--neon-pink);
    background: radial-gradient(circle, rgba(255, 0, 110, 0.15) 0%, transparent 70%);
}

@media (max-width: 1024px) { .cursor, .cursor-follower { display: none; } }

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.03em;
}

.heading-display {
    font-size: clamp(2rem, 6vw, 4rem);
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.03em;
}

.heading-1 { font-size: clamp(1.8rem, 4vw, 3rem); }
.heading-2 { font-size: clamp(1.5rem, 3vw, 2.5rem); }
.heading-3 { font-size: clamp(1.25rem, 2.5vw, 1.75rem); }
.heading-4 { font-size: clamp(1rem, 2vw, 1.5rem); }

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

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

.text-glow {
    text-shadow:
        0 0 10px var(--accent-glow),
        0 0 30px var(--accent-glow),
        0 0 60px var(--accent-glow),
        0 0 100px var(--accent-glow);
}

.text-stroke {
    -webkit-text-stroke: 2px var(--text-primary);
    -webkit-text-fill-color: transparent;
}

/* ============================================
   LAYOUT
   ============================================ */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

.section {
    position: relative;
    padding: var(--space-3xl) 0;
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    z-index: 1000;
    transition: all 0.5s var(--ease-out-expo);
}

.header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(3, 3, 3, 0);
    backdrop-filter: blur(0px);
    border-bottom: 1px solid transparent;
    transition: all 0.5s var(--ease-out-expo);
}

.header.scrolled::before {
    background: rgba(3, 3, 3, 0.85);
    backdrop-filter: blur(20px);
    border-bottom-color: rgba(139, 92, 246, 0.2);
}

.header-inner {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo with animated gradient */
.logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 800;
    z-index: 1001;
}

.logo-mark {
    position: relative;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-mark::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-aurora);
    border-radius: var(--radius-md);
    animation: logoRotate 10s linear infinite;
}

.logo-mark::after {
    content: '';
    position: absolute;
    inset: 3px;
    background: var(--dark-900);
    border-radius: calc(var(--radius-md) - 3px);
}

.logo-mark span {
    position: relative;
    z-index: 1;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.5rem;
    background: var(--gradient-aurora);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

.logo-text {
    background: var(--gradient-aurora);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% 200%;
    animation: gradientShift 5s ease-in-out infinite;
}

/* Navigation */
.nav {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
}

.nav-list {
    display: flex;
    list-style: none;
    gap: var(--space-xs);
}

.nav-link {
    position: relative;
    padding: var(--space-sm) var(--space-md);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: color 0.3s;
    overflow: hidden;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: var(--gradient-aurora);
    transition: all 0.4s var(--ease-out-expo);
    transform: translateX(-50%);
    border-radius: 3px;
}

.nav-link:hover, .nav-link.active { color: var(--text-primary); }
.nav-link:hover::before, .nav-link.active::before { width: 100%; }

/* CTA Button */
.nav-cta {
    position: relative;
    padding: var(--space-sm) var(--space-lg);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--white);
    border-radius: var(--radius-full);
    overflow: hidden;
    transition: transform 0.3s var(--ease-out-expo), box-shadow 0.3s;
}

.nav-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-aurora);
    background-size: 200% 200%;
    animation: gradientShift 3s ease-in-out infinite;
}

.nav-cta span { position: relative; z-index: 1; }

.nav-cta:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow:
        0 10px 30px rgba(139, 92, 246, 0.4),
        0 0 50px rgba(139, 92, 246, 0.3);
}

/* Mobile Menu */
.menu-toggle {
    display: none;
    width: 48px;
    height: 48px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    z-index: 1001;
}

.menu-toggle span {
    width: 28px;
    height: 3px;
    background: var(--gradient-aurora);
    border-radius: 3px;
    transition: all 0.4s var(--ease-out-expo);
}

.menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translateY(6px); }
.menu-toggle.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translateY(-6px); }

@media (max-width: 1024px) {
    .menu-toggle { display: flex; }

    .nav {
        position: fixed;
        top: 0;
        right: 0;
        width: 100%;
        height: 100vh;
        background: var(--dark-900);
        flex-direction: column;
        justify-content: center;
        padding: var(--space-2xl);
        transform: translateX(100%);
        transition: transform 0.6s var(--ease-out-expo);
    }

    .nav.active { transform: translateX(0); }
    .nav-list { flex-direction: column; align-items: center; gap: var(--space-md); }
    .nav-link { font-size: 2rem; font-family: var(--font-display); }
}

/* ============================================
   HERO SECTION - SPECTACULAR
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: var(--header-height);
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    align-items: center;
}

.hero-text { max-width: 650px; }

/* Animated Label */
.hero-label {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-xs) var(--space-md);
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    color: var(--accent-2);
    margin-bottom: var(--space-lg);
    animation: labelPulse 3s ease-in-out infinite;
}

.hero-label-dot {
    width: 10px;
    height: 10px;
    background: var(--neon-green);
    border-radius: 50%;
    animation: dotPulse 2s infinite;
    box-shadow: 0 0 15px var(--neon-green);
}

@keyframes labelPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(139, 92, 246, 0.4); }
    50% { box-shadow: 0 0 0 10px rgba(139, 92, 246, 0); }
}

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

/* Hero Title Animation */
.hero-title {
    margin-bottom: var(--space-lg);
}

.hero-title .line {
    display: block;
    overflow: hidden;
}

.hero-title .line span {
    display: inline-block;
    transform: translateY(120%);
    animation: heroSlideUp 1s var(--ease-out-expo) forwards;
}

.hero-title .line:nth-child(2) span { animation-delay: 0.15s; }
.hero-title .line:nth-child(3) span { animation-delay: 0.3s; }

@keyframes heroSlideUp {
    to { transform: translateY(0); }
}

.hero-description {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: var(--space-xl);
    max-width: 480px;
    opacity: 0;
    animation: fadeInUp 1s var(--ease-out-expo) 0.6s forwards;
}

.hero-actions {
    display: flex;
    gap: var(--space-md);
    opacity: 0;
    animation: fadeInUp 1s var(--ease-out-expo) 0.8s forwards;
}

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

/* ============================================
   HERO VISUAL - CSS ART MASTERPIECE
   ============================================ */
.hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1200px;
}

.hero-art-container {
    position: relative;
    width: 100%;
    max-width: 550px;
    aspect-ratio: 1;
}

/* Main 3D Card */
.hero-card-3d {
    position: absolute;
    inset: 10%;
    background: linear-gradient(135deg, rgba(20, 20, 30, 0.9) 0%, rgba(10, 10, 20, 0.95) 100%);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: var(--radius-2xl);
    transform: rotateY(-15deg) rotateX(10deg);
    transform-style: preserve-3d;
    animation: cardFloat 6s ease-in-out infinite;
    box-shadow:
        0 50px 100px -20px rgba(139, 92, 246, 0.3),
        0 30px 60px -30px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

@keyframes cardFloat {
    0%, 100% { transform: rotateY(-15deg) rotateX(10deg) translateY(0); }
    50% { transform: rotateY(-10deg) rotateX(5deg) translateY(-20px); }
}

/* Card Inner Glow */
.hero-card-3d::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 30% 20%, rgba(139, 92, 246, 0.4) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 80%, rgba(236, 72, 153, 0.3) 0%, transparent 50%);
    animation: innerGlow 4s ease-in-out infinite alternate;
}

@keyframes innerGlow {
    0% { opacity: 0.5; }
    100% { opacity: 1; }
}

/* AI Generation Preview Inside Card */
.hero-ai-preview {
    position: absolute;
    inset: 20px;
    display: flex;
    flex-direction: column;
}

/* Preview Header */
.preview-header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.preview-dot:nth-child(1) { background: #ff5f56; }
.preview-dot:nth-child(2) { background: #ffbd2e; }
.preview-dot:nth-child(3) { background: #27ca40; }

/* AI Image Generation Area */
.preview-canvas {
    flex: 1;
    margin: 15px;
    border-radius: var(--radius-lg);
    position: relative;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.5);
}

/* CSS Art: Generated Image */
.ai-generated-art {
    position: absolute;
    inset: 0;
    background:
        /* Stars */
        radial-gradient(2px 2px at 20% 30%, rgba(255, 255, 255, 0.8) 50%, transparent 50%),
        radial-gradient(2px 2px at 40% 70%, rgba(255, 255, 255, 0.6) 50%, transparent 50%),
        radial-gradient(1px 1px at 90% 40%, rgba(255, 255, 255, 0.7) 50%, transparent 50%),
        radial-gradient(2px 2px at 70% 20%, rgba(255, 255, 255, 0.5) 50%, transparent 50%),
        radial-gradient(1px 1px at 30% 80%, rgba(255, 255, 255, 0.6) 50%, transparent 50%),
        /* Nebula */
        radial-gradient(ellipse at 30% 40%, rgba(139, 92, 246, 0.6) 0%, transparent 40%),
        radial-gradient(ellipse at 70% 60%, rgba(236, 72, 153, 0.5) 0%, transparent 35%),
        radial-gradient(ellipse at 50% 80%, rgba(0, 240, 255, 0.4) 0%, transparent 30%),
        /* Base gradient */
        linear-gradient(180deg, #0a0a1a 0%, #1a0a2a 50%, #0a1020 100%);
    animation: artReveal 2s ease-out forwards, artShimmer 8s ease-in-out infinite 2s;
}

@keyframes artReveal {
    0% { clip-path: inset(100% 0 0 0); opacity: 0; }
    100% { clip-path: inset(0 0 0 0); opacity: 1; }
}

@keyframes artShimmer {
    0%, 100% { filter: brightness(1) saturate(1); }
    50% { filter: brightness(1.1) saturate(1.2); }
}

/* Planet in the art */
.ai-planet {
    position: absolute;
    bottom: 20%;
    left: 15%;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background:
        radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.3) 0%, transparent 50%),
        linear-gradient(135deg, #4a2c7a 0%, #1a0a2a 50%, #0a0a1a 100%);
    box-shadow:
        inset -20px -10px 30px rgba(0, 0, 0, 0.5),
        0 0 50px rgba(139, 92, 246, 0.5);
    animation: planetFloat 10s ease-in-out infinite;
}

@keyframes planetFloat {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-10px) scale(1.02); }
}

/* Planet ring */
.ai-planet::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 150px;
    height: 30px;
    border: 2px solid rgba(139, 92, 246, 0.4);
    border-radius: 50%;
    transform: translate(-50%, -50%) rotateX(70deg);
}

/* Generation Progress Bar */
.generation-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

.generation-progress::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-aurora);
    animation: progressLoad 3s ease-out forwards, progressShine 2s linear infinite 3s;
}

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

@keyframes progressShine {
    0% { filter: brightness(1); }
    50% { filter: brightness(1.5); }
    100% { filter: brightness(1); }
}

/* Floating UI Elements */
.hero-float-element {
    position: absolute;
    background: rgba(20, 20, 30, 0.9);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: var(--radius-lg);
    padding: 15px 20px;
    backdrop-filter: blur(20px);
    animation: floatElement 8s ease-in-out infinite;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.hero-float-element::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: var(--gradient-aurora);
    opacity: 0;
    transition: opacity 0.3s;
}

.hero-float-element:hover::before { opacity: 0.1; }

.float-element-1 {
    top: 5%;
    left: -15%;
    animation-delay: 0s;
}

.float-element-2 {
    bottom: 20%;
    right: -10%;
    animation-delay: -3s;
}

.float-element-3 {
    top: 60%;
    left: -20%;
    animation-delay: -6s;
}

@keyframes floatElement {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-15px) rotate(2deg); }
    75% { transform: translateY(10px) rotate(-1deg); }
}

.float-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-aurora);
    border-radius: var(--radius-md);
    margin-bottom: 10px;
}

.float-icon svg {
    width: 20px;
    height: 20px;
    color: var(--white);
}

.float-stat {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 800;
    background: var(--gradient-aurora);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.float-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Neural Network Animation */
.neural-network {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.neural-node {
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--accent-2);
    border-radius: 50%;
    box-shadow: 0 0 20px var(--accent-2);
    animation: nodeGlow 3s ease-in-out infinite;
}

.neural-node:nth-child(1) { top: 10%; left: 20%; animation-delay: 0s; }
.neural-node:nth-child(2) { top: 30%; left: 5%; animation-delay: 0.5s; }
.neural-node:nth-child(3) { top: 50%; left: 15%; animation-delay: 1s; }
.neural-node:nth-child(4) { top: 70%; left: 8%; animation-delay: 1.5s; }
.neural-node:nth-child(5) { top: 15%; right: 10%; animation-delay: 0.3s; }
.neural-node:nth-child(6) { top: 40%; right: 5%; animation-delay: 0.8s; }
.neural-node:nth-child(7) { top: 65%; right: 15%; animation-delay: 1.3s; }
.neural-node:nth-child(8) { top: 85%; right: 8%; animation-delay: 1.8s; }

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

/* Connection Lines */
.neural-line {
    position: absolute;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-2), transparent);
    transform-origin: left center;
    animation: lineFlow 4s ease-in-out infinite;
}

.neural-line:nth-child(9) { top: 20%; left: 22%; width: 60%; transform: rotate(15deg); animation-delay: 0s; }
.neural-line:nth-child(10) { top: 40%; left: 10%; width: 80%; transform: rotate(-10deg); animation-delay: 1s; }
.neural-line:nth-child(11) { top: 60%; left: 15%; width: 70%; transform: rotate(5deg); animation-delay: 2s; }
.neural-line:nth-child(12) { top: 80%; left: 8%; width: 85%; transform: rotate(-15deg); animation-delay: 3s; }

@keyframes lineFlow {
    0%, 100% { opacity: 0.2; }
    50% { opacity: 0.8; }
}

@media (max-width: 1024px) {
    .hero-content { grid-template-columns: 1fr; text-align: center; }
    .hero-text { max-width: 100%; }
    .hero-description { max-width: 100%; }
    .hero-actions { justify-content: center; flex-wrap: wrap; }
    .hero-visual { order: -1; margin-bottom: var(--space-xl); }
    .hero-art-container { max-width: 400px; }
    .hero-float-element { display: none; }
}

/* ============================================
   BUTTONS - SPECTACULAR
   ============================================ */
.btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: var(--space-md) var(--space-xl);
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    overflow: hidden;
    transition: all 0.4s var(--ease-out-expo);
    cursor: pointer;
}

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

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-aurora);
    background-size: 200% 200%;
    animation: gradientShift 3s ease-in-out infinite;
}

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

.btn-primary span, .btn-primary svg {
    position: relative;
    z-index: 1;
}

.btn-primary:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow:
        0 15px 40px rgba(139, 92, 246, 0.4),
        0 5px 20px rgba(236, 72, 153, 0.3),
        0 0 60px rgba(139, 92, 246, 0.2);
}

.btn-primary:hover::after { opacity: 0.2; }

.btn-secondary {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(139, 92, 246, 0.3);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(139, 92, 246, 0.1);
    border-color: rgba(139, 92, 246, 0.6);
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.2);
}

.btn-lg {
    padding: var(--space-lg) var(--space-2xl);
    font-size: 1.1rem;
}

/* ============================================
   SECTION HEADERS
   ============================================ */
.section-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto var(--space-3xl);
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-xs) var(--space-md);
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--accent-2);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: var(--space-lg);
}

.section-label::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--gradient-aurora);
    border-radius: 50%;
    animation: dotPulse 2s infinite;
}

.section-title { margin-bottom: var(--space-md); }

.section-description {
    font-size: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ============================================
   BENTO GRID - CREATIVE CARDS
   ============================================ */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: var(--space-md);
}

.bento-item {
    position: relative;
    background: linear-gradient(135deg, rgba(15, 10, 30, 0.95) 0%, rgba(20, 15, 40, 0.9) 100%);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    overflow: hidden;
    transition: all 0.5s var(--ease-out-expo);
    backdrop-filter: blur(10px);
}

.bento-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 50% 0%, rgba(139, 92, 246, 0.2) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.5s;
}

.bento-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.05), transparent);
    transition: left 0.8s;
}

.bento-item:hover {
    border-color: rgba(139, 92, 246, 0.5);
    transform: translateY(-10px);
    box-shadow:
        0 30px 60px rgba(0, 0, 0, 0.3),
        0 0 40px rgba(139, 92, 246, 0.1);
}

.bento-item:hover::before { opacity: 1; }
.bento-item:hover::after { left: 100%; }

.bento-lg { grid-column: span 8; grid-row: span 2; }
.bento-md { grid-column: span 4; }
.bento-sm { grid-column: span 4; }
.bento-wide { grid-column: span 6; }
.bento-tall { grid-column: span 4; grid-row: span 2; }

@media (max-width: 1024px) {
    .bento-lg, .bento-md, .bento-sm, .bento-wide, .bento-tall {
        grid-column: span 12;
        grid-row: span 1;
    }
}

.bento-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-aurora);
    border-radius: var(--radius-lg);
    margin-bottom: var(--space-lg);
    position: relative;
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.3);
}

.bento-icon::after {
    content: '';
    position: absolute;
    inset: -3px;
    background: var(--gradient-aurora);
    border-radius: inherit;
    z-index: -1;
    opacity: 0.5;
    filter: blur(15px);
}

.bento-icon svg {
    width: 32px;
    height: 32px;
    color: var(--white);
}

.bento-title {
    font-family: var(--font-display);
    font-size: 1.6rem;
    margin-bottom: var(--space-sm);
}

.bento-description {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Bento Card with CSS Art */
.bento-visual {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50%;
    height: 60%;
    pointer-events: none;
    /* Default gradient background */
    background:
        radial-gradient(ellipse at 70% 30%, rgba(139, 92, 246, 0.4) 0%, transparent 50%),
        radial-gradient(ellipse at 30% 70%, rgba(236, 72, 153, 0.3) 0%, transparent 40%);
}

/* Speed Art - Enhanced visibility */
.bento-visual.art-speed {
    background:
        linear-gradient(135deg, transparent 30%, rgba(0, 240, 255, 0.4) 30%, rgba(0, 240, 255, 0.4) 33%, transparent 33%),
        linear-gradient(135deg, transparent 45%, rgba(139, 92, 246, 0.35) 45%, rgba(139, 92, 246, 0.35) 48%, transparent 48%),
        linear-gradient(135deg, transparent 60%, rgba(236, 72, 153, 0.3) 60%, rgba(236, 72, 153, 0.3) 63%, transparent 63%),
        radial-gradient(ellipse at 70% 50%, rgba(139, 92, 246, 0.2) 0%, transparent 60%);
    animation: speedLines 2s linear infinite;
}

@keyframes speedLines {
    0% { transform: translateX(0); }
    100% { transform: translateX(20px); }
}

/* AI Brain Art - Enhanced visibility */
.bento-visual.art-brain {
    background:
        radial-gradient(circle at 60% 40%, rgba(139, 92, 246, 0.5) 0%, transparent 35%),
        radial-gradient(circle at 40% 60%, rgba(236, 72, 153, 0.4) 0%, transparent 30%),
        radial-gradient(circle at 50% 50%, rgba(0, 240, 255, 0.15) 0%, transparent 60%);
}

.bento-visual.art-brain::before {
    content: '';
    position: absolute;
    top: 25%;
    left: 35%;
    width: 50%;
    height: 50%;
    border: 2px dashed rgba(139, 92, 246, 0.5);
    border-radius: 50%;
    animation: brainPulse 4s ease-in-out infinite;
}

.bento-visual.art-brain::after {
    content: '';
    position: absolute;
    top: 35%;
    left: 45%;
    width: 30%;
    height: 30%;
    border: 1px solid rgba(0, 240, 255, 0.4);
    border-radius: 50%;
    animation: brainPulse 4s ease-in-out infinite 0.5s;
}

@keyframes brainPulse {
    0%, 100% { transform: scale(1); opacity: 0.6; }
    50% { transform: scale(1.15); opacity: 1; }
}

/* ============================================
   GALLERY - CSS ART MASTERPIECES
   ============================================ */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: var(--space-lg);
}

.gallery-item {
    position: relative;
    aspect-ratio: 1;
    border-radius: var(--radius-xl);
    overflow: hidden;
    cursor: pointer;
    border: 1px solid rgba(139, 92, 246, 0.3);
    transition: all 0.5s var(--ease-out-expo);
    background: linear-gradient(135deg, #0a0515 0%, #150a25 50%, #0a0a15 100%);
}

.gallery-item:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(139, 92, 246, 0.5);
    box-shadow:
        0 30px 60px rgba(0, 0, 0, 0.4),
        0 0 50px rgba(139, 92, 246, 0.2);
}

/* Gallery CSS Art Styles */
.gallery-art {
    position: absolute;
    inset: 0;
    transition: transform 0.7s var(--ease-out-expo);
    /* Default gradient background if no specific art class */
    background: linear-gradient(135deg, #1a0a2a 0%, #2a1050 50%, #0a0a20 100%);
}

.gallery-item:hover .gallery-art {
    transform: scale(1.1);
}

/* Cyberpunk City */
.art-cyberpunk {
    background: linear-gradient(180deg, #0a0015 0%, #1a0030 40%, #0a0a20 100%);
}

.art-cyberpunk::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background:
        /* Buildings */
        linear-gradient(to bottom, transparent 0%, rgba(0, 240, 255, 0.1) 100%),
        repeating-linear-gradient(90deg,
            transparent, transparent 8%,
            rgba(10, 10, 30, 0.9) 8%, rgba(10, 10, 30, 0.9) 12%,
            transparent 12%, transparent 15%,
            rgba(10, 10, 30, 0.8) 15%, rgba(10, 10, 30, 0.8) 22%,
            transparent 22%, transparent 28%,
            rgba(10, 10, 30, 0.95) 28%, rgba(10, 10, 30, 0.95) 35%,
            transparent 35%);
}

.art-cyberpunk::after {
    content: '';
    position: absolute;
    top: 10%;
    left: 20%;
    width: 60%;
    height: 30%;
    background:
        radial-gradient(ellipse at 50% 100%, rgba(255, 0, 110, 0.6) 0%, transparent 70%),
        radial-gradient(ellipse at 30% 80%, rgba(0, 240, 255, 0.4) 0%, transparent 50%);
    filter: blur(20px);
}

/* Fantasy Landscape */
.art-fantasy {
    background: linear-gradient(180deg, #1a0a2a 0%, #2a1040 30%, #1a2040 70%, #0a1030 100%);
}

.art-fantasy::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        /* Moon */
        radial-gradient(circle at 80% 20%, rgba(255, 255, 200, 0.9) 0%, rgba(255, 255, 200, 0.4) 5%, transparent 8%),
        /* Mountains */
        linear-gradient(150deg, transparent 50%, rgba(30, 20, 50, 0.9) 50%),
        linear-gradient(170deg, transparent 40%, rgba(40, 30, 60, 0.8) 40%),
        linear-gradient(130deg, transparent 60%, rgba(25, 15, 45, 0.9) 60%);
}

.art-fantasy::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 30%;
    background:
        linear-gradient(to top, rgba(139, 92, 246, 0.3) 0%, transparent 100%),
        repeating-linear-gradient(90deg,
            transparent 0%, transparent 5%,
            rgba(100, 70, 150, 0.3) 5%, rgba(100, 70, 150, 0.3) 5.5%);
}

/* Space Scene */
.art-space {
    background: radial-gradient(ellipse at 50% 50%, #0a0a20 0%, #000005 100%);
}

.art-space::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        /* Stars */
        radial-gradient(1px 1px at 10% 20%, white 50%, transparent 50%),
        radial-gradient(2px 2px at 30% 70%, rgba(255, 255, 255, 0.8) 50%, transparent 50%),
        radial-gradient(1px 1px at 50% 30%, white 50%, transparent 50%),
        radial-gradient(2px 2px at 70% 80%, rgba(255, 255, 255, 0.7) 50%, transparent 50%),
        radial-gradient(1px 1px at 90% 10%, white 50%, transparent 50%),
        radial-gradient(1px 1px at 15% 85%, rgba(255, 255, 255, 0.9) 50%, transparent 50%),
        radial-gradient(2px 2px at 85% 45%, rgba(255, 255, 255, 0.6) 50%, transparent 50%),
        radial-gradient(1px 1px at 45% 90%, white 50%, transparent 50%),
        /* Nebula */
        radial-gradient(ellipse at 30% 50%, rgba(139, 92, 246, 0.4) 0%, transparent 40%),
        radial-gradient(ellipse at 70% 40%, rgba(236, 72, 153, 0.3) 0%, transparent 35%);
    animation: starsTwinkle 4s ease-in-out infinite;
}

@keyframes starsTwinkle {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

.art-space::after {
    content: '';
    position: absolute;
    bottom: 10%;
    left: 20%;
    width: 60%;
    height: 60%;
    background: radial-gradient(ellipse at 50% 50%, rgba(0, 240, 255, 0.1) 0%, transparent 50%);
    animation: nebulaFloat 10s ease-in-out infinite;
}

@keyframes nebulaFloat {
    0%, 100% { transform: scale(1) translate(0, 0); }
    50% { transform: scale(1.1) translate(5%, -5%); }
}

/* Sunset Beach */
.art-sunset {
    background: linear-gradient(180deg,
        #ff6b35 0%,
        #f7931e 20%,
        #ffd600 35%,
        #ffe066 45%,
        #87ceeb 55%,
        #1e3a5f 100%);
}

.art-sunset::before {
    content: '';
    position: absolute;
    top: 25%;
    left: 30%;
    width: 40%;
    height: 20%;
    background: radial-gradient(ellipse at 50% 50%, rgba(255, 200, 100, 0.9) 0%, rgba(255, 150, 50, 0.6) 30%, transparent 70%);
    filter: blur(5px);
}

.art-sunset::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 45%;
    background:
        /* Water reflection */
        linear-gradient(to top,
            rgba(30, 60, 100, 0.9) 0%,
            rgba(50, 80, 120, 0.7) 50%,
            transparent 100%),
        /* Sun reflection on water */
        radial-gradient(ellipse at 50% 0%, rgba(255, 200, 100, 0.4) 0%, transparent 60%);
}

/* Abstract Art */
.art-abstract {
    background: #0a0a15;
}

.art-abstract::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        /* Shapes */
        radial-gradient(circle at 20% 30%, var(--neon-blue) 0%, transparent 20%),
        radial-gradient(circle at 80% 70%, var(--neon-pink) 0%, transparent 25%),
        radial-gradient(circle at 50% 50%, var(--accent-2) 0%, transparent 30%),
        /* Lines */
        linear-gradient(45deg, transparent 45%, rgba(139, 92, 246, 0.3) 45%, rgba(139, 92, 246, 0.3) 55%, transparent 55%),
        linear-gradient(-45deg, transparent 45%, rgba(236, 72, 153, 0.3) 45%, rgba(236, 72, 153, 0.3) 55%, transparent 55%);
    animation: abstractMove 8s ease-in-out infinite;
}

@keyframes abstractMove {
    0%, 100% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(3deg) scale(1.05); }
}

/* Portrait Style */
.art-portrait {
    background: linear-gradient(180deg, #1a1a2e 0%, #16213e 50%, #0f0f1a 100%);
}

.art-portrait::before {
    content: '';
    position: absolute;
    top: 10%;
    left: 50%;
    transform: translateX(-50%);
    width: 50%;
    height: 70%;
    background:
        /* Face silhouette */
        radial-gradient(ellipse at 50% 30%, rgba(200, 180, 160, 0.15) 0%, transparent 40%),
        radial-gradient(ellipse at 50% 50%, rgba(180, 160, 140, 0.1) 0%, transparent 50%);
    border-radius: 50% 50% 45% 45%;
}

.art-portrait::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 30% 40%, rgba(139, 92, 246, 0.3) 0%, transparent 30%),
        radial-gradient(ellipse at 70% 60%, rgba(236, 72, 153, 0.2) 0%, transparent 25%);
}

/* Gallery Content Overlay */
.gallery-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--space-lg);
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, transparent 100%);
    transform: translateY(100%);
    transition: transform 0.5s var(--ease-out-expo);
}

.gallery-item:hover .gallery-content {
    transform: translateY(0);
}

.gallery-prompt {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: var(--space-xs);
}

.gallery-style {
    display: inline-block;
    padding: 4px 12px;
    background: var(--gradient-aurora);
    border-radius: var(--radius-full);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* ============================================
   STATS SECTION
   ============================================ */
.stats-section {
    position: relative;
    padding: var(--space-3xl) 0;
    background: rgba(10, 10, 20, 0.5);
    border-top: 1px solid rgba(139, 92, 246, 0.2);
    border-bottom: 1px solid rgba(139, 92, 246, 0.2);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
}

@media (max-width: 768px) {
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

.stat-item {
    text-align: center;
    padding: var(--space-xl);
    position: relative;
}

.stat-item::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 60%;
    background: linear-gradient(to bottom, transparent, rgba(139, 92, 246, 0.3), transparent);
}

.stat-item:last-child::after { display: none; }

.stat-number {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 800;
    background: var(--gradient-aurora);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% 200%;
    animation: gradientShift 5s ease-in-out infinite;
    line-height: 1;
    margin-bottom: var(--space-xs);
}

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

/* ============================================
   MARQUEE
   ============================================ */
.marquee {
    position: relative;
    overflow: hidden;
    padding: var(--space-xl) 0;
    background: rgba(10, 10, 20, 0.5);
    border-top: 1px solid rgba(139, 92, 246, 0.1);
    border-bottom: 1px solid rgba(139, 92, 246, 0.1);
}

.marquee-inner {
    display: flex;
    animation: marquee 40s linear infinite;
}

.marquee:hover .marquee-inner { animation-play-state: paused; }

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

.marquee-item {
    flex-shrink: 0;
    padding: 0 var(--space-lg);
    font-family: var(--font-display);
    font-size: clamp(1rem, 2vw, 1.5rem);
    font-weight: 600;
    color: var(--text-muted);
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: var(--space-md);
    transition: color 0.3s;
}

.marquee-item:hover { color: var(--text-primary); }

.marquee-dot {
    width: 16px;
    height: 16px;
    background: var(--gradient-aurora);
    border-radius: 50%;
    animation: dotPulse 2s infinite;
}

/* ============================================
   PRICING CARDS
   ============================================ */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: var(--space-lg);
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-card {
    position: relative;
    background: rgba(10, 10, 20, 0.9);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: var(--radius-2xl);
    padding: var(--space-2xl);
    transition: all 0.5s var(--ease-out-expo);
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(139, 92, 246, 0.15) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.5s;
}

.pricing-card:hover {
    transform: translateY(-15px);
    border-color: rgba(139, 92, 246, 0.5);
    box-shadow:
        0 40px 80px rgba(0, 0, 0, 0.4),
        0 0 60px rgba(139, 92, 246, 0.15);
}

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

.pricing-card.featured {
    border-color: rgba(139, 92, 246, 0.5);
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.15) 0%, rgba(236, 72, 153, 0.15) 100%);
}

.pricing-card.featured::after {
    content: '';
    position: absolute;
    inset: -2px;
    background: var(--gradient-aurora);
    border-radius: var(--radius-2xl);
    z-index: -1;
    opacity: 0.3;
    filter: blur(20px);
}

.pricing-badge {
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    padding: var(--space-xs) var(--space-lg);
    background: var(--gradient-aurora);
    border-radius: 0 0 var(--radius-md) var(--radius-md);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.pricing-header {
    text-align: center;
    margin-bottom: var(--space-xl);
    padding-bottom: var(--space-xl);
    border-bottom: 1px solid rgba(139, 92, 246, 0.2);
}

.pricing-name {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: var(--space-md);
}

.pricing-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: var(--space-xs);
}

.pricing-amount {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 800;
    line-height: 1;
}

.pricing-card.featured .pricing-amount {
    background: var(--gradient-aurora);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.pricing-period {
    color: var(--text-muted);
    font-size: 1rem;
}

.pricing-features {
    list-style: none;
    margin-bottom: var(--space-xl);
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) 0;
    color: var(--text-secondary);
}

.pricing-features li svg {
    width: 22px;
    height: 22px;
    color: var(--neon-green);
    flex-shrink: 0;
}

.pricing-features li.disabled {
    opacity: 0.4;
}

.pricing-features li.disabled svg {
    color: var(--text-muted);
}

.pricing-cta { width: 100%; }

/* ============================================
   FAQ ACCORDION
   ============================================ */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid rgba(139, 92, 246, 0.2);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-lg) 0;
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 600;
    text-align: left;
    color: var(--text-primary);
    transition: color 0.3s;
}

.faq-question:hover { color: var(--accent-2); }

.faq-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 50%;
    transition: all 0.4s var(--ease-out-expo);
}

.faq-icon svg {
    width: 16px;
    height: 16px;
    transition: transform 0.4s var(--ease-out-expo);
}

.faq-item.active .faq-icon {
    background: var(--gradient-aurora);
    border-color: transparent;
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.4);
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s var(--ease-out-expo);
}

.faq-item.active .faq-answer { max-height: 500px; }

.faq-answer-inner {
    padding-bottom: var(--space-lg);
    color: var(--text-secondary);
    line-height: 1.8;
}

/* ============================================
   STEPS / PROCESS
   ============================================ */
.steps-container { position: relative; }

.steps-line {
    position: absolute;
    top: 60px;
    left: 10%;
    right: 10%;
    height: 3px;
    background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.3), transparent);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-xl);
    position: relative;
}

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

.step-number {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-lg);
    background: var(--gradient-aurora);
    border-radius: 50%;
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 800;
    position: relative;
    box-shadow: 0 10px 40px rgba(139, 92, 246, 0.4);
}

.step-number::before {
    content: '';
    position: absolute;
    inset: -5px;
    border: 2px solid rgba(139, 92, 246, 0.3);
    border-radius: 50%;
    animation: stepPulse 3s ease-in-out infinite;
}

@keyframes stepPulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 1; }
}

.step-title {
    font-family: var(--font-display);
    font-size: 1.3rem;
    margin-bottom: var(--space-sm);
}

.step-description {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ============================================
   DOWNLOAD CARDS
   ============================================ */
.download-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-lg);
    max-width: 1100px;
    margin: 0 auto;
}

.download-card {
    position: relative;
    background: rgba(10, 10, 20, 0.9);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: var(--radius-2xl);
    padding: var(--space-2xl);
    text-align: center;
    transition: all 0.5s var(--ease-out-expo);
    overflow: hidden;
}

.download-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 100%, rgba(139, 92, 246, 0.1) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.5s;
}

.download-card:hover {
    border-color: rgba(139, 92, 246, 0.5);
    transform: translateY(-15px);
    box-shadow:
        0 40px 80px rgba(0, 0, 0, 0.4),
        0 0 60px rgba(139, 92, 246, 0.15);
}

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

.download-icon {
    position: relative;
    width: 90px;
    height: 90px;
    margin: 0 auto var(--space-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-aurora);
    border-radius: var(--radius-xl);
    box-shadow: 0 15px 40px rgba(139, 92, 246, 0.3);
}

.download-icon svg {
    width: 50px;
    height: 50px;
    color: var(--white);
}

.download-os {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: var(--space-xs);
    position: relative;
}

.download-version {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: var(--space-lg);
    position: relative;
}

.download-btn {
    position: relative;
    width: 100%;
    margin-bottom: var(--space-sm);
}

.download-size {
    color: var(--text-muted);
    font-size: 0.85rem;
    position: relative;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: var(--space-3xl);
}

@media (max-width: 1024px) {
    .contact-grid { grid-template-columns: 1fr; }
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    padding: var(--space-lg);
    background: rgba(10, 10, 20, 0.8);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: var(--radius-lg);
    transition: all 0.3s var(--ease-out-expo);
}

.contact-item:hover {
    border-color: rgba(139, 92, 246, 0.5);
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.contact-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-aurora);
    border-radius: var(--radius-md);
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(139, 92, 246, 0.3);
}

.contact-icon svg {
    width: 24px;
    height: 24px;
    color: var(--white);
}

.contact-label {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: var(--space-xs);
}

.contact-value { font-weight: 600; }

/* Contact Form */
.contact-form {
    background: rgba(10, 10, 20, 0.8);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: var(--radius-2xl);
    padding: var(--space-2xl);
}

.form-group { margin-bottom: var(--space-lg); }

.form-label {
    display: block;
    margin-bottom: var(--space-sm);
    font-weight: 500;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.form-input,
.form-textarea,
.form-select {
    width: 100%;
    padding: var(--space-md);
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: all 0.3s;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    outline: none;
    border-color: var(--accent-2);
    box-shadow:
        0 0 0 3px rgba(139, 92, 246, 0.2),
        0 0 20px rgba(139, 92, 246, 0.1);
}

.form-textarea {
    resize: vertical;
    min-height: 150px;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    position: relative;
    padding: var(--space-3xl) 0 var(--space-xl);
    background: rgba(5, 5, 10, 0.95);
    border-top: 1px solid rgba(139, 92, 246, 0.2);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr repeat(3, 1fr);
    gap: var(--space-2xl);
}

@media (max-width: 1024px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
    .footer-grid { grid-template-columns: 1fr; }
}

.footer-brand { max-width: 300px; }
.footer-brand .logo { margin-bottom: var(--space-md); }

.footer-brand p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: var(--space-lg);
    line-height: 1.7;
}

.footer-social {
    display: flex;
    gap: var(--space-sm);
}

.footer-social a {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: var(--radius-md);
    transition: all 0.3s var(--ease-out-expo);
}

.footer-social a:hover {
    background: var(--gradient-aurora);
    border-color: transparent;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.3);
}

.footer-social svg {
    width: 20px;
    height: 20px;
}

.footer-column h4 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    margin-bottom: var(--space-lg);
    background: var(--gradient-aurora);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-links { list-style: none; }

.footer-links li { margin-bottom: var(--space-sm); }

.footer-links a {
    color: var(--text-secondary);
    font-size: 0.95rem;
    transition: all 0.3s;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--text-primary);
    transform: translateX(8px);
}

.footer-bottom {
    margin-top: var(--space-2xl);
    padding-top: var(--space-xl);
    border-top: 1px solid rgba(139, 92, 246, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-md);
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.footer-legal {
    display: flex;
    gap: var(--space-lg);
}

.footer-legal a {
    color: var(--text-muted);
    font-size: 0.85rem;
    transition: color 0.3s;
}

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

/* ============================================
   PAGE HEADER
   ============================================ */
.page-header {
    padding: calc(var(--header-height) + var(--space-3xl)) 0 var(--space-2xl);
    text-align: center;
    position: relative;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse at 50% 30%, rgba(139, 92, 246, 0.3) 0%, transparent 50%),
        radial-gradient(ellipse at 30% 70%, rgba(236, 72, 153, 0.2) 0%, transparent 40%);
    filter: blur(80px);
    pointer-events: none;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-lg);
    position: relative;
}

.breadcrumb a {
    color: var(--text-muted);
    font-size: 0.9rem;
    transition: color 0.3s;
}

.breadcrumb a:hover { color: var(--accent-2); }
.breadcrumb span { color: var(--text-muted); }

.page-title {
    margin-bottom: var(--space-md);
    position: relative;
}

.page-description {
    font-size: 1.3rem;
    color: var(--text-secondary);
    max-width: 650px;
    margin: 0 auto;
    position: relative;
}

/* ============================================
   LEGAL PAGES
   ============================================ */
.legal-content {
    max-width: 800px;
    margin: 0 auto;
}

.legal-content h2 {
    font-family: var(--font-display);
    font-size: 1.75rem;
    margin: var(--space-2xl) 0 var(--space-md);
    background: var(--gradient-aurora);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.legal-content h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    margin: var(--space-xl) 0 var(--space-sm);
    color: var(--accent-2);
}

.legal-content p {
    color: var(--text-secondary);
    margin-bottom: var(--space-md);
    line-height: 1.8;
}

.legal-content ul {
    margin: var(--space-md) 0;
    padding-left: var(--space-lg);
}

.legal-content li {
    color: var(--text-secondary);
    margin-bottom: var(--space-sm);
    line-height: 1.7;
}

.legal-content a {
    color: var(--accent-2);
    transition: opacity 0.3s;
}

.legal-content a:hover { opacity: 0.8; }

.legal-updated {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: var(--space-xl);
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    position: relative;
    padding: var(--space-3xl) 0;
    text-align: center;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 50% 50%, rgba(139, 92, 246, 0.2) 0%, transparent 60%);
    border-top: 1px solid rgba(139, 92, 246, 0.2);
    border-bottom: 1px solid rgba(139, 92, 246, 0.2);
}

.cta-content {
    position: relative;
    max-width: 750px;
    margin: 0 auto;
}

.cta-title { margin-bottom: var(--space-md); }

.cta-description {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: var(--space-xl);
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
[data-animate] {
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s var(--ease-out-expo);
}

[data-animate].visible {
    opacity: 1;
    transform: translateY(0);
}

[data-animate="fade"] { transform: none; }

[data-animate="slide-left"] { transform: translateX(-80px); }
[data-animate="slide-left"].visible { transform: translateX(0); }

[data-animate="slide-right"] { transform: translateX(80px); }
[data-animate="slide-right"].visible { transform: translateX(0); }

[data-animate="scale"] { transform: scale(0.85); }
[data-animate="scale"].visible { transform: scale(1); }

/* Stagger children */
[data-stagger] > * {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s var(--ease-out-expo);
}

[data-stagger].visible > *:nth-child(1) { transition-delay: 0.05s; }
[data-stagger].visible > *:nth-child(2) { transition-delay: 0.1s; }
[data-stagger].visible > *:nth-child(3) { transition-delay: 0.15s; }
[data-stagger].visible > *:nth-child(4) { transition-delay: 0.2s; }
[data-stagger].visible > *:nth-child(5) { transition-delay: 0.25s; }
[data-stagger].visible > *:nth-child(6) { transition-delay: 0.3s; }
[data-stagger].visible > *:nth-child(7) { transition-delay: 0.35s; }
[data-stagger].visible > *:nth-child(8) { transition-delay: 0.4s; }

[data-stagger].visible > * {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   UTILITIES
   ============================================ */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-sm { margin-top: var(--space-sm); }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }
.mt-xl { margin-top: var(--space-xl); }
.mt-2xl { margin-top: var(--space-2xl); }

.mb-sm { margin-bottom: var(--space-sm); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }
.mb-xl { margin-bottom: var(--space-xl); }
.mb-2xl { margin-bottom: var(--space-2xl); }

.py-2xl { padding-top: var(--space-2xl); padding-bottom: var(--space-2xl); }
.py-3xl { padding-top: var(--space-3xl); padding-bottom: var(--space-3xl); }

/* System Requirements */
.requirements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-lg);
    margin-top: var(--space-xl);
}

.requirement-card {
    background: rgba(10, 10, 20, 0.8);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    transition: all 0.3s var(--ease-out-expo);
}

.requirement-card:hover {
    border-color: rgba(139, 92, 246, 0.4);
    transform: translateY(-5px);
}

.requirement-card h4 {
    font-family: var(--font-display);
    background: var(--gradient-aurora);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: var(--space-md);
}

.requirement-card ul { list-style: none; }

.requirement-card li {
    color: var(--text-secondary);
    padding: var(--space-sm) 0;
    border-bottom: 1px solid rgba(139, 92, 246, 0.1);
    font-size: 0.9rem;
}

.requirement-card li:last-child { border-bottom: none; }
.requirement-card strong { color: var(--text-primary); }

/* Team Cards */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-lg);
}

.team-card {
    position: relative;
    background: rgba(10, 10, 20, 0.8);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    text-align: center;
    transition: all 0.5s var(--ease-out-expo);
}

.team-card:hover {
    transform: translateY(-10px);
    border-color: rgba(139, 92, 246, 0.5);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.team-avatar {
    width: 120px;
    height: 120px;
    margin: 0 auto var(--space-lg);
    border-radius: 50%;
    background: var(--gradient-aurora);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 10px 40px rgba(139, 92, 246, 0.3);
}

.team-avatar::before {
    content: '';
    position: absolute;
    inset: 4px;
    background: var(--dark-800);
    border-radius: 50%;
}

.team-avatar svg {
    position: relative;
    width: 48px;
    height: 48px;
    color: var(--text-secondary);
}

.team-name {
    font-family: var(--font-display);
    font-size: 1.3rem;
    margin-bottom: var(--space-xs);
}

.team-role {
    background: var(--gradient-aurora);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: var(--space-sm);
}

.team-bio {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Noise texture overlay */
.noise {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9998;
    opacity: 0.02;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

/* Glass Card */
.glass-card {
    background: rgba(10, 10, 20, 0.8);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    backdrop-filter: blur(20px);
}

/* Legacy support for old class names */
.bg-effects {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}

.bg-effects .bg-gradient-mesh,
.bg-effects .bg-noise {
    position: absolute;
    inset: 0;
}

.bg-effects .bg-gradient-mesh {
    background:
        radial-gradient(ellipse 80% 50% at 20% 40%, rgba(99, 102, 241, 0.4) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 80% 20%, rgba(236, 72, 153, 0.35) 0%, transparent 50%),
        radial-gradient(ellipse 70% 60% at 10% 90%, rgba(139, 92, 246, 0.3) 0%, transparent 50%);
    filter: blur(60px);
    animation: meshFlow 20s ease-in-out infinite;
}

/* Gradient text legacy */
.gradient-text {
    background: var(--gradient-aurora);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: gradientShift 5s ease-in-out infinite;
}

/* Old button classes support */
.btn-outline {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(139, 92, 246, 0.3);
    backdrop-filter: blur(10px);
}

.btn-outline:hover {
    background: rgba(139, 92, 246, 0.1);
    border-color: rgba(139, 92, 246, 0.6);
    transform: translateY(-4px);
}

.btn-ghost {
    color: var(--text-secondary);
    background: transparent;
}

.btn-ghost:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.05);
}

.btn-glow {
    box-shadow: 0 0 30px rgba(139, 92, 246, 0.4);
}

.btn-content {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

/* ============================================
   DOWNLOAD PAGE STYLES
   ============================================ */
.download-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--space-lg);
    max-width: 1100px;
    margin: 0 auto;
}

.download-card {
    position: relative;
    background: rgba(10, 10, 20, 0.9);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: var(--radius-2xl);
    padding: var(--space-2xl);
    text-align: center;
    transition: all 0.5s var(--ease-out-expo);
    overflow: hidden;
}

.download-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(139, 92, 246, 0.15) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.5s;
}

.download-card:hover {
    border-color: rgba(139, 92, 246, 0.5);
    transform: translateY(-15px);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4), 0 0 60px rgba(139, 92, 246, 0.15);
}

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

.download-card-featured {
    border-color: rgba(139, 92, 246, 0.4);
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(236, 72, 153, 0.1) 100%);
}

.download-card-badge {
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    padding: var(--space-xs) var(--space-md);
    background: var(--gradient-aurora);
    border-radius: 0 0 var(--radius-md) var(--radius-md);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.download-card-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto var(--space-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-aurora);
    border-radius: var(--radius-xl);
    box-shadow: 0 20px 50px rgba(139, 92, 246, 0.3);
}

.download-card-icon svg {
    width: 48px;
    height: 48px;
    color: var(--white);
}

.download-card-os {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: var(--space-xs);
}

.download-card-version {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: var(--space-md);
}

.download-card-features {
    display: flex;
    justify-content: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-lg);
    flex-wrap: wrap;
}

.download-card-features span {
    padding: 6px 12px;
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    color: var(--accent-2);
}

.download-card-size {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-top: var(--space-sm);
}

.download-card-glow {
    position: absolute;
    inset: -2px;
    background: var(--gradient-aurora);
    border-radius: var(--radius-2xl);
    z-index: -1;
    opacity: 0;
    filter: blur(20px);
    transition: opacity 0.5s;
}

.download-card:hover .download-card-glow { opacity: 0.3; }

/* Requirements */
.requirement-card {
    position: relative;
    background: rgba(10, 10, 20, 0.8);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    transition: all 0.4s var(--ease-out-expo);
}

.requirement-card:hover {
    border-color: rgba(139, 92, 246, 0.4);
    transform: translateY(-8px);
}

.requirement-card-featured {
    border-color: rgba(139, 92, 246, 0.4);
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(10, 10, 20, 0.9) 100%);
}

.requirement-card-header { margin-bottom: var(--space-lg); }

.requirement-card-badge {
    display: inline-block;
    padding: 6px 16px;
    background: var(--gradient-aurora);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.requirement-card-glow {
    position: absolute;
    inset: -2px;
    background: var(--gradient-aurora);
    border-radius: var(--radius-xl);
    z-index: -1;
    opacity: 0.2;
    filter: blur(20px);
}

.requirement-list { list-style: none; }

.requirement-list li {
    display: flex;
    justify-content: space-between;
    padding: var(--space-sm) 0;
    border-bottom: 1px solid rgba(139, 92, 246, 0.1);
    font-size: 0.9rem;
}

.requirement-list li:last-child { border-bottom: none; }
.requirement-label { color: var(--text-muted); }
.requirement-value { color: var(--text-primary); font-weight: 500; }

/* Changelog */
.changelog-card {
    background: rgba(10, 10, 20, 0.8);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    margin-bottom: var(--space-lg);
}

.changelog-card-old { opacity: 0.7; }

.changelog-version {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
    flex-wrap: wrap;
}

.changelog-badge {
    padding: 4px 12px;
    background: var(--neon-green);
    color: var(--black);
    border-radius: var(--radius-full);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
}

.changelog-version h4 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    background: var(--gradient-aurora);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.changelog-date { color: var(--text-muted); font-size: 0.85rem; }

.changelog-list { list-style: none; }

.changelog-list li {
    position: relative;
    padding: var(--space-sm) 0 var(--space-sm) var(--space-lg);
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

.changelog-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: var(--gradient-aurora);
    border-radius: 50%;
}

/* Section Alt */
.section-alt {
    background: rgba(10, 10, 20, 0.5);
    border-top: 1px solid rgba(139, 92, 246, 0.1);
    border-bottom: 1px solid rgba(139, 92, 246, 0.1);
}

.container-narrow { max-width: 800px; }
.mb-xl { margin-bottom: var(--space-xl); }

/* Footer additional */
.footer-main {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: var(--space-2xl);
    margin-bottom: var(--space-2xl);
}

@media (max-width: 768px) {
    .footer-main { grid-template-columns: 1fr; }
}

.footer-links-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

@media (max-width: 640px) {
    .footer-links-grid { grid-template-columns: 1fr; }
}

.footer-heading {
    font-family: var(--font-display);
    font-size: 1.1rem;
    margin-bottom: var(--space-md);
    background: var(--gradient-aurora);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-tagline {
    color: var(--text-secondary);
    margin-bottom: var(--space-lg);
    line-height: 1.7;
}

.footer-copyright { color: var(--text-muted); font-size: 0.85rem; }

.footer-bottom-links { display: flex; gap: var(--space-lg); }

.footer-bottom-links a {
    color: var(--text-muted);
    font-size: 0.85rem;
    transition: color 0.3s;
}

.footer-bottom-links a:hover { color: var(--text-primary); }

.social-link {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: var(--radius-md);
    transition: all 0.3s var(--ease-out-expo);
}

.social-link:hover {
    background: var(--gradient-aurora);
    border-color: transparent;
    transform: translateY(-4px);
}

/* Logo legacy */
.logo-icon {
    position: relative;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-aurora);
    border-radius: var(--radius-md);
}

.logo-icon span {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.4rem;
    color: var(--white);
}

.logo-glow {
    position: absolute;
    inset: -4px;
    background: var(--gradient-aurora);
    border-radius: var(--radius-md);
    filter: blur(15px);
    opacity: 0.5;
    z-index: -1;
}

.logo-text-accent {
    background: var(--gradient-aurora);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.breadcrumb-sep { color: var(--text-muted); }
.breadcrumb-current { color: var(--text-primary); }

/* CTA Card for pages */
.cta-card {
    position: relative;
    background: rgba(10, 10, 20, 0.9);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: var(--radius-2xl);
    padding: var(--space-3xl);
    text-align: center;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.cta-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
}

.cta-orb-1 {
    width: 300px;
    height: 300px;
    top: -100px;
    left: -100px;
    background: rgba(139, 92, 246, 0.3);
}

.cta-orb-2 {
    width: 250px;
    height: 250px;
    bottom: -80px;
    right: -80px;
    background: rgba(236, 72, 153, 0.3);
}

.cta-card .cta-title { margin-bottom: var(--space-md); }
.cta-card .cta-description { margin-bottom: var(--space-xl); }

.cta-actions {
    display: flex;
    justify-content: center;
    gap: var(--space-md);
    flex-wrap: wrap;
}

.cta-meta {
    display: flex;
    justify-content: center;
    gap: var(--space-md);
    margin-top: var(--space-lg);
    color: var(--text-muted);
    font-size: 0.85rem;
    flex-wrap: wrap;
}

.cta-meta-sep { opacity: 0.5; }

/* ============================================
   FEATURES PAGE - MISSING STYLES
   ============================================ */

/* Bento Prompt Demo */
.bento-prompt-demo {
    position: absolute;
    bottom: var(--space-lg);
    left: var(--space-lg);
    right: var(--space-lg);
    padding: var(--space-md);
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(10px);
}

.bento-prompt-text {
    display: block;
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-style: italic;
    line-height: 1.5;
}

/* Bento Tags */
.bento-tags {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-xs);
    margin-top: var(--space-md);
}

.bento-tag {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(139, 92, 246, 0.15);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    color: var(--accent-2);
    transition: all 0.3s ease;
}

.bento-tag:hover {
    background: rgba(139, 92, 246, 0.25);
    border-color: rgba(139, 92, 246, 0.5);
}

/* Speed Indicator */
.bento-speed-indicator {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-top: var(--space-md);
}

.speed-bar {
    flex: 1;
    height: 8px;
    background: rgba(139, 92, 246, 0.2);
    border-radius: var(--radius-full);
    overflow: hidden;
}

.speed-fill {
    width: 75%;
    height: 100%;
    background: var(--gradient-aurora);
    border-radius: var(--radius-full);
    animation: speedPulse 2s ease-in-out infinite;
}

@keyframes speedPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.speed-label {
    color: var(--accent-2);
    font-size: 0.9rem;
    font-weight: 600;
}

/* Styles Showcase Grid */
.styles-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: var(--space-md);
}

/* Style Card */
.style-card {
    background: rgba(20, 20, 30, 0.8);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: all 0.4s var(--ease-out-expo);
}

.style-card:hover {
    transform: translateY(-5px);
    border-color: rgba(139, 92, 246, 0.4);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.style-card-visual {
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.style-card-visual::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 50%, rgba(20, 20, 30, 0.9) 100%);
}

.style-card-visual svg {
    position: relative;
    z-index: 1;
    color: white;
}

.style-card-content {
    padding: var(--space-md);
}

.style-card-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.style-card-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Styles Note */
.styles-note {
    color: var(--text-secondary);
    font-size: 1rem;
    text-align: center;
    margin-top: var(--space-xl);
}

/* Section CTA centered */
.section-cta {
    text-align: center;
}

/* Features Advanced Grid */
.features-advanced-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: var(--space-lg);
}

/* Feature Card Advanced */
.feature-card-advanced {
    display: flex;
    gap: var(--space-md);
    padding: var(--space-xl);
    background: rgba(20, 20, 30, 0.8);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: var(--radius-xl);
    transition: all 0.4s var(--ease-out-expo);
    position: relative;
    overflow: hidden;
}

.feature-card-advanced:hover {
    transform: translateY(-5px);
    border-color: rgba(139, 92, 246, 0.4);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.feature-card-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(139, 92, 246, 0.15);
    border-radius: var(--radius-lg);
    color: var(--accent-2);
}

.feature-card-content {
    flex: 1;
}

.feature-card-title {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--space-xs);
}

.feature-card-description {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.feature-card-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-2), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-card-advanced:hover .feature-card-glow {
    opacity: 1;
}

/* Bento Grid Features Variant */
.bento-grid-features {
    grid-template-columns: repeat(3, 1fr);
}

.bento-grid-features .bento-lg {
    grid-column: span 2;
    grid-row: span 2;
}

@media (max-width: 1024px) {
    .bento-grid-features {
        grid-template-columns: repeat(2, 1fr);
    }
    .bento-grid-features .bento-lg {
        grid-column: span 2;
    }
}

@media (max-width: 640px) {
    .bento-grid-features {
        grid-template-columns: 1fr;
    }
    .bento-grid-features .bento-lg,
    .bento-grid-features .bento-md {
        grid-column: span 1;
    }
    .features-advanced-grid {
        grid-template-columns: 1fr;
    }
    .styles-showcase {
        grid-template-columns: repeat(2, 1fr);
    }
}
