@keyframes scanlines {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(4px);
    }
}

/* Fade-in Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-right {
    opacity: 0;
    transform: translateX(40px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-scale {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in-scale.visible {
    opacity: 1;
    transform: scale(1);
}

.fade-in-delay-1 {
    transition-delay: 0.1s;
}

.fade-in-delay-2 {
    transition-delay: 0.2s;
}

.fade-in-delay-3 {
    transition-delay: 0.3s;
}

.fade-in-delay-4 {
    transition-delay: 0.4s;
}

.fade-in-delay-5 {
    transition-delay: 0.5s;
}

.fade-in-delay-6 {
    transition-delay: 0.6s;
}

/* Enhanced user count bubble */
.user-count {
    display: inline-block;
    background: linear-gradient(45deg, rgba(139, 92, 246, 0.2), rgba(255, 0, 128, 0.2));
    border: 1px solid rgba(139, 92, 246, 0.5);
    padding: 12px 25px;
    border-radius: 25px;
    font-size: 16px;
    /* margin-bottom: 30px; */
    backdrop-filter: blur(10px);
    animation: pulse 2s ease-in-out infinite;
    position: relative;
    overflow: hidden;
    min-height: 40px;
}

.user-count::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(255, 0, 128, 0.1), transparent);
    animation: rotate 4s linear infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.9;
    }

    50% {
        transform: scale(1.05);
        opacity: 1;
    }
}

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

    to {
        transform: rotate(360deg);
    }
}

/* Social proof section */
.social-proof {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.proof-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 15px 25px;
    border-radius: 15px;
    border: 1px solid rgba(255, 0, 128, 0.2);
    backdrop-filter: blur(10px);
    animation: fadeInUp 0.8s ease forwards;
}

.proof-item:nth-child(1) {
    animation-delay: 0.2s;
    opacity: 0;
}

.proof-item:nth-child(2) {
    animation-delay: 0.4s;
    opacity: 0;
}

.proof-item:nth-child(3) {
    animation-delay: 0.6s;
    opacity: 0;
}

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

    from {
        opacity: 0;
        transform: translateY(20px);
    }
}

.proof-number {
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, #ff0080, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Enhanced Header with Terminal Cursor */
h1 {
    font-family: Impact, 'Arial Black', 'Franklin Gothic Bold', Arial, sans-serif;
    /* font-size: clamp(3.5rem, 10vw, 6.5rem); */
    font-size: clamp(4.55rem, 14vw, 9rem);
    font-weight: 500;
    background: linear-gradient(135deg, #ff0080, #ff0080, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    animation: glow 3s ease-in-out infinite;
    position: relative;
    display: inline-block;
}

.terminal-cursor {
    display: inline-block;
    background: #00ff00;
    width: 3px;
    height: 0.8em;
    margin-left: 5px;
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 50% {
        opacity: 1;
    }

    51%, 100% {
        opacity: 0;
    }
}

/* Clone echo effect */
.clone-container {
    position: relative;
    display: inline-block;
}

.clone-echo {
    position: absolute;
    top: 0;
    left: 0;
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
    background: linear-gradient(135deg, #ff1493, #ff0080, #ff69b4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transform: translate(-8px, -4px) scaleX(1.02) skewX(-2deg);
    opacity: 0.8;
    z-index: 1;
    animation: cloneGlitchHeavy 2s ease-in-out infinite;
    filter: hue-rotate(0deg) brightness(1.5) contrast(1.8);
}

.clone-main {
    position: relative;
    z-index: 2;
    /* background: linear-gradient(135deg, #ff0080, #ff0080, #8b5cf6); */
    background: linear-gradient(135deg, #ffffff, #a94f7c, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: cloneMainGlitch 2s ease-in-out infinite;
    opacity: 50%;
}

@keyframes glow {
    0%, 100% {
        filter: brightness(1);
    }

    50% {
        filter: brightness(1.2);
    }
}

@keyframes cloneMainGlitch {
    0%, 85%, 100% {
        transform: translate(0);
        filter: none;
    }

    86% {
        transform: translate(-2px, 1px) scaleX(1.05);
        filter: brightness(1.3) hue-rotate(15deg);
    }

    87% {
        transform: translate(3px, -1px) scaleY(1.03);
        filter: brightness(0.8) hue-rotate(-15deg) contrast(1.5);
    }

    88% {
        transform: translate(-1px, 2px) skewX(1deg);
        filter: brightness(1.6) hue-rotate(20deg) saturate(2);
    }

    89% {
        transform: translate(2px, -2px) scaleX(0.98);
        filter: brightness(0.9) hue-rotate(-10deg) contrast(1.2);
    }

    90% {
        transform: translate(-1px, 1px);
        filter: brightness(1.1);
    }
}

@keyframes cloneGlitchHeavy {
    0%, 100% {
        transform: translate(-8px, -4px) scaleX(1.02) skewX(-2deg);
        opacity: 0.8;
        filter: hue-rotate(0deg) brightness(1.5) contrast(1.8);
    }

    28%, 30%, 32%, 34%, 36% {
        transform: translate(-8px, -4px) scaleX(1.02) skewX(-2deg);
        opacity: 0.8;
        filter: hue-rotate(0deg) brightness(1.5) contrast(1.8);
    }

    29% {
        transform: translate(-6px, -3px) scaleX(0.97) scaleY(1.03) skewX(2deg);
        opacity: 0.85;
        filter: hue-rotate(-4deg) brightness(1.42) contrast(1.95) invert(0.05);
    }

    31% {
        transform: translate(-10px, -5px) scaleX(1.04) scaleY(0.97) skewX(-3deg);
        opacity: 0.72;
        filter: hue-rotate(5deg) brightness(1.62) contrast(1.75) saturate(1.25);
    }

    33% {
        transform: translate(-7px, -4px) scaleX(0.98) scaleY(1.02) skewX(1deg);
        opacity: 0.82;
        filter: hue-rotate(-2deg) brightness(1.47) contrast(1.88);
    }

    35% {
        transform: translate(-9px, -3px) scaleX(1.02) scaleY(0.99) skewX(-2deg);
        opacity: 0.77;
        filter: hue-rotate(3deg) brightness(1.57) contrast(1.82) invert(0.02);
    }

    80% {
        transform: translate(-8px, -4px) scaleX(1.02) skewX(-2deg);
        opacity: 0.8;
        filter: hue-rotate(0deg) brightness(1.5) contrast(1.8);
    }

    80.5% {
        transform: translate(-4px, -1px) scaleX(0.87) scaleY(1.14) skewX(7deg);
        opacity: 1;
        filter: hue-rotate(-15deg) brightness(1.05) contrast(3) invert(0.25);
    }

    81% {
        transform: translate(-8px, -4px) scaleX(1.02) skewX(-2deg);
        opacity: 0.8;
        filter: hue-rotate(0deg) brightness(1.5) contrast(1.8);
    }

    81.5% {
        transform: translate(-14px, -8px) scaleX(1.11) scaleY(0.88) skewX(-8deg) skewY(3deg);
        opacity: 0.5;
        filter: hue-rotate(15deg) brightness(2) contrast(1.3) saturate(2);
    }

    82% {
        transform: translate(-8px, -4px) scaleX(1.02) skewX(-2deg);
        opacity: 0.8;
        filter: hue-rotate(0deg) brightness(1.5) contrast(1.8);
    }

    82.5% {
        transform: translate(-5px, -7px) scaleX(0.91) scaleY(1.1) skewX(4deg);
        opacity: 0.92;
        filter: hue-rotate(-7deg) brightness(1.25) contrast(2.5);
    }

    83% {
        transform: translate(-8px, -4px) scaleX(1.02) skewX(-2deg);
        opacity: 0.8;
        filter: hue-rotate(0deg) brightness(1.5) contrast(1.8);
    }

    83.5% {
        transform: translate(-11px, -3px) scaleX(1.07) scaleY(0.95) skewX(-5deg);
        opacity: 0.68;
        filter: hue-rotate(9deg) brightness(1.75) contrast(1.7) invert(0.1);
    }

    84% {
        transform: translate(-8px, -4px) scaleX(1.02) skewX(-2deg);
        opacity: 0.8;
        filter: hue-rotate(0deg) brightness(1.5) contrast(1.8);
    }

    84.5% {
        transform: translate(-6px, -5px) scaleX(0.96) scaleY(1.04) skewX(2deg);
        opacity: 0.85;
        filter: hue-rotate(-3deg) brightness(1.4) contrast(2.1) saturate(1.3);
    }

    85% {
        transform: translate(-8px, -4px) scaleX(1.02) skewX(-2deg);
        opacity: 0.8;
        filter: hue-rotate(0deg) brightness(1.5) contrast(1.8);
    }
}

/* Neon glow effect for sub headline */
.neon-glow {
    color: #00ffff;
    text-shadow:
        0 0 5px #00ffff,
        0 0 10px #00ffff,
        0 0 15px #00ffff,
        0 0 20px #00ffff,
        0 0 35px #00ffff,
        0 0 40px #00ffff;
    animation: neonFlicker 2s ease-in-out infinite alternate;
}

@keyframes neonFlicker {
    0%, 100% {
        text-shadow:
            0 0 5px #00ffff,
            0 0 10px #00ffff,
            0 0 15px #00ffff,
            0 0 20px #00ffff,
            0 0 35px #00ffff,
            0 0 40px #00ffff;
    }

    50% {
        text-shadow:
            0 0 2px #00ffff,
            0 0 5px #00ffff,
            0 0 8px #00ffff,
            0 0 12px #00ffff,
            0 0 25px #00ffff,
            0 0 30px #00ffff;
    }
}

/* Enhanced Subheader with Typing Animation */
.subheader {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    font-weight: 300;
    min-height: 2em;
}

.typing-text {
    border-right: 2px solid #ff0080;
    animation: typing 2.5s steps(40) 1s 1 normal both, blinkCursor 0.8s steps(1) infinite;
}

@keyframes typing {
    from {
        width: 0;
    }

    to {
        width: 100%;
    }
}

@keyframes blinkCursor {
    0%, 50% {
        border-color: #ff0080;
    }

    51%, 100% {
        border-color: transparent;
    }
}

/* Cyberpunk Brackets */
.cyber-bracket {
    color: #00ff00;
    font-family: 'JetBrains Mono', monospace;
    font-weight: 600;
}

/* Hero CTA Button */
.hero-cta {
    margin: 40px 0 60px;
}

.hero-cta-button {
    /* background: linear-gradient(135deg, #ff6600, #ff8533); */
    background: linear-gradient(135deg, #8b5cf6, #00d4ff);
    color: white;
    border: none;
    padding: 18px 40px;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    /* box-shadow: 0 8px 25px rgba(255, 102, 0, 0.4); */
    box-shadow: 0 8px 25px rgba(118, 117, 255, 0.4);
    position: relative;
    overflow: hidden;
}

.hero-cta-button::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;
}

.hero-cta-button:hover::before {
    left: 100%;
}

.hero-cta-button:hover {
    transform: translateY(-3px);
    /* box-shadow: 0 12px 35px rgba(255, 102, 0, 0.6); */
    box-shadow: 0 12px 35px rgba(76, 0, 255, 0.6);
    filter: brightness(1.1);
}

/* Progressive Onboarding Preview */
.onboarding-preview {
    margin: 40px 0;
    padding: 30px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 15px;
    border: 1px solid rgba(255, 102, 0, 0.3);
}

.onboarding-steps {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.step-card {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    min-width: 250px;
    opacity: 0.6;
}

.step-card.active {
    border-color: #ff6600;
    background: rgba(255, 102, 0, 0.1);
    opacity: 1;
    box-shadow: 0 0 20px rgba(255, 102, 0, 0.2);
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff6600, #ff8533);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.step-card:not(.active) .step-number {
    background: rgba(255, 255, 255, 0.2);
}

.step-content h4 {
    font-family: 'Brick Sans', sans-serif;
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: #fff;
    text-align: start;
}

.step-content p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.step-content code {
    background: rgba(0, 255, 0, 0.2);
    color: #00ff00;
    padding: 2px 6px;
    border-radius: 4px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.9rem;
}

.demo-section>p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 40px;
}

.demo-visual {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 40px 0;
    position: relative;
    min-height: 400px;
}

.profile {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
    z-index: 10;
    position: relative;
}

.discord-avatar {
    position: relative;
}

.avatar-ring {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    box-shadow:
        0 0 60px rgba(255, 0, 128, 0.6),
        inset 0 0 40px rgba(255, 0, 128, 0.1);
    transition: all 0.3s ease;
}

.avatar-ring::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    background: linear-gradient(45deg, #00d4ff, #ff0080, #00d4ff);
    animation: rotate 3s linear infinite;
    z-index: -1;
}

.copykitten-ring::before {
    background: linear-gradient(45deg, #ff0080, #8b5cf6, #ff0080);
}

.avatar-icon {
    width: 190px;
    height: 190px;
    background:
        radial-gradient(circle at 30% 30%, rgba(255, 0, 128, 0.2), transparent 50%),
        linear-gradient(135deg, #1a1a2e, #0f0f1f);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ff0080;
    border: 4px solid rgba(255, 0, 128, 0.3);
    box-shadow:
        inset 0 0 50px rgba(255, 0, 128, 0.1),
        0 0 70px rgba(255, 0, 128, 0.3);
    transition: all 0.3s ease;
}

.avatar-icon.pulse-effect {
    animation: avatarPulse 0.5s ease-out;
    box-shadow:
        inset 0 0 50px rgba(255, 0, 128, 0.3),
        0 0 100px rgba(255, 0, 128, 0.8);
}

@keyframes avatarPulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

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

.profile-name {
    font-family: 'Brick Sans', sans-serif;
    font-size: 24px;
    font-weight: 600;
    background: linear-gradient(135deg, #ff0080, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Waveform Animation Container */
.waveform-animation {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 300px;
    transform: translateY(-50%);
    pointer-events: none;
    z-index: 5;
}

/* Enhanced Traveling Wave Effect */
.wave-particle {
    position: absolute;
    top: 50%;
    left: 15%;
    width: 12px;
    height: 12px;
    background: #ff0080;
    border-radius: 50%;
    box-shadow: 0 0 30px #ff0080, 0 0 60px #ff0080;
    animation: travelWaveEnhanced 5s ease-in-out infinite;
    opacity: 0;
}

.wave-particle:nth-child(2) {
    animation-delay: 0.3s;
    background: #8b5cf6;
    box-shadow: 0 0 30px #8b5cf6, 0 0 60px #8b5cf6;
    width: 10px;
    height: 10px;
}

.wave-particle:nth-child(3) {
    animation-delay: 0.6s;
    background: #00d4ff;
    box-shadow: 0 0 30px #00d4ff, 0 0 60px #00d4ff;
    width: 14px;
    height: 14px;
}

.wave-particle:nth-child(4) {
    animation-delay: 0.9s;
    background: #00ff00;
    box-shadow: 0 0 30px #00ff00, 0 0 60px #00ff00;
    width: 8px;
    height: 8px;
}

.wave-particle:nth-child(5) {
    animation-delay: 1.2s;
    background: #ffff00;
    box-shadow: 0 0 30px #ffff00, 0 0 60px #ffff00;
    width: 16px;
    height: 16px;
}

.wave-particle:nth-child(6) {
    animation-delay: 1.5s;
    background: #ff4500;
    box-shadow: 0 0 30px #ff4500, 0 0 60px #ff4500;
    width: 11px;
    height: 11px;
}

@keyframes travelWaveEnhanced {
    0% {
        left: 15%;
        opacity: 0;
        transform: translateY(-50%) scale(0.3);
    }

    5% {
        opacity: 1;
        transform: translateY(-50%) scale(1);
    }

    15% {
        transform: translateY(-120%) scale(1.5);
    }

    25% {
        transform: translateY(20%) scale(0.7);
    }

    35% {
        transform: translateY(-80%) scale(1.3);
    }

    45% {
        transform: translateY(-10%) scale(0.9);
    }

    55% {
        transform: translateY(-100%) scale(1.4);
    }

    65% {
        transform: translateY(10%) scale(0.8);
    }

    75% {
        transform: translateY(-60%) scale(1.2);
    }

    85% {
        transform: translateY(-30%) scale(1.1);
    }

    95% {
        left: 85%;
        opacity: 1;
        transform: translateY(-50%) scale(1);
    }

    100% {
        left: 85%;
        opacity: 0;
        transform: translateY(-50%) scale(0.3);
    }
}

/* Enhanced Waveform Trail */
.wave-trail {
    position: absolute;
    top: 50%;
    left: 15%;
    right: 15%;
    height: 6px;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 0, 128, 0.8),
            rgba(139, 92, 246, 0.9),
            rgba(0, 212, 255, 0.8),
            rgba(0, 255, 0, 0.7),
            rgba(255, 255, 0, 0.8),
            rgba(255, 69, 0, 0.7),
            transparent);
    opacity: 0;
    animation: waveTrailEnhanced 5s ease-in-out infinite;
    transform: translateY(-50%);
    border-radius: 3px;
    box-shadow: 0 0 20px rgba(255, 0, 128, 0.5);
}

@keyframes waveTrailEnhanced {
    0%, 5% {
        opacity: 0;
        transform: translateY(-50%) scaleX(0);
        transform-origin: left;
    }

    15% {
        opacity: 0.8;
        transform: translateY(-50%) scaleX(0.2);
    }

    85% {
        opacity: 1;
        transform: translateY(-50%) scaleX(1);
    }

    95%, 100% {
        opacity: 0;
        transform: translateY(-50%) scaleX(1);
    }
}

/* Interactive Pulse Lines */
.pulse-line {
    position: absolute;
    top: 50%;
    left: 15%;
    right: 15%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #ff0080, transparent);
    animation: pulseLine 2s ease-in-out infinite;
    transform: translateY(-50%);
    opacity: 0.6;
}

.pulse-line:nth-child(8) {
    animation-delay: 0.5s;
    background: linear-gradient(90deg, transparent, #8b5cf6, transparent);
    top: calc(50% - 15px);
}

.pulse-line:nth-child(9) {
    animation-delay: 1s;
    background: linear-gradient(90deg, transparent, #00d4ff, transparent);
    top: calc(50% + 15px);
}

@keyframes pulseLine {
    0%, 100% {
        transform: translateY(0) scaleX(0);
        opacity: 0;
    }

    50% {
        transform: translateY(0) scaleX(1);
        opacity: 0.8;
    }
}

/* Audio waves emanating from logos */
.audio-waves {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80px;
    height: 80px;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.wave-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    border: 2px solid rgba(255, 0, 128, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: expandWave 2s ease-out infinite;
    opacity: 0;
}

.wave-ring:nth-child(2) {
    animation-delay: 0.5s;
}

.wave-ring:nth-child(3) {
    animation-delay: 1s;
}

.wave-ring:nth-child(4) {
    animation-delay: 1.5s;
}

@keyframes expandWave {
    0% {
        width: 0%;
        height: 0%;
        opacity: 0.8;
    }

    50% {
        opacity: 0.4;
    }

    100% {
        width: 300%;
        height: 300%;
        opacity: 0;
    }
}

/* Trust Signals for Pricing */
.pricing-section {
    margin: 80px auto 60px;
    max-width: 1200px;
    /* padding: 0 20px; */
    text-align: center;
}

.pricing-title {
    font-family: 'Brick Sans', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    /* background: linear-gradient(135deg, #ff6600, #ff8533); */
    background: linear-gradient(107deg, #8b5cf6, #00d4ff);
    background-image: linear-gradient(135deg, #5b53ff, #fc856d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pricing-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 50px;
}

/* Enhanced Pricing cards container */
.pricing-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 60px auto 40px;
    /* padding: 0 20px; */
    align-items: stretch;
    display: flex;
    justify-content: space-between;
}

/* Enhanced Pricing card */
.pricing-card {
    background:
        linear-gradient(135deg, rgba(20, 20, 30, 0.8), rgba(30, 30, 40, 0.6)),
        radial-gradient(circle at top right, rgba(255, 102, 0, 0.1), transparent 50%);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    padding: 50px 35px 35px;
    position: relative;
    backdrop-filter: blur(15px);
    transition: all 0.3s ease;
    overflow: visible;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 44px;
    height: auto;
    /* width: -webkit-fill-available; */
    flex: 1;
    /* Ensure touch targets */
}

.pricing-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.2);
}

/* Basic card */
.pricing-card.basic {
    background:
        linear-gradient(135deg, rgba(30, 30, 40, 0.5), rgba(40, 40, 50, 0.3));
    border-color: rgba(255, 255, 255, 0.05);
}

.pricing-card.basic:hover {
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

/* Premium card - highlighted */
.pricing-card.premium {
    background:
        linear-gradient(135deg, rgba(255, 102, 0, 0.15), rgba(255, 133, 51, 0.1)),
        radial-gradient(circle at top right, rgba(255, 102, 0, 0.2), transparent 50%);
    border-color: #ff6600;
    box-shadow: 0 0 30px rgba(255, 102, 0, 0.2);
}

.pricing-card.premium:hover {
    box-shadow: 0 5px 40px rgba(255, 102, 0, 0.4);
    border-color: #ff6600;
    transform: translateY(-5px);
}

/* Enterprise card */
.pricing-card.lifetime {
    background:
        linear-gradient(135deg, rgba(139, 92, 246, 0.15), rgba(0, 212, 255, 0.1)),
        radial-gradient(circle at top right, rgba(139, 92, 246, 0.2), transparent 50%);
    border-color: #8b5cf6;
    box-shadow: 0 0 30px rgba(139, 92, 246, 0.2);
}

.pricing-card.lifetime:hover {
    box-shadow: 0 5px 40px rgba(139, 92, 246, 0.4);
    border-color: #8b5cf6;
    transform: translateY(-5px);
}

/* Enhanced highlight badges */
.highlight-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
    z-index: 10;
}

.badge-popular {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #000;
    box-shadow: 0 6px 25px rgba(255, 215, 0, 0.5);
}

.badge-limited {
    background: linear-gradient(135deg, #8b5cf6, #a855f7);
    color: #fff;
    box-shadow: 0 6px 25px rgba(139, 92, 246, 0.5);
}

/* Card content */
.plan-name {
    font-family: 'Brick Sans', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.premium .plan-name {
    background: linear-gradient(135deg, #ff6600, #ff8533);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.lifetime .plan-name {
    background: linear-gradient(135deg, #8b5cf6, #00d4ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.basic .plan-name {
    color: #888;
}

.price {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 10px;
    position: relative;
    z-index: 2;
}

.price-period {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
}

.savings {
    /* color: #00ff00; */
    color: #b3b3b3;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 25px;
    min-height: 20px;
}

.lifetime .price-period {
    color: #8b5cf6;
}

/* Enhanced Features list */
.features {
    list-style: none;
    margin: 20px 0;
    text-align: left;
    position: relative;
    z-index: 2;
    flex-grow: 1;
}

.features li {
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

.features li::before {
    content: '✓';
    color: #00ff00;
    font-weight: 700;
    font-size: 1.1rem;
    min-width: 16px;
}

.basic .features li {
    color: rgba(255, 255, 255, 0.5);
}

.basic .features li::before {
    color: #666;
}

/* Enhanced CTA Buttons */
.cta-button {
    width: 100%;
    padding: 16px 25px;
    border: none;
    border-radius: 15px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: auto;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    z-index: 2;
    min-height: 44px;
    /* Touch target compliance */
}

.premium .cta-button {
    background: linear-gradient(135deg, #ff6600, #ff8533);
    color: white;
}

.premium .cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 102, 0, 0.3);
    filter: brightness(1.1);
}

.lifetime .cta-button {
    background: linear-gradient(135deg, #8b5cf6, #00d4ff);
    color: white;
}

.lifetime .cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.3);
    filter: brightness(1.1);
}

.basic .cta-button {
    background: rgba(255, 255, 255, 0.1);
    color: #888;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.basic .cta-button:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    color: #aaa;
}

/* Trust Signals for Pricing */
.pricing-trust-signals {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 40px 0 20px;
    flex-wrap: wrap;
}

.pricing-trust-signals .trust-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: rgba(0, 255, 0, 0.1);
    border: 2px solid rgba(0, 255, 0, 0.3);
    border-radius: 15px;
    color: #00ff00;
    font-size: 0.9rem;
    min-height: 44px;
    /* Touch compliance */
}

.pricing-trust-signals .trust-icon {
    font-size: 1.2rem;
}

/* Audio Preview Section */
.audio-preview-section {
    margin: 60px auto;
    max-width: 1200px;
    padding: 40px 20px;
    text-align: center;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 20px;
    border: 1px solid rgba(255, 102, 0, 0.2);
}

.audio-preview-title {
    font-family: 'Brick Sans', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 10px;
    background: linear-gradient(135deg, #ff6600, #ff8533);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.audio-preview-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 40px;
}

.audio-comparison {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.audio-card {
    flex: 1;
    min-width: 250px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.audio-card h4 {
    font-family: 'Brick Sans', sans-serif;
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #ff6600;
}

.audio-card p {
    max-width: 65%;
    margin-left: 17.5%;
}

.audio-player {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    justify-content: center;
}

.play-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff6600, #ff8533);
    border: none;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.play-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 20px rgba(255, 102, 0, 0.4);
}

.audio-waveform {
    display: flex;
    align-items: center;
    gap: 3px;
    /* flex: 1; */
}

.wave-bar {
    width: 4px;
    height: 20px;
    background: rgba(255, 102, 0, 0.3);
    border-radius: 2px;
    animation: waveform 1.5s ease-in-out infinite;
}

.wave-bar:nth-child(2) {
    animation-delay: 0.1s;
    height: 30px;
}

.wave-bar:nth-child(3) {
    animation-delay: 0.2s;
    height: 25px;
}

.wave-bar:nth-child(4) {
    animation-delay: 0.3s;
    height: 35px;
}

.wave-bar:nth-child(5) {
    animation-delay: 0.4s;
    height: 20px;
}

.wave-bar:nth-child(6) {
    animation-delay: 0.5s;
    height: 28px;
}

.wave-bar:nth-child(7) {
    animation-delay: 0.6s;
    height: 22px;
}

@keyframes waveform {
    0%, 100% {
        transform: scaleY(1);
        background: rgba(255, 102, 0, 0.3);
    }

    50% {
        transform: scaleY(1.5);
        background: #ff6600;
    }
}

.vs-divider {
    font-family: 'Brick Sans', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ff6600;
    background: rgba(255, 102, 0, 0.1);
    padding: 15px 25px;
    border-radius: 10px;
    border: 2px solid rgba(255, 102, 0, 0.3);
}

.similarity-score {
    margin-top: 40px;
    text-align: center;
}

.score-circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: conic-gradient(#ff6600 99.2%, rgba(255, 255, 255, 0.1) 0);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    position: relative;
}

.score-circle::before {
    content: '';
    position: absolute;
    inset: 8px;
    border-radius: 50%;
    background: #0a0a0f;
}

.score-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ff6600;
    position: relative;
    z-index: 2;
}

.score-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    position: relative;
    z-index: 2;
}

/* Real-Time Activity Feed */
.activity-feed-section {
    margin: 40px auto;
    max-width: 800px;
    padding: 25px;
    background: rgba(0, 255, 0, 0.05);
    border: 1px solid rgba(0, 255, 0, 0.2);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    display: none;
}

.activity-title {
    font-family: 'Brick Sans', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: #00ff00;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.activity-feed {
    display: flex;
    flex-direction: column;
    gap: 12px;
    height: 250px;
    /* Increased height for user count item */
    overflow: hidden;
}

.activity-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 8px;
    animation: slideInActivity 0.5s ease-out;
    transition: all 0.3s ease;
}

.activity-item:hover {
    background: rgba(255, 255, 255, 0.05);
}

.activity-item.user-count {
    background: rgba(0, 255, 0, 0.1);
    border: 1px solid rgba(0, 255, 0, 0.3);
    font-weight: 600;
    color: #00ff00;
}

.activity-item.user-count:hover {
    background: rgba(0, 255, 0, 0.15);
}

@keyframes slideInActivity {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.activity-status {
    font-size: 1rem;
}

.activity-text {
    flex: 1;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
}

.activity-text-live-users {
    margin-left: -130px;
}

.activity-time {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8rem;
}

/* Use Cases Section */
.use-cases-section {
    margin: 60px auto;
    max-width: 1200px;
    /* padding: 0 20px; */
    text-align: center;
}

.use-cases-title {
    font-family: 'Brick Sans', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #ff6600, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.use-case-card {
    padding: 30px 25px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    text-align: center;
    display: flex;
    flex-direction: column;
}

.use-case-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 102, 0, 0.3);
    box-shadow: 0 10px 30px rgba(255, 102, 0, 0.15);
}

.use-case-card.gaming {
    border-left: 4px solid #ff6b6b;
}

.use-case-card.roleplay {
    border-left: 4px solid #9b59b6;
}

.use-case-card.content {
    border-left: 4px solid #4ecdc4;
}

.use-case-card.streaming {
    border-left: 4px solid #e74c3c;
}

.use-case-card.community {
    border-left: 4px solid #45b7d1;
}

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

.use-case-card h3 {
    font-family: 'Brick Sans', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #ff6600;
}

.use-case-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
    margin-top: auto;
}

.use-case-example {
    font-style: italic;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    padding: 15px;
    background: rgba(255, 102, 0, 0.05);
    border-radius: 8px;
    border-left: 3px solid #ff6600;
    margin-top: auto;
}

/* Secondary CTA Section */
.secondary-cta-section {
    margin: 80px auto 60px;
    max-width: 1200px;
    padding: 60px 40px;
    background:
        linear-gradient(135deg, rgba(255, 0, 128, 0.08), rgba(139, 92, 246, 0.05)),
        radial-gradient(circle at 20% 30%, rgba(255, 102, 0, 0.1), transparent 60%);
    border-radius: 25px;
    border: 2px solid rgba(255, 0, 128, 0.3);
    text-align: center;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(15px);
}

.secondary-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #ff0080, #8b5cf6, #ff6600, transparent);
    animation: ctaShimmer 3s ease-in-out infinite;
}

@keyframes ctaShimmer {
    0%, 100% {
        opacity: 0.6;
    }

    50% {
        opacity: 1;
    }
}

.secondary-cta-container {
    position: relative;
    z-index: 2;
}

.secondary-cta-title {
    font-family: 'Brick Sans', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #ff0080, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.secondary-cta-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    font-weight: 300;
}

.secondary-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.secondary-cta-primary {
    background: linear-gradient(135deg, #ff6600, #ff8533);
    color: white;
    border: none;
    padding: 18px 35px;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 25px rgba(255, 102, 0, 0.4);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 44px;
}

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

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

.secondary-cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 102, 0, 0.6);
    filter: brightness(1.1);
}

.secondary-cta-secondary {
    background: transparent;
    color: #8b5cf6;
    border: 2px solid #8b5cf6;
    padding: 16px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    min-height: 44px;
}

.secondary-cta-secondary:hover {
    background: #8b5cf6;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.4);
}

.cta-arrow {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.secondary-cta-primary:hover .cta-arrow {
    transform: translateX(5px);
}

.cta-icon {
    font-size: 1.1rem;
}

.secondary-cta-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.mini-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    font-weight: 500;
}

.mini-feature-icon {
    font-size: 1.1rem;
}

/* Final CTA Section */
.final-cta-section {
    margin: 0;
    padding: 80px 20px;
    background:
        linear-gradient(135deg, #0a0a0f, #1a1a2e, #16213e),
        radial-gradient(circle at 50% 20%, rgba(255, 0, 128, 0.15), transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(139, 92, 246, 0.1), transparent 50%);
    border-top: 1px solid rgba(255, 0, 128, 0.3);
    position: relative;
    overflow: hidden;
}

.final-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background:
        repeating-linear-gradient(90deg,
            transparent,
            transparent 2px,
            rgba(255, 0, 128, 0.02) 2px,
            rgba(255, 0, 128, 0.02) 4px);
    animation: finalCtaShimmer 4s linear infinite;
}

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

    100% {
        transform: translateX(100%);
    }
}

.final-cta-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
    position: relative;
    z-index: 2;
    padding: 0 20px;
}

.final-cta-content {
    flex: 1;
    text-align: left;
}

.final-cta-title {
    font-family: 'Brick Sans', sans-serif;
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #ff0080, #ff6600, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
}

.final-cta-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    line-height: 1.5;
    font-weight: 300;
}

.final-cta-stats {
    display: flex;
    gap: 40px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

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

.final-stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #ff0080, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 5px;
}

.final-stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.final-cta-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
}

.final-cta-primary {
    background: linear-gradient(135deg, #ff0080, #8b5cf6);
    color: white;
    border: none;
    padding: 20px 45px;
    font-size: 1.3rem;
    font-weight: 700;
    border-radius: 60px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow:
        0 10px 30px rgba(255, 0, 128, 0.4),
        0 0 60px rgba(255, 0, 128, 0.2);
    position: relative;
    overflow: hidden;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

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

.final-cta-primary:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow:
        0 15px 40px rgba(255, 0, 128, 0.6),
        0 0 80px rgba(255, 0, 128, 0.3);
    filter: brightness(1.1);
}

.final-cta-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 60px;
    transform: translate(-50%, -50%);
    animation: finalCtaPulse 2s ease-in-out infinite;
}

@keyframes finalCtaPulse {
    0% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }

    100% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(1.5);
    }
}

.final-cta-guarantee {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
    margin-left: 18px;
}

.guarantee-icon {
    font-size: 1.1rem;
}

.final-cta-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    min-height: 300px;
    align-self: flex-end;
}

.final-cta-visual img {
    height: 30rem;
    position: absolute;
    left: -42px;
}

.floating-elements {
    position: relative;
    width: 200px;
    height: 200px;
}

.floating-voice-wave {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 60px;
    height: 60px;
    border: 3px solid rgba(255, 0, 128, 0.6);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: floatingWave 3s ease-in-out infinite;
}

.floating-voice-wave:nth-child(2) {
    width: 100px;
    height: 100px;
    border-color: rgba(139, 92, 246, 0.4);
    animation-delay: 1s;
}

.floating-voice-wave:nth-child(3) {
    width: 140px;
    height: 140px;
    border-color: rgba(255, 102, 0, 0.3);
    animation-delay: 2s;
}

@keyframes floatingWave {
    0%, 100% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.5);
    }

    50% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
}

/* Glitch Effects for Content Swapping */
.glitch-swap {
    position: relative;
    overflow: hidden;
}

.glitch-swap.swapping {
    animation: contentGlitch 0.6s ease-in-out;
}

@keyframes contentGlitch {
    0% {
        transform: translateX(0);
    }

    10% {
        transform: translateX(-5px) scaleX(1.02);
        filter: hue-rotate(90deg);
    }

    20% {
        transform: translateX(5px) scaleX(0.98);
        filter: hue-rotate(180deg);
    }

    30% {
        transform: translateX(-3px) scaleY(1.02);
        filter: hue-rotate(270deg);
    }

    40% {
        transform: translateX(3px) scaleY(0.98);
        filter: hue-rotate(360deg);
    }

    50% {
        transform: translateX(-2px);
        filter: brightness(1.5);
    }

    60% {
        transform: translateX(2px);
        filter: brightness(0.5);
    }

    70% {
        transform: translateX(-1px);
        filter: contrast(2);
    }

    80% {
        transform: translateX(1px);
        filter: contrast(0.5);
    }

    90% {
        transform: translateX(0);
        filter: saturate(2);
    }

    100% {
        transform: translateX(0);
        filter: none;
    }
}

.testimonial-glitch {
    animation: testimonialGlitchStage1 0.3s ease-in-out, testimonialGlitchStage2 0.4s ease-in-out 0.3s;
}

@keyframes testimonialGlitchStage1 {
    0% {
        transform: translateX(0);
        filter: none;
        opacity: 1;
    }

    20% {
        transform: translateX(-8px) scaleX(1.15) skewX(-5deg);
        filter: hue-rotate(90deg) brightness(2) contrast(3) saturate(3);
        opacity: 0.8;
    }

    40% {
        transform: translateX(12px) scaleX(0.85) skewX(5deg);
        filter: hue-rotate(180deg) brightness(0.3) contrast(5) invert(1);
        opacity: 0.4;
    }

    60% {
        transform: translateX(-15px) scaleY(1.3) skewY(-3deg);
        filter: hue-rotate(270deg) brightness(3) contrast(0.5) saturate(5);
        opacity: 0.2;
    }

    80% {
        transform: translateX(20px) scaleX(1.4) scaleY(0.6) skewX(-8deg);
        filter: hue-rotate(360deg) brightness(0.1) contrast(8) invert(1);
        opacity: 0.1;
    }

    100% {
        transform: translateX(0) scaleX(0.1) scaleY(0.1);
        filter: brightness(5) contrast(10) saturate(0);
        opacity: 0;
    }
}

@keyframes testimonialGlitchStage2 {
    0% {
        transform: translateX(0) scaleX(0.1) scaleY(0.1);
        filter: brightness(5) contrast(10) saturate(0);
        opacity: 0;
    }

    15% {
        transform: translateX(-25px) scaleX(1.8) scaleY(0.3) skewX(15deg);
        filter: hue-rotate(45deg) brightness(4) contrast(6) invert(1);
        opacity: 0.3;
    }

    30% {
        transform: translateX(18px) scaleX(0.4) scaleY(1.6) skewY(10deg);
        filter: hue-rotate(135deg) brightness(0.2) contrast(3) saturate(4);
        opacity: 0.6;
    }

    50% {
        transform: translateX(-10px) scaleX(1.2) scaleY(0.8) skewX(-3deg);
        filter: hue-rotate(225deg) brightness(1.8) contrast(2);
        opacity: 0.8;
    }

    70% {
        transform: translateX(5px) scaleX(0.9) scaleY(1.1) skewY(-2deg);
        filter: hue-rotate(315deg) brightness(1.3) contrast(1.5);
        opacity: 0.9;
    }

    85% {
        transform: translateX(-2px) scaleX(1.05) scaleY(0.95);
        filter: brightness(1.1) contrast(1.2);
        opacity: 0.95;
    }

    100% {
        transform: translateX(0) scaleX(1) scaleY(1);
        filter: none;
        opacity: 1;
    }
}

.activity-glitch {
    animation: activityGlitchStage1 0.25s ease-in-out, activityGlitchStage2 0.35s ease-in-out 0.25s;
}

@keyframes activityGlitchStage1 {
    0% {
        transform: translateY(0) scaleX(1);
        filter: none;
        opacity: 1;
    }

    25% {
        transform: translateY(-4px) scaleX(1.3) skewX(-8deg);
        filter: hue-rotate(120deg) brightness(2.5) contrast(4);
        opacity: 0.7;
    }

    50% {
        transform: translateY(6px) scaleX(0.6) skewX(12deg);
        filter: hue-rotate(240deg) brightness(0.2) contrast(6) invert(1);
        opacity: 0.3;
    }

    75% {
        transform: translateY(-8px) scaleX(1.6) skewX(-15deg);
        filter: hue-rotate(360deg) brightness(4) contrast(0.3) saturate(6);
        opacity: 0.1;
    }

    100% {
        transform: translateY(0) scaleX(0.05);
        filter: brightness(6) contrast(12) saturate(0);
        opacity: 0;
    }
}

@keyframes activityGlitchStage2 {
    0% {
        transform: translateY(0) scaleX(0.05);
        filter: brightness(6) contrast(12) saturate(0);
        opacity: 0;
    }

    20% {
        transform: translateY(-12px) scaleX(2.2) skewX(20deg);
        filter: hue-rotate(60deg) brightness(3.5) contrast(5) invert(1);
        opacity: 0.4;
    }

    40% {
        transform: translateY(8px) scaleX(0.3) skewX(-10deg);
        filter: hue-rotate(180deg) brightness(0.3) contrast(3) saturate(5);
        opacity: 0.7;
    }

    60% {
        transform: translateY(-3px) scaleX(1.15) skewX(3deg);
        filter: hue-rotate(270deg) brightness(1.6) contrast(2);
        opacity: 0.85;
    }

    80% {
        transform: translateY(1px) scaleX(0.95);
        filter: brightness(1.2) contrast(1.3);
        opacity: 0.95;
    }

    100% {
        transform: translateY(0) scaleX(1);
        filter: none;
        opacity: 1;
    }
}

.security-header h2 {
    font-family: 'Brick Sans', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #00ff00;
}

.security-header p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 40px;
}

.security-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
}

.security-item {
    padding: 20px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    border: 1px solid rgba(0, 255, 0, 0.2);
    text-align: center;
}

.security-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.security-characters {
    height: 196px;
    width: 196px;
}

.use-case-character {
    height: 128px;
    width: 128px;
    align-self: center;
    margin-bottom: 20px;
}

.security-item h4 {
    font-family: 'Brick Sans', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #00ff00;
}

.security-item p {
    font-size: 0.9rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.challenge-title {
    font-family: 'Brick Sans', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 10px;
    background: linear-gradient(135deg, #8b5cf6, #a855f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.challenge-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 40px;
}

.challenge-round h3 {
    font-family: 'Brick Sans', sans-serif;
    font-size: 1.4rem;
    margin-bottom: 25px;
    color: #8b5cf6;
}

.challenge-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.challenge-option {
    flex: 1;
    min-width: 150px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.option-label {
    font-weight: 700;
    margin-bottom: 15px;
    color: #8b5cf6;
}

.challenge-play-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #8b5cf6, #a855f7);
    border: none;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
}

.challenge-play-btn:hover {
    transform: scale(1.1);
}

.option-votes {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

.vs-small {
    font-family: 'Brick Sans', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: #8b5cf6;
    padding: 10px 15px;
    background: rgba(139, 92, 246, 0.1);
    border-radius: 8px;
}

.challenge-voting p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.9);
}

.vote-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.vote-btn {
    padding: 12px 30px;
    background: linear-gradient(135deg, #8b5cf6, #a855f7);
    color: white;
    border: none;
    border-radius: 25px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.vote-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(139, 92, 246, 0.3);
}

.challenge-result {
    padding: 20px;
    background: rgba(255, 102, 0, 0.1);
    border-radius: 10px;
    margin-top: 20px;
}

.result-text {
    font-size: 1.2rem;
    font-weight: 700;
    color: #ff6600;
    margin-bottom: 10px;
}

.result-explanation {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    line-height: 130%;
}

.challenge-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
    flex-wrap: wrap;
}

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

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #8b5cf6;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

/* FAQ Section */
.faq-section {
    margin: 60px auto;
    max-width: 800px;
    padding: 0 20px;
}

.faq-title {
    font-family: 'Brick Sans', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    background: linear-gradient(135deg, #ff6600, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.faq-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
}

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

.faq-item.active .faq-question {
    background: rgba(255, 255, 255, 0.05);
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.05);
}

.faq-question h4 {
    font-family: 'Brick Sans', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #ff6600;
    margin: 0;
}

.faq-toggle {
    font-size: 1.5rem;
    color: #ff6600;
    font-weight: 700;
    transition: transform 0.3s ease;
}

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

.faq-answer {
    padding: 20px 20px;
    display: none;
    font-size: 17px;
}

.faq-item.active .faq-answer {
    display: block;
    animation: fadeInDown 0.3s ease-out;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.faq-answer p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin: 0;
}

/* Exit Intent Popup */
.exit-intent-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
}

.popup-content {
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    padding: 40px;
    border-radius: 20px;
    border: 2px solid #ff6600;
    max-width: 500px;
    width: 90%;
    text-align: center;
    position: relative;
    box-shadow: 0 20px 60px rgba(255, 102, 0, 0.3);
}

.popup-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
}

.popup-title {
    font-family: 'Brick Sans', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #ff6600, #ff8533);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.popup-subtitle {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 25px;
}

.popup-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.popup-input {
    padding: 12px;
    border: 1px solid rgba(255, 102, 0, 0.3);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    color: white;
    font-size: 1rem;
}

.popup-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.popup-btn {
    padding: 15px;
    background: linear-gradient(135deg, #ff6600, #ff8533);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.popup-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 102, 0, 0.4);
}

.trust-signals {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 25px;
    background: rgba(0, 255, 0, 0.1);
    border: 2px solid rgba(0, 255, 0, 0.3);
    border-radius: 15px;
    color: #00ff00;
}

.trust-icon {
    font-weight: 700;
    font-size: 12px;
    background: rgba(0, 255, 0, 0.2);
    padding: 4px 8px;
    border-radius: 6px;
    border: 1px solid rgba(0, 255, 0, 0.4);
}

.live-dot {
    width: 8px;
    height: 8px;
    background: #00ff00;
    border-radius: 50%;
    display: inline-block;
    margin-right: 8px;
    animation: pulse 2s infinite;
}

/* Testimonials Section */
.testimonials-section {
    margin: 80px auto 40px;
    max-width: 1200px;
    /* padding: 0 20px; */
}

.testimonials-title {
    font-family: 'Brick Sans', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #ff0080, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.testimonials-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 50px;
}

.testimonials-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.testimonial-card {
    background: rgba(255, 0, 128, 0.04);
    border: 1px solid rgba(255, 0, 128, 0.25);
    border-radius: 15px;
    padding: 25px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 15px rgba(255, 0, 128, 0.1);
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #ff0080, #8b5cf6, transparent);
    opacity: 0.6;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 0, 128, 0.4);
    box-shadow: 0 10px 30px rgba(255, 0, 128, 0.15);
}

.testimonial-card.featured {
    border-color: #ff0080;
    background: rgba(255, 0, 128, 0.05);
    box-shadow: 0 0 20px rgba(255, 0, 128, 0.2);
    position: relative;
}

.testimonial-rating {
    color: #ffd700;
    font-size: 1.2rem;
    margin-bottom: 15px;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
    position: relative;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.author-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(45deg, #ff0080, #8b5cf6);
    position: relative;
}

.author-avatar::before {
    content: '';
    position: absolute;
    inset: 2px;
    border-radius: 50%;
    background: #0a0a0f;
}

.author-avatar.streaming {
    background: linear-gradient(45deg, #8b5cf6, #593695);
}

.author-avatar.tech {
    background: linear-gradient(45deg, #00d4ff, #0099cc);
}

.author-avatar.mod {
    background: linear-gradient(45deg, #00ff00, #43b581);
}

.author-avatar.creative {
    background: linear-gradient(45deg, #ff6b6b, #e91e63);
}

.author-avatar.community {
    background: linear-gradient(45deg, #ffd700, #ffb347);
}

.testimonial-author span {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

/* Features Section */
.features-section {
    margin: 60px auto 40px;
    max-width: 1200px;
    /* padding: 0 20px; */
    --primary: #ff0080;
    --secondary: #8b5cf6;
    --accent: #00d4ff;
    --orange: #ff6600;
    --green: #00ff00;
    --surface: rgba(255, 255, 255, 0.03);
    --surface-hover: rgba(255, 255, 255, 0.06);
    --border: rgba(255, 255, 255, 0.12);
    --border-accent: rgba(255, 0, 128, 0.2);
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.8);
    --text-muted: rgba(255, 255, 255, 0.6);
}

.features-title {
    font-family: 'Brick Sans', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 10px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.features-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 60px;
    font-weight: 300;
}

.features-container {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.features-tier {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 40px 32px;
    backdrop-filter: blur(12px);
    position: relative;
    transition: all 0.3s ease;
}

.features-tier::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary), var(--secondary), transparent);
    border-radius: 20px 20px 0 0;
}

.features-tier.premium-features {
    border-color: var(--border-accent);
    background:
        linear-gradient(135deg, rgba(255, 0, 128, 0.04), rgba(139, 92, 246, 0.02)),
        var(--surface);
    box-shadow:
        0 8px 32px rgba(255, 0, 128, 0.1),
        0 0 0 1px rgba(255, 0, 128, 0.1);
}

.features-tier-header {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border);
    position: relative;
    display: none;
}

.features-tier-header::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 1px;
}

.features-tier-header h3 {
    font-family: 'Brick Sans', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 16px 0;
}

.premium-features .features-tier-header h3 {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tier-badge {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    border: none;
    box-shadow: 0 4px 12px rgba(255, 0, 128, 0.2);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 24px;
}

.feature-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 28px 24px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    text-align: left;
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.feature-card:hover {
    transform: translateY(-4px);
    border-color: var(--border-accent);
    background: var(--surface-hover);
    box-shadow: 0 12px 40px rgba(255, 0, 128, 0.15);
}

.feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.feature-icon.setup {
    background: linear-gradient(135deg, #ff6600, #ff8533);
}

.feature-icon.capture {
    background: linear-gradient(135deg, #8b5cf6, #a855f7);
}

.feature-icon.upload {
    background: linear-gradient(135deg, #00d4ff, #0099cc);
}

.feature-icon.disconnect {
    background: linear-gradient(135deg, #00ff00, #43b581);
}

.feature-icon.clone {
    background: linear-gradient(135deg, #ff0080, #e91e63);
}

.feature-icon.pitch {
    background: linear-gradient(135deg, #ffd700, #ffb347);
}

.feature-icon.speed {
    background: linear-gradient(135deg, #ff4500, #ff6b35);
}

.feature-icon.moderation {
    background: linear-gradient(135deg, #9333ea, #7c3aed);
}

.feature-icon.control {
    background: linear-gradient(135deg, #059669, #10b981);
}

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

.feature-content {
    flex: 1;
}

.feature-content h4 {
    font-family: 'Brick Sans', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
    line-height: 1.3;
}

.feature-content p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin: 0;
}

#reviewText {
    height: 110px;
}

/* Review Submission Form - Full Width & Shorter */
.review-submission {
    margin-top: 40px;
    padding: 35px 40px 25px;
    background: rgba(255, 0, 128, 0.05);
    border: 1px solid rgba(255, 0, 128, 0.3);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    position: relative;
    width: 100%;
    box-shadow: 0 0 20px rgba(255, 0, 128, 0.15);
}

.review-submission::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #ff0080, #8b5cf6, transparent);
    opacity: 0.6;
}

.review-form-title {
    font-family: 'Brick Sans', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 8px;
    background: linear-gradient(135deg, #ff0080, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.review-form-subtitle {
    text-align: center;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 32px;
}

.review-form {
    max-width: 500px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 18px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-group textarea,
.form-group input {
    width: 100%;
    min-height: 80px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 0, 128, 0.3);
    border-radius: 8px;
    color: #fff;
    font-size: 0.9rem;
    font-family: inherit;
    resize: vertical;
    transition: all 0.3s ease;
}

.form-group textarea:focus,
.form-group input:focus {
    outline: none;
    border-color: #ff0080;
    box-shadow: 0 0 15px rgba(255, 0, 128, 0.3);
    background: rgba(255, 255, 255, 0.08);
}

.form-group textarea::placeholder,
.form-group input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.char-counter {
    text-align: right;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 4px;
}

.star-rating {
    display: flex;
    gap: 8px;
}

.star {
    font-size: 1.6rem;
    color: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.2s ease;
    user-select: none;
}

.star:hover,
.star.active {
    color: #ffd700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
    transform: scale(1.1);
}

.category-selector {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 8px;
}

.category-option {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 10px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.8rem;
}

.category-option:hover {
    border-color: rgba(255, 0, 128, 0.5);
    background: rgba(255, 255, 255, 0.08);
}

.category-option.active {
    border-color: #ff0080;
    background: rgba(255, 0, 128, 0.1);
    box-shadow: 0 0 15px rgba(255, 0, 128, 0.2);
}

.category-avatar {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: linear-gradient(45deg, #ff0080, #8b5cf6);
    position: relative;
    flex-shrink: 0;
}

.category-avatar::before {
    content: '';
    position: absolute;
    inset: 2px;
    border-radius: 50%;
    background: #0a0a0f;
}

.category-avatar.streaming {
    background: linear-gradient(45deg, #8b5cf6, #593695);
}

.category-avatar.tech {
    background: linear-gradient(45deg, #00d4ff, #0099cc);
}

.category-avatar.mod {
    background: linear-gradient(45deg, #00ff00, #43b581);
}

.category-avatar.creative {
    background: linear-gradient(45deg, #ff6b6b, #e91e63);
}

.category-avatar.community {
    background: linear-gradient(45deg, #ffd700, #ffb347);
}

.submit-review-btn {
    width: 100%;
    padding: 12px 25px;
    background: linear-gradient(135deg, #ff0080, #8b5cf6);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    margin-top: 15px;
}

.submit-review-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 0, 128, 0.4);
    filter: brightness(1.1);
}

.submit-review-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.btn-glow {
    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;
}

.submit-review-btn:hover .btn-glow {
    left: 100%;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #0a0a0f, #1a1a2e);
    border-top: 1px solid rgba(255, 102, 0, 0.2);
    padding: 60px 0 30px;
    /* margin-top: 80px; */
    padding-bottom: 0;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    display: flex;
    flex-direction: row;
}

.footer-product-description {
    max-width: 200px;
}

.footer-section-product {
    margin-left: auto;
    margin-right: 40px;
}

.footer-section-support {
    margin-right: 40px;
}

.footer-section h3 {
    font-family: 'Brick Sans', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    /* background: linear-gradient(135deg, #ff6600, #ff8533); */
    background: linear-gradient(135deg, #ffffff, #ffd2b4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

.footer-section h4 {
    font-family: 'Brick Sans', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
    font-size: 0.9rem;
}

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

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #ff6600;
}

.footer-bottom {
    max-width: 1200px;
    margin: 40px auto 0;
    padding: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    margin: 0;
    padding: 0.3em 0;
}

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

.trust-indicator {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    padding: 4px 8px;
    background: rgba(0, 255, 0, 0.1);
    border-radius: 6px;
    border: 1px solid rgba(0, 255, 0, 0.2);
}

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

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-link:hover {
    background: rgba(255, 102, 0, 0.2);
    border-color: #ff6600;
    color: #ff6600;
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }

    .pricing-container {
        display: grid;
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 410px;
    }
}

@media (max-width: 768px) {
    .hero-cta button {
        min-height: 44px;
        min-width: 44px;
        font-size: 1rem;
    }

    .hero-cta div button {
        padding: 12px 25px;
        font-size: 0.9rem;
    }

    h1 {
        font-size: 3rem;
    }

    .live-activity {
        display: none;
    }

    .demo-visual {
        flex-direction: column;
        gap: 40px;
        min-height: 600px;
    }

    .waveform-animation {
        top: 40%;
        height: 200px;
        transform: translateY(-50%) rotate(90deg);
    }

    .wave-particle {
        left: 50%;
        top: 15%;
        animation: travelWaveMobileEnhanced 5s ease-in-out infinite;
    }

    @keyframes travelWaveMobileEnhanced {
        0% {
            top: 15%;
            opacity: 0;
            transform: translateX(-50%) scale(0.3);
        }

        5% {
            opacity: 1;
            transform: translateX(-50%) scale(1);
        }

        15% {
            transform: translateX(-30%) scale(1.5);
        }

        25% {
            transform: translateX(-70%) scale(0.7);
        }

        35% {
            transform: translateX(-20%) scale(1.3);
        }

        45% {
            transform: translateX(-80%) scale(0.9);
        }

        55% {
            transform: translateX(-10%) scale(1.4);
        }

        65% {
            transform: translateX(-90%) scale(0.8);
        }

        75% {
            transform: translateX(-40%) scale(1.2);
        }

        85% {
            transform: translateX(-60%) scale(1.1);
        }

        95% {
            top: 85%;
            opacity: 1;
            transform: translateX(-50%) scale(1);
        }

        100% {
            top: 85%;
            opacity: 0;
            transform: translateX(-50%) scale(0.3);
        }
    }

    .wave-trail {
        top: 15%;
        bottom: 15%;
        left: 50%;
        right: auto;
        width: 6px;
        height: 70%;
        background: linear-gradient(180deg,
                transparent,
                rgba(255, 0, 128, 0.8),
                rgba(139, 92, 246, 0.9),
                rgba(0, 212, 255, 0.8),
                rgba(0, 255, 0, 0.7),
                rgba(255, 255, 0, 0.8),
                rgba(255, 69, 0, 0.7),
                transparent);
        transform: translateX(-50%);
        animation: waveTrailMobileEnhanced 5s ease-in-out infinite;
        border-radius: 3px;
    }

    @keyframes waveTrailMobileEnhanced {
        0%, 5% {
            opacity: 0;
            transform: translateX(-50%) scaleY(0);
            transform-origin: top;
        }

        15% {
            opacity: 0.8;
            transform: translateX(-50%) scaleY(0.2);
        }

        85% {
            opacity: 1;
            transform: translateX(-50%) scaleY(1);
        }

        95%, 100% {
            opacity: 0;
            transform: translateX(-50%) scaleY(1);
        }
    }

    .pulse-line {
        display: none;
    }

    .avatar-ring {
        width: 150px;
        height: 150px;
    }

    .avatar-icon {
        width: 140px;
        height: 140px;
    }

    .avatar-icon svg {
        width: 100px;
        height: 100px;
    }

    .social-proof {
        gap: 20px;
    }

    .proof-item {
        padding: 10px 15px;
    }

    .onboarding-steps {
        flex-direction: column;
        gap: 15px;
    }

    .step-card {
        min-width: auto;
        padding: 15px;
    }

    .step-content h4 {
        font-size: 1rem;
    }

    .step-content p {
        font-size: 0.85rem;
    }

    .pricing-trust-signals {
        gap: 15px;
    }

    .pricing-trust-signals .trust-badge {
        padding: 8px 12px;
        font-size: 0.8rem;
    }

    .features-section {
        margin: 40px auto 30px;
        padding: 0 16px;
    }

    .features-title {
        font-size: 1.9rem;
    }

    .features-subtitle {
        font-size: 1rem;
        margin-bottom: 40px;
    }

    .features-tier {
        padding: 32px 24px;
    }

    .features-tier-header {
        margin-bottom: 32px;
    }

    .features-tier-header h3 {
        font-size: 1.4rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .feature-card {
        padding: 24px 20px;
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }

    .feature-icon {
        width: 44px;
        height: 44px;
        align-self: center;
    }

    .feature-icon svg {
        width: 22px;
        height: 22px;
    }

    .feature-content h4 {
        font-size: 1.1rem;
        margin-bottom: 10px;
    }

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

    .testimonials-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }

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

    .testimonial-card {
        padding: 20px;
    }

    .author-avatar {
        width: 28px;
        height: 28px;
    }

    .review-submission {
        padding: 25px 20px 20px;
        margin-top: 30px;
    }

    .review-form-title {
        font-size: 1.2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .category-selector {
        grid-template-columns: repeat(2, 1fr);
    }

    .category-option {
        font-size: 0.75rem;
        padding: 6px 8px;
    }

    .star {
        font-size: 1.4rem;
    }

    /* Mobile styles for new sections */
    .audio-preview-section {
        padding: 30px 15px;
        margin: 40px auto;
    }

    .audio-comparison {
        flex-direction: column;
        gap: 20px;
    }

    .vs-divider {
        font-size: 1.2rem;
        padding: 10px 20px;
    }

    .score-circle {
        width: 100px;
        height: 100px;
    }

    .score-number {
        font-size: 1.5rem;
    }

    .activity-feed-section {
        padding: 20px 15px;
        margin: 30px auto;
    }

    .activity-title {
        font-size: 1.1rem;
    }

    .activity-item {
        padding: 10px 12px;
        flex-wrap: wrap;
    }

    .activity-text {
        font-size: 0.85rem;
    }

    .activity-text-live-users {
        margin-left: 0;
    }

    .activity-feed {
        height: 186px;
        /* Adjusted for mobile */
    }

    .use-cases-section {
        padding: 0 15px;
        margin: 40px auto;
    }

    .use-cases-title {
        font-size: 1.8rem;
    }

    .use-cases-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .use-case-card {
        padding: 25px 20px;
    }

    .use-case-icon {
        font-size: 2.5rem;
    }

    .security-header h2 {
        font-size: 1.6rem;
    }

    .security-features {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .security-item {
        padding: 15px;
    }

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

    .challenge-title {
        font-size: 1.8rem;
    }

    .challenge-options {
        flex-direction: column;
        gap: 15px;
    }

    .challenge-option {
        min-width: auto;
        padding: 15px;
    }

    .vs-small {
        font-size: 1rem;
        padding: 8px 12px;
    }

    .vote-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .vote-btn {
        padding: 10px 25px;
    }

    .challenge-stats {
        gap: 20px;
    }

    .stat-number {
        font-size: 1.6rem;
    }

    .faq-section {
        padding: 0 15px;
        margin: 40px auto;
    }

    .faq-title {
        font-size: 1.8rem;
    }

    .faq-question {
        padding: 15px;
    }

    .faq-question h4 {
        font-size: 1rem;
    }

    .faq-answer {
        padding: 15px 15px 15px;
    }

    .popup-content {
        padding: 30px 20px;
        margin: 0 15px;
    }

    .popup-title {
        font-size: 1.5rem;
    }

    .popup-form {
        gap: 12px;
    }

    /* Footer Mobile Styles */
    .footer {
        padding: 40px 0 20px;
        padding-bottom: 0;
        /* margin-top: 60px; */
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        padding: 0 15px;
        display: grid;
    }

    .footer-section-legal {
        margin-left: auto;
        margin-right: 20px;
    }

    .footer-section-product {
        margin-right: 0;
    }

    .footer-section h3 {
        font-size: 1.3rem;
    }

    .footer-section h4 {
        font-size: 1rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        padding: 15px;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-trust {
        justify-content: center;
        gap: 10px;
    }

    .trust-indicator {
        font-size: 0.75rem;
        padding: 3px 6px;
    }

    /* Mobile styles for Secondary CTA */
    .secondary-cta-section {
        margin: 60px auto 40px;
        padding: 40px 20px;
    }

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

    .secondary-cta-subtitle {
        font-size: 1rem;
        margin-bottom: 30px;
    }

    .secondary-cta-buttons {
        flex-direction: column;
        gap: 15px;
        margin-bottom: 30px;
    }

    .secondary-cta-primary,
    .secondary-cta-secondary {
        width: 100%;
        justify-content: center;
        padding: 16px 25px;
        font-size: 1rem;
    }

    .secondary-cta-features {
        gap: 20px;
        justify-content: space-around;
    }

    .mini-feature {
        font-size: 0.85rem;
    }

    /* Mobile styles for Final CTA */
    .final-cta-section {
        padding: 60px 15px;
        margin: 0;
    }

    .final-cta-container {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }

    .final-cta-content {
        text-align: center;
    }

    .final-cta-title {
        font-size: 2.5rem;
        margin-bottom: 15px;
    }

    .final-cta-subtitle {
        font-size: 1.1rem;
        margin-bottom: 30px;
    }

    .final-cta-stats {
        justify-content: center;
        gap: 30px;
        margin-bottom: 40px;
    }

    .final-stat-number {
        font-size: 2rem;
    }

    .final-stat-label {
        font-size: 0.8rem;
    }

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

    .final-cta-primary {
        width: 100%;
        max-width: 300px;
        padding: 18px 35px;
        font-size: 1.1rem;
    }

    .final-cta-guarantee {
        text-align: center;
        font-size: 0.85rem;
        justify-content: center;
        flex-wrap: wrap;
        margin-left: 0;
    }

    .final-cta-visual {
        min-height: 200px;
    }

    .final-cta-visual img {
        width: 90%;
        bottom: -60px;
        left: 0;
        height: auto;
        position: relative;
        align-self: flex-end;
    }

    .floating-elements {
        width: 150px;
        height: 150px;
    }

    .floating-voice-wave {
        width: 40px;
        height: 40px;
    }

    .floating-voice-wave:nth-child(2) {
        width: 70px;
        height: 70px;
    }

    .floating-voice-wave:nth-child(3) {
        width: 100px;
        height: 100px;
    }
}

.cta-add-to-discord-hero {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 2px solid #e6e6e6ff;
}

.cta-add-to-discord-hero:hover {
    border-color: rgb(88, 101, 242);
}

.review-form-username-rating {
    display: flex;
    justify-content: space-between;
}

.review-form-username-rating>div {
    flex: 1;
}

#usernameText {
    min-height: fit-content;
    padding: 10px 12px 14px 12px;
}

#star-rating-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 28px;
    flex: 1;
    gap: 8px;
}