:root {
    /* Primary Colors */
    --purple-500: #7C3AED;
    --purple-600: #6D28D9;
    --purple-700: #5B21B6;
    --purple-400: #A78BFA;
    --purple-300: #C4B5FD;
    
    /* Gold/Amber */
    --gold-500: #F59E0B;
    --gold-600: #D97706;
    --gold-400: #FBBF24;
    --gold-300: #FCD34D;
    
    /* Accents */
    --neon-cyan: #00F0FF;
    --neon-red: #EF4444;
    --neon-green: #10B981;
    
    /* Dark Theme Only */
    --bg-primary: #0F0F1A;
    --bg-secondary: #1A1A2E;
    --bg-tertiary: #252542;
    --bg-card: rgba(26, 26, 46, 0.8);
    
    /* Animation timing */
    --animation-slow: 20s;
    --animation-medium: 10s;
    --animation-fast: 5s;
    
    --text-primary: #FFFFFF;
    --text-secondary: #A1A1AA;
    --text-muted: #71717A;
    
    --border-color: rgba(124, 58, 237, 0.2);
    --border-hover: rgba(124, 58, 237, 0.4);
    
    --gradient-primary: linear-gradient(135deg, var(--purple-500) 0%, var(--gold-500) 100%);
    --gradient-glow: radial-gradient(circle, var(--purple-500) 0%, transparent 70%);
    --gradient-neon: linear-gradient(135deg, var(--neon-cyan) 0%, var(--purple-500) 50%, var(--gold-500) 100%);
    
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 10px 40px rgba(124, 58, 237, 0.2);
    --shadow-glow: 0 0 40px rgba(124, 58, 237, 0.3);
    
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    
    --transition-fast: 150ms ease;
    --transition-normal: 250ms ease;
    --transition-slow: 400ms ease;
}

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

html {
    scroll-behavior: smooth;
}

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

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(15, 15, 26, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    transition: all var(--transition-normal);
}

[data-theme="light"] .navbar {
    background: rgba(250, 250, 250, 0.85);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--text-primary);
}

.logo img {
    height: 40px;
    width: auto;
}

.logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: var(--gradient-primary);
    border-radius: var(--radius-sm);
    color: white;
    font-size: 1.1rem;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link {
    padding: 8px 16px;
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.9rem;
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
}

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

.nav-link.highlight {
    color: var(--gold-500);
}

.nav-link.highlight:hover {
    background: rgba(245, 158, 11, 0.1);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: all var(--transition-fast);
}

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

/* Animated Grid Background */
.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    right: -50%;
    bottom: -50%;
    background-image: 
        linear-gradient(rgba(124, 58, 237, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(124, 58, 237, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    animation: grid-move var(--animation-slow) linear infinite;
    pointer-events: none;
}

@keyframes grid-move {
    0% { transform: perspective(500px) rotateX(60deg) translateY(0); }
    100% { transform: perspective(500px) rotateX(60deg) translateY(60px); }
}

/* Floating Particles */
.particles-container {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--neon-cyan);
    border-radius: 50%;
    opacity: 0.5;
    animation: float-particle var(--animation-medium) ease-in-out infinite;
    box-shadow: 0 0 10px var(--neon-cyan);
}

.particle:nth-child(1) { left: 10%; top: 20%; animation-delay: 0s; }
.particle:nth-child(2) { left: 20%; top: 80%; animation-delay: 1s; background: var(--gold-500); box-shadow: 0 0 10px var(--gold-500); }
.particle:nth-child(3) { left: 30%; top: 40%; animation-delay: 2s; }
.particle:nth-child(4) { left: 50%; top: 60%; animation-delay: 0.5s; background: var(--neon-red); box-shadow: 0 0 10px var(--neon-red); }
.particle:nth-child(5) { left: 70%; top: 30%; animation-delay: 1.5s; }
.particle:nth-child(6) { left: 80%; top: 70%; animation-delay: 3s; background: var(--purple-400); box-shadow: 0 0 10px var(--purple-400); }
.particle:nth-child(7) { left: 90%; top: 50%; animation-delay: 2.5s; }
.particle:nth-child(8) { left: 15%; top: 60%; animation-delay: 4s; background: var(--neon-cyan); box-shadow: 0 0 10px var(--neon-cyan); }
.particle:nth-child(9) { left: 40%; top: 10%; animation-delay: 1.2s; }
.particle:nth-child(10) { left: 60%; top: 90%; animation-delay: 2.8s; background: var(--gold-500); box-shadow: 0 0 10px var(--gold-500); }

@keyframes float-particle {
    0%, 100% { 
        transform: translateY(0) translateX(0);
        opacity: 0.3;
    }
    25% {
        transform: translateY(-30px) translateX(10px);
        opacity: 0.8;
    }
    50% { 
        transform: translateY(-50px) translateX(-10px);
        opacity: 0.5;
    }
    75% {
        transform: translateY(-20px) translateX(5px);
        opacity: 0.7;
    }
}

/* Scan Line Effect */
.scan-line {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--neon-cyan), transparent);
    animation: scan var(--animation-fast) linear infinite;
    opacity: 0.3;
    pointer-events: none;
}

@keyframes scan {
    0% { transform: translateY(0); }
    100% { transform: translateY(100vh); }
}

/* Tech Decorative Elements */
.tech-decoration {
    position: absolute;
    pointer-events: none;
    opacity: 0.1;
}

.tech-decoration.top-left {
    top: 100px;
    left: 20px;
    width: 100px;
    height: 100px;
    border-left: 2px solid var(--neon-cyan);
    border-top: 2px solid var(--neon-cyan);
    animation: pulse-border 3s ease-in-out infinite;
}

.tech-decoration.top-right {
    top: 150px;
    right: 20px;
    width: 80px;
    height: 80px;
    border-right: 2px solid var(--gold-500);
    border-top: 2px solid var(--gold-500);
    animation: pulse-border 3s ease-in-out infinite 1.5s;
}

.tech-decoration.bottom-left {
    bottom: 100px;
    left: 40px;
    width: 60px;
    height: 60px;
    border-left: 2px solid var(--neon-red);
    border-bottom: 2px solid var(--neon-red);
    animation: pulse-border 3s ease-in-out infinite 0.5s;
}

.tech-decoration.bottom-right {
    bottom: 150px;
    right: 30px;
    width: 120px;
    height: 120px;
    border-right: 2px solid var(--purple-400);
    border-bottom: 2px solid var(--purple-400);
    animation: pulse-border 3s ease-in-out infinite 2s;
}

@keyframes pulse-border {
    0%, 100% { opacity: 0.1; }
    50% { opacity: 0.3; }
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.5;
    animation: orb-float var(--animation-slow) ease-in-out infinite;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: var(--purple-600);
    top: -200px;
    right: -200px;
    animation-delay: 0s;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: var(--gold-600);
    bottom: -150px;
    left: -150px;
    opacity: 0.3;
    animation-delay: -10s;
}

.orb-3 {
    width: 400px;
    height: 400px;
    background: var(--neon-cyan);
    top: 50%;
    left: 50%;
    opacity: 0.15;
    animation-delay: -5s;
    filter: blur(80px);
}

@keyframes orb-float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    25% {
        transform: translate(50px, -30px) scale(1.1);
    }
    50% {
        transform: translate(-30px, 50px) scale(0.95);
    }
    75% {
        transform: translate(-50px, -20px) scale(1.05);
    }
}

.hero-content {
    text-align: center;
    max-width: 800px;
}

.hero-logo {
    margin-bottom: 32px;
}

.hero-logo img {
    height: 380px;
    width: auto;
    max-width: 100%;
    background: linear-gradient(135deg, var(--purple-600) 0%, var(--purple-500) 40%, var(--gold-500) 100%);
    padding: 28px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-glow), 0 20px 60px rgba(124, 58, 237, 0.4);
}

@media (max-width: 768px) {
    .hero-logo img {
        height: 220px;
        padding: 20px;
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 100px;
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 32px;
}

.pulse {
    width: 8px;
    height: 8px;
    background: var(--neon-green);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

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

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

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

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

.hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 64px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
    cursor: pointer;
    border: none;
}

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

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 60px rgba(124, 58, 237, 0.4);
}

.btn-secondary {
    background: var(--bg-tertiary);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

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

.btn-large {
    padding: 18px 36px;
    font-size: 1.1rem;
}

.btn-arrow {
    transition: transform var(--transition-fast);
}

.btn:hover .btn-arrow {
    transform: translateX(4px);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.hero-scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 0.8rem;
}

.scroll-arrow {
    width: 20px;
    height: 20px;
    border-right: 2px solid var(--text-muted);
    border-bottom: 2px solid var(--text-muted);
    transform: rotate(45deg);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: rotate(45deg) translateY(0); }
    50% { transform: rotate(45deg) translateY(8px); }
}

/* Sections */
.section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 64px;
}

.section-tag {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(124, 58, 237, 0.1);
    border: 1px solid var(--border-color);
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--purple-400);
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
}

/* Services Grid */
.services-grid {
    display: grid;
    gap: 24px;
}

.services-grid.primary {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
}

.services-grid.secondary {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 40px;
    transition: all var(--transition-normal);
}

.service-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.service-card.featured {
    position: relative;
    overflow: hidden;
}

.service-card.featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
}

.service-card.compact {
    padding: 32px;
}

.service-icon {
    width: 64px;
    height: 64px;
    background: rgba(124, 58, 237, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: var(--purple-400);
    transition: all var(--transition-normal);
}

.service-icon svg {
    width: 32px;
    height: 32px;
}

.service-icon.small {
    width: 48px;
    height: 48px;
}

.service-icon.small svg {
    width: 24px;
    height: 24px;
}

.service-card:hover .service-icon {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-glow);
}

.service-icon.ai-icon {
    background: rgba(245, 158, 11, 0.1);
    color: var(--gold-500);
}

.service-card:hover .service-icon.ai-icon {
    background: linear-gradient(135deg, var(--gold-500) 0%, var(--neon-red) 100%);
}

.service-icon.network-icon {
    background: rgba(0, 240, 255, 0.1);
    color: var(--neon-cyan);
}

.service-card:hover .service-icon.network-icon {
    background: linear-gradient(135deg, var(--neon-cyan) 0%, var(--purple-500) 100%);
}

.service-icon.camera-icon {
    background: rgba(239, 68, 68, 0.1);
    color: var(--neon-red);
}

.service-card:hover .service-icon.camera-icon {
    background: linear-gradient(135deg, var(--neon-red) 0%, var(--gold-500) 100%);
}

.service-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.service-card.compact .service-title {
    font-size: 1.2rem;
}

.service-desc {
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.7;
}

.service-features {
    list-style: none;
    margin-bottom: 24px;
}

.service-features li {
    padding: 6px 0;
    color: var(--text-secondary);
    font-size: 0.95rem;
    position: relative;
    padding-left: 20px;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--neon-green);
    font-weight: 700;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--purple-400);
    text-decoration: none;
    font-weight: 600;
    transition: all var(--transition-fast);
}

.service-link:hover {
    color: var(--gold-500);
    gap: 10px;
}

/* Process Section */
.process-section {
    background: var(--bg-secondary);
}

.process-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

.process-step {
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    text-align: center;
    padding: 40px 24px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
}

.step-number {
    font-size: 3rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px;
    opacity: 0.5;
}

.process-step h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.process-step p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.process-arrow {
    font-size: 2rem;
    color: var(--purple-400);
    opacity: 0.5;
}

/* CTA Section */
.cta-section {
    padding: 60px 0;
}

.cta-box {
    position: relative;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: 64px;
    overflow: hidden;
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 600px;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.cta-content p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 32px;
}

.cta-decoration {
    position: absolute;
    top: 50%;
    right: -100px;
    transform: translateY(-50%);
}

.decoration-circle {
    width: 400px;
    height: 400px;
    background: var(--gradient-primary);
    border-radius: 50%;
    opacity: 0.1;
    filter: blur(60px);
}

.decoration-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    border: 2px solid var(--border-color);
    border-radius: 50%;
}

/* Footer */
.footer {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    padding: 64px 0 32px;
}

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

.footer-brand p {
    color: var(--text-secondary);
    margin-top: 16px;
    font-size: 0.95rem;
}

.footer-links h4,
.footer-contact h4 {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.footer-links a,
.footer-contact a {
    display: block;
    color: var(--text-secondary);
    text-decoration: none;
    padding: 6px 0;
    font-size: 0.95rem;
    transition: color var(--transition-fast);
}

.footer-links a:hover,
.footer-contact a:hover {
    color: var(--purple-400);
}

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

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

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

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

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: var(--bg-primary);
        flex-direction: column;
        padding: 24px;
        gap: 8px;
        border-bottom: 1px solid var(--border-color);
        transform: translateY(-100%);
        opacity: 0;
        pointer-events: none;
        transition: all var(--transition-normal);
    }
    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }
    
    .mobile-toggle {
        display: flex;
    }
    
    .hero-stats {
        gap: 24px;
    }
    
    .process-grid {
        flex-direction: column;
    }
    
    .process-arrow {
        transform: rotate(90deg);
    }
    
    .cta-box {
        padding: 40px 24px;
    }
    
    .cta-decoration {
        display: none;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

@media (max-width: 480px) {
    .services-grid.primary,
    .services-grid.secondary {
        grid-template-columns: 1fr;
    }

    .hero-cta {
        flex-direction: column;
        width: 100%;
    }

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

/* Glitch Effect for AI text */
.glitch-ai {
    position: relative;
    display: inline-block;
    animation: glitch-skew 3s infinite;
}

.glitch-ai::before,
.glitch-ai::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-neon);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.glitch-ai::before {
    animation: glitch-1 2s infinite;
    clip-path: polygon(0 0, 100% 0, 100% 35%, 0 35%);
}

.glitch-ai::after {
    animation: glitch-2 2s infinite;
    clip-path: polygon(0 65%, 100% 65%, 100% 100%, 0 100%);
}

@keyframes glitch-skew {
    0%, 90%, 100% { transform: translate(0); }
    92% { transform: translate(-3px, 1px); }
    94% { transform: translate(3px, -1px); }
    96% { transform: translate(-2px, -1px); }
    98% { transform: translate(2px, 1px); }
}

@keyframes glitch-1 {
    0%, 90%, 100% { transform: translate(-2px, -2px); opacity: 0.8; }
    92% { transform: translate(-6px, 2px); opacity: 1; }
    94% { transform: translate(4px, -2px); opacity: 0.8; }
    96% { transform: translate(-4px, -1px); opacity: 1; }
    98% { transform: translate(3px, 2px); opacity: 0.8; }
}

@keyframes glitch-2 {
    0%, 90%, 100% { transform: translate(2px, 2px); opacity: 0.8; }
    92% { transform: translate(5px, -2px); opacity: 1; }
    94% { transform: translate(-3px, 2px); opacity: 0.8; }
    96% { transform: translate(4px, 1px); opacity: 1; }
    98% { transform: translate(-2px, -2px); opacity: 0.8; }
}