/* ZK-IMG Website Styles - Award-Winning Premium Design */

:root {
    --color-primary: #06b6d4;
    --color-primary-dark: #0891b2;
    --color-secondary: #22d3ee;
    --color-accent: #06b6d4;
    --color-success: #10b981;
    --color-text: #e5e7eb;
    --color-text-light: #9ca3af;
    --color-text-muted: #6b7280;
    --color-bg: #0f1419;
    --color-bg-alt: #1a2332;
    --color-bg-elevated: #1f2937;
    --color-bg-card: #1a2332;
    --color-bg-dark: #0a0e14;
    --color-border: #334155;
    --color-border-light: #2d3748;
    --gradient-primary: linear-gradient(135deg, #06b6d4 0%, #22d3ee 100%);
    --gradient-accent: linear-gradient(135deg, #22d3ee 0%, #06b6d4 100%);
    --gradient-hero: linear-gradient(180deg, #0a0e14 0%, #0f1419 100%);
    --gradient-premium: linear-gradient(135deg, #06b6d4 0%, #22d3ee 50%, #67e8f9 100%);
    --gradient-mesh: radial-gradient(at 40% 20%, hsla(188,95%,60%,0.15) 0px, transparent 50%),
                     radial-gradient(at 80% 0%, hsla(188,85%,70%,0.12) 0px, transparent 50%),
                     radial-gradient(at 0% 50%, hsla(195,79%,56%,0.10) 0px, transparent 50%);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 40px rgba(6, 182, 212, 0.3);
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.7;
    color: var(--color-text);
    background: var(--color-bg);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    scroll-behavior: smooth;
}

/* Premium Animated Background with Mesh Gradient */
body::before {
    content: '';
    position: fixed;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: var(--gradient-mesh);
    pointer-events: none;
    z-index: -1;
    animation: meshMove 25s ease-in-out infinite alternate;
    opacity: 0.7;
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 30%, rgba(6, 182, 212, 0.12) 0%, transparent 60%),
        radial-gradient(circle at 80% 70%, rgba(34, 211, 238, 0.10) 0%, transparent 60%),
        radial-gradient(circle at 40% 80%, rgba(6, 182, 212, 0.08) 0%, transparent 60%);
    pointer-events: none;
    z-index: -1;
    animation: backgroundFloat 30s ease-in-out infinite;
}

@keyframes backgroundFloat {
    0%, 100% {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
    33% {
        opacity: 0.7;
        transform: scale(1.1) rotate(1deg);
    }
    66% {
        opacity: 0.85;
        transform: scale(0.95) rotate(-1deg);
    }
}

@keyframes meshMove {
    0% {
        transform: translate(0, 0) scale(1);
        opacity: 0.7;
    }
    50% {
        opacity: 0.5;
    }
    100% {
        transform: translate(20px, 20px) scale(1.05);
        opacity: 0.7;
    }
}

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

/* Navigation */
.nav {
    position: sticky;
    top: 0;
    background: rgba(10, 14, 20, 0.85);
    backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
}

.nav::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,
        rgba(6, 182, 212, 0.03) 0%,
        rgba(34, 211, 238, 0.03) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.nav:hover::before {
    opacity: 1;
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-text);
    text-decoration: none;
    transition: transform 0.3s ease;
}

.nav-logo:hover {
    transform: scale(1.05);
}

.nav-logo a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: var(--color-text);
    transition: all 0.3s ease;
}

.nav-logo a:hover .logo-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-logo .logo-text {
    font-family: 'Montserrat Alternates', 'Inter', sans-serif;
    font-weight: 700;
    font-style: normal;
    letter-spacing: -0.02em;
    transition: all 0.3s ease;
}

.logo-icon {
    width: 40px;
    height: 40px;
    filter: drop-shadow(0 2px 8px rgba(6, 182, 212, 0.3));
    transition: all 0.3s ease;
}

.nav-logo:hover .logo-icon {
    filter: drop-shadow(0 4px 12px rgba(6, 182, 212, 0.5));
    transform: rotate(5deg);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0.5rem;
    align-items: center;
}

.nav-menu li {
    position: relative;
}

.nav-menu a {
    text-decoration: none;
    color: var(--color-text-light);
    font-weight: 500;
    font-size: 0.9375rem;
    position: relative;
    padding: 0.625rem 1rem;
    border-radius: 0.5rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
}

.nav-menu a:not(.btn-primary)::after {
    content: '';
    position: absolute;
    bottom: 0.375rem;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 20px;
    height: 2px;
    background: var(--gradient-primary);
    border-radius: 2px;
    transition: transform 0.3s ease;
}

.nav-menu a:not(.btn-primary):hover {
    color: var(--color-text);
    background: rgba(6, 182, 212, 0.08);
}

.nav-menu a:not(.btn-primary):hover::after {
    transform: translateX(-50%) scaleX(1);
}

.nav-menu .btn-primary {
    padding: 0.625rem 1.5rem;
    font-size: 0.875rem;
    color: black;
}

/* Buttons - Premium Design */
.btn-primary {
    background: var(--gradient-primary);
    color: black;
    padding: 0.75rem 1.5rem;
    border-radius: 0.625rem;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    box-shadow: 0 0 0 1px rgba(6, 182, 212, 0.1),
                0 4px 12px rgba(6, 182, 212, 0.15);
    position: relative;
    overflow: hidden;
}

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

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

.btn-primary:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 0 0 1px rgba(6, 182, 212, 0.2),
                0 12px 24px rgba(6, 182, 212, 0.35),
                0 0 40px rgba(6, 182, 212, 0.2);
}

.btn-primary:active {
    transform: translateY(0) scale(0.98);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.03);
    color: var(--color-text);
    padding: 0.75rem 1.5rem;
    border-radius: 0.625rem;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

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

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

.btn-secondary:hover {
    background: rgba(6, 182, 212, 0.1);
    border-color: var(--color-primary);
    color: var(--color-primary);
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(6, 182, 212, 0.2);
}

.btn-large {
    background: var(--gradient-primary);
    color: white;
    padding: 1.125rem 2.75rem;
    border-radius: 0.75rem;
    font-weight: 600;
    font-size: 1.0625rem;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 24px rgba(6, 182, 212, 0.25),
                0 0 0 1px rgba(6, 182, 212, 0.1);
    position: relative;
    overflow: hidden;
}

.btn-large::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn-large:hover::before {
    width: 300px;
    height: 300px;
}

.btn-large:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 16px 40px rgba(6, 182, 212, 0.4),
                0 0 60px rgba(6, 182, 212, 0.3);
}

.btn-large:active {
    transform: translateY(-1px) scale(1.01);
}

/* Hero Section - Award-Winning Design */
.hero {
    padding: 12rem 0 8rem;
    position: relative;
    overflow: hidden;
    background: var(--gradient-hero);
    min-height: 90vh;
    display: flex;
    align-items: center;
}

/* Cryptographic Animated Background */
.crypto-background {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    opacity: 0.6;
}

/* Hexagonal Grid */
.hex-grid {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0.4;
    animation: hexFloat 30s ease-in-out infinite;
}

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

/* Floating Particles */
.crypto-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #06b6d4;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(6, 182, 212, 0.8),
                0 0 20px rgba(6, 182, 212, 0.4);
    animation: particleFloat 20s ease-in-out infinite;
}

.particle-1 {
    left: 10%;
    top: 20%;
    animation-delay: 0s;
    animation-duration: 25s;
}

.particle-2 {
    left: 80%;
    top: 40%;
    animation-delay: 3s;
    animation-duration: 30s;
}

.particle-3 {
    left: 50%;
    top: 60%;
    animation-delay: 1.5s;
    animation-duration: 28s;
}

.particle-4 {
    left: 30%;
    top: 80%;
    animation-delay: 4s;
    animation-duration: 22s;
}

.particle-5 {
    left: 70%;
    top: 15%;
    animation-delay: 2s;
    animation-duration: 26s;
}

.particle-6 {
    left: 40%;
    top: 35%;
    animation-delay: 5s;
    animation-duration: 24s;
}

@keyframes particleFloat {
    0%, 100% {
        transform: translate(0, 0);
        opacity: 0.3;
    }
    25% {
        transform: translate(30px, -30px);
        opacity: 0.8;
    }
    50% {
        transform: translate(-20px, -60px);
        opacity: 0.5;
    }
    75% {
        transform: translate(40px, -40px);
        opacity: 0.7;
    }
}

/* Hash/Binary Code Rain */
.hash-rain {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
}

.hash-rain span {
    position: absolute;
    top: -50px;
    left: var(--x);
    font-family: 'Courier New', monospace;
    font-size: 14px;
    color: rgba(6, 182, 212, 0.6);
    font-weight: 600;
    animation: hashFall 8s linear infinite;
    animation-delay: var(--delay);
    text-shadow: 0 0 10px rgba(6, 182, 212, 0.8);
}

@keyframes hashFall {
    0% {
        top: -50px;
        opacity: 0;
    }
    10% {
        opacity: 0.8;
    }
    90% {
        opacity: 0.3;
    }
    100% {
        top: 100%;
        opacity: 0;
    }
}

/* Network Lines */
.network-lines {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0.5;
}

.line-group {
    animation: pulseNetwork 4s ease-in-out infinite;
}

.network-lines circle {
    animation: nodePulse 3s ease-in-out infinite;
}

.network-lines circle:nth-child(odd) {
    animation-delay: 0.5s;
}

@keyframes pulseNetwork {
    0%, 100% {
        opacity: 0.3;
    }
    50% {
        opacity: 0.7;
    }
}

@keyframes nodePulse {
    0%, 100% {
        r: 3;
        opacity: 0.6;
    }
    50% {
        r: 5;
        opacity: 1;
    }
}

/* Glowing Orbs */
.crypto-orbs {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.orb {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%,
        rgba(6, 182, 212, 0.3) 0%,
        rgba(34, 211, 238, 0.1) 50%,
        transparent 100%);
    filter: blur(40px);
    animation: orbFloat 15s ease-in-out infinite;
}

.orb-1 {
    width: 400px;
    height: 400px;
    top: 10%;
    left: 5%;
    animation-duration: 20s;
}

.orb-2 {
    width: 300px;
    height: 300px;
    top: 50%;
    right: 10%;
    animation-duration: 25s;
    animation-delay: 2s;
}

.orb-3 {
    width: 350px;
    height: 350px;
    bottom: 10%;
    left: 40%;
    animation-duration: 18s;
    animation-delay: 4s;
}

@keyframes orbFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.3;
    }
    33% {
        transform: translate(50px, -50px) scale(1.1);
        opacity: 0.5;
    }
    66% {
        transform: translate(-30px, 30px) scale(0.9);
        opacity: 0.4;
    }
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background:
        radial-gradient(circle at 30% 40%, rgba(6, 182, 212, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 70% 60%, rgba(34, 211, 238, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(6, 182, 212, 0.08) 0%, transparent 50%);
    z-index: 0;
    animation: heroGlow 25s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        linear-gradient(180deg, transparent 0%, var(--color-bg) 100%);
    z-index: 1;
    pointer-events: none;
}

@keyframes heroGlow {
    0%, 100% {
        opacity: 1;
        transform: scale(1) rotate(0deg);
    }
    25% {
        opacity: 0.7;
        transform: scale(1.1) rotate(5deg);
    }
    50% {
        opacity: 0.85;
        transform: scale(1.05) rotate(0deg);
    }
    75% {
        opacity: 0.7;
        transform: scale(1.08) rotate(-5deg);
    }
}

.hero-content {
    max-width: 950px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease-out;
}

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

.hero-badge {
    display: inline-block;
    background: rgba(6, 182, 212, 0.12);
    backdrop-filter: blur(10px);
    color: var(--color-primary);
    padding: 0.625rem 1.5rem;
    border-radius: 2rem;
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 2.5rem;
    border: 1px solid rgba(6, 182, 212, 0.3);
    box-shadow: 0 0 20px rgba(6, 182, 212, 0.2),
                inset 0 1px 0 rgba(255, 255, 255, 0.1);
    animation: fadeInUp 0.8s ease-out 0.2s both, pulse 3s ease-in-out 2s infinite;
    cursor: default;
    transition: all 0.3s ease;
}

.hero-badge:hover {
    background: rgba(6, 182, 212, 0.18);
    box-shadow: 0 0 30px rgba(6, 182, 212, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.15);
    transform: scale(1.05);
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 20px rgba(6, 182, 212, 0.2),
                    inset 0 1px 0 rgba(255, 255, 255, 0.1);
    }
    50% {
        box-shadow: 0 0 35px rgba(6, 182, 212, 0.4),
                    inset 0 1px 0 rgba(255, 255, 255, 0.15);
    }
}

.hero-title {
    font-size: 4.25rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 2rem;
    color: var(--color-text);
    letter-spacing: -0.03em;
    animation: fadeInUp 0.8s ease-out 0.3s both;
    text-shadow: 0 0 40px rgba(6, 182, 212, 0.15);
}

.gradient-text {
    background: linear-gradient(135deg, #06b6d4 0%, #22d3ee 50%, #67e8f9 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 8s ease-in-out infinite;
    filter: drop-shadow(0 0 30px rgba(6, 182, 212, 0.3));
}

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

.hero-subtitle {
    font-size: 1.1875rem;
    line-height: 1.75;
    color: var(--color-text-light);
    margin-bottom: 3.5rem;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 0.8s ease-out 0.5s both;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin: 4.5rem 0;
    padding: 3.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    animation: fadeInUp 0.8s ease-out 0.7s both;
}

.hero-stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 1px;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(6, 182, 212, 0.6) 50%,
        transparent 100%);
}

.hero-stats::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 1px;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(6, 182, 212, 0.6) 50%,
        transparent 100%);
}

.stat {
    text-align: center;
    position: relative;
    animation: fadeInUp 0.6s ease-out both;
    transition: transform 0.3s ease;
}

.stat:nth-child(1) { animation-delay: 0.8s; }
.stat:nth-child(2) { animation-delay: 0.9s; }
.stat:nth-child(3) { animation-delay: 1.0s; }

.stat:hover {
    transform: scale(1.05) translateY(-5px);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #06b6d4 0%, #22d3ee 50%, #67e8f9 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.75rem;
    animation: gradientShift 6s ease-in-out infinite;
    filter: drop-shadow(0 0 20px rgba(6, 182, 212, 0.3));
    transition: all 0.3s ease;
}

.stat:hover .stat-number {
    filter: drop-shadow(0 0 30px rgba(6, 182, 212, 0.5));
}

.stat-label {
    font-size: 0.9375rem;
    color: var(--color-text-light);
    font-weight: 500;
    transition: color 0.3s ease;
}

.stat:hover .stat-label {
    color: var(--color-text);
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
    animation: fadeInUp 0.8s ease-out 1.1s both;
}

.hero-cta > * {
    position: relative;
    z-index: 1;
}

/* Section Styles */
.section {
    padding: 6rem 0;
    position: relative;
    scroll-margin-top: 80px;
}

.section-dark {
    background: var(--color-bg-dark);
    color: var(--color-text);
    position: relative;
}

.section-dark::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(6, 182, 212, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(34, 211, 238, 0.04) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.section-header {
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.section-header.centered {
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.75rem;
    font-weight: 800;
    margin-bottom: 1.25rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--color-text);
}

.section-subtitle {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--color-text-light);
}

.section-dark .section-subtitle {
    color: var(--color-text-light);
}

.section-dark .section-title {
    color: var(--color-text);
}

/* Problem Grid */
.problem-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.problem-card {
    background: rgba(15, 20, 25, 0.5);
    backdrop-filter: blur(20px) saturate(150%);
    padding: 2.25rem;
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    --tilt-x: 0deg;
    --tilt-y: 0deg;
}

.problem-card.card-tilting {
    transform: perspective(1000px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y)) translateY(-8px) scale(1.02) !important;
}

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

.problem-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%,
        rgba(6, 182, 212, 0.1) 0%,
        transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.problem-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(6, 182, 212, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4),
                0 0 0 1px rgba(6, 182, 212, 0.1),
                0 0 60px rgba(6, 182, 212, 0.15);
}

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

.problem-card:hover::after {
    opacity: 1;
}

.problem-icon {
    font-size: 3rem;
    margin-bottom: 1.25rem;
}

.problem-icon img,
.use-case-icon img,
.tech-icon img {
    width: 56px;
    height: 56px;
    opacity: 0.9;
}

.problem-card h3 {
    font-size: 1.375rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--color-text);
}

.problem-card p {
    color: var(--color-text-light);
    margin-bottom: 1.5rem;
    line-height: 1.7;
    font-size: 0.9375rem;
}

.problem-stat {
    background: rgba(239, 68, 68, 0.1);
    color: #fca5a5;
    padding: 0.625rem 1rem;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 0.8125rem;
    border: 1px solid rgba(239, 68, 68, 0.2);
}

/* Failure Banner */
.failure-banner {
    background: rgba(239, 68, 68, 0.08);
    padding: 2.5rem;
    border-radius: 0.75rem;
    border: 1px solid rgba(239, 68, 68, 0.2);
    position: relative;
    z-index: 1;
}

.failure-banner h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
    color: var(--color-text);
}

.failure-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}

.failure-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.failure-x {
    font-size: 1.25rem;
    flex-shrink: 0;
}

.failure-item strong {
    color: var(--color-text);
    font-weight: 700;
}

.failure-item div {
    color: var(--color-text-light);
}

/* Solution Flow */
.solution-flow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin: 4rem 0;
    flex-wrap: wrap;
}

.flow-step {
    flex: 1;
    min-width: 250px;
    background: var(--color-bg-card);
    padding: 2rem;
    border-radius: 0.75rem;
    border: 1px solid var(--color-border-light);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.flow-number {
    width: 2.5rem;
    height: 2.5rem;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.125rem;
    margin-bottom: 1.25rem;
}

.flow-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--color-text);
}

.flow-content p {
    color: var(--color-text-light);
    margin-bottom: 1rem;
    line-height: 1.7;
    font-size: 0.9375rem;
}

.flow-tech {
    background: rgba(6, 182, 212, 0.15);
    color: var(--color-primary);
    padding: 0.5rem 0.875rem;
    border-radius: 0.375rem;
    font-size: 0.75rem;
    font-weight: 600;
    display: inline-block;
}

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

/* Solution Benefits */
.solution-benefits {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 4rem;
}

.benefit-card {
    background: rgba(15, 20, 25, 0.5);
    backdrop-filter: blur(20px) saturate(150%);
    padding: 2.25rem;
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    --tilt-x: 0deg;
    --tilt-y: 0deg;
}

.benefit-card.card-tilting {
    transform: perspective(1000px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y)) translateY(-6px) !important;
}

.benefit-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%,
        rgba(6, 182, 212, 0.12) 0%,
        transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.benefit-card:hover {
    border-color: rgba(6, 182, 212, 0.3);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.3),
                0 0 60px rgba(6, 182, 212, 0.12);
    transform: translateY(-6px);
}

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

.benefit-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.875rem;
    color: var(--color-text);
}

.benefit-card p {
    color: var(--color-text-light);
    line-height: 1.7;
    font-size: 0.9375rem;
}

/* Use Case Grid */
.use-case-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    position: relative;
    z-index: 1;
}

.use-case-card {
    background: rgba(15, 20, 25, 0.5);
    backdrop-filter: blur(20px) saturate(150%);
    padding: 2.25rem;
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    --tilt-x: 0deg;
    --tilt-y: 0deg;
}

.use-case-card.card-tilting {
    transform: perspective(1000px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y)) translateY(-8px) scale(1.02) !important;
}

.use-case-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #10b981, #06b6d4);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.use-case-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 80% 20%,
        rgba(16, 185, 129, 0.08) 0%,
        transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.use-case-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(16, 185, 129, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4),
                0 0 60px rgba(16, 185, 129, 0.15);
}

.use-case-card:hover::before,
.use-case-card:hover::after {
    opacity: 1;
}

.use-case-icon {
    font-size: 3rem;
    margin-bottom: 1.25rem;
}

.use-case-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    color: var(--color-text);
}

.use-case-card p {
    color: var(--color-text-light);
    margin-bottom: 1rem;
    line-height: 1.7;
    font-size: 0.9375rem;
}

.use-case-card strong {
    color: var(--color-text);
    font-weight: 700;
}

.use-case-card ul {
    list-style: none;
    margin: 1.5rem 0;
    padding: 0;
}

.use-case-card li {
    padding: 0.625rem 0 0.625rem 1.75rem;
    position: relative;
    color: var(--color-text-light);
    line-height: 1.6;
    font-size: 0.9375rem;
}

.use-case-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: 700;
}

.use-case-result {
    background: rgba(16, 185, 129, 0.12);
    color: #6ee7b7;
    padding: 0.875rem 1.25rem;
    border-radius: 0.5rem;
    font-weight: 600;
    margin-top: 1.5rem;
    border: 1px solid rgba(16, 185, 129, 0.25);
    font-size: 0.875rem;
}

/* Technology Features */
.tech-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.tech-feature {
    background: rgba(15, 20, 25, 0.5);
    backdrop-filter: blur(20px) saturate(150%);
    padding: 2.25rem;
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    --tilt-x: 0deg;
    --tilt-y: 0deg;
}

.tech-feature.card-tilting {
    transform: perspective(1000px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y)) translateY(-6px) !important;
}

.tech-feature::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 30%,
        rgba(6, 182, 212, 0.1) 0%,
        transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.tech-feature:hover {
    border-color: rgba(6, 182, 212, 0.3);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.3),
                0 0 60px rgba(6, 182, 212, 0.15);
    transform: translateY(-6px);
}

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

.tech-icon {
    font-size: 3rem;
    margin-bottom: 1.25rem;
}

.tech-feature h3 {
    font-size: 1.375rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--color-text);
}

.tech-feature p {
    color: var(--color-text-light);
    margin-bottom: 1.5rem;
    line-height: 1.7;
    font-size: 0.9375rem;
}

.tech-feature ul {
    list-style: none;
    padding: 0;
}

.tech-feature li {
    padding: 0.625rem 0 0.625rem 1.75rem;
    position: relative;
    color: var(--color-text-light);
    line-height: 1.6;
    font-size: 0.9375rem;
}

.tech-feature li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--color-primary);
    font-weight: 700;
}

/* Comparison Table */
.tech-comparison {
    background: var(--color-bg-card);
    padding: 2.5rem;
    border-radius: 0.75rem;
    border: 1px solid var(--color-border-light);
}

.tech-comparison h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
    color: var(--color-text);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
}

.comparison-table th,
.comparison-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--color-border-light);
}

.comparison-table th {
    background: rgba(6, 182, 212, 0.1);
    font-weight: 700;
    color: var(--color-text);
    font-size: 0.9375rem;
}

.comparison-table tbody tr {
    color: var(--color-text-light);
}

.comparison-table tbody tr:hover {
    background: rgba(6, 182, 212, 0.05);
}

.comparison-table td:first-child {
    color: var(--color-text);
    font-weight: 600;
}

.comparison-table .check {
    color: #10b981;
    font-weight: 600;
}

.comparison-table .cross {
    color: #ef4444;
    font-weight: 600;
}

/* Pricing Section */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.pricing-card {
    background: rgba(15, 20, 25, 0.6);
    backdrop-filter: blur(24px) saturate(180%);
    padding: 2.75rem;
    border-radius: 1.25rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    --tilt-x: 0deg;
    --tilt-y: 0deg;
}

.pricing-card.card-tilting {
    transform: perspective(1000px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y)) translateY(-8px) scale(1.02) !important;
}

.pricing-card::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: var(--gradient-primary);
    border-radius: 1.25rem;
    opacity: 0;
    z-index: -1;
    transition: opacity 0.4s ease;
}

.pricing-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.4),
                0 0 80px rgba(6, 182, 212, 0.2);
    border-color: rgba(6, 182, 212, 0.3);
}

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

.pricing-card.featured {
    border-color: rgba(6, 182, 212, 0.4);
    box-shadow: 0 16px 40px rgba(6, 182, 212, 0.25),
                0 0 80px rgba(6, 182, 212, 0.15);
    transform: scale(1.05);
    background: rgba(15, 20, 25, 0.7);
}

.pricing-card.featured::before {
    opacity: 0.15;
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-8px);
    box-shadow: 0 28px 56px rgba(6, 182, 212, 0.35),
                0 0 100px rgba(6, 182, 212, 0.25);
}

.pricing-badge {
    position: absolute;
    top: -1rem;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 2rem;
    font-weight: 700;
    font-size: 0.875rem;
}

.pricing-tier {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-text);
    margin-bottom: 1.5rem;
    text-align: center;
}

.pricing-price {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--color-border);
}

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

.price-unit {
    display: block;
    font-size: 0.875rem;
    color: var(--color-text-light);
    font-weight: 500;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.pricing-features li {
    padding: 0.75rem 0 0.75rem 2rem;
    position: relative;
    color: var(--color-text-light);
    line-height: 1.6;
}

.pricing-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: 900;
}

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

.deployment-options {
    background: var(--color-bg-elevated);
    padding: 2.5rem;
    border-radius: 0.75rem;
    margin-bottom: 3rem;
    border: 1px solid var(--color-border-light);
}

.deployment-options h3 {
    font-size: 1.75rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 2rem;
    color: var(--color-text);
}

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

.deployment-card {
    background: var(--color-bg-card);
    padding: 1.75rem;
    border-radius: 0.5rem;
    border: 1px solid var(--color-border-light);
}

.deployment-card h4 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.875rem;
    color: var(--color-text);
}

.deployment-card p {
    color: var(--color-text-light);
    line-height: 1.7;
    font-size: 0.9375rem;
}

.performance-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    padding: 3rem 0;
    border-top: 2px solid var(--color-border);
}

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

.perf-number {
    font-size: 3.5rem;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
}

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

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #06b6d4 0%, #22d3ee 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(255, 255, 255, 0.06) 0%, transparent 50%);
    animation: ctaGlow 15s ease-in-out infinite;
}

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

.cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.25rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.cta-text {
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

.cta-note {
    margin-top: 1.5rem;
    font-size: 0.875rem;
    opacity: 0.8;
}

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

.cta-section .btn-large:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 255, 255, 0.25);
}

/* Email Subscription Section */
.subscription-section {
    background: var(--color-bg-alt);
    border-top: 1px solid var(--color-border-light);
    border-bottom: 1px solid var(--color-border-light);
    padding: 5rem 0;
}

.subscription-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.subscription-title {
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.subscription-text {
    font-size: 1.125rem;
    color: var(--color-text-light);
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.subscription-form {
    width: 100%;
}

.form-group {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.form-input {
    flex: 1;
    min-width: 250px;
    padding: 1rem 1.25rem;
    font-size: 1rem;
    background: rgba(15, 20, 25, 0.6);
    border: 2px solid var(--color-border);
    border-radius: 0.75rem;
    color: var(--color-text);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: inherit;
}

.form-input:focus {
    outline: none;
    border-color: var(--color-primary);
    background: rgba(15, 20, 25, 0.8);
    box-shadow: 0 0 0 4px rgba(6, 182, 212, 0.1);
}

.form-input::placeholder {
    color: var(--color-text-muted);
}

.btn-subscribe {
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: 0.75rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
    box-shadow: 0 4px 16px rgba(6, 182, 212, 0.3);
}

.btn-subscribe:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(6, 182, 212, 0.4);
}

.btn-subscribe:active {
    transform: translateY(0);
}

.subscription-note {
    font-size: 0.875rem;
    color: var(--color-text-muted);
    margin-top: 1rem;
}

.subscription-message {
    margin-top: 1.5rem;
    padding: 1rem;
    border-radius: 0.75rem;
    font-weight: 500;
    text-align: center;
}

.subscription-message.success {
    background: rgba(16, 185, 129, 0.1);
    color: var(--color-success);
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.subscription-message.error {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

@media (max-width: 640px) {
    .form-group {
        flex-direction: column;
    }

    .form-input {
        min-width: 100%;
    }

    .subscription-title {
        font-size: 2rem;
    }

    .subscription-text {
        font-size: 1rem;
    }
}

/* Footer */
.footer {
    background: var(--color-bg-dark);
    color: var(--color-text);
    padding: 4rem 0 2rem;
    border-top: 1px solid var(--color-border-light);
}

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

.footer-column h4 {
    font-size: 0.875rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    color: var(--color-text);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 0.75rem;
}

.footer-column ul li a {
    color: var(--color-text-light);
    text-decoration: none;
    transition: color 0.2s;
    font-size: 0.9375rem;
}

.footer-column ul li a:hover {
    color: var(--color-text);
}

.footer-bottom {
    border-top: 1px solid var(--color-border-light);
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    color: var(--color-text-muted);
    margin: 0.5rem 0;
    font-size: 0.875rem;
}

.footer-disclaimer {
    max-width: 800px;
    margin: 1rem auto 0;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3rem;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .problem-grid,
    .use-case-grid,
    .tech-features,
    .solution-benefits {
        grid-template-columns: 1fr;
    }

    .failure-list {
        grid-template-columns: 1fr;
    }

    .pricing-grid,
    .deployment-grid,
    .performance-stats {
        grid-template-columns: 1fr;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .pricing-card.featured:hover {
        transform: translateY(-5px);
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
}

/* Blog Styles */

/* Blog Hero Section */
.blog-hero {
    padding: 10rem 0 6rem;
    position: relative;
    overflow: hidden;
    background: var(--gradient-hero);
}

.blog-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(6, 182, 212, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(34, 211, 238, 0.08) 0%, transparent 50%);
    z-index: 0;
}

.blog-hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.blog-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(14, 165, 233, 0.1);
    backdrop-filter: blur(10px);
    color: var(--color-primary);
    padding: 0.625rem 1.25rem;
    border-radius: 2rem;
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 2rem;
    border: 1px solid rgba(14, 165, 233, 0.2);
    animation: fadeInUp 0.6s ease-out;
}

.badge-icon {
    width: 18px;
    height: 18px;
    color: var(--color-primary);
}

.blog-hero-title {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--color-text);
    font-family: 'Space Grotesk', sans-serif;
    animation: fadeInUp 0.6s ease-out 0.1s both;
}

.blog-hero-subtitle {
    font-size: 1.375rem;
    line-height: 1.7;
    color: var(--color-text-light);
    max-width: 600px;
    margin: 0 auto;
    animation: fadeInUp 0.6s ease-out 0.2s both;
}

/* Blog Section */
.blog-section {
    padding: 4rem 0 8rem;
    background: var(--color-bg);
}

/* Blog Grid */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

/* Blog Card Base */
.blog-card {
    background: var(--color-bg-card);
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    transition: all 0.2s ease;
    border: 1px solid var(--color-border-light);
    position: relative;
}

.blog-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.05) 0%, rgba(34, 211, 238, 0.03) 100%);
    opacity: 0;
    transition: opacity 0.2s ease;
    pointer-events: none;
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    border-color: var(--color-border);
}

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

.blog-card-content {
    padding: 2rem;
    position: relative;
}

/* Featured Blog Card */
.blog-card-featured {
    grid-column: 1 / -1;
    background: var(--color-bg-elevated);
    border: 1px solid var(--color-border);
    margin-bottom: 1rem;
}

.blog-card-featured::before {
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.08) 0%, rgba(34, 211, 238, 0.06) 100%);
    opacity: 1;
}

.blog-card-featured:hover {
    border-color: var(--color-primary);
    box-shadow: 0 12px 30px rgba(6, 182, 212, 0.2);
}

.blog-card-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: var(--gradient-primary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 1.5rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(6, 182, 212, 0.3);
}

.blog-card-featured .blog-card-title {
    font-size: 2rem;
    margin: 1.5rem 0;
}

.blog-card-featured .blog-card-excerpt {
    font-size: 1.125rem;
}

/* Blog Card Header & Meta */
.blog-card-header {
    margin-bottom: 1.25rem;
}

.blog-card-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.blog-card-category {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    background: linear-gradient(135deg, #06b6d4 0%, #22d3ee 100%);
    color: white;
    padding: 0.375rem 0.875rem;
    border-radius: 1.25rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-card-category-muted {
    background: rgba(100, 116, 139, 0.1);
    color: var(--color-text-light);
}

.category-icon {
    width: 14px;
    height: 14px;
}

.blog-card-date {
    color: var(--color-text-light);
    font-size: 0.875rem;
    font-weight: 500;
}

/* Blog Card Title */
.blog-card-title {
    font-size: 1.375rem;
    font-weight: 700;
    margin: 1.25rem 0;
    line-height: 1.3;
    font-family: 'Space Grotesk', sans-serif;
}

.blog-card-title a {
    color: var(--color-text);
    text-decoration: none;
    transition: all 0.2s ease;
}

.blog-card:hover .blog-card-title a {
    color: var(--color-primary);
}

/* Blog Card Excerpt */
.blog-card-excerpt {
    color: var(--color-text-light);
    line-height: 1.7;
    margin: 1.25rem 0;
    font-size: 0.9375rem;
}

/* Blog Tags */
.blog-card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 1.5rem 0;
}

.blog-tag {
    background: rgba(6, 182, 212, 0.15);
    color: var(--color-primary);
    padding: 0.375rem 0.875rem;
    border-radius: 0.375rem;
    font-size: 0.75rem;
    font-weight: 600;
    border: 1px solid rgba(6, 182, 212, 0.25);
    transition: all 0.2s ease;
}

.blog-tag:hover {
    background: rgba(6, 182, 212, 0.2);
    border-color: rgba(6, 182, 212, 0.4);
}

.blog-tag-outline {
    background: transparent;
    border: 1px dashed var(--color-border);
    color: var(--color-text-muted);
}

/* Blog Card Footer */
.blog-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1.75rem;
    padding-top: 1.75rem;
    border-top: 1px solid var(--color-border-light);
}

.blog-card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.875rem;
    transition: all 0.2s ease;
}

.blog-card-link:hover {
    color: var(--color-secondary);
    gap: 0.625rem;
}

.link-arrow {
    width: 16px;
    height: 16px;
    transition: transform 0.2s ease;
}

.blog-card-link:hover .link-arrow {
    transform: translateX(3px);
}

.blog-card-readtime {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    color: var(--color-text-muted);
    font-size: 0.8125rem;
    font-weight: 500;
}

.readtime-icon {
    width: 14px;
    height: 14px;
    opacity: 0.7;
}

/* Upcoming Blog Cards */
.blog-card-upcoming {
    position: relative;
    opacity: 0.7;
}

.blog-card-upcoming::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(15, 20, 25, 0.4);
    backdrop-filter: blur(1px);
    border-radius: 0.75rem;
    pointer-events: none;
}

.blog-card-upcoming .blog-card-content {
    position: relative;
    z-index: 1;
}

.blog-card-icon {
    margin-bottom: 1.5rem;
    animation: float 3s ease-in-out infinite;
}

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

.blog-card-upcoming .blog-card-title {
    opacity: 0.7;
}

.blog-card-upcoming .blog-card-excerpt {
    opacity: 0.6;
}

/* Article Page Styles */
.article {
    background: var(--color-bg);
}

.article-header {
    background: var(--gradient-hero);
    padding: 8rem 0 4rem;
    text-align: center;
}

.article-meta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
    margin-bottom: 2rem;
    font-size: 0.875rem;
}

.article-category {
    background: linear-gradient(135deg, #06b6d4 0%, #22d3ee 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.article-date,
.article-readtime {
    color: var(--color-text-light);
}

.article-title {
    font-size: 2.75rem;
    font-weight: 800;
    line-height: 1.2;
    margin: 1rem 0;
    color: var(--color-text);
    font-family: 'Space Grotesk', sans-serif;
    letter-spacing: -0.02em;
}

.article-lead {
    font-size: 1.25rem;
    line-height: 1.6;
    color: var(--color-text-light);
    margin: 2rem 0 0;
    font-weight: 500;
}

.article-lead-secondary {
    font-size: 1.125rem;
    line-height: 1.6;
    color: var(--color-text-muted);
    margin: 1rem 0 0;
    font-style: italic;
}

.article-content {
    padding: 4rem 0;
}

.article-section {
    margin-bottom: 3rem;
}

.article-section h2 {
    font-size: 1.875rem;
    font-weight: 700;
    margin: 2.5rem 0 1.5rem;
    color: var(--color-text);
    font-family: 'Space Grotesk', sans-serif;
    letter-spacing: -0.02em;
}

.article-section h3 {
    font-size: 1.375rem;
    font-weight: 700;
    margin: 2rem 0 1rem;
    color: var(--color-text);
}

.article-section p {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--color-text-light);
    margin: 1.25rem 0;
}

.article-section ul {
    margin: 1.25rem 0;
    padding-left: 1.5rem;
}

.article-section li {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--color-text-light);
    margin: 0.75rem 0;
}

.article-subsection {
    background: var(--color-bg-elevated);
    border-left: 3px solid var(--color-primary);
    padding: 2rem;
    margin: 2rem 0;
    border-radius: 0 0.5rem 0.5rem 0;
}

.article-subsection h3 {
    margin-top: 0;
    color: var(--color-primary);
}

.article-comparison {
    list-style: none;
    padding-left: 0;
}

.article-comparison li {
    padding: 1rem;
    margin: 1rem 0;
    background: var(--color-bg-card);
    border-radius: 0.5rem;
    border-left: 3px solid var(--color-primary);
}

.article-comparison li:last-child {
    border-left-color: var(--color-secondary);
}

.article-highlight {
    font-size: 1.375rem;
    font-weight: 700;
    text-align: center;
    padding: 2rem;
    background: var(--color-bg-elevated);
    border-radius: 0.75rem;
    color: var(--color-primary);
    margin: 2rem 0;
    border: 1px solid var(--color-border-light);
}

.article-about {
    background: var(--color-bg-elevated);
    padding: 2rem;
    border-radius: 0.75rem;
    margin: 3rem 0;
    border: 1px solid var(--color-border-light);
}

.article-about h3 {
    margin-top: 0;
    color: var(--color-text);
}

.article-footer {
    padding-top: 3rem;
    margin-top: 4rem;
    border-top: 1px solid var(--color-border-light);
}

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

.article-footer-link {
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.2s;
}

.article-footer-link:hover {
    color: var(--color-secondary);
    transform: translateX(-3px);
}

.nav-menu .active {
    color: var(--color-primary);
    font-weight: 600;
}

@media (max-width: 768px) {
    .hero {
        padding: 4rem 0 3rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.125rem;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-cta {
        flex-direction: column;
    }

    /* Simplify crypto background on mobile */
    .crypto-background {
        opacity: 0.3;
    }

    .hex-grid {
        opacity: 0.2;
    }

    .hash-rain span {
        font-size: 12px;
    }

    .orb {
        filter: blur(30px);
    }

    .orb-1,
    .orb-2,
    .orb-3 {
        width: 200px;
        height: 200px;
    }

    .particle {
        width: 3px;
        height: 3px;
    }

    .section {
        padding: 4rem 0;
    }

    .section-title {
        font-size: 2rem;
    }

    .cta-title {
        font-size: 2rem;
    }

    .nav {
        padding: 0.75rem 0;
    }

    .nav-logo {
        font-size: 1.25rem;
    }

    .logo-icon {
        width: 32px;
        height: 32px;
    }

    .nav-menu {
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        background: rgba(10, 14, 20, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 1.5rem;
        gap: 0.25rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
        display: none;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li {
        width: 100%;
    }

    .nav-menu a {
        display: block;
        width: 100%;
        text-align: center;
        padding: 0.875rem 1rem;
    }

    .nav-menu .btn-primary {
        margin-top: 0.5rem;
    }

    .solution-flow {
        flex-direction: column;
    }

    .flow-arrow {
        transform: rotate(90deg);
    }

    .blog-hero {
        padding: 6rem 0 4rem;
    }

    .blog-hero-title {
        font-size: 2.5rem;
    }

    .blog-hero-subtitle {
        font-size: 1.125rem;
    }

    .blog-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .blog-card-featured .blog-card-title {
        font-size: 1.5rem;
    }

    .blog-card-featured .blog-card-excerpt {
        font-size: 1rem;
    }

    .blog-card-badge {
        position: static;
        display: inline-block;
        margin-bottom: 1rem;
    }

    .blog-card-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .article-title {
        font-size: 2rem;
    }

    .article-lead {
        font-size: 1.125rem;
    }

    .article-section h2 {
        font-size: 1.5rem;
    }

    .article-section h3 {
        font-size: 1.25rem;
    }

    .article-section p,
    .article-section li {
        font-size: 1rem;
    }

    .article-highlight {
        font-size: 1.25rem;
    }
}

/* Download Page Styles */

/* Platform Cards */
.download-platform-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.download-platform-card {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 2px solid #e2e8f0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    text-align: center;
}

.download-platform-available {
    background: linear-gradient(135deg, #f8fafc 0%, #f0f9ff 100%);
    border-color: rgba(14, 165, 233, 0.3);
}

.download-platform-available:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(14, 165, 233, 0.2);
    border-color: rgba(14, 165, 233, 0.5);
}

.download-platform-coming {
    opacity: 0.7;
}

.download-platform-coming:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.platform-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: var(--gradient-primary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 1.5rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(6, 182, 212, 0.3);
}

.platform-badge-coming {
    background: linear-gradient(135deg, #94a3b8 0%, #64748b 100%);
}

.platform-icon {
    margin: 2rem auto 1.5rem;
    display: inline-block;
}

.platform-icon-muted {
    opacity: 0.6;
}

.download-platform-card h3 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: var(--color-text);
    font-family: 'Space Grotesk', sans-serif;
}

.platform-version {
    color: var(--color-primary);
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.download-platform-coming .platform-version {
    color: var(--color-text-light);
}

.platform-description {
    color: var(--color-text-light);
    line-height: 1.6;
    margin-bottom: 2rem;
    min-height: 3em;
}

.platform-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(14, 165, 233, 0.05);
    border-radius: 12px;
}

.platform-stat {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.stat-value {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--color-text);
}

.stat-label {
    font-size: 0.75rem;
    color: var(--color-text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.platform-download-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--gradient-primary);
    color: white;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(6, 182, 212, 0.3);
    border: none;
    cursor: pointer;
}

.platform-download-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(6, 182, 212, 0.4);
}

.platform-download-btn-disabled {
    background: linear-gradient(135deg, #cbd5e1 0%, #94a3b8 100%);
    cursor: not-allowed;
    opacity: 0.6;
}

.platform-download-btn-disabled:hover {
    transform: none;
    box-shadow: 0 4px 15px rgba(148, 163, 184, 0.3);
}

/* Features Section */
.download-features-section {
    margin: 5rem 0;
}

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

.download-feature-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
}

.download-feature-card:hover {
    border-color: rgba(14, 165, 233, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(14, 165, 233, 0.1);
}

.feature-icon {
    margin-bottom: 1.5rem;
}

.download-feature-card h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--color-text);
}

.download-feature-card p {
    color: var(--color-text-light);
    line-height: 1.6;
    font-size: 0.9375rem;
}

/* Installation Guide */
.download-guide-section {
    margin: 5rem 0;
}

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

.download-step-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
    position: relative;
}

.download-step-card:hover {
    border-color: rgba(14, 165, 233, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(14, 165, 233, 0.1);
}

.step-number {
    width: 48px;
    height: 48px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
}

.download-step-card h4 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--color-text);
}

.download-step-card p {
    color: var(--color-text-light);
    line-height: 1.6;
    font-size: 0.9375rem;
}

/* Info Cards */
.download-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.download-info-card {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 16px;
    border-left: 4px solid var(--color-primary);
}

.download-info-warning {
    background: #fef3c7;
    border-left-color: #f59e0b;
}

.download-info-card h4 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--color-text);
}

.download-info-card ul {
    list-style: none;
    padding: 0;
    color: var(--color-text-light);
    line-height: 2;
}

.download-info-card li::before {
    content: "✓ ";
    color: var(--color-primary);
    font-weight: 900;
    margin-right: 0.5rem;
}

.download-info-warning li::before {
    content: "⚠️ ";
}

.download-info-card p {
    color: #92400e;
    line-height: 1.7;
    margin: 0;
}

/* Minimal Download Page Styles */
.download-main-card {
    background: white;
    padding: 3rem;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    text-align: center;
    margin-top: -4rem;
    position: relative;
}

.download-minimal-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 2.5rem 0;
    padding: 2rem 0;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
}

.minimal-feature {
    display: flex;
    gap: 1rem;
    text-align: left;
    align-items: flex-start;
}

.minimal-feature svg {
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.minimal-feature h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-text);
    margin: 0 0 0.5rem 0;
}

.minimal-feature p {
    font-size: 0.9375rem;
    color: var(--color-text-light);
    line-height: 1.6;
    margin: 0;
}

.download-beta-warning {
    background: #fef3c7;
    border: 2px solid #fbbf24;
    border-radius: 12px;
    padding: 1.25rem;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    text-align: left;
    margin: 2rem 0;
}

.download-beta-warning svg {
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.download-beta-warning strong {
    display: block;
    color: #92400e;
    font-size: 1rem;
    margin-bottom: 0.375rem;
}

.download-beta-warning p {
    color: #92400e;
    font-size: 0.9375rem;
    line-height: 1.6;
    margin: 0;
}

.download-help-links {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    padding-top: 1.5rem;
}

.download-help-links a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-text-light);
    text-decoration: none;
    font-size: 0.9375rem;
    font-weight: 500;
    transition: color 0.2s;
}

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

/* Responsive Design for Download Page */
@media (max-width: 768px) {
    .download-main-card {
        padding: 2rem 1.5rem;
        margin-top: -2rem;
    }

    .download-main-card h2 {
        font-size: 1.75rem;
    }

    .platform-download-btn {
        width: 100%;
        justify-content: center;
    }

    .download-help-links {
        flex-direction: column;
        gap: 1rem;
    }

    .download-help-links a {
        justify-content: center;
    }

    .blog-hero-title {
        font-size: 2.5rem;
    }

    .download-features-grid {
        grid-template-columns: 1fr;
    }

    .download-steps-grid {
        grid-template-columns: 1fr;
    }

    .download-info-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .download-main-card {
        padding: 1.5rem 1rem;
    }

    .download-main-card h2 {
        font-size: 1.5rem;
    }
}

/* =====================================================
   MOBILE PERFORMANCE OPTIMIZATION
   Disable heavy animations on mobile/tablet devices
   to improve performance and reduce glitching
   ===================================================== */

@media (max-width: 1024px) {
    /* Disable all background animations */
    .crypto-background svg,
    .crypto-particles,
    .hash-rain,
    .network-lines,
    .crypto-orbs,
    .hex-grid,
    .particle,
    .orb {
        animation: none !important;
        opacity: 0.3;
    }

    /* Simplify hero section - remove complex animations */
    .hero-gradient {
        animation: none !important;
    }

    /* Disable mesh and background float animations */
    .gradient-mesh {
        animation: none !important;
    }

    /* Disable particle animations */
    .crypto-particles .particle {
        animation: none !important;
    }

    /* Disable hash rain animation */
    .hash-rain span {
        animation: none !important;
        display: none;
    }

    /* Disable network pulse animations */
    .network-lines line,
    .network-lines circle {
        animation: none !important;
    }

    /* Disable orb float animations */
    .crypto-orbs .orb {
        animation: none !important;
    }

    /* Keep simple fade-in animations (lightweight) */
    .hero-title,
    .hero-description,
    .hero-cta {
        animation: fadeInUp 0.6s ease-out both !important;
    }

    /* Disable gradient shifts (CPU intensive) */
    [class*="gradient"] {
        animation: none !important;
    }

    /* Disable pulse animations */
    .pulse,
    [class*="pulse"] {
        animation: none !important;
    }

    /* Disable floating animations */
    [class*="float"] {
        animation: none !important;
    }

    /* Simplify background - solid color instead of gradient animations */
    .hero {
        background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 100%);
    }

    /* Reduce opacity of decorative elements */
    .crypto-background::before {
        opacity: 0.3;
    }

    /* Disable hover animations on mobile (no hover on touch) */
    .card:hover,
    .btn-primary:hover,
    .btn-secondary:hover {
        transform: none !important;
    }

    /* Reduce complexity of card shadows */
    .card {
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1) !important;
    }

    /* Simplify button effects */
    .btn-primary::before,
    .btn-secondary::before {
        display: none !important;
    }

    /* Performance: Use GPU acceleration only for essential elements */
    * {
        will-change: auto !important;
    }

    /* Reduce motion for users who prefer it */
    @media (prefers-reduced-motion: reduce) {
        * {
            animation: none !important;
            transition: none !important;
        }
    }
}
