:root {
    --color-bg: #10151a;
    --color-primary: #172dd7;
    --color-accent: #f0ff41;
    --color-text: #ffffff;
    --color-text-muted: #a0a5b0;
    --color-glass: rgba(255, 255, 255, 0.05);
    --color-glass-border: rgba(255, 255, 255, 0.1);

    --font-heading: 'Space Grotesk', sans-serif;
    --font-body: 'Outfit', sans-serif;

    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;

    --border-radius: 12px;
    --container-width: 1200px;
}

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

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

/* Noise Texture */
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.05'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 9999;
    opacity: 0.4;
}

/* Cosmos Background Effect */
.bg-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 15% 50%, rgba(23, 45, 215, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 85% 30%, rgba(23, 45, 215, 0.1) 0%, transparent 50%);
    z-index: -1;
    animation: pulseBackground 10s ease-in-out infinite alternate;
}

@keyframes pulseBackground {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }

    100% {
        transform: scale(1.1);
        opacity: 1;
    }
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: #fff;
}

p {
    color: var(--color-text-muted);
    font-size: 1.1rem;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

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

.section-padding {
    padding: var(--spacing-xl) 0;
}

/* Buttons */
.btn-primary {
    display: inline-block;
    background-color: var(--color-accent);
    color: #000;
    font-weight: 700;
    padding: 1rem 2rem;
    border-radius: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(240, 255, 65, 0.3);
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 25px rgba(240, 255, 65, 0.6);
    background-color: #fff;
    animation: glowPulse 1.5s infinite;
}

@keyframes glowPulse {
    0% {
        box-shadow: 0 0 15px rgba(240, 255, 65, 0.4);
    }

    50% {
        box-shadow: 0 0 25px rgba(240, 255, 65, 0.7);
    }

    100% {
        box-shadow: 0 0 15px rgba(240, 255, 65, 0.4);
    }
}

.btn-secondary {
    display: inline-block;
    background: transparent;
    border: 2px solid var(--color-accent);
    color: var(--color-accent);
    padding: 1rem 2rem;
    border-radius: 0;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: var(--color-accent);
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(240, 255, 65, 0.3);
}

/* Header */
#header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1rem 0;
    z-index: 1000;
    transition: background 0.3s ease, padding 0.3s ease;
    backdrop-filter: blur(10px);
}

#header.scrolled {
    background: rgba(16, 21, 26, 0.9);
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--color-glass-border);
}

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

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 45px;
    width: auto;
    object-fit: contain;
}

.btn-header {
    background: var(--color-accent);
    color: #000;
    padding: 0.6rem 1.2rem;
    border-radius: 0;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.btn-header:hover {
    background: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(240, 255, 65, 0.3);
}

/* Hero */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    /* Header height */
    position: relative;
    overflow: hidden;
}

#starfield {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

/* Hero Grid Layout */
.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    align-items: center;
    gap: 4rem;
}

.hero-text {
    z-index: 2;
}

.hero-title {
    font-size: 4rem;
    margin-bottom: var(--spacing-md);
    line-height: 1.1;
}

.highlight-gradient {
    background: linear-gradient(90deg, var(--color-accent), #fff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
    display: inline-block;
    position: relative;
    animation: hardGlitch 2.5s infinite;
}

@keyframes hardGlitch {
    0% {
        transform: translate(0, 0) skew(0deg);
        filter: hue-rotate(0deg);
    }

    5% {
        transform: translate(-2px, 1px) skew(-2deg);
        filter: hue-rotate(90deg);
    }

    10% {
        transform: translate(2px, -1px) skew(2deg);
        filter: hue-rotate(-90deg);
    }

    15% {
        transform: translate(-1px, 2px) skew(-1deg);
    }

    20% {
        transform: translate(1px, -2px) skew(1deg);
        filter: hue-rotate(0deg);
    }

    25% {
        transform: translate(0, 0) skew(0deg);
    }

    100% {
        transform: translate(0, 0) skew(0deg);
    }
}

/* Orbital System Visual */
.hero-visual {
    position: relative;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1000px;
}

.orbital-system {
    position: relative;
    width: 400px;
    height: 400px;
    transform-style: preserve-3d;
    animation: floatSystem 6s ease-in-out infinite;
}

.core {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80px;
    height: 80px;
    background: radial-gradient(circle at 30% 30%, var(--color-accent), var(--color-primary));
    border-radius: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 60px rgba(23, 45, 215, 0.6);
    z-index: 10;
}

.orbit {
    position: absolute;
    top: 50%;
    left: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 15px rgba(23, 45, 215, 0.1);
}

.orbit-1 {
    width: 200px;
    height: 200px;
    border-color: rgba(240, 255, 65, 0.2);
    animation: rotateOrbit 10s linear infinite;
}

.orbit-2 {
    width: 320px;
    height: 320px;
    border-style: dashed;
    animation: rotateOrbit 25s linear infinite reverse;
}

.orbit-3 {
    width: 450px;
    height: 450px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    animation: rotateOrbit 40s linear infinite;
}

.planet {
    position: absolute;
    border-radius: 50%;
    top: 50%;
    left: 50%;
}

.planet-1 {
    width: 15px;
    height: 15px;
    background: var(--color-accent);
    box-shadow: 0 0 20px var(--color-accent);
    animation: orbitPlanet1 10s linear infinite;
}

.planet-2 {
    width: 10px;
    height: 10px;
    background: var(--color-primary);
    box-shadow: 0 0 15px var(--color-primary);
    animation: orbitPlanet2 25s linear infinite;
}

.planet-3 {
    width: 12px;
    height: 12px;
    background: #fff;
    box-shadow: 0 0 18px #fff;
    animation: orbitPlanet3 40s linear infinite;
}

@keyframes orbitPlanet1 {
    from {
        transform: rotate(0deg) translateX(100px) rotate(0deg);
    }

    to {
        transform: rotate(360deg) translateX(100px) rotate(-360deg);
    }
}

@keyframes orbitPlanet2 {
    from {
        transform: rotate(120deg) translateX(160px) rotate(-120deg);
    }

    to {
        transform: rotate(480deg) translateX(160px) rotate(-480deg);
    }
}

@keyframes orbitPlanet3 {
    from {
        transform: rotate(240deg) translateX(225px) rotate(-240deg);
    }

    to {
        transform: rotate(600deg) translateX(225px) rotate(-600deg);
    }
}

@keyframes rotateOrbit {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@keyframes floatSystem {

    0%,
    100% {
        transform: translateY(0) rotateX(10deg);
    }

    50% {
        transform: translateY(-20px) rotateX(10deg);
    }
}

.cta-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
}

.microtext {
    font-size: 0.9rem;
    opacity: 0.7;
}

/* Sections General */
section {
    position: relative;
    overflow: hidden;
    /* Ensure glows don't spill over */
}

/* Subtle Nebulas/Glows - Intensified */
.about::before {
    content: "";
    position: absolute;
    top: -20%;
    left: -10%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(23, 45, 215, 0.25) 0%, transparent 70%);
    pointer-events: none;
    z-index: -1;
    filter: blur(60px);
}

.method::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 900px;
    height: 900px;
    background: radial-gradient(circle, rgba(23, 45, 215, 0.15) 0%, transparent 70%);
    pointer-events: none;
    z-index: -1;
    filter: blur(80px);
}

.services::before {
    content: "";
    position: absolute;
    bottom: -20%;
    right: -10%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(23, 45, 215, 0.25) 0%, transparent 70%);
    pointer-events: none;
    z-index: -1;
    filter: blur(60px);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-md);
    max-width: 600px;
    color: #fff;
    font-weight: 400;
    line-height: 1.5;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-md);
    max-width: 800px;
}

.section-intro {
    font-size: 1.2rem;
    margin-bottom: var(--spacing-lg);
    max-width: 800px;
}

/* Grid Layouts */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

/* Cards & Glassmorphism */
.glass {
    background: var(--color-glass);
    border: 1px solid var(--color-glass-border);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: var(--border-radius);
    transition: transform 0.3s ease;
}

.glass:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.card h3 {
    color: var(--color-accent);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

/* Pain Points */
.pain-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: var(--spacing-lg);
}

.pain-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: rgba(255, 0, 0, 0.05);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.pain-item:hover {
    background: rgba(255, 0, 0, 0.08);
    border-color: rgba(255, 65, 65, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 0, 0, 0.1);
    animation: shake 0.5s ease;
}

@keyframes shake {

    0%,
    100% {
        transform: translateY(-3px) rotate(0deg);
    }

    25% {
        transform: translateY(-3px) rotate(-1deg);
    }

    75% {
        transform: translateY(-3px) rotate(1deg);
    }
}

.check-icon {
    color: #ff4141;
    font-weight: bold;
    font-size: 1.2rem;
    animation: iconPulse 2s ease-in-out infinite;
}

.pain-item:hover .check-icon {
    animation: iconPulse 0.5s ease-in-out infinite;
}

@keyframes iconPulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

.center-cta {
    text-align: center;
    margin-top: var(--spacing-md);
}

/* Method QUAZE */
.method-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 800px;
}

.step {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.step-letter {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1;
    min-width: 60px;
}

.step-content h3 {
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

/* Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.service-card {
    position: relative;
}

.service-icon {
    width: 60px;
    height: 60px;
    background: rgba(23, 45, 215, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.service-icon svg {
    color: var(--color-accent);
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    background: rgba(23, 45, 215, 0.2);
    transform: translateY(-5px);
}

.service-card:hover .service-icon svg {
    transform: scale(1.1);
    filter: drop-shadow(0 0 8px var(--color-accent));
}

.service-card h3 {
    color: #fff;
    margin-bottom: 1rem;
}

.service-card ul {
    margin-top: 1rem;
    padding-left: 1rem;
}

.service-card ul li {
    list-style-type: disc;
    margin-bottom: 0.3rem;
    color: var(--color-text-muted);
    font-size: 0.95rem;
}

/* Testimonials */
.testimonial-card p {
    font-style: italic;
    font-size: 1.1rem;
    color: #fff;
}

/* Deliverables */
.deliverables-list {
    max-width: 800px;
}

.deliverables-list ul {
    margin-bottom: 2rem;
}

.deliverables-list li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.deliverables-list li::before {
    content: "✓";
    color: var(--color-accent);
    font-weight: bold;
}

.disclaimer {
    font-weight: 600;
    color: #fff;
    border-top: 1px solid var(--color-glass-border);
    padding-top: 1rem;
}

/* Final CTA */
.final-cta {
    text-align: center;
    background: linear-gradient(180deg, transparent, rgba(23, 45, 215, 0.1));
}

.final-cta .section-title {
    margin: 0 auto var(--spacing-md);
}

.subtext {
    margin-top: 1rem;
    font-size: 0.9rem;
    opacity: 0.7;
}

/* Bio Section */
.bio-container {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.bio-text {
    flex: 1;
}

.about-list {
    margin-bottom: 3rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 800px;
}

.about-list li {
    position: relative;
    padding-left: 1.5rem;
    color: var(--color-text-muted);
    font-size: 1.2rem;
    line-height: 1.6;
}

.about-list li::before {
    content: "▹";
    color: var(--color-accent);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.about-list strong {
    color: #fff;
    font-weight: 600;
}

.bio-list {
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.bio-list li {
    position: relative;
    padding-left: 1.5rem;
    color: var(--color-text-muted);
    font-size: 1.1rem;
    line-height: 1.5;
}

.bio-list li::before {
    content: "▹";
    color: var(--color-accent);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.bio-list strong {
    color: #fff;
    font-weight: 600;
}

/* Bio Image - Simplified */
.bio-image {
    flex: 0 0 300px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--color-accent);
    box-shadow: 0 0 30px rgba(240, 255, 65, 0.2);
    animation: bioPulse 4s ease-in-out infinite;
    transition: transform 0.3s ease;
}

.bio-image:hover {
    transform: scale(1.05);
}

.bio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@keyframes bioPulse {
    0% {
        box-shadow: 0 0 30px rgba(240, 255, 65, 0.2);
        border-color: var(--color-accent);
    }

    50% {
        box-shadow: 0 0 60px rgba(240, 255, 65, 0.5);
        border-color: #fff;
    }

    100% {
        box-shadow: 0 0 30px rgba(240, 255, 65, 0.2);
        border-color: var(--color-accent);
    }
}

/* Footer */
footer {
    padding: 3rem 0;
    text-align: center;
    border-top: 1px solid var(--color-glass-border);
    color: var(--color-text-muted);
    font-size: 0.9rem;
    background: rgba(16, 21, 26, 0.5);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.footer-socials {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-socials a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-text-muted);
    transition: all 0.3s ease;
    cursor: pointer;
    pointer-events: auto;
    position: relative;
    z-index: 10;
}

.footer-socials a:hover {
    color: var(--color-accent);
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 968px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-visual {
        height: 350px;
        transform: scale(0.8);
    }

    .orbital-system {
        width: 300px;
        height: 300px;
    }

    .core {
        width: 60px;
        height: 60px;
    }

    .orbit-1 {
        width: 150px;
        height: 150px;
    }

    .orbit-2 {
        width: 240px;
        height: 240px;
    }

    .orbit-3 {
        width: 320px;
        height: 320px;
    }

    .planet-1 {
        width: 10px;
        height: 10px;
    }

    .planet-2 {
        width: 8px;
        height: 8px;
    }

    .planet-3 {
        width: 9px;
        height: 9px;
    }

    @keyframes orbitPlanet1 {
        from {
            transform: rotate(0deg) translateX(75px) rotate(0deg);
        }

        to {
            transform: rotate(360deg) translateX(75px) rotate(-360deg);
        }
    }

    @keyframes orbitPlanet2 {
        from {
            transform: rotate(120deg) translateX(120px) rotate(-120deg);
        }

        to {
            transform: rotate(480deg) translateX(120px) rotate(-480deg);
        }
    }

    @keyframes orbitPlanet3 {
        from {
            transform: rotate(240deg) translateX(160px) rotate(-240deg);
        }

        to {
            transform: rotate(600deg) translateX(160px) rotate(-600deg);
        }
    }

    .hero-text {
        padding: 0 1rem;
    }

    .cta-wrapper {
        align-items: center;
        width: 100%;
    }

    .hero-title {
        font-size: 2.2rem;
        line-height: 1.2;
        margin-bottom: 1.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        max-width: 100%;
        margin-bottom: 2rem;
    }

    .hero {
        padding-bottom: 3rem;
        min-height: auto;
        padding-top: 100px;
    }

    .btn-primary {
        width: 100%;
        max-width: 350px;
        text-align: center;
    }

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

    .step {
        flex-direction: column;
        gap: 0.5rem;
    }

    .step-letter {
        font-size: 3rem;
    }

    .grid-3,
    .services-grid {
        grid-template-columns: 1fr;
    }

    .bio-container {
        flex-direction: column-reverse;
        gap: 2rem;
        text-align: center;
    }

    .bio-image-wrapper {
        width: 250px;
        height: 250px;
        flex: 0 0 auto;
    }

    .bio-orbital-system {
        width: 250px;
        height: 250px;
    }

    .bio-orbit-1 {
        width: 220px;
        height: 220px;
    }

    .bio-orbit-2 {
        width: 240px;
        height: 240px;
    }

    .bio-orbit-3 {
        width: 260px;
        height: 260px;
    }

    .bio-image {
        width: 200px;
        height: 200px;
        flex: 0 0 200px;
        aspect-ratio: 1 / 1;
    }

    @keyframes orbitPlanet1 {
        from {
            transform: rotate(0deg) translateX(110px) rotate(0deg);
        }

        to {
            transform: rotate(360deg) translateX(110px) rotate(-360deg);
        }
    }

    @keyframes orbitPlanet2 {
        from {
            transform: rotate(120deg) translateX(120px) rotate(-120deg);
        }

        to {
            transform: rotate(480deg) translateX(120px) rotate(-480deg);
        }
    }

    @keyframes orbitPlanet3 {
        from {
            transform: rotate(240deg) translateX(130px) rotate(-240deg);
        }

        to {
            transform: rotate(600deg) translateX(130px) rotate(-600deg);
        }
    }
}

/* Animations */
.fade-in-section {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    will-change: opacity, visibility;
}

.fade-in-section.visible {
    opacity: 1;
    transform: none;
}

/* Staggered Animations */
.stagger-delay-1 {
    transition-delay: 100ms;
}

.stagger-delay-2 {
    transition-delay: 200ms;
}

.stagger-delay-3 {
    transition-delay: 300ms;
}

.stagger-delay-4 {
    transition-delay: 400ms;
}

.stagger-delay-5 {
    transition-delay: 500ms;
}

/* Glitch Effect for Title */
.glitch-text {
    position: relative;
}

.glitch-text::before,
.glitch-text::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-bg);
}

.glitch-text::before {
    left: 2px;
    text-shadow: -1px 0 #ff00c1;
    clip: rect(44px, 450px, 56px, 0);
    animation: glitch-anim 2s infinite linear alternate-reverse;
}

.glitch-text::after {
    left: -2px;
    text-shadow: -1px 0 #00fff9;
    clip: rect(44px, 450px, 56px, 0);
    animation: glitch-anim2 2s infinite linear alternate-reverse;
}

@keyframes glitch-anim {
    0% {
        clip: rect(30px, 9999px, 10px, 0);
    }

    5% {
        clip: rect(80px, 9999px, 90px, 0);
    }

    10% {
        clip: rect(10px, 9999px, 40px, 0);
    }

    100% {
        clip: rect(50px, 9999px, 20px, 0);
    }
}

@keyframes glitch-anim2 {
    0% {
        clip: rect(10px, 9999px, 80px, 0);
    }

    5% {
        clip: rect(90px, 9999px, 10px, 0);
    }

    10% {
        clip: rect(50px, 9999px, 30px, 0);
    }

    100% {
        clip: rect(20px, 9999px, 60px, 0);
    }
}