:root {
    --primary-bg: #0B0B0F;
    --secondary-bg: #16161D;
    --primary-text: #F5F5F7;
    --secondary-text: #9CA3AF;
    --accent-color: #8B5CF6;
    --accent-hover: #A78BFA;
    --transition-speed: 0.3s;
}

html {
    scroll-behavior: smooth;
}

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

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

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

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 24px 0;
    transition: background-color var(--transition-speed);
    background-color: rgba(11, 11, 15, 0.95);
    backdrop-filter: blur(10px);
}

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

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-text);
    text-decoration: none;
    transition: color var(--transition-speed);
}

.logo:hover {
    color: var(--accent-hover);
    text-shadow: 0 0 8px rgba(139, 92, 246, 0.3);
}

.menu-wrapper {
    position: relative;
}

.menu-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    border-radius: 4px;
    transition: all var(--transition-speed);
    display: flex;
    flex-direction: column;
    gap: 4px;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    position: relative;
}

.menu-dot {
    width: 4px;
    height: 4px;
    background-color: var(--primary-text);
    border-radius: 50%;
    transition: all var(--transition-speed);
}

.menu-toggle:hover .menu-dot {
    background-color: var(--accent-hover);
    transform: scale(1.2);
}

.menu-toggle:hover {
    background-color: rgba(139, 92, 246, 0.1);
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 5px);
    right: 0;
    background-color: var(--secondary-bg);
    border-radius: 8px;
    padding: 12px 0;
    min-width: 200px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all var(--transition-speed);
    z-index: 1001;
}

.dropdown-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: 12px 24px;
    color: var(--primary-text);
    text-decoration: none;
    transition: all var(--transition-speed);
    font-size: 0.95rem;
}

.dropdown-menu a:hover {
    background-color: rgba(139, 92, 246, 0.1);
    color: var(--accent-hover);
    padding-left: 30px;
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 20px 80px;
}

.hero-content h1 {
    font-size: 5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    background: linear-gradient(90deg, var(--primary-text) 0%, rgba(245, 245, 247, 0.9) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-title {
    position: relative;
    display: inline-block;
    z-index: 1;
}

.hero-title::before {
    content: attr(data-text);
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    transform: scaleY(-1) translateY(8px);
    transform-origin: top;
    z-index: -1;
    color: rgba(139, 92, 246, 0.26);
    opacity: 0.12;
    filter: blur(1.3px);
    -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.45), transparent 68%);
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.45), transparent 68%);
    pointer-events: none;
    animation: subtle-purple-reflection 16s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

.hero-title::after {
    content: attr(data-text);
    position: absolute;
    inset: 0;
    color: rgba(167, 139, 250, 0.16);
    opacity: 0.08;
    filter: blur(0.35px);
    z-index: 2;
    pointer-events: none;
    mix-blend-mode: normal;
    text-shadow:
        0 0 6px rgba(139, 92, 246, 0.12);
    animation: subtle-purple-glow 17s cubic-bezier(0.4, 0, 0.2, 1) infinite;
    animation-delay: -2.8s;
}

.hero-content p {
    font-size: 1.4rem;
    color: var(--secondary-text);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.5;
}

.hero-scroll-btn {
    margin-top: 24px;
    font-size: 0.9rem;
    padding: 10px 16px;
    color: var(--primary-text);
    border-color: rgba(255, 255, 255, 0.28);
    background: transparent;
}

.hero-scroll-btn:hover {
    color: var(--primary-text);
    background: transparent;
    border-color: rgba(255, 255, 255, 0.46);
}

.about {
    padding: 100px 20px;
    background-color: var(--secondary-bg);
    border-radius: 24px 24px 0 0;
    margin-top: -24px;
}

.about-content {
    max-width: 700px;
    margin: 0 auto;
}

.about-content p {
    font-size: 1.2rem;
    color: var(--secondary-text);
    text-align: center;
    line-height: 1.7;
}

.solutions {
    padding: 120px 20px;
    position: relative;
    overflow: hidden;
}

.solutions::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg,
        transparent 0%,
        var(--accent-color) 50%,
        transparent 100%);
    opacity: 0.3;
}

.solutions-title,
.section-title {
    text-align: center;
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--secondary-text);
    margin-bottom: 60px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    position: relative;
}

.solutions-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: var(--accent-color);
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 40px;
    max-width: 1240px;
    margin: 0 auto;
}

.solution-card {
    background-color: var(--secondary-bg);
    border-radius: 20px;
    padding: 50px 40px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.1);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.solution-card:hover {
    transform: translateY(-10px);
    border-color: rgba(139, 92, 246, 0.2);
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(139, 92, 246, 0.1);
}

.solution-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(
        circle at center,
        rgba(139, 92, 246, 0.1) 0%,
        rgba(139, 92, 246, 0.05) 25%,
        transparent 70%
    );
    opacity: 0;
    transition: opacity 0.5s;
    z-index: 0;
}

.solution-card:hover::before {
    opacity: 1;
    animation: pulse-glow 4s infinite;
}

.solution-header {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.solution-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.2);
    transition: all 0.4s;
}

.solution-card:hover .solution-icon {
    background: rgba(139, 92, 246, 0.15);
    border-color: rgba(139, 92, 246, 0.3);
    transform: scale(1.05);
}

.solution-icon svg {
    width: 28px;
    height: 28px;
    fill: var(--accent-color);
}

.solution-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-text);
    margin-bottom: 5px;
}

.solution-subtitle {
    font-size: 1rem;
    color: var(--accent-color);
    font-weight: 500;
    letter-spacing: 0.05em;
}

.solution-description {
    color: var(--secondary-text);
    line-height: 1.7;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
    flex-grow: 1;
}

.solution-features {
    list-style: none;
    position: relative;
    z-index: 1;
}

.solution-features li {
    color: var(--primary-text);
    margin-bottom: 12px;
    padding-left: 28px;
    position: relative;
    font-size: 0.95rem;
}

.solution-features li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 600;
    transition: transform 0.3s;
}

.solution-card:hover .solution-features li::before {
    transform: translateX(3px);
}

.solution-cta {
    margin-top: 18px;
    width: fit-content;
    position: relative;
    z-index: 1;
}

@keyframes pulse-glow {
    0%,
    100% {
        opacity: 0.7;
    }

    50% {
        opacity: 1;
    }
}

.testimonials {
    padding: 120px 0;
    overflow: hidden;
    position: relative;
}

.carousel-wrapper {
    position: relative;
    padding: 20px 0;
    margin: 0 auto;
    max-width: 100%;
    overflow: hidden;
}

.carousel-wrapper::before,
.carousel-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 150px;
    z-index: 3;
    pointer-events: none;
}

.carousel-wrapper::before {
    left: 0;
    background: linear-gradient(to right,
            var(--primary-bg) 0%,
            rgba(11, 11, 15, 0.98) 20%,
            rgba(11, 11, 15, 0.8) 40%,
            rgba(11, 11, 15, 0.4) 60%,
            transparent 100%);
}

.carousel-wrapper::after {
    right: 0;
    background: linear-gradient(to left,
            var(--primary-bg) 0%,
            rgba(11, 11, 15, 0.98) 20%,
            rgba(11, 11, 15, 0.8) 40%,
            rgba(11, 11, 15, 0.4) 60%,
            transparent 100%);
}

.carousel-container {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.carousel-track {
    display: flex;
    gap: 30px;
    width: max-content;
    animation: carousel-scroll-desktop 100s linear infinite;
    padding: 0 20px;
}

.carousel-track.paused {
    animation-play-state: paused;
}

.testimonial-card {
    background-color: var(--secondary-bg);
    border-radius: 16px;
    padding: 35px 30px;
    width: 320px;
    flex-shrink: 0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg,
            transparent 0%,
            var(--accent-color) 50%,
            transparent 100%);
    opacity: 0;
    transition: opacity 0.4s;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    border-color: rgba(139, 92, 246, 0.3);
    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(139, 92, 246, 0.1);
}

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

.testimonial-text {
    font-size: 1rem;
    font-style: italic;
    color: var(--primary-text);
    margin-bottom: 25px;
    line-height: 1.6;
    position: relative;
    padding-left: 15px;
}

.testimonial-text::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -5px;
    font-size: 1.5rem;
    color: var(--accent-color);
    font-family: Georgia, serif;
}

.testimonial-author-info {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 20px;
}

.testimonial-author {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-text);
    margin-bottom: 5px;
}

.testimonial-company {
    font-size: 0.9rem;
    color: var(--accent-color);
    margin-bottom: 5px;
}

.testimonial-position {
    font-size: 0.85rem;
    color: var(--secondary-text);
}

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

    100% {
        transform: translateX(calc(-350px * 2 - 30px * 2));
    }
}

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

    100% {
        transform: translateX(calc(-350px * 4 - 30px * 4));
    }
}

footer {
    padding: 80px 20px 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
}

.footer-text {
    font-size: 0.9rem;
    color: var(--secondary-text);
    margin-bottom: 10px;
}

.footer-powered {
    font-size: 0.8rem;
    color: var(--secondary-text);
    opacity: 0.7;
}

.page-wrap {
    min-height: 100vh;
    padding: 140px 20px 80px;
}

.content-card {
    max-width: 900px;
    margin: 0 auto;
    background: var(--secondary-bg);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 40px 32px;
}

.content-card h1 {
    font-size: 2.2rem;
    margin-bottom: 18px;
}

.content-card h2 {
    font-size: 1.2rem;
    margin-top: 22px;
    margin-bottom: 10px;
    color: var(--primary-text);
}

.content-card p,
.content-card li {
    color: var(--secondary-text);
}

.content-card ul {
    padding-left: 20px;
}

.content-back-home {
    margin-top: 28px;
}

.xrchat-card h3 {
    font-size: 1.05rem;
    margin-bottom: 10px;
    color: var(--primary-text);
}

.xrchat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 16px;
    margin: 18px 0 6px;
}

.xrchat-block {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 14px;
    padding: 16px;
}

.xrchat-block ul {
    padding-left: 18px;
}

.conversion-chart {
    margin-top: 14px;
    padding: 18px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
}

.chart-row {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 12px;
    align-items: center;
    margin-bottom: 12px;
}

.chart-label {
    color: var(--primary-text);
    font-size: 0.95rem;
}

.chart-bar-wrap {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 999px;
    height: 30px;
    overflow: hidden;
}

.chart-bar {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 10px;
    color: #fff;
    font-size: 0.82rem;
    font-weight: 600;
}

.chart-bar-base {
    background: linear-gradient(90deg, rgba(156, 163, 175, 0.7), rgba(156, 163, 175, 0.95));
}

.chart-bar-accent {
    background: linear-gradient(90deg, rgba(139, 92, 246, 0.78), rgba(167, 139, 250, 0.95));
}

.chart-note {
    margin-top: 8px;
    color: var(--secondary-text);
    font-size: 0.82rem;
}

.xrchat-actions {
    display: flex;
    justify-content: flex-start;
}

.xrbot-flow {
    margin-top: 14px;
    display: grid;
    gap: 12px;
}

.xrbot-step {
    display: grid;
    grid-template-columns: 34px 1fr;
    gap: 12px;
    align-items: start;
    padding: 14px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.02);
}

.xrbot-step-number {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--primary-text);
    background: rgba(139, 92, 246, 0.22);
    border: 1px solid rgba(167, 139, 250, 0.52);
}

.xrbot-step h3 {
    font-size: 1rem;
    margin-bottom: 4px;
}

.xrbot-step p {
    margin: 0;
}

.xrai-showcase {
    margin-top: 14px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 14px;
}

.xrai-media-card {
    margin: 0;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.02);
    transition: transform var(--transition-speed), border-color var(--transition-speed), box-shadow var(--transition-speed);
}

.xrai-media-card:hover {
    transform: translateY(-4px);
    border-color: rgba(167, 139, 250, 0.35);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.24);
}

.xrai-media-card img {
    width: 100%;
    display: block;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.xrai-media-card figcaption {
    padding: 10px 12px;
    color: var(--secondary-text);
    font-size: 0.88rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.xrai-examples {
    margin-top: 14px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.02);
    transition: border-color var(--transition-speed), transform var(--transition-speed);
}

.xrai-examples:hover {
    border-color: rgba(167, 139, 250, 0.32);
    transform: translateY(-2px);
}

.xrai-examples h3 {
    margin-bottom: 8px;
}

.xrai-examples ul {
    padding-left: 18px;
}

.bio-card {
    max-width: 860px;
}

.bio-avatar {
    width: 132px;
    height: 132px;
    margin: 0 auto 18px;
    border-radius: 50%;
    display: block;
    background: radial-gradient(circle at 30% 30%, rgba(167, 139, 250, 0.36), rgba(139, 92, 246, 0.16));
    border: 1px solid rgba(167, 139, 250, 0.45);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.24);
    overflow: hidden;
}

.bio-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 24%;
    display: block;
}

.bio-intro {
    text-align: center;
    font-size: 1.05rem;
    margin-bottom: 24px;
}

.bio-links-stack {
    display: grid;
    gap: 14px;
}

.bio-link-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.02);
}

.bio-link-card h2 {
    margin: 0 0 6px;
    font-size: 1.1rem;
}

.bio-link-card p {
    margin: 0;
    color: var(--secondary-text);
}

@media (max-width: 640px) {
    .bio-link-card {
        flex-direction: column;
        align-items: flex-start;
    }
}

.error-center {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 20px;
}

.error-card {
    text-align: center;
    background: var(--secondary-bg);
    border-radius: 18px;
    padding: 40px 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 560px;
}

.error-card h1 {
    font-size: 2.2rem;
    margin-bottom: 10px;
}

.error-card p {
    color: var(--secondary-text);
    margin-bottom: 22px;
}

.btn-link {
    display: inline-block;
    text-decoration: none;
    color: var(--primary-text);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    padding: 12px 18px;
    transition: all var(--transition-speed);
}

.btn-link:hover {
    color: var(--accent-hover);
    border-color: rgba(167, 139, 250, 0.5);
}


@media (min-width: 1025px) {
    .solution-card {
        padding: 40px 30px;
    }

    .solution-header {
        margin-bottom: 22px;
    }

    .solution-icon {
        width: 50px;
        height: 50px;
        margin-right: 14px;
        border-radius: 14px;
    }

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

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

    .solution-subtitle {
        font-size: 0.9rem;
    }

    .solution-description {
        font-size: 0.95rem;
        margin-bottom: 22px;
        min-height: 92px;
        line-height: 1.6;
    }

    .solution-features li {
        font-size: 0.9rem;
        margin-bottom: 10px;
        padding-left: 24px;
        line-height: 1.45;
    }

    .solution-cta {
        font-size: 0.9rem;
        padding: 10px 14px;
        margin-top: 12px;
    }

    .carousel-wrapper {
        max-width: 1400px;
    }

    .carousel-track {
        animation-name: carousel-scroll-desktop;
        animation-duration: 80s;
    }

    .carousel-wrapper::before,
    .carousel-wrapper::after {
        width: 200px;
    }

    .dropdown-menu {
        min-width: 220px;
    }
}

@media (max-width: 1024px) and (min-width: 769px) {
    .solutions-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
    }

    .carousel-wrapper::before,
    .carousel-wrapper::after {
        width: 100px;
    }

    .carousel-track {
        animation: carousel-scroll-mobile 90s linear infinite;
    }

    .testimonial-card {
        width: 300px;
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 4rem;
    }

    .hero-content p {
        font-size: 1.2rem;
    }

    .about-content p {
        font-size: 1.1rem;
    }

    .solutions-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .solution-card {
        padding: 40px 30px;
    }

    .solution-icon {
        width: 50px;
        height: 50px;
        margin-right: 15px;
    }

    .solution-title {
        font-size: 1.6rem;
    }

    .testimonial-card {
        width: 280px;
        padding: 25px 20px;
    }

    .carousel-wrapper::before,
    .carousel-wrapper::after {
        width: 60px;
    }

    .carousel-wrapper::before {
        background: linear-gradient(to right,
                var(--primary-bg) 0%,
                rgba(11, 11, 15, 0.9) 40%,
                rgba(11, 11, 15, 0.5) 70%,
                transparent 100%);
    }

    .carousel-wrapper::after {
        background: linear-gradient(to left,
                var(--primary-bg) 0%,
                rgba(11, 11, 15, 0.9) 40%,
                rgba(11, 11, 15, 0.5) 70%,
                transparent 100%);
    }

    .carousel-track {
        animation: carousel-scroll-mobile 100s linear infinite;
    }

    .dropdown-menu {
        right: -10px;
    }

    .content-card {
        padding: 30px 22px;
    }

}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 3.2rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

    .about {
        padding: 80px 20px;
    }

    .solutions {
        padding: 80px 20px;
    }

    .testimonials {
        padding: 80px 0;
    }

    .solution-card {
        padding: 35px 25px;
    }

    .solution-title {
        font-size: 1.4rem;
    }

    .testimonial-card {
        width: 260px;
    }

    .carousel-wrapper::before,
    .carousel-wrapper::after {
        width: 40px;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

@keyframes subtle-purple-reflection {
    0%,
    26%,
    61%,
    82%,
    100% {
        opacity: 0.1;
    }

    34% {
        opacity: 0.18;
    }

    68% {
        opacity: 0.2;
    }

    74% {
        opacity: 0.2;
    }
}

@keyframes subtle-purple-glow {
    0%,
    26%,
    61%,
    82%,
    100% {
        opacity: 0.06;
    }

    34% {
        opacity: 0.1;
    }

    68% {
        opacity: 0.11;
    }

    74% {
        opacity: 0.11;
    }
}

.fade-in-up {
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

.delay-3 {
    animation-delay: 0.6s;
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--primary-bg);
}

::-webkit-scrollbar-thumb {
    background: var(--secondary-bg);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-color);
}
