

:root {
    --bg-void: #020204;
    --bg-primary: #06060a;
    --bg-secondary: #0a0a10;
    --bg-tertiary: #10101a;
    --bg-card: rgba(12, 12, 20, 0.7);
    --bg-glass: rgba(10, 10, 16, 0.5);
    --accent-green: #39ff14;
    --accent-green-glow: rgba(57, 255, 20, 0.3);
    --accent-green-dim: rgba(57, 255, 20, 0.08);
    --accent-green-soft: rgba(57, 255, 20, 0.5);
    --accent-blue: #00d4ff;
    --accent-blue-glow: rgba(0, 212, 255, 0.3);
    --accent-blue-dim: rgba(0, 212, 255, 0.08);
    --accent-purple: #a855f7;
    --gradient-main: linear-gradient(135deg, var(--accent-green), var(--accent-blue));
    --gradient-reverse: linear-gradient(135deg, var(--accent-blue), var(--accent-green));
    --text-primary: #ffffff;
    --text-secondary: #b0b0c8;
    --text-muted: #6a6a85;
    --border-subtle: rgba(255, 255, 255, 0.04);
    --border-glow: rgba(57, 255, 20, 0.12);
    --font-heading: 'Orbitron', sans-serif;
    --font-body: 'Inter', sans-serif;
    --radius: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
    --transition: 0.4s var(--ease-out);
    --transition-slow: 0.7s var(--ease-out);
    --transition-fast: 0.2s var(--ease-out);
}


*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; overflow-x: hidden; }

body {
    font-family: var(--font-body);
    background: var(--bg-void);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
    cursor: none;
}

@media (max-width: 768px) {
    body { cursor: auto; }
    .cursor-dot, .cursor-ring { display: none !important; }
    .bg-dna, .bg-radar-sweep, .bg-waveform, .bg-nodes,
    .bg-light-sweep, .bg-circuits, .bg-bpm-ring,
    .bg-depth-dots, .scanline-overlay, .noise-overlay { display: none !important; }
    .bg-orb { animation-duration: 30s !important; }
}


@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

a { color: var(--accent-green); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--accent-blue); }
img {
    max-width: 100%; height: auto; display: block;
    opacity: 0;
    animation: imgFadeIn 0.6s ease forwards;
}

img[src=""] { animation: none; opacity: 0; }

@keyframes imgFadeIn {
    0% { opacity: 0; filter: blur(4px); }
    100% { opacity: 1; filter: blur(0); }
}

main {
    position: relative;
    z-index: 10;
}

.site-footer {
    position: relative;
    z-index: 10;
}




.bg-stars {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.bg-star {
    position: absolute;
    left: 50%;
    top: 50%;
    width: var(--size, 2px);
    height: var(--size, 2px);
    background: rgba(200, 220, 255, 0.7);
    border-radius: 50%;
    will-change: transform, opacity;
    animation: starWarp var(--dur, 3s) linear infinite;
    animation-delay: var(--del, 0s);
}

@keyframes starWarp {
    0% {
        transform: translate(0, 0) scale(0.2);
        opacity: 0;
    }
    15% { opacity: 0.6; }
    85% { opacity: 0.4; }
    100% {
        transform: translate(var(--dx, 50vw), var(--dy, 50vh)) scale(1.5);
        opacity: 0;
    }
}


.bg-orbs {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.bg-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    will-change: transform;
    animation: orbDrift 16s ease-in-out infinite;
}

.bg-orb-1 {
    width: 40vw;
    height: 40vw;
    max-width: 500px;
    max-height: 500px;
    background: rgba(57, 255, 20, 0.1);
    top: -10%;
    left: -5%;
}

.bg-orb-2 {
    width: 35vw;
    height: 35vw;
    max-width: 400px;
    max-height: 400px;
    background: rgba(0, 212, 255, 0.08);
    bottom: 10%;
    right: -5%;
    animation-delay: -6s;
    animation-direction: reverse;
}

.bg-orb-3 {
    width: 25vw;
    height: 25vw;
    max-width: 300px;
    max-height: 300px;
    background: rgba(168, 85, 247, 0.06);
    top: 50%;
    left: 40%;
    animation-delay: -10s;
}

@keyframes orbDrift {
    0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
    25% { transform: translate3d(30px, -25px, 0) scale(1.08); }
    50% { transform: translate3d(-20px, 35px, 0) scale(0.95); }
    75% { transform: translate3d(25px, 15px, 0) scale(1.03); }
}


body.audio-playing .bg-orb {
    animation-duration: 6s;
}

body.audio-playing .bg-orb-1 { background: rgba(57, 255, 20, 0.15); }
body.audio-playing .bg-orb-2 { background: rgba(0, 212, 255, 0.12); }


.bg-grid {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    opacity: 0.5;
    background-image:
        linear-gradient(rgba(57, 255, 20, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(57, 255, 20, 0.08) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
}


.bg-particles {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.bg-particle {
    position: absolute;
    bottom: -10px;
    width: var(--size, 3px);
    height: var(--size, 3px);
    border-radius: 50%;
    background: rgba(57, 255, 20, 0.85);
    box-shadow: 0 0 6px rgba(57, 255, 20, 0.4);
    will-change: transform, opacity;
    animation: particleFloat var(--dur, 10s) linear infinite;
    animation-delay: var(--del, 0s);
}

.bg-particle.blue {
    background: rgba(0, 212, 255, 0.8);
    box-shadow: 0 0 6px rgba(0, 212, 255, 0.35);
}

@keyframes particleFloat {
    0% {
        transform: translate3d(0, 0, 0);
        opacity: 0;
    }
    10% { opacity: 0.7; }
    90% { opacity: 0.4; }
    100% {
        transform: translate3d(var(--drift, 20px), -105vh, 0);
        opacity: 0;
    }
}

body.audio-playing .bg-particle {
    animation-duration: calc(var(--dur, 10s) * 0.6);
}


.bg-lyrics {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.bg-lyric {
    position: absolute;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 3px;
    white-space: nowrap;
    will-change: transform, opacity;
    opacity: 0;
    animation: lyricDrift var(--dur, 20s) linear infinite;
    animation-delay: var(--del, 0s);
}

.bg-lyric:nth-child(odd) { color: rgba(57, 255, 20, 0.15); }
.bg-lyric:nth-child(even) { color: rgba(0, 212, 255, 0.12); animation-direction: reverse; }

@keyframes lyricDrift {
    0% {
        transform: translate3d(-100%, 0, 0);
        opacity: 0;
    }
    8% { opacity: 1; }
    92% { opacity: 1; }
    100% {
        transform: translate3d(100vw, 0, 0);
        opacity: 0;
    }
}


.bg-bpm-ring {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bpm-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(57, 255, 20, 0.1);
    will-change: transform, opacity;
    animation: bpmPulse 0.857s ease-out infinite; 
}

.bpm-ring-1 {
    width: 30vmin;
    height: 30vmin;
}

.bpm-ring-2 {
    width: 50vmin;
    height: 50vmin;
    animation-delay: -0.286s;
    border-color: rgba(0, 212, 255, 0.08);
}

.bpm-ring-3 {
    width: 70vmin;
    height: 70vmin;
    animation-delay: -0.571s;
    border-color: rgba(168, 85, 247, 0.06);
}

@keyframes bpmPulse {
    0% {
        transform: scale(0.95);
        opacity: 0.6;
    }
    50% {
        transform: scale(1.05);
        opacity: 1;
    }
    100% {
        transform: scale(0.95);
        opacity: 0.6;
    }
}

body.audio-playing .bpm-ring {
    animation-duration: 0.4286s;
    border-color: rgba(57, 255, 20, 0.2);
}
body.audio-playing .bpm-ring-2 { border-color: rgba(0, 212, 255, 0.15); }
body.audio-playing .bpm-ring-3 { border-color: rgba(168, 85, 247, 0.1); }


.bg-light-sweep {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.bg-light-sweep::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 40%;
    height: 200%;
    background: linear-gradient(
        105deg,
        transparent 0%,
        rgba(57, 255, 20, 0.04) 45%,
        rgba(0, 212, 255, 0.05) 50%,
        rgba(57, 255, 20, 0.04) 55%,
        transparent 100%
    );
    will-change: transform;
    animation: lightSweep 18s ease-in-out infinite;
}

@keyframes lightSweep {
    0% { transform: translateX(-20%) rotate(-15deg); }
    50% { transform: translateX(320%) rotate(-15deg); }
    100% { transform: translateX(-20%) rotate(-15deg); }
}

body.audio-playing .bg-light-sweep::before {
    animation-duration: 8s;
    background: linear-gradient(
        105deg,
        transparent 0%,
        rgba(57, 255, 20, 0.07) 45%,
        rgba(0, 212, 255, 0.08) 50%,
        rgba(57, 255, 20, 0.07) 55%,
        transparent 100%
    );
}


.bg-circuits {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 3;
}

.circuit-corner {
    position: absolute;
    width: 120px;
    height: 120px;
}


.circuit-tl {
    top: 20px;
    left: 20px;
    border-top: 1px solid rgba(57, 255, 20, 0.2);
    border-left: 1px solid rgba(57, 255, 20, 0.2);
}

.circuit-tl::before {
    content: '';
    position: absolute;
    top: 25px;
    left: 0;
    width: 50px;
    height: 1px;
    background: rgba(57, 255, 20, 0.15);
}

.circuit-tl::after {
    content: '';
    position: absolute;
    top: 0;
    left: 25px;
    width: 1px;
    height: 50px;
    background: rgba(57, 255, 20, 0.15);
}


.circuit-tr {
    top: 20px;
    right: 20px;
    border-top: 1px solid rgba(0, 212, 255, 0.2);
    border-right: 1px solid rgba(0, 212, 255, 0.2);
}

.circuit-tr::before {
    content: '';
    position: absolute;
    top: 25px;
    right: 0;
    width: 50px;
    height: 1px;
    background: rgba(0, 212, 255, 0.15);
}

.circuit-tr::after {
    content: '';
    position: absolute;
    top: 0;
    right: 25px;
    width: 1px;
    height: 50px;
    background: rgba(0, 212, 255, 0.15);
}


.circuit-bl {
    bottom: 20px;
    left: 20px;
    border-bottom: 1px solid rgba(0, 212, 255, 0.2);
    border-left: 1px solid rgba(0, 212, 255, 0.2);
}

.circuit-bl::before {
    content: '';
    position: absolute;
    bottom: 25px;
    left: 0;
    width: 50px;
    height: 1px;
    background: rgba(0, 212, 255, 0.15);
}

.circuit-bl::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 25px;
    width: 1px;
    height: 50px;
    background: rgba(0, 212, 255, 0.15);
}


.circuit-br {
    bottom: 20px;
    right: 20px;
    border-bottom: 1px solid rgba(57, 255, 20, 0.2);
    border-right: 1px solid rgba(57, 255, 20, 0.2);
}

.circuit-br::before {
    content: '';
    position: absolute;
    bottom: 25px;
    right: 0;
    width: 50px;
    height: 1px;
    background: rgba(57, 255, 20, 0.15);
}

.circuit-br::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 25px;
    width: 1px;
    height: 50px;
    background: rgba(57, 255, 20, 0.15);
}


.circuit-tl, .circuit-tr, .circuit-bl, .circuit-br {
    animation: circuitGlow 4s ease-in-out infinite;
}
.circuit-tr { animation-delay: -1s; }
.circuit-bl { animation-delay: -2s; }
.circuit-br { animation-delay: -3s; }

@keyframes circuitGlow {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

body.audio-playing .circuit-corner {
    animation-duration: 1s;
}


.bg-formulas {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.bg-formula {
    position: absolute;
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 13px;
    letter-spacing: 1px;
    white-space: nowrap;
    will-change: opacity;
    animation: formulaFade var(--dur, 20s) ease-in-out infinite;
    animation-delay: var(--del, 0s);
}

.bg-formula:nth-child(odd) { color: rgba(57, 255, 20, 0.3); text-shadow: 0 0 8px rgba(57, 255, 20, 0.15); }
.bg-formula:nth-child(even) { color: rgba(0, 212, 255, 0.25); text-shadow: 0 0 8px rgba(0, 212, 255, 0.12); }
.bg-formula:nth-child(3n) { color: rgba(168, 85, 247, 0.22); text-shadow: 0 0 8px rgba(168, 85, 247, 0.1); }

@keyframes formulaFade {
    0%, 100% { opacity: 0; }
    15%, 85% { opacity: 1; }
}

body.audio-playing .bg-formula {
    animation-duration: calc(var(--dur, 20s) * 0.5);
}
body.audio-playing .bg-formula:nth-child(odd) { color: rgba(57, 255, 20, 0.4); }
body.audio-playing .bg-formula:nth-child(even) { color: rgba(0, 212, 255, 0.35); }


.bg-dna {
    position: fixed;
    right: 5%;
    top: 0;
    bottom: 0;
    width: 60px;
    pointer-events: none;
    z-index: 0;
    opacity: 0.8;
}

.dna-strand {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100%;
    will-change: transform;
}

.dna-strand-1 {
    border-right: 1px solid rgba(57, 255, 20, 0.3);
    animation: dnaWave1 6s ease-in-out infinite;
}

.dna-strand-2 {
    border-left: 1px solid rgba(0, 212, 255, 0.25);
    animation: dnaWave2 6s ease-in-out infinite;
}

@keyframes dnaWave1 {
    0%, 100% { transform: translateX(-12px) scaleX(0.6); }
    50% { transform: translateX(12px) scaleX(0.6); }
}

@keyframes dnaWave2 {
    0%, 100% { transform: translateX(12px) scaleX(0.6); }
    50% { transform: translateX(-12px) scaleX(0.6); }
}

.dna-rungs {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100%;
}

.dna-rung {
    position: absolute;
    left: 10%;
    right: 10%;
    height: 1px;
    top: calc(8% + var(--i) * 12%);
    background: linear-gradient(90deg, rgba(57, 255, 20, 0.25), rgba(0, 212, 255, 0.2));
    will-change: opacity;
    animation: rungPulse 3s ease-in-out infinite;
    animation-delay: calc(var(--i) * -0.375s);
}

@keyframes rungPulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

body.audio-playing .dna-strand-1 { border-right-color: rgba(57, 255, 20, 0.25); animation-duration: 2s; }
body.audio-playing .dna-strand-2 { border-left-color: rgba(0, 212, 255, 0.2); animation-duration: 2s; }
body.audio-playing .dna-rung { animation-duration: 1s; }


.bg-waveform {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    pointer-events: none;
    z-index: 0;
    opacity: 0.6;
    background:
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 4px,
            rgba(57, 255, 20, 0.15) 4px,
            rgba(57, 255, 20, 0.15) 5px
        );
    mask-image:
        linear-gradient(to top,
            black 0%,
            black 10%,
            transparent 100%
        ),
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 60'%3E%3Cpath d='M0 60 L0 45 L4 35 L8 48 L12 25 L16 42 L20 20 L24 38 L28 15 L32 40 L36 22 L40 45 L44 18 L48 35 L52 10 L56 30 L60 42 L64 28 L68 48 L72 15 L76 38 L80 25 L84 45 L88 20 L92 40 L96 12 L100 35 L104 45 L108 22 L112 38 L116 15 L120 42 L124 28 L128 48 L132 18 L136 35 L140 8 L144 30 L148 42 L152 20 L156 45 L160 25 L164 38 L168 15 L172 40 L176 30 L180 48 L184 22 L188 42 L192 18 L196 35 L200 45 L200 60Z' fill='black'/%3E%3C/svg%3E");
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 60'%3E%3Cpath d='M0 60 L0 45 L4 35 L8 48 L12 25 L16 42 L20 20 L24 38 L28 15 L32 40 L36 22 L40 45 L44 18 L48 35 L52 10 L56 30 L60 42 L64 28 L68 48 L72 15 L76 38 L80 25 L84 45 L88 20 L92 40 L96 12 L100 35 L104 45 L108 22 L112 38 L116 15 L120 42 L124 28 L128 48 L132 18 L136 35 L140 8 L144 30 L148 42 L152 20 L156 45 L160 25 L164 38 L168 15 L172 40 L176 30 L180 48 L184 22 L188 42 L192 18 L196 35 L200 45 L200 60Z' fill='black'/%3E%3C/svg%3E");
    mask-size: 200px 60px;
    -webkit-mask-size: 200px 60px;
    mask-repeat: repeat-x;
    -webkit-mask-repeat: repeat-x;
    animation: waveformShift 12s linear infinite;
}

@keyframes waveformShift {
    0% { mask-position: 0 0; -webkit-mask-position: 0 0; }
    100% { mask-position: 200px 0; -webkit-mask-position: 200px 0; }
}

body.audio-playing .bg-waveform {
    opacity: 0.6;
    animation-duration: 3s;
    background:
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 4px,
            rgba(57, 255, 20, 0.15) 4px,
            rgba(57, 255, 20, 0.15) 5px
        );
}


.bg-nodes {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    opacity: 0.8;
}

.node {
    position: absolute;
    width: 5px;
    height: 5px;
    background: rgba(57, 255, 20, 0.7);
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(57, 255, 20, 0.4);
    will-change: opacity;
    animation: nodePulse 4s ease-in-out infinite;
}

.node:nth-child(even) {
    background: rgba(0, 212, 255, 0.65);
    box-shadow: 0 0 8px rgba(0, 212, 255, 0.35);
}

.node:nth-child(1) { animation-delay: 0s; }
.node:nth-child(2) { animation-delay: -0.5s; }
.node:nth-child(3) { animation-delay: -1s; }
.node:nth-child(4) { animation-delay: -1.5s; }
.node:nth-child(5) { animation-delay: -2s; }
.node:nth-child(6) { animation-delay: -2.5s; }
.node:nth-child(7) { animation-delay: -3s; }
.node:nth-child(8) { animation-delay: -3.5s; }

@keyframes nodePulse {
    0%, 100% { opacity: 0.4; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.6); }
}

.node-lines {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.node-lines line {
    stroke: rgba(57, 255, 20, 0.1);
    stroke-width: 0.2;
    will-change: opacity;
    animation: linePulse 6s ease-in-out infinite;
}

.node-lines line:nth-child(even) { stroke: rgba(0, 212, 255, 0.08); animation-delay: -2s; }
.node-lines line:nth-child(3n) { animation-delay: -4s; }

@keyframes linePulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

body.audio-playing .node {
    animation-duration: 1.5s;
}

body.audio-playing .node-lines line {
    stroke-width: 0.2;
    animation-duration: 2s;
}

body.audio-playing .node-lines line:nth-child(odd) { stroke: rgba(57, 255, 20, 0.18); }
body.audio-playing .node-lines line:nth-child(even) { stroke: rgba(0, 212, 255, 0.15); }


.bg-radar-sweep {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.bg-radar-sweep::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 150vmax;
    height: 1px;
    transform-origin: 0 0;
    background: linear-gradient(90deg, rgba(57, 255, 20, 0.12), transparent 60%);
    will-change: transform;
    animation: radarSpin 20s linear infinite;
}

@keyframes radarSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

body.audio-playing .bg-radar-sweep::before {
    animation-duration: 6s;
    background: linear-gradient(90deg, rgba(57, 255, 20, 0.22), transparent 60%);
}


.bg-haze {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    background:
        radial-gradient(ellipse at 20% 30%, rgba(57, 255, 20, 0.04) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 70%, rgba(0, 212, 255, 0.035) 0%, transparent 50%);
    will-change: transform;
    animation: hazeDrift 25s ease-in-out infinite;
}

@keyframes hazeDrift {
    0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
    33% { transform: translate3d(30px, -20px, 0) scale(1.05); }
    66% { transform: translate3d(-25px, 15px, 0) scale(0.97); }
}

body.audio-playing .bg-haze {
    animation-duration: 8s;
    background:
        radial-gradient(ellipse at 20% 30%, rgba(57, 255, 20, 0.07) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 70%, rgba(0, 212, 255, 0.06) 0%, transparent 50%);
}


.bg-depth-dots {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    will-change: transform;
}

.depth-dot {
    position: absolute;
    width: var(--s, 1.5px);
    height: var(--s, 1.5px);
    border-radius: 50%;
    background: rgba(255, 255, 255, var(--o, 0.15));
}

.depth-dot.front {
    background: rgba(57, 255, 20, var(--o, 0.2));
    box-shadow: 0 0 3px rgba(57, 255, 20, 0.1);
}




.bg-vignette {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 6;
    background: radial-gradient(ellipse at center, transparent 55%, rgba(2, 2, 4, 0.35) 100%);
    animation: vignettePulse 8s ease-in-out infinite;
}

@keyframes vignettePulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 0.7; }
}


.scanline-overlay {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 9989;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(0, 0, 0, 0.012) 2px,
        rgba(0, 0, 0, 0.012) 4px
    );
    opacity: 0.3;
}


.noise-overlay {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 9990;
    opacity: 0.012;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 256px 256px;
}


.audio-vault { position: relative; }
.audio-vault::after {
    content: '';
    position: absolute;
    top: -200px; left: -200px;
    width: calc(100% + 400px); height: calc(100% + 400px);
    background:
        radial-gradient(ellipse at 10% 30%, rgba(57, 255, 20, 0.06) 0%, transparent 40%),
        radial-gradient(ellipse at 90% 70%, rgba(0, 212, 255, 0.05) 0%, transparent 40%);
    pointer-events: none; z-index: 0;
}

.arsenal::after {
    content: '';
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse at 50% 80%, rgba(0, 212, 255, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse at 30% 20%, rgba(168, 85, 247, 0.04) 0%, transparent 40%);
    pointer-events: none; z-index: 0;
}

.methodology::after {
    content: '';
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse at 70% 30%, rgba(57, 255, 20, 0.05) 0%, transparent 45%),
        radial-gradient(ellipse at 20% 80%, rgba(0, 212, 255, 0.04) 0%, transparent 40%);
    pointer-events: none; z-index: 0;
}


.page-loader {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: var(--bg-void);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-loader.loaded {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader-logo-img {
    width: clamp(380px, 80vw, 960px);
    height: auto;
    position: relative;
    animation: loaderReveal 1s var(--ease-out) forwards, loaderGlow 2s ease-in-out 0.5s infinite alternate;
    opacity: 0;
    filter: brightness(1);
}

@keyframes loaderReveal {
    0% { opacity: 0; transform: scale(0.85); filter: blur(8px) brightness(2); }
    50% { opacity: 1; filter: blur(0) brightness(1.5); }
    100% { opacity: 1; transform: scale(1); filter: blur(0) brightness(1); }
}

@keyframes loaderGlow {
    0% { filter: brightness(1) drop-shadow(0 0 8px rgba(57, 255, 20, 0.15)); }
    100% { filter: brightness(1.15) drop-shadow(0 0 20px rgba(57, 255, 20, 0.35)); }
}


.loader-logo-img::after { display: none; }
.page-loader::before,
.page-loader::after {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    width: clamp(180px, 40vw, 360px);
    height: clamp(90px, 20vw, 180px);
    transform: translate(-50%, -60%);
    background: inherit;
    pointer-events: none;
}

.page-loader::before {
    border-left: 2px solid rgba(57, 255, 20, 0.4);
    border-right: 2px solid rgba(0, 212, 255, 0.4);
    animation: glitch-1 0.6s ease-in-out 0.3s 2;
    clip-path: polygon(0 0, 100% 0, 100% 45%, 0 45%);
    opacity: 0.5;
}

.page-loader::after {
    border-left: 2px solid rgba(0, 212, 255, 0.4);
    border-right: 2px solid rgba(57, 255, 20, 0.4);
    animation: glitch-2 0.6s ease-in-out 0.3s 2;
    clip-path: polygon(0 55%, 100% 55%, 100% 100%, 0 100%);
    opacity: 0.5;
}

@keyframes glitch-1 {
    0%, 100% { transform: translate(0); }
    20% { transform: translate(-3px, -1px); }
    40% { transform: translate(3px, 1px); }
    60% { transform: translate(-2px, 2px); }
    80% { transform: translate(2px, -1px); }
}

@keyframes glitch-2 {
    0%, 100% { transform: translate(0); }
    20% { transform: translate(3px, 1px); }
    40% { transform: translate(-3px, -1px); }
    60% { transform: translate(2px, -2px); }
    80% { transform: translate(-2px, 1px); }
}

.loader-bar {
    position: absolute;
    bottom: 30%;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 2px;
    background: var(--border-subtle);
    border-radius: 2px;
    overflow: hidden;
}

.loader-bar-fill {
    width: 0%;
    height: 100%;
    background: var(--gradient-main);
    border-radius: 2px;
    animation: loaderFill 0.8s var(--ease-out) forwards;
}

@keyframes loaderFill {
    0% { width: 0%; }
    100% { width: 100%; }
}


.cursor-dot {
    position: fixed;
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--accent-green);
    box-shadow: 0 0 8px rgba(57,255,20,0.6);
    pointer-events: none;
    z-index: 9998;
    transition: transform 0.1s ease, width 0.3s ease, height 0.3s ease, background 0.3s ease;
    transform: translate(-50%, -50%);
}

.cursor-ring {
    position: fixed;
    width: 36px; height: 36px;
    border-radius: 50%;
    border: 1.5px solid rgba(57, 255, 20, 0.5);
    pointer-events: none;
    z-index: 9997;
    transition: width 0.3s var(--ease-out), height 0.3s var(--ease-out),
                border-color 0.3s ease, transform 0.15s ease;
    transform: translate(-50%, -50%);
}

.cursor-dot.hovering { width: 12px; height: 12px; background: var(--accent-blue); }
.cursor-ring.hovering { width: 56px; height: 56px; border-color: rgba(0, 212, 255, 0.3); }

@media (max-width: 768px) {
    .cursor-dot, .cursor-ring { display: none; }
    .bg-circuits { display: none; }
    .bg-formula { font-size: 10px; }
    .bg-light-sweep::before { animation-duration: 25s; }
    .bpm-ring-3 { display: none; }
    .bg-dna { display: none; }
    .bg-waveform { height: 35px; opacity: 0.2; }
    .bg-nodes { opacity: 0.3; }
    .bg-radar-sweep::before { animation-duration: 30s; }
    .bg-haze { animation-duration: 35s; }
    .bg-depth-dots.bg-depth-back { display: none; }
}


.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
    position: relative;
    z-index: 1;
}

.section-label {
    font-family: var(--font-heading);
    font-size: 0.6rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 6px;
    color: var(--accent-green);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 14px;
}

.section-label::before {
    content: '';
    width: 32px; height: 1px;
    background: linear-gradient(90deg, var(--accent-green), transparent);
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(1.6rem, 4.5vw, 3rem);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
    line-height: 1.15;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.section-subtitle {
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 540px;
    margin-bottom: 56px;
    line-height: 1.9;
    font-weight: 300;
}

.gradient-text {
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: gradientShift 6s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}

.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.12s; }
.reveal-delay-2 { transition-delay: 0.24s; }
.reveal-delay-3 { transition-delay: 0.36s; }
.reveal-delay-4 { transition-delay: 0.48s; }

.section-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-subtle), rgba(57,255,20,0.06), var(--border-subtle), transparent);
    position: relative;
    overflow: hidden;
}

.section-divider::after {
    content: '';
    position: absolute;
    top: -1px;
    left: -100%;
    width: 60%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent-green-glow), var(--accent-blue-glow), transparent);
    opacity: 0;
}

.section-divider.visible::after {
    animation: dividerSweep 1.2s ease-out forwards;
}

@keyframes dividerSweep {
    0% { left: -60%; opacity: 0; }
    20% { opacity: 1; }
    100% { left: 100%; opacity: 0; }
}


.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--gradient-main);
    z-index: 10001;
    transition: none;
    will-change: width;
    box-shadow: 0 0 8px rgba(57, 255, 20, 0.4), 0 0 20px rgba(57, 255, 20, 0.15);
}


.mini-player {
    position: fixed;
    bottom: -80px;
    left: 0;
    right: 0;
    z-index: 9999;
    transition: bottom 0.4s var(--ease-out);
    pointer-events: none;
}

.mini-player.visible {
    bottom: 0;
    pointer-events: auto;
}

.mini-player-inner {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 10px 20px;
    background: rgba(6, 6, 10, 0.92);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(57, 255, 20, 0.1);
    max-width: 100%;
}

.mini-player-art {
    width: 42px;
    height: 42px;
    border-radius: 8px;
    object-fit: cover;
    flex-shrink: 0;
}

.mini-player-info {
    display: flex;
    flex-direction: column;
    min-width: 0;
    flex-shrink: 0;
}

.mini-player-title {
    font-family: var(--font-heading);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.mini-player-artist {
    font-size: 0.65rem;
    color: var(--text-muted);
}

.mini-player-controls {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
    min-width: 0;
}

.mini-play-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mini-play-btn svg {
    width: 18px;
    height: 18px;
    fill: var(--accent-green);
}

.mini-progress {
    flex: 1;
    height: 3px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 3px;
    overflow: hidden;
    min-width: 60px;
}

.mini-progress-fill {
    height: 100%;
    width: 0%;
    background: var(--gradient-main);
    border-radius: 3px;
    transition: width 0.3s linear;
}

.mini-time {
    font-size: 0.65rem;
    color: var(--text-muted);
    font-variant-numeric: tabular-nums;
    flex-shrink: 0;
    min-width: 32px;
}

.mini-close {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1.4rem;
    cursor: pointer;
    padding: 0 4px;
    flex-shrink: 0;
    transition: color var(--transition-fast);
}

.mini-close:hover { color: var(--text-primary); }

@media (max-width: 768px) {
    .mini-player-info { display: none; }
    .mini-player-inner { padding: 8px 14px; gap: 10px; }
}


.navbar {
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    z-index: 1000;
    padding: 24px 0;
    background: transparent;
    transition: all var(--transition);
}

.navbar.scrolled {
    padding: 12px 0;
    background: rgba(2, 2, 4, 0.8);
    backdrop-filter: blur(30px) saturate(180%);
    -webkit-backdrop-filter: blur(30px) saturate(180%);
    border-bottom: 1px solid var(--border-subtle);
}

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

.nav-logo {
    text-decoration: none;
    display: flex;
    align-items: center;
}

.nav-logo-img {
    height: 76px;
    width: auto;
    transition: filter var(--transition), transform var(--transition), opacity var(--transition);
    opacity: 0 !important;
    pointer-events: none;
    animation: none !important;
}

.navbar.scrolled .nav-logo-img {
    opacity: 1 !important;
    pointer-events: auto;
    height: 60px;
}

.nav-logo:hover .nav-logo-img {
    filter: drop-shadow(0 0 8px rgba(57, 255, 20, 0.4));
    transform: scale(1.03);
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 4px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-subtle);
    border-radius: 100px;
    padding: 4px;
}

.nav-links--mobile {
    display: none;
}

.nav-mobile-overlay {
    display: none;
}


.nav-links a {
    font-family: var(--font-heading);
    font-size: 0.58rem;
    font-weight: 500;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 10px 22px;
    border-radius: 100px;
    transition: all var(--transition);
}

.nav-links a:hover {
    color: var(--text-primary);
    background: rgba(57, 255, 20, 0.15);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    z-index: 10;
}

.nav-toggle span {
    display: block;
    width: 22px; height: 1.5px;
    background: var(--text-primary);
    transition: var(--transition);
    transform-origin: center;
}

.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

@media (max-width: 768px) {
    .nav-toggle { display: flex; z-index: 10000; position: relative; }

    .nav-links--desktop {
        display: none;
    }

    .nav-mobile-overlay {
        display: flex !important;
        position: fixed;
        top: 0; right: 0; bottom: 0; left: 0;
        z-index: 9999;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        background: rgba(2, 2, 10, 0.06);
        -webkit-backdrop-filter: blur(12px) saturate(120%);
        backdrop-filter: blur(12px) saturate(120%);
        padding: 40px;
        transform: translateX(100%);
        transition: transform 0.5s var(--ease-out);
    }

    .nav-mobile-overlay::before {
        content: '';
        position: absolute;
        top: 0; right: 0; bottom: 0; left: 0;
        background: linear-gradient(160deg, rgba(57,255,20,0.06) 0%, transparent 40%, rgba(0,212,255,0.04) 100%);
        pointer-events: none;
    }

    .nav-mobile-overlay.open { transform: translateX(0); }

    .nav-mobile-close {
        position: absolute;
        top: 60px;
        right: 24px;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        background: rgba(255,255,255,0.1);
        border: 1px solid rgba(255,255,255,0.25);
        border-radius: 50%;
        color: #fff;
        font-size: 24px;
        line-height: 1;
        cursor: pointer;
        transition: all 0.3s ease;
        padding: 0;
        z-index: 1;
    }

    .nav-mobile-close:hover,
    .nav-mobile-close:active {
        border-color: rgba(57,255,20,0.4);
        color: #39ff14;
        background: rgba(57,255,20,0.1);
    }

    .nav-mobile-list {
        list-style: none;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 6px;
        padding: 0;
        margin: 0;
        width: 100%;
    }

    .nav-mobile-list li {
        width: 100%;
        max-width: 320px;
    }

    .nav-mobile-list a {
        display: block;
        font-family: var(--font-heading);
        font-size: 0.75rem;
        font-weight: 700;
        letter-spacing: 3px;
        text-transform: uppercase;
        color: rgba(255,255,255,0.8);
        text-align: center;
        padding: 18px 28px;
        border-radius: 12px;
        background: rgba(255,255,255,0.03);
        border: 1px solid rgba(255,255,255,0.06);
        transition: all 0.3s ease;
        text-decoration: none;
    }

    .nav-mobile-list a:hover,
    .nav-mobile-list a:active {
        color: #fff;
        background: rgba(57,255,20,0.08);
        border-color: rgba(57,255,20,0.2);
        box-shadow: 0 0 20px rgba(57,255,20,0.05);
    }
}


.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 160px 32px 100px;
    position: relative;
    overflow: hidden;
}

.hero-parallax-bg {
    position: absolute; inset: -100px;
    pointer-events: none;
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    animation: orbFloat 14s ease-in-out infinite;
}

.hero-orb-1 {
    width: 500px; height: 500px;
    background: rgba(57, 255, 20, 0.05);
    top: -15%; left: -10%;
}

.hero-orb-2 {
    width: 400px; height: 400px;
    background: rgba(0, 212, 255, 0.04);
    bottom: -10%; right: -10%;
    animation-delay: -5s; animation-direction: reverse;
}

.hero-orb-3 {
    width: 250px; height: 250px;
    background: rgba(168, 85, 247, 0.03);
    top: 40%; right: 20%;
    animation-delay: -8s;
}

@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(40px, -30px) scale(1.05); }
    50% { transform: translate(-20px, 40px) scale(0.95); }
    75% { transform: translate(30px, 20px) scale(1.02); }
}

.hero-logo {
    width: clamp(380px, 80vw, 960px);
    height: auto;
    margin-bottom: 44px;
    filter: drop-shadow(0 0 20px rgba(57, 255, 20, 0.15));
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-size: 0.55rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 5px;
    color: var(--accent-green);
    padding: 12px 28px;
    border: 1px solid rgba(57, 255, 20, 0.15);
    border-radius: 100px;
    background: rgba(57, 255, 20, 0.04);
    margin-bottom: 48px;
    position: relative; z-index: 1;
    backdrop-filter: blur(10px);
}

.pulse-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--accent-green);
    position: relative;
}

.pulse-dot::after {
    content: '';
    position: absolute; inset: -4px;
    border-radius: 50%;
    border: 1px solid var(--accent-green);
    animation: pulseRing 2s ease-out infinite;
}

@keyframes pulseRing {
    0% { transform: scale(1); opacity: 0.6; }
    100% { transform: scale(2.5); opacity: 0; }
}

.hero-headline {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 6.5vw, 5rem);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 5px;
    line-height: 1.05;
    margin-bottom: 32px;
    position: relative; z-index: 1;
    text-shadow: 0 2px 30px rgba(0, 0, 0, 0.6);
}

.hero-headline .line { display: block; }

.hero-headline .highlight {
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: gradientShift 5s ease-in-out infinite;
}

.hero-subheadline {
    font-size: clamp(1.15rem, 2.8vw, 1.5rem);
    color: #fff;
    max-width: 680px;
    margin: 0 auto 52px;
    font-weight: 400;
    letter-spacing: 0.3px;
    line-height: 1.9;
    position: relative; z-index: 1;
    text-align: center;
}

.hero-sentence {
    display: inline;
}

.hero-sentence-accent {
    color: #39ff14;
    font-weight: 500;
}

.hero-sentence-accent .hero-word {
    -webkit-text-fill-color: initial;
}

.hero-word {
    display: inline-block;
    opacity: 0;
    transform: translateY(14px);
    animation: wordReveal 0.5s ease forwards;
}

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

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

.hero-video-wrapper {
    width: 100%;
    max-width: 960px;
    margin: 0 auto 52px;
    border-radius: var(--radius-xl);
    position: relative; z-index: 1;
    padding: 2px;
    background: linear-gradient(135deg, rgba(57,255,20,0.15), transparent 40%, transparent 60%, rgba(0,212,255,0.15));
    box-shadow: 0 30px 100px rgba(0, 0, 0, 0.7), 0 0 80px rgba(57, 255, 20, 0.04);
    transition: box-shadow var(--transition-slow);
}

.hero-video-wrapper:hover {
    box-shadow: 0 30px 100px rgba(0, 0, 0, 0.7), 0 0 120px rgba(57, 255, 20, 0.08);
}

.hero-video-inner {
    border-radius: calc(var(--radius-xl) - 2px);
    overflow: hidden; background: #000;
}

.hero-video-wrapper video,
.hero-video-wrapper iframe {
    width: 100%; aspect-ratio: 16 / 9; display: block; background: #000;
}

.hero-actions {
    display: flex; gap: 16px; flex-wrap: wrap; justify-content: center;
    position: relative; z-index: 1;
}


.btn {
    display: inline-flex; align-items: center; gap: 10px;
    font-family: var(--font-heading);
    font-size: 0.65rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 2.5px;
    padding: 18px 40px;
    border-radius: var(--radius); border: none;
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none; position: relative; overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute; top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.12), transparent);
    transition: left 0.7s var(--ease-out);
}

.btn:hover::before { left: 100%; }

.btn-primary {
    background: var(--accent-green); color: #000;
    box-shadow: 0 4px 24px var(--accent-green-glow), 0 0 0 1px rgba(57,255,20,0.08);
}

.btn-primary:hover {
    box-shadow: 0 8px 50px var(--accent-green-glow), 0 0 80px rgba(57,255,20,0.1);
    transform: translateY(-3px); color: #000;
}

.btn-secondary {
    background: var(--accent-blue); color: #000;
    box-shadow: 0 4px 24px var(--accent-blue-glow);
}

.btn-secondary:hover {
    box-shadow: 0 8px 50px var(--accent-blue-glow);
    transform: translateY(-3px); color: #000;
}

.btn-ghost {
    background: transparent; color: var(--text-primary);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
}

.btn-ghost:hover {
    border-color: rgba(57, 255, 20, 0.3); color: var(--accent-green);
    box-shadow: 0 0 40px rgba(57, 255, 20, 0.06);
    transform: translateY(-3px);
}

.btn-icon { width: 16px; height: 16px; fill: currentColor; }

.magnetic-wrap { display: inline-block; padding: 8px; }


.stats-ribbon {
    padding: 48px 0;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
    position: relative; z-index: 1;
}

.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }

@media (max-width: 768px) {
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
}

.stat-item { position: relative; }

.stat-item:not(:last-child)::after {
    content: '';
    position: absolute; right: 0; top: 50%; transform: translateY(-50%);
    width: 1px; height: 40px; background: var(--border-subtle);
}

@media (max-width: 768px) { .stat-item:nth-child(2)::after { display: none; } }

.stat-number {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 900; letter-spacing: 2px; margin-bottom: 6px;
}

.stat-number .counter { display: inline-block; }
.stat-suffix { font-size: 0.6em; color: var(--accent-green); margin-left: 2px; }

.stat-label {
    font-family: var(--font-heading);
    font-size: 0.55rem; text-transform: uppercase;
    letter-spacing: 3px; color: var(--text-muted);
}


.meet-agents {
    padding: 120px 0;
    position: relative;
}


.agents-carousel {
    position: relative;
    margin-top: 64px;
    perspective: 1200px;
    display: flex;
    flex-direction: column;
    align-items: center;
}


.agents-carousel-track {
    position: relative;
    width: 380px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .agents-carousel-track { width: 300px; }
}

.agent-card {
    position: absolute;
    top: 0;
    left: 0;
    width: 380px;
    border-radius: 18px;
    cursor: pointer;
    transform-style: preserve-3d;
    will-change: transform, opacity;
    transition: transform 0.8s cubic-bezier(0.23, 1, 0.32, 1),
                opacity 0.8s cubic-bezier(0.23, 1, 0.32, 1),
                filter 0.8s ease;
}

@media (max-width: 768px) {
    .agent-card { width: 300px; }
}


.agent-card.pos-center {
    z-index: 3;
    transform: translateX(0) rotateY(0deg) scale(1);
    opacity: 1;
    filter: brightness(1);
}


.agent-card.pos-right {
    position: absolute;
    top: 16px;
    left: 0;
    z-index: 2;
    transform: translateX(55px) scale(0.93) rotateY(-8deg);
    opacity: 1;
    filter: brightness(0.8);
    cursor: pointer;
}

.agent-card.pos-right:hover {
    transform: translateX(62px) scale(0.94) rotateY(-6deg);
    filter: brightness(0.9);
}

.agent-card.pos-right .agent-card-content {
    border-right: 2px solid rgba(57,255,20,0.25);
}

.agent-card.pos-right:hover .agent-card-content {
    border-right: 2px solid rgba(57,255,20,0.5);
    box-shadow:
        0 25px 50px rgba(0,0,0,0.5),
        5px 0 25px rgba(57,255,20,0.1);
}

.agent-card.pos-right .agent-card-border {
    opacity: 0.3;
}


.agent-card.pos-left {
    position: absolute;
    top: 16px;
    left: 0;
    z-index: 1;
    transform: translateX(-55px) scale(0.93) rotateY(8deg);
    opacity: 1;
    filter: brightness(0.8);
    cursor: pointer;
}

.agent-card.pos-left:hover {
    transform: translateX(-62px) scale(0.94) rotateY(6deg);
    filter: brightness(0.9);
}

.agent-card.pos-left .agent-card-content {
    border-left: 2px solid rgba(0,212,255,0.25);
}

.agent-card.pos-left:hover .agent-card-content {
    border-left: 2px solid rgba(0,212,255,0.5);
    box-shadow:
        0 25px 50px rgba(0,0,0,0.5),
        -5px 0 25px rgba(0,212,255,0.1);
}

.agent-card.pos-left .agent-card-border {
    opacity: 0.3;
}

@media (max-width: 768px) {
    .agent-card.pos-right {
        transform: translateX(40px) scale(0.91) rotateY(-8deg);
    }
    .agent-card.pos-right:hover {
        transform: translateX(45px) scale(0.92) rotateY(-6deg);
    }
    .agent-card.pos-left {
        transform: translateX(-40px) scale(0.91) rotateY(8deg);
    }
    .agent-card.pos-left:hover {
        transform: translateX(-45px) scale(0.92) rotateY(6deg);
    }
}


.agents-dots {
    display: flex;
    gap: 10px;
    margin-top: 24px;
    z-index: 5;
    position: relative;
}

.agent-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 1.5px solid rgba(57,255,20,0.3);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.agent-dot.active {
    background: var(--accent-green);
    border-color: var(--accent-green);
    box-shadow: 0 0 10px rgba(57,255,20,0.4);
    transform: scale(1.2);
}


.agent-card-foil {
    position: absolute;
    inset: 0;
    border-radius: 18px;
    z-index: 3;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s ease;
    background: linear-gradient(
        125deg,
        rgba(57,255,20,0) 0%, rgba(57,255,20,0.08) 20%,
        rgba(0,212,255,0.12) 35%, rgba(168,85,247,0.08) 50%,
        rgba(0,212,255,0.12) 65%, rgba(57,255,20,0.08) 80%,
        rgba(57,255,20,0) 100%
    );
    background-size: 400% 400%;
    animation: foilShift 3s ease infinite;
    mix-blend-mode: screen;
}

.agent-card:hover .agent-card-foil { opacity: 1; }

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


.agent-card-border {
    position: absolute;
    inset: -2px;
    border-radius: 20px;
    z-index: 0;
    opacity: 0;
    transition: opacity 0.5s ease;
    background: conic-gradient(
        from var(--border-angle, 0deg),
        rgba(57,255,20,0.6), rgba(0,212,255,0.4),
        rgba(168,85,247,0.3), rgba(57,255,20,0.6)
    );
    animation: borderSpin 4s linear infinite;
}

.agent-card:hover .agent-card-border { opacity: 1; }

@property --border-angle {
    syntax: "<angle>";
    initial-value: 0deg;
    inherits: false;
}

@keyframes borderSpin { to { --border-angle: 360deg; } }


.agent-card-content {
    position: relative;
    z-index: 1;
    border-radius: 18px;
    overflow: hidden;
    background: linear-gradient(175deg, #0e0e1c 0%, #060610 100%);
    box-shadow:
        0 25px 50px rgba(0,0,0,0.5),
        0 10px 20px rgba(0,0,0,0.3),
        inset 0 1px 0 rgba(255,255,255,0.06),
        inset 0 -1px 0 rgba(0,0,0,0.5);
}

.agent-card:hover .agent-card-content {
    box-shadow:
        0 35px 70px rgba(0,0,0,0.6),
        0 15px 30px rgba(0,0,0,0.4),
        0 0 80px rgba(57,255,20,0.06),
        inset 0 1px 0 rgba(255,255,255,0.08),
        inset 0 -1px 0 rgba(0,0,0,0.5);
}


.agent-img-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

.agent-img-wrapper::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 65%;
    background: linear-gradient(to top, #060610 0%, rgba(6,6,16,0.95) 20%, rgba(6,6,16,0.6) 50%, transparent 100%);
    pointer-events: none;
}

.agent-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform 0.6s var(--ease-out), filter 0.6s ease;
}


.agent-img[alt="Agia Prime"] {
    object-fit: contain;
    object-position: center top;
    background: linear-gradient(175deg, #0e0e1c 0%, #060610 100%);
}

.agent-card:hover .agent-img {
    transform: scale(1.08);
    filter: brightness(1.1) contrast(1.05);
}


.agent-info {
    padding: 0 28px 28px;
    text-align: center;
}

.agent-rank {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.5rem;
    font-weight: 900;
    letter-spacing: 4px;
    padding: 5px 16px;
    border-radius: 4px;
    background: rgba(57,255,20,0.08);
    border: 1px solid rgba(57,255,20,0.2);
    color: var(--accent-green);
    margin-bottom: 14px;
}

.agent-name {
    font-family: var(--font-heading);
    font-size: clamp(1.6rem, 4vw, 2.2rem);
    font-weight: 900;
    letter-spacing: 6px;
    text-transform: uppercase;
    margin: 0 0 8px;
    background: linear-gradient(135deg, #fff 0%, var(--accent-green) 50%, var(--accent-blue) 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: nameShine 3s ease infinite;
}

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

.agent-role {
    font-family: var(--font-heading);
    font-size: 0.55rem;
    font-weight: 400;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-muted);
}

.agent-divider {
    width: 50px;
    height: 2px;
    background: var(--gradient-main);
    margin: 20px auto;
    border-radius: 1px;
    opacity: 0.5;
}

.agent-desc {
    font-size: 0.95rem;
    line-height: 1.75;
    color: rgba(255,255,255,0.85);
    margin-bottom: 24px;
    letter-spacing: 0.2px;
    font-weight: 400;
}


.agent-stats {
    display: flex;
    border-top: 1px solid rgba(255,255,255,0.06);
    padding-top: 20px;
}

.agent-stat {
    flex: 1;
    text-align: center;
    position: relative;
}

.agent-stat:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0; top: 4px; bottom: 4px;
    width: 1px;
    background: rgba(255,255,255,0.06);
}

.agent-stat-val {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--accent-green);
    letter-spacing: 1px;
    text-shadow: 0 0 12px rgba(57,255,20,0.3);
}

.agent-stat-label {
    display: block;
    font-size: 0.5rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-top: 4px;
}


.how-it-works {
    padding: 100px 0;
    background: var(--bg-primary);
    position: relative;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 60px;
    position: relative;
}

.step-card {
    position: relative;
    text-align: center;
    padding: 40px 28px;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-xl);
    backdrop-filter: blur(15px);
    transition: all var(--transition);
}

.step-card:hover {
    transform: translateY(-6px);
    border-color: var(--border-glow);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 30px rgba(57, 255, 20, 0.03);
}

.step-number {
    font-family: var(--font-heading);
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--accent-green);
    opacity: 0.4;
    margin-bottom: 20px;
}

.step-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(57, 255, 20, 0.05);
    border: 1px solid rgba(57, 255, 20, 0.1);
}

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

.step-card:nth-child(2) .step-icon {
    background: rgba(0, 212, 255, 0.05);
    border-color: rgba(0, 212, 255, 0.1);
}

.step-card:nth-child(2) .step-icon svg { color: var(--accent-blue); }

.step-card:nth-child(3) .step-icon {
    background: rgba(168, 85, 247, 0.05);
    border-color: rgba(168, 85, 247, 0.1);
}

.step-card:nth-child(3) .step-icon svg { color: var(--accent-purple); }

.step-title {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 14px;
}

.step-desc {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
}


.step-connector {
    position: absolute;
    right: -28px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
}

.step-connector svg {
    width: 24px;
    height: 12px;
    color: rgba(57, 255, 20, 0.2);
}

@media (max-width: 768px) {
    .steps-grid { grid-template-columns: 1fr; gap: 20px; }
    .step-connector { display: none; }
    .step-card { padding: 32px 24px; }
}


.audio-vault {
    padding: 120px 0;
    background: var(--bg-primary);
    position: relative; overflow: hidden;
}

.audio-vault::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse at 20% 50%, rgba(57,255,20,0.015) 0%, transparent 50%),
                radial-gradient(ellipse at 80% 50%, rgba(0,212,255,0.015) 0%, transparent 50%);
    pointer-events: none;
}


.audio-scroll-wrapper {
    position: relative;
    z-index: 2;
}


.vault-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(57, 255, 20, 0.3);
    background: rgba(6, 6, 16, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: var(--accent-green);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.35s, border-color 0.3s, background 0.3s, box-shadow 0.3s, transform 0.2s;
    pointer-events: none;
}
.vault-arrow svg {
    width: 22px;
    height: 22px;
}
.vault-arrow-left { left: 24px; }
.vault-arrow-right { right: 24px; }


.audio-scroll-wrapper:hover .vault-arrow {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(-50%);
}
.vault-arrow:hover {
    border-color: var(--accent-green);
    background: rgba(57, 255, 20, 0.1);
    box-shadow: 0 0 24px rgba(57, 255, 20, 0.2), inset 0 0 12px rgba(57, 255, 20, 0.05);
    transform: translateY(-50%) scale(1.1);
}
.vault-arrow:active {
    transform: translateY(-50%) scale(0.92);
}


@media (max-width: 768px) {
    .vault-arrow { display: none; }
}

.audio-scroll-container {
    width: 100%;
    overflow-x: auto; overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    padding: 20px 0 40px;
    padding-left: max(32px, calc((100vw - 1200px) / 2 + 32px));
    padding-right: max(32px, calc((100vw - 1200px) / 2 + 32px));
}

.audio-scroll-container::-webkit-scrollbar { display: none; }

.audio-scroll-track { display: flex; gap: 32px; width: max-content; }

.track-card {
    scroll-snap-align: center;
    width: min(420px, 80vw);
    flex-shrink: 0;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: all var(--transition);
    backdrop-filter: blur(20px);
    position: relative;
}

.track-card::before {
    content: '';
    position: absolute; inset: 0;
    border-radius: var(--radius-xl);
    padding: 1px;
    background: linear-gradient(135deg, rgba(57,255,20,0.12), transparent 50%, rgba(0,212,255,0.12));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none; opacity: 0;
    transition: opacity var(--transition);
}

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

.track-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6), 0 0 50px rgba(57,255,20,0.05);
}

.track-artwork-wrapper { position: relative; overflow: hidden; }

.track-artwork {
    width: 100%; aspect-ratio: 1; object-fit: cover;
    background: var(--bg-tertiary);
    transition: transform 0.7s var(--ease-out);
}

.track-card:hover .track-artwork { transform: scale(1.06); }

.track-artwork-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, var(--bg-primary) 0%, rgba(6,6,10,0.4) 30%, transparent 60%);
    pointer-events: none;
}


.track-hover-lyrics {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    text-align: center;
    padding: 0 20px;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.4s var(--ease-out), transform 0.4s var(--ease-out);
    pointer-events: none;
    z-index: 2;
}

.track-hover-lyrics p {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-style: italic;
    color: rgba(255, 255, 255, 0.85);
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.8);
    line-height: 1.5;
    margin: 0;
}

.track-card:hover .track-hover-lyrics {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 768px) {
    .track-hover-lyrics { display: none; }
}

.track-number {
    position: absolute; top: 20px; left: 20px;
    font-family: var(--font-heading);
    font-size: 0.55rem; font-weight: 700; letter-spacing: 3px;
    color: rgba(255,255,255,0.5);
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(10px);
    padding: 6px 14px; border-radius: 100px;
    border: 1px solid rgba(255,255,255,0.08);
}

.track-info { padding: 28px; }

.track-genre {
    font-family: var(--font-heading);
    font-size: 0.5rem; font-weight: 500;
    text-transform: uppercase; letter-spacing: 4px;
    color: var(--accent-green); margin-bottom: 10px;
}

.track-title {
    font-family: var(--font-heading);
    font-size: 1.15rem; font-weight: 900;
    text-transform: uppercase; letter-spacing: 1px;
    margin-bottom: 4px;
}

.track-artist { color: var(--text-muted); font-size: 0.85rem; margin-bottom: 24px; }


.track-duration-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    font-family: var(--font-heading);
    font-size: 0.55rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.7);
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    padding: 5px 12px;
    border-radius: 100px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    z-index: 2;
}


.track-card-soon {
    opacity: 0.65;
    cursor: default;
}

.track-card-soon:hover {
    transform: translateY(-5px) scale(1.01);
    opacity: 0.8;
}

.track-artwork-placeholder {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--bg-secondary), var(--bg-tertiary));
    position: relative;
    overflow: hidden;
}

.track-artwork-placeholder::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(57, 255, 20, 0.03), rgba(0, 212, 255, 0.03));
    animation: soonShimmer 3s ease-in-out infinite;
}

@keyframes soonShimmer {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

.soon-icon {
    position: relative;
    z-index: 1;
}

.soon-icon svg {
    width: 48px;
    height: 48px;
    color: rgba(57, 255, 20, 0.2);
    animation: soonSpin 8s linear infinite;
}

@keyframes soonSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.soon-badge {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-heading);
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent-green);
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    padding: 8px 20px;
    border-radius: 100px;
    border: 1px solid rgba(57, 255, 20, 0.15);
    white-space: nowrap;
    z-index: 2;
}

.soon-desc {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.5;
}


.audio-player {
    display: flex; align-items: center; gap: 14px;
    padding: 16px 20px;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius);
    backdrop-filter: blur(10px);
}

.play-btn {
    width: 48px; height: 48px; border-radius: 50%;
    background: var(--gradient-main); border: none;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    transition: all var(--transition); position: relative;
}

.play-btn::after {
    content: '';
    position: absolute; inset: -4px; border-radius: 50%;
    background: var(--gradient-main); opacity: 0; z-index: -1;
    filter: blur(12px);
    transition: opacity var(--transition);
}

.play-btn:hover::after { opacity: 0.5; }
.play-btn:hover { transform: scale(1.12); }
.play-btn svg { width: 18px; height: 18px; fill: #000; }

.progress-container { flex: 1; display: flex; flex-direction: column; gap: 8px; }

.progress-bar {
    width: 100%; height: 4px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px; cursor: pointer; position: relative;
}

.progress-fill {
    height: 100%;
    background: var(--gradient-main);
    border-radius: 4px; width: 0%;
    position: relative;
    transition: width 0.1s linear;
}

.progress-fill::after {
    content: '';
    position: absolute; right: -6px; top: 50%;
    transform: translateY(-50%) scale(0);
    width: 12px; height: 12px; border-radius: 50%;
    background: var(--accent-green);
    box-shadow: 0 0 12px var(--accent-green-glow);
    transition: transform var(--transition);
}

.audio-player:hover .progress-fill::after { transform: translateY(-50%) scale(1); }

.time-display {
    display: flex; justify-content: space-between;
    font-size: 0.6rem; color: var(--text-muted);
    font-variant-numeric: tabular-nums; letter-spacing: 1px;
}

.audio-visualizer { display: flex; align-items: flex-end; gap: 2px; height: 24px; margin-left: 6px; }

.audio-visualizer .bar {
    width: 3px; background: var(--accent-green);
    border-radius: 2px; opacity: 0.25;
    transition: height 0.15s ease;
}

.audio-visualizer.active .bar { animation: vizBar 0.7s ease-in-out infinite alternate; opacity: 1; }

.audio-visualizer .bar:nth-child(1) { height: 5px; animation-delay: 0s; }
.audio-visualizer .bar:nth-child(2) { height: 14px; animation-delay: 0.08s; }
.audio-visualizer .bar:nth-child(3) { height: 8px; animation-delay: 0.16s; }
.audio-visualizer .bar:nth-child(4) { height: 18px; animation-delay: 0.12s; }
.audio-visualizer .bar:nth-child(5) { height: 10px; animation-delay: 0.04s; }

@keyframes vizBar { 0% { height: 4px; } 100% { height: 24px; } }


.scroll-indicator { display: flex; justify-content: center; gap: 12px; margin-top: 32px; }

.scroll-dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: var(--text-muted); border: none;
    cursor: pointer; transition: all var(--transition); padding: 0;
}

.scroll-dot.active {
    background: var(--accent-green);
    box-shadow: 0 0 10px var(--accent-green-glow);
    width: 24px; border-radius: 4px;
}


.now-playing-overlay {
    position: fixed; inset: 0; z-index: 5000;
    background: rgba(2, 2, 4, 0.96);
    backdrop-filter: blur(40px);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; visibility: hidden;
    transition: opacity 0.5s var(--ease-out), visibility 0.5s;
}

.now-playing-overlay.active { opacity: 1; visibility: visible; }

.now-playing-content {
    text-align: center; max-width: 500px; padding: 40px;
    transform: scale(0.9) translateY(20px);
    transition: transform 0.6s var(--ease-spring);
}

.now-playing-overlay.active .now-playing-content { transform: scale(1) translateY(0); }

.now-playing-artwork {
    width: 280px; height: 280px;
    border-radius: var(--radius-xl); object-fit: cover;
    margin: 0 auto 32px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
    background: var(--bg-tertiary);
    animation: artworkPulse 4s ease-in-out infinite;
}

@keyframes artworkPulse {
    0%, 100% { box-shadow: 0 30px 80px rgba(0,0,0,0.6), 0 0 0 rgba(57,255,20,0); }
    50% { box-shadow: 0 30px 80px rgba(0,0,0,0.6), 0 0 60px rgba(57,255,20,0.08); }
}

.now-playing-title {
    font-family: var(--font-heading);
    font-size: 1.3rem; font-weight: 900;
    text-transform: uppercase; letter-spacing: 2px; margin-bottom: 6px;
}

.now-playing-artist { color: var(--text-muted); margin-bottom: 32px; }

.now-playing-player { padding: 0; background: none; border: none; backdrop-filter: none; }

.now-playing-close {
    position: absolute; top: 32px; right: 32px;
    width: 48px; height: 48px; border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-subtle);
    color: var(--text-secondary); font-size: 1.3rem;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: all var(--transition);
}

.now-playing-close:hover { background: rgba(255, 255, 255, 0.1); color: var(--text-primary); }


.arsenal { padding: 120px 0; background: var(--bg-secondary); position: relative; }

.arsenal-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }

@media (max-width: 768px) { .arsenal-grid { grid-template-columns: 1fr; } }

.download-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-xl);
    padding: 52px 44px; text-align: center;
    transition: all var(--transition);
    backdrop-filter: blur(20px);
    position: relative; overflow: hidden;
}

.download-card::after {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(circle at 50% 120%, var(--accent-blue-dim) 0%, transparent 60%);
    pointer-events: none; opacity: 0;
    transition: opacity var(--transition);
}

.download-card:hover::after { opacity: 1; }

.download-card:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 212, 255, 0.12);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}

.download-image-wrapper { position: relative; margin-bottom: 36px; perspective: 600px; }

.download-image {
    width: 100%; max-width: 220px; margin: 0 auto;
    border-radius: var(--radius-lg);
    background: var(--bg-tertiary);
    aspect-ratio: 3/4; object-fit: cover;
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.5);
    transition: transform 0.6s var(--ease-out);
}

.download-card:hover .download-image { transform: translateY(-12px) rotateX(4deg) scale(1.03); }

.download-badge {
    position: absolute; top: -10px;
    right: calc(50% - 130px);
    font-family: var(--font-heading);
    font-size: 0.5rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 2px;
    padding: 8px 18px; border-radius: 100px;
    background: var(--accent-blue); color: #000;
    box-shadow: 0 4px 20px var(--accent-blue-glow);
}

.download-title {
    font-family: var(--font-heading);
    font-size: 1rem; font-weight: 900;
    text-transform: uppercase; letter-spacing: 1.5px;
    margin-bottom: 12px;
    position: relative; z-index: 1;
}

.download-desc {
    color: var(--text-secondary); font-size: 0.95rem;
    margin-bottom: 32px; line-height: 1.8;
    position: relative; z-index: 1;
}


.methodology { padding: 120px 0; background: var(--bg-primary); position: relative; }

.methodology-content { max-width: 900px; margin: 0 auto; }

.methodology-content > p {
    color: var(--text-secondary);
    margin-bottom: 24px; font-size: 1.1rem;
    line-height: 1.9; font-weight: 300;
    text-align: center; max-width: 700px;
    margin-left: auto; margin-right: auto;
}

.methodology-features {
    list-style: none; margin-top: 48px;
    display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
}

@media (max-width: 768px) { .methodology-features { grid-template-columns: 1fr; } }

.methodology-features li {
    display: flex; align-items: flex-start; gap: 20px;
    padding: 32px;
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(10px);
    transition: all var(--transition);
}

.methodology-features li:hover {
    border-color: var(--border-glow);
    transform: translateY(-6px);
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.3);
}

.feature-icon {
    width: 52px; height: 52px;
    border-radius: var(--radius);
    background: var(--accent-green-dim);
    border: 1px solid rgba(57, 255, 20, 0.08);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0; font-size: 1.4rem;
    transition: all var(--transition);
}

.methodology-features li:hover .feature-icon {
    background: var(--accent-green-glow);
    box-shadow: 0 0 24px var(--accent-green-dim);
}

.feature-text h4 {
    font-family: var(--font-heading);
    font-size: 0.72rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 1.5px;
    margin-bottom: 8px;
}

.feature-text p { color: var(--text-secondary); font-size: 0.9rem; line-height: 1.7; }


.ai-proud {
    padding: 120px 0;
    position: relative;
}

.ai-proud .section-container {
    max-width: 780px;
}

.ai-proud-content {
    margin-top: 48px;
}

.ai-proud-content p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.85;
    margin-bottom: 24px;
}

.ai-proud-content strong {
    color: var(--text-primary);
    font-weight: 700;
}

.ai-proud-lead {
    font-size: 1.2rem !important;
    color: var(--text-primary) !important;
    font-weight: 600;
}

.ai-proud-quote {
    margin: 40px 0;
    padding: 28px 32px;
    border-left: 3px solid var(--accent-green);
    background: rgba(57, 255, 20, 0.03);
    border-radius: 0 var(--radius) var(--radius) 0;
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.85;
}

.ai-proud-future {
    font-size: 1.15rem !important;
    color: var(--text-primary) !important;
    font-weight: 600;
    margin-top: 36px !important;
    margin-bottom: 8px !important;
}

.ai-proud-cta {
    font-family: var(--font-heading);
    font-size: 0.85rem !important;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0 !important;
}


.email-capture {
    padding: 160px 0; background: var(--bg-secondary);
    position: relative; overflow: hidden;
}

.email-capture .orb {
    position: absolute; border-radius: 50%;
    pointer-events: none; filter: blur(100px);
}

.email-capture .orb-1 {
    width: 500px; height: 500px;
    background: rgba(57, 255, 20, 0.05);
    top: -120px; left: -120px;
    animation: orbFloat 12s ease-in-out infinite;
}

.email-capture .orb-2 {
    width: 400px; height: 400px;
    background: rgba(0, 212, 255, 0.04);
    bottom: -100px; right: -100px;
    animation: orbFloat 15s ease-in-out infinite reverse;
}

.email-capture-inner {
    text-align: center; max-width: 660px;
    margin: 0 auto; position: relative; z-index: 1;
}

.email-capture .section-title { font-size: clamp(1.8rem, 4.5vw, 3.2rem); }
.email-capture .section-subtitle { margin-left: auto; margin-right: auto; margin-bottom: 44px; }
.email-capture .section-label { justify-content: center; }

.email-form {
    display: flex; gap: 0; max-width: 540px; margin: 0 auto;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg); padding: 6px;
    transition: all var(--transition-slow);
}

.email-form:focus-within {
    border-color: rgba(57, 255, 20, 0.2);
    box-shadow: 0 0 40px rgba(57, 255, 20, 0.06), 0 24px 80px rgba(0, 0, 0, 0.3);
}

@media (max-width: 500px) { .email-form { flex-direction: column; gap: 8px; } }

.email-input {
    flex: 1; padding: 18px 24px;
    background: transparent; border: none;
    color: var(--text-primary); font-family: var(--font-body);
    font-size: 0.95rem; outline: none;
}

.email-input::placeholder { color: var(--text-muted); }
.email-form .btn { border-radius: calc(var(--radius-lg) - 6px); padding: 18px 36px; white-space: nowrap; }

.email-success {
    display: none; color: var(--accent-green);
    font-family: var(--font-heading);
    font-size: 0.75rem; text-transform: uppercase;
    letter-spacing: 3px; margin-top: 28px;
    animation: fadeInUp 0.6s var(--ease-out);
}

.email-error {
    display: none; color: #ff4466;
    font-size: 0.85rem; margin-top: 16px;
    animation: fadeInUp 0.5s var(--ease-out);
}

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


.site-footer {
    padding: 64px 0 40px; background: var(--bg-void);
    border-top: 1px solid var(--border-subtle);
}

.footer-container {
    max-width: 1200px; margin: 0 auto; padding: 0 32px;
    display: grid; grid-template-columns: 1fr auto 1fr; gap: 40px; align-items: start;
}

@media (max-width: 768px) { .footer-container { grid-template-columns: 1fr; text-align: center; gap: 28px; } }

.footer-left p { color: var(--text-muted); font-size: 0.76rem; line-height: 1.7; }
.footer-center { display: flex; gap: 28px; }
.footer-center a { color: var(--text-muted); font-size: 0.76rem; transition: color var(--transition); position: relative; }
.footer-center a::after { content: ''; position: absolute; bottom: -2px; left: 0; width: 0; height: 1px; background: var(--accent-green); transition: width var(--transition); }
.footer-center a:hover { color: var(--text-primary); }
.footer-center a:hover::after { width: 100%; }
.footer-right { text-align: right; }

@media (max-width: 768px) { .footer-right { text-align: center; } .footer-center { justify-content: center; } }

.footer-right p { color: var(--text-muted); font-size: 0.76rem; margin-bottom: 4px; }
.footer-right a { font-size: 0.76rem; color: var(--accent-green); }

.footer-bottom {
    max-width: 1200px; margin: 44px auto 0;
    padding: 24px 32px 0; border-top: 1px solid var(--border-subtle);
    text-align: center;
}

.footer-bottom p {
    font-family: var(--font-heading);
    font-size: 0.45rem; letter-spacing: 8px;
    text-transform: uppercase; color: var(--text-muted);
}


::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg-void); }
::-webkit-scrollbar-thumb { background: var(--bg-tertiary); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--text-muted); }



.page-section {
    padding: 140px 0 80px;
    min-height: 100vh;
    position: relative;
}

.page-header { margin-bottom: 48px; }

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-size: 0.55rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--text-muted);
    margin-bottom: 24px;
    transition: color var(--transition);
}
.back-link:hover { color: var(--accent-green); }

.view-all-wrapper { text-align: center; margin-top: 40px; }

.btn-icon-right {
    width: 16px; height: 16px;
    margin-left: 8px;
    vertical-align: middle;
}

.items-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.track-card-grid {
    width: 100%;
    scroll-snap-align: unset;
    flex-shrink: unset;
}

.download-card-grid { padding: 36px 28px; }


.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 64px;
    flex-wrap: wrap;
}

.pagination-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-size: 0.55rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 12px 24px;
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: var(--bg-card);
    color: var(--text-primary);
    text-decoration: none;
    transition: all var(--transition);
    backdrop-filter: blur(10px);
}

.pagination-btn:hover {
    border-color: rgba(57, 255, 20, 0.3);
    color: var(--accent-green);
    box-shadow: 0 0 30px rgba(57, 255, 20, 0.06);
    transform: translateY(-2px);
}

.pagination-numbers { display: flex; align-items: center; gap: 4px; }

.pagination-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px; height: 40px;
    border-radius: var(--radius);
    font-family: var(--font-heading);
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--text-secondary);
    text-decoration: none;
    border: 1px solid transparent;
    transition: all var(--transition);
}

.pagination-num:hover {
    color: var(--accent-green);
    border-color: rgba(57, 255, 20, 0.15);
}

.pagination-num.active {
    background: var(--accent-green);
    color: #000;
    border-color: var(--accent-green);
    box-shadow: 0 4px 20px var(--accent-green-glow);
}

.pagination-ellipsis {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px; height: 40px;
    color: var(--text-muted);
    font-size: 0.8rem;
}

@media (max-width: 1024px) {
    .items-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
    .items-grid { grid-template-columns: 1fr; }
    .page-section { padding: 120px 0 60px; }
    .download-card-grid { padding: 40px 32px; }
    .pagination { gap: 6px; }
    .pagination-btn { padding: 10px 16px; font-size: 0.5rem; }
    .pagination-num { width: 36px; height: 36px; font-size: 0.55rem; }
}


.video-gallery { padding: 120px 0; }

.video-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-top: 48px;
}


.video-grid:has(.video-card:nth-child(2)) { grid-template-columns: repeat(2, 1fr); }
.video-grid:has(.video-card:nth-child(3)) { grid-template-columns: repeat(3, 1fr); }

.video-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.video-card:hover {
    transform: translateY(-6px);
    border-color: rgba(57, 255, 20, 0.25);
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.5), 0 0 60px rgba(57, 255, 20, 0.08);
}

.video-embed-wrapper {
    position: relative;
    padding-bottom: 56.25%; 
    background: #000;
    border-bottom: 1px solid var(--border-subtle);
}

.video-embed-wrapper iframe {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.yt-facade {
    cursor: pointer;
}

.yt-thumb {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.yt-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: none;
    border: none;
    cursor: pointer;
    opacity: 0.85;
    transition: opacity 0.3s, transform 0.3s;
    padding: 0;
}

.yt-facade:hover .yt-play {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
}


.video-info { padding: 28px 32px; }

.video-title {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.video-desc {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.7;
}


.video-card-grid { width: 100%; }

@media (max-width: 1024px) {
    .video-grid:has(.video-card:nth-child(3)) { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
    .video-gallery { padding: 80px 0; }
    .video-grid, .video-grid:has(.video-card:nth-child(2)), .video-grid:has(.video-card:nth-child(3)) {
        grid-template-columns: 1fr;
    }
    .video-grid { gap: 24px; }
    .video-info { padding: 20px; }
    .video-title { font-size: 0.75rem; }
    .video-desc { font-size: 0.9rem; }
}

::selection { background: rgba(57, 255, 20, 0.2); color: var(--text-primary); }
