@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;800&display=swap');

:root {
    --bg-color: #030303;
    --text-color: #ffffff;
    --accent-1: #8b5cf6;
    /* Electric Purple */
    --accent-2: #06b6d4;
    /* Neon Cyan */
    --accent-3: #f43f5e;
    /* Rose Burst */
    --accent-gradient: linear-gradient(135deg, var(--accent-1), var(--accent-2), var(--accent-3));
    --glass-bg: rgba(255, 255, 255, 0.12);
    --glass-border: rgba(255, 255, 255, 0.25);
    --glass-shimmer: rgba(255, 255, 255, 0.1);
    --font-main: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --transition-base: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

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

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

/* Subtle Grain 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 400 400' xmlns='http://www.w3.org/2000/svg'%3%3Ffilter id='n' opacity='.15'%3%3FfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3%3F/filter%3%3Frect width='100%25' height='100%25' filter='url(%23n)'/%3%3F/svg%3E");
    opacity: 0.08;
    pointer-events: none;
    z-index: 999;
}

/* Psychedelic Liquid Background - MAXIMUM INTENSITY */
.psy-bg {
    position: fixed;
    inset: 0;
    z-index: -1;
    overflow: hidden;
    background: linear-gradient(135deg, #000000 0%, #0a0515 100%);
    animation: hue-breathe 5s infinite ease-in-out;
}

@keyframes hue-breathe {

    0%,
    100% {
        filter: hue-rotate(0deg) saturate(1.2);
    }

    50% {
        filter: hue-rotate(60deg) saturate(1.5);
    }
}

.blob {
    position: absolute;
    width: 100vmax;
    height: 100vmax;
    filter: blur(40px);
    opacity: 0.7;
    z-index: -1;
    mix-blend-mode: screen;
    pointer-events: none;
    will-change: transform, border-radius;
}

.blob-1 {
    background: radial-gradient(circle at center, var(--accent-1) 0%, transparent 40%);
    top: -30%;
    left: -20%;
    animation: morph-1 8s infinite ease-in-out, float-1 12s infinite alternate ease-in-out;
}

.blob-2 {
    background: radial-gradient(circle at center, var(--accent-2) 0%, transparent 40%);
    bottom: -30%;
    right: -20%;
    animation: morph-2 10s infinite ease-in-out, float-2 14s infinite alternate-reverse ease-in-out;
}

.blob-3 {
    background: radial-gradient(circle at center, var(--accent-3) 0%, transparent 35%);
    top: 10%;
    left: 10%;
    opacity: 0.6;
    animation: morph-3 7s infinite ease-in-out, float-3 16s infinite alternate ease-in-out;
}

/* Morphing organic shapes */
@keyframes morph-1 {

    0%,
    100% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }

    25% {
        border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
    }

    50% {
        border-radius: 50% 60% 30% 60% / 30% 40% 70% 50%;
    }

    75% {
        border-radius: 40% 50% 60% 50% / 60% 50% 40% 60%;
    }
}

@keyframes morph-2 {

    0%,
    100% {
        border-radius: 40% 60% 60% 40% / 70% 30% 50% 50%;
    }

    33% {
        border-radius: 70% 30% 50% 50% / 40% 60% 60% 40%;
    }

    66% {
        border-radius: 50% 50% 40% 60% / 60% 40% 70% 30%;
    }
}

@keyframes morph-3 {

    0%,
    100% {
        border-radius: 50% 50% 50% 50% / 50% 50% 50% 50%;
    }

    50% {
        border-radius: 30% 70% 60% 40% / 70% 40% 50% 60%;
    }
}

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

    100% {
        transform: translate(20%, 15%) rotate(180deg) scale(1.15);
    }
}

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

    100% {
        transform: translate(-15%, -20%) rotate(-120deg) scale(1.2);
    }
}

@keyframes float-3 {
    0% {
        transform: translate(0, 0) rotate(0deg) scale(0.9);
    }

    100% {
        transform: translate(25%, -15%) rotate(240deg) scale(1.1);
    }
}

/* Header & Nav */
header {
    padding: 1.5rem 2rem;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(3, 3, 3, 0.4);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid var(--glass-border);
    transition: var(--transition-base);
}

header.scrolled {
    padding: 1rem 2rem;
    background: rgba(3, 3, 3, 0.8);
}

.logo {
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-decoration: none;
    position: relative;
}

.nav-toggle {
    display: block;
    cursor: pointer;
    font-size: 1.5rem;
}

/* Mobile Nav Overlay */
.nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(5, 5, 5, 0.95);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: var(--transition);
    z-index: 99;
}

.nav-menu.active {
    right: 0;
}

.nav-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 2rem;
    cursor: pointer;
    color: var(--text-color);
    opacity: 0.7;
    transition: var(--transition);
}

.nav-close:hover {
    opacity: 1;
    transform: rotate(90deg);
}

.nav-link {
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-color);
    text-decoration: none;
    margin: 1.5rem 0;
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--accent-1);
    transform: scale(1.1);
}

/* Glass Cards - Liquid Enhanced */
.glass-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    border-radius: 24px;
    padding: 2.5rem;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
    margin: 0;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.08), rgba(6, 182, 212, 0.05), transparent);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.glass-card:hover {
    border-color: var(--accent-1);
    transform: translateY(-10px) scale(1.02);
    background: rgba(255, 255, 255, 0.08);
    box-shadow:
        0 30px 60px rgba(0, 0, 0, 0.4),
        0 0 30px rgba(139, 92, 246, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border-radius: 28px 20px 28px 20px;
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
}

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

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--accent-1), var(--accent-3));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

/* Service Card - VISIBLE Style */
.service-card {
    display: block;
    text-decoration: none;
    color: inherit;
    padding: 2rem;
    background: rgba(30, 30, 40, 0.8);
    border: 2px solid rgba(139, 92, 246, 0.3);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: #ffffff;
}

.service-card p {
    font-size: 1rem;
    opacity: 0.8;
    margin-bottom: 1rem;
    color: #ffffff;
}

.service-card:hover {
    border-color: var(--accent-1);
    transform: translateY(-8px) scale(1.02);
    background: rgba(40, 40, 60, 0.9);
    box-shadow:
        0 25px 50px rgba(0, 0, 0, 0.5),
        0 0 40px rgba(139, 92, 246, 0.25);
}

/* Clickable indicator */
a.service-card {
    cursor: pointer;
}

.service-card ul {
    list-style: none;
    padding: 0;
    margin-top: 1.5rem;
}

.service-card li {
    font-size: 0.95rem;
    opacity: 0.7;
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.service-card li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--accent-1);
    font-size: 0.8rem;
}

.learn-more {
    margin-top: 2rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--accent-1);
    transition: var(--transition);
}

.service-card:hover .learn-more {
    gap: 0.8rem;
}

/* Premium Typography */
h1 {
    font-size: clamp(3rem, 10vw, 6rem);
    font-weight: 800;
    line-height: 0.95;
    letter-spacing: -0.04em;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.1;
    margin-bottom: 2rem;
}

p {
    font-size: 1.15rem;
    opacity: 0.7;
    font-weight: 300;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.gradient-text {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Interactive Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.2rem 2.8rem;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: var(--transition-base);
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary {
    background: var(--text-color);
    color: var(--bg-color);
}

.btn-primary::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--accent-gradient);
    opacity: 0;
    transition: var(--transition-base);
    z-index: -1;
}

.btn-primary:hover {
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(139, 92, 246, 0.3);
}

.btn-primary:hover::after {
    opacity: 1;
}

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

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--accent-1);
    transform: translateY(-5px);
}

/* Sections */
section {
    padding: 6rem 1.5rem 3rem;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
}

/* Playlist Tables */
.link-table {
    width: 100%;
    margin: 2rem 0;
}

.link-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    border-bottom: 1px solid var(--glass-border);
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

.link-row:hover {
    background: var(--glass-bg);
}

.platform-name {
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.platform-icon {
    font-size: 1.5rem;
}

/* Song Row Styles */
.song-table {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin: 2rem 0;
}

.song-row {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.song-row:hover {
    border-color: var(--glass-border-active);
    transform: translateX(5px);
}

.song-info {
    flex: 1;
}

.song-title {
    font-weight: 600;
    display: block;
}

.song-artist {
    font-size: 0.8rem;
    opacity: 0.6;
}

.song-links {
    display: flex;
    gap: 0.8rem;
    font-size: 1.2rem;
}

.song-link {
    color: var(--text-color);
    opacity: 0.5;
    transition: var(--transition);
}

.song-link:hover {
    opacity: 1;
    transform: scale(1.2);
}

.song-link.spotify:hover {
    color: #1DB954;
}

.song-link.apple:hover {
    color: #FC3C44;
}

.song-link.youtube:hover {
    color: #FF0000;
}

.song-link.soundcloud:hover {
    color: #FF3300;
}

.song-link.tidal:hover {
    color: #00BFB2;
}

.song-link.amazon:hover {
    color: #FF9900;
}

.song-link.deezer:hover {
    color: #EF5466;
}

.song-link.bandcamp:hover {
    color: #629AA9;
}

/* Bouncy Reveal Animations */
.reveal-bouncy {
    opacity: 0;
    transform: translateY(40px) scale(0.95);
    transition: opacity 1s var(--transition-bounce), transform 1s var(--transition-bounce), filter 1s var(--transition-bounce);
    filter: blur(10px);
    will-change: transform, opacity, filter;
}

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

/* Scroll Velocity Squish (Applied via JS) */
.velocity-squish {
    transition: transform 0.15s cubic-bezier(0.25, 0.1, 0.25, 1);
    will-change: transform;
}

/* Forms */
.form-group {
    margin-bottom: 1.5rem;
}

input,
textarea {
    width: 100%;
    padding: 1rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    color: white;
    font-family: inherit;
    outline: none;
    transition: var(--transition);
}

input:focus,
textarea:focus {
    border-color: var(--accent-1);
    background: rgba(255, 255, 255, 0.06);
}

@media (min-width: 768px) {
    h1 {
        font-size: clamp(4rem, 8vw, 6rem);
    }

    header {
        padding: 2rem 4rem;
    }

    section {
        padding: 8rem 4rem 4rem;
    }

    .nav-toggle {
        display: none;
    }

    .nav-menu {
        position: static;
        flex-direction: row;
        background: transparent;
        height: auto;
        width: auto;
        -webkit-backdrop-filter: none;
        backdrop-filter: none;
    }

    .nav-link {
        font-size: 1.1rem;
        margin: 0 1.5rem;
    }

    .nav-close {
        display: none;
    }
}

/* Mobile Responsiveness (iPhone 15 Pro & similar) */
@media (max-width: 767px) {
    h1 {
        font-size: 2.75rem !important;
        line-height: 1.1 !important;
        letter-spacing: -0.02em !important;
    }

    section {
        padding: 5rem 1.5rem 3rem !important;
    }

    /* Fixed Background for Mobile - NO BLURS/MIX-BLEND */
    .psy-bg {
        background: #030303 !important;
        background-image:
            radial-gradient(circle at 10% 10%, rgba(139, 92, 246, 0.3) 0%, transparent 45%),
            radial-gradient(circle at 90% 85%, rgba(6, 182, 212, 0.3) 0%, transparent 45%),
            radial-gradient(circle at 50% 50%, rgba(244, 63, 94, 0.15) 0%, transparent 50%) !important;
        animation: none !important;
        filter: none !important;
        transform: none !important;
    }

    .blob {
        display: none !important;
    }

    /* Service Cards - Solid & Visible on Mobile */
    .services-grid {
        grid-template-columns: 1fr !important;
        gap: 1.25rem !important;
        display: flex !important;
        flex-direction: column !important;
    }

    .service-card {
        display: block !important;
        width: 100% !important;
        padding: 1.75rem 1.5rem !important;
        background: #111118 !important;
        background: linear-gradient(145deg, #161620, #0a0a0f) !important;
        border: 1px solid rgba(139, 92, 246, 0.4) !important;
        border-radius: 20px !important;
        text-decoration: none !important;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3) !important;
        transform: none !important;
        opacity: 1 !important;
        -webkit-backdrop-filter: none !important;
        backdrop-filter: none !important;
    }

    .service-card h3 {
        font-size: 1.35rem !important;
        color: #ffffff !important;
        margin-bottom: 0.75rem !important;
        opacity: 1 !important;
    }

    .service-card p {
        font-size: 0.95rem !important;
        color: rgba(255, 255, 255, 0.8) !important;
        margin-bottom: 1rem !important;
        line-height: 1.5 !important;
    }

    .service-card ul {
        margin-top: 1rem !important;
    }

    .service-card li {
        font-size: 0.85rem !important;
        margin-bottom: 0.5rem !important;
    }

    .service-icon {
        font-size: 1.75rem !important;
        margin-bottom: 1rem !important;
    }

    .btn {
        width: 100% !important;
        text-align: center !important;
        padding: 1rem !important;
    }
}