/* ==========================================================================
   Base & Variables
   ========================================================================== */
:root {
    /* Color Palette */
    --bg-primary: #050505;
    --bg-secondary: #0a0a0c;
    --text-primary: #ffffff;
    --text-secondary: #a0a0a0;

    /* Accents */
    --accent-violet: #7B2CBF;
    --accent-blue: #4361EE;
    --gradient-accent: linear-gradient(135deg, var(--accent-violet) 0%, var(--accent-blue) 100%);

    /* UI Elements */
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-highlight: rgba(255, 255, 255, 0.15);

    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Animations */
    --transition-fast: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-slow: 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

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

/* ==========================================================================
   Typography & Utilities
   ========================================================================== */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(3rem, 6vw, 5.5rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    font-weight: 500;
}

p {
    color: var(--text-secondary);
    font-size: 1.125rem;
}

.text-gradient {
    background: linear-gradient(to right, var(--accent-violet), var(--accent-blue), #ff007a, var(--accent-violet));
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    animation: gradient-shift 6s ease-in-out infinite;
}

@keyframes gradient-shift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    animation: float 6s ease-in-out infinite;
}

/* Background Glows */
.bg-glow {
    position: absolute;
    width: 60vw;
    height: 60vw;
    border-radius: 50%;
    filter: blur(120px);
    z-index: -1;
    opacity: 0.15;
    pointer-events: none;
}

.glow-primary {
    top: -10%;
    left: -10%;
    background: var(--accent-violet);
}

.glow-secondary {
    bottom: 20%;
    right: -10%;
    background: var(--accent-blue);
}

/* ==========================================================================
   Components
   ========================================================================== */
/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    border-radius: 3rem;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 1rem;
    text-decoration: none;
    cursor: pointer;
    transition: all var(--transition-fast);
    border: none;
    outline: none;
}

.btn-primary {
    background: var(--text-primary);
    color: var(--bg-primary);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.15);
}

.btn-secondary {
    background: var(--glass-bg);
    color: var(--text-primary);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: var(--glass-highlight);
    border-color: var(--text-secondary);
    transform: translateY(-2px);
}

/* Glass Card */
.glass-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 24px;
    padding: 2.5rem;
    transition: transform var(--transition-slow), border-color var(--transition-fast), box-shadow var(--transition-slow);
    position: relative;
    overflow: hidden;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(600px circle at var(--x, 50%) var(--y, 50%), rgba(123, 44, 191, 0.15), transparent 40%);
    z-index: 0;
    opacity: 0;
    transition: opacity var(--transition-fast);
    pointer-events: none;
}

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

.glass-card>* {
    position: relative;
    z-index: 1;
}

.glass-card:hover {
    transform: translateY(-5px);
    border-color: rgba(123, 44, 191, 0.4);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 40px rgba(123, 44, 191, 0.1);
}

/* ==========================================================================
   Layout & Sections
   ========================================================================== */
/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 0;
    z-index: 100;
    transition: background var(--transition-fast), padding var(--transition-fast);
}

.navbar.scrolled {
    background: rgba(5, 5, 5, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    padding: 1rem 0;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-primary);
    text-decoration: none;
    letter-spacing: -0.03em;
}

.logo .dot {
    color: var(--accent-violet);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 8px;
    cursor: pointer;
    z-index: 101;
    padding: 0.5rem;
    /* Add some padding for a larger click area */
}

.hamburger span {
    width: 35px;
    height: 3px;
    background-color: var(--text-primary);
    border-radius: 3px;
    transition: 0.3s;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-links a:not(.btn) {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color var(--transition-fast);
}

.nav-links a:not(.btn):hover {
    color: var(--text-primary);
}

main {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
}

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

.hero-content {
    max-width: 800px;
    z-index: 10;
}

.hero h1 {
    margin-bottom: 1.5rem;
}

.hero p {
    font-size: 1.25rem;
    max-width: 600px;
    margin-bottom: 3rem;
}

.hero-actions {
    display: flex;
    gap: 1rem;
}

.hero-visual {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    width: 500px;
    height: 500px;
    z-index: 1;
    pointer-events: none;
}

/* Word Rotator */
.word-rotator {
    display: inline-block;
    position: relative;
    overflow: hidden;
    height: 1.1em;
    vertical-align: bottom;
    width: 300px;
    text-align: left;
}

.word-rotator .word {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transform: translateY(100%);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    color: var(--accent-blue);
}

.word-rotator .word.active {
    opacity: 1;
    transform: translateY(0);
}

.word-rotator .word.out {
    opacity: 0;
    transform: translateY(-100%);
}

/* Abstract CSS Orb for Hero */
.glass-orb {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(123, 44, 191, 0.4), rgba(67, 97, 238, 0.1) 60%, transparent 80%);
    box-shadow: inset 0 0 50px rgba(255, 255, 255, 0.1), 0 0 100px rgba(123, 44, 191, 0.2);
    backdrop-filter: blur(10px);
    animation: float 8s ease-in-out infinite;
}

@keyframes float {

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

    50% {
        transform: translateY(-30px) scale(1.05);
    }
}

/* Section Common */
section {
    padding: 8rem 0;
}

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

/* Trust Badges */
.badges-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 3rem;
}

.badge-item {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--glass-border);
    transition: color var(--transition-fast);
}

.badge-item:hover {
    color: var(--text-secondary);
}

/* Impact Stats */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-item {
    padding: 2rem;
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.02) 0%, rgba(255, 255, 255, 0) 100%);
}

.stat-number-wrapper {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 0.5rem;
}

.stat-number {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1;
    margin: 0;
}

.stat-suffix {
    font-size: 3rem;
    font-weight: 700;
    font-family: var(--font-heading);
}

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

.service-card .icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Process Timeline */
.process-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    position: relative;
}

/* Desktop Line connector */
@media(min-width: 1024px) {
    .process-timeline::before {
        content: '';
        position: absolute;
        top: 2rem;
        left: 2rem;
        right: 2rem;
        height: 2px;
        background: var(--glass-border);
        z-index: 0;
    }
}

.process-step {
    position: relative;
    z-index: 1;
    background: var(--bg-primary);
    /* cover the line */
    padding: 1rem;
}

.step-number {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--accent-violet);
    margin-bottom: 1.5rem;
    box-shadow: 0 0 0 10px var(--bg-primary);
}

.process-step h3 {
    margin-bottom: 0.5rem;
}

/* Work / Portfolio */
.work-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
}

.work-card {
    border-radius: 24px;
    overflow: hidden;
    cursor: pointer;
    group: work;
    /* logical group */
}

.work-image {
    width: 100%;
    aspect-ratio: 16/10;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    transition: transform var(--transition-slow), border-color var(--transition-fast);
    position: relative;
    overflow: hidden;
}

/* Placeholder gradients simulating AI imagery */
.placeholder-img-1 {
    background: linear-gradient(45deg, #1a1a2e, #16213e, #0f3460);
}

.placeholder-img-2 {
    background: linear-gradient(135deg, #2b1055, #7597de);
}

.work-card:hover .work-image {
    transform: scale(1.02);
    border-color: rgba(255, 255, 255, 0.2);
}

.work-info {
    padding: 1.5rem 0.5rem;
}

.work-info h3 {
    margin-bottom: 0.25rem;
}

.work-info p {
    font-size: 0.95rem;
}

/* Tech Stack Marquee */
.marquee-container {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
}

.marquee-container::before,
.marquee-container::after {
    content: '';
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 2;
}

.marquee-container::before {
    left: 0;
    background: linear-gradient(to right, var(--bg-primary) 0%, transparent 100%);
}

.marquee-container::after {
    right: 0;
    background: linear-gradient(to left, var(--bg-primary) 0%, transparent 100%);
}

.marquee-content {
    display: inline-block;
    animation: scroll-marquee 25s linear infinite;
}

.marquee-content span {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 800;
    color: var(--glass-border);
    margin: 0 2rem;
    display: inline-block;
    vertical-align: middle;
}

.marquee-content span.dot {
    font-size: 2rem;
    color: var(--accent-violet);
    opacity: 0.5;
}

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

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

/* Team Section */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    max-width: 800px;
    margin: 0 auto;
}

/* Pricing */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    align-items: center;
}

.pricing-card h3 {
    margin-bottom: 0.5rem;
}

.pricing-card .price {
    font-size: 2.5rem;
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 2rem;
}

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
    text-align: left;
}

.pricing-features li {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
}

.pricing-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-violet);
    font-weight: bold;
}

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

.testimonial-card {
    position: relative;
    padding: 3rem 2.5rem;
}

.quote-icon {
    font-family: var(--font-heading);
    font-size: 4rem;
    line-height: 1;
    color: var(--accent-violet);
    opacity: 0.5;
    position: absolute;
    top: 1.5rem;
    left: 2rem;
}

.testimonial-text {
    font-size: 1.125rem;
    color: var(--text-primary);
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.client-info h4 {
    margin-bottom: 0.25rem;
    color: var(--accent-blue);
}

.client-info p {
    font-size: 0.875rem;
}

/* FAQ */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.faq-item {
    padding: 1.5rem 2rem;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.faq-item.active {
    border-color: rgba(123, 44, 191, 0.4);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

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

.faq-question h3 {
    margin-bottom: 0;
    font-size: 1.125rem;
}

.faq-toggle {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--accent-violet);
    transition: transform var(--transition-fast);
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-slow);
}

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

.faq-answer p {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--glass-border);
}

/* Contact */
.contact-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 4rem 3rem;
}

.contact-container h2 {
    margin-bottom: 1rem;
}

.contact-container p {
    margin-bottom: 3rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 1.25rem 1.5rem;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--accent-violet);
    box-shadow: 0 0 0 4px rgba(123, 44, 191, 0.1);
}

.submit-btn {
    width: 100%;
    margin-top: 1rem;
}

/* Footer */
.site-footer {
    border-top: 1px solid var(--glass-border);
    padding: 6rem 5% 2rem;
    margin-top: 4rem;
    background: linear-gradient(180deg, rgba(5, 5, 5, 0) 0%, rgba(123, 44, 191, 0.05) 100%);
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-brand {
    max-width: 300px;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.footer-logo span {
    color: var(--accent-violet);
}

.footer-brand p {
    font-size: 0.95rem;
    margin-bottom: 2rem;
}

.footer-socials {
    display: flex;
    gap: 1.5rem;
}

.footer-socials a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color var(--transition-fast);
}

.footer-socials a:hover {
    color: var(--accent-blue);
}

.footer-links-wrapper {
    display: flex;
    gap: 5rem;
    flex-wrap: wrap;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-col h4 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.footer-col a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color var(--transition-fast);
}

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

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom p {
    font-size: 0.875rem;
}

.footer-legal {
    display: flex;
    gap: 2rem;
}

.footer-legal a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color var(--transition-fast);
}

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

/* ==========================================================================
   Animations & Interactions
   ========================================================================== */

/* Scroll Reveal Classes */
.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.scroll-reveal.active {
    opacity: 1;
    transform: translateY(0);
}

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

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

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

/* ==========================================================================
   Responsive Design
   ========================================================================== */
@media (max-width: 1024px) {
    .hero-visual {
        display: none;
    }

    .hero-content {
        max-width: 100%;
        text-align: center;
        margin: 0 auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero {
        padding-top: 120px;
        align-items: flex-start;
    }

    .process-timeline::before {
        display: none;
    }

    .footer-content {
        gap: 3rem;
    }

    .footer-links-wrapper {
        gap: 3rem;
    }

    .word-rotator {
        width: 250px;
    }
}

@media (max-width: 768px) {

    /* Typography & Spacing */
    section {
        padding: 5rem 0;
    }

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .word-rotator {
        width: 200px;
        text-align: center;
    }

    /* Navigation - Hamburger Menu */
    .hamburger {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(5, 5, 5, 0.95);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: 0.3s ease-in-out;
    }

    .nav-links.active {
        right: 0;
    }

    .hamburger.active span:nth-child(1) {
        transform: translateY(11px) rotate(45deg);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: translateY(-11px) rotate(-45deg);
    }

    /* Grids */
    .work-grid,
    .pricing-grid,
    .services-grid,
    .stats-grid,
    .team-grid {
        grid-template-columns: 1fr;
    }

    /* Stats */
    .stat-number {
        font-size: 3rem;
    }

    .stat-suffix {
        font-size: 2.5rem;
    }

    /* Badges */
    .badges-container {
        gap: 1.5rem;
    }

    .badge-item {
        font-size: 1.25rem;
    }

    /* Pricing */
    .pricing-card.delay-1 {
        transform: none !important;
    }

    /* Forms */
    .contact-container {
        padding: 3rem 1.5rem;
    }

    /* Marquee */
    .marquee-content span {
        font-size: 2.5rem;
        margin: 0 1rem;
    }

    /* Footer */
    .site-footer {
        padding: 4rem 5% 2rem;
    }

    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }

    .footer-brand {
        max-width: 100%;
        text-align: center;
    }

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

    .footer-links-wrapper {
        flex-direction: column;
        gap: 2rem;
        width: 100%;
        text-align: center;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }

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

@media (max-width: 480px) {
    h1 {
        font-size: 2.25rem;
    }

    .word-rotator {
        width: 170px;
    }

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

    .btn {
        width: 100%;
    }

    .glass-card {
        padding: 1.5rem;
    }
}

/* Custom Cursor */
@media (min-width: 1024px) {

    body,
    a,
    button,
    .magnetic,
    .faq-item {
        cursor: none;
    }

    .custom-cursor {
        width: 8px;
        height: 8px;
        background-color: var(--text-primary);
        border-radius: 50%;
        position: fixed;
        top: 0;
        left: 0;
        pointer-events: none;
        z-index: 9999;
        transform: translate(-50%, -50%);
        transition: width 0.2s, height 0.2s, background-color 0.2s;
    }

    .custom-cursor-follower {
        width: 40px;
        height: 40px;
        border: 1px solid rgba(123, 44, 191, 0.5);
        border-radius: 50%;
        position: fixed;
        top: 0;
        left: 0;
        pointer-events: none;
        z-index: 9998;
        transform: translate(-50%, -50%);
        transition: width 0.3s, height 0.3s, border-color 0.3s;
    }

    .custom-cursor.hover {
        width: 0;
        height: 0;
    }

    .custom-cursor-follower.hover {
        width: 60px;
        height: 60px;
        background-color: rgba(123, 44, 191, 0.1);
        border-color: var(--accent-blue);
        backdrop-filter: blur(2px);
    }
}