:root {
    /* Luxury Dark Colors */
    --bg-dark: #050505;
    --bg-darker: #020202;
    --bg-light: #fdfdfd;
    --text-main: #f0f0f0;
    --text-muted: #999999;
    --text-dark: #111111;

    /* Gold/Champagne Accents */
    --gold: #d4af37;
    --gold-light: #f3e5ab;
    --gold-dark: #8c7322;
    --gold-dim: rgba(212, 175, 55, 0.15);

    /* Typography */
    --font-heading: 'Cinzel', serif;
    --font-body: 'Montserrat', sans-serif;

    /* Utilities */
    --transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    --border-ghost: 1px solid rgba(255, 255, 255, 0.08);
}

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

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

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

::selection {
    background: var(--gold);
    color: var(--bg-dark);
}

/* Typography Classes */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 400;
}

p {
    font-family: var(--font-body);
}

.text-muted {
    color: var(--text-muted);
}

.text-light {
    color: var(--text-main);
}

.text-dark {
    color: var(--text-dark);
}

.gold-text {
    color: var(--gold);
}

.dark-text {
    color: #111;
}

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

.text-sm {
    font-size: 0.9rem;
}

.text-xs {
    font-size: 0.75rem;
}

.uppercase-spaced {
    text-transform: uppercase;
    letter-spacing: 2px;
}

.opacity-50 {
    opacity: 0.5;
}

.font-weight-500 {
    font-weight: 500;
}

/* Spacing */
.mt-2 {
    margin-top: 2rem;
}

.mt-3 {
    margin-top: 3rem;
}

.mt-4 {
    margin-top: 4rem;
}

.mt-5 {
    margin-top: 5rem;
}

.mt-8 {
    margin-top: 8rem;
}

.mb-2 {
    margin-bottom: 2rem;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.max-w-m {
    max-width: 700px;
}

.hidden {
    display: none !important;
}

/* Layout & Sections */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-dark {
    background-color: var(--bg-darker);
    padding: 8rem 0;
}

.section-light {
    background-color: var(--bg-light);
    color: var(--text-dark);
    padding: 8rem 0;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
}

@media (min-width: 800px) {
    .grid-2 {
        grid-template-columns: 1fr 1fr;
        gap: 6rem;
    }
}

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

/* Cinematic Adjustments */
.noise-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 200%;
    height: 200%;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.05;
    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.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    animation: film-grain 1s steps(10) infinite;
}

@keyframes film-grain {
    0%, 100% { transform: translate(0, 0); }
    10% { transform: translate(-5%, -5%); }
    20% { transform: translate(-10%, 5%); }
    30% { transform: translate(5%, -10%); }
    40% { transform: translate(-5%, 15%); }
    50% { transform: translate(-10%, 5%); }
    60% { transform: translate(15%, 0); }
    70% { transform: translate(0, 10%); }
    80% { transform: translate(-15%, 0); }
    90% { transform: translate(10%, 5%); }
}

.ken-burns-bg {
    animation: ken-burns 25s ease-out infinite alternate;
}

@keyframes ken-burns {
    0% { transform: scale(1) translate(0, 0); }
    100% { transform: scale(1.15) translate(-2%, -2%); }
}

.parallax-bg {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.hero-bg-origin {
    transform-origin: center top;
}

.bg-cover-art {
    background-image: url('images/cover-art.png');
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 2.5rem 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    transition: var(--transition);
}

@media (max-width: 768px) {
    .navbar {
        padding: 1.5rem 2rem;
    }
}

.navbar.scrolled {
    background: rgba(2, 2, 2, 0.85);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    padding: 1.2rem 4rem;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

@media (max-width: 768px) {
    .navbar.scrolled {
        padding: 1rem 2rem;
    }
}

.logo-group {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.main-brand {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    letter-spacing: 4px;
    font-weight: 500;
    color: var(--text-main);
    line-height: 1.2;
}

.sub-brand {
    font-family: var(--font-body);
    font-size: 0.6rem;
    letter-spacing: 3px;
    font-weight: 300;
    color: var(--gold);
    text-transform: uppercase;
}

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

.language-switcher {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-body);
    font-size: 0.75rem;
    letter-spacing: 1px;
}

.lang-btn {
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    padding: 0.2rem;
    transition: var(--transition);
    font-weight: 300;
}

.lang-btn:hover {
    color: var(--text-main);
}

.lang-btn.active {
    color: var(--gold);
    font-weight: 500;
}

.lang-divider {
    color: rgba(255, 255, 255, 0.1);
    font-size: 0.8rem;
}

.nav-cta {
    color: var(--text-main);
    text-decoration: none;
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 4px;
    transition: var(--transition);
}

.nav-cta::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s ease;
}

.nav-cta:hover {
    color: var(--gold);
}

.nav-cta:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* Buttons */
.btn-primary {
    display: inline-block;
    padding: 1.2rem 3.5rem;
    background: transparent;
    color: var(--text-main);
    text-decoration: none;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    border: 1px solid var(--gold);
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    cursor: pointer;
    text-align: center;
}

.btn-primary.btn-full {
    width: 100%;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gold);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: -1;
}

.btn-primary:hover {
    color: var(--bg-darker);
    border-color: var(--gold);
}

.btn-primary:hover::before {
    transform: scaleY(1);
    transform-origin: top;
}

/* Titles */
.subtitle {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 2rem;
}

.title {
    font-size: clamp(2.5rem, 6vw, 5.5rem);
    line-height: 1.1;
    margin-bottom: 2rem;
    font-weight: 400;
}

.title span {
    color: var(--gold);
    font-style: italic;
    font-weight: 300;
}

.section-title {
    font-size: clamp(2.2rem, 4vw, 3.8rem);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.label {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 1rem;
    display: block;
}

.label.gold {
    color: var(--gold);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    text-align: center;
    padding: 0 2rem;
    background: radial-gradient(circle at center, rgba(30, 30, 30, 0.5) 0%, var(--bg-darker) 100%);
    overflow: hidden;
}

/* Subtle moving gradient behind hero */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 120%, var(--gold-dim) 0%, transparent 60%);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
}

.hero-desc {
    font-size: 1.2rem;
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto 3.5rem auto;
    color: var(--text-muted);
    line-height: 1.8;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    opacity: 0.5;
    z-index: 2;
}

.scroll-indicator span {
    font-size: 0.65rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 300;
}

.scroll-indicator .line {
    width: 1px;
    height: 50px;
    background: var(--text-main);
    animation: scrollDrop 2.5s infinite cubic-bezier(0.16, 1, 0.3, 1);
    transform-origin: top;
}

@keyframes scrollDrop {
    0% {
        transform: scaleY(0);
        transform-origin: top;
    }

    50% {
        transform: scaleY(1);
        transform-origin: top;
    }

    50.1% {
        transform: scaleY(1);
        transform-origin: bottom;
    }

    100% {
        transform: scaleY(0);
        transform-origin: bottom;
    }
}

/* 99% vs THE VOTES */
.problem p,
.solution p {
    font-size: 1.1rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.problem .highlight {
    color: var(--text-main);
    font-weight: 400;
    border-left: 2px solid rgba(255, 255, 255, 0.2);
    padding-left: 1.5rem;
    font-style: italic;
    margin-top: 2rem;
}

.solution.box-glow {
    background: rgba(255, 255, 255, 0.02);
    padding: 3.5rem;
    border: 1px solid var(--gold-dim);
    position: relative;
}

.solution.box-glow::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.08) 0%, transparent 80%);
    pointer-events: none;
}

/* Graphic */
.waveform-graphic {
    display: flex;
    align-items: center;
    gap: 4px;
    height: 40px;
    margin-top: 3rem;
    opacity: 0.7;
}

.waveform-graphic .bar {
    width: 3px;
    background: var(--gold);
    animation: wave 1.5s infinite ease-in-out alternate;
}

.waveform-graphic .bar:nth-child(1) {
    height: 10px;
    animation-delay: 0.1s;
}

.waveform-graphic .bar:nth-child(2) {
    height: 25px;
    animation-delay: -0.2s;
}

.waveform-graphic .bar:nth-child(3) {
    height: 40px;
    animation-delay: 0.3s;
}

.waveform-graphic .bar:nth-child(4) {
    height: 20px;
    animation-delay: -0.4s;
}

.waveform-graphic .bar:nth-child(5) {
    height: 15px;
    animation-delay: 0.5s;
}

@keyframes wave {
    0% {
        transform: scaleY(0.5);
    }

    100% {
        transform: scaleY(1);
    }
}

/* Process Section */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 5rem auto 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 24px;
    width: 1px;
    background: rgba(0, 0, 0, 0.1);
}

.timeline-item {
    position: relative;
    padding-left: 6rem;
    margin-bottom: 4rem;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.step-num {
    position: absolute;
    left: 0;
    top: 0;
    width: 50px;
    height: 50px;
    background: var(--bg-light);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--text-muted);
    z-index: 2;
    transition: var(--transition);
}

.step-content h4 {
    font-size: 1.6rem;
    margin-bottom: 0.8rem;
    font-weight: 500;
}

.step-content p {
    color: #444;
    font-weight: 300;
    line-height: 1.7;
}

/* The Highlighted Step */
.timeline-item.pop-out {
    transform: scale(1.02);
    margin-top: 5rem;
    margin-bottom: 5rem;
    z-index: 5;
}

.gold-border {
    border-color: var(--gold);
    background: var(--bg-darker);
    color: var(--gold);
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.4);
}

.gold-box {
    background: var(--bg-darker);
    padding: 3rem;
    border: 1px solid var(--gold);
    border-radius: 4px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.gold-box .light-text {
    color: rgba(255, 255, 255, 0.8);
}

.gold-box strong {
    color: var(--gold);
    font-weight: 500;
}

/* Asset Section */
.platforms {
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
    align-items: center;
}

.platform {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
    position: relative;
}

.platform::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: all 0.4s ease;
    transform: translateX(-50%);
}

.platform:hover {
    color: var(--gold);
    transform: translateY(-5px);
}

.platform:hover::after {
    width: 100%;
}

.royalties-box {
    display: inline-block;
    padding: 1rem 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(0, 0, 0, 0.3);
}

.royalties {
    font-size: 0.8rem;
    color: var(--gold);
    letter-spacing: 2px;
}

/* Audio Player Section */
.audio-player-wrapper {
    background: rgba(2, 2, 2, 0.6);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 8px;
    padding: 2.5rem;
}

.track-info {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.cover-art-placeholder {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #111, #333);
    border: 1px solid var(--gold);
    border-radius: 4px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    flex-shrink: 0;
}

.vinyl-record {
    position: absolute;
    right: -40px;
    top: 50%;
    transform: translateY(-50%);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: repeating-radial-gradient(#111, #111 2px, #222 3px, #222 4px);
    z-index: -1;
    border: 1px solid #000;
    transition: transform 1s linear;
}

/* Add an animation class when playing */
.audio-player-wrapper.playing .vinyl-record {
    animation: spinVinyl 4s linear infinite;
    right: -35px;
    /* pop out slightly more */
}

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

.cover-text {
    font-family: var(--font-heading);
    color: var(--gold);
    font-size: 1.2rem;
    z-index: 2;
    background: rgba(0, 0, 0, 0.4);
    padding: 0.2rem 0.5rem;
}

.track-title {
    font-size: 1.3rem;
    margin-bottom: 0.2rem;
}

.track-artists {
    font-size: 0.9rem;
}

.progress-bar-bg {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    position: relative;
    cursor: pointer;
}

.progress-bar-fill {
    height: 100%;
    background: var(--gold);
    border-radius: 2px;
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
}

.progress-knob {
    width: 12px;
    height: 12px;
    background: var(--bg-light);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.time-stamps {
    display: flex;
    justify-content: space-between;
    margin-top: 0.5rem;
}

.play-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}

.player-btn {
    background: none;
    border: none;
    cursor: pointer;
    transition: transform 0.2s ease, color 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.player-btn:hover {
    transform: scale(1.1);
    color: var(--text-main);
}

.player-btn.play-pause:hover {
    color: var(--gold-light);
    transform: scale(1.05);
}

/* Playlist Styles */
.playlist {
    text-align: left;
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 8px;
    overflow: hidden;
}

.playlist-item {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    cursor: pointer;
    transition: background 0.3s ease, color 0.3s ease;
    position: relative;
}

.playlist-item:last-child {
    border-bottom: none;
}

.playlist-item:hover {
    background: rgba(212, 175, 55, 0.06);
}

.playlist-item.active {
    background: rgba(212, 175, 55, 0.1);
    border-left: 2px solid var(--gold);
}

.playlist-num {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    color: var(--text-muted);
    min-width: 24px;
    text-align: center;
    transition: color 0.3s;
}

.playlist-item.active .playlist-num,
.playlist-item:hover .playlist-num {
    color: var(--gold);
}

.playlist-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    overflow: hidden;
}

.playlist-track-title {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-main);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: color 0.3s;
}

.playlist-item.active .playlist-track-title {
    color: var(--gold);
}

.playlist-track-artist {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 300;
    color: var(--text-muted);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.playlist-duration {
    font-family: var(--font-body);
    font-size: 0.78rem;
    color: var(--text-muted);
    min-width: 40px;
    text-align: right;
}

/* Director Section */
.border-top-ghost {
    border-top: var(--border-ghost);
}

/* Director Credentials List */
.director-credentials {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    border-top: 1px solid rgba(212, 175, 55, 0.15);
    padding-top: 1.5rem;
}

.credential-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.5px;
}

.credential-icon {
    color: var(--gold);
    font-size: 0.65rem;
    flex-shrink: 0;
}

/* Director Reel Video Embed */
.reel-wrapper {
    position: relative;
    margin-top: 2rem;
}

.reel-video-container {
    position: relative;
    width: 100%;
    padding-top: 100%;
    /* 1:1 square — 1080×1080 */
    background: #050505;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.25);
}

.reel-video-container iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%) scale(1.04);
    /* Overscan to hide potential black bars */
    border: 0;
    display: block;
    object-fit: cover;
}

.reel-frame-border {
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    border: 1px solid rgba(212, 175, 55, 0.18);
    pointer-events: none;
    z-index: 2;
}

.reel-badge {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.62rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    background: var(--bg-darker);
    border: 1px solid rgba(212, 175, 55, 0.35);
    padding: 5px 14px;
    margin-bottom: 0.75rem;
}

.reel-signature {
    font-family: var(--font-body);
    font-size: 0.62rem;
    letter-spacing: 5px;
    color: var(--text-muted);
    text-align: right;
    margin-top: 0.85rem;
    text-transform: uppercase;
}

/* Offer Section */
.offer-section {
    position: relative;
}

.banner-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at bottom, rgba(212, 175, 55, 0.05) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
}

.offer-section .container {
    position: relative;
    z-index: 1;
}

.price-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    max-width: 950px;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 768px) {
    .price-cards {
        grid-template-columns: 1fr 1fr;
        align-items: center;
    }
}

.price-card {
    padding: 4rem 3rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.01);
    position: relative;
    transition: var(--transition);
}

.price-card.ghost {
    opacity: 0.5;
}

.price-card.prime {
    border-color: var(--gold);
    background: linear-gradient(180deg, rgba(212, 175, 55, 0.07) 0%, transparent 100%);
    transform: scale(1.05);
    z-index: 2;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

.badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: var(--bg-darker);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 6px 16px;
}

.strikethrough {
    text-decoration: line-through;
    color: var(--text-muted);
}

.price {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    margin: 1.5rem 0;
    line-height: 1;
}

.deliverables-list {
    list-style: none;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
}

.deliverables-list li {
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.5;
}

.deliverables-list li::before {
    content: "•";
    color: var(--gold);
    position: absolute;
    left: 0;
    font-size: 1.2rem;
    top: -2px;
}

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

.mb-4 {
    margin-bottom: 4rem;
}

/* Footer */
.footer {
    text-align: center;
    padding: 4rem 2rem;
    background: var(--bg-dark);
    border-top: var(--border-ghost);
}

.footer .logo {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #555;
}

/* Modal and Form Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.85);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: var(--bg-darker);
    border: 1px solid var(--gold);
    padding: 3rem;
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    transform: translateY(30px) scale(0.95);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8), 0 0 40px rgba(212, 175, 55, 0.1);
}

.modal-overlay.active .modal-content {
    transform: translateY(0) scale(1);
}

.modal-header {
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
}

.close-modal {
    position: absolute;
    top: -1rem;
    right: -1rem;
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 2rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close-modal:hover {
    color: var(--gold);
}

/* Luxury Form Elements */
.luxury-form {
    text-align: left;
}

.input-wrapper label,
.form-group label {
    display: block;
    font-family: var(--font-body);
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.luxury-form input,
.luxury-form select,
.luxury-form textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-main);
    font-family: var(--font-body);
    font-size: 0.95rem;
    padding: 1rem;
    transition: var(--transition);
}

.luxury-form input:focus,
.luxury-form select:focus,
.luxury-form textarea:focus {
    outline: none;
    border-color: var(--gold);
    background: rgba(212, 175, 55, 0.05);
}

.luxury-form select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23d4af37' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 3rem;
}

.luxury-form select option,
.luxury-form select optgroup {
    background-color: var(--bg-darker);
    color: var(--text-main);
}

.luxury-form textarea {
    resize: vertical;
}

/* Custom Scrollbar for Modal content if it exceeds max height */
.modal-content::-webkit-scrollbar {
    width: 6px;
}

.modal-content::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.02);
}

.modal-content::-webkit-scrollbar-thumb {
    background: rgba(212, 175, 55, 0.3);
}

.modal-content::-webkit-scrollbar-thumb:hover {
    background: rgba(212, 175, 55, 0.5);
}

/* Deliverables Dynamics Section */
.deliverables-section {
    padding: 8rem 0;
}

.deliverables-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
}

@media (min-width: 768px) {
    .deliverables-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .deliverables-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.deliverable-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(212, 175, 55, 0.15);
    padding: 3.5rem 2rem 2.5rem;
    text-align: center;
    position: relative;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    height: 100%;
}

.deliverable-card:hover {
    background: rgba(212, 175, 55, 0.06);
    border-color: var(--gold);
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.deliv-time-badge {
    position: absolute;
    top: -12px;
    background: var(--gold);
    color: var(--bg-darker);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 2px;
    padding: 5px 12px;
    text-transform: uppercase;
}

.deliv-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

/* Serif luxury titles for deliverable cards */
.deliv-card-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 400;
    margin-bottom: 1.2rem;
    letter-spacing: 0.5px;
    line-height: 1.3;
}

.deliverable-card h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.deliv-desc {
    font-size: 0.95rem;
    line-height: 1.85;
    color: var(--text-muted);
    max-width: 280px;
}

.deliverable-card p {
    font-size: 0.9rem;
    line-height: 1.7;
}

/* Animations Framework */
.reveal {
    opacity: 0;
    transition: all 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.fade-up {
    transform: translateY(50px);
}

.fade-left {
    transform: translateX(50px);
}

.fade-right {
    transform: translateX(-50px);
}

.delay-1 {
    transition-delay: 0.15s;
}

.delay-2 {
    transition-delay: 0.3s;
}

.delay-3 {
    transition-delay: 0.45s;
}

/* Glow Utilities */
.glow-effect {
    position: relative;
}

.glow-effect::after {
    content: '';
    position: absolute;
    top: -5%;
    left: -5%;
    width: 110%;
    height: 110%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.8s;
    z-index: -1;
}

.glow-effect:hover::after {
    opacity: 1;
}

/* New classes from inline styles */
.modal-title-custom {
    font-size: 1.8rem;
}

.form-group-flex {
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group-mb-2 {
    margin-bottom: 2rem;
}

.success-message {
    text-align: center;
    padding: 1rem 0;
}

.success-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--gold);
}

.success-title-custom {
    font-size: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.success-text {
    line-height: 1.6;
}

.success-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin: 1.5rem 0;
    padding-top: 1.5rem;
}

.success-tag {
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-inline {
    display: inline-block;
}

.playlist-header-custom {
    letter-spacing: 3px;
    margin-bottom: 1rem;
}

/* Talent Ecosystem Styles */
.talent-section {
    padding: 8rem 0;
    position: relative;
}

.talent-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 768px) {
    .talent-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.talent-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(212, 175, 55, 0.15);
    padding: 3rem;
    border-radius: 4px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.talent-card:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.talent-icon {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.talent-avatars {
    display: flex;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.talent-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--bg-dark);
    border: 2px solid var(--gold-dim);
    transition: var(--transition);
}

.talent-avatar:hover {
    border-color: var(--gold);
    transform: scale(1.1);
    z-index: 2;
}

.apply-cta {
    border: 1px dashed rgba(212, 175, 55, 0.3);
    background: rgba(212, 175, 55, 0.02);
    border-radius: 4px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Locations Slider */
.locations-section {
    padding: 8rem 0;
}

.locations-slider-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.locations-slider {
    flex: 1;
    overflow: hidden;
    position: relative;
}

.location-card {
    background: var(--bg-dark);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 4px;
    overflow: hidden;
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.location-card.slide-out-left {
    animation: slideOutLeft 0.4s ease forwards;
}

.location-card.slide-in-right {
    animation: slideInRight 0.4s ease forwards;
}

.location-card.slide-out-right {
    animation: slideOutRight 0.4s ease forwards;
}

.location-card.slide-in-left {
    animation: slideInLeft 0.4s ease forwards;
}

@keyframes slideOutLeft {
    from {
        transform: translateX(0);
        opacity: 1;
    }

    to {
        transform: translateX(-60px);
        opacity: 0;
    }
}

@keyframes slideInRight {
    from {
        transform: translateX(60px);
        opacity: 0;
    }

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

@keyframes slideOutRight {
    from {
        transform: translateX(0);
        opacity: 1;
    }

    to {
        transform: translateX(60px);
        opacity: 0;
    }
}

@keyframes slideInLeft {
    from {
        transform: translateX(-60px);
        opacity: 0;
    }

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

.loc-image {
    width: 100%;
    height: 380px;
    background-color: #111;
    background-size: cover;
    background-position: center;
    position: relative;
}

.loc-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to bottom, transparent, rgba(5, 5, 5, 0.85));
}

.loc-content {
    padding: 2rem 2.5rem;
    position: relative;
    z-index: 2;
    background: var(--bg-dark);
    text-align: left;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.loc-content h4 {
    font-size: 1.5rem;
    margin-bottom: 0;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
}

/* Location background placeholders */
.loc-bg-1 {
    background: linear-gradient(135deg, #2a2318 0%, #1a1610 50%, #241d12 100%);
}

.loc-bg-2 {
    background: linear-gradient(135deg, #1d1810 0%, #362915 50%, #221d0e 100%);
}

.loc-bg-3 {
    background: linear-gradient(135deg, #16181d 0%, #0d0f12 50%, #131518 100%);
}

/* Slider nav buttons */
.loc-slider-btn {
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(212, 175, 55, 0.25);
    color: var(--gold);
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: 50%;
    transition: var(--transition);
}

.loc-slider-btn:hover {
    background: rgba(212, 175, 55, 0.12);
    border-color: var(--gold);
    transform: scale(1.08);
}

/* Dot indicators */
.loc-slider-dots {
    display: flex;
    justify-content: center;
    gap: 0.6rem;
}

.loc-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
}

.loc-dot.active {
    background: var(--gold);
    transform: scale(1.3);
}

.flex {
    display: flex;
}

.gap-2 {
    gap: 0.5rem;
}

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

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

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

/* Icon Size Utilities */
.icon-size-4 { font-size: 4rem; }
.icon-size-6 { font-size: 6rem; }
.icon-size-7 { font-size: 7rem; }
.icon-size-2-5 { font-size: 2.5rem; }