:root {
    --bg-color: #050508;
    --text-primary: #ffffff;
    --text-secondary: #94a3b8;
    --accent-primary: #8b5cf6;
    --accent-secondary: #ec4899;
    --accent-tertiary: #6366f1;
    --glass-bg: rgba(255, 255, 255, 0.02);
    --glass-border: rgba(255, 255, 255, 0.06);
    --glass-highlight: rgba(255, 255, 255, 0.08);
    --font-heading: 'Outfit', sans-serif;
    --card-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
    --card-hover-shadow: 0 20px 40px -12px rgba(0, 0, 0, 0.5);
    --transition-smooth: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    --hero-glow: radial-gradient(circle at 50% 50%, rgba(139, 92, 246, 0.15) 0%, transparent 70%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

body {
    font-family: var(--font-heading);
    background-color: var(--bg-color);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
    position: relative;
    -webkit-font-smoothing: antialiased;
}

/* Noise Texture Overlay */
body::after {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.04'/%3E%3C/svg%3E");
    opacity: 0.06;
    z-index: 9999;
    pointer-events: none;
}

/* Advanced Animated Background */
/* Advanced Animated Background - Aurora Borealis */
.background-gradient-mesh {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    background: #050508;
}

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

.mesh-1 {
    width: 70vw;
    height: 70vw;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.4), transparent 60%);
    top: -20%;
    left: -10%;
    animation-duration: 25s;
}

.mesh-2 {
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, rgba(236, 72, 153, 0.3), transparent 60%);
    bottom: -10%;
    right: -10%;
    animation-duration: 30s;
    animation-delay: -5s;
}

.mesh-3 {
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.35), transparent 60%);
    top: 30%;
    left: 40%;
    opacity: 0.5;
    animation-duration: 35s;
    animation-delay: -10s;
}

/* Extra Blob for Aurora richness */
.background-gradient-mesh::after {
    content: '';
    position: absolute;
    width: 40vw;
    height: 40vw;
    background: radial-gradient(circle, rgba(56, 189, 248, 0.2), transparent 70%);
    bottom: 20%;
    left: 10%;
    filter: blur(90px);
    animation: meshFloat 28s infinite alternate-reverse;
}

@keyframes meshFloat {
    0% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(30px, -50px) scale(1.1);
    }

    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }

    100% {
        transform: translate(30px, 50px) scale(1);
    }
}

/* Typography & Layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

h1,
h2,
h3 {
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

h1 {
    font-weight: 800;
    letter-spacing: -0.04em;
}

h2 {
    font-size: 3rem;
}

.text-center {
    text-align: center;
}

.gradient-text {
    background: linear-gradient(135deg, #fff 20%, #a5b4fc 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 20px 40px rgba(139, 92, 246, 0.25);
    display: inline-block;
    /* Fix for some browsers clipping text */
}

.gradient-text-accent {
    background: linear-gradient(135deg, var(--accent-secondary), var(--accent-primary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* Navbar */
.navbar {
    padding: 1.5rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.navbar.scrolled {
    background-color: rgba(5, 5, 8, 0.6);
    /* More transparent */
    backdrop-filter: blur(24px);
    /* Higher blur */
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    padding: 1rem 0;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: var(--text-primary);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    transition: opacity 0.3s ease;
}

.logo:hover {
    opacity: 0.9;
}

.logo img {
    width: 36px;
    height: 36px;
}

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

.nav-links a:not(.btn) {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s;
    position: relative;
    padding: 0.5rem 0;
}

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

.nav-links a:not(.btn)::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background: linear-gradient(90deg, var(--accent-secondary), var(--accent-primary));
    transition: width 0.3s ease;
}

.nav-links a:not(.btn):hover::after {
    width: 100%;
}

/* Play Store Button */
.btn-play-store {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    background: linear-gradient(145deg, #1a1a24, #050508);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-top: 1px solid rgba(255, 255, 255, 0.25);
    padding: 10px 24px;
    border-radius: 16px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4), inset 0 0 0 1px rgba(255, 255, 255, 0.05);
    z-index: 10;
}

.btn-play-store::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 16px;
    padding: 2px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), transparent);
    -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;
    opacity: 0.6;
    pointer-events: none;
}

.btn-play-store:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(139, 92, 246, 0.3), 0 0 20px rgba(139, 92, 246, 0.2);
    background: linear-gradient(145deg, #20202a, #0a0a0e);
    border-top-color: rgba(255, 255, 255, 0.4);
}

.play-icon {
    width: 28px;
    height: 28px;
    fill: #ffffff;
    /* Explicitly set to white */
}

.btn-text-group {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.1;
}

.btn-text-small {
    font-size: 10px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
}

.btn-text-large {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.3px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
    padding: 10px;
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--text-primary);
    transition: all 0.3s ease;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 0.85rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.02em;
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    color: white;
    box-shadow: 0 10px 25px -5px rgba(139, 92, 246, 0.4),
        inset 0 1px 1px rgba(255, 255, 255, 0.4),
        inset 0 -2px 5px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

/* Shimmer Effect for Primary Button */
.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 200%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.3),
            transparent);
    transform: skewX(-20deg);
    transition: 0.5s;
    pointer-events: none;
}

.btn-primary:hover::before {
    left: 100%;
    transition: 0.7s;
}

.btn-primary:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 20px 40px -8px rgba(139, 92, 246, 0.6),
        inset 0 1px 1px rgba(255, 255, 255, 0.5);
    filter: brightness(1.1);
}

.btn-glass {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: var(--text-primary);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.btn-glass:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    text-shadow: 0 0 12px rgba(255, 255, 255, 0.4);
}

.btn-lg {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

/* Hero Section */
.hero {
    padding-top: 10rem;
    padding-bottom: 8rem;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: visible;
    /* Allow floats to escape */
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    max-width: 580px;
    z-index: 2;
}

.hero-content h1 {
    font-size: 5rem;
    margin-bottom: 1.5rem;
    line-height: 1.05;
}

.hero-content p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    line-height: 1.6;
    max-width: 90%;
    opacity: 0.9;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(139, 92, 246, 0.08);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 100px;
    font-size: 0.875rem;
    color: #c4b5fd;
    font-weight: 500;
    margin-bottom: 2rem;
    backdrop-filter: blur(4px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.badge:hover {
    transform: translateY(-2px);
    background: rgba(139, 92, 246, 0.12);
}

.cta-group {
    display: flex;
    gap: 1.25rem;
    flex-wrap: wrap;
}

/* Visual Parallax Area */
.hero-visual {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1200px;
}

/* Hero Glow Behind Mockup */
.hero-visual::before {
    content: '';
    position: absolute;
    width: 140%;
    height: 140%;
    background: var(--hero-glow);
    z-index: 0;
    pointer-events: none;
    opacity: 0.8;
}

.mockup-float {
    position: absolute;
    background: rgba(20, 20, 30, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 1rem 1.25rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    gap: 1rem;
    transform-style: preserve-3d;
    transition: transform 0.1s ease-out;
    z-index: 5;
}

.float-stat-1 {
    top: 25%;
    right: -10%;
    animation: float 6s ease-in-out infinite;
}

.float-stat-2 {
    bottom: 20%;
    left: -15%;
    animation: float 7s ease-in-out infinite reverse;
}

@keyframes float {

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

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

/* App Mockup Container */
.app-mockup-container {
    position: relative;
    width: 85%;
    /* Responsive width */
    max-width: 300px;
    height: 600px;
    /* Slight increase for better aspect ratio */
    margin: 0 auto;
    perspective: 1500px;
    transform-style: preserve-3d;
    z-index: 2;
    /* Scale down on smaller screens automatically */
    transform: scale(0.95);
    transition: transform 0.3s ease;
}

@media (max-width: 768px) {
    .app-mockup-container {
        transform: scale(0.85);
        margin-top: 2rem;
    }
}

.app-phone-frame {
    width: 100%;
    height: 100%;
    background: #050510;
    border-radius: 48px;
    border: 6px solid #101015;
    /* Inner Bezel */
    /* Double border effect for chassis */
    outline: 2px solid #333;
    box-shadow:
        0 0 0 6px #1e1e24,
        /* Chassis */
        0 50px 100px rgba(0, 0, 0, 0.7),
        0 20px 60px rgba(139, 92, 246, 0.15);
    overflow: hidden;
    position: relative;
    transform: rotateY(0deg) rotateX(0deg);
    /* Start flat */
    transition: transform 0.1s ease-out;
    transform-style: preserve-3d;
}

.app-phone-frame::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 40px;
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.8);
    pointer-events: none;
    z-index: 50;
}

/* Dynamic Island */
.dynamic-island {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 96px;
    height: 28px;
    background: #000;
    border-radius: 20px;
    z-index: 40;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}

/* App Screen Content */
.app-screen {
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% -20%, #252538 0%, #050510 80%);
    display: flex;
    flex-direction: column;
    position: relative;
    padding-bottom: 20px;
    overflow: hidden;
}

.app-top-bar {
    display: flex;
    justify-content: space-between;
    padding: 14px 24px;
    padding-top: 48px;
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    z-index: 10;
}

.app-greeting {
    font-size: 1.1rem;
    font-weight: 700;
}

.app-status-icons {
    display: flex;
    gap: 8px;
    opacity: 0.8;
}

.app-content-scroll {
    flex: 1;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    mask-image: linear-gradient(to bottom, black 90%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, black 90%, transparent 100%);
    overflow-y: auto;
    scrollbar-width: none;
}

.app-content-scroll::-webkit-scrollbar {
    display: none;
}

/* Updated App Layout for Realism */
.app-screen {
    background: #050510;
    /* Solid dark background like real app */
}

/* App Cards Refined */
.app-card {
    background: rgba(30, 30, 45, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    border-radius: 20px;
    padding: 16px;
    position: relative;
    overflow: hidden;
}

.hero-card {
    background: linear-gradient(160deg, rgba(40, 40, 60, 0.6) 0%, rgba(20, 20, 30, 0.7) 100%);
}

.hero-time-display {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    margin-bottom: 4px;
}

.hero-time-value {
    font-size: 32px;
    font-weight: 700;
    line-height: 1;
    background: linear-gradient(to right, #fff, #d1d5db);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    transition: opacity 0.2s ease;
}

.hero-time-badge {
    font-size: 11px;
    font-weight: 600;
    color: #4ade80;
    background: rgba(74, 222, 128, 0.1);
    padding: 2px 6px;
    border-radius: 6px;
    margin-bottom: 4px;
}

.hero-subtitle {
    font-size: 12px;
    color: #94a3b8;
    margin-bottom: 16px;
}

.trend-graph {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    height: 60px;
    gap: 4px;
}

.trend-bar {
    width: 6px;
    background: white;
    border-radius: 4px;
    opacity: 0.3;
    height: var(--h);
    transition: height 0.6s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.3s;
}

.trend-bar:nth-child(even) {
    background: linear-gradient(to top, var(--accent-secondary), var(--accent-primary));
    opacity: 1;
}

/* Spotlight Card */
.spotlight-card {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: transform 0.2s;
}

.spotlight-card:hover {
    transform: scale(1.02);
    background: rgba(40, 40, 55, 0.8);
}

.spotlight-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #fcd34d, #f59e0b);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.spotlight-text {
    flex: 1;
}

.spotlight-title {
    font-weight: 700;
    font-size: 15px;
    color: #fff;
    margin-bottom: 2px;
}

.spotlight-desc {
    font-size: 11px;
    color: #94a3b8;
}

.spotlight-arrow {
    color: #64748b;
    font-weight: 600;
}

/* Mini Stats */
.quick-stats-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.mini-card {
    padding: 12px;
    display: flex;
    flex-direction: column;
}

.mini-card-icon {
    width: 28px;
    height: 28px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    margin-bottom: 8px;
}

.artist-card .mini-card-icon {
    background: url('https://i.scdn.co/image/ab6761610000e5eb214f3cf1cbe7139c1e26ffbb') center/cover;
}

.track-card .mini-card-icon {
    background: url('https://i.scdn.co/image/ab67616d0000b2734718e28d24527d9715735622') center/cover;
}

.mini-card-label {
    font-size: 10px;
    color: #94a3b8;
    text-transform: uppercase;
    font-weight: 600;
}

.mini-card-value {
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Bottom Selector */
.bottom-selector-pill {
    margin: 0 20px 24px 20px;
    background: rgba(20, 20, 25, 0.8);
    backdrop-filter: blur(8px);
    border-radius: 100px;
    padding: 4px;
    display: flex;
    justify-content: space-between;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.selector-option {
    flex: 1;
    text-align: center;
    font-size: 11px;
    font-weight: 600;
    color: #64748b;
    padding: 8px 0;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.2s;
}

.selector-option.active {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

/* Features Section */
.features {
    padding: 6rem 0;
    position: relative;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 4rem;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, minmax(280px, auto));
    gap: 1.5rem;
}

.bento-card {
    background: rgba(15, 15, 25, 0.4);
    border: 1px solid var(--glass-border);
    border-radius: 32px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
}

.bento-card:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-4px);
    box-shadow:
        var(--card-hover-shadow),
        inset 0 0 20px rgba(255, 255, 255, 0.02);
}

.bento-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: #fff;
    z-index: 2;
    letter-spacing: -0.01em;
}

.bento-card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.5;
    z-index: 2;
    max-width: 90%;
}

.bento-icon {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

/* Specific Bento Cards */
.bento-privacy {
    grid-column: span 2;
    background: radial-gradient(circle at 100% 0%, rgba(99, 102, 241, 0.05), transparent 50%),
        rgba(15, 15, 25, 0.4);
}

.privacy-shield {
    position: absolute;
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 12rem;
    opacity: 0.05;
    z-index: 1;
    transition: opacity 0.4s;
}

.bento-privacy:hover .privacy-shield {
    opacity: 0.1;
}

.bento-stats {
    grid-column: span 2;
}

/* Privacy Section */
.privacy-section {
    padding: 8rem 0;
}

.privacy-glass-container {
    background: linear-gradient(180deg, rgba(15, 15, 20, 0.6) 0%, rgba(5, 5, 10, 0.9) 100%);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(32px);
    border-radius: 40px;
    padding: 6rem;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
}

/* Ambient glow behind privacy card */
.privacy-glass-container::before {
    content: '';
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 60%;
    background: var(--accent-primary);
    filter: blur(150px);
    opacity: 0.1;
    border-radius: 50%;
    pointer-events: none;
}

.privacy-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.privacy-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.check-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--accent-secondary), var(--accent-primary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    box-shadow: 0 8px 24px rgba(236, 72, 153, 0.3);
}

/* Big Footer */
.footer {
    padding: 6rem 0 3rem 0;
    border-top: 1px solid var(--glass-border);
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.5));
    position: relative;
    overflow: hidden;
}

.footer-big-text {
    font-size: 15vw;
    font-weight: 800;
    line-height: 1;
    text-align: center;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.03), transparent);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    user-select: none;
    pointer-events: none;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    z-index: 0;
    font-family: var(--font-heading);
    letter-spacing: -0.05em;
}

.footer-content-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.footer-links {
    display: flex;
    gap: 3rem;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
}

.footer-links a:hover {
    color: #fff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.copyright p {
    color: rgba(255, 255, 255, 0.2);
    font-size: 0.9rem;
    text-align: center;
    position: relative;
    z-index: 1;
}

/* Animations Helpers */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

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

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

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

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

/* Responsive */
@media (max-width: 1024px) {
    .hero-content h1 {
        font-size: 3.5rem;
    }

    .hero-visual {
        height: 500px;
    }

    .app-mockup-container {
        transform: scale(0.9);
    }
}

@media (max-width: 900px) {
    .bento-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .bento-card,
    .bento-privacy,
    .bento-stats {
        grid-column: span 1;
    }
}

@media (max-width: 768px) {
    .hero {
        padding-top: 8rem;
        padding-bottom: 4rem;
        text-align: center;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-content {
        margin: 0 auto;
    }

    .hero-content h1 {
        font-size: 2.8rem;
    }

    .cta-group {
        justify-content: center;
    }

    /* .nav-links, .mobile-menu-btn logic handled elsewhere or pending implementation */

    .nav-links {
        display: none;
    }

    .hero-visual {
        perspective: none;
        height: auto;
        margin-top: 0;
    }

    .app-mockup-container {
        transform: scale(0.85);
        /* Slightly smaller on mobile to fit */
        margin-top: -40px;
        transform-origin: top center;
    }

    .app-phone-frame {
        transform: none !important;
        /* Disable 3D tilt on mobile */
    }

    .mockup-float {
        display: none;
        /* Hide floating elements on mobile for cleaner look */
    }

    .privacy-glass-container {
        padding: 3rem 1.5rem;
    }
}


.app-greeting {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    opacity: 0.95;
}

/* Generic App Card */
.app-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 16px;
    transition: transform 0.2s ease, background 0.2s ease;
    cursor: default;
}

.app-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: scale(1.02);
}

/* Hero Card Styles */
.hero-card {
    padding: 24px 20px;
    background: rgba(255, 255, 255, 0.04);
    /* Reset background */
    min-height: auto;
}

.hero-time-display {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.hero-time-value {
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    line-height: normal;
    /* Reset */
    margin-bottom: 0;
    /* Reset */
}

.hero-time-badge {
    background: rgba(74, 222, 128, 0.2);
    color: #4ade80;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.hero-subtitle {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 16px;
}

/* CSS Stats Graph */
.trend-graph {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    height: 60px;
    gap: 8px;
    margin-top: 0;
    /* Reset */
}

.trend-bar {
    flex: 1;
    background: linear-gradient(to top, rgba(139, 92, 246, 0.3), rgba(139, 92, 246, 0.8));
    border-radius: 4px;
    height: 0;
    /* Start at 0 for animation */
    animation: growBar 1s ease-out forwards;
    animation-delay: calc(var(--i) * 0.1s);
}

@keyframes growBar {
    to {
        height: var(--h);
    }
}

/* Spotlight Card */
.spotlight-card {
    background: rgba(236, 72, 153, 0.1);
    border-color: rgba(236, 72, 153, 0.2);
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    justify-content: flex-start;
    /* Reset */
    padding: 16px;
    /* Reset */
    grid-column: auto;
    /* Reset */
}

.spotlight-icon {
    width: 36px;
    height: 36px;
    background: rgba(236, 72, 153, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #fff;
}

.spotlight-text {
    flex: 1;
}

.spotlight-title {
    font-size: 15px;
    font-weight: 700;
    color: #fff;
}

.spotlight-desc {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.7);
}

.spotlight-arrow {
    color: rgba(255, 255, 255, 0.5);
    font-size: 18px;
    font-weight: 600;
}

/* Quick Stats Row */
.quick-stats-row {
    display: flex;
    gap: 12px;
}

.mini-card {
    flex: 1;
    background: rgba(255, 255, 255, 0.03);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
    padding: 16px 12px;
}

.mini-card-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #333;
    background-size: cover;
    background-position: center;
}

.artist-card .mini-card-icon {
    background-image: url('https://i.scdn.co/image/ab6761610000e5eb214f3cf1cbe7139c1e26ffbb');
    /* The Weeknd Placeholder */
}

.track-card .mini-card-icon {
    background-image: url('https://i.scdn.co/image/ab67616d0000b2734718e28d24527d84f4770450');
    /* Starboy Placeholder */
    border-radius: 8px;
}

.mini-card-label {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mini-card-value {
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}

/* Floating Selector */
.bottom-selector-pill {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(30, 30, 40, 0.9);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    display: flex;
    padding: 4px;
    gap: 4px;
    z-index: 20;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.selector-option {
    padding: 6px 16px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    border-radius: 20px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
    position: relative;
    z-index: 1;
}

.selector-option.active {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    font-weight: 600;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.selector-option:hover:not(.active) {
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
}

/* Floating Elements around phone */
.mockup-float {
    position: absolute;
    background: rgba(20, 20, 30, 0.7);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    gap: 16px;
    z-index: 2;
    transition: transform 0.1s ease-out;
}

.float-stat-1 {
    top: 15%;
    right: -40px;
    animation: float 6s ease-in-out infinite;
}

.float-stat-2 {
    bottom: 20%;
    left: -40px;
    animation: float 7s ease-in-out infinite reverse;
}

@media (max-width: 900px) {
    .app-mockup-container {
        transform: scale(0.85);
        margin: -40px auto;
        width: 100%;
        max-width: 340px;
    }

    .mockup-float {
        display: none;
    }
}

/* Bento Grid System */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 300px);
    gap: 24px;
    max-width: 1200px;
    margin: 4rem auto 0;
}

.bento-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 32px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.bento-card:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-4px) scale(1.01);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.bento-privacy {
    grid-column: span 2;
    grid-row: span 2;
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.03) 0%, rgba(139, 92, 246, 0.05) 100%);
}

.bento-battery {
    grid-column: span 1;
}

.bento-offline {
    grid-column: span 1;
}

.bento-stats {
    grid-column: span 2;
}

.bento-icon {
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 24px;
}

.bento-card h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.bento-card p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.5;
}

/* Specific Bento Visuals */
.privacy-shield {
    margin-top: auto;
    width: 100%;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 100px;
    position: relative;
}

.shield-pulse {
    position: absolute;
    width: 140px;
    height: 140px;
    background: var(--accent-primary);
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.2;
    animation: pulse 3s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.2;
    }

    50% {
        transform: scale(1.2);
        opacity: 0.1;
    }

    100% {
        transform: scale(1);
        opacity: 0.2;
    }
}

@media (max-width: 900px) {
    .bento-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .bento-privacy,
    .bento-stats,
    .bento-battery,
    .bento-offline {
        grid-column: auto;
        grid-row: auto;
        min-height: 250px;
    }
}

/* Ticker Component */
.ticker-wrapper {
    width: 100%;
    margin-top: 4rem;
    position: relative;
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.ticker-text {
    font-size: 0.875rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
}

.ticker-container {
    width: 100%;
    overflow: hidden;
}

.ticker-track {
    display: flex;
    gap: 3rem;
    width: max-content;
    animation: scrollTicker 40s linear infinite;
}

.ticker-item {
    font-size: 1.25rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.4);
    white-space: nowrap;
    transition: color 0.3s;
    cursor: default;
}

.ticker-item:hover {
    color: var(--accent-primary);
}

@keyframes scrollTicker {
    0% {
        transform: translateX(0);
    }

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

/* Bento Grid Spotlight Effect */
.bento-card {
    position: relative;
    /* Ensure relative positioning for absolute children */
    background: rgba(255, 255, 255, 0.03);
    /* Slightly lighter base */
    border: 1px solid rgba(255, 255, 255, 0.08);
    /* Default border */
    overflow: hidden;
    /* Contain the spotlight glow */
}

.bento-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(800px circle at var(--mouse-x) var(--mouse-y),
            rgba(255, 255, 255, 0.06),
            transparent 40%);
    opacity: 0;
    transition: opacity 0.5s;
    pointer-events: none;
    z-index: 3;
}

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

/* Spotlight Border Glow */
.bento-card::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(600px circle at var(--mouse-x) var(--mouse-y),
            rgba(139, 92, 246, 0.4),
            transparent 40%);
    opacity: 0;
    transition: opacity 0.5s;
    z-index: 1;
    border-radius: inherit;
    /* Match card radius */
    pointer-events: none;
}

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

/* Ensure content is above the glow */
.bento-content,
.bento-icon,
h3,
p {
    position: relative;
    z-index: 10;
}

/* Improved Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

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

::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    border: 2px solid var(--bg-color);
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* FAQ Section */
.faq-section {
    padding: 6rem 0;
    position: relative;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.faq-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 2rem;
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.faq-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.5);
}

/* Spotlight effect for FAQ cards too */
.faq-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(800px circle at var(--mouse-x) var(--mouse-y),
            rgba(255, 255, 255, 0.06),
            transparent 40%);
    opacity: 0;
    transition: opacity 0.5s;
    pointer-events: none;
    z-index: 1;
}

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

.faq-icon {
    font-size: 2rem;
    margin-bottom: 1.25rem;
    background: rgba(255, 255, 255, 0.05);
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
}

.faq-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    position: relative;
    z-index: 2;
}

.faq-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
    position: relative;
    z-index: 2;
}

/* Privacy Section Styles */
.privacy-glass-container {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 24px;
    padding: 3rem;
    position: relative;
    overflow: hidden;
}

.privacy-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.privacy-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 1rem;
    border-radius: 12px;
}

.check-icon {
    width: 24px;
    height: 24px;
    background: var(--accent-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: white;
}
/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.mobile-menu-btn span {
    width: 100%;
    height: 3px;
    background: var(--text-primary);
    border-radius: 3px;
    transition: all 0.3s ease-in-out;
}

/* Mobile Menu Animation */
.mobile-menu-btn.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

@media (max-width: 768px) {
    .nav-container {
        padding: 1.5rem 0;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(10, 10, 10, 0.95);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transform: translateY(-100%);
        transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        z-index: 1000;
        opacity: 0;
    }

    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
    }

    .nav-links a {
        font-size: 1.5rem;
        font-weight: 600;
    }

    .privacy-glass-container {
        padding: 1.5rem;
    }

    .privacy-list {
        grid-template-columns: 1fr;
    }
}
