/* ============================================
   Project Prophets Entertainment
   Design System — Dark, Cinematic, Premium
   ============================================ */

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

:root {
    --gold: #C9A84C;
    --gold-light: #E8D48B;
    --gold-dark: #A68B3C;
    --black: #0A0A0A;
    --dark: #111111;
    --darker: #1A1A1A;
    --darkest: #0D0D0D;
    --gray: #888888;
    --gray-light: #AAAAAA;
    --gray-dark: #555555;
    --white: #F5F5F0;
    --red: #8B0000;
    --crimson: #8B0000;
    --crimson-dark: #6B0000;
    --crimson-light: #A80000;
    --crimson-glow: rgba(139,0,0,0.18);
    --crimson-border: rgba(139,0,0,0.35);
    --green: #4FD97A;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Space Grotesk', sans-serif;
    background: var(--black);
    color: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Grain overlay */
body::before {
    content: '';
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 1000;
}

a {
    color: inherit;
    text-decoration: none;
}

/* ============================================
   Typography
   ============================================ */

h1, h2, h3, h4 {
    font-family: 'Syne', sans-serif;
}

.section-label {
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 24px;
    font-weight: 600;
}

/* ============================================
   Buttons
   ============================================ */

.btn {
    display: inline-block;
    padding: 14px 32px;
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-gold {
    background: var(--gold);
    color: var(--black);
}

.btn-gold:hover {
    background: var(--gold-light);
    transform: translateY(-1px);
}

.btn-outline {
    background: transparent;
    border: 1px solid rgba(201,168,76,0.3);
    color: var(--white);
}

.btn-outline:hover {
    border-color: var(--crimson);
    color: var(--white);
    background: rgba(139,0,0,0.12);
}

.btn-crimson {
    background: var(--crimson);
    color: var(--white);
    border: 1px solid var(--crimson-light);
}

.btn-crimson:hover {
    background: var(--crimson-light);
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(139,0,0,0.4);
}

.btn-sm {
    padding: 10px 20px;
    font-size: 0.75rem;
}

.btn-lg {
    padding: 18px 48px;
    font-size: 0.95rem;
}

.btn-block {
    display: block;
    width: 100%;
}

/* ============================================
   Navigation
   ============================================ */

nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 24px 48px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    background: linear-gradient(180deg, rgba(10,10,10,0.98) 0%, rgba(10,10,10,0.85) 60%, rgba(10,10,10,0) 100%);
}

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

.logo-img {
    height: 52px;
    width: auto;
    display: block;
    object-fit: contain;
    filter: drop-shadow(0 0 8px rgba(139,0,0,0.4)) drop-shadow(0 0 2px rgba(201,168,76,0.3));
    transition: filter 0.3s ease;
}

.logo:hover .logo-img {
    filter: drop-shadow(0 0 12px rgba(139,0,0,0.6)) drop-shadow(0 0 4px rgba(201,168,76,0.5));
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    font-size: 0.8rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gray);
    text-decoration: none;
    transition: color 0.2s;
    font-weight: 500;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--white);
}

.nav-links a.active {
    position: relative;
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--gold);
}

.nav-cta {
    background: var(--gold) !important;
    color: var(--black) !important;
    padding: 10px 24px;
    font-family: 'Syne', sans-serif !important;
    font-weight: 700 !important;
    font-size: 0.75rem !important;
    letter-spacing: 0.1em !important;
}

.nav-cta:hover {
    background: var(--gold-light) !important;
    box-shadow: 0 4px 20px rgba(201,168,76,0.3) !important;
    transform: translateY(-1px) !important;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 101;
}

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

.mobile-menu-btn.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}
.mobile-menu-btn.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10,10,10,0.98);
    z-index: 99;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 32px;
}

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

.mobile-menu a {
    font-family: 'Syne', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: color 0.2s;
}

.mobile-menu a:hover,
.mobile-menu a.active {
    color: var(--gold);
}

.mobile-menu .nav-cta {
    padding: 14px 40px;
    font-size: 1rem !important;
}

/* ============================================
   Hero
   ============================================ */

.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 120px 48px 80px;
    position: relative;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0; right: 0;
    width: 50%;
    height: 100%;
    background: radial-gradient(ellipse at 80% 40%, rgba(201,168,76,0.06) 0%, transparent 70%);
    pointer-events: none;
}

.hero-label {
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 32px;
    font-weight: 600;
}

.hero h1 {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: clamp(3rem, 8vw, 7rem);
    line-height: 0.95;
    letter-spacing: -0.02em;
    margin-bottom: 40px;
    max-width: 900px;
}

.hero h1 span {
    color: var(--gold);
}

.hero-sub {
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--gray);
    max-width: 520px;
    font-weight: 300;
}

.hero-actions {
    display: flex;
    gap: 16px;
    margin-top: 48px;
}

/* ============================================
   Page Hero (interior pages)
   ============================================ */

.page-hero {
    padding: 160px 48px 80px;
    max-width: 800px;
}

.page-hero h1 {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: clamp(2.5rem, 6vw, 5rem);
    line-height: 1;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
}

.page-hero h1 span {
    color: var(--gold);
}

.page-hero-sub {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--gray);
    font-weight: 300;
    max-width: 600px;
}

/* ============================================
   Divider
   ============================================ */

.divider {
    width: 60px;
    height: 1px;
    background: var(--gold);
    margin: 80px 48px;
}

.artist-divider {
    width: 100%;
    height: 1px;
    background: rgba(201,168,76,0.1);
    margin: 0;
}

/* ============================================
   Roc Nation Banner (Homepage)
   ============================================ */

.roc-nation-banner {
    padding: 0 48px 80px;
}

.roc-banner-inner {
    text-align: center;
    padding: 80px 48px;
    background: linear-gradient(180deg, var(--dark) 0%, rgba(201,168,76,0.04) 50%, var(--dark) 100%);
    border: 1px solid rgba(201,168,76,0.15);
    position: relative;
    overflow: hidden;
}

.roc-banner-inner::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(201,168,76,0.06) 0%, transparent 70%);
    pointer-events: none;
}

.roc-banner-label {
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gray);
    margin-bottom: 20px;
}

.roc-banner-name {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: var(--gold);
    margin-bottom: 20px;
    position: relative;
}

.roc-banner-desc {
    font-size: 1rem;
    color: var(--gray);
    font-weight: 300;
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.7;
    position: relative;
}

/* ============================================
   Core Values
   ============================================ */

.core-values {
    padding: 0 48px 100px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(201,168,76,0.1);
}

.value-item {
    background: var(--dark);
    padding: 48px;
}

.value-word {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 16px;
}

.value-item p {
    color: var(--gray);
    line-height: 1.7;
    font-weight: 300;
    font-size: 0.95rem;
}

/* ============================================
   Deal Structure
   ============================================ */

.deal-structure {
    padding: 120px 48px;
    border-top: 1px solid rgba(201,168,76,0.1);
}

.deal-structure h2 {
    font-weight: 700;
    font-size: 2.4rem;
    line-height: 1.15;
    margin-bottom: 60px;
    max-width: 600px;
}

.deal-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(201,168,76,0.1);
}

.deal-card {
    background: var(--dark);
    padding: 40px;
}

.deal-card-featured {
    background: linear-gradient(180deg, rgba(201,168,76,0.08) 0%, var(--dark) 100%);
    border: 1px solid rgba(201,168,76,0.2);
}

.deal-number {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 3.5rem;
    color: var(--gold);
    margin-bottom: 8px;
    line-height: 1;
}

.deal-icon {
    color: var(--gold);
    margin-bottom: 16px;
}

.deal-title {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--white);
}

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

/* Deal Highlights (used on Collective + Distribution pages) */
.deal-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
    padding: 48px;
}

.deal-highlight {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
}

.deal-highlight-num {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 2.5rem;
    color: var(--gold);
    line-height: 1;
}

.deal-highlight-icon {
    color: var(--gold);
}

.deal-highlight-label {
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gray-light);
    font-weight: 500;
}

/* Collective Deal section */
.collective-deal {
    padding: 100px 48px;
    text-align: center;
    border-top: 1px solid rgba(201,168,76,0.1);
    background: linear-gradient(180deg, var(--black) 0%, var(--dark) 50%, var(--black) 100%);
}

.collective-deal h2 {
    font-weight: 700;
    font-size: 2.2rem;
    margin-bottom: 48px;
}

/* Distribution deal banner */
.dist-deal-banner {
    padding: 0 48px 60px;
    background: linear-gradient(180deg, var(--dark) 0%, var(--black) 100%);
    border-bottom: 1px solid rgba(201,168,76,0.1);
}

/* Collective values banner */
.collective-values {
    padding: 60px 48px;
    text-align: center;
    border-bottom: 1px solid rgba(201,168,76,0.1);
    background: var(--dark);
}

.collective-values-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.collective-values-inner span {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    color: var(--gold);
}

.values-dot {
    font-size: 1rem !important;
    color: var(--gray-dark) !important;
}

/* Collective intro text */
.collective-intro {
    color: var(--gray);
    line-height: 1.7;
    font-weight: 300;
    font-size: 1.05rem;
    max-width: 700px;
    margin-bottom: 48px;
}

/* ============================================
   Stats Strip
   ============================================ */

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(201,168,76,0.15);
    margin: 0;
}

.stat {
    background: var(--dark);
    padding: 60px 48px;
}

.stat-number {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gray);
}

/* ============================================
   About Section
   ============================================ */

.about {
    padding: 120px 48px;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: start;
}

.about h2 {
    font-weight: 700;
    font-size: 2.4rem;
    line-height: 1.15;
    margin-bottom: 24px;
}

.about p {
    color: var(--gray);
    line-height: 1.8;
    font-weight: 300;
    font-size: 1rem;
}

.about p + p {
    margin-top: 20px;
}

/* Roles grid */
.roles {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: rgba(201,168,76,0.1);
}

.role {
    background: var(--darker);
    padding: 32px;
}

.role-title {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 8px;
    color: var(--white);
}

.role-desc {
    font-size: 0.8rem;
    color: var(--gray);
    line-height: 1.6;
    font-weight: 300;
}

/* ============================================
   Studio Notice (Homepage)
   ============================================ */

.studio-notice {
    padding: 0 48px;
    margin: 0 0 0;
}

.studio-notice-inner {
    display: flex;
    gap: 24px;
    padding: 40px 48px;
    background: linear-gradient(135deg, rgba(201,168,76,0.04) 0%, rgba(17,17,17,0.8) 100%);
    border: 1px solid rgba(201,168,76,0.12);
    border-left: 3px solid var(--gold);
    position: relative;
    overflow: hidden;
}

.studio-notice-inner::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 100%;
    background: radial-gradient(ellipse at 100% 50%, rgba(201,168,76,0.04) 0%, transparent 70%);
    pointer-events: none;
}

.studio-notice-icon {
    min-width: 28px;
    padding-top: 2px;
}

.studio-notice-label {
    font-size: 0.65rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 10px;
    font-weight: 600;
}

.studio-notice-content h3 {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 12px;
    line-height: 1.3;
}

.studio-notice-content p {
    color: var(--gray);
    line-height: 1.7;
    font-weight: 300;
    font-size: 0.9rem;
}

.studio-notice-content p strong {
    color: var(--white);
    font-weight: 600;
}

.studio-notice-cta {
    margin-top: 12px;
    color: var(--gray-light) !important;
}

.studio-notice-cta a {
    color: var(--gold);
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid rgba(201,168,76,0.3);
    transition: border-color 0.2s;
}

.studio-notice-cta a:hover {
    border-color: var(--gold);
}

/* Submit page notice */
.submit-notice {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 20px;
    padding: 14px 20px;
    background: rgba(201,168,76,0.05);
    border: 1px solid rgba(201,168,76,0.12);
    font-size: 0.85rem;
    color: var(--gray-light);
    font-weight: 300;
    line-height: 1.5;
}

.submit-notice svg {
    min-width: 16px;
}

.submit-notice strong {
    color: var(--white);
    font-weight: 600;
}

/* ============================================
   Roster Preview (Homepage)
   ============================================ */

.roster-preview {
    padding: 120px 48px;
    border-top: 1px solid rgba(201,168,76,0.1);
}

.roster-preview h2 {
    font-weight: 700;
    font-size: 2.4rem;
    line-height: 1.15;
    margin-bottom: 16px;
}

.roster-grid {
    display: grid;
    gap: 1px;
    background: rgba(201,168,76,0.1);
}

.roster-card {
    display: flex;
    gap: 32px;
    padding: 40px;
    background: var(--dark);
    align-items: flex-start;
}

.roster-avatar {
    width: 80px;
    height: 80px;
    min-width: 80px;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    color: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 1.5rem;
    letter-spacing: 0.05em;
}

.roster-info h3 {
    font-weight: 700;
    font-size: 1.4rem;
    margin-bottom: 6px;
}

.roster-role {
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
    display: block;
    margin-bottom: 12px;
}

.roster-info p {
    color: var(--gray);
    line-height: 1.7;
    font-weight: 300;
    font-size: 0.95rem;
}

/* ============================================
   Artist Feature (Collective Page)
   ============================================ */

.artist-feature {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
    padding: 100px 48px;
    align-items: start;
}

.artist-feature-alt {
    direction: rtl;
}
.artist-feature-alt > * {
    direction: ltr;
}

.artist-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.artist-initials-large {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light));
    color: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 4rem;
    letter-spacing: 0.05em;
}

.artist-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.badge {
    font-size: 0.65rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 6px 14px;
    border: 1px solid rgba(201,168,76,0.2);
    color: var(--gray);
    font-weight: 500;
}

.badge-gold {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(201,168,76,0.08);
}

.artist-content h2 {
    font-weight: 800;
    font-size: 2.5rem;
    margin-bottom: 8px;
}

.artist-title {
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 24px;
    font-weight: 500;
}

.artist-content p {
    color: var(--gray);
    line-height: 1.8;
    font-weight: 300;
    font-size: 1rem;
    margin-bottom: 16px;
}

.artist-stats {
    display: flex;
    gap: 40px;
    margin: 32px 0;
    padding: 24px 0;
    border-top: 1px solid rgba(201,168,76,0.1);
    border-bottom: 1px solid rgba(201,168,76,0.1);
}

.artist-stat-num {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 2rem;
    color: var(--gold);
    display: block;
}

.artist-stat-label {
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gray);
}

.artist-genres {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 24px 0;
}

.genre-pill {
    font-size: 0.75rem;
    padding: 6px 16px;
    border: 1px solid rgba(201,168,76,0.2);
    color: var(--gray-light);
    font-weight: 500;
    letter-spacing: 0.05em;
}

.artist-links {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}

/* ============================================
   Artist Discography
   ============================================ */

.artist-discography {
    display: flex;
    gap: 40px;
    margin: 32px 0 28px;
    flex-wrap: wrap;
}

.disco-block {
    flex: 1;
    min-width: 200px;
    border-top: 1px solid rgba(201,168,76,0.2);
    padding-top: 20px;
}

.disco-block-upcoming {
    border-top-color: rgba(255,255,255,0.08);
}

.disco-block-label {
    font-family: 'Syne', sans-serif;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 14px;
}

.disco-block-upcoming .disco-block-label {
    color: var(--gray);
}

.disco-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.disco-item {
    display: flex;
    align-items: baseline;
    gap: 10px;
    flex-wrap: wrap;
}

.disco-type {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gray);
    min-width: 52px;
    flex-shrink: 0;
}

.disco-title {
    font-family: 'Syne', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--white);
}

.disco-eta {
    font-size: 0.72rem;
    color: var(--gold);
    font-weight: 500;
    letter-spacing: 0.04em;
    opacity: 0.85;
}

/* ============================================
   Artist YouTube Videos Section
   ============================================ */

.artist-videos {
    margin-top: 36px;
    padding-top: 32px;
    border-top: 1px solid rgba(201,168,76,0.15);
}

.artist-videos-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.artist-videos-label {
    font-family: 'Syne', sans-serif;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
}

.artist-videos-channel-link {
    font-family: 'Syne', sans-serif;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gray);
    text-decoration: none;
    transition: color 0.2s ease;
}

.artist-videos-channel-link:hover {
    color: var(--gold);
}

.artist-videos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.yt-embed-wrap {
    background: var(--dark);
    border: 1px solid rgba(201,168,76,0.2);
    border-top: 2px solid var(--gold);
    border-radius: 4px;
    overflow: hidden;
}

.yt-embed-label {
    padding: 8px 12px;
    font-family: 'Syne', sans-serif;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
    background: rgba(201,168,76,0.06);
    border-bottom: 1px solid rgba(201,168,76,0.12);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.yt-embed-ratio {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}

.yt-embed-ratio iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

.artist-videos-note {
    margin-top: 14px;
    font-size: 0.75rem;
    color: var(--gray);
    font-style: italic;
    letter-spacing: 0.02em;
}

/* ============================================
   Genres Section
   ============================================ */

.genres {
    padding: 100px 48px;
    border-top: 1px solid rgba(201,168,76,0.1);
}

.genre-list {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.genre-tag {
    font-family: 'Syne', sans-serif;
    font-weight: 600;
    font-size: clamp(1.2rem, 3vw, 2rem);
    color: var(--white);
    padding: 12px 28px;
    border: 1px solid rgba(201,168,76,0.2);
    transition: all 0.3s ease;
}

.genre-tag:hover {
    border-color: var(--gold);
    color: var(--gold);
}

/* ============================================
   Studio Notice
   ============================================ */

.studio-notice {
    padding: 0 48px 80px;
}

.notice-inner {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 32px 40px;
    background: rgba(201,168,76,0.03);
    border-left: 3px solid rgba(201,168,76,0.3);
}

.notice-icon {
    color: var(--gold);
    min-width: 24px;
    margin-top: 2px;
}

.notice-text h4 {
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 8px;
    color: var(--white);
}

.notice-text p {
    color: var(--gray);
    line-height: 1.7;
    font-weight: 300;
    font-size: 0.9rem;
}

/* ============================================
   Distribution Section (Homepage)
   ============================================ */

.distribution {
    padding: 100px 48px;
    text-align: center;
    background: linear-gradient(180deg, var(--black) 0%, var(--dark) 50%, var(--black) 100%);
    position: relative;
}

.distribution::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(201,168,76,0.05) 0%, transparent 70%);
    pointer-events: none;
}

.dist-label {
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gray);
    margin-bottom: 24px;
}

.dist-name {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: var(--gold);
    margin-bottom: 20px;
}

.dist-desc {
    font-size: 1rem;
    color: var(--gray);
    font-weight: 300;
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ============================================
   Distribution Feature (Distribution Page)
   ============================================ */

.dist-feature {
    padding: 80px 48px;
}

.dist-feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background: rgba(201,168,76,0.1);
}

.dist-card {
    padding: 48px;
    background: var(--dark);
}

.dist-card-icon {
    color: var(--gold);
    margin-bottom: 24px;
}

.dist-card h3 {
    font-weight: 700;
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.dist-card p {
    color: var(--gray);
    line-height: 1.7;
    font-weight: 300;
    font-size: 0.95rem;
}

/* Distribution Pipeline */
.dist-how-it-works {
    padding: 100px 48px;
    border-top: 1px solid rgba(201,168,76,0.1);
}

.dist-how-it-works h2 {
    font-weight: 700;
    font-size: 2.2rem;
    line-height: 1.2;
    margin-bottom: 60px;
}

.pipeline {
    display: flex;
    align-items: flex-start;
    gap: 24px;
}

.pipeline-step {
    flex: 1;
    padding: 32px;
    background: var(--dark);
    border: 1px solid rgba(201,168,76,0.08);
}

.pipeline-num {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 16px;
    opacity: 0.5;
}

.pipeline-step h3 {
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.pipeline-step p {
    color: var(--gray);
    line-height: 1.7;
    font-weight: 300;
    font-size: 0.9rem;
}

.pipeline-arrow {
    color: var(--gold);
    opacity: 0.3;
    padding-top: 48px;
    min-width: 24px;
}

/* Platforms grid */
.dist-platforms {
    padding: 80px 48px;
    border-top: 1px solid rgba(201,168,76,0.1);
}

.platform-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: rgba(201,168,76,0.08);
    margin-top: 48px;
}

.platform-item {
    background: var(--dark);
    padding: 32px 24px;
    text-align: center;
    font-family: 'Syne', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--gray-light);
    letter-spacing: 0.03em;
    transition: color 0.2s;
}

.platform-item:hover {
    color: var(--gold);
}

/* Distribution quote */
.dist-quote {
    padding: 100px 48px;
    display: flex;
    justify-content: center;
}

.dist-quote blockquote {
    max-width: 700px;
    text-align: center;
}

.dist-quote blockquote p {
    font-family: 'Syne', sans-serif;
    font-weight: 600;
    font-size: 1.6rem;
    line-height: 1.5;
    color: var(--white);
    margin-bottom: 24px;
}

.dist-quote cite {
    font-style: normal;
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
}

/* ============================================
   Submit CTA Section
   ============================================ */

.submit-cta {
    padding: 120px 48px;
    background: linear-gradient(180deg, var(--black) 0%, rgba(30,5,5,0.85) 50%, var(--black) 100%);
    border-top: 1px solid var(--crimson-border);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.submit-cta::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(ellipse at 50% 100%, rgba(139,0,0,0.12) 0%, transparent 65%);
    pointer-events: none;
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.cta-content h2 {
    font-weight: 800;
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.cta-content p {
    color: var(--gray);
    line-height: 1.7;
    font-weight: 300;
    margin-bottom: 32px;
}

.cta-tiers {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-bottom: 40px;
}

.cta-tiers-new {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.cta-tier {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.tier-price {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 2rem;
    color: var(--gold);
}

.tier-name {
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gray);
    margin-top: 4px;
}

.cta-tier-divider {
    color: var(--gray-dark);
    font-size: 0.85rem;
    font-weight: 300;
}

/* ============================================
   Vision Section
   ============================================ */

.vision {
    padding: 120px 48px;
    max-width: 700px;
}

.vision h2 {
    font-weight: 700;
    font-size: 2rem;
    line-height: 1.3;
    margin-bottom: 24px;
}

.vision p {
    color: var(--gray);
    line-height: 1.8;
    font-weight: 300;
}

/* ============================================
   Submit Page
   ============================================ */

.submit-section {
    padding: 0 48px 80px;
}

.submit-intro {
    max-width: 600px;
    margin-bottom: 60px;
}

.submit-intro h2 {
    font-weight: 700;
    font-size: 2.2rem;
    margin-bottom: 16px;
}

.submit-intro p {
    color: var(--gray);
    line-height: 1.7;
    font-weight: 300;
}

/* Roc Nation callout on submit page */
.submit-roc-callout {
    padding: 0 48px 60px;
}

.roc-callout-inner {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px 32px;
    background: rgba(201,168,76,0.04);
    border: 1px solid rgba(201,168,76,0.15);
}

.roc-callout-inner svg {
    color: var(--gold);
    min-width: 28px;
}

.roc-callout-inner strong {
    display: block;
    font-family: 'Syne', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 4px;
}

.roc-callout-inner span {
    font-size: 0.85rem;
    color: var(--gray);
    font-weight: 300;
}

/* Tier Cards */
.tier-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 80px;
}

.tier-grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.tier-card {
    padding: 48px;
    background: var(--dark);
    border: 1px solid rgba(201,168,76,0.1);
    position: relative;
}

.tier-free {
    border-color: rgba(201,168,76,0.08);
}

.tier-priority {
    border-color: rgba(201,168,76,0.2);
    background: linear-gradient(180deg, rgba(201,168,76,0.03) 0%, var(--dark) 100%);
}

.tier-premium {
    border-color: var(--gold);
    background: linear-gradient(180deg, rgba(201,168,76,0.08) 0%, var(--dark) 100%);
    box-shadow: 0 0 40px rgba(201,168,76,0.08);
}

.tier-badge {
    position: absolute;
    top: 0;
    right: 32px;
    background: var(--gold);
    color: var(--black);
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 8px 20px;
}

.tier-badge-free {
    background: var(--darker);
    color: var(--gray);
    border: 1px solid rgba(201,168,76,0.15);
    border-top: none;
}

.tier-badge-standard {
    background: var(--darker);
    color: var(--gray);
    border: 1px solid rgba(201,168,76,0.2);
    border-top: none;
}

.tier-badge-premium {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--black);
    font-size: 0.75rem;
    padding: 10px 24px;
}

.tier-premium-label {
    font-size: 0.8rem;
    color: var(--gold);
    font-weight: 500;
    margin-bottom: 20px;
    font-style: italic;
}

.tier-price-large {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 8px;
    margin-top: 16px;
}

.tier-card h3 {
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 24px;
}

.tier-features {
    list-style: none;
    margin-bottom: 32px;
}

.tier-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    color: var(--gray-light);
    font-size: 0.9rem;
    font-weight: 300;
    line-height: 1.5;
    border-bottom: 1px solid rgba(255,255,255,0.03);
}

.tier-features li svg {
    min-width: 16px;
    margin-top: 3px;
}

/* Payment Methods */
.payment-methods {
    margin-bottom: 80px;
    padding-top: 60px;
    border-top: 1px solid rgba(201,168,76,0.1);
}

.payment-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(201,168,76,0.08);
    margin: 32px 0 24px;
}

.payment-item {
    background: var(--dark);
    padding: 28px 24px;
    text-align: center;
}

.payment-name {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: 4px;
}

.payment-detail {
    font-size: 0.75rem;
    color: var(--gray);
    font-weight: 300;
}

.payment-note {
    font-size: 0.85rem;
    color: var(--gray);
    font-weight: 300;
    line-height: 1.6;
}

/* Demo Form */
.demo-form-section {
    max-width: 700px;
    padding-top: 80px;
    border-top: 1px solid rgba(201,168,76,0.1);
}

.demo-form-section h2 {
    font-weight: 700;
    font-size: 2rem;
    margin-bottom: 12px;
}

.form-subtitle {
    color: var(--gray);
    font-weight: 300;
    line-height: 1.7;
    margin-bottom: 40px;
}

.demo-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

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

.form-group label {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gray-light);
}

.label-hint {
    font-weight: 300;
    text-transform: none;
    letter-spacing: 0;
    color: var(--gray-dark);
    font-size: 0.75rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    background: var(--darker);
    border: 1px solid rgba(201,168,76,0.1);
    color: var(--white);
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.95rem;
    padding: 14px 16px;
    transition: border-color 0.2s;
    outline: none;
    -webkit-appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--gray-dark);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--gold);
}

.form-group select {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23888888' stroke-width='1.5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.form-legal {
    padding: 20px 24px;
    background: rgba(201,168,76,0.03);
    border-left: 2px solid rgba(201,168,76,0.2);
}

.form-legal p {
    font-size: 0.8rem;
    color: var(--gray);
    line-height: 1.7;
    font-weight: 300;
}

/* Form Success */
.form-success {
    text-align: center;
    padding: 60px 40px;
    background: var(--dark);
    border: 1px solid rgba(201,168,76,0.2);
}

.form-success h3 {
    font-weight: 700;
    font-size: 1.5rem;
    margin: 24px 0 12px;
}

.form-success p {
    color: var(--gray);
    line-height: 1.7;
    font-weight: 300;
}

.success-note {
    margin-top: 16px;
    font-size: 0.85rem;
    color: var(--gold) !important;
}

/* Success Banner */
.success-banner {
    position: fixed;
    top: 80px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 99;
    animation: slideDown 0.4s ease;
}

.success-banner-inner {
    display: flex;
    align-items: center;
    gap: 16px;
    background: rgba(17,17,17,0.98);
    border: 1px solid var(--gold);
    padding: 16px 32px;
    color: var(--white);
}

.success-banner-inner svg {
    color: var(--green);
    min-width: 24px;
}

.success-banner-inner strong {
    display: block;
    font-family: 'Syne', sans-serif;
    font-size: 0.9rem;
}

.success-banner-inner span {
    font-size: 0.8rem;
    color: var(--gray);
    font-weight: 300;
}

@keyframes slideDown {
    from { transform: translateX(-50%) translateY(-20px); opacity: 0; }
    to { transform: translateX(-50%) translateY(0); opacity: 1; }
}

/* ============================================
   FAQ Section
   ============================================ */

.submit-faq {
    padding: 100px 48px;
    border-top: 1px solid rgba(201,168,76,0.1);
}

.submit-faq h2 {
    font-weight: 700;
    font-size: 2rem;
    margin-bottom: 48px;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.faq-item h4 {
    font-weight: 700;
    font-size: 1.05rem;
    margin-bottom: 8px;
    color: var(--white);
}

.faq-item p {
    color: var(--gray);
    line-height: 1.7;
    font-weight: 300;
    font-size: 0.9rem;
}

/* ============================================
   Footer
   ============================================ */

footer {
    background: #060606;
    border-top: 1px solid rgba(201,168,76,0.12);
}

.footer-top {
    display: flex;
    justify-content: space-between;
    padding: 72px 48px 56px;
    gap: 80px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.footer-brand {
    max-width: 300px;
}

.footer-logo {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 4px;
}

.footer-logo-img {
    height: 56px;
    width: auto;
    display: block;
    margin-bottom: 16px;
    filter: drop-shadow(0 0 8px rgba(139,0,0,0.35));
    opacity: 0.95;
    transition: filter 0.3s ease;
}

.footer-logo-img:hover {
    filter: drop-shadow(0 0 12px rgba(139,0,0,0.55)) drop-shadow(0 0 4px rgba(201,168,76,0.3));
}

.footer-tagline {
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gray-dark);
    margin-bottom: 16px;
}

.footer-desc {
    font-size: 0.85rem;
    color: var(--gray);
    line-height: 1.7;
    font-weight: 300;
}

.footer-nav {
    display: flex;
    gap: 60px;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col h4 {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 0.7rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
}

.footer-col a {
    font-size: 0.82rem;
    color: var(--gray);
    text-decoration: none;
    transition: color 0.2s, padding-left 0.2s;
    font-weight: 300;
}

.footer-col a:hover {
    color: var(--white);
    padding-left: 4px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 48px;
    border-top: 1px solid rgba(255,255,255,0.03);
}

.footer-copyright {
    font-size: 0.72rem;
    color: var(--gray-dark);
    letter-spacing: 0.05em;
}

.footer-formerly {
    font-size: 0.68rem;
    color: rgba(255,255,255,0.15);
    letter-spacing: 0.08em;
}

/* ============================================
   Responsive
   ============================================ */

@media (max-width: 1024px) {
    .pipeline {
        flex-direction: column;
    }
    .pipeline-arrow {
        transform: rotate(90deg);
        padding-top: 0;
        text-align: center;
    }
    .dist-feature-grid {
        grid-template-columns: 1fr;
    }
    .deal-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .tier-grid-3 {
        grid-template-columns: 1fr;
    }
    .values-grid {
        grid-template-columns: 1fr;
    }
    .payment-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    nav {
        padding: 20px 24px;
    }

    .nav-links {
        display: none;
    }

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

    .hero {
        padding: 100px 24px 60px;
    }

    .hero-actions {
        flex-direction: column;
        gap: 12px;
    }

    .hero-actions .btn {
        text-align: center;
    }

    .divider { margin: 60px 24px; }

    .stats { grid-template-columns: 1fr; }
    .stat { padding: 40px 24px; }

    .about {
        grid-template-columns: 1fr;
        padding: 80px 24px;
        gap: 48px;
    }

    .roles { grid-template-columns: 1fr; }

    .studio-notice {
        padding: 0 24px;
    }
    .studio-notice-inner {
        padding: 28px 24px;
        flex-direction: column;
        gap: 16px;
    }
    .studio-notice-content h3 {
        font-size: 1.05rem;
    }
    .submit-notice {
        flex-direction: row;
        gap: 10px;
        font-size: 0.8rem;
    }

    .roster-preview {
        padding: 80px 24px;
    }

    .roster-card {
        flex-direction: column;
        gap: 20px;
        padding: 32px 24px;
    }

    .genres { padding: 60px 24px; }
    .genre-tag { font-size: 1rem; padding: 10px 20px; }

    .distribution { padding: 80px 24px; }
    .vision { padding: 80px 24px; }

    .submit-cta { padding: 80px 24px; }
    .cta-content h2 { font-size: 1.8rem; }
    .cta-tiers { flex-direction: column; gap: 16px; }
    .cta-tiers-new { gap: 12px; }

    .page-hero { padding: 120px 24px 60px; }

    .artist-feature {
        grid-template-columns: 1fr;
        padding: 60px 24px;
        gap: 40px;
    }
    .artist-feature-alt {
        direction: ltr;
    }
    .artist-initials-large {
        width: 150px;
        height: 150px;
        font-size: 3rem;
    }

    .submit-section { padding: 0 24px 60px; }

    .tier-grid {
        grid-template-columns: 1fr;
    }
    .tier-grid-3 {
        grid-template-columns: 1fr;
    }
    .tier-card { padding: 32px 24px; }

    .faq-grid { grid-template-columns: 1fr; }
    .submit-faq { padding: 60px 24px; }

    .form-row { grid-template-columns: 1fr; }

    .dist-how-it-works { padding: 60px 24px; }
    .dist-platforms { padding: 60px 24px; }
    .platform-grid { grid-template-columns: repeat(2, 1fr); }
    .dist-quote { padding: 60px 24px; }
    .dist-quote blockquote p { font-size: 1.2rem; }

    /* New sections mobile */
    .roc-nation-banner { padding: 0 24px 60px; }
    .roc-banner-inner { padding: 48px 24px; }
    .core-values { padding: 0 24px 60px; }
    .values-grid { grid-template-columns: 1fr; }
    .value-item { padding: 32px 24px; }
    .deal-structure { padding: 80px 24px; }
    .deal-grid { grid-template-columns: 1fr; }
    .deal-highlights { padding: 32px 16px; gap: 20px; }
    .studio-notice { padding: 0 24px 60px; }
    .notice-inner { padding: 24px; flex-direction: column; gap: 12px; }
    .submit-roc-callout { padding: 0 24px 40px; }
    .roc-callout-inner { flex-direction: column; text-align: center; padding: 24px; }
    .payment-methods { padding-top: 40px; }
    .payment-grid { grid-template-columns: repeat(2, 1fr); }
    .collective-values { padding: 40px 24px; }
    .collective-deal { padding: 60px 24px; }
    .dist-deal-banner { padding: 0 24px 40px; }
    .artist-videos-grid { grid-template-columns: 1fr; gap: 12px; }

    .footer-top {
        flex-direction: column;
        padding: 48px 24px 32px;
        gap: 40px;
    }
    .footer-nav {
        flex-wrap: wrap;
        gap: 32px;
    }
    .footer-bottom {
        flex-direction: column;
        padding: 20px 24px;
        gap: 8px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    .page-hero h1 {
        font-size: 2.2rem;
    }
    .platform-grid {
        grid-template-columns: 1fr 1fr;
    }
    .artist-stats {
        flex-wrap: wrap;
        gap: 24px;
    }
    .deal-number {
        font-size: 2.5rem;
    }
    .collective-values-inner span {
        font-size: 1.5rem;
    }
    .payment-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* ============================================
   Discography (Collective / Artist Pages)
   ============================================ */

.artist-discography {
    display: flex;
    gap: 24px;
    margin-top: 32px;
    flex-wrap: wrap;
}

.disco-block {
    flex: 1;
    min-width: 180px;
    background: var(--darker);
    border: 1px solid rgba(201,168,76,0.15);
    border-top: 2px solid var(--gold);
    padding: 20px 24px;
}

.disco-block-upcoming {
    border-top-color: rgba(201,168,76,0.3);
    opacity: 0.85;
}

.disco-block-label {
    font-size: 0.65rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 14px;
}

.disco-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.disco-item {
    display: flex;
    align-items: baseline;
    gap: 10px;
    flex-wrap: wrap;
}

.disco-type {
    font-size: 0.65rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gray);
    font-weight: 500;
    min-width: 44px;
    flex-shrink: 0;
}

.disco-title {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--white);
}

.disco-eta {
    font-size: 0.7rem;
    color: var(--gold);
    opacity: 0.7;
    margin-left: auto;
    white-space: nowrap;
}

@media (max-width: 480px) {
    .artist-discography {
        flex-direction: column;
    }
}

/* ============================================
   PPE Rebrand: Diamond Shimmer + Crimson System
   ============================================ */

/* Diamond / Ice shimmer text effect — applied to hero H1 */
.hero h1 {
    background: linear-gradient(
        120deg,
        #F5F5F0 0%,
        #FFFFFF 18%,
        #B8D8F0 28%,
        #F0E8C8 38%,
        #FFFFFF 50%,
        #D0ECFF 62%,
        #FFE8A0 72%,
        #FFFFFF 82%,
        #F5F5F0 100%
    );
    background-size: 250% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: diamondShimmer 6s linear infinite;
}

.hero h1 span {
    background: linear-gradient(
        120deg,
        #C9A84C 0%,
        #E8D48B 20%,
        #FFFFFF 35%,
        #FFD700 50%,
        #FFFFFF 65%,
        #E8D48B 80%,
        #C9A84C 100%
    );
    background-size: 250% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: diamondShimmer 4s linear infinite;
}

.page-hero h1 {
    background: linear-gradient(
        120deg,
        #F5F5F0 0%,
        #FFFFFF 20%,
        #C0D8F0 32%,
        #FFFFFF 50%,
        #D8F0FF 68%,
        #FFE8B0 80%,
        #F5F5F0 100%
    );
    background-size: 250% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: diamondShimmer 6s linear infinite;
}

.page-hero h1 span {
    background: linear-gradient(
        120deg,
        #C9A84C 0%,
        #E8D48B 25%,
        #FFFFFF 40%,
        #FFD700 55%,
        #E8D48B 70%,
        #C9A84C 100%
    );
    background-size: 250% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: diamondShimmer 4s linear infinite;
}

@keyframes diamondShimmer {
    0%   { background-position: 200% center; }
    100% { background-position: -200% center; }
}

/* Crimson section divider */
.divider-crimson {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--crimson-dark), var(--crimson-light));
    margin: 80px 48px;
    box-shadow: 0 0 12px var(--crimson-glow);
}

/* Hero crimson glow overlay */
.hero::before {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 100%;
    height: 40%;
    background: linear-gradient(0deg, rgba(139,0,0,0.06) 0%, transparent 100%);
    pointer-events: none;
    z-index: 0;
}

.hero > * {
    position: relative;
    z-index: 1;
}

/* Blood-red grunge background for distribution / vision sections */
.distribution {
    position: relative;
    overflow: hidden;
}

.distribution::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background:
        radial-gradient(ellipse at 30% 50%, rgba(139,0,0,0.10) 0%, transparent 55%),
        radial-gradient(ellipse at 70% 50%, rgba(107,0,0,0.07) 0%, transparent 55%);
    pointer-events: none;
}

.distribution > * { position: relative; z-index: 1; }

/* Crimson border on section tops where gold was used */
.roster-preview {
    border-top: 1px solid rgba(139,0,0,0.25);
    border-top-color: color-mix(in srgb, var(--crimson) 35%, rgba(201,168,76,0.1) 65%);
}

/* Crimson glow on roster/collective cards on hover */
.roster-card {
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
    border: 1px solid transparent;
}

.roster-card:hover {
    border-color: var(--crimson-border);
    box-shadow: inset 0 0 20px rgba(139,0,0,0.06);
}

/* Crimson divider accent on core values grid */
.values-grid {
    background: linear-gradient(
        135deg,
        rgba(139,0,0,0.15) 0%,
        rgba(201,168,76,0.12) 50%,
        rgba(139,0,0,0.10) 100%
    );
}

/* Crimson left-border on value items */
.value-item:first-child {
    border-left: 3px solid var(--crimson);
}

/* Crimson CTA button variant used in submit sections */
.btn-gold.btn-crimson-edge {
    background: linear-gradient(135deg, var(--crimson-dark) 0%, var(--crimson) 40%, var(--gold) 100%);
    color: var(--white);
    border: none;
    box-shadow: 0 4px 20px rgba(139,0,0,0.3);
}

.btn-gold.btn-crimson-edge:hover {
    background: linear-gradient(135deg, var(--crimson) 0%, var(--crimson-light) 40%, var(--gold-light) 100%);
    box-shadow: 0 6px 28px rgba(139,0,0,0.45);
    transform: translateY(-2px);
}

/* Nav CTA crimson tint on hover */
.nav-cta:hover {
    background: linear-gradient(135deg, var(--gold-light), var(--gold)) \!important;
    box-shadow: 0 0 16px rgba(139,0,0,0.25) \!important;
}

/* Genre tags — crimson border accent */
.genre-tag {
    border: 1px solid var(--crimson-border) \!important;
    color: var(--gray-light);
    transition: background 0.2s ease, color 0.2s ease;
}

.genre-tag:hover {
    background: rgba(139,0,0,0.12);
    color: var(--white);
    border-color: var(--crimson-light) \!important;
}

/* Footer bottom border — crimson accent */
footer {
    border-top: 1px solid rgba(139,0,0,0.3) \!important;
}

/* Roc Nation banner — add subtle crimson haze */
.roc-banner-inner {
    background: linear-gradient(180deg, var(--dark) 0%, rgba(30,5,5,0.7) 50%, var(--dark) 100%) \!important;
    border-color: rgba(139,0,0,0.25) \!important;
}

/* Beat store crimson accents */
.beat-card {
    border-top: 2px solid var(--crimson) \!important;
}

/* Studio notice crimson accent */
.studio-notice-inner {
    border-left-color: var(--crimson) \!important;
    background: linear-gradient(135deg, rgba(139,0,0,0.05) 0%, rgba(17,17,17,0.85) 100%) \!important;
}

/* Distribution stats — crimson pulse on hover */
.stat:hover .stat-number {
    text-shadow: 0 0 12px rgba(139,0,0,0.4);
}

/* Tier price highlight — crimson glow */
.tier-price {
    text-shadow: 0 0 20px rgba(201,168,76,0.3);
}

/* Blood-red grunge horizontal rule */
.crimson-rule {
    width: 100%;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        var(--crimson-dark) 25%,
        var(--crimson) 50%,
        var(--crimson-dark) 75%,
        transparent 100%
    );
    margin: 0;
    box-shadow: 0 0 8px rgba(139,0,0,0.3);
}

/* Mobile responsiveness for logo image */
@media (max-width: 768px) {
    .logo-img {
        height: 40px;
    }
    .footer-logo-img {
        height: 44px;
    }
}

/* nav-logo alias (used in beats.html) */
.nav-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

/* ============================================
   Phase 2: Premium Visual Enhancements
   ============================================ */

/* Diamond shimmer animation for premium tier */
@keyframes diamondShimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

@keyframes goldPulse {
    0%, 100% { box-shadow: 0 0 40px rgba(201,168,76,0.08), 0 0 0 1px rgba(201,168,76,0.35); }
    50% { box-shadow: 0 0 60px rgba(201,168,76,0.18), 0 0 0 1px rgba(201,168,76,0.6); }
}

@keyframes shimmerBorder {
    0% { opacity: 0.5; }
    50% { opacity: 1; }
    100% { opacity: 0.5; }
}

@keyframes revealUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes diamondH1Cycle {
    0%   { color: var(--white); text-shadow: 0 0 30px rgba(201,168,76,0); }
    20%  { color: #d4e8ff; text-shadow: 0 0 40px rgba(160,210,255,0.25); }
    40%  { color: var(--gold-light); text-shadow: 0 0 40px rgba(201,168,76,0.3); }
    60%  { color: #e8f4ff; text-shadow: 0 0 40px rgba(200,230,255,0.2); }
    80%  { color: var(--gold); text-shadow: 0 0 30px rgba(201,168,76,0.25); }
    100% { color: var(--white); text-shadow: 0 0 30px rgba(201,168,76,0); }
}

/* Apply H1 shimmer to all page hero titles */
.page-hero h1,
.hero h1 {
    animation: diamondH1Cycle 6s ease-in-out infinite;
}

/* Keep span (gold) override stable */
.page-hero h1 span,
.hero h1 span {
    animation: none;
    color: var(--gold);
}

/* Diamond premium tier — enhanced */
.tier-premium {
    border-color: var(--gold) !important;
    background: linear-gradient(160deg, rgba(201,168,76,0.1) 0%, rgba(17,17,17,0.95) 60%) !important;
    animation: goldPulse 3s ease-in-out infinite;
    position: relative;
    overflow: hidden;
}

.tier-premium::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(201,168,76,0.06), transparent);
    animation: diamondShimmer 3s linear infinite;
    pointer-events: none;
}

.tier-premium .tier-price-large {
    background: linear-gradient(135deg, var(--gold-dark), var(--gold-light), var(--gold));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 3.5rem;
}

.tier-premium .tier-badge-premium {
    background: linear-gradient(135deg, #b8860b, var(--gold-light), #ffd700, var(--gold)) !important;
    background-size: 200% auto;
    animation: diamondShimmer 2s linear infinite;
    font-weight: 800;
    letter-spacing: 0.2em;
}

/* Artist feature — cinematic glow on hover */
.artist-feature,
.artist-feature-alt {
    transition: background 0.4s ease;
    position: relative;
}

.artist-feature:hover,
.artist-feature-alt:hover {
    background: rgba(201,168,76,0.02);
}

.artist-initials-large {
    transition: all 0.4s ease;
}

.artist-feature:hover .artist-initials-large,
.artist-feature-alt:hover .artist-initials-large {
    box-shadow: 0 0 60px rgba(201,168,76,0.2), 0 0 0 2px rgba(139,0,0,0.4);
    transform: scale(1.03);
}

/* Roster card hover glow */
.roster-card {
    transition: all 0.35s ease !important;
}

.roster-card:hover {
    border-color: rgba(201,168,76,0.5) !important;
    transform: translateY(-4px) !important;
    box-shadow: 0 16px 48px rgba(0,0,0,0.5), 0 0 24px rgba(201,168,76,0.1) !important;
}

/* Beat card enhanced hover */
.beat-card:hover {
    border-color: rgba(201, 168, 76, 0.6) !important;
    transform: translateY(-4px) !important;
    box-shadow: 0 16px 48px rgba(0,0,0,0.6), 0 0 32px rgba(201,168,76,0.08) !important;
}

/* Cinematic section divider with glow */
.crimson-rule {
    box-shadow: 0 0 16px rgba(139,0,0,0.4) !important;
}

/* Stats counter glow on hover */
.stat-number,
.artist-stat-num {
    transition: text-shadow 0.3s ease;
}

.artist-stat:hover .artist-stat-num {
    text-shadow: 0 0 20px rgba(201,168,76,0.5);
    color: var(--gold-light);
}

/* Trust signal badges on submit page */
.trust-signals {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 32px 0;
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(201,168,76,0.05);
    border: 1px solid rgba(201,168,76,0.2);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    color: var(--gold-light);
    font-family: 'Syne', sans-serif;
    text-transform: uppercase;
}

.trust-badge svg {
    color: var(--gold);
    min-width: 14px;
}

/* Scouting CTA on collective page */
.scouting-cta {
    padding: 80px 48px;
    background: linear-gradient(180deg, var(--black) 0%, rgba(20,5,5,0.7) 50%, var(--black) 100%);
    border-top: 1px solid rgba(139,0,0,0.3);
    border-bottom: 1px solid rgba(139,0,0,0.3);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.scouting-cta::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(ellipse at 50% 50%, rgba(139,0,0,0.1) 0%, transparent 70%);
    pointer-events: none;
}

.scouting-cta-inner {
    max-width: 580px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.scouting-cta-inner .section-label {
    color: var(--crimson-light);
    letter-spacing: 0.4em;
}

.scouting-cta-inner h2 {
    font-family: 'Syne', sans-serif;
    font-weight: 800;
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.1;
    margin-bottom: 20px;
}

.scouting-cta-inner p {
    color: var(--gray);
    line-height: 1.7;
    font-weight: 300;
    margin-bottom: 36px;
    font-size: 1rem;
}

/* License card enhanced */
.license-card {
    transition: all 0.35s ease !important;
}

.license-card:hover {
    transform: translateY(-4px) !important;
    box-shadow: 0 16px 48px rgba(0,0,0,0.5), 0 0 24px rgba(201,168,76,0.12) !important;
}

/* Distribution stat cards — cinematic on hover */
.stat-box,
.dist-stat,
.stat-item {
    transition: all 0.3s ease;
}

.stat-box:hover,
.dist-stat:hover,
.stat-item:hover {
    background: rgba(201,168,76,0.05) !important;
}

/* Pipeline steps — animated number */
.pipeline-num {
    transition: opacity 0.3s ease, color 0.3s ease;
}

.pipeline-step:hover .pipeline-num {
    opacity: 1;
    color: var(--crimson-light);
    text-shadow: 0 0 20px rgba(139,0,0,0.4);
}

/* Platform tiles — enhanced hover */
.platform-tile:hover {
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 8px 24px rgba(0,0,0,0.4) !important;
}

/* Store cards hover */
.store-card {
    transition: all 0.35s ease !important;
}

.store-card:hover {
    border-color: rgba(201,168,76,0.4) !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 12px 40px rgba(0,0,0,0.5) !important;
}

/* Merch coming soon enhancement */
.coming-soon-badge {
    font-size: 0.7rem !important;
    letter-spacing: 0.3em !important;
    padding: 6px 16px !important;
}

/* Reveal animations for sections */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* OG image placeholder region */
.og-meta-hidden { display: none; }

/* Enhanced hero sub-text */
.hero-sub,
.page-hero-sub {
    line-height: 1.75;
}

/* Waveform animation enhancements */
@keyframes waveformCrimson {
    0%, 100% { background: linear-gradient(180deg, var(--crimson) 0%, var(--gold) 100%); }
    50% { background: linear-gradient(180deg, var(--gold) 0%, var(--crimson) 100%); }
}

/* Responsive */
@media (max-width: 640px) {
    .trust-signals {
        flex-direction: column;
    }
    .scouting-cta {
        padding: 60px 24px;
    }
}
