:root {
    /* Premium Dark Theme Palette */
    --bg-deep: #050505;
    --bg-surface: #0f0f11;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #6366f1 0%, #a855f7 100%);
    --gradient-text: linear-gradient(to right, #ffffff, #94a3b8);

    /* Glassmorphism */
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.06);
    --glass-highlight: rgba(255, 255, 255, 0.1);

    /* Spacing & Sizes */
    --nav-height: 120px;
    --max-width: 1200px;
    --container-padding: 1.5rem;

    /* Animation */
    --ease-out-quart: cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

body {
    background-color: var(--bg-deep);
    color: #fff;
    font-family: 'Outfit', sans-serif;
    overflow-x: hidden;
    line-height: 1.5;
    font-size: 16px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

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

/* --- DYNAMIC BACKGROUND --- */
.ambient-mesh {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    overflow: hidden;
    background: var(--bg-deep);
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.5;
    animation: float 25s infinite alternate ease-in-out;
    will-change: transform;
}

.orb-1 {
    width: 60vw;
    height: 60vw;
    background: rgba(99, 102, 241, 0.15);
    top: -20%;
    left: -10%;
}

.orb-2 {
    width: 50vw;
    height: 50vw;
    background: rgba(168, 85, 247, 0.12);
    bottom: -10%;
    right: -20%;
    animation-delay: -5s;
}

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

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

/* --- LAYOUT --- */
.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* --- TYPOGRAPHY --- */
.display-text {
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.03em;
    background: linear-gradient(180deg, #fff 0%, #cbd5e1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1.5rem;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 600;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.text-lead {
    font-size: clamp(1.1rem, 2vw, 1.25rem);
    color: #94a3b8;
    max-width: 600px;
    margin-bottom: 2.5rem;
    font-weight: 300;
}

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

/* --- BUTTONS --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 1.75rem;
    border-radius: 100px;
    font-weight: 500;
    cursor: pointer;
    transition: transform 0.2s var(--ease-out-quart), box-shadow 0.2s, background 0.3s;
    font-size: 1rem;
    letter-spacing: 0.02em;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.btn-primary {
    background: #fff;
    color: #000;
}

.btn-primary:active {
    transform: scale(0.96);
}

.btn-primary:hover {
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.btn-glass {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    color: #fff;
    backdrop-filter: blur(10px);
}

.btn-glass:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

/* --- HEADER & NAV --- */
header {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: var(--nav-height);
    z-index: 100;
    /*! transition:
        top 0.4s cubic-bezier(0.165, 0.84, 0.44, 1),
        width 0.4s cubic-bezier(0.165, 0.84, 0.44, 1),
        height 0.4s cubic-bezier(0.165, 0.84, 0.44, 1),
        border-radius 0.4s cubic-bezier(0.165, 0.84, 0.44, 1),
        background-color 0.4s ease,
        backdrop-filter 0.4s ease; */
    display: flex;
    align-items: center;
    border: 1px solid transparent;
}

/* Desktop Only: Dynamic Island Effect */
@media (min-width: 769px) {
    header.scrolled {
        top: 20px;
        width: 95%;
        max-width: 960px;
        height: 70px !important;
        border-radius: 50px;

        background: rgba(16, 15, 28, 0.6);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border: 1px solid rgba(255, 255, 255, 0.08);
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    }
}

.header-content {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0 1.5rem;
}

/* Ensure padding remains consistent during transition to prevent content jump */
header.scrolled .header-content {
    max-width: 100%;
    padding: 0 2rem;
}

.logo {
    display: flex;
    align-items: center;
    font-weight: 700;
    font-size: 1.5rem;
    z-index: 101;
    height: 40px;
}

.logo img {
    height: 28px;
    width: auto;
    display: block;
    /*! transition: height 0.3s ease; */
}

header.scrolled .logo img {
    height: 26px;
    /* Less drastic shrink */
}

/* Desktop Header Actions */
@media (min-width: 769px) {

    .nav-actions {
        display: flex;
        align-items: center;
        gap: 2rem;
    }

    .nav-actions a:not(.btn) {
        font-size: 0.95rem;
        font-weight: 500;
        color: #a1a1aa;
        transition: color 0.2s;
    }

    .nav-actions a:not(.btn):hover {
        color: #fff;
    }

    .nav-actions .btn {
        padding: 0.6rem 1.5rem;
        font-size: 0.9rem;
        background: #fff;
        color: #000;
        border: none;
    }

    .nav-actions .btn:hover {
        background: #e2e8f0;
        box-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
    }
}

/* Mobile Nav */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 201;
    padding: 10px;
    position: relative;
}

@media (max-width: 768px) {
    header {
        position: absolute;
        /* Not sticky on mobile */
        top: 0;
        left: 0;
        width: 100%;
        height: 70px;
        transform: none;
        /* No centering transform */
        border: none;
        background: transparent;
    }

    header.scrolled {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        max-width: none;
        height: 70px !important;
        border-radius: 0;
        background: transparent;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        box-shadow: none;
        border: none;
    }

    .logo img {
        height: 22px;
    }

    .nav-toggle {
        display: block;
        font-size: 1.5rem;
        padding: 12px;
        z-index: 1000;
        position: relative;
        pointer-events: auto;
        cursor: pointer;
    }


    .nav-actions {
        position: fixed;
        top: 0;
        right: 0;
        width: 100%;
        height: 100vh;
        background: var(--bg-deep);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transform: translateX(100%);
        transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        z-index: 150;
    }

    .nav-actions.active {
        transform: translateX(0);
    }

    .nav-actions a:not(.btn) {
        font-size: 1.25rem;
        font-weight: 600;
        color: #fff;
    }

    .mobile-only-divider {
        width: 40px;
        height: 1px;
        background: rgba(255, 255, 255, 0.1);
        margin: 10px 0;
    }

    /* Center Hero on Mobile */
    .display-text {
        text-align: center;
        font-size: clamp(2.2rem, 8vw, 4.5rem);
    }

    .text-lead {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
        font-size: clamp(1rem, 2vw, 1.25rem);
    }

    .hero-btns {
        justify-content: center;
        width: 100%;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .hero-btns .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    /* Optimize Section Padding on Mobile */
    section {
        padding: 5rem 0;
    }
}

/* --- HERO SECTION --- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: var(--nav-height);
    position: relative;
}

.hero-btns {
    display: flex;
    gap: 1.25rem;
    margin-top: 2rem;
}

/* Stats pills */
.stats-row {
    display: flex;
    gap: 3rem;
    margin-top: 5rem;
    opacity: 0;
    animation: fadeUp 0.8s 0.6s forwards;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-val {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
}

.stat-label {
    font-size: 0.875rem;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 5px;
}

/* --- CARDS & GRID --- */
/* --- CARDS & GRID --- */
section {
    padding: 8rem 0;
}

@media (max-width: 768px) {
    section {
        padding: 4rem 0;
    }
}

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

.bento-card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    /* Static, subtle border */
    border-radius: 20px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    /* No transitions, no hover effects requested */
}

/* Subtle top highlight for 3D feel without movement */
.bento-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    opacity: 0.5;
}

.bento-card i {
    font-size: 1.75rem;
    color: #fff;
    margin-bottom: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    /* Static dark glass */
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    /* Static shadow */
}

.bento-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
    color: #fff;
    letter-spacing: -0.01em;
}

.bento-card p {
    color: #a1a1aa;
    line-height: 1.6;
    font-size: 0.95rem;
    font-weight: 400;
}

/* --- ARTIST SECTION --- */
.artist-cta {
    background: linear-gradient(to right, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.005));
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
    padding: 6rem 0;
    text-align: center;
}

/* --- FOOTER --- */
footer {
    padding: 4rem 0;
    border-top: 1px solid var(--glass-border);
    text-align: center;
    color: #64748b;
    font-size: 0.9rem;
}

footer a {
    margin: 0 10px;
    color: #94a3b8;
}

footer a:hover {
    color: #fff;
}

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

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

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

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

.animate-in {
    animation: fadeUp 1s var(--ease-out-quart) forwards;
    opacity: 0;
}