/**
 * LBB Ecosystem - Ultra Premium Dark Design System
 * @author Claude AI
 * @version 3.0 - Enhanced Edition
 */

/* =========================================
   DESIGN TOKENS
   ========================================= */
:root {
    /* Colors - Enhanced Palette */
    --bg: #060606;
    --bg-secondary: #0a0a0a;
    --bg-tertiary: #0f0f0f;
    --text: #F2F2F2;
    --text-secondary: #AAAAAA;
    --text-muted: #666666;
    --accent: #D4AF37;
    --accent-light: #e5c76b;
    --accent-dark: #b8972f;
    --accent-glow: rgba(212, 175, 55, 0.4);
    --accent-subtle: rgba(212, 175, 55, 0.08);
    --accent-vivid: #f5d142;
    --secondary-accent: #7B68EE;
    --secondary-glow: rgba(123, 104, 238, 0.3);
    --border: rgba(255, 255, 255, 0.08);
    --border-hover: rgba(255, 255, 255, 0.15);
    --glass: rgba(6, 6, 6, 0.7);
    --glass-light: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.1);

    /* Typography */
    --font-display: 'Syne', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-body: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    /* Spacing */
    --space-xs: 8px;
    --space-sm: 16px;
    --space-md: 32px;
    --space-lg: 64px;
    --space-xl: 128px;
    --space-2xl: 200px;

    /* Animation */
    --ease: cubic-bezier(0.19, 1, 0.22, 1);
    --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-elastic: cubic-bezier(0.68, -0.55, 0.265, 1.55);

    /* Layout */
    --max-width: 1600px;
    --header-height: 90px;

    /* Shadows - Enhanced */
    --shadow-sm: 0 4px 20px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 10px 40px rgba(0, 0, 0, 0.5);
    --shadow-lg: 0 30px 100px rgba(0, 0, 0, 0.9);
    --shadow-glow: 0 0 60px var(--accent-glow);
    --shadow-glow-soft: 0 0 30px rgba(212, 175, 55, 0.2);
}

/* =========================================
   BASE RESET
   ========================================= */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
    font-size: 16px;
}

body {
    background-color: var(--bg);
    color: var(--text);
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    width: 100%;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

::selection {
    background: var(--accent);
    color: #000;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

/* =========================================
   ACCESSIBILITY
   ========================================= */
.skip-link {
    position: absolute;
    top: -100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: #000;
    padding: var(--space-sm) var(--space-md);
    font-weight: 600;
    z-index: 10000;
    border-radius: 0 0 8px 8px;
    transition: top 0.3s var(--ease);
}

.skip-link:focus {
    top: 0;
}

/* Focus styles for keyboard navigation */
:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 4px;
}

/* =========================================
   BACKGROUND EFFECTS - ENHANCED
   ========================================= */
.bg-gradient {
    position: fixed;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background:
        radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(123, 104, 238, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 50% 20%, rgba(212, 175, 55, 0.06) 0%, transparent 40%);
    /* Animation disabled for performance */
    z-index: 0;
    pointer-events: none;
}

@keyframes gradientShift {

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

    25% {
        transform: translate(3%, -3%) rotate(90deg) scale(1.05);
    }

    50% {
        transform: translate(-2%, 4%) rotate(180deg) scale(1);
    }

    75% {
        transform: translate(4%, -2%) rotate(270deg) scale(1.05);
    }
}

/* Aurora Effect */
.aurora {
    position: fixed;
    top: -100%;
    left: -50%;
    width: 200%;
    height: 300%;
    background:
        linear-gradient(135deg,
            transparent 0%,
            rgba(212, 175, 55, 0.03) 25%,
            transparent 50%,
            rgba(123, 104, 238, 0.02) 75%,
            transparent 100%);
    animation: auroraFlow 20s ease-in-out infinite;
    z-index: 0;
    pointer-events: none;
    opacity: 0.8;
}

@keyframes auroraFlow {

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

    50% {
        transform: translateY(10%) rotate(5deg);
    }
}

.grid-bg {
    position: fixed;
    inset: -25%;
    z-index: 1;
    pointer-events: none;
    opacity: 0.75;
    --mx: 0px;
    --my: 0px;
    --sy: 0px;
}

.grid-bg::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        repeating-linear-gradient(90deg, rgba(212, 175, 55, 0.00) 0 28px, rgba(212, 175, 55, 0.055) 28px 29px),
        repeating-linear-gradient(0deg, rgba(212, 175, 55, 0.00) 0 28px, rgba(212, 175, 55, 0.045) 28px 29px);
    mask-image: radial-gradient(60% 55% at 50% 40%, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.65) 45%, rgba(0, 0, 0, 0) 72%);
    -webkit-mask-image: radial-gradient(60% 55% at 50% 40%, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.65) 45%, rgba(0, 0, 0, 0) 72%);
    transform-origin: 50% 40%;
    transform: perspective(900px) rotateX(64deg) rotateZ(18deg) scale(1.15);
}

.grid-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(35% 35% at 25% 30%, rgba(212, 175, 55, 0.14) 0%, rgba(212, 175, 55, 0) 60%),
        radial-gradient(38% 38% at 80% 75%, rgba(123, 104, 238, 0.09) 0%, rgba(123, 104, 238, 0) 62%),
        radial-gradient(32% 32% at 55% 55%, rgba(245, 236, 205, 0.06) 0%, rgba(245, 236, 205, 0) 62%);
    mix-blend-mode: screen;
    opacity: 0.7;
    mask-image: radial-gradient(60% 55% at 50% 40%, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.55) 55%, rgba(0, 0, 0, 0) 78%);
    -webkit-mask-image: radial-gradient(60% 55% at 50% 40%, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.55) 55%, rgba(0, 0, 0, 0) 78%);
    /* Animation disabled for performance */
}

@keyframes gridDrift {
    0% {
        transform: translate3d(-1.5%, -1.0%, 0) scale(1.08);
        opacity: 0.65;
    }

    50% {
        transform: translate3d(1.2%, 0.6%, 0) scale(1.10);
        opacity: 0.78;
    }

    100% {
        transform: translate3d(-0.6%, 1.4%, 0) scale(1.06);
        opacity: 0.70;
    }
}

/* =========================================
   FLOATING PARTICLES
   ========================================= */
.particles-container {
    position: fixed;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 2;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--accent);
    border-radius: 50%;
    opacity: 0;
    animation: particleFloat 15s ease-in-out infinite;
    box-shadow: 0 0 10px var(--accent-glow), 0 0 20px var(--accent-glow);
}

.particle:nth-child(1) {
    left: 10%;
    animation-delay: 0s;
    animation-duration: 18s;
}

.particle:nth-child(2) {
    left: 20%;
    animation-delay: 2s;
    animation-duration: 22s;
}

.particle:nth-child(3) {
    left: 30%;
    animation-delay: 4s;
    animation-duration: 16s;
}

.particle:nth-child(4) {
    left: 40%;
    animation-delay: 1s;
    animation-duration: 20s;
}

.particle:nth-child(5) {
    left: 50%;
    animation-delay: 3s;
    animation-duration: 17s;
}

.particle:nth-child(6) {
    left: 60%;
    animation-delay: 5s;
    animation-duration: 21s;
}

.particle:nth-child(7) {
    left: 70%;
    animation-delay: 2.5s;
    animation-duration: 19s;
}

.particle:nth-child(8) {
    left: 80%;
    animation-delay: 4.5s;
    animation-duration: 15s;
}

.particle:nth-child(9) {
    left: 90%;
    animation-delay: 1.5s;
    animation-duration: 23s;
}

.particle:nth-child(10) {
    left: 15%;
    animation-delay: 3.5s;
    animation-duration: 18s;
}

.particle:nth-child(11) {
    left: 25%;
    animation-delay: 0.5s;
    animation-duration: 20s;
}

.particle:nth-child(12) {
    left: 35%;
    animation-delay: 2.5s;
    animation-duration: 16s;
}

.particle:nth-child(13) {
    left: 45%;
    animation-delay: 4s;
    animation-duration: 22s;
}

.particle:nth-child(14) {
    left: 55%;
    animation-delay: 1s;
    animation-duration: 19s;
}

.particle:nth-child(15) {
    left: 65%;
    animation-delay: 3s;
    animation-duration: 17s;
}

.particle:nth-child(16) {
    left: 75%;
    animation-delay: 5s;
    animation-duration: 21s;
}

.particle:nth-child(17) {
    left: 85%;
    animation-delay: 0s;
    animation-duration: 18s;
}

.particle:nth-child(18) {
    left: 95%;
    animation-delay: 2s;
    animation-duration: 20s;
}

.particle:nth-child(19) {
    left: 5%;
    animation-delay: 4s;
    animation-duration: 16s;
}

.particle:nth-child(20) {
    left: 50%;
    animation-delay: 1.5s;
    animation-duration: 22s;
}

.particle:nth-child(odd) {
    background: var(--secondary-accent);
    box-shadow: 0 0 10px var(--secondary-glow), 0 0 20px var(--secondary-glow);
    width: 3px;
    height: 3px;
}

@keyframes particleFloat {
    0% {
        opacity: 0;
        transform: translateY(100vh) scale(0);
    }

    10% {
        opacity: 0.8;
        transform: translateY(80vh) scale(1);
    }

    90% {
        opacity: 0.6;
        transform: translateY(-10vh) scale(0.8);
    }

    100% {
        opacity: 0;
        transform: translateY(-20vh) scale(0);
    }
}

.noise {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,%3Csvg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"%3E%3Cfilter id="noise"%3E%3CfeTurbulence type="fractalNoise" baseFrequency="0.65" numOctaves="3" stitchTiles="stitch"/%3E%3C/filter%3E%3Crect width="100%25" height="100%25" filter="url(%23noise)" opacity="0.04"/%3E%3C/svg%3E');
    pointer-events: none;
    z-index: 3;
    mix-blend-mode: overlay;
}

/* =========================================
   CUSTOM CURSOR - ENHANCED
   ========================================= */
.cursor-follower {
    position: fixed;
    top: 0;
    left: 0;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(212, 175, 55, 0.5);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition:
        opacity 0.3s ease,
        width 0.4s var(--ease),
        height 0.4s var(--ease),
        border-color 0.4s var(--ease),
        background-color 0.4s var(--ease),
        mix-blend-mode 0.3s ease;
}

/* Dot removed for cleaner look */

.cursor-follower.ready {
    opacity: 1;
}

.cursor-follower.hover {
    width: 80px;
    height: 80px;
    background-color: rgba(212, 175, 55, 0.1);
    border-color: var(--accent);
    mix-blend-mode: difference;
}

.cursor-follower.click {
    transform: translate(-50%, -50%) scale(0.8);
}

/* =========================================
   SCROLL PROGRESS INDICATOR
   ========================================= */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-dark), var(--accent), var(--accent-light), var(--accent-vivid));
    z-index: 1001;
    transition: width 0.1s linear;
    box-shadow: 0 0 20px var(--accent-glow);
}

/* =========================================
   PRELOADER - ENHANCED
   ========================================= */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #000 0%, #0a0a0a 50%, #050505 100%);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 40px;
    transition: opacity 0.8s ease, visibility 0.8s;
}

.preloader::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
    animation: preloaderPulse 2s ease-in-out infinite;
    pointer-events: none;
}

@keyframes preloaderPulse {

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

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

.preloader-logo {
    font-family: var(--font-display);
    font-size: clamp(5rem, 12vw, 10rem);
    font-weight: 800;
    background: linear-gradient(135deg, #fff 0%, var(--accent) 50%, #fff 100%);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.05em;
    animation: shimmer 2s ease-in-out infinite;
    position: relative;
    z-index: 1;
    text-shadow: 0 0 60px var(--accent-glow);
}

@keyframes shimmer {

    0%,
    100% {
        background-position: 200% 0;
    }

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

.preloader-bar {
    width: 220px;
    height: 3px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.preloader-bar-fill {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, var(--accent-dark), var(--accent), var(--accent-light));
    border-radius: 3px;
    transition: width 0.1s linear;
    box-shadow: 0 0 20px var(--accent-glow);
}

.preloader.hide {
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
}

/* =========================================
   HEADER - ENHANCED GLASSMORPHISM
   ========================================= */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    max-width: 100vw;
    padding: var(--space-md) 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    background: linear-gradient(135deg, rgba(6, 6, 6, 0.7) 0%, rgba(15, 15, 15, 0.6) 100%);
    border-bottom: 1px solid var(--glass-border);
    transform: translateY(-100%);
    animation: slideDown 1s var(--ease) forwards 2s;
}

@keyframes slideDown {
    to {
        transform: translateY(0);
    }
}

.header.scrolled {
    background: linear-gradient(135deg, rgba(6, 6, 6, 0.95) 0%, rgba(10, 10, 10, 0.9) 100%);
    border-bottom-color: var(--border-hover);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.logo {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.2rem;
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, #fff 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: all 0.4s var(--ease);
    position: relative;
}

.logo::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--accent), transparent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s var(--ease);
}

.logo:hover {
    transform: scale(1.05);
}

.logo:hover::after {
    transform: scaleX(1);
}

.header-status {
    font-size: 0.75rem;
    text-transform: uppercase;
    color: var(--accent);
    letter-spacing: 2px;
    font-weight: 500;
    position: relative;
    padding-left: 20px;
}

.header-status::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
    box-shadow: 0 0 10px var(--accent-glow);
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: translateY(-50%) scale(1);
        box-shadow: 0 0 10px var(--accent-glow);
    }

    50% {
        opacity: 0.5;
        transform: translateY(-50%) scale(0.8);
        box-shadow: 0 0 20px var(--accent-glow);
    }
}

/* =========================================
   HERO SECTION - ENHANCED
   ========================================= */
.hero {
    min-height: 100vh;
    min-height: 100svh;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 100px 20px;
    perspective: 1200px;
    overflow: hidden;
    width: 100%;
}

.hero-image {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 45vw;
    height: 75vh;
    max-width: 800px;
    background: url('../assets/images/hero.jpg') center/cover;
    filter: grayscale(100%) brightness(0.5) contrast(1.2);
    opacity: 0;
    animation: imgReveal 1.8s var(--ease) forwards 1.2s;
    z-index: 1;
    box-shadow: var(--shadow-lg), inset 0 0 100px rgba(0, 0, 0, 0.5);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    border-radius: 4px;
}

.hero-image::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, var(--accent) 0%, transparent 50%, var(--secondary-accent) 100%);
    opacity: 0.3;
    z-index: -1;
    border-radius: 6px;
}

.hero-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at center, transparent 40%, rgba(212, 175, 55, 0.15) 100%),
        linear-gradient(180deg, transparent 0%, rgba(6, 6, 6, 0.5) 100%);
    mix-blend-mode: screen;
    border-radius: 4px;
}

@keyframes imgReveal {
    0% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.8) rotateY(-15deg);
        filter: grayscale(100%) brightness(0.2) contrast(1.2) blur(10px);
    }

    100% {
        opacity: 0.7;
        transform: translate(-50%, -50%) scale(1) rotateY(0);
        filter: grayscale(100%) brightness(0.5) contrast(1.2) blur(0);
    }
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 9vw, 10rem);
    font-weight: 800;
    text-transform: uppercase;
    line-height: 0.9;
    letter-spacing: -0.05em;
    z-index: 2;
    position: relative;
    transform-style: preserve-3d;
    max-width: 95vw;
    word-wrap: break-word;
    hyphens: auto;
}

.hero-title::before {
    content: attr(data-text);
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    background: linear-gradient(135deg, var(--accent) 0%, rgba(212, 175, 55, 0.3) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: blur(30px);
    opacity: 0.6;
    transform: translateZ(-50px);
    pointer-events: none;
}

.hero-line {
    display: block;
    opacity: 0;
    transform: translateY(100px) rotateX(-30deg);
    animation: lineReveal 1.2s var(--ease) forwards;
    transition: text-shadow 0.3s ease;
}

.hero-line:hover {
    text-shadow: 0 0 60px var(--accent-glow);
}

.hero-line:nth-child(1) {
    animation-delay: 1.5s;
}

.hero-line:nth-child(2) {
    animation-delay: 1.7s;
}

.hero-line:nth-child(3) {
    animation-delay: 1.9s;
}

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

.hero-subtitle {
    font-size: 0.9rem;
    letter-spacing: 4px;
    color: var(--accent);
    margin-top: 40px;
    text-transform: uppercase;
    font-weight: 500;
    opacity: 0;
    animation: fadeUp 1s ease forwards 2.3s;
    text-shadow: 0 0 30px var(--accent-glow);
    position: relative;
}

.hero-subtitle::before,
.hero-subtitle::after {
    content: '—';
    margin: 0 15px;
    opacity: 0.5;
}

.scroll-indicator {
    position: absolute;
    bottom: 50px;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: fit-content;
    opacity: 0;
    animation: fadeUp 1s ease forwards 2.5s;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.scroll-text {
    font-size: 0.65rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-muted);
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, transparent, var(--accent));
    animation: scrollPulse 2s ease infinite;
    position: relative;
}

.scroll-line::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--accent-glow);
    animation: scrollDot 2s ease infinite;
}

@keyframes scrollPulse {

    0%,
    100% {
        opacity: 0.3;
        transform: translateY(0);
    }

    50% {
        opacity: 1;
        transform: translateY(10px);
    }
}

@keyframes scrollDot {

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

    50% {
        transform: translateX(-50%) translateY(10px) scale(1.2);
    }
}

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

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

/* =========================================
   STATS SECTION - NEW
   ========================================= */
.stats {
    padding: 80px 10%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
}

.stat-card {
    text-align: center;
    padding: 40px 20px;
    background: linear-gradient(135deg, var(--glass) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.5s var(--ease);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    transform: scaleX(0);
    transition: transform 0.5s var(--ease);
}

.stat-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent);
    box-shadow: var(--shadow-glow-soft);
}

.stat-card:hover::before {
    transform: scaleX(1);
}

.stat-number {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 4vw, 4rem);
    font-weight: 800;
    background: linear-gradient(135deg, #fff 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* =========================================
   STORY SECTION
   ========================================= */
.story {
    padding: var(--space-2xl) 10% 150px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
}

.story-heading {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.1;
    font-weight: 700;
    color: #fff;
    text-wrap: balance;
}

.story-content {
    padding-top: 10px;
}

.story-paragraph {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 35px;
    position: relative;
    padding-left: 25px;
    transition: all 0.4s var(--ease);
}

.story-paragraph:hover {
    color: var(--text);
    transform: translateX(5px);
}

.story-paragraph::before {
    content: '';
    position: absolute;
    top: 0.8em;
    left: 0;
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--accent-glow);
    transition: all 0.4s var(--ease);
}

.story-paragraph:hover::before {
    transform: scale(1.5);
    box-shadow: 0 0 20px var(--accent-glow);
}

.accent-text {
    color: var(--accent);
    text-shadow: 0 0 30px var(--accent-glow);
    position: relative;
    display: inline-block;
    cursor: pointer;
    transition: all 0.3s var(--ease);
}

.accent-text:hover {
    text-shadow: 0 0 50px var(--accent-glow);
    transform: scale(1.05);
}

.accent-text::after {
    content: '';
    position: absolute;
    bottom: 0.05em;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--accent), var(--accent-light));
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.6s var(--ease);
}

.accent-text:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* =========================================
   TOOLTIP CARD
   ========================================= */
.tooltip-wrapper {
    position: relative;
    display: inline-block;
}

.tooltip-card {
    position: absolute;
    bottom: calc(100% + 15px);
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    width: 280px;
    padding: 20px;
    background: linear-gradient(135deg, rgba(15, 15, 15, 0.98) 0%, rgba(10, 10, 10, 0.98) 100%);
    border: 1px solid var(--border-hover);
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6), 0 0 40px rgba(212, 175, 55, 0.1);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s var(--ease);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 12px;
    pointer-events: none;
}

.tooltip-card::before {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 16px;
    height: 16px;
    background: rgba(15, 15, 15, 0.98);
    border-right: 1px solid var(--border-hover);
    border-bottom: 1px solid var(--border-hover);
}

.tooltip-wrapper:hover .tooltip-card {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.tooltip-logo {
    width: 100%;
    max-width: 180px;
    height: auto;
    margin: 0 auto;
    display: block;
}

.tooltip-title {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text);
    text-align: center;
}

.tooltip-desc {
    font-size: 0.85rem;
    line-height: 1.6;
    color: var(--text-secondary);
    text-align: center;
}

/* =========================================
   REVEAL ANIMATIONS - ENHANCED
   ========================================= */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    filter: blur(5px);
    transition:
        opacity 0.9s var(--ease),
        transform 0.9s var(--ease),
        filter 0.9s var(--ease);
    transition-delay: var(--delay, 0ms);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-80px);
    filter: blur(5px);
    transition:
        opacity 1s var(--ease),
        transform 1s var(--ease),
        filter 1s var(--ease);
    transition-delay: var(--delay, 0ms);
}

.reveal-left.visible {
    opacity: 1;
    transform: translateX(0);
    filter: blur(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(80px);
    filter: blur(5px);
    transition:
        opacity 1s var(--ease),
        transform 1s var(--ease),
        filter 1s var(--ease);
    transition-delay: var(--delay, 0ms);
}

.reveal-right.visible {
    opacity: 1;
    transform: translateX(0);
    filter: blur(0);
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.85);
    filter: blur(8px);
    transition:
        opacity 1s var(--ease),
        transform 1s var(--ease),
        filter 1s var(--ease);
    transition-delay: var(--delay, 0ms);
}

.reveal-scale.visible {
    opacity: 1;
    transform: scale(1);
    filter: blur(0);
}

.reveal-fade {
    opacity: 0;
    transition: opacity 1.2s var(--ease);
    transition-delay: var(--delay, 0ms);
}

.reveal-fade.visible {
    opacity: 1;
}

/* =========================================
   ECOSYSTEM SECTION - ENHANCED
   ========================================= */
.ecosystem {
    padding: 0 10% 150px;
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
}

.section-header {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 80px;
    border-bottom: 1px solid var(--border);
    padding-bottom: var(--space-md);
    font-weight: 700;
    background: linear-gradient(135deg, #fff 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}

.section-header::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, var(--accent), transparent);
}

.company-list {
    display: flex;
    flex-direction: column;
}

.company-card {
    position: relative;
    padding: 50px 0;
    border-bottom: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
    transition: all 0.5s var(--ease);
    text-decoration: none;
    color: inherit;
    overflow: hidden;
}

.company-card::before {
    content: '';
    position: absolute;
    left: -100%;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.08), transparent);
    transition: left 0.7s ease;
}

.company-card::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, var(--accent), var(--accent-light));
    transition: width 0.5s var(--ease);
}

.company-card:hover::before {
    left: 100%;
}

.company-card:hover::after {
    width: 100%;
}

/* Dim siblings on hover */
.company-list:hover .company-card {
    opacity: 0.4;
}

.company-list .company-card:hover {
    opacity: 1;
    padding-left: 40px;
    border-color: rgba(212, 175, 55, 0.3);
    background: linear-gradient(90deg, rgba(212, 175, 55, 0.05), transparent);
}

.company-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-width: 0;
}

.company-name {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 700;
    transition: all 0.4s ease;
}

.company-name-line {
    display: block;
}

.company-name-sub {
    display: block;
    font-size: 0.82em;
    line-height: 1.05;
    letter-spacing: -0.02em;
    opacity: 0.95;
}

.company-description {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
    max-width: 56ch;
    opacity: 0.85;
    transform: translateY(6px);
    transition:
        transform 0.6s var(--ease),
        opacity 0.6s var(--ease),
        color 0.6s var(--ease);
}

.company-card:hover .company-description {
    opacity: 1;
    color: rgba(242, 242, 242, 0.92);
    transform: translateY(0);
}

.company-card:hover .company-name {
    background: linear-gradient(135deg, #fff 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: none;
}

.company-card:hover .company-name-sub {
    -webkit-text-fill-color: inherit;
    background: linear-gradient(135deg, #fff 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    background-clip: text;
}

.company-meta {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 28px;
    margin-left: auto;
    flex-shrink: 0;
    padding-right: 12px;
}

.company-category {
    font-size: 0.95rem;
    color: var(--text-muted);
    text-align: right;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
    transition: color 0.4s ease;
}

.company-card:hover .company-category {
    color: var(--accent);
}

.company-arrow {
    font-size: 2.5rem;
    transform: rotate(-45deg);
    transition: all 0.4s var(--ease);
    color: var(--accent);
    filter: drop-shadow(0 0 10px var(--accent-glow));
}

.company-card:hover .company-arrow {
    transform: rotate(0deg) translateX(10px);
    filter: drop-shadow(0 0 25px var(--accent-glow));
}

/* =========================================
   FOOTER - ENHANCED
   ========================================= */
.footer {
    padding: 150px 5vw 80px;
    border-top: 1px solid var(--border);
    text-align: center;
    position: relative;
    z-index: 10;
    width: 100%;
    background: linear-gradient(180deg, transparent 0%, rgba(212, 175, 55, 0.02) 100%);
}

.footer-label {
    margin-bottom: var(--space-md);
    color: var(--text-muted);
    font-size: 0.85rem;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.contact-cta {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 8vw, 10vw);
    color: transparent;
    -webkit-text-stroke: 1.5px rgba(212, 175, 55, 0.5);
    text-decoration: none;
    transition: all 0.6s var(--ease);
    display: inline-block;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.04em;
    max-width: 95vw;
    word-wrap: break-word;
    position: relative;
}

.contact-cta::before {
    content: 'Get in Touch';
    position: absolute;
    inset: 0;
    color: var(--accent);
    -webkit-text-stroke: 0;
    clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 100%);
    transition: clip-path 0.6s var(--ease);
}

.contact-cta:hover {
    -webkit-text-stroke: 1.5px var(--accent);
    transform: scale(1.05);
}

.contact-cta:hover::before {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    text-shadow: var(--shadow-glow);
}

.footer-credits {
    margin-top: 80px;
    color: var(--text-muted);
    font-size: 0.75rem;
    letter-spacing: 1px;
    line-height: 1.8;
}

/* =========================================
   BACK TO TOP BUTTON - ENHANCED
   ========================================= */
.back-to-top {
    position: fixed;
    bottom: 50px;
    right: 50px;
    width: 60px;
    height: 60px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--accent);
    background: linear-gradient(135deg, var(--glass) 0%, rgba(255, 255, 255, 0.02) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    opacity: 0;
    pointer-events: none;
    transition: all 0.4s var(--ease);
    z-index: 90;
    transform: translateY(20px);
}

.back-to-top::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--secondary-accent));
    opacity: 0;
    z-index: -1;
    transition: opacity 0.4s ease;
}

.back-to-top.visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--accent);
    color: #000;
    border-color: var(--accent);
    box-shadow: var(--shadow-glow);
    transform: translateY(-8px) scale(1.1);
}

.back-to-top:hover::before {
    opacity: 0.3;
}

.back-to-top .arrow-icon {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.back-to-top:hover .arrow-icon {
    transform: translateY(-3px);
    animation: arrowBounce 0.6s ease infinite;
}

@keyframes arrowBounce {

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

    50% {
        transform: translateY(-8px);
    }
}

/* =========================================
   MAGNETIC BUTTON EFFECT
   ========================================= */
.magnetic-btn {
    transition: transform 0.3s var(--ease);
}

/* =========================================
   GLOW EFFECT ON HOVER
   ========================================= */
.glow-effect {
    position: relative;
}

.glow-effect::before {
    content: '';
    position: absolute;
    inset: -20px;
    background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
    z-index: -1;
}

.glow-effect:hover::before {
    opacity: 1;
}

/* =========================================
   RESPONSIVE DESIGN
   ========================================= */

/* Large Screens */
@media (min-width: 1800px) {
    .stats {
        gap: 60px;
    }

    .stat-card {
        padding: 50px 30px;
    }
}

/* Tablet Landscape */
@media (max-width: 1024px) {
    .story {
        grid-template-columns: 1fr;
        gap: 60px;
        padding: 120px 8% 100px;
    }

    .stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        padding: 60px 8%;
    }

    .company-category {
        display: none;
    }

    .hero-title {
        font-size: clamp(2.5rem, 12vw, 8rem);
    }

    .hero-image {
        width: 80vw;
        height: 60vh;
    }

    .company-card {
        padding: 32px 0;
    }

    .company-name {
        font-size: 1.8rem;
    }

    .back-to-top {
        bottom: 30px;
        right: 30px;
        width: 50px;
        height: 50px;
    }

    .company-description {
        font-size: 0.98rem;
        max-width: none;
    }

    .company-meta {
        gap: 18px;
    }
}

/* Tablet Portrait */
@media (max-width: 768px) {
    .header {
        padding: 15px 16px;
        flex-wrap: nowrap;
    }

    .logo {
        font-size: 1.05rem;
    }

    .header-status {
        font-size: 0.7rem;
        letter-spacing: 1.5px;
    }

    .header-status::before {
        width: 6px;
        height: 6px;
    }

    .hero {
        padding: 90px 16px 70px;
        min-height: 100svh;
    }

    .hero-subtitle {
        margin-top: 22px;
        font-size: 0.8rem;
        letter-spacing: 2.5px;
    }

    .hero-subtitle::before,
    .hero-subtitle::after {
        margin: 0 8px;
    }

    .scroll-indicator {
        bottom: 28px;
    }

    .scroll-line {
        height: 40px;
    }

    .hero-image {
        width: 88vw;
        height: 50vh;
    }

    .hero-title {
        font-size: clamp(2rem, 11vw, 5rem);
        line-height: 0.95;
        padding: 0 10px;
    }

    .stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
        padding: 40px 5%;
    }

    .stat-card {
        padding: 24px 12px;
    }

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

    .stat-label {
        font-size: 0.72rem;
        letter-spacing: 1.5px;
    }

    .story {
        padding: 80px 6% 70px;
        gap: 40px;
    }

    .story-heading {
        font-size: 1.9rem;
        line-height: 1.15;
    }

    .story-paragraph {
        font-size: 0.98rem;
        line-height: 1.75;
        padding-left: 18px;
        margin-bottom: 24px;
    }

    /* CRITICAL: Hide tooltip card on mobile — prevents content leak */
    .tooltip-card {
        display: none !important;
    }

    .ecosystem {
        padding: 0 6% 80px;
    }

    .section-header {
        font-size: 2.2rem;
        margin-bottom: 40px;
        padding-bottom: 18px;
    }

    .section-header::after {
        width: 60px;
    }

    .company-card {
        padding: 24px 0;
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
        min-height: 48px;
        /* Touch target minimum */
    }

    .company-meta {
        width: 100%;
        justify-content: space-between;
        padding-right: 0;
    }

    .company-category {
        display: block;
        font-size: 0.72rem;
        letter-spacing: 1.4px;
    }

    .company-arrow {
        font-size: 1.8rem;
    }

    .company-name {
        font-size: 1.45rem;
        word-break: break-word;
    }

    .company-name-sub {
        font-size: 0.85em;
    }

    .company-description {
        font-size: 0.92rem;
        line-height: 1.65;
    }

    .company-info {
        gap: 8px;
    }

    .footer {
        padding: 80px 5vw 60px;
    }

    .footer-credits {
        margin-top: 50px;
        font-size: 0.7rem;
    }

    .contact-cta {
        font-size: clamp(2rem, 10vw, 4rem);
        padding: 12px 10px;
        min-height: 48px;
        /* Touch target */
    }

    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 44px;
        height: 44px;
    }

    .back-to-top .arrow-icon {
        font-size: 1rem;
    }

    /* Hide particles on mobile for performance */
    .particles-container .particle:nth-child(n+10) {
        display: none;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .header {
        padding: 12px 14px;
    }

    .logo {
        font-size: 0.95rem;
    }

    .header-status {
        font-size: 0.65rem;
        letter-spacing: 1.2px;
        padding-left: 16px;
    }

    .header-status::before {
        width: 5px;
        height: 5px;
    }

    .hero {
        padding: 80px 14px 60px;
    }

    .hero-image {
        height: 45vh;
        width: 92vw;
    }

    .hero-title {
        font-size: clamp(1.8rem, 10vw, 4rem);
        padding: 0 5px;
    }

    .hero-subtitle {
        margin-top: 18px;
        font-size: 0.72rem;
        letter-spacing: 2px;
    }

    .hero-subtitle::before,
    .hero-subtitle::after {
        margin: 0 6px;
    }

    .stats {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
        padding: 30px 4%;
    }

    .stat-card {
        padding: 20px 10px;
        border-radius: 12px;
    }

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

    .stat-label {
        font-size: 0.68rem;
        letter-spacing: 1px;
    }

    .story {
        padding: 60px 5% 50px;
        gap: 28px;
    }

    .story-heading {
        font-size: 1.6rem;
        line-height: 1.2;
    }

    .story-paragraph {
        font-size: 0.9rem;
        line-height: 1.7;
        padding-left: 14px;
        margin-bottom: 20px;
    }

    .story-paragraph::before {
        width: 5px;
        height: 5px;
        top: 0.75em;
    }

    .ecosystem {
        padding: 0 5% 60px;
    }

    .section-header {
        font-size: 1.8rem;
        margin-bottom: 30px;
        padding-bottom: 14px;
    }

    .section-header::after {
        width: 50px;
    }

    .company-card {
        padding: 20px 0;
        gap: 10px;
    }

    .company-name {
        font-size: 1.2rem;
        hyphens: auto;
        word-break: break-word;
    }

    .company-name-sub {
        font-size: 0.82em;
    }

    .company-description {
        font-size: 0.85rem;
        line-height: 1.6;
    }

    .company-category {
        font-size: 0.65rem;
        letter-spacing: 1px;
    }

    .company-arrow {
        font-size: 1.5rem;
    }

    .footer {
        padding: 60px 5vw 50px;
    }

    .footer-label {
        font-size: 0.78rem;
        margin-bottom: 20px;
    }

    .footer-credits {
        margin-top: 40px;
        font-size: 0.65rem;
    }

    .contact-cta {
        font-size: clamp(2rem, 11vw, 3.5rem);
        padding: 10px 8px;
    }

    .contact-cta::before {
        display: none;
    }

    .contact-cta {
        color: var(--accent);
        -webkit-text-stroke: 0;
    }

    /* Further reduce particles on small mobile */
    .particles-container .particle:nth-child(n+6) {
        display: none;
    }
}

/* =========================================
   REDUCED MOTION
   ========================================= */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .grid-bg {
        opacity: 0.35;
    }

    .grid-bg::after {
        animation: none;
    }

    .reveal {
        opacity: 1;
        transform: none;
        filter: none;
    }

    .particles-container {
        display: none;
    }

    .aurora {
        display: none;
    }
}

/* Hide custom cursor and grid on touch devices */
@media (hover: none),
(pointer: coarse) {

    .cursor-follower,
    .grid-bg {
        display: none !important;
    }

    /* CRITICAL: Hide tooltip on touch devices — prevents content leak */
    .tooltip-card {
        display: none !important;
    }

    .particles-container .particle:nth-child(n+8) {
        display: none;
    }

    .company-list:hover .company-card {
        opacity: 1;
        filter: none;
    }

    .company-list .company-card:hover {
        padding-left: 0;
        transform: none;
        border-color: var(--border);
    }

    .company-card::before {
        display: none;
    }

    /* Active state for touch devices (tap feedback) */
    .company-card:active {
        background: linear-gradient(90deg, rgba(212, 175, 55, 0.08), transparent);
        border-color: rgba(212, 175, 55, 0.3);
    }

    .company-card:active .company-name {
        color: var(--accent);
    }

    .company-card:active .company-arrow {
        transform: rotate(0deg) translateX(6px);
    }

    /* Fix Get in Touch on touch devices */
    .contact-cta::before {
        display: none;
    }

    .contact-cta {
        color: var(--accent);
        -webkit-text-stroke: 0;
    }

    .back-to-top:hover {
        transform: none;
    }

    .back-to-top:active {
        background: var(--accent);
        color: #000;
        border-color: var(--accent);
    }
}

/* =========================================
   TEXT GRADIENT ANIMATION
   ========================================= */
.gradient-text-animated {
    background: linear-gradient(135deg,
            #fff 0%,
            var(--accent) 25%,
            #fff 50%,
            var(--accent) 75%,
            #fff 100%);
    background-size: 400% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientFlow 8s ease infinite;
}

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

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

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

/* =========================================
   LOADING SKELETON
   ========================================= */
.skeleton {
    background: linear-gradient(90deg,
            var(--bg-secondary) 0%,
            var(--bg-tertiary) 50%,
            var(--bg-secondary) 100%);
    background-size: 200% 100%;
    animation: skeletonShimmer 1.5s ease infinite;
    border-radius: 4px;
}

@keyframes skeletonShimmer {
    0% {
        background-position: 200% 0;
    }

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