:root {
    --bg-dark: #050505;
    --text-main: #ffffff;
    --text-muted: #a0a0a0;
    --neon-purple: #b026ff;
    --neon-blue: #00f3ff;
    --neon-pink: #ff007f;
    --glass-bg: rgba(25, 25, 30, 0.4);
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    --font-heading: 'Space Grotesk', sans-serif;
    --font-body: 'Inter', sans-serif;
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

body, html {
    width: 100%;
    overflow-x: hidden;
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-body);
    scroll-behavior: smooth;
    /* Hide default cursor to use custom cursor */
    cursor: none;
}

/* ------------------------------------- */
/* CUSTOM CURSOR                         */
/* ------------------------------------- */
.cursor {
    width: 8px;
    height: 8px;
    background-color: var(--neon-blue);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: transform 0.1s ease;
    mix-blend-mode: difference;
}

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

/* When hovering over clickable items */
.hover-target:hover ~ .cursor-follower,
a:hover ~ .cursor-follower,
button:hover ~ .cursor-follower {
    width: 60px;
    height: 60px;
    background-color: rgba(0, 243, 255, 0.1);
    border-color: var(--neon-pink);
}

/* Make sure all interactive elements don't show default cursor */
a, button, input, .hover-target {
    cursor: none;
}

/* ------------------------------------- */
/* LOADING SCREEN                        */
/* ------------------------------------- */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--bg-dark);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.loader {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.loader .circle {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background-color: var(--neon-purple);
    animation: bounce 0.5s alternate infinite ease;
}

.loader .circle:nth-child(2) {
    background-color: var(--neon-blue);
    animation-delay: 0.16s;
}

.loader .circle:nth-child(3) {
    background-color: var(--neon-pink);
    animation-delay: 0.32s;
}

@keyframes bounce {
    0% { transform: translateY(0); }
    100% { transform: translateY(-20px); }
}

.loading-text {
    font-family: var(--font-heading);
    letter-spacing: 5px;
    color: var(--text-main);
    text-transform: uppercase;
    font-size: 1.2rem;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% { opacity: 0.5; text-shadow: 0 0 0 transparent; }
    50% { opacity: 1; text-shadow: 0 0 10px var(--neon-blue); }
    100% { opacity: 0.5; text-shadow: 0 0 0 transparent; }
}

/* ------------------------------------- */
/* TYPOGRAPHY & UTILITIES                */
/* ------------------------------------- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
}

p {
    line-height: 1.6;
    color: var(--text-muted);
}

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

.text-center { text-align: center; }
.w-100 { width: 100%; }

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 32px;
    font-family: var(--font-heading);
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    border: none;
    outline: none;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    z-index: 1;
    /* Cyberpunk Angled Cut */
    clip-path: polygon(15px 0, 100% 0, calc(100% - 15px) 100%, 0 100%);
    background: transparent;
}

.btn-primary {
    background: linear-gradient(90deg, var(--neon-blue), var(--neon-purple));
    color: white;
    box-shadow: 0 0 20px rgba(0, 243, 255, 0.4);
}

.btn-primary:hover {
    box-shadow: 0 0 35px rgba(0, 243, 255, 0.8), inset 0 0 10px rgba(255,255,255,0.5);
    transform: scale(1.02);
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 50%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.6), transparent);
    transform: skewX(-20deg);
    transition: none;
    z-index: 1;
}

.btn-primary:hover::after {
    animation: scanLight 0.8s forwards;
}

@keyframes scanLight {
    0% { left: -100%; }
    100% { left: 200%; }
}

.btn-outline {
    background: rgba(0, 243, 255, 0.05);
    color: var(--neon-blue);
    /* Instead of real border (which clip-path cuts off), use an inset shadow */
    box-shadow: inset 0 0 0 2px var(--neon-blue);
    backdrop-filter: blur(5px);
}

.btn-outline:hover {
    background: rgba(0, 243, 255, 0.2);
    box-shadow: inset 0 0 0 2px #fff, 0 0 20px rgba(0, 243, 255, 0.5);
    color: white;
    transform: scale(1.02);
}

.btn-large {
    padding: 18px 48px;
    font-size: 1rem;
    clip-path: polygon(20px 0, 100% 0, calc(100% - 20px) 100%, 0 100%);
}

/* Scroll Animations */
.scroll-anim {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.scroll-anim.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ------------------------------------- */
/* NAVIGATION                            */
/* ------------------------------------- */
.nav-wrapper {
    position: fixed;
    top: 20px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    z-index: 1000;
    pointer-events: none; /* Allows clicking through wrapper */
    transition: var(--transition-smooth);
}

.nav-wrapper.scrolled {
    top: 10px;
}

.navbar-glass {
    pointer-events: auto; /* Re-enable clicks */
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    max-width: 1000px;
    padding: 12px 25px;
    background: rgba(15, 15, 20, 0.4);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: var(--transition-smooth);
}

.nav-wrapper.scrolled .navbar-glass {
    background: rgba(10, 10, 15, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.8), 0 0 15px rgba(176, 38, 255, 0.2);
}

.navbar-glass .logo {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 1px;
    background: linear-gradient(90deg, var(--text-main), var(--text-muted));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 8px;
    background: rgba(255,255,255,0.03);
    padding: 5px;
    border-radius: 30px;
    border: 1px solid rgba(255,255,255,0.05);
}

.nav-links li {
    display: flex;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    padding: 8px 18px;
    border-radius: 20px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-links a:hover {
    color: var(--text-main);
    background: rgba(255,255,255,0.1);
}

.btn-nav {
    padding: 10px 24px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    background: linear-gradient(45deg, var(--neon-purple), var(--neon-blue));
    color: white;
    border: none;
    box-shadow: 0 0 15px rgba(176, 38, 255, 0.3);
    transition: var(--transition-smooth);
}

.btn-nav:hover {
    box-shadow: 0 0 20px rgba(0, 243, 255, 0.6);
    transform: scale(1.05);
}

/* ------------------------------------- */
/* HERO SECTION                          */
/* ------------------------------------- */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 100px;
    padding-bottom: 50px;
}

/* HERO BACKGROUND - MESH GRADIENT */
.mesh-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    overflow: hidden;
    z-index: 0;
    background: #050505;
}

.blob {
    position: absolute;
    filter: blur(80px);
    border-radius: 50%;
    animation: moveBlob 20s infinite alternate ease-in-out;
    opacity: 0.5;
}

.blob.color1 { width: 50vw; height: 50vw; background: var(--neon-purple); top: -10%; left: -10%; animation-delay: 0s; }
.blob.color2 { width: 40vw; height: 40vw; background: var(--neon-blue); bottom: -20%; right: -10%; animation-delay: -5s; }
.blob.color3 { width: 30vw; height: 30vw; background: var(--neon-pink); top: 40%; left: 30%; animation-delay: -10s; mix-blend-mode: screen;}
.blob.color4 { width: 45vw; height: 45vw; background: #3a0088; top: 10%; right: 20%; animation-delay: -15s; }

@keyframes moveBlob {
    0% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(10vw, 5vh) scale(1.1); }
    66% { transform: translate(-5vw, 10vh) scale(0.9); }
    100% { transform: translate(5vw, -5vh) scale(1.05); }
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 10;
}

.status-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    border-radius: 30px;
    background: rgba(0, 243, 255, 0.05);
    border: 1px solid rgba(0, 243, 255, 0.2);
    color: var(--neon-blue);
    font-size: 0.75rem;
    font-family: var(--font-heading);
    letter-spacing: 2px;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background-color: var(--neon-blue);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--neon-blue);
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(0, 243, 255, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(0, 243, 255, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(0, 243, 255, 0); }
}

.hero-title {
    font-size: clamp(3rem, 5vw, 5.5rem);
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.text-transparent {
    color: transparent;
    -webkit-text-stroke: 1px rgba(255,255,255,0.8);
    transition: var(--transition-smooth);
}

.hero-title:hover .text-transparent {
    color: white;
    -webkit-text-stroke: 0;
    text-shadow: 0 0 20px rgba(255,255,255,0.5);
}

.text-neon {
    background: linear-gradient(90deg, var(--neon-purple), var(--neon-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-desc {
    font-size: 1.1rem;
    max-width: 500px;
    margin-bottom: 40px;
    color: var(--text-muted);
}

.hero-actions {
    display: flex;
    gap: 20px;
}

.btn-cyber {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 15px 30px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.1);
    color: white;
    font-family: var(--font-heading);
    font-weight: 600;
    letter-spacing: 2px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
    border-radius: 4px;
}

.btn-cyber::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(176,38,255,0.4), transparent);
    transition: left 0.5s ease;
}

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

.btn-cyber:hover {
    border-color: var(--neon-purple);
    box-shadow: 0 0 20px rgba(176,38,255,0.3);
}

.btn-cyber svg {
    width: 20px; height: 20px;
    stroke: currentColor; stroke-width: 2; fill: none; stroke-linecap: round; stroke-linejoin: round;
    transition: transform 0.3s;
}

.btn-cyber:hover svg {
    transform: translateX(5px);
}

/* HERO RIGHT - MUSIC PLAYER WIDGET */
.hero-right {
    position: relative;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    perspective: 1000px;
}

.music-player-widget {
    position: relative;
    width: 320px;
    height: 420px;
    transform: rotateY(-10deg) rotateX(5deg);
    transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.music-player-widget:hover {
    transform: rotateY(0) rotateX(0) scale(1.05);
}

/* Vinyl Record Animation */
.vinyl-record {
    position: absolute;
    top: 20px;
    right: -60px; /* Sticks out of the cover */
    width: 280px;
    height: 280px;
    background: #111;
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(0,0,0,0.8), inset 0 0 10px #000;
    z-index: 1;
    animation: spinVinyl 4s linear infinite;
    border: 2px solid #222;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: right 0.5s ease;
}

.music-player-widget:hover .vinyl-record {
    right: -100px; /* Sticks out more on hover */
}

.vinyl-grooves {
    position: absolute;
    width: 90%; height: 90%;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.05);
    box-shadow: inset 0 0 0 10px #1a1a1a, inset 0 0 0 11px rgba(255,255,255,0.05), inset 0 0 0 30px #111, inset 0 0 0 31px rgba(255,255,255,0.05);
}

.vinyl-label {
    width: 90px; height: 90px;
    background: linear-gradient(135deg, var(--neon-pink), var(--neon-purple));
    border-radius: 50%;
    position: relative;
    box-shadow: 0 0 10px rgba(0,0,0,0.5);
}

.vinyl-label::after {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 15px; height: 15px;
    background: #050505;
    border-radius: 50%;
}

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

/* Player Glass Cover */
.player-glass {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(20, 20, 25, 0.4);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 20px;
    padding: 20px;
    box-shadow: -15px 15px 40px rgba(0,0,0,0.6), inset 0 0 0 1px rgba(255,255,255,0.1);
    z-index: 2;
    display: flex;
    flex-direction: column;
}

.player-cover {
    width: 100%;
    height: 220px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.4);
    position: relative;
}

.player-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.music-player-widget:hover .player-cover img {
    transform: scale(1.05);
}

.player-info h4 {
    font-size: 1.2rem;
    color: white;
    margin-bottom: 5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.player-info p {
    font-size: 0.9rem;
    color: var(--neon-blue);
    margin-bottom: 15px;
}

.player-progress {
    margin-bottom: 20px;
}

.progress-bar {
    width: 100%;
    height: 4px;
    background: rgba(255,255,255,0.1);
    border-radius: 2px;
    margin-bottom: 8px;
    overflow: hidden;
}

.progress-fill {
    width: 35%;
    height: 100%;
    background: linear-gradient(90deg, var(--neon-blue), var(--neon-purple));
    border-radius: 2px;
    position: relative;
}

.progress-time {
    display: flex;
    justify-content: space-between;
    font-size: 0.7rem;
    color: var(--text-muted);
    font-family: var(--font-body);
}

.player-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 10px;
}

.control-btn {
    background: transparent;
    border: none;
    color: white;
    cursor: none; /* Uses custom cursor */
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.control-btn svg {
    width: 24px;
    height: 24px;
}

.control-btn:hover {
    color: var(--neon-blue);
    transform: scale(1.1);
}

.play-btn {
    width: 50px;
    height: 50px;
    background: white;
    color: black;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(255,255,255,0.3);
}

.play-btn:hover {
    background: var(--neon-purple);
    color: white;
    box-shadow: 0 5px 20px rgba(176,38,255,0.5);
    transform: scale(1.1);
}

/* ------------------------------------- */
/* MARQUEE SECTION                       */
/* ------------------------------------- */
.marquee-section {
    padding: 30px 0;
    background: linear-gradient(90deg, #050505, #111, #050505);
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    overflow: hidden;
}

.marquee-container {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
}

.marquee-content {
    display: inline-block;
    animation: marquee 20s linear infinite;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: rgba(255,255,255,0.3);
}

.marquee-content span {
    margin: 0 20px;
    transition: color 0.3s;
}

.marquee-content span:hover {
    color: var(--neon-purple);
}

.marquee-content .dot {
    color: var(--neon-pink);
    font-size: 1rem;
}

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

/* ------------------------------------- */
/* GLASSMORPHISM & FEATURES SECTION      */
/* ------------------------------------- */
.features-section, .pricing-section {
    padding: 120px 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    background: linear-gradient(to right, #fff, var(--text-muted));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 30px;
    box-shadow: var(--glass-shadow);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 50%; height: 100%;
    background: linear-gradient(to right, transparent, rgba(255,255,255,0.1), transparent);
    transform: skewX(-20deg);
    transition: 0.5s;
}

.glass-card:hover::before {
    left: 150%;
}

.glass-card:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 243, 255, 0.3);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5), 0 0 20px rgba(176, 38, 255, 0.2);
}

.glass-card .icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    display: inline-block;
}

.glass-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: white;
}

/* ------------------------------------- */
/* DASHBOARD SECTION                     */
/* ------------------------------------- */
.dashboard-section {
    padding: 100px 0;
}

.gradient-bg {
    background: radial-gradient(circle at center, #110526 0%, var(--bg-dark) 70%);
}

.dashboard-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.check-list {
    list-style: none;
    margin-top: 20px;
}

.check-list li {
    margin-bottom: 10px;
    color: var(--neon-blue);
    font-family: var(--font-heading);
    letter-spacing: 1px;
}

.dashboard-visual .glass-panel {
    background: rgba(20, 20, 25, 0.6);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5), inset 0 0 0 1px rgba(255,255,255,0.05);
    transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
    transition: transform 0.5s ease;
}

.dashboard-visual:hover .glass-panel {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}

.ui-header {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.ui-dot {
    width: 12px; height: 12px; border-radius: 50%;
}
.ui-dot.red { background: #ff5f56; }
.ui-dot.yellow { background: #ffbd2e; }
.ui-dot.green { background: #27c93f; }

.ui-chart-bar {
    height: 150px;
    display: flex;
    align-items: flex-end;
    gap: 15px;
    margin-bottom: 30px;
}

.ui-chart-bar .bar {
    flex: 1;
    background: linear-gradient(to top, var(--neon-purple), var(--neon-blue));
    border-radius: 4px 4px 0 0;
    opacity: 0.8;
    animation: growBar 2s ease-out forwards;
    transform-origin: bottom;
}

@keyframes growBar {
    0% { transform: scaleY(0); }
    100% { transform: scaleY(1); }
}

.ui-stats {
    display: flex;
    gap: 15px;
}

.ui-stats .stat-box {
    flex: 1;
    height: 60px;
    background: rgba(255,255,255,0.05);
    border-radius: 8px;
}

/* ------------------------------------- */
/* DASHBOARD SECTIONS (NEW 10)           */
/* ------------------------------------- */
.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--text-muted);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    z-index: 20;
}

.scroll-arrow {
    width: 30px; height: 30px;
    animation: bounceDown 2s infinite;
}

@keyframes bounceDown {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(10px); color: var(--neon-blue); }
}

.global-map-section, .analytics-section, .smart-links-section, 
.splits-section, .marketing-section, .fan-hub-section, .label-manager-section {
    padding: 120px 0;
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

/* 1. Global Map */
.vanta-bg canvas.vanta-canvas {
    mask-image: linear-gradient(to bottom, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to bottom, transparent, black 10%, black 90%, transparent);
}

.map-ui-overlay { display: flex; gap: 30px; justify-content: center; margin-top: 50px; }
.map-stat-card { background: var(--glass-bg); backdrop-filter: blur(12px); border: 1px solid var(--glass-border); padding: 20px 40px; border-radius: 15px; text-align: center; }
.stat-value { font-size: 2.5rem; font-weight: bold; margin-top: 10px; }

/* 2. Analytics */
.analytics-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.chart-card { min-height: 300px; display: flex; flex-direction: column; }
.chart-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 30px; }
.live-badge { background: rgba(255,0,0,0.2); color: #ff5f56; padding: 4px 10px; border-radius: 20px; font-size: 0.8rem; border: 1px solid #ff5f56; animation: pulse-red 2s infinite; }
@keyframes pulse-red { 0% {box-shadow: 0 0 0 0 rgba(255,95,86,0.4);} 70% {box-shadow: 0 0 0 10px rgba(255,95,86,0);} 100% {box-shadow: 0 0 0 0 rgba(255,95,86,0);} }
.css-chart-line { flex: 1; border-left: 2px solid rgba(255,255,255,0.1); border-bottom: 2px solid rgba(255,255,255,0.1); position: relative; }
.css-chart-line::after { content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(to top right, transparent 40%, var(--neon-blue) 41%, transparent 43%); background-size: 50px 50px; opacity: 0.5; }

/* 3. Smart Links */
.mobile-mockup-wrapper { display: flex; justify-content: center; margin-top: 50px; perspective: 1000px; }
.mobile-mockup { width: 300px; height: 600px; background: #000; border-radius: 40px; border: 8px solid #222; box-shadow: 0 0 50px rgba(176, 38, 255, 0.3); transform: rotateY(-15deg); transition: transform 0.5s; overflow: hidden; position: relative;}
.mobile-mockup:hover { transform: rotateY(0deg); }
.mockup-screen { padding: 20px; height: 100%; background: #111; display: flex; flex-direction: column; align-items: center;}
.mockup-img { width: 100%; border-radius: 10px; margin-top: 40px; box-shadow: 0 10px 20px rgba(0,0,0,0.5); }
.mt-10 { margin-top: 20px; }

/* 4. AI Mastering */
.ai-mastering-section { padding: 120px 0; background: #050505; border-top: 1px solid rgba(255,255,255,0.05); }
.waveform-container { display: flex; align-items: center; justify-content: center; gap: 5px; height: 150px; margin: 50px 0; }
.wave-bar { width: 15px; background: var(--neon-purple); border-radius: 10px; animation: eq 1s ease-in-out infinite alternate; opacity: 0.8; }
.wave-bar:nth-child(2n) { background: var(--neon-blue); animation-duration: 0.8s; }
.wave-bar:nth-child(3n) { background: var(--neon-pink); animation-duration: 1.2s; }
@keyframes eq { 0% { height: 10px; } 100% { height: 100px; } }

/* 5. Splits */
.splits-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.splits-visual { position: relative; height: 400px; }
.node { position: absolute; background: var(--glass-bg); backdrop-filter: blur(10px); border: 1px solid var(--neon-blue); padding: 15px 25px; border-radius: 30px; color: white; box-shadow: 0 0 20px rgba(0,243,255,0.2); }
.center-node { top: 50%; left: 50%; transform: translate(-50%, -50%); border-color: var(--neon-purple); z-index: 2;}
.producer-node { top: 20%; left: 20%; }
.feature-node { bottom: 20%; right: 20%; }

/* 6. Marketing */
.ad-stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-top: 50px; }
.stat-ring { border-radius: 50%; width: 250px; height: 250px; display: flex; flex-direction: column; justify-content: center; align-items: center; margin: 0 auto; border: 2px solid rgba(255,255,255,0.1); position: relative; }
.stat-ring::before { content:''; position: absolute; top:-2px; left:-2px; right:-2px; bottom:-2px; border-radius: 50%; border: 2px solid transparent; border-top-color: var(--neon-pink); animation: spin 4s linear infinite; }
.stat-ring h3 { font-size: 2.5rem; color: var(--neon-blue); }

/* 7. Web3 */
.web3-section { padding: 120px 0; }
.holo-cards-container { display: flex; justify-content: center; margin-top: 50px; perspective: 1000px;}
.holo-card { width: 300px; height: 450px; background: rgba(25,25,30,0.8); border-radius: 20px; position: relative; overflow: hidden; transform-style: preserve-3d; transition: transform 0.5s; border: 1px solid rgba(255,255,255,0.2); }
.holo-card:hover { transform: rotateY(15deg) rotateX(10deg); box-shadow: -20px 20px 50px rgba(0,0,0,0.5); }
.holo-foil { position: absolute; top:0; left:0; width:200%; height:200%; background: linear-gradient(135deg, rgba(255,255,255,0) 30%, rgba(255,255,255,0.8) 50%, rgba(255,255,255,0) 70%); transform: translate(-50%, -50%) rotate(45deg); opacity: 0; transition: opacity 0.3s; mix-blend-mode: color-dodge;}
.holo-card:hover .holo-foil { opacity: 0.5; animation: holo 2s infinite; }
@keyframes holo { 0% { transform: translate(-50%, -50%) rotate(45deg) translateY(-50%); } 100% { transform: translate(-50%, -50%) rotate(45deg) translateY(50%); } }
.holo-content { position: absolute; bottom: 30px; left: 30px; z-index: 2;}

/* 8. Fan Hub */
.chat-bubble-preview { margin-top: 50px; display: inline-block; }
.chat-message { background: linear-gradient(45deg, var(--neon-purple), var(--neon-blue)); padding: 20px 30px; border-radius: 30px 30px 30px 5px; font-size: 1.2rem; color: white; box-shadow: 0 10px 30px rgba(176,38,255,0.3); }

/* 9. Label Manager */
.data-grid-preview { margin-top: 50px; background: var(--glass-bg); backdrop-filter: blur(10px); border-radius: 15px; border: 1px solid var(--glass-border); overflow: hidden; }
.grid-row { display: grid; grid-template-columns: 1.5fr 2fr 1.5fr 1fr 1fr; padding: 20px; border-bottom: 1px solid rgba(255,255,255,0.05); }
.grid-row.header { font-weight: bold; color: var(--text-muted); background: rgba(0,0,0,0.2); }
.grid-row:hover:not(.header) { background: rgba(255,255,255,0.05); }

/* 10. Content ID */
.content-id-section { padding: 120px 0; background: #020202; }
.content-id-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.radar { width: 300px; height: 300px; border-radius: 50%; border: 2px solid var(--neon-blue); position: relative; background: repeating-radial-gradient(transparent, transparent 48px, rgba(0,243,255,0.1) 50px); margin: 0 auto; box-shadow: 0 0 50px rgba(0,243,255,0.1) inset;}
.radar-beam { position: absolute; top: 50%; left: 50%; width: 50%; height: 50%; background: conic-gradient(from 0deg, transparent 70%, rgba(0,243,255,0.5) 100%); transform-origin: 0 0; animation: spin 4s linear infinite; }
.radar-blip { position: absolute; width: 10px; height: 10px; background: var(--neon-pink); border-radius: 50%; box-shadow: 0 0 10px var(--neon-pink); opacity: 0; animation: blip 4s infinite; }
@keyframes blip { 0%, 5% { opacity: 1; transform: scale(1.5); } 20%, 100% { opacity: 0; transform: scale(1); } }
.mt-20 { margin-top: 20px; }

/* ------------------------------------- */
/* CTA / FOOTER                          */
/* ------------------------------------- */
.cta-section {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.cta-bg {
    background: linear-gradient(135deg, rgba(176,38,255,0.1) 0%, rgba(0,243,255,0.1) 100%);
    position: relative;
}

.cta-bg::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: url('data:image/svg+xml;utf8,<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><circle cx="2" cy="2" r="1" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.5;
}

.neon-text {
    font-size: 3rem;
    margin-bottom: 20px;
    text-shadow: 0 0 10px rgba(0,243,255,0.5), 0 0 20px rgba(0,243,255,0.3);
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 40px;
}

.modern-footer {
    background: #020202;
    padding-top: 80px;
    position: relative;
    overflow: hidden;
}

.footer-top-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 50px;
    margin-bottom: 60px;
}

.footer-brand-modern {
    max-width: 350px;
}

.footer-brand-modern .logo {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(90deg, var(--neon-blue), var(--neon-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-brand-modern p {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 30px;
}

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

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.1);
    color: white;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: var(--transition-smooth);
}

.social-links a:hover {
    background: var(--neon-purple);
    border-color: var(--neon-purple);
    box-shadow: 0 0 15px rgba(176, 38, 255, 0.4);
    transform: translateY(-5px);
}

.footer-links-modern {
    display: flex;
    gap: 80px;
    flex-wrap: wrap;
}

.link-col h4 {
    color: white;
    margin-bottom: 25px;
    font-size: 1.1rem;
}

.link-col a {
    display: block;
    color: var(--text-muted);
    text-decoration: none;
    margin-bottom: 15px;
    transition: color 0.3s;
}

.link-col a:hover {
    color: var(--neon-pink);
}

.footer-infinity-marquee {
    width: 100%;
    overflow: hidden;
    padding: 20px 0;
    background: #050505;
    border-top: 1px solid rgba(255,255,255,0.02);
}

.marquee-track {
    display: flex;
    white-space: nowrap;
    animation: infinityScroll 35s linear infinite;
}

.marquee-track span {
    font-family: var(--font-heading);
    font-size: 12vw;
    font-weight: 800;
    line-height: 1;
    padding: 0 2vw;
    color: rgba(255,255,255,0.03);
    text-transform: uppercase;
    transition: color 0.5s;
}

.marquee-track span.outline-text {
    color: transparent;
    -webkit-text-stroke: 2px rgba(255,255,255,0.1);
}

.marquee-track span:hover {
    color: var(--neon-purple);
    -webkit-text-stroke: 0px;
    text-shadow: 0 0 30px rgba(176,38,255,0.5);
}

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

.footer-bottom-modern {
    text-align: center;
    padding: 25px 0;
    background: #000;
    color: var(--text-muted);
    font-size: 0.9rem;
    border-top: 1px solid rgba(255,255,255,0.05);
}

/* ------------------------------------- */
/* MEDIA QUERIES                         */
/* ------------------------------------- */
@media (max-width: 768px) {
    .glitch-text { font-size: 3rem; }
    .dashboard-container { grid-template-columns: 1fr; }
    .hero-buttons { flex-direction: column; }
    .nav-links { display: none; }
    .footer-content { flex-direction: column; }
    
    /* Hide custom cursor on mobile */
    .cursor, .cursor-follower { display: none; }
    body, html, a, button, input, .hover-target { cursor: auto; }
}
