@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Outfit:wght@300;400;600;700;900&family=Dancing+Script:wght@500;700&display=swap');
@import url('https://fonts.cdnfonts.com/css/playlist');

/* --- DESIGN SYSTEM TOKENS (Logo: Purple → Gold) --- */
:root {
    --bg-color: #080510;
    --bg-secondary: rgba(15, 6, 25, 0.6);
    --card-bg: rgba(20, 8, 32, 0.65);
    --card-border: rgba(168, 85, 247, 0.12);
    --border-hover: rgba(168, 85, 247, 0.45);

    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.65);
    --text-muted: rgba(255, 255, 255, 0.38);

    /* Brand gradient: purple → gold (from logo) */
    --accent-purple: #a855f7;
    --accent-gold: #f59e0b;
    --accent-gradient: linear-gradient(135deg, #a855f7 0%, #f59e0b 100%);
    --accent-gradient-soft: linear-gradient(135deg, rgba(168,85,247,0.7) 0%, rgba(245,158,11,0.7) 100%);
    --accent-violet: linear-gradient(135deg, #7000ff 0%, #c400ff 100%);
    --accent-glow: rgba(168, 85, 247, 0.55);
    --gold-glow: rgba(245, 158, 11, 0.45);

    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    --easing-weightless: cubic-bezier(0.25, 1, 0.5, 1);
    --easing-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* --- RESET & BASICS --- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-family: var(--font-body);
    overflow-x: hidden;
}

body {
    background-color: var(--bg-color);
    overflow-x: hidden;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* Custom scrollbar */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: #080510; }
::-webkit-scrollbar-thumb { background: #3d1a6e; border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--accent-purple); }

/* --- BACKGROUND CYMATICS CANVAS --- */
#cymatics-canvas {
    position: fixed;
    top: 0; left: 0;
    width: 100vw; height: 100vh;
    pointer-events: none;
    z-index: 1;
}

/* --- WRAPPER --- */
.content-wrapper {
    position: relative;
    z-index: 2;
    width: 100%;
}

/* --- HEADER & NAVIGATION --- */
header {
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    height: 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5%;
    z-index: 100;
    background: rgba(8, 5, 16, 0.5);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid var(--card-border);
    transition: all 0.5s var(--easing-weightless);
}

header.scrolled {
    height: 68px;
    background: rgba(8, 5, 16, 0.88);
    border-bottom-color: rgba(168, 85, 247, 0.18);
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo img {
    height: 42px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 10px rgba(168, 85, 247, 0.35));
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 36px;
    align-items: center;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-family: var(--font-heading);
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 500;
    position: relative;
    padding: 8px 0;
    transition: color 0.3s var(--easing-weightless);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0; height: 1px;
    background: var(--accent-gradient);
    transition: width 0.4s var(--easing-weightless);
}

.nav-link:hover { color: var(--text-primary); }
.nav-link:hover::after { width: 100%; }

.nav-link.active {
    color: var(--text-primary);
}
.nav-link.active::after { width: 100%; }

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 101;
    padding: 8px;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--text-primary);
    transition: all 0.4s var(--easing-weightless);
}

.hamburger.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* Mobile Nav Overlay */
.mobile-nav {
    position: fixed;
    top: 0; right: -100%;
    width: 100%; height: 100vh;
    background: rgba(8, 5, 16, 0.97);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 40px;
    z-index: 99;
    transition: right 0.6s var(--easing-weightless);
}

.mobile-nav.active { right: 0; }
.mobile-nav .nav-link { font-size: 1.5rem; letter-spacing: 0.2em; }

/* --- PRELOADER --- */
.preloader {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-color: #080510;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: opacity 0.8s var(--easing-weightless);
}

.preloader-spinner {
    position: relative;
    width: 100px;
    height: 100px;
}

.preloader-circle {
    width: 100%; height: 100%;
    border: 1px solid rgba(168, 85, 247, 0.08);
    border-top: 2px solid var(--accent-purple);
    border-right: 1px solid rgba(245, 158, 11, 0.4);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.preloader-text {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-heading);
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    font-weight: 600;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.preloader-subtext {
    margin-top: 24px;
    font-family: var(--font-heading);
    font-size: 0.7rem;
    color: var(--text-muted);
    letter-spacing: 0.3em;
    text-transform: uppercase;
}

/* --- FIXED CANVAS BACKGROUND (scroll-scrub on whole home page) --- */
.hero-fixed-canvas {
    position: fixed;
    top: 0; left: 0;
    width: 100vw; height: 100vh;
    z-index: 0;
    pointer-events: none;
    filter: contrast(1.05) brightness(0.52);
}

/* --- HOME PAGE WRAPPER --- */
.home-page-wrapper {
    position: relative;
    z-index: 2;
}

.home-hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 3;
}

/* --- HOME CONTENT SECTIONS (glassmorphic over video) --- */
.home-section {
    position: relative;
    z-index: 4;
    padding: 80px 8% 0 8%;
    background-color: rgba(15, 6, 25, 0.7);
}

.home-section-inner {
    width: 100%;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0;
}

.home-paragraph {
    font-size: 1.15rem;
    font-weight: 300;
    line-height: 1.85;
    color: var(--text-secondary);
    margin-bottom: 28px;
    max-width: 800px;
    text-align: center;
}

/* --- HOME SERVICES GRID --- */
.home-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin: 28px 0 32px;
    width: 100%;
    text-align: left;
}

.home-service-item {
    background: rgba(168, 85, 247, 0.06);
    border: 1px solid rgba(168, 85, 247, 0.1);
    border-radius: 16px;
    padding: 28px 24px;
    transition: all 0.4s var(--easing-weightless);
}

.home-service-item:hover {
    transform: translateY(-4px);
    border-color: var(--border-hover);
    background: rgba(168, 85, 247, 0.12);
}

.home-service-num {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 900;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0.5;
    margin-bottom: 12px;
}

.home-service-item h3 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 8px;
}

.home-service-item p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-weight: 300;
    line-height: 1.6;
}

/* --- HOME FOUNDERS PREVIEW --- */
.home-founders-preview {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 40px 0 48px;
    width: 100%;
    max-width: 1000px;
}

.home-founder-chip {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    padding: 30px 20px;
    transition: all 0.5s var(--easing-weightless);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.home-founder-chip:hover {
    border-color: var(--border-hover);
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(168, 85, 247, 0.15);
}

.home-founder-chip img {
    width: 150px; height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(168, 85, 247, 0.25);
    margin-bottom: 20px;
    transition: transform 0.5s var(--easing-weightless);
}

.home-founder-chip:hover img {
    transform: scale(1.05);
    border-color: var(--accent-purple);
}

.home-founder-chip div {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.home-founder-chip strong {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 700;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-primary);
}

.home-founder-chip span {
    font-family: var(--font-heading);
    font-size: 0.82rem;
    color: var(--accent-purple);
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* --- HOME ARTISTS STRIP --- */
.home-artists-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 32px 0 40px;
    padding: 10px;
    width: 100%;
    justify-content: center;
    align-items: flex-start;
}

.home-artists-strip::-webkit-scrollbar { height: 5px; }
.home-artists-strip::-webkit-scrollbar-thumb { background: #3d1a6e; border-radius: 3px; }
.home-artists-strip::-webkit-scrollbar-thumb:hover { background: var(--accent-purple); }

.home-artist-thumb {
    flex-shrink: 0;
    width: 220px;
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid var(--card-border);
    transition: all 0.5s var(--easing-weightless);
    cursor: pointer;
}

.home-artist-thumb:hover {
    transform: translateY(-8px);
    border-color: var(--border-hover);
    box-shadow: 0 15px 35px rgba(168, 85, 247, 0.25);
}

.home-artist-thumb img {
    width: 100%;
    aspect-ratio: 1 / 1.25;
    object-fit: cover;
    display: block;
    transition: transform 0.6s var(--easing-weightless), filter 0.4s;
}

.home-artist-thumb:hover img {
    filter: brightness(0.5);
    transform: scale(1.05);
}

.home-artist-thumb span {
    position: absolute;
    bottom: 0; left: 0;
    width: 100%;
    padding: 12px 14px;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    background: linear-gradient(to top, rgba(8,5,16,0.95) 20%, transparent);
    color: #fff;
    text-align: center;
}

/* --- HOME CTA SECTION --- */
.home-cta-section {
    padding: 120px 8%;
}

.hero-overlay {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    pointer-events: none;
}

.hero-slogan {
    font-family: 'Playlist', 'Dancing Script', cursive;
    font-size: 5rem;
    font-weight: 400;
    letter-spacing: 0.02em;
    text-transform: none;
    background: linear-gradient(135deg, #a855f7 0%, #f59e0b 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 10px rgba(168, 85, 247, 0.5));
    opacity: 0;
    transform: translateY(30px) scale(0.95);
    transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
    line-height: 1.3;
    text-align: center;
    will-change: opacity, transform, filter, background-position;
}

.hero-slogan.animate {
    opacity: 1;
    transform: translateY(0) scale(1);
    animation: pulseLogoGradient 3s ease-in-out infinite alternate;
}

@keyframes pulseLogoGradient {
    0% { 
        filter: drop-shadow(0 0 10px rgba(168, 85, 247, 0.5)); 
        background-position: 0% center;
        transform: translateY(0) scale(1); 
    }
    100% { 
        filter: drop-shadow(0 0 25px rgba(168, 85, 247, 0.9)) drop-shadow(0 0 45px rgba(245, 158, 11, 0.8)); 
        background-position: 100% center;
        transform: translateY(-5px) scale(1.02); 
    }
}

.hero-slogan span {
    font-weight: 400;
    color: inherit;
}

.hero-cta {
    margin-top: 36px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1s var(--easing-weightless) 0.4s, transform 1s var(--easing-weightless) 0.4s;
    pointer-events: all;
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
}

.hero-cta.animate {
    opacity: 1;
    transform: translateY(0);
}

.btn-primary {
    display: inline-block;
    padding: 14px 36px;
    background: var(--accent-gradient);
    color: #fff;
    font-family: var(--font-heading);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: transform 0.3s var(--easing-bounce), box-shadow 0.3s ease;
    box-shadow: 0 0 24px rgba(168, 85, 247, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 32px rgba(168, 85, 247, 0.6), 0 4px 16px rgba(245, 158, 11, 0.3);
}

.btn-outline {
    position: relative;
    display: inline-block;
    padding: 13px 36px;
    background: var(--bg-color);
    color: #fff;
    font-family: var(--font-heading);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 50px;
    cursor: pointer;
    z-index: 1;
    overflow: hidden;
    transition: color 0.4s var(--easing-weightless), transform 0.4s var(--easing-weightless), box-shadow 0.4s var(--easing-weightless);
}

/* Gradient border using modern mask technique to prevent sub-pixel layout clipping bugs */
.btn-outline::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    border-radius: 50px;
    padding: 1.5px; /* acts as border width */
    background: var(--accent-gradient);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    pointer-events: none;
    z-index: 2;
}

/* Smooth background gradient fade-in on hover */
.btn-outline::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    border-radius: 50px;
    background: var(--accent-gradient);
    opacity: 0;
    z-index: -1;
    transition: opacity 0.4s var(--easing-weightless);
}

.btn-outline:hover {
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(168, 85, 247, 0.5), 0 4px 14px rgba(245, 158, 11, 0.25);
}

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

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px; left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-size: 0.6rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--text-muted);
    transition: opacity 1s var(--easing-weightless) 0.5s;
    pointer-events: none;
}

.scroll-indicator.animate { opacity: 0.6; }

.scroll-indicator .mouse {
    width: 20px; height: 32px;
    border: 1px solid rgba(168, 85, 247, 0.35);
    border-radius: 10px;
    position: relative;
}

.scroll-indicator .wheel {
    width: 2px; height: 6px;
    background: var(--accent-purple);
    position: absolute;
    top: 6px; left: 50%;
    transform: translateX(-50%);
    border-radius: 1px;
    animation: scrollMouse 1.8s infinite var(--easing-weightless);
}

/* --- PAGE HERO (for inner pages) --- */
.page-hero {
    min-height: 35vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 140px 8% 60px 8%;
    position: relative;
    z-index: 2;
    background: linear-gradient(180deg, rgba(8,5,16,0) 0%, rgba(8,5,16,0.6) 100%);
    border-bottom: 1px solid var(--card-border);
}

.page-breadcrumb {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--accent-purple);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.page-breadcrumb a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s;
}

.page-breadcrumb a:hover { color: var(--accent-purple); }
.page-breadcrumb span { color: var(--text-muted); }

.page-hero-title {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: -0.01em;
    line-height: 1.05;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.9s var(--easing-weightless) forwards 0.2s;
}

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

/* --- GENERAL SECTIONS --- */
section {
    padding: 100px 8% 40px 8%;
    position: relative;
    z-index: 2;
}

.section-tag {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    margin-bottom: 12px;
    display: inline-block;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 40px;
    line-height: 1.1;
    text-transform: uppercase;
}

.section-title span {
    font-weight: 300;
    color: var(--text-secondary);
}

/* Divider line */
.section-divider {
    width: 80px;
    height: 2px;
    background: var(--accent-gradient);
    margin-bottom: 40px;
    border-radius: 2px;
}

/* --- VISION & MISSION SECTION --- */
.vision-mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 40px;
}

.vm-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    padding: 50px;
    border-radius: 20px;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    transition: all 0.6s var(--easing-weightless);
    position: relative;
    overflow: hidden;
}

.vm-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 4px; height: 100%;
    background: var(--accent-gradient);
    opacity: 0.6;
}

.vm-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-hover);
    box-shadow: 0 20px 50px rgba(168, 85, 247, 0.1);
}

.vm-card h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 20px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.vm-card p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    font-weight: 300;
    line-height: 1.8;
}

/* --- FOUNDERS SECTION --- */
.founders-intro {
    max-width: 800px;
    font-size: 1.2rem;
    font-weight: 300;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 60px;
}

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

.founder-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    overflow: hidden;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: all 0.6s var(--easing-weightless);
    display: flex;
    flex-direction: column;
}

.founder-card:hover {
    transform: translateY(-10px);
    border-color: var(--border-hover);
    box-shadow: 0 30px 60px rgba(168, 85, 247, 0.18);
}

.founder-image-container {
    width: 100%;
    aspect-ratio: 1 / 1.15;
    position: relative;
    overflow: hidden;
}

.founder-img {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    transition: opacity 0.8s var(--easing-weightless), transform 0.8s var(--easing-weightless);
}

.founder-img.color-img { opacity: 0; z-index: 2; }
.founder-img.bw-img { opacity: 1; z-index: 1; filter: grayscale(100%) contrast(1.1); }

.founder-card:hover .founder-img.color-img { opacity: 1; }
.founder-card:hover .founder-img.bw-img { opacity: 0; }
.founder-card:hover .founder-img { transform: scale(1.03); }

.founder-info {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.founder-name {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 6px;
    text-transform: uppercase;
}

.founder-role {
    font-family: var(--font-heading);
    font-size: 0.82rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 16px;
    font-weight: 500;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.founder-bio {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
    font-weight: 300;
}

.founder-bio:not(:last-of-type) {
    margin-bottom: 16px;
}

.founder-socials {
    display: flex;
    gap: 12px;
    margin-top: 24px;
    padding-top: 16px;
    border-top: 1px solid rgba(168, 85, 247, 0.08);
}

.founder-socials a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(168, 85, 247, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: all 0.3s var(--easing-weightless);
    text-decoration: none;
}

.founder-socials a:hover {
    background: var(--accent-gradient);
    border-color: transparent;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(168, 85, 247, 0.35);
}

.founder-socials a svg {
    width: 15px;
    height: 15px;
    fill: currentColor;
}

/* --- SERVICES SECTION --- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.service-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    padding: 40px 30px;
    border-radius: 20px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 24px;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s var(--easing-weightless), transform 0.7s var(--easing-weightless),
                border-color 0.4s ease, box-shadow 0.4s ease;
    will-change: opacity, transform;
    overflow: hidden;
}

.service-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 100%; height: 2px;
    background: var(--accent-gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s var(--easing-weightless);
}

.service-card:hover::after { transform: scaleX(1); }

.service-card.visible { opacity: 1; transform: translateY(0); }

.service-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-hover);
    box-shadow: 0 15px 40px rgba(168, 85, 247, 0.12);
}

.service-num {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 900;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0.5;
}

.service-card h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    line-height: 1.3;
}

.service-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
    font-weight: 300;
}

/* --- FLOAT-IN SYSTEM --- */
.float-in {
    opacity: 0;
    transform: translateY(36px);
    transition: opacity 0.8s var(--easing-weightless), transform 0.8s var(--easing-weightless);
    will-change: opacity, transform;
}

.float-in.visible { opacity: 1; transform: translateY(0); }

/* --- ARTISTS ROSTER --- */
.artists-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    margin-top: 40px;
}

.artist-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 18px;
    overflow: hidden;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: all 0.6s var(--easing-weightless);
    position: relative;
}

.artist-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-hover);
    box-shadow: 0 20px 40px rgba(168, 85, 247, 0.2);
}

.artist-image-wrapper {
    width: 100%;
    aspect-ratio: 1 / 1.25;
    position: relative;
    overflow: hidden;
    background-color: #0e0620;
}

.artist-img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.8s var(--easing-weightless), filter 0.8s var(--easing-weightless);
}

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

.artist-details-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background: linear-gradient(to top, rgba(8, 5, 16, 0.92) 20%, rgba(8, 5, 16, 0.4) 60%, transparent 100%);
    z-index: 3;
}

.artist-card:hover .artist-details-overlay {
    background: rgba(8, 5, 16, 0.82);
}

.artist-name {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.artist-role {
    font-family: var(--font-heading);
    font-size: 0.72rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-weight: 500;
    margin-bottom: 0;
    transition: margin-bottom 0.4s var(--easing-weightless);
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.artist-card:hover .artist-role { margin-bottom: 12px; }

.artist-bio {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.5;
    font-weight: 300;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.4s var(--easing-weightless), opacity 0.4s var(--easing-weightless);
}

.artist-card:hover .artist-bio { max-height: 120px; opacity: 1; }

/* --- TESTIMONIALS SECTION --- */
.testimonials-container {
    position: relative;
    max-width: 900px;
    margin: 60px auto 0 auto;
    overflow: hidden;
}

.testimonials-slider {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: grab;
}

.testimonials-slider:active { cursor: grabbing; }

.testimonial-slide {
    min-width: 100%;
    padding: 0 40px;
    user-select: none;
    outline: none;
}

.testimonial-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    padding: 60px;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    text-align: center;
    position: relative;
}

.quote-icon {
    font-size: 5rem;
    font-family: serif;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    position: absolute;
    top: 20px; left: 40px;
    opacity: 0.12;
}

.testimonial-text {
    font-size: 1.3rem;
    font-weight: 300;
    line-height: 1.8;
    color: var(--text-primary);
    margin-bottom: 40px;
    font-style: italic;
}

.testimonial-client {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.client-avatar {
    width: 70px; height: 70px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid rgba(168, 85, 247, 0.3);
    display: flex;
    justify-content: center;
    align-items: center;
    background-size: cover;
    background-position: center;
    box-shadow: 0 0 20px rgba(168, 85, 247, 0.15);
}

.client-avatar-fallback {
    width: 100%; height: 100%;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--accent-gradient);
    text-transform: uppercase;
}

.client-name {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.client-company {
    font-size: 0.78rem;
    color: var(--text-muted);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

/* Slider dots */
.slider-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
}

.dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background-color: var(--text-muted);
    cursor: pointer;
    transition: all 0.4s var(--easing-weightless);
}

.dot.active {
    width: 24px;
    border-radius: 4px;
    background: var(--accent-gradient);
}

/* --- PARTNER MARQUEE --- */
.partners-marquee-section {
    padding: 50px 0 60px;
    background-color: rgba(15, 6, 25, 0.7);
    overflow: hidden;
    position: relative;
    z-index: 2;
}

.marquee-heading {
    text-align: center;
    padding: 0 8% 40px;
}

.marquee-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    text-transform: uppercase;
    color: var(--text-primary);
    margin-top: 8px;
}

.marquee-title span {
    font-weight: 300;
    color: var(--text-secondary);
}

.marquee-container {
    display: flex;
    overflow: hidden;
    user-select: none;
    width: 100%;
    gap: 80px;
}

.marquee-content {
    display: flex;
    gap: 80px;
    flex-shrink: 0;
    min-width: 100%;
    justify-content: space-around;
    animation: scrollMarquee 30s linear infinite;
}

.partner-item {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-muted);
    white-space: nowrap;
    transition: color 0.3s var(--easing-weightless);
    display: flex;
    align-items: center;
}

.partner-name {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
    white-space: nowrap;
    transition: color 0.3s var(--easing-weightless);
    cursor: default;
}

.partner-name:hover {
    color: rgba(255, 255, 255, 0.85);
}

.marquee-dot {
    font-size: 0.5rem;
    color: var(--accent-purple);
    opacity: 0.5;
    align-self: center;
}

/* --- CONTACT --- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    margin-bottom: 80px;
}

.contact-email-link {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    width: fit-content;
    position: relative;
    padding-bottom: 4px;
    transition: color 0.3s var(--easing-weightless);
}

.contact-email-link::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 100%; height: 1px;
    background: var(--accent-gradient);
    transform: scaleX(0.4);
    transform-origin: left;
    transition: transform 0.4s var(--easing-weightless);
}

.contact-email-link:hover { color: var(--accent-purple); }
.contact-email-link:hover::after { transform: scaleX(1); }

/* Contact form */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 600px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.form-input, .form-textarea {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 10px;
    padding: 14px 20px;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 300;
    transition: border-color 0.3s, box-shadow 0.3s;
    outline: none;
    resize: none;
}

.form-input:focus, .form-textarea:focus {
    border-color: var(--accent-purple);
    box-shadow: 0 0 0 3px rgba(168, 85, 247, 0.1);
}

.form-textarea { min-height: 140px; }

/* --- FOOTER --- */
footer {
    padding: 80px 8% 40px 8%;
    background-color: #050210;
    border-top: 1px solid var(--card-border);
    position: relative;
    z-index: 2;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 80px;
    margin-bottom: 60px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-brand p {
    font-size: 1rem;
    color: var(--text-secondary);
    max-width: 400px;
    font-weight: 300;
    line-height: 1.7;
}

.footer-links-col h4 {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 24px;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s var(--easing-weightless);
}

.footer-links a:hover { color: var(--accent-gold); }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(168, 85, 247, 0.08);
    padding-top: 40px;
    font-size: 0.78rem;
    color: var(--text-muted);
}

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

.social-link {
    color: var(--text-muted);
    text-decoration: none;
    font-family: var(--font-heading);
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transition: color 0.3s var(--easing-weightless);
}

.social-link:hover { color: var(--accent-gold); }

/* --- ANIMATIONS --- */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes spin { to { transform: rotate(360deg); } }

@keyframes scrollMouse {
    0%   { opacity: 1; top: 6px; }
    50%  { opacity: 0.3; top: 18px; }
    100% { opacity: 1; top: 6px; }
}

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

/* --- CLIENT & HOSPITALITY TESTIMONIALS GRID --- */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin: 40px 0 60px 0;
}

.partner-card-testimonial {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: all 0.5s var(--easing-weightless);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.partner-card-testimonial:hover {
    transform: translateY(-5px);
    border-color: var(--border-hover);
    box-shadow: 0 15px 35px rgba(168, 85, 247, 0.12);
}

.partner-quote {
    font-size: 1.05rem;
    font-weight: 300;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 24px;
    font-style: italic;
}

.partner-info-meta {
    display: flex;
    align-items: center;
    gap: 14px;
}

.partner-avatar-logo {
    width: 48px; height: 48px;
    border-radius: 50%;
    background: var(--accent-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
}

.partner-name-role h4 {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.partner-name-role span {
    font-size: 0.72rem;
    color: var(--text-muted);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* --- RESPONSIVE BREAKPOINTS --- */
@media (max-width: 1200px) {
    .services-grid { grid-template-columns: repeat(3, 1fr); }
    .artists-grid  { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 992px) {
    section { padding: 80px 5% 60px 5%; }
    .section-title { font-size: 2.5rem; }
    .vision-mission-grid { grid-template-columns: 1fr; gap: 40px; }
    .founders-grid { grid-template-columns: repeat(2, 1fr); gap: 30px; }
    .home-founders-preview { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .hero-slogan { font-size: 2.2rem; letter-spacing: 0.15em; }
    .page-hero-title { font-size: 3rem; }
    .contact-grid { grid-template-columns: 1fr; gap: 40px; }
    .home-services-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    header { padding: 0 24px; }
    .nav-menu { display: none; }
    .hamburger { display: flex; }
    .founders-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
    .home-founders-preview { grid-template-columns: 1fr; max-width: 360px; margin: 0 auto; }
    .home-artists-strip { justify-content: flex-start; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .artists-grid  { grid-template-columns: repeat(2, 1fr); }
    .footer-grid   { grid-template-columns: 1fr; gap: 40px; }
    .page-hero { padding: 130px 5% 50px 5%; }
    .home-services-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .section-title { font-size: 2rem; }
    .services-grid { grid-template-columns: 1fr; }
    .artists-grid  { grid-template-columns: 1fr; max-width: 320px; margin: 40px auto 0; }
    .testimonial-card { padding: 40px 20px; }
    .testimonial-text { font-size: 1.1rem; }
    .hero-slogan { font-size: 1.2rem; letter-spacing: 0.2em; }
    .page-hero-title { font-size: 2.2rem; }
    .logo-text { font-size: 0.95rem; letter-spacing: 0.15em; }
    .logo img { height: 34px; }
    .home-services-grid { grid-template-columns: 1fr; }
}

